diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 59808a89f..5fd81dc09 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1 @@ -custom: "https://www.qbittorrent.org/donate" +custom: "https://www.qbittorrent.org/donate.php" diff --git a/.github/workflows/ci_file_health.yaml b/.github/workflows/ci_file_health.yaml index 54c87a104..48bc52f59 100644 --- a/.github/workflows/ci_file_health.yaml +++ b/.github/workflows/ci_file_health.yaml @@ -36,7 +36,7 @@ jobs: curl \ -L \ -o "${{ runner.temp }}/pandoc.tar.gz" \ - "https://github.com/jgm/pandoc/releases/download/3.7.0.2/pandoc-3.7.0.2-linux-amd64.tar.gz" + "https://github.com/jgm/pandoc/releases/download/3.6/pandoc-3.6-linux-amd64.tar.gz" tar -xf "${{ runner.temp }}/pandoc.tar.gz" -C "${{ github.workspace }}/.." mv "${{ github.workspace }}/.."/pandoc-* "${{ env.pandoc_path }}" # run pandoc @@ -52,13 +52,13 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | pip install zizmor - IGNORE_RULEID='(.ruleId != "zizmor/template-injection") - and (.ruleId != "zizmor/unpinned-uses")' - IGNORE_ID='(.id != "zizmor/template-injection") - and (.id != "zizmor/unpinned-uses")' + IGNORE_RULEID='(.ruleId != "template-injection") + and (.ruleId != "unpinned-uses")' + IGNORE_ID='(.id != "template-injection") + and (.id != "unpinned-uses")' zizmor \ --format sarif \ - --persona auditor \ + --pedantic \ ./ \ | jq "(.runs[].results |= map(select($IGNORE_RULEID))) | (.runs[].tool.driver.rules |= map(select($IGNORE_ID)))" \ diff --git a/.github/workflows/ci_macos.yaml b/.github/workflows/ci_macos.yaml index 6e3de936c..3927ee694 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.9.1"] + qt_version: ["6.7.0"] env: boost_path: "${{ github.workspace }}/../boost" @@ -52,7 +52,7 @@ jobs: store_cache: ${{ github.ref == 'refs/heads/master' }} update_packager_index: false ccache_options: | - max_size=1G + max_size=2G - name: Install boost env: @@ -70,9 +70,6 @@ jobs: tar -xf "${{ runner.temp }}/boost.tar.gz" -C "${{ github.workspace }}/.."; _exitCode="$?" fi mv "${{ github.workspace }}/.."/boost_* "${{ env.boost_path }}" - cd "${{ env.boost_path }}" - ./bootstrap.sh - ./b2 stage --stagedir=./ --with-headers - name: Install Qt uses: jurplel/install-qt-action@v4 @@ -98,7 +95,7 @@ jobs: -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_CXX_STANDARD=20 \ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ - -DBOOST_ROOT="${{ env.boost_path }}/lib/cmake" \ + -DBOOST_ROOT="${{ env.boost_path }}" \ -Ddeprecated-functions=OFF cmake --build build sudo cmake --install build @@ -112,7 +109,7 @@ jobs: -G "Ninja" \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ - -DBOOST_ROOT="${{ env.boost_path }}/lib/cmake" \ + -DBOOST_ROOT="${{ env.boost_path }}" \ -DTESTING=ON \ -DVERBOSE_CONFIGURE=ON \ -D${{ matrix.qbt_gui }} diff --git a/.github/workflows/ci_python.yaml b/.github/workflows/ci_python.yaml index ef8a73598..871614dad 100644 --- a/.github/workflows/ci_python.yaml +++ b/.github/workflows/ci_python.yaml @@ -25,7 +25,7 @@ jobs: python-version: '3' # use default version - name: Install tools (auxiliary scripts) - run: pip install bandit isort pycodestyle pyflakes + run: pip install bandit pycodestyle pyflakes - name: Gather files (auxiliary scripts) run: | @@ -44,10 +44,6 @@ jobs: --max-line-length=1000 \ --statistics \ $PY_FILES - isort \ - --check \ - --diff \ - $PY_FILES - name: Build code (auxiliary scripts) run: | @@ -59,7 +55,7 @@ jobs: python-version: '3.9' - name: Install tools (search engine) - run: pip install bandit isort mypy pycodestyle pyflakes pyright + run: pip install bandit mypy pycodestyle pyflakes pyright - name: Gather files (search engine) run: | @@ -89,10 +85,6 @@ jobs: --max-line-length=1000 \ --statistics \ $PY_FILES - isort \ - --check \ - --diff \ - $PY_FILES - name: Build code (search engine) run: | diff --git a/.github/workflows/ci_ubuntu.yaml b/.github/workflows/ci_ubuntu.yaml index 807eef19f..5643d7cce 100644 --- a/.github/workflows/ci_ubuntu.yaml +++ b/.github/workflows/ci_ubuntu.yaml @@ -21,7 +21,7 @@ jobs: matrix: libt_version: ["2.0.11", "1.2.20"] qbt_gui: ["GUI=ON", "GUI=OFF"] - qt_version: ["6.6.3"] + qt_version: ["6.5.2"] env: boost_path: "${{ github.workspace }}/../boost" @@ -47,7 +47,7 @@ jobs: store_cache: ${{ github.ref == 'refs/heads/master' }} update_packager_index: false ccache_options: | - max_size=1G + max_size=2G - name: Install boost env: @@ -65,9 +65,6 @@ jobs: tar -xf "${{ runner.temp }}/boost.tar.gz" -C "${{ github.workspace }}/.."; _exitCode="$?" fi mv "${{ github.workspace }}/.."/boost_* "${{ env.boost_path }}" - cd "${{ env.boost_path }}" - ./bootstrap.sh - ./b2 stage --stagedir=./ --with-headers - name: Install Qt uses: jurplel/install-qt-action@v4 @@ -93,7 +90,7 @@ jobs: -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_CXX_STANDARD=20 \ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ - -DBOOST_ROOT="${{ env.boost_path }}/lib/cmake" \ + -DBOOST_ROOT="${{ env.boost_path }}" \ -Ddeprecated-functions=OFF cmake --build build sudo cmake --install build @@ -115,7 +112,7 @@ jobs: -G "Ninja" \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ - -DBOOST_ROOT="${{ env.boost_path }}/lib/cmake" \ + -DBOOST_ROOT="${{ env.boost_path }}" \ -DCMAKE_INSTALL_PREFIX="/usr" \ -DTESTING=ON \ -DVERBOSE_CONFIGURE=ON \ @@ -162,7 +159,6 @@ jobs: - name: Package AppImage run: | - rm -f "${{ runner.workspace }}/Qt/${{ matrix.qt_version }}/gcc_64/plugins/sqldrivers/libqsqlmimer.so" ./linuxdeploy-x86_64.AppImage --appdir qbittorrent --plugin qt rm qbittorrent/apprun-hooks/* cp .github/workflows/helper/appimage/export_vars.sh qbittorrent/apprun-hooks/export_vars.sh diff --git a/.github/workflows/ci_webui.yaml b/.github/workflows/ci_webui.yaml index a46e003ca..a5bc1115a 100644 --- a/.github/workflows/ci_webui.yaml +++ b/.github/workflows/ci_webui.yaml @@ -34,12 +34,7 @@ jobs: run: | npm install npm ls - echo "::group::npm ls --all" npm ls --all - echo "::endgroup::" - - - name: Run tests - run: npm test - name: Lint code run: npm run lint diff --git a/.github/workflows/ci_windows.yaml b/.github/workflows/ci_windows.yaml index a5e06b1a2..95118d51c 100644 --- a/.github/workflows/ci_windows.yaml +++ b/.github/workflows/ci_windows.yaml @@ -67,7 +67,6 @@ jobs: "set(VCPKG_BUILD_TYPE release)") # clear buildtrees after each package installation to reduce disk space requirements $packages = ` - "boost-build:x64-windows-static-md-release", "openssl:x64-windows-static-md-release", "zlib:x64-windows-static-md-release" ${{ env.vcpkg_path }}/vcpkg.exe upgrade ` @@ -95,18 +94,11 @@ jobs: tar -xf "${{ runner.temp }}/boost.tar.gz" -C "${{ github.workspace }}/.." } move "${{ github.workspace }}/../boost_*" "${{ env.boost_path }}" - cd "${{ env.boost_path }}" - #.\bootstrap.bat - ${{ env.vcpkg_path }}/installed/x64-windows-static-md-release/tools/boost-build/b2.exe ` - stage ` - toolset=msvc ` - --stagedir=.\ ` - --with-headers - name: Install Qt uses: jurplel/install-qt-action@v4 with: - version: "6.9.1" + version: "6.8.0" arch: win64_msvc2022_64 archives: qtbase qtsvg qttools cache: true @@ -121,7 +113,7 @@ jobs: ${{ env.libtorrent_path }} cd ${{ env.libtorrent_path }} $env:CXXFLAGS+=" /guard:cf" - $env:LDFLAGS+=" /GUARD:CF" + $env:LDFLAGS+=" /guard:cf" cmake ` -B build ` -G "Ninja" ` @@ -130,7 +122,7 @@ jobs: -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ` -DCMAKE_INSTALL_PREFIX="${{ env.libtorrent_path }}/install" ` -DCMAKE_TOOLCHAIN_FILE="${{ env.vcpkg_path }}/scripts/buildsystems/vcpkg.cmake" ` - -DBOOST_ROOT="${{ env.boost_path }}/lib/cmake" ` + -DBOOST_ROOT="${{ env.boost_path }}" ` -DBUILD_SHARED_LIBS=OFF ` -Ddeprecated-functions=OFF ` -Dstatic_runtime=OFF ` @@ -147,7 +139,7 @@ jobs: -DCMAKE_BUILD_TYPE=RelWithDebInfo ` -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ` -DCMAKE_TOOLCHAIN_FILE="${{ env.vcpkg_path }}/scripts/buildsystems/vcpkg.cmake" ` - -DBOOST_ROOT="${{ env.boost_path }}/lib/cmake" ` + -DBOOST_ROOT="${{ env.boost_path }}" ` -DLibtorrentRasterbar_DIR="${{ env.libtorrent_path }}/install/lib/cmake/LibtorrentRasterbar" ` -DMSVC_RUNTIME_DYNAMIC=ON ` -DTESTING=ON ` diff --git a/.github/workflows/coverity-scan.yaml b/.github/workflows/coverity-scan.yaml index dc561ac4a..c843ce7ee 100644 --- a/.github/workflows/coverity-scan.yaml +++ b/.github/workflows/coverity-scan.yaml @@ -16,7 +16,7 @@ jobs: matrix: libt_version: ["2.0.11"] qbt_gui: ["GUI=ON"] - qt_version: ["6.9.1"] + qt_version: ["6.5.2"] env: boost_path: "${{ github.workspace }}/../boost" @@ -39,7 +39,7 @@ jobs: - name: Install boost env: BOOST_MAJOR_VERSION: "1" - BOOST_MINOR_VERSION: "88" + BOOST_MINOR_VERSION: "86" BOOST_PATCH_VERSION: "0" run: | boost_url="https://archives.boost.io/release/${{ env.BOOST_MAJOR_VERSION }}.${{ env.BOOST_MINOR_VERSION }}.${{ env.BOOST_PATCH_VERSION }}/source/boost_${{ env.BOOST_MAJOR_VERSION }}_${{ env.BOOST_MINOR_VERSION }}_${{ env.BOOST_PATCH_VERSION }}.tar.gz" @@ -52,9 +52,6 @@ jobs: tar -xf "${{ runner.temp }}/boost.tar.gz" -C "${{ github.workspace }}/.."; _exitCode="$?" fi mv "${{ github.workspace }}/.."/boost_* "${{ env.boost_path }}" - cd "${{ env.boost_path }}" - ./bootstrap.sh - ./b2 stage --stagedir=./ --with-headers - name: Install Qt uses: jurplel/install-qt-action@v4 @@ -77,7 +74,7 @@ jobs: -G "Ninja" \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_CXX_STANDARD=20 \ - -DBOOST_ROOT="${{ env.boost_path }}/lib/cmake" \ + -DBOOST_ROOT="${{ env.boost_path }}" \ -Ddeprecated-functions=OFF cmake --build build sudo cmake --install build @@ -101,7 +98,7 @@ jobs: -B build \ -G "Ninja" \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -DBOOST_ROOT="${{ env.boost_path }}/lib/cmake" \ + -DBOOST_ROOT="${{ env.boost_path }}" \ -DVERBOSE_CONFIGURE=ON \ -D${{ matrix.qbt_gui }} PATH="${{ env.coverity_path }}/bin:$PATH" \ diff --git a/.github/workflows/helper/pre-commit/check_grid_items_order.py b/.github/workflows/helper/pre-commit/check_grid_items_order.py index dfd1bba68..0ab3d6715 100755 --- a/.github/workflows/helper/pre-commit/check_grid_items_order.py +++ b/.github/workflows/helper/pre-commit/check_grid_items_order.py @@ -26,12 +26,12 @@ # but you are not obligated to do so. If you do not wish to do so, delete this # exception statement from your version. -import argparse -import re -import sys -import xml.etree.ElementTree as ElementTree from collections.abc import Callable, Sequence from typing import Optional +import argparse +import re +import xml.etree.ElementTree as ElementTree +import sys def traversePostOrder(root: ElementTree.Element, visitFunc: Callable[[ElementTree.Element], None]) -> None: diff --git a/.github/workflows/helper/pre-commit/check_translation_tag.py b/.github/workflows/helper/pre-commit/check_translation_tag.py index 547a2a992..4be80df49 100755 --- a/.github/workflows/helper/pre-commit/check_translation_tag.py +++ b/.github/workflows/helper/pre-commit/check_translation_tag.py @@ -26,11 +26,11 @@ # but you are not obligated to do so. If you do not wish to do so, delete this # exception statement from your version. +from collections.abc import Sequence +from typing import Optional import argparse import re import sys -from collections.abc import Sequence -from typing import Optional def main(argv: Optional[Sequence[str]] = None) -> int: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 26852b0d1..fbf101d28 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -69,11 +69,11 @@ repos: - ts - repo: https://github.com/codespell-project/codespell.git - rev: v2.4.1 + rev: v2.4.0 hooks: - id: codespell name: Check spelling (codespell) - args: ["--ignore-words-list", "additionals,categor,curren,fo,indexIn,ist,ket,notin,searchin,sectionin,superseeding,te,ths"] + args: ["--ignore-words-list", "additionals,categor,curren,fo,ist,ket,notin,searchin,sectionin,superseeding,te,ths"] exclude: | (?x)^( .*\.desktop | @@ -88,7 +88,7 @@ repos: - ts - repo: https://github.com/crate-ci/typos.git - rev: v1.32.0 + rev: v1.29.4 hooks: - id: typos name: Check spelling (typos) 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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 97ecb3684..86ede6b3c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ project(qBittorrent # version requirements - older versions may work, but you are on your own set(minBoostVersion 1.76) -set(minQt6Version 6.6.0) +set(minQt6Version 6.5.0) set(minOpenSSLVersion 3.0.2) set(minLibtorrent1Version 1.2.19) set(minLibtorrentVersion 2.0.10) diff --git a/Changelog b/Changelog index 453c4bcdc..e0404eece 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,121 @@ -Unreleased - sledgehammer999 - v5.1.0 +Wed Jul 02nd 2025 - sledgehammer999 - v5.1.2 + - BUGFIX: Don't expose palette colors in UI theme editor since they are not customizable (glassez) + - BUGFIX: Add fallback to update mechanism (sledgehammer999) + - WEBUI: Fix incorrectly backported changes (glassez) + - WEBAPI: Trim leading whitespaces on Run External Program fields (Chocobo1) + - RSS/SEARCH: Prevent opening local files if web page is expected (glassez) + - MACOS: Make qBittorrent quit on MacOS with main window closed (Ryu481) + +Mon Jun 23rd 2025 - sledgehammer999 - v5.1.1 + - BUGFIX: Don't interpret wildcard pattern as filepath globbing (glassez) + - BUGFIX: Fix appearance of search history length spinbox (glassez) + - BUGFIX: Remove dubious seeding time max value (glassez) + - BUGFIX: Fix ratio handling (glassez) + - BUGFIX: Fix compilation with Qt 6.6.0 (glassez) + - WEBUI: Make General tab text selectable by default (dezza) + - WEBUI: Add versioning to local preferences (Chocobo1) + - WEBUI: Make multi-rename search & replace fields use a monospace font (Atk) + - WEBUI: Fix wrong replacement sequence in IPv6 string (Chocobo1) + - WEBUI: Fix memory leak (bolshoytoster) + - WEBUI: Fix path autofill in set location and new category (tehcneko) + - RSS: Mark matched article as "read" if it refers to a duplicate torrent (glassez) + - WINDOWS: Update command line help message (KanishkaHalder1771) + - WINDOWS: NSIS: Don't require agreement on the license page (Chocobo1) + - LINUX: Fix preview not opening on Wayland (Isak05) + - LINUX: Add fallback for random number generator (Chocobo1) + +Sun Apr 27th 2025 - sledgehammer999 - v5.1.0 + - FEATURE: Enable customizing the save statistics time interval (Burnerelu) + - FEATURE: Add drag support to torrent content widget (Chocobo1) + - FEATURE: Display External IP Address in status bar (Thomas Piccirello) + - FEATURE: Use modern functions to get random numbers under Linux/Windows (security related) (Chocobo1) + - FEATURE: Add eXact Length parameter when creating magnet URI (antanilol) + - FEATURE: Support fetching tracker list from URL (Thomas Piccirello) + - FEATURE: Add `announce_port` support (Maxime Thiebaut) + - BUGFIX: Enable adaptive step size for upload and download limits (Harald Nordgren) + - BUGFIX: Add URL link for reverse proxy setup examples (Chocobo1) + - BUGFIX: Allow drop action only on transfer list (Chocobo1) + - BUGFIX: Fix the tab order in dialogs (thalieht) + - BUGFIX: Fix filesize sorting in preview dialog (DoubleSpicy) + - BUGFIX: Improve the speed icons in the status bar (Mahdi Hosseinzadeh) + - BUGFIX: Update link to news (tinyboxvk) + - BUGFIX: Fix tab stop order in various dialogs and UI elements (Chocobo1) + - BUGFIX: Make links accessible by keyboard (Chocobo1) + - BUGFIX: Make tab key switch focus (Chocobo1) + - BUGFIX: Revise DHT bootstrap node list (stalkerok, Chocobo1) + - BUGFIX: Return first tracker as fallback for "current tracker" (glassez) + - BUGFIX: Prevent crash when exiting app with `Add torrent` dialogs opened (glassez) + - BUGFIX: Fix torrent relocating files when switching to "manual" mode (glassez) + - BUGFIX: Prevent crash due to corrupted resume data (glassez) + - WEBUI: Improvements that should help with assistive technologies (Chocobo1) + - WEBUI: Internal refactoring to migrate away from MooTools and towards native browser APIs (Chocobo1, skomerko) + - WEBUI: Implement path autocompletion (Paweł Kotiuk) + - WEBUI: Implement double-click behavior controls (Hanabishi) + - WEBUI: Add ability to toggle alternating row colors in tables (skomerko) + - WEBUI: Improve visibility of unread RSS articles (skomerko) + - WEBUI: Remove deleted torrents even if they are currently filtered out (Carmelo Scandaliato) + - WEBUI: Highlight torrent category in context menu (skomerko) + - WEBUI: Implement 'Auto hide zero status filters' (skomerko) + - WEBUI: Allow to filter torrent list by save path (skomerko) + - WEBUI: Handle regex syntax error for torrent filtering (HamletDuFromage) + - WEBUI: Add missing icons (skomerko) + - WEBUI: Add link to 'List of alternative WebUI' wiki page in Options (Chocobo1) + - WEBUI: Improve properties panel, torrent deletion dialog, filter list, subcategories, torrent deletion, statistics window (skomerko) + - WEBUI: Allow to display only hostname in the Tracker column (skomerko) + - WEBUI: Show country/region name next to its flag (skomerko) + - WEBUI: Improve hash copy actions in context menu (skomerko) + - WEBUI: Support removing tracker from all torrents in WebUI/WebAPI (Thomas Piccirello) + - WEBUI: Display DHT information in the Status bar only when DHT is enabled (skomerko) + - WEBUI: Add 'Confirm torrent recheck' option (skomerko) + - WEBUI: Support managing web seeds (Thomas Piccirello) + - WEBUI: Add colors to log table rows (skomerko) + - WEBUI: Prevent text selection within tabs, menu items (skomerko) + - WEBUI: Use correct text and background colors in RSS details view (skomerko) + - WEBUI: Reduce padding in torrents table (skomerko) + - WEBUI: Add WebAPI/WebUI for managing cookies (Thomas Piccirello) + - WEBUI: Support updating RSS feed URL (Thomas Piccirello) + - WEBUI: Add 'Engine' column to Search table (skomerko) + - WEBUI: Add confirm dialog for Auto TMM (skomerko) + - WEBUI: Add context menu to search tabs (skomerko) + - WEBUI: Show file filter when Content tab selected on load (Thomas Piccirello) + - WEBUI: DHT, PeX and LSD rows are now always on top in Trackers table (skomerko) + - WEBUI: Clear properties panel when torrent no longer selected (skomerko) + - WEBUI: Support auto resizing table columns (Thomas Piccirello) + - WEBUI: Fix displaying RSS panel on load (Thomas Piccirello) + - WEBUI: Add tooltip to regex filter button (Patrik Elfström) + - WEBUI: Hide context menu when clicking on a table row (Patrik Elfström) + - WEBUI: Display torrent progress percentage in General tab (skomerko) + - WEBUI: Use thin scrollbars (skomerko) + - WEBUI: Show 'Rename...' context menu item only when one torrent is selected (skomerko) + - WEBUI: Display error when download fails (Thomas Piccirello) + - WEBUI: Add colors to 'Status' column in Trackers table (skomerko) + - WEBUI: Add missing icon to 'Queue' context menu item (skomerko) + - WEBUI: Change filter inputs to type search (Patrik Elfström) + - WEBUI: Allow to move state icon to name column in torrents table (skomerko) + - WEBUI: Fix bug where the 'Tracker editing' dialog displays incorrect data (skomerko) + - WEBUI: Maintain row highlight after rearranging table columns (skomerko) + - WEBUI: Fix preferences not applied in magnet handler (Chocobo1) + - WEBUI: Update sort icon after changing column order (skomerko) + - WEBUI: Show 'Edit tracker URL...' only when one tracker is selected (skomerko) + - WEBUI: Set status filter to 'All' if selected filter is no longer visible (skomerko) + - WEBAPI: Don't reannounce when removing tracker via WebAPI (Thomas Piccirello) + - WEBAPI: Add WebAPI for managing torrent webseeds (Thomas Piccirello) + - WEBAPI: Add `forced` parameter to `torrents/add` (Chris B) + - WEBAPI: Optionally include trackers list in torrent info response (ze0s) + - WEBAPI: Add new method `setTags` to upsert tags on torrents (ze0s) + - RSS: Resolve relative URLs within RSS article description (Zentino) + - SEARCH: Provide SSL context field (Chocobo1) + - SEARCH: Allow to refresh existing search (glassez) + - SEARCH: Allow multiple simultaneous searches (glassez) + - SEARCH: Store opened search tabs (glassez) + - SEARCH: Store search history (glassez) + - SEARCH: Migrate socks.py from SocksiPy to PySocks 1.7.1 (FredBill1) + - SEARCH: Bump Python version minimum requirement (Chocobo1) + - WINDOWS: Opt into Windows SegmentHeap (Andarwinux) + - WINDOWS: Allow to choose color scheme on Windows (glassez) + - WINDOWS: Verify hash of Python installer (Chocobo1) + - LINUX: Add support for Thunar file manager (algebnaly) + - MACOS: Fix shift-click selection on macOS (Luke Memet) Mon Oct 28th 2024 - sledgehammer999 - v5.0.1 - FEATURE: Add "Simple pread/pwrite" disk IO type (Hanabishi) diff --git a/INSTALL b/INSTALL index b17e323fb..ec3ff78ea 100644 --- a/INSTALL +++ b/INSTALL @@ -11,7 +11,7 @@ qBittorrent - A BitTorrent client in C++ / Qt - OpenSSL >= 3.0.2 - - Qt 6.6.0 - 6.x + - Qt 6.5.0 - 6.x - zlib >= 1.2.11 diff --git a/WebAPI_Changelog.md b/WebAPI_Changelog.md deleted file mode 100644 index 4dd39c4a8..000000000 --- a/WebAPI_Changelog.md +++ /dev/null @@ -1,44 +0,0 @@ -# WebAPI Changelog - -## 2.11.10 - -* [#22932](https://github.com/qbittorrent/qBittorrent/pull/22932) - * `torrents/categories` and `sync/maindata` now serialize categories' `downloadPath` to `null`, rather than `undefined` - -## 2.11.9 - -* [#21015](https://github.com/qbittorrent/qBittorrent/pull/21015) - * Add `torrents/fetchMetadata` endpoint for retrieving torrent metadata associated with a URL - * Add `torrents/parseMetadata` endpoint for retrieving torrent metadata associated with a .torrent file - * Add `torrents/saveMetadata` endpoint for saving retrieved torrent metadata to a .torrent file - * `torrents/add` allows adding a torrent with metadata previously retrieved via `torrents/fetchMetadata` or `torrents/parseMetadata` - * `torrents/add` allows specifying a torrent's file priorities -* [#22698](https://github.com/qbittorrent/qBittorrent/pull/22698) - * `torrents/addTrackers` and `torrents/removeTrackers` now accept `hash=all` and adds/removes the tracker to/from *all* torrents - * For compatibility, `torrents/removeTrackers` still accepts `hash=*` internally we transform it into `all` - * Allow passing a pipe (`|`) separated list of hashes in `hash` for `torrents/addTrackers` and `torrents/removeTrackers` - -## 2.11.8 - -* [#21349](https://github.com/qbittorrent/qBittorrent/pull/21349) - * Handle sending `204 No Content` status code when response contains no data - * Some endpoints still return `200 OK` to ensure smooth transition -* [#22750](https://github.com/qbittorrent/qBittorrent/pull/22750) - * `torrents/info` allows an optional parameter `includeFiles` that defaults to `false` - * Each torrent will contain a new key `files` which will list all files similar to the `torrents/files` endpoint -* [#22813](https://github.com/qbittorrent/qBittorrent/pull/22813) - * `app/getDirectoryContent` allows an optional parameter `withMetadata` to send file metadata - * Fields are `name`, `type`, `size`, `creation_date`, `last_access_date`, `last_modification_date` - * See PR for TypeScript types - -## 2.11.7 - -* [#22166](https://github.com/qbittorrent/qBittorrent/pull/22166) - * `sync/maindata` returns 3 new torrent fields: `has_tracker_warning`, `has_tracker_error`, `has_other_announce_error` - -## 2.11.6 - -* [#22460](https://github.com/qbittorrent/qBittorrent/pull/22460) - * `app/setPreferences` allows only one of `max_ratio_enabled`, `max_ratio` to be present - * `app/setPreferences` allows only one of `max_seeding_time_enabled`, `max_seeding_time` to be present - * `app/setPreferences` allows only one of `max_inactive_seeding_time_enabled`, `max_inactive_seeding_time` to be present diff --git a/cmake/Modules/CommonConfig.cmake b/cmake/Modules/CommonConfig.cmake index 32aebd62e..b57dc4bcf 100644 --- a/cmake/Modules/CommonConfig.cmake +++ b/cmake/Modules/CommonConfig.cmake @@ -20,7 +20,7 @@ target_compile_features(qbt_common_cfg INTERFACE ) target_compile_definitions(qbt_common_cfg INTERFACE - QT_DISABLE_DEPRECATED_UP_TO=0x060600 + QT_DISABLE_DEPRECATED_UP_TO=0x060500 QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII QT_NO_CAST_FROM_BYTEARRAY @@ -89,7 +89,7 @@ if (MSVC) /Zc:__cplusplus ) target_link_options(qbt_common_cfg INTERFACE - /GUARD:CF + /guard:cf $<$>:/OPT:REF /OPT:ICF> # suppress linking warning due to /INCREMENTAL and /OPT:ICF being both ON $<$:/INCREMENTAL:NO> diff --git a/dist/mac/Info.plist b/dist/mac/Info.plist index bebe2f1fb..4ae208369 100644 --- a/dist/mac/Info.plist +++ b/dist/mac/Info.plist @@ -55,7 +55,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.2.0 + 5.1.2 CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier diff --git a/dist/mac/qBitTorrentDocument.icns b/dist/mac/qBitTorrentDocument.icns index d257dc2d9..efd7fc1e5 100644 Binary files a/dist/mac/qBitTorrentDocument.icns and b/dist/mac/qBitTorrentDocument.icns differ diff --git a/dist/mac/qbittorrent_mac.icns b/dist/mac/qbittorrent_mac.icns index a618a87a4..58684a09e 100644 Binary files a/dist/mac/qbittorrent_mac.icns and b/dist/mac/qbittorrent_mac.icns differ diff --git a/dist/unix/CMakeLists.txt b/dist/unix/CMakeLists.txt index c731ebbaf..7072da5ea 100644 --- a/dist/unix/CMakeLists.txt +++ b/dist/unix/CMakeLists.txt @@ -34,12 +34,12 @@ endforeach() if (GUI) install(FILES org.qbittorrent.qBittorrent.desktop - DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications + DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/applications/ COMPONENT data ) install(FILES org.qbittorrent.qBittorrent.metainfo.xml - DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo + DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo/ COMPONENT data ) @@ -55,9 +55,4 @@ if (GUI) DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/icons/hicolor/scalable/status COMPONENT data ) -else() - install(FILES org.qbittorrent.qBittorrent-nox.metainfo.xml - DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/metainfo - COMPONENT data - ) endif() diff --git a/dist/unix/menuicons/16x16/apps/qbittorrent.png b/dist/unix/menuicons/16x16/apps/qbittorrent.png index 3dcb87856..bf74dc0e6 100644 Binary files a/dist/unix/menuicons/16x16/apps/qbittorrent.png and b/dist/unix/menuicons/16x16/apps/qbittorrent.png differ diff --git a/dist/unix/menuicons/16x16/status/qbittorrent-tray.png b/dist/unix/menuicons/16x16/status/qbittorrent-tray.png index 3dcb87856..bf74dc0e6 100644 Binary files a/dist/unix/menuicons/16x16/status/qbittorrent-tray.png and b/dist/unix/menuicons/16x16/status/qbittorrent-tray.png differ diff --git a/dist/unix/menuicons/192x192/apps/qbittorrent.png b/dist/unix/menuicons/192x192/apps/qbittorrent.png index af1c69a74..799b5c2c0 100644 Binary files a/dist/unix/menuicons/192x192/apps/qbittorrent.png and b/dist/unix/menuicons/192x192/apps/qbittorrent.png differ diff --git a/dist/unix/menuicons/192x192/status/qbittorrent-tray.png b/dist/unix/menuicons/192x192/status/qbittorrent-tray.png index af1c69a74..799b5c2c0 100644 Binary files a/dist/unix/menuicons/192x192/status/qbittorrent-tray.png and b/dist/unix/menuicons/192x192/status/qbittorrent-tray.png differ diff --git a/dist/unix/menuicons/24x24/apps/qbittorrent.png b/dist/unix/menuicons/24x24/apps/qbittorrent.png index 1c9c69451..a17e0398a 100644 Binary files a/dist/unix/menuicons/24x24/apps/qbittorrent.png and b/dist/unix/menuicons/24x24/apps/qbittorrent.png differ diff --git a/dist/unix/menuicons/24x24/status/qbittorrent-tray.png b/dist/unix/menuicons/24x24/status/qbittorrent-tray.png index 1c9c69451..a17e0398a 100644 Binary files a/dist/unix/menuicons/24x24/status/qbittorrent-tray.png and b/dist/unix/menuicons/24x24/status/qbittorrent-tray.png differ diff --git a/dist/unix/menuicons/32x32/apps/qbittorrent.png b/dist/unix/menuicons/32x32/apps/qbittorrent.png index 59cdb93f9..a1c56efd2 100644 Binary files a/dist/unix/menuicons/32x32/apps/qbittorrent.png and b/dist/unix/menuicons/32x32/apps/qbittorrent.png differ diff --git a/dist/unix/menuicons/32x32/status/qbittorrent-tray.png b/dist/unix/menuicons/32x32/status/qbittorrent-tray.png index 59cdb93f9..a1c56efd2 100644 Binary files a/dist/unix/menuicons/32x32/status/qbittorrent-tray.png and b/dist/unix/menuicons/32x32/status/qbittorrent-tray.png differ diff --git a/dist/unix/menuicons/36x36/apps/qbittorrent.png b/dist/unix/menuicons/36x36/apps/qbittorrent.png index b7e65a6a2..11c7278e5 100644 Binary files a/dist/unix/menuicons/36x36/apps/qbittorrent.png and b/dist/unix/menuicons/36x36/apps/qbittorrent.png differ diff --git a/dist/unix/menuicons/36x36/status/qbittorrent-tray.png b/dist/unix/menuicons/36x36/status/qbittorrent-tray.png index b7e65a6a2..11c7278e5 100644 Binary files a/dist/unix/menuicons/36x36/status/qbittorrent-tray.png and b/dist/unix/menuicons/36x36/status/qbittorrent-tray.png differ diff --git a/dist/unix/menuicons/64x64/apps/qbittorrent.png b/dist/unix/menuicons/64x64/apps/qbittorrent.png index fdd8df4ea..243f82cc6 100644 Binary files a/dist/unix/menuicons/64x64/apps/qbittorrent.png and b/dist/unix/menuicons/64x64/apps/qbittorrent.png differ diff --git a/dist/unix/menuicons/64x64/status/qbittorrent-tray.png b/dist/unix/menuicons/64x64/status/qbittorrent-tray.png index fdd8df4ea..243f82cc6 100644 Binary files a/dist/unix/menuicons/64x64/status/qbittorrent-tray.png and b/dist/unix/menuicons/64x64/status/qbittorrent-tray.png differ diff --git a/dist/unix/menuicons/72x72/apps/qbittorrent.png b/dist/unix/menuicons/72x72/apps/qbittorrent.png index 5d4162322..017e4fe18 100644 Binary files a/dist/unix/menuicons/72x72/apps/qbittorrent.png and b/dist/unix/menuicons/72x72/apps/qbittorrent.png differ diff --git a/dist/unix/menuicons/72x72/status/qbittorrent-tray.png b/dist/unix/menuicons/72x72/status/qbittorrent-tray.png index 5d4162322..017e4fe18 100644 Binary files a/dist/unix/menuicons/72x72/status/qbittorrent-tray.png and b/dist/unix/menuicons/72x72/status/qbittorrent-tray.png differ diff --git a/dist/unix/menuicons/96x96/apps/qbittorrent.png b/dist/unix/menuicons/96x96/apps/qbittorrent.png index 996aa6fc0..e87302310 100644 Binary files a/dist/unix/menuicons/96x96/apps/qbittorrent.png and b/dist/unix/menuicons/96x96/apps/qbittorrent.png differ diff --git a/dist/unix/menuicons/96x96/status/qbittorrent-tray.png b/dist/unix/menuicons/96x96/status/qbittorrent-tray.png index 996aa6fc0..e87302310 100644 Binary files a/dist/unix/menuicons/96x96/status/qbittorrent-tray.png and b/dist/unix/menuicons/96x96/status/qbittorrent-tray.png differ diff --git a/dist/unix/org.qbittorrent.qBittorrent-nox.metainfo.xml b/dist/unix/org.qbittorrent.qBittorrent-nox.metainfo.xml deleted file mode 100644 index c0aebf988..000000000 --- a/dist/unix/org.qbittorrent.qBittorrent-nox.metainfo.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - org.qbittorrent.qBittorrent-nox - CC0-1.0 - GPL-3.0-or-later and OpenSSL - qBittorrent-nox - An open-source Bittorrent client (nox version) - -

- The qBittorrent project aims to provide an open-source software alternative to µTorrent. - Additionally, qBittorrent runs and provides the same features on all major platforms (FreeBSD, Linux, macOS, OS/2, Windows). - qBittorrent is based on the Qt toolkit and libtorrent-rasterbar library. -

-
    -
  • Polished µTorrent-like User Interface
  • -
  • Well-integrated and extensible Search Engine
  • -
  • RSS feed support with advanced download filters (incl. regex)
  • -
  • Many Bittorrent extensions supported
  • -
  • Remote control through Web user interface, written with AJAX
  • -
  • Sequential downloading (Download in order)
  • -
  • Advanced control over torrents, trackers and peers
  • -
  • Bandwidth scheduler
  • -
  • Torrent creation tool
  • -
  • IP Filtering (eMule & PeerGuardian format compatible)
  • -
  • IPv6 compliant
  • -
  • UPnP / NAT-PMP port forwarding support
  • -
  • Available on all platforms: Windows, Linux, macOS, FreeBSD, OS/2
  • -
  • Available in ~70 languages
  • -
-
- - qbittorrent-nox - - - - Running headless (nox) version - https://raw.githubusercontent.com/qbittorrent/qBittorrent-website/43fcf4550f567c38fb879b984922b659e90982cc/src/img/screenshots/linux/5.webp - - - sledgehammer999@qbittorrent.org - - The qBittorrent Project - - https://www.qbittorrent.org/ - https://bugs.qbittorrent.org/ - https://wiki.qbittorrent.org/Frequently-Asked-Questions - https://forum.qbittorrent.org/ - https://www.qbittorrent.org/donate - https://wiki.qbittorrent.org/How-to-translate-qBittorrent - https://github.com/qbittorrent/qBittorrent - https://github.com/qbittorrent/qBittorrent/blob/master/CONTRIBUTING.md - - - - -
diff --git a/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml b/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml index 4aacf15ce..b3ec5ccb7 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 19558c1d6..a262a0c63 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.2.0" +!define /ifndef QBT_VERSION "5.1.2" ; Option that controls the installer's window name ; If set, its value will be used like this: diff --git a/doc/en/qbittorrent-nox.1 b/doc/en/qbittorrent-nox.1 index 3b9830fc1..140ad389c 100644 --- a/doc/en/qbittorrent-nox.1 +++ b/doc/en/qbittorrent-nox.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pandoc 3.7.0.2 +.\" Automatically generated by Pandoc 3.4 .\" .TH "QBITTORRENT\-NOX" "1" "January 16th 2010" "Command line Bittorrent client written in C++ / Qt" .SH NAME @@ -26,7 +26,7 @@ compatible). qBittorrent\-nox is meant to be controlled via its feature\-rich Web UI which is accessible as a default on http://localhost:8080. The Web UI access is secured and the default account user name is -\(lqadmin\(rq with \(lqadminadmin\(rq as a password. +\[lq]admin\[rq] with \[lq]adminadmin\[rq] as a password. .SH OPTIONS \f[B]\f[CB]\-\-help\f[B]\f[R] Prints the command line options. .PP diff --git a/doc/en/qbittorrent.1 b/doc/en/qbittorrent.1 index 7c304be93..c8737d286 100644 --- a/doc/en/qbittorrent.1 +++ b/doc/en/qbittorrent.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pandoc 3.7.0.2 +.\" Automatically generated by Pandoc 3.4 .\" .TH "QBITTORRENT" "1" "January 16th 2010" "Bittorrent client written in C++ / Qt" .SH NAME diff --git a/doc/ru/qbittorrent-nox.1 b/doc/ru/qbittorrent-nox.1 index 122716e44..315753991 100644 --- a/doc/ru/qbittorrent-nox.1 +++ b/doc/ru/qbittorrent-nox.1 @@ -1,8 +1,8 @@ -.\" Automatically generated by Pandoc 3.7.0.2 +.\" Automatically generated by Pandoc 3.4 .\" .TH "QBITTORRENT\-NOX" "1" "16 января 2010" "Клиент сети БитТоррент для командной строки" .SH НАЗВАНИЕ -qBittorrent\-nox \(em клиент сети БитТоррент для командной строки. +qBittorrent\-nox \[em] клиент сети БитТоррент для командной строки. .SH АВТОРЫ Christophe Dumez \c .MT chris@qbittorrent.org diff --git a/doc/ru/qbittorrent.1 b/doc/ru/qbittorrent.1 index 1d4f54a2c..7820ac398 100644 --- a/doc/ru/qbittorrent.1 +++ b/doc/ru/qbittorrent.1 @@ -1,8 +1,8 @@ -.\" Automatically generated by Pandoc 3.7.0.2 +.\" Automatically generated by Pandoc 3.4 .\" .TH "QBITTORRENT" "1" "16 января 2010" "Клиент сети БитТоррент" .SH НАЗВАНИЕ -qBittorrent \(em клиент сети БитТоррент. +qBittorrent \[em] клиент сети БитТоррент. .SH АВТОРЫ Christophe Dumez \c .MT chris@qbittorrent.org diff --git a/src/app/CMakeLists.txt b/src/app/CMakeLists.txt index 4c007ce1e..b5174aa45 100644 --- a/src/app/CMakeLists.txt +++ b/src/app/CMakeLists.txt @@ -86,19 +86,6 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Darwin") PROPERTIES MACOSX_PACKAGE_LOCATION Resources ) - # Generate lproj folders for the translations - foreach(TS_FILE IN LISTS QBT_TS_FILES) - string(FIND "${TS_FILE}" "_" POS) - math(EXPR START "${POS} + 1") - string(SUBSTRING "${TS_FILE}" ${START} -1 LPROJ_FOLDER) - string(REPLACE ".ts" ".lproj" LPROJ_FOLDER "${LPROJ_FOLDER}") - # @ is not valid as a language code for a lproj folder on MacOS - string(REPLACE "@" "-" LPROJ_FOLDER "${LPROJ_FOLDER}") - add_custom_command(TARGET qbt_app POST_BUILD - COMMAND ${CMAKE_COMMAND} -E make_directory - "$/../Resources/${LPROJ_FOLDER}" - ) - endforeach() # provide variables for substitution in dist/mac/Info.plist get_target_property(EXECUTABLE_NAME qbt_app OUTPUT_NAME) # This variable name should be changed once qmake is no longer used. Refer to the discussion in PR #14813 diff --git a/src/app/application.cpp b/src/app/application.cpp index da09211bd..cfb0dbd18 100644 --- a/src/app/application.cpp +++ b/src/app/application.cpp @@ -410,7 +410,7 @@ void Application::setMemoryWorkingSetLimit(const int size) return; m_storeMemoryWorkingSetLimit = size; -#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_LINUX) && !defined(Q_OS_MACOS) +#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_MACOS) applyMemoryWorkingSetLimit(); #endif } @@ -575,9 +575,6 @@ void Application::runExternalProgram(const QString &programTemplate, const BitTo case u'L': str.replace(i, 2, torrent->category()); break; - case u'M': - str.replace(i, 2, torrent->comment()); - break; case u'N': str.replace(i, 2, torrent->name()); break; @@ -662,13 +659,7 @@ void Application::runExternalProgram(const QString &programTemplate, const BitTo { // strip redundant quotes if (arg.startsWith(u'"') && arg.endsWith(u'"')) - { -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - arg.slice(1, (arg.size() - 2)); -#else - arg.removeLast().removeFirst(); -#endif - } + arg = arg.mid(1, (arg.size() - 2)); arg = replaceVariables(arg); } @@ -677,7 +668,6 @@ void Application::runExternalProgram(const QString &programTemplate, const BitTo QProcess proc; proc.setProgram(command); proc.setArguments(args); - proc.setUnixProcessParameters(QProcess::UnixProcessFlag::CloseFileDescriptors); if (proc.startDetached()) { @@ -847,7 +837,7 @@ int Application::exec() printf("%s\n", qUtf8Printable(loadingStr)); #endif -#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_LINUX) && !defined(Q_OS_MACOS) +#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_MACOS) applyMemoryWorkingSetLimit(); #endif @@ -1205,7 +1195,7 @@ void Application::shutdownCleanup([[maybe_unused]] QSessionManager &manager) } #endif -#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_LINUX) && !defined(Q_OS_MACOS) +#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_MACOS) void Application::applyMemoryWorkingSetLimit() const { const size_t MiB = 1024 * 1024; diff --git a/src/app/cmdoptions.cpp b/src/app/cmdoptions.cpp index 5ed6e4865..3cbf53e37 100644 --- a/src/app/cmdoptions.cpp +++ b/src/app/cmdoptions.cpp @@ -465,13 +465,13 @@ QBtCommandLineParameters parseCommandLine(const QStringList &args) return result; } -QString wrapText(const QString &text, const int initialIndentation = USAGE_TEXT_COLUMN, const int wrapAtColumn = WRAP_AT_COLUMN) +QString wrapText(const QString &text, int initialIndentation = USAGE_TEXT_COLUMN, int wrapAtColumn = WRAP_AT_COLUMN) { - const QStringList words = text.split(u' '); + QStringList words = text.split(u' '); QStringList lines = {words.first()}; int currentLineMaxLength = wrapAtColumn - initialIndentation; - for (const QString &word : asConst(words.sliced(1))) + for (const QString &word : asConst(words.mid(1))) { if (lines.last().length() + word.length() + 1 < currentLineMaxLength) { diff --git a/src/app/filelogger.cpp b/src/app/filelogger.cpp index 4c83c16a1..5436c1392 100644 --- a/src/app/filelogger.cpp +++ b/src/app/filelogger.cpp @@ -175,15 +175,12 @@ void FileLogger::flushLog() void FileLogger::openLogFile() { - if (!m_logFile.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Text)) + if (!m_logFile.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Text) + || !m_logFile.setPermissions(QFile::ReadOwner | QFile::WriteOwner)) { - LogMsg(tr("An error occurred while trying to open the log file. Logging to file is disabled. File: \"%1\". Error: \"%2\".") - .arg(m_logFile.fileName(), m_logFile.errorString()), Log::CRITICAL); - return; + m_logFile.close(); + LogMsg(tr("An error occurred while trying to open the log file. Logging to file is disabled."), Log::CRITICAL); } - - // best effort, don't report error - m_logFile.setPermissions(QFile::ReadOwner | QFile::WriteOwner); } void FileLogger::closeLogFile() diff --git a/src/base/CMakeLists.txt b/src/base/CMakeLists.txt index fa4123251..5bb0077a9 100644 --- a/src/base/CMakeLists.txt +++ b/src/base/CMakeLists.txt @@ -55,7 +55,6 @@ add_library(qbt_base STATIC concepts/stringable.h digest32.h exceptions.h - freediskspacechecker.h global.h http/connection.h http/httperror.h @@ -161,7 +160,6 @@ add_library(qbt_base STATIC bittorrent/trackerentry.cpp bittorrent/trackerentrystatus.cpp exceptions.cpp - freediskspacechecker.cpp http/connection.cpp http/httperror.cpp http/requestparser.cpp diff --git a/src/base/addtorrentmanager.cpp b/src/base/addtorrentmanager.cpp index bce47d6ab..14332098a 100644 --- a/src/base/addtorrentmanager.cpp +++ b/src/base/addtorrentmanager.cpp @@ -29,7 +29,6 @@ #include "addtorrentmanager.h" -#include "base/bittorrent/addtorrenterror.h" #include "base/bittorrent/infohash.h" #include "base/bittorrent/session.h" #include "base/bittorrent/torrentdescriptor.h" @@ -186,8 +185,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\". Torrent infohash: %3. Result: %4") - .arg(source, existingTorrent->name(), existingTorrent->infoHash().toString(), message)); + LogMsg(tr("Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3") + .arg(source, existingTorrent->name(), message)); emit addTorrentFailed(source, {BitTorrent::AddTorrentError::DuplicateTorrent, message}); } diff --git a/src/base/addtorrentmanager.h b/src/base/addtorrentmanager.h index c0044be65..0621be7a2 100644 --- a/src/base/addtorrentmanager.h +++ b/src/base/addtorrentmanager.h @@ -35,6 +35,7 @@ #include #include "base/applicationcomponent.h" +#include "base/bittorrent/addtorrenterror.h" #include "base/bittorrent/addtorrentparams.h" #include "base/torrentfileguard.h" @@ -44,7 +45,6 @@ namespace BitTorrent class Session; class Torrent; class TorrentDescriptor; - struct AddTorrentError; } namespace Net diff --git a/src/base/bittorrent/bencoderesumedatastorage.cpp b/src/base/bittorrent/bencoderesumedatastorage.cpp index 87b349f14..16a63207c 100644 --- a/src/base/bittorrent/bencoderesumedatastorage.cpp +++ b/src/base/bittorrent/bencoderesumedatastorage.cpp @@ -189,13 +189,8 @@ void BitTorrent::BencodeResumeDataStorage::loadQueue(const Path &queueFilename) return; } - QHash registeredTorrentsIndexes; - registeredTorrentsIndexes.reserve(m_registeredTorrents.length()); - for (qsizetype i = 0; i < m_registeredTorrents.length(); ++i) - registeredTorrentsIndexes.insert(m_registeredTorrents.at(i), i); - const QRegularExpression hashPattern {u"^([A-Fa-f0-9]{40})$"_s}; - qsizetype queuePos = 0; + int start = 0; while (true) { const auto line = QString::fromLatin1(queueFile.readLine(lineMaxLength).trimmed()); @@ -206,15 +201,11 @@ void BitTorrent::BencodeResumeDataStorage::loadQueue(const Path &queueFilename) if (rxMatch.hasMatch()) { const auto torrentID = BitTorrent::TorrentID::fromString(rxMatch.captured(1)); - const qsizetype pos = registeredTorrentsIndexes.value(torrentID, -1); + const int pos = m_registeredTorrents.indexOf(torrentID, start); if (pos != -1) { - if (pos != queuePos) - { - m_registeredTorrents.swapItemsAt(pos, queuePos); - registeredTorrentsIndexes.insert(m_registeredTorrents.at(pos), pos); - } - ++queuePos; + std::swap(m_registeredTorrents[start], m_registeredTorrents[pos]); + ++start; } } } @@ -351,9 +342,9 @@ BitTorrent::LoadResumeDataResult BitTorrent::BencodeResumeDataStorage::loadTorre return torrentParams; } -void BitTorrent::BencodeResumeDataStorage::store(const TorrentID &id, LoadTorrentParams resumeData) const +void BitTorrent::BencodeResumeDataStorage::store(const TorrentID &id, const LoadTorrentParams &resumeData) const { - QMetaObject::invokeMethod(m_asyncWorker, [this, id, resumeData = std::move(resumeData)] + QMetaObject::invokeMethod(m_asyncWorker, [this, id, resumeData]() { m_asyncWorker->store(id, resumeData); }); diff --git a/src/base/bittorrent/bencoderesumedatastorage.h b/src/base/bittorrent/bencoderesumedatastorage.h index 3e1f96943..38c10d865 100644 --- a/src/base/bittorrent/bencoderesumedatastorage.h +++ b/src/base/bittorrent/bencoderesumedatastorage.h @@ -50,7 +50,7 @@ namespace BitTorrent QList registeredTorrents() const override; LoadResumeDataResult load(const TorrentID &id) const override; - void store(const TorrentID &id, LoadTorrentParams resumeData) const override; + void store(const TorrentID &id, const LoadTorrentParams &resumeData) const override; void remove(const TorrentID &id) const override; void storeQueue(const QList &queue) const override; diff --git a/src/base/bittorrent/categoryoptions.cpp b/src/base/bittorrent/categoryoptions.cpp index c839670c6..fec609ff7 100644 --- a/src/base/bittorrent/categoryoptions.cpp +++ b/src/base/bittorrent/categoryoptions.cpp @@ -52,7 +52,7 @@ BitTorrent::CategoryOptions BitTorrent::CategoryOptions::fromJSON(const QJsonObj QJsonObject BitTorrent::CategoryOptions::toJSON() const { - QJsonValue downloadPathValue = QJsonValue::Null; + QJsonValue downloadPathValue = QJsonValue::Undefined; if (downloadPath) { if (downloadPath->enabled) diff --git a/src/base/bittorrent/dbresumedatastorage.cpp b/src/base/bittorrent/dbresumedatastorage.cpp index 64021d671..f9cc18769 100644 --- a/src/base/bittorrent/dbresumedatastorage.cpp +++ b/src/base/bittorrent/dbresumedatastorage.cpp @@ -86,7 +86,7 @@ namespace class StoreJob final : public Job { public: - StoreJob(const TorrentID &torrentID, LoadTorrentParams resumeData); + StoreJob(const TorrentID &torrentID, const LoadTorrentParams &resumeData); void perform(QSqlDatabase db) override; private: @@ -231,7 +231,7 @@ namespace BitTorrent void run() override; void requestInterruption(); - void store(const TorrentID &id, LoadTorrentParams resumeData); + void store(const TorrentID &id, const LoadTorrentParams &resumeData); void remove(const TorrentID &id); void storeQueue(const QList &queue); @@ -327,9 +327,9 @@ BitTorrent::LoadResumeDataResult BitTorrent::DBResumeDataStorage::load(const Tor return parseQueryResultRow(query); } -void BitTorrent::DBResumeDataStorage::store(const TorrentID &id, LoadTorrentParams resumeData) const +void BitTorrent::DBResumeDataStorage::store(const TorrentID &id, const LoadTorrentParams &resumeData) const { - m_asyncWorker->store(id, std::move(resumeData)); + m_asyncWorker->store(id, resumeData); } void BitTorrent::DBResumeDataStorage::remove(const BitTorrent::TorrentID &id) const @@ -769,9 +769,9 @@ void DBResumeDataStorage::Worker::requestInterruption() m_waitCondition.wakeAll(); } -void BitTorrent::DBResumeDataStorage::Worker::store(const TorrentID &id, LoadTorrentParams resumeData) +void BitTorrent::DBResumeDataStorage::Worker::store(const TorrentID &id, const LoadTorrentParams &resumeData) { - addJob(std::make_unique(id, std::move(resumeData))); + addJob(std::make_unique(id, resumeData)); } void BitTorrent::DBResumeDataStorage::Worker::remove(const TorrentID &id) @@ -797,9 +797,9 @@ namespace { using namespace BitTorrent; -StoreJob::StoreJob(const TorrentID &torrentID, LoadTorrentParams resumeData) + StoreJob::StoreJob(const TorrentID &torrentID, const LoadTorrentParams &resumeData) : m_torrentID {torrentID} - , m_resumeData {std::move(resumeData)} + , m_resumeData {resumeData} { } diff --git a/src/base/bittorrent/dbresumedatastorage.h b/src/base/bittorrent/dbresumedatastorage.h index a98148cd7..a7a97ab25 100644 --- a/src/base/bittorrent/dbresumedatastorage.h +++ b/src/base/bittorrent/dbresumedatastorage.h @@ -49,7 +49,7 @@ namespace BitTorrent QList registeredTorrents() const override; LoadResumeDataResult load(const TorrentID &id) const override; - void store(const TorrentID &id, LoadTorrentParams resumeData) const override; + void store(const TorrentID &id, const LoadTorrentParams &resumeData) const override; void remove(const TorrentID &id) const override; void storeQueue(const QList &queue) const override; diff --git a/src/base/bittorrent/filesearcher.cpp b/src/base/bittorrent/filesearcher.cpp index e7241b889..2fcd31f8f 100644 --- a/src/base/bittorrent/filesearcher.cpp +++ b/src/base/bittorrent/filesearcher.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2020-2025 Vladimir Golovnev + * Copyright (C) 2020 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -27,14 +27,13 @@ */ #include "filesearcher.h" - -#include - #include "base/bittorrent/common.h" +#include "base/bittorrent/infohash.h" -namespace +void FileSearcher::search(const BitTorrent::TorrentID &id, const PathList &originalFileNames + , const Path &savePath, const Path &downloadPath, const bool forceAppendExt) { - bool findInDir(const Path &dirPath, PathList &fileNames, const bool forceAppendExt) + const auto findInDir = [](const Path &dirPath, PathList &fileNames, const bool forceAppendExt) -> bool { bool found = false; for (Path &fileName : fileNames) @@ -59,12 +58,8 @@ namespace } return found; - } -} + }; -void FileSearcher::search(const PathList &originalFileNames, const Path &savePath - , const Path &downloadPath, const bool forceAppendExt, QPromise &promise) -{ Path usedPath = savePath; PathList adjustedFileNames = originalFileNames; const bool found = findInDir(usedPath, adjustedFileNames, (forceAppendExt && downloadPath.isEmpty())); @@ -74,5 +69,5 @@ void FileSearcher::search(const PathList &originalFileNames, const Path &savePat findInDir(usedPath, adjustedFileNames, forceAppendExt); } - promise.addResult(FileSearchResult {.savePath = usedPath, .fileNames = adjustedFileNames}); + emit searchFinished(id, usedPath, adjustedFileNames); } diff --git a/src/base/bittorrent/filesearcher.h b/src/base/bittorrent/filesearcher.h index f225b95dc..04495bd76 100644 --- a/src/base/bittorrent/filesearcher.h +++ b/src/base/bittorrent/filesearcher.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2020-2025 Vladimir Golovnev + * Copyright (C) 2020 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -32,13 +32,10 @@ #include "base/path.h" -template class QPromise; - -struct FileSearchResult +namespace BitTorrent { - Path savePath; - PathList fileNames; -}; + class TorrentID; +} class FileSearcher final : public QObject { @@ -46,8 +43,12 @@ class FileSearcher final : public QObject Q_DISABLE_COPY_MOVE(FileSearcher) public: - using QObject::QObject; + FileSearcher() = default; - void search(const PathList &originalFileNames, const Path &savePath - , const Path &downloadPath, bool forceAppendExt, QPromise &promise); +public slots: + void search(const BitTorrent::TorrentID &id, const PathList &originalFileNames + , const Path &savePath, const Path &downloadPath, bool forceAppendExt); + +signals: + void searchFinished(const BitTorrent::TorrentID &id, const Path &savePath, const PathList &fileNames); }; diff --git a/src/base/bittorrent/infohash.cpp b/src/base/bittorrent/infohash.cpp index e4df6c619..c4b514e8c 100644 --- a/src/base/bittorrent/infohash.cpp +++ b/src/base/bittorrent/infohash.cpp @@ -29,9 +29,6 @@ #include "infohash.h" #include -#include - -#include "base/global.h" const int TorrentIDTypeId = qRegisterMetaType(); @@ -89,28 +86,6 @@ 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 2153c104f..d870e0fd2 100644 --- a/src/base/bittorrent/infohash.h +++ b/src/base/bittorrent/infohash.h @@ -36,8 +36,6 @@ #include "base/digest32.h" -class QString; - using SHA1Hash = Digest32<160>; using SHA256Hash = Digest32<256>; @@ -81,8 +79,6 @@ namespace BitTorrent SHA256Hash v2() const; TorrentID toTorrentID() const; - QString toString() const; - operator WrappedType() const; private: diff --git a/src/base/bittorrent/peeraddress.cpp b/src/base/bittorrent/peeraddress.cpp index e4ef445ef..1d05ef92f 100644 --- a/src/base/bittorrent/peeraddress.cpp +++ b/src/base/bittorrent/peeraddress.cpp @@ -39,11 +39,7 @@ PeerAddress PeerAddress::parse(const QStringView address) if (address.startsWith(u'[') && address.contains(u"]:")) { // IPv6 ipPort = address.split(u"]:"); -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - ipPort[0].slice(1); // chop '[' -#else - ipPort[0] = ipPort[0].sliced(1); // chop '[' -#endif + ipPort[0] = ipPort[0].mid(1); // chop '[' } else if (address.contains(u':')) { // IPv4 diff --git a/src/base/bittorrent/resumedatastorage.cpp b/src/base/bittorrent/resumedatastorage.cpp index e74ec1123..f21d3c832 100644 --- a/src/base/bittorrent/resumedatastorage.cpp +++ b/src/base/bittorrent/resumedatastorage.cpp @@ -71,8 +71,8 @@ QList BitTorrent::ResumeDataStorage::fetchLoadedRe return loadedResumeData; } -void BitTorrent::ResumeDataStorage::onResumeDataLoaded(const TorrentID &torrentID, LoadResumeDataResult loadResumeDataResult) const +void BitTorrent::ResumeDataStorage::onResumeDataLoaded(const TorrentID &torrentID, const LoadResumeDataResult &loadResumeDataResult) const { const QMutexLocker locker {&m_loadedResumeDataMutex}; - m_loadedResumeData.append({.torrentID = torrentID, .result = std::move(loadResumeDataResult)}); + m_loadedResumeData.append({torrentID, loadResumeDataResult}); } diff --git a/src/base/bittorrent/resumedatastorage.h b/src/base/bittorrent/resumedatastorage.h index 17f857602..f2df1b1e2 100644 --- a/src/base/bittorrent/resumedatastorage.h +++ b/src/base/bittorrent/resumedatastorage.h @@ -60,7 +60,7 @@ namespace BitTorrent virtual QList registeredTorrents() const = 0; virtual LoadResumeDataResult load(const TorrentID &id) const = 0; - virtual void store(const TorrentID &id, LoadTorrentParams resumeData) const = 0; + virtual void store(const TorrentID &id, const LoadTorrentParams &resumeData) const = 0; virtual void remove(const TorrentID &id) const = 0; virtual void storeQueue(const QList &queue) const = 0; @@ -72,7 +72,7 @@ namespace BitTorrent void loadFinished(); protected: - void onResumeDataLoaded(const TorrentID &torrentID, LoadResumeDataResult loadResumeDataResult) const; + void onResumeDataLoaded(const TorrentID &torrentID, const LoadResumeDataResult &loadResumeDataResult) const; private: virtual void doLoadAll() const = 0; diff --git a/src/base/bittorrent/session.h b/src/base/bittorrent/session.h index cae03ba83..d35b9839e 100644 --- a/src/base/bittorrent/session.h +++ b/src/base/bittorrent/session.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -422,8 +422,6 @@ namespace BitTorrent virtual void setUTPRateLimited(bool limited) = 0; virtual MixedModeAlgorithm utpMixedMode() const = 0; virtual void setUtpMixedMode(MixedModeAlgorithm mode) = 0; - virtual int hostnameCacheTTL() const = 0; - virtual void setHostnameCacheTTL(int value) = 0; virtual bool isIDNSupportEnabled() const = 0; virtual void setIDNSupportEnabled(bool enabled) = 0; virtual bool multiConnectionsPerIpEnabled() const = 0; @@ -482,8 +480,6 @@ namespace BitTorrent virtual QString lastExternalIPv4Address() const = 0; virtual QString lastExternalIPv6Address() const = 0; - virtual qint64 freeDiskSpace() const = 0; - signals: void startupProgressUpdated(int progress); void addTorrentFailed(const InfoHash &infoHash, const AddTorrentError &reason); @@ -493,6 +489,7 @@ namespace BitTorrent void categoryOptionsChanged(const QString &categoryName); void fullDiskError(Torrent *torrent, const QString &msg); void IPFilterParsed(bool error, int ruleCount); + void loadTorrentFailed(const QString &error); void metadataDownloaded(const TorrentInfo &info); void restored(); void paused(); @@ -523,6 +520,5 @@ namespace BitTorrent void trackerSuccess(Torrent *torrent, const QString &tracker); void trackerWarning(Torrent *torrent, const QString &tracker); void trackerEntryStatusesUpdated(Torrent *torrent, const QHash &updatedTrackers); - void freeDiskSpaceChecked(qint64 result); }; } diff --git a/src/base/bittorrent/sessionimpl.cpp b/src/base/bittorrent/sessionimpl.cpp index 3bdd9ff13..da1419f49 100644 --- a/src/base/bittorrent/sessionimpl.cpp +++ b/src/base/bittorrent/sessionimpl.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -30,7 +30,6 @@ #include "sessionimpl.h" #include -#include #include #include #include @@ -62,7 +61,6 @@ #include #include #include -#include #include #include #include @@ -71,7 +69,6 @@ #include #include #include -#include #include #include #include @@ -79,7 +76,6 @@ #include #include "base/algorithm.h" -#include "base/freediskspacechecker.h" #include "base/global.h" #include "base/logger.h" #include "base/net/downloadmanager.h" @@ -119,7 +115,6 @@ using namespace BitTorrent; const Path CATEGORIES_FILE_NAME {u"categories.json"_s}; const int MAX_PROCESSING_RESUMEDATA_COUNT = 50; -const std::chrono::seconds FREEDISKSPACE_CHECK_TIMEOUT = 30s; namespace { @@ -316,44 +311,6 @@ namespace break; } } - -#ifdef QBT_USES_LIBTORRENT2 - template - concept HasInfoHashMember = requires (T t) { { t.info_hashes } -> std::convertible_to; }; - - template - concept HasInfoHashMemberFn = requires (T t) { { t.info_hashes() } -> std::convertible_to; }; - - template - InfoHash getInfoHash(const T &t) { return t.info_hashes; } - - template - InfoHash getInfoHash(const T &t) { return t.info_hashes(); } - - InfoHash getInfoHash(const lt::add_torrent_params &addTorrentParams) - { - const bool hasMetadata = (addTorrentParams.ti && addTorrentParams.ti->is_valid()); - return hasMetadata ? getInfoHash(*addTorrentParams.ti) : InfoHash(addTorrentParams.info_hashes); - } - #else - template - concept HasInfoHashMember = requires (T t) { { t.info_hash } -> std::convertible_to; }; - - template - concept HasInfoHashMemberFn = requires (T t) { { t.info_hash() } -> std::convertible_to; }; - - template - InfoHash getInfoHash(const T &t) { return t.info_hash; } - - template - InfoHash getInfoHash(const T &t) { return t.info_hash(); } - - InfoHash getInfoHash(const lt::add_torrent_params &addTorrentParams) - { - const bool hasMetadata = (addTorrentParams.ti && addTorrentParams.ti->is_valid()); - return hasMetadata ? getInfoHash(*addTorrentParams.ti) : InfoHash(addTorrentParams.info_hash); - } - #endif } struct BitTorrent::SessionImpl::ResumeSessionContext final : public QObject @@ -406,7 +363,7 @@ QString Session::subcategoryName(const QString &category) { const int sepIndex = category.lastIndexOf(u'/'); if (sepIndex >= 0) - return category.sliced(sepIndex + 1); + return category.mid(sepIndex + 1); return category; } @@ -415,7 +372,7 @@ QString Session::parentCategoryName(const QString &category) { const int sepIndex = category.lastIndexOf(u'/'); if (sepIndex >= 0) - return category.first(sepIndex); + return category.left(sepIndex); return {}; } @@ -426,7 +383,7 @@ QStringList Session::expandCategory(const QString &category) int index = 0; while ((index = category.indexOf(u'/', index)) >= 0) { - result << category.first(index); + result << category.left(index); ++index; } result << category; @@ -501,7 +458,6 @@ SessionImpl::SessionImpl(QObject *parent) , m_isUTPRateLimited(BITTORRENT_SESSION_KEY(u"uTPRateLimited"_s), true) , m_utpMixedMode(BITTORRENT_SESSION_KEY(u"uTPMixedMode"_s), MixedModeAlgorithm::TCP , clampValue(MixedModeAlgorithm::TCP, MixedModeAlgorithm::Proportional)) - , m_hostnameCacheTTL(BITTORRENT_SESSION_KEY(u"HostnameCacheTTL"_s), 1200) , m_IDNSupportEnabled(BITTORRENT_SESSION_KEY(u"IDNSupportEnabled"_s), false) , m_multiConnectionsPerIpEnabled(BITTORRENT_SESSION_KEY(u"MultiConnectionsPerIp"_s), false) , m_validateHTTPSTrackerCertificate(BITTORRENT_SESSION_KEY(u"ValidateHTTPSTrackerCertificate"_s), true) @@ -586,8 +542,6 @@ SessionImpl::SessionImpl(QObject *parent) , m_ioThread {new QThread} , m_asyncWorker {new QThreadPool(this)} , m_recentErroredTorrentsTimer {new QTimer(this)} - , m_freeDiskSpaceChecker {new FreeDiskSpaceChecker(savePath())} - , m_freeDiskSpaceCheckingTimer {new QTimer(this)} { // It is required to perform async access to libtorrent sequentially m_asyncWorker->setMaxThreadCount(1); @@ -648,21 +602,10 @@ SessionImpl::SessionImpl(QObject *parent) , &Net::ProxyConfigurationManager::proxyConfigurationChanged , this, &SessionImpl::configureDeferred); - m_freeDiskSpaceChecker->moveToThread(m_ioThread.get()); - connect(m_ioThread.get(), &QThread::finished, m_freeDiskSpaceChecker, &QObject::deleteLater); - m_freeDiskSpaceCheckingTimer->setInterval(FREEDISKSPACE_CHECK_TIMEOUT); - m_freeDiskSpaceCheckingTimer->setSingleShot(true); - connect(m_freeDiskSpaceCheckingTimer, &QTimer::timeout, m_freeDiskSpaceChecker, &FreeDiskSpaceChecker::check); - connect(m_freeDiskSpaceChecker, &FreeDiskSpaceChecker::checked, this, [this](const qint64 value) - { - m_freeDiskSpace = value; - m_freeDiskSpaceCheckingTimer->start(); - emit freeDiskSpaceChecked(m_freeDiskSpace); - }); - m_fileSearcher = new FileSearcher; m_fileSearcher->moveToThread(m_ioThread.get()); connect(m_ioThread.get(), &QThread::finished, m_fileSearcher, &QObject::deleteLater); + connect(m_fileSearcher, &FileSearcher::searchFinished, this, &SessionImpl::fileSearchFinished); m_torrentContentRemover = new TorrentContentRemover; m_torrentContentRemover->moveToThread(m_ioThread.get()); @@ -672,8 +615,6 @@ SessionImpl::SessionImpl(QObject *parent) m_ioThread->setObjectName("SessionImpl m_ioThread"); m_ioThread->start(); - QMetaObject::invokeMethod(m_freeDiskSpaceChecker, &FreeDiskSpaceChecker::check); - initMetrics(); loadStatistics(); @@ -1463,13 +1404,15 @@ void SessionImpl::handleLoadedResumeData(ResumeSessionContext *context) void SessionImpl::processNextResumeData(ResumeSessionContext *context) { - auto [torrentID, loadResumeDataResult] = context->loadedResumeData.takeFirst(); + const LoadedResumeData loadedResumeDataItem = context->loadedResumeData.takeFirst(); + TorrentID torrentID = loadedResumeDataItem.torrentID; #ifdef QBT_USES_LIBTORRENT2 if (context->skippedIDs.contains(torrentID)) return; #endif + const nonstd::expected &loadResumeDataResult = loadedResumeDataItem.result; if (!loadResumeDataResult) { LogMsg(tr("Failed to resume torrent. Torrent: \"%1\". Reason: \"%2\"") @@ -1477,11 +1420,13 @@ void SessionImpl::processNextResumeData(ResumeSessionContext *context) return; } - LoadTorrentParams resumeData = std::move(*loadResumeDataResult); + LoadTorrentParams resumeData = *loadResumeDataResult; bool needStore = false; - const InfoHash infoHash = getInfoHash(resumeData.ltAddTorrentParams); #ifdef QBT_USES_LIBTORRENT2 + const InfoHash infoHash {(resumeData.ltAddTorrentParams.ti + ? resumeData.ltAddTorrentParams.ti->info_hashes() + : resumeData.ltAddTorrentParams.info_hashes)}; const bool isHybrid = infoHash.isHybrid(); const auto torrentIDv2 = TorrentID::fromInfoHash(infoHash); const auto torrentIDv1 = TorrentID::fromSHA1Hash(infoHash.v1()); @@ -1512,10 +1457,11 @@ void SessionImpl::processNextResumeData(ResumeSessionContext *context) { context->skippedIDs.insert(torrentID); - if (nonstd::expected loadPreferredResumeDataResult = context->startupStorage->load(torrentID)) + const nonstd::expected loadPreferredResumeDataResult = context->startupStorage->load(torrentID); + if (loadPreferredResumeDataResult) { std::shared_ptr ti = resumeData.ltAddTorrentParams.ti; - resumeData = std::move(*loadPreferredResumeDataResult); + resumeData = *loadPreferredResumeDataResult; if (!resumeData.ltAddTorrentParams.ti) resumeData.ltAddTorrentParams.ti = std::move(ti); } @@ -1528,6 +1474,9 @@ void SessionImpl::processNextResumeData(ResumeSessionContext *context) return; } #else + const lt::sha1_hash infoHash = (resumeData.ltAddTorrentParams.ti + ? resumeData.ltAddTorrentParams.ti->info_hash() + : resumeData.ltAddTorrentParams.info_hash); if (torrentID != TorrentID::fromInfoHash(infoHash)) { LogMsg(tr("Failed to resume torrent: inconsistent torrent ID is detected. Torrent: \"%1\"") @@ -1552,7 +1501,7 @@ void SessionImpl::processNextResumeData(ResumeSessionContext *context) // == END UPGRADE CODE == if (needStore) - m_resumeDataStorage->store(torrentID, resumeData); + m_resumeDataStorage->store(torrentID, resumeData); const QString category = resumeData.category; bool isCategoryRecovered = context->recoveredCategories.contains(category); @@ -1617,23 +1566,16 @@ void SessionImpl::processNextResumeData(ResumeSessionContext *context) #endif qDebug() << "Starting up torrent" << torrentID.toString() << "..."; - m_nativeSession->async_add_torrent(resumeData.ltAddTorrentParams); - m_addTorrentAlertHandlers.append([this, resumeData = std::move(resumeData)](const lt::add_torrent_alert *alert) mutable + m_loadingTorrents.insert(torrentID, resumeData); +#ifdef QBT_USES_LIBTORRENT2 + if (infoHash.isHybrid()) { - if (alert->error) - { - const QString msg = QString::fromStdString(alert->message()); - LogMsg(tr("Failed to load torrent. Reason: \"%1\"").arg(msg), Log::WARNING); - } - else - { - Torrent *torrent = createTorrent(alert->handle, std::move(resumeData)); - m_loadedTorrents.append(torrent); - - LogMsg(tr("Restored torrent. Torrent: \"%1\"").arg(torrent->name())); - } - }); - + // this allows to know the being added hybrid torrent by its v1 info hash + // without having yet another mapping table + m_hybridTorrentsByAltID.insert(torrentIDv1, nullptr); + } +#endif + m_nativeSession->async_add_torrent(resumeData.ltAddTorrentParams); ++context->processingResumeDataCount; } @@ -1681,7 +1623,11 @@ void SessionImpl::endStartup(ResumeSessionContext *context) auto wakeupCheckTimer = new QTimer(this); connect(wakeupCheckTimer, &QTimer::timeout, this, [this] { +#if (QT_VERSION >= QT_VERSION_CHECK(6, 6, 0)) const bool hasSystemSlept = m_wakeupCheckTimestamp.durationElapsed() > 100s; +#else + const bool hasSystemSlept = m_wakeupCheckTimestamp.elapsed() > std::chrono::milliseconds(100s).count(); +#endif if (hasSystemSlept) { LogMsg(tr("System wake-up event detected. Re-announcing to all the trackers...")); @@ -2111,8 +2057,6 @@ lt::settings_pack SessionImpl::loadLTSettings() const break; } - settingsPack.set_int(lt::settings_pack::resolver_cache_timeout, hostnameCacheTTL()); - settingsPack.set_bool(lt::settings_pack::allow_idna, isIDNSupportEnabled()); settingsPack.set_bool(lt::settings_pack::allow_multiple_connections_per_ip, multiConnectionsPerIpEnabled()); @@ -2415,6 +2359,31 @@ void SessionImpl::processTorrentShareLimits(TorrentImpl *torrent) } } +void SessionImpl::fileSearchFinished(const TorrentID &id, const Path &savePath, const PathList &fileNames) +{ + TorrentImpl *torrent = m_torrents.value(id); + if (torrent) + { + torrent->fileSearchFinished(savePath, fileNames); + return; + } + + const auto loadingTorrentsIter = m_loadingTorrents.find(id); + if (loadingTorrentsIter != m_loadingTorrents.end()) + { + LoadTorrentParams ¶ms = loadingTorrentsIter.value(); + lt::add_torrent_params &p = params.ltAddTorrentParams; + + p.save_path = savePath.toString().toStdString(); + const TorrentInfo torrentInfo {*p.ti}; + const auto nativeIndexes = torrentInfo.nativeIndexes(); + for (int i = 0; i < fileNames.size(); ++i) + p.renamed_files[nativeIndexes[i]] = fileNames[i].toString().toStdString(); + + m_nativeSession->async_add_torrent(p); + } +} + void SessionImpl::torrentContentRemovingFinished(const QString &torrentName, const QString &errorMessage) { if (errorMessage.isEmpty()) @@ -2436,7 +2405,7 @@ Torrent *SessionImpl::getTorrent(const TorrentID &id) const Torrent *SessionImpl::findTorrent(const InfoHash &infoHash) const { const auto id = TorrentID::fromInfoHash(infoHash); - if (Torrent *torrent = m_torrents.value(id)) + if (Torrent *torrent = m_torrents.value(id); torrent) return torrent; if (!infoHash.isHybrid()) @@ -2495,12 +2464,12 @@ bool SessionImpl::removeTorrent(const TorrentID &id, const TorrentRemoveOption d m_removingTorrents[torrentID] = {torrentName, torrent->actualStorageLocation(), {}, deleteOption}; const lt::torrent_handle nativeHandle {torrent->nativeHandle()}; - const auto iter = std::find_if(m_moveStorageQueue.cbegin(), m_moveStorageQueue.cend() + const auto iter = std::find_if(m_moveStorageQueue.begin(), m_moveStorageQueue.end() , [&nativeHandle](const MoveStorageJob &job) { return job.torrentHandle == nativeHandle; }); - if (iter != m_moveStorageQueue.cend()) + if (iter != m_moveStorageQueue.end()) { // We shouldn't actually remove torrent until existing "move storage jobs" are done torrentQueuePositionBottom(nativeHandle); @@ -2520,12 +2489,12 @@ bool SessionImpl::removeTorrent(const TorrentID &id, const TorrentRemoveOption d { // Delete "move storage job" for the deleted torrent // (note: we shouldn't delete active job) - const auto iter = std::find_if((m_moveStorageQueue.cbegin() + 1), m_moveStorageQueue.cend() + const auto iter = std::find_if((m_moveStorageQueue.begin() + 1), m_moveStorageQueue.end() , [torrent](const MoveStorageJob &job) { return job.torrentHandle == torrent->nativeHandle(); }); - if (iter != m_moveStorageQueue.cend()) + if (iter != m_moveStorageQueue.end()) m_moveStorageQueue.erase(iter); } @@ -2542,8 +2511,8 @@ bool SessionImpl::removeTorrent(const TorrentID &id, const TorrentRemoveOption d bool SessionImpl::cancelDownloadMetadata(const TorrentID &id) { - const auto downloadedMetadataIter = m_downloadedMetadata.constFind(id); - if (downloadedMetadataIter == m_downloadedMetadata.cend()) + const auto downloadedMetadataIter = m_downloadedMetadata.find(id); + if (downloadedMetadataIter == m_downloadedMetadata.end()) return false; const lt::torrent_handle nativeHandle = downloadedMetadataIter.value(); @@ -2553,7 +2522,7 @@ bool SessionImpl::cancelDownloadMetadata(const TorrentID &id) return true; #ifdef QBT_USES_LIBTORRENT2 - const InfoHash infoHash = getInfoHash(nativeHandle); + const InfoHash infoHash {nativeHandle.info_hashes()}; if (infoHash.isHybrid()) { // if magnet link was hybrid initially then it is indexed also by v1 info hash @@ -2782,6 +2751,14 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr // alternative ID can be useful to find existing torrent in case if hybrid torrent was added by v1 info hash const auto altID = (infoHash.isHybrid() ? TorrentID::fromSHA1Hash(infoHash.v1()) : TorrentID()); + // We should not add the torrent if it is already + // processed or is pending to add to session + if (m_loadingTorrents.contains(id) || (infoHash.isHybrid() && m_loadingTorrents.contains(altID))) + { + emit addTorrentFailed(infoHash, {AddTorrentError::DuplicateTorrent, tr("Duplicate torrent")}); + return false; + } + if (Torrent *torrent = findTorrent(infoHash)) { // a duplicate torrent is being added @@ -2795,8 +2772,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\". Torrent infohash: %2. Result: %3") - .arg(torrent->name(), torrent->infoHash().toString(), message)); + LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2") + .arg(torrent->name(), message)); emit addTorrentFailed(infoHash, {AddTorrentError::DuplicateTorrent, message}); return false; } @@ -2805,8 +2782,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\". Torrent infohash: %2. Result: %3") - .arg(torrent->name(), torrent->infoHash().toString(), message)); + LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2") + .arg(torrent->name(), message)); emit addTorrentFailed(infoHash, {AddTorrentError::DuplicateTorrent, message}); return false; } @@ -2816,8 +2793,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\". Torrent infohash: %2. Result: %3") - .arg(torrent->name(), torrent->infoHash().toString(), message)); + LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2") + .arg(torrent->name(), message)); emit addTorrentFailed(infoHash, {AddTorrentError::DuplicateTorrent, message}); return false; } @@ -2834,12 +2811,11 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr lt::add_torrent_params &p = loadTorrentParams.ltAddTorrentParams; p = source.ltAddTorrentParams(); + bool isFindingIncompleteFiles = false; + const bool useAutoTMM = loadTorrentParams.useAutoTMM; const Path actualSavePath = useAutoTMM ? categorySavePath(loadTorrentParams.category) : loadTorrentParams.savePath; - bool needFindIncompleteFiles = false; - PathList filePaths; - if (hasMetadata) { // Torrent that is being added with metadata is considered to be added as stopped @@ -2854,7 +2830,7 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr Q_ASSERT(addTorrentParams.filePaths.isEmpty() || (addTorrentParams.filePaths.size() == torrentInfo.filesCount())); - filePaths = addTorrentParams.filePaths; + PathList filePaths = addTorrentParams.filePaths; if (filePaths.isEmpty()) { filePaths = torrentInfo.filePaths(); @@ -2899,7 +2875,18 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr } if (!loadTorrentParams.hasFinishedStatus) - needFindIncompleteFiles = true; + { + const Path actualDownloadPath = useAutoTMM + ? categoryDownloadPath(loadTorrentParams.category) : loadTorrentParams.downloadPath; + findIncompleteFiles(torrentInfo, actualSavePath, actualDownloadPath, filePaths); + isFindingIncompleteFiles = true; + } + + if (!isFindingIncompleteFiles) + { + for (int index = 0; index < filePaths.size(); ++index) + p.renamed_files[nativeIndexes[index]] = filePaths.at(index).toString().toStdString(); + } const int internalFilesCount = torrentInfo.nativeInfo()->files().num_files(); // including .pad files // Use qBittorrent default priority rather than libtorrent's (4) @@ -2919,6 +2906,8 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr loadTorrentParams.name = QString::fromStdString(p.name); } + p.save_path = actualSavePath.toString().toStdString(); + if (isAddTrackersEnabled() && !(hasMetadata && p.ti->priv())) { const auto maxTierIter = std::max_element(p.tracker_tiers.cbegin(), p.tracker_tiers.cend()); @@ -2989,80 +2978,26 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr p.storage = customStorageConstructor; #endif - const auto resolveFileNames = [&, this] - { - if (!needFindIncompleteFiles) - return QtFuture::makeReadyValueFuture(FileSearchResult {.savePath = actualSavePath, .fileNames = filePaths}); - - const Path actualDownloadPath = loadTorrentParams.useAutoTMM - ? categoryDownloadPath(loadTorrentParams.category) : loadTorrentParams.downloadPath; - return findIncompleteFiles(actualSavePath, actualDownloadPath, filePaths); - }; - - resolveFileNames().then(this, [this, id, loadTorrentParams = std::move(loadTorrentParams)](const FileSearchResult &result) mutable - { - lt::add_torrent_params &p = loadTorrentParams.ltAddTorrentParams; - - p.save_path = result.savePath.toString().toStdString(); - if (p.ti) - { - const TorrentInfo torrentInfo {*p.ti}; - const auto nativeIndexes = torrentInfo.nativeIndexes(); - for (int i = 0; i < result.fileNames.size(); ++i) - p.renamed_files[nativeIndexes[i]] = result.fileNames[i].toString().toStdString(); - } - + m_loadingTorrents.insert(id, loadTorrentParams); + if (infoHash.isHybrid()) + m_hybridTorrentsByAltID.insert(altID, nullptr); + if (!isFindingIncompleteFiles) m_nativeSession->async_add_torrent(p); - m_addTorrentAlertHandlers.append([this, loadTorrentParams = std::move(loadTorrentParams)](const lt::add_torrent_alert *alert) mutable - { - if (alert->error) - { - const QString msg = QString::fromStdString(alert->message()); - LogMsg(tr("Failed to add torrent. Reason: \"%1\"").arg(msg), Log::WARNING); - - const InfoHash infoHash = getInfoHash(alert->params); - const AddTorrentError::Kind errorKind = (alert->error == lt::errors::duplicate_torrent) - ? AddTorrentError::DuplicateTorrent : AddTorrentError::Other; - emit addTorrentFailed(infoHash, {errorKind, msg}); - } - else - { - if (loadTorrentParams.addToQueueTop) - alert->handle.queue_position_top(); - - TorrentImpl *torrent = createTorrent(alert->handle, std::move(loadTorrentParams)); - m_loadedTorrents.append(torrent); - - torrent->requestResumeData(lt::torrent_handle::save_info_dict); - - LogMsg(tr("Added new torrent. Torrent: \"%1\"").arg(torrent->name())); - emit torrentAdded(torrent); - - // The following is useless for newly added magnet - if (torrent->hasMetadata()) - { - if (!torrentExportDirectory().isEmpty()) - exportTorrentFile(torrent, torrentExportDirectory()); - } - } - }); - }); return true; } -QFuture SessionImpl::findIncompleteFiles(const Path &savePath, const Path &downloadPath, const PathList &filePaths) const +void SessionImpl::findIncompleteFiles(const TorrentInfo &torrentInfo, const Path &savePath + , const Path &downloadPath, const PathList &filePaths) const { - QPromise promise; - QFuture future = promise.future(); - promise.start(); - QMetaObject::invokeMethod(m_fileSearcher, [=, this, promise = std::move(promise)]() mutable - { - m_fileSearcher->search(filePaths, savePath, downloadPath, isAppendExtensionEnabled(), promise); - promise.finish(); - }); + Q_ASSERT(filePaths.isEmpty() || (filePaths.size() == torrentInfo.filesCount())); - return future; + const auto searchId = TorrentID::fromInfoHash(torrentInfo.infoHash()); + const PathList originalFileNames = (filePaths.isEmpty() ? torrentInfo.filePaths() : filePaths); + QMetaObject::invokeMethod(m_fileSearcher, [=, this] + { + m_fileSearcher->search(searchId, originalFileNames, savePath, downloadPath, isAppendExtensionEnabled()); + }); } void SessionImpl::enablePortMapping() @@ -3200,33 +3135,6 @@ bool SessionImpl::downloadMetadata(const TorrentDescriptor &torrentDescr) // Adding torrent to libtorrent session m_nativeSession->async_add_torrent(p); m_downloadedMetadata.insert(id, {}); - m_addTorrentAlertHandlers.append([this](const lt::add_torrent_alert *alert) - { - if (alert->error) - { - const QString msg = QString::fromStdString(alert->message()); - LogMsg(tr("Failed to download torrent metadata. Reason: \"%1\"").arg(msg), Log::WARNING); - - m_downloadedMetadata.remove(getInfoHash(alert->params).toTorrentID()); - } - else - { - const InfoHash infoHash = getInfoHash(alert->handle); - const auto torrentID = TorrentID::fromInfoHash(infoHash); - - if (const auto downloadedMetadataIter = m_downloadedMetadata.find(torrentID) - ; downloadedMetadataIter != m_downloadedMetadata.end()) - { - downloadedMetadataIter.value() = alert->handle; - if (infoHash.isHybrid()) - { - // index hybrid magnet links by both v1 and v2 info hashes - const auto altID = TorrentID::fromSHA1Hash(infoHash.v1()); - m_downloadedMetadata[altID] = alert->handle; - } - } - } - }); return true; } @@ -3301,7 +3209,7 @@ void SessionImpl::saveResumeData() fetchPendingAlerts(waitTime); bool hasWantedAlert = false; - for (lt::alert *alert : m_alerts) + for (const lt::alert *alert : m_alerts) { if (const int alertType = alert->type(); (alertType == lt::save_resume_data_alert::alert_type) || (alertType == lt::save_resume_data_failed_alert::alert_type) @@ -3373,14 +3281,6 @@ void SessionImpl::setSavePath(const Path &path) m_savePath = newPath; for (TorrentImpl *const torrent : asConst(m_torrents)) torrent->handleCategoryOptionsChanged(); - - m_freeDiskSpace = -1; - m_freeDiskSpaceCheckingTimer->stop(); - QMetaObject::invokeMethod(m_freeDiskSpaceChecker, [checker = m_freeDiskSpaceChecker, pathToCheck = m_savePath] - { - checker->setPathToCheck(pathToCheck); - checker->check(); - }); } void SessionImpl::setDownloadPath(const Path &path) @@ -5142,20 +5042,6 @@ void SessionImpl::setUtpMixedMode(const MixedModeAlgorithm mode) configureDeferred(); } -int SessionImpl::hostnameCacheTTL() const -{ - return m_hostnameCacheTTL; -} - -void SessionImpl::setHostnameCacheTTL(const int value) -{ - if (value == hostnameCacheTTL()) - return; - - m_hostnameCacheTTL = value; - configureDeferred(); -} - bool SessionImpl::isIDNSupportEnabled() const { return m_IDNSupportEnabled; @@ -5245,11 +5131,6 @@ QString SessionImpl::lastExternalIPv6Address() const return m_lastExternalIPv6Address; } -qint64 SessionImpl::freeDiskSpace() const -{ - return m_freeDiskSpace; -} - bool SessionImpl::isListening() const { return m_nativeSessionExtension->isSessionListening(); @@ -5275,6 +5156,8 @@ bool SessionImpl::isKnownTorrent(const InfoHash &infoHash) const // in case if hybrid torrent was added by v1 info hash const auto altID = (isHybrid ? TorrentID::fromSHA1Hash(infoHash.v1()) : TorrentID()); + if (m_loadingTorrents.contains(id) || (isHybrid && m_loadingTorrents.contains(altID))) + return true; if (m_downloadedMetadata.contains(id) || (isHybrid && m_downloadedMetadata.contains(altID))) return true; return findTorrent(infoHash); @@ -5400,11 +5283,11 @@ void SessionImpl::handleTorrentFinished(TorrentImpl *const torrent) m_pendingFinishedTorrents.append(torrent); } -void SessionImpl::handleTorrentResumeDataReady(TorrentImpl *const torrent, LoadTorrentParams data) +void SessionImpl::handleTorrentResumeDataReady(TorrentImpl *const torrent, const LoadTorrentParams &data) { - m_resumeDataStorage->store(torrent->id(), std::move(data)); - const auto iter = m_changedTorrentIDs.constFind(torrent->id()); - if (iter != m_changedTorrentIDs.cend()) + m_resumeDataStorage->store(torrent->id(), data); + const auto iter = m_changedTorrentIDs.find(torrent->id()); + if (iter != m_changedTorrentIDs.end()) { m_resumeDataStorage->remove(iter.value()); m_changedTorrentIDs.erase(iter); @@ -5437,11 +5320,11 @@ bool SessionImpl::addMoveTorrentStorageJob(TorrentImpl *torrent, const Path &new const lt::torrent_handle torrentHandle = torrent->nativeHandle(); const Path currentLocation = torrent->actualStorageLocation(); - const bool torrentHasActiveJob = !m_moveStorageQueue.isEmpty() && (m_moveStorageQueue.constFirst().torrentHandle == torrentHandle); + const bool torrentHasActiveJob = !m_moveStorageQueue.isEmpty() && (m_moveStorageQueue.first().torrentHandle == torrentHandle); if (m_moveStorageQueue.size() > 1) { - auto iter = std::find_if((m_moveStorageQueue.cbegin() + 1), m_moveStorageQueue.cend() + auto iter = std::find_if((m_moveStorageQueue.begin() + 1), m_moveStorageQueue.end() , [&torrentHandle](const MoveStorageJob &job) { return job.torrentHandle == torrentHandle; @@ -5460,7 +5343,7 @@ bool SessionImpl::addMoveTorrentStorageJob(TorrentImpl *torrent, const Path &new { // if there is active job for this torrent prevent creating meaningless // job that will move torrent to the same location as current one - if (m_moveStorageQueue.constFirst().path == newPath) + if (m_moveStorageQueue.first().path == newPath) { LogMsg(tr("Failed to enqueue torrent move. Torrent: \"%1\". Source: \"%2\". Destination: \"%3\". Reason: torrent is currently moving to the destination") .arg(torrent->name(), currentLocation.toString(), newPath.toString())); @@ -5487,25 +5370,15 @@ bool SessionImpl::addMoveTorrentStorageJob(TorrentImpl *torrent, const Path &new return true; } -lt::torrent_handle SessionImpl::reloadTorrent(const lt::torrent_handle ¤tHandle, lt::add_torrent_params params) -{ - m_nativeSession->remove_torrent(currentHandle, lt::session::delete_partfile); - - auto *const extensionData = new ExtensionData; - params.userdata = LTClientData(extensionData); -#ifndef QBT_USES_LIBTORRENT2 - params.storage = customStorageConstructor; -#endif - - // libtorrent will post an add_torrent_alert anyway, so we have to add an empty handler to ignore it. - m_addTorrentAlertHandlers.emplaceBack(); - return m_nativeSession->add_torrent(std::move(params)); -} - void SessionImpl::moveTorrentStorage(const MoveStorageJob &job) const { - const TorrentImpl *torrent = getTorrent(job.torrentHandle); - const QString torrentName = (torrent ? torrent->name() : getInfoHash(job.torrentHandle).toTorrentID().toString()); +#ifdef QBT_USES_LIBTORRENT2 + const auto id = TorrentID::fromInfoHash(job.torrentHandle.info_hashes()); +#else + const auto id = TorrentID::fromInfoHash(job.torrentHandle.info_hash()); +#endif + const TorrentImpl *torrent = m_torrents.value(id); + const QString torrentName = (torrent ? torrent->name() : id.toString()); LogMsg(tr("Start moving torrent. Torrent: \"%1\". Destination: \"%2\"").arg(torrentName, job.path.toString())); job.torrentHandle.move_storage(job.path.toString().toStdString(), toNative(job.mode)); @@ -5515,7 +5388,7 @@ void SessionImpl::handleMoveTorrentStorageJobFinished(const Path &newPath) { const MoveStorageJob finishedJob = m_moveStorageQueue.takeFirst(); if (!m_moveStorageQueue.isEmpty()) - moveTorrentStorage(m_moveStorageQueue.constFirst()); + moveTorrentStorage(m_moveStorageQueue.first()); const auto iter = std::find_if(m_moveStorageQueue.cbegin(), m_moveStorageQueue.cend() , [&finishedJob](const MoveStorageJob &job) @@ -5525,7 +5398,7 @@ void SessionImpl::handleMoveTorrentStorageJobFinished(const Path &newPath) const bool torrentHasOutstandingJob = (iter != m_moveStorageQueue.cend()); - TorrentImpl *torrent = getTorrent(finishedJob.torrentHandle); + TorrentImpl *torrent = m_torrents.value(finishedJob.torrentHandle.info_hash()); if (torrent) { torrent->handleMoveStorageJobFinished(newPath, finishedJob.context, torrentHasOutstandingJob); @@ -5533,9 +5406,8 @@ void SessionImpl::handleMoveTorrentStorageJobFinished(const Path &newPath) else if (!torrentHasOutstandingJob) { // Last job is completed for torrent that being removing, so actually remove it - const lt::torrent_handle nativeHandle = finishedJob.torrentHandle; - const TorrentID torrentID = getInfoHash(nativeHandle).toTorrentID(); - const RemovingTorrentData &removingTorrentData = m_removingTorrents[torrentID]; + const lt::torrent_handle nativeHandle {finishedJob.torrentHandle}; + const RemovingTorrentData &removingTorrentData = m_removingTorrents[nativeHandle.info_hash()]; if (removingTorrentData.removeOption == TorrentRemoveOption::KeepContent) m_nativeSession->remove_torrent(nativeHandle, lt::session::delete_partfile); } @@ -5800,7 +5672,7 @@ void SessionImpl::readAlerts() if (!isRestored()) m_loadedTorrents.reserve(MAX_PROCESSING_RESUMEDATA_COUNT); - for (lt::alert *a : m_alerts) + for (const lt::alert *a : m_alerts) handleAlert(a); if (m_receivedAddTorrentAlertsCount > 0) @@ -5826,15 +5698,75 @@ void SessionImpl::handleAddTorrentAlert(const lt::add_torrent_alert *alert) { ++m_receivedAddTorrentAlertsCount; - Q_ASSERT(!m_addTorrentAlertHandlers.isEmpty()); - if (m_addTorrentAlertHandlers.isEmpty()) [[unlikely]] - return; + if (alert->error) + { + const QString msg = QString::fromStdString(alert->message()); + LogMsg(tr("Failed to load torrent. Reason: \"%1\"").arg(msg), Log::WARNING); + emit loadTorrentFailed(msg); - if (const AddTorrentAlertHandler handleAlert = m_addTorrentAlertHandlers.takeFirst()) - handleAlert(alert); + const lt::add_torrent_params ¶ms = alert->params; + const bool hasMetadata = (params.ti && params.ti->is_valid()); + +#ifdef QBT_USES_LIBTORRENT2 + const InfoHash infoHash {(hasMetadata ? params.ti->info_hashes() : params.info_hashes)}; + if (infoHash.isHybrid()) + m_hybridTorrentsByAltID.remove(TorrentID::fromSHA1Hash(infoHash.v1())); +#else + const InfoHash infoHash {(hasMetadata ? params.ti->info_hash() : params.info_hash)}; +#endif + if (const auto loadingTorrentsIter = m_loadingTorrents.find(TorrentID::fromInfoHash(infoHash)) + ; loadingTorrentsIter != m_loadingTorrents.end()) + { + const AddTorrentError::Kind errorKind = (alert->error == lt::errors::duplicate_torrent) + ? AddTorrentError::DuplicateTorrent : AddTorrentError::Other; + emit addTorrentFailed(infoHash, {errorKind, msg}); + m_loadingTorrents.erase(loadingTorrentsIter); + } + else if (const auto downloadedMetadataIter = m_downloadedMetadata.find(TorrentID::fromInfoHash(infoHash)) + ; downloadedMetadataIter != m_downloadedMetadata.end()) + { + m_downloadedMetadata.erase(downloadedMetadataIter); + if (infoHash.isHybrid()) + { + // index hybrid magnet links by both v1 and v2 info hashes + const auto altID = TorrentID::fromSHA1Hash(infoHash.v1()); + m_downloadedMetadata.remove(altID); + } + } + + return; + } + +#ifdef QBT_USES_LIBTORRENT2 + const InfoHash infoHash {alert->handle.info_hashes()}; +#else + const InfoHash infoHash {alert->handle.info_hash()}; +#endif + const auto torrentID = TorrentID::fromInfoHash(infoHash); + + if (const auto loadingTorrentsIter = m_loadingTorrents.find(torrentID) + ; loadingTorrentsIter != m_loadingTorrents.end()) + { + const LoadTorrentParams params = loadingTorrentsIter.value(); + m_loadingTorrents.erase(loadingTorrentsIter); + + Torrent *torrent = createTorrent(alert->handle, params); + m_loadedTorrents.append(torrent); + } + else if (const auto downloadedMetadataIter = m_downloadedMetadata.find(torrentID) + ; downloadedMetadataIter != m_downloadedMetadata.end()) + { + downloadedMetadataIter.value() = alert->handle; + if (infoHash.isHybrid()) + { + // index hybrid magnet links by both v1 and v2 info hashes + const auto altID = TorrentID::fromSHA1Hash(infoHash.v1()); + m_downloadedMetadata[altID] = alert->handle; + } + } } -void SessionImpl::handleAlert(lt::alert *alert) +void SessionImpl::handleAlert(const lt::alert *alert) { try { @@ -5842,41 +5774,20 @@ void SessionImpl::handleAlert(lt::alert *alert) { #ifdef QBT_USES_LIBTORRENT2 case lt::file_prio_alert::alert_type: - handleFilePrioAlert(static_cast(alert)); - break; #endif case lt::file_renamed_alert::alert_type: - handleFileRenamedAlert(static_cast(alert)); - break; case lt::file_rename_failed_alert::alert_type: - handleFileRenameFailedAlert(static_cast(alert)); - break; case lt::file_completed_alert::alert_type: - handleFileCompletedAlert(static_cast(alert)); - break; - case lt::file_error_alert::alert_type: - handleFileErrorAlert(static_cast(alert)); - break; case lt::torrent_finished_alert::alert_type: - handleTorrentFinishedAlert(static_cast(alert)); - break; case lt::save_resume_data_alert::alert_type: - handleSaveResumeDataAlert(static_cast(alert)); - break; case lt::save_resume_data_failed_alert::alert_type: - handleSaveResumeDataFailedAlert(static_cast(alert)); - break; - case lt::metadata_received_alert::alert_type: - handleMetadataReceivedAlert(static_cast(alert)); - break; + case lt::torrent_paused_alert::alert_type: + case lt::torrent_resumed_alert::alert_type: case lt::fastresume_rejected_alert::alert_type: - handleFastResumeRejectedAlert(static_cast(alert)); - break; case lt::torrent_checked_alert::alert_type: - handleTorrentCheckedAlert(static_cast(alert)); - break; + case lt::metadata_received_alert::alert_type: case lt::performance_alert::alert_type: - handlePerformanceAlert(static_cast(alert)); + dispatchTorrentAlert(static_cast(alert)); break; case lt::state_update_alert::alert_type: handleStateUpdateAlert(static_cast(alert)); @@ -5893,6 +5804,9 @@ void SessionImpl::handleAlert(lt::alert *alert) case lt::tracker_warning_alert::alert_type: handleTrackerAlert(static_cast(alert)); break; + case lt::file_error_alert::alert_type: + handleFileErrorAlert(static_cast(alert)); + break; case lt::add_torrent_alert::alert_type: handleAddTorrentAlert(static_cast(alert)); break; @@ -5960,19 +5874,80 @@ void SessionImpl::handleAlert(lt::alert *alert) } } -TorrentImpl *SessionImpl::createTorrent(const lt::torrent_handle &nativeHandle, LoadTorrentParams params) +void SessionImpl::dispatchTorrentAlert(const lt::torrent_alert *alert) { - auto *const torrent = new TorrentImpl(this, nativeHandle, std::move(params)); + // The torrent can be deleted between the time the resume data was requested and + // the time we received the appropriate alert. We have to decrease `m_numResumeData` anyway, + // so we do this before checking for an existing torrent. + if ((alert->type() == lt::save_resume_data_alert::alert_type) + || (alert->type() == lt::save_resume_data_failed_alert::alert_type)) + { + --m_numResumeData; + } + + const TorrentID torrentID {alert->handle.info_hash()}; + TorrentImpl *torrent = m_torrents.value(torrentID); +#ifdef QBT_USES_LIBTORRENT2 + if (!torrent && (alert->type() == lt::metadata_received_alert::alert_type)) + { + const InfoHash infoHash {alert->handle.info_hashes()}; + if (infoHash.isHybrid()) + torrent = m_torrents.value(TorrentID::fromSHA1Hash(infoHash.v1())); + } +#endif + + if (torrent) + { + torrent->handleAlert(alert); + return; + } + + switch (alert->type()) + { + case lt::metadata_received_alert::alert_type: + handleMetadataReceivedAlert(static_cast(alert)); + break; + } +} + +TorrentImpl *SessionImpl::createTorrent(const lt::torrent_handle &nativeHandle, const LoadTorrentParams ¶ms) +{ + auto *const torrent = new TorrentImpl(this, m_nativeSession, nativeHandle, params); m_torrents.insert(torrent->id(), torrent); if (const InfoHash infoHash = torrent->infoHash(); infoHash.isHybrid()) m_hybridTorrentsByAltID.insert(TorrentID::fromSHA1Hash(infoHash.v1()), torrent); + if (isRestored()) + { + if (params.addToQueueTop) + nativeHandle.queue_position_top(); + + torrent->requestResumeData(lt::torrent_handle::save_info_dict); + + // The following is useless for newly added magnet + if (torrent->hasMetadata()) + { + if (!torrentExportDirectory().isEmpty()) + exportTorrentFile(torrent, torrentExportDirectory()); + } + } + if (((torrent->ratioLimit() >= 0) || (torrent->seedingTimeLimit() >= 0)) && !m_seedingLimitTimer->isActive()) { m_seedingLimitTimer->start(); } + if (!isRestored()) + { + LogMsg(tr("Restored torrent. Torrent: \"%1\"").arg(torrent->name())); + } + else + { + LogMsg(tr("Added new torrent. Torrent: \"%1\"").arg(torrent->name())); + emit torrentAdded(torrent); + } + // Torrent could have error just after adding to libtorrent if (torrent->hasError()) LogMsg(tr("Torrent errored. Torrent: \"%1\". Error: \"%2\"").arg(torrent->name(), torrent->error()), Log::WARNING); @@ -5980,11 +5955,6 @@ TorrentImpl *SessionImpl::createTorrent(const lt::torrent_handle &nativeHandle, return torrent; } -TorrentImpl *SessionImpl::getTorrent(const lt::torrent_handle &nativeHandle) const -{ - return m_torrents.value(getInfoHash(nativeHandle).toTorrentID()); -} - void SessionImpl::handleTorrentRemovedAlert(const lt::torrent_removed_alert */*alert*/) { // We cannot consider `torrent_removed_alert` as a starting point for removing content, @@ -5994,19 +5964,34 @@ void SessionImpl::handleTorrentRemovedAlert(const lt::torrent_removed_alert */*a void SessionImpl::handleTorrentDeletedAlert(const lt::torrent_deleted_alert *alert) { - handleRemovedTorrent(getInfoHash(*alert).toTorrentID()); +#ifdef QBT_USES_LIBTORRENT2 + const auto torrentID = TorrentID::fromInfoHash(alert->info_hashes); +#else + const auto torrentID = TorrentID::fromInfoHash(alert->info_hash); +#endif + handleRemovedTorrent(torrentID); } void SessionImpl::handleTorrentDeleteFailedAlert(const lt::torrent_delete_failed_alert *alert) { - const TorrentID torrentID = getInfoHash(*alert).toTorrentID(); +#ifdef QBT_USES_LIBTORRENT2 + const auto torrentID = TorrentID::fromInfoHash(alert->info_hashes); +#else + const auto torrentID = TorrentID::fromInfoHash(alert->info_hash); +#endif const auto errorMessage = alert->error ? Utils::String::fromLocal8Bit(alert->error.message()) : QString(); handleRemovedTorrent(torrentID, errorMessage); } void SessionImpl::handleTorrentNeedCertAlert(const lt::torrent_need_cert_alert *alert) { - const TorrentID torrentID = getInfoHash(alert->handle).toTorrentID(); +#ifdef QBT_USES_LIBTORRENT2 + const InfoHash infoHash {alert->handle.info_hashes()}; +#else + const InfoHash infoHash {alert->handle.info_hash()}; +#endif + const auto torrentID = TorrentID::fromInfoHash(infoHash); + TorrentImpl *const torrent = m_torrents.value(torrentID); if (!torrent) [[unlikely]] return; @@ -6020,33 +6005,20 @@ void SessionImpl::handleTorrentNeedCertAlert(const lt::torrent_need_cert_alert * void SessionImpl::handleMetadataReceivedAlert(const lt::metadata_received_alert *alert) { - TorrentImpl *torrent = getTorrent(alert->handle); -#ifdef QBT_USES_LIBTORRENT2 - if (!torrent && (alert->type() == lt::metadata_received_alert::alert_type)) - { - const InfoHash infoHash = getInfoHash(alert->handle); - if (infoHash.isHybrid()) - torrent = m_torrents.value(TorrentID::fromSHA1Hash(infoHash.v1())); - } -#endif - - if (torrent) - return torrent->handleMetadataReceived(); - - const InfoHash infoHash = getInfoHash(alert->handle); - const TorrentID torrentID = infoHash.toTorrentID(); + const TorrentID torrentID {alert->handle.info_hash()}; bool found = false; - if (const auto iter = m_downloadedMetadata.constFind(torrentID); iter != m_downloadedMetadata.cend()) + if (const auto iter = m_downloadedMetadata.find(torrentID); iter != m_downloadedMetadata.end()) { found = true; m_downloadedMetadata.erase(iter); } #ifdef QBT_USES_LIBTORRENT2 + const InfoHash infoHash {alert->handle.info_hashes()}; if (infoHash.isHybrid()) { const auto altID = TorrentID::fromSHA1Hash(infoHash.v1()); - if (const auto iter = m_downloadedMetadata.constFind(altID); iter != m_downloadedMetadata.cend()) + if (const auto iter = m_downloadedMetadata.find(altID); iter != m_downloadedMetadata.end()) { found = true; m_downloadedMetadata.erase(iter); @@ -6064,11 +6036,11 @@ void SessionImpl::handleMetadataReceivedAlert(const lt::metadata_received_alert void SessionImpl::handleFileErrorAlert(const lt::file_error_alert *alert) { - TorrentImpl *const torrent = getTorrent(alert->handle); - if (!torrent) [[unlikely]] + TorrentImpl *const torrent = m_torrents.value(alert->handle.info_hash()); + if (!torrent) return; - torrent->handleFileError({.error = alert->error, .operation = alert->op}); + torrent->handleAlert(alert); const TorrentID id = torrent->id(); if (!m_recentErroredTorrents.contains(id)) @@ -6135,7 +6107,7 @@ void SessionImpl::handlePeerBanAlert(const lt::peer_ban_alert *alert) void SessionImpl::handleUrlSeedAlert(const lt::url_seed_alert *alert) { - const TorrentImpl *torrent = getTorrent(alert->handle); + const TorrentImpl *torrent = m_torrents.value(alert->handle.info_hash()); if (!torrent) return; @@ -6308,14 +6280,20 @@ void SessionImpl::handleStorageMovedAlert(const lt::storage_moved_alert *alert) { Q_ASSERT(!m_moveStorageQueue.isEmpty()); - const MoveStorageJob ¤tJob = m_moveStorageQueue.constFirst(); + const MoveStorageJob ¤tJob = m_moveStorageQueue.first(); Q_ASSERT(currentJob.torrentHandle == alert->handle); const Path newPath {QString::fromUtf8(alert->storage_path())}; Q_ASSERT(newPath == currentJob.path); - TorrentImpl *torrent = getTorrent(currentJob.torrentHandle); - const QString torrentName = (torrent ? torrent->name() : getInfoHash(currentJob.torrentHandle).toTorrentID().toString()); +#ifdef QBT_USES_LIBTORRENT2 + const auto id = TorrentID::fromInfoHash(currentJob.torrentHandle.info_hashes()); +#else + const auto id = TorrentID::fromInfoHash(currentJob.torrentHandle.info_hash()); +#endif + + TorrentImpl *torrent = m_torrents.value(id); + const QString torrentName = (torrent ? torrent->name() : id.toString()); LogMsg(tr("Moved torrent successfully. Torrent: \"%1\". Destination: \"%2\"").arg(torrentName, newPath.toString())); handleMoveTorrentStorageJobFinished(newPath); @@ -6325,11 +6303,17 @@ void SessionImpl::handleStorageMovedFailedAlert(const lt::storage_moved_failed_a { Q_ASSERT(!m_moveStorageQueue.isEmpty()); - const MoveStorageJob ¤tJob = m_moveStorageQueue.constFirst(); + const MoveStorageJob ¤tJob = m_moveStorageQueue.first(); Q_ASSERT(currentJob.torrentHandle == alert->handle); - TorrentImpl *torrent = getTorrent(currentJob.torrentHandle); - const QString torrentName = (torrent ? torrent->name() : getInfoHash(currentJob.torrentHandle).toTorrentID().toString()); +#ifdef QBT_USES_LIBTORRENT2 + const auto id = TorrentID::fromInfoHash(currentJob.torrentHandle.info_hashes()); +#else + const auto id = TorrentID::fromInfoHash(currentJob.torrentHandle.info_hash()); +#endif + + TorrentImpl *torrent = m_torrents.value(id); + const QString torrentName = (torrent ? torrent->name() : id.toString()); const Path currentLocation = (torrent ? torrent->actualStorageLocation() : Path(alert->handle.status(lt::torrent_handle::query_save_path).save_path)); const QString errorMessage = QString::fromStdString(alert->message()); @@ -6346,7 +6330,12 @@ void SessionImpl::handleStateUpdateAlert(const lt::state_update_alert *alert) for (const lt::torrent_status &status : alert->status) { - TorrentImpl *const torrent = getTorrent(status.handle); +#ifdef QBT_USES_LIBTORRENT2 + const auto id = TorrentID::fromInfoHash(status.info_hashes); +#else + const auto id = TorrentID::fromInfoHash(status.info_hash); +#endif + TorrentImpl *const torrent = m_torrents.value(id); if (!torrent) continue; @@ -6390,7 +6379,7 @@ void SessionImpl::handleI2PAlert(const lt::i2p_alert *alert) const void SessionImpl::handleTrackerAlert(const lt::tracker_alert *alert) { - TorrentImpl *torrent = getTorrent(alert->handle); + TorrentImpl *torrent = m_torrents.value(alert->handle.info_hash()); if (!torrent) return; @@ -6416,9 +6405,8 @@ void SessionImpl::handleTrackerAlert(const lt::tracker_alert *alert) #ifdef QBT_USES_LIBTORRENT2 void SessionImpl::handleTorrentConflictAlert(const lt::torrent_conflict_alert *alert) { - const InfoHash infoHash = getInfoHash(*alert->metadata); - const auto torrentIDv1 = TorrentID::fromSHA1Hash(infoHash.v1()); - const auto torrentIDv2 = TorrentID::fromSHA256Hash(infoHash.v2()); + const auto torrentIDv1 = TorrentID::fromSHA1Hash(alert->metadata->info_hashes().v1); + const auto torrentIDv2 = TorrentID::fromSHA256Hash(alert->metadata->info_hashes().v2); TorrentImpl *torrent1 = m_torrents.value(torrentIDv1); TorrentImpl *torrent2 = m_torrents.value(torrentIDv2); if (torrent2) @@ -6460,106 +6448,8 @@ void SessionImpl::handleTorrentConflictAlert(const lt::torrent_conflict_alert *a if (!torrent1 || !torrent2) emit metadataDownloaded(TorrentInfo(*alert->metadata)); } - -void SessionImpl::handleFilePrioAlert(const lt::file_prio_alert *alert) -{ - if (TorrentImpl *torrent = getTorrent(alert->handle)) [[likely]] - torrent->deferredRequestResumeData(); -} #endif -void SessionImpl::handleTorrentCheckedAlert(const lt::torrent_checked_alert *alert) -{ - if (TorrentImpl *torrent = getTorrent(alert->handle)) [[likely]] - torrent->handleTorrentChecked(); -} - -void SessionImpl::handleTorrentFinishedAlert([[maybe_unused]] const lt::torrent_finished_alert *alert) -{ - if (TorrentImpl *torrent = getTorrent(alert->handle)) [[likely]] - torrent->handleTorrentFinished(); -} - -void SessionImpl::handleSaveResumeDataAlert(lt::save_resume_data_alert *alert) -{ - // The torrent can be deleted between the time the resume data was requested and - // the time we received the appropriate alert. We have to decrease `m_numResumeData` anyway, - // so we do this before checking for an existing torrent. - --m_numResumeData; - - if (TorrentImpl *torrent = getTorrent(alert->handle)) [[likely]] - torrent->handleSaveResumeData(std::move(alert->params)); -} - -void SessionImpl::handleSaveResumeDataFailedAlert(const lt::save_resume_data_failed_alert *alert) -{ - // The torrent can be deleted between the time the resume data was requested and - // the time we received the appropriate alert. We have to decrease `m_numResumeData` anyway, - // so we do this before checking for an existing torrent. - --m_numResumeData; - - TorrentImpl *torrent = getTorrent(alert->handle); - if (!torrent) [[unlikely]] - return; - - if (alert->error != lt::errors::resume_data_not_modified) - { - LogMsg(tr("Generate resume data failed. Torrent: \"%1\". Reason: \"%2\"") - .arg(torrent->name(), Utils::String::fromLocal8Bit(alert->error.message())), Log::CRITICAL); - } -} - -void SessionImpl::handleFastResumeRejectedAlert(const lt::fastresume_rejected_alert *alert) -{ - TorrentImpl *torrent = getTorrent(alert->handle); - if (!torrent) [[unlikely]] - return; - - torrent->handleFastResumeRejected(); - LogMsg(tr("Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: \"%1\". Reason: \"%2\"") - .arg(torrent->name(), QString::fromStdString(alert->message())), Log::WARNING); -} - -void SessionImpl::handleFileRenamedAlert(const lt::file_renamed_alert *alert) -{ - TorrentImpl *torrent = getTorrent(alert->handle); - if (!torrent) [[unlikely]] - return; - - const Path newFilePath {QString::fromUtf8(alert->new_name())}; -#ifdef QBT_USES_LIBTORRENT2 - const Path oldFilePath {QString::fromUtf8(alert->old_name())}; -#else - const Path oldFilePath; -#endif - torrent->handleFileRenamed(alert->index, newFilePath, oldFilePath); -} - -void SessionImpl::handleFileRenameFailedAlert(const lt::file_rename_failed_alert *alert) -{ - TorrentImpl *torrent = getTorrent(alert->handle); - if (!torrent) [[unlikely]] - return; - - torrent->handleFileRenameFailed(alert->index); - - LogMsg(tr("File rename failed. Torrent: \"%1\", file: \"%2\", reason: \"%3\"") - .arg(torrent->name(), torrent->filePath(torrent->fileIndexFromNative(alert->index)).toString() - , Utils::String::fromLocal8Bit(alert->error.message())), Log::WARNING); -} - -void SessionImpl::handleFileCompletedAlert(const lt::file_completed_alert *alert) -{ - if (TorrentImpl *torrent = getTorrent(alert->handle)) [[likely]] - torrent->handleFileCompleted(alert->index); -} - -void SessionImpl::handlePerformanceAlert(const lt::performance_alert *alert) const -{ - LogMsg((tr("Performance alert: %1. More info: %2").arg(QString::fromStdString(alert->message()) - , u"https://libtorrent.org/reference-Alerts.html#enum-performance-warning-t"_s)), Log::INFO); -} - void SessionImpl::saveStatistics() const { if (!m_isStatisticsDirty) @@ -6627,8 +6517,8 @@ void SessionImpl::updateTrackerEntryStatuses(lt::torrent_handle torrentHandle) void SessionImpl::handleRemovedTorrent(const TorrentID &torrentID, const QString &partfileRemoveError) { - const auto removingTorrentDataIter = m_removingTorrents.constFind(torrentID); - if (removingTorrentDataIter == m_removingTorrents.cend()) + const auto removingTorrentDataIter = m_removingTorrents.find(torrentID); + if (removingTorrentDataIter == m_removingTorrents.end()) return; if (!partfileRemoveError.isEmpty()) diff --git a/src/base/bittorrent/sessionimpl.h b/src/base/bittorrent/sessionimpl.h index e923f8a13..960f0cd99 100644 --- a/src/base/bittorrent/sessionimpl.h +++ b/src/base/bittorrent/sessionimpl.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -30,7 +30,6 @@ #pragma once #include -#include #include #include @@ -62,16 +61,11 @@ class QString; class QTimer; class QUrl; -template class QFuture; - class BandwidthScheduler; class FileSearcher; class FilterParserThread; -class FreeDiskSpaceChecker; class NativeSessionExtension; -struct FileSearchResult; - namespace BitTorrent { enum class MoveStorageMode; @@ -396,8 +390,6 @@ namespace BitTorrent void setUTPRateLimited(bool limited) override; MixedModeAlgorithm utpMixedMode() const override; void setUtpMixedMode(MixedModeAlgorithm mode) override; - int hostnameCacheTTL() const override; - void setHostnameCacheTTL(int value) override; bool isIDNSupportEnabled() const override; void setIDNSupportEnabled(bool enabled) override; bool multiConnectionsPerIpEnabled() const override; @@ -456,8 +448,6 @@ namespace BitTorrent QString lastExternalIPv4Address() const override; QString lastExternalIPv6Address() const override; - qint64 freeDiskSpace() const override; - // Torrent interface void handleTorrentResumeDataRequested(const TorrentImpl *torrent); void handleTorrentShareLimitChanged(TorrentImpl *torrent); @@ -477,15 +467,14 @@ namespace BitTorrent void handleTorrentTrackersChanged(TorrentImpl *torrent); void handleTorrentUrlSeedsAdded(TorrentImpl *torrent, const QList &newUrlSeeds); void handleTorrentUrlSeedsRemoved(TorrentImpl *torrent, const QList &urlSeeds); - void handleTorrentResumeDataReady(TorrentImpl *torrent, LoadTorrentParams data); + void handleTorrentResumeDataReady(TorrentImpl *torrent, const LoadTorrentParams &data); void handleTorrentInfoHashChanged(TorrentImpl *torrent, const InfoHash &prevInfoHash); void handleTorrentStorageMovingStateChanged(TorrentImpl *torrent); bool addMoveTorrentStorageJob(TorrentImpl *torrent, const Path &newPath, MoveStorageMode mode, MoveStorageContext context); - lt::torrent_handle reloadTorrent(const lt::torrent_handle ¤tHandle, lt::add_torrent_params params); - - QFuture findIncompleteFiles(const Path &savePath, const Path &downloadPath, const PathList &filePaths = {}) const; + void findIncompleteFiles(const TorrentInfo &torrentInfo, const Path &savePath + , const Path &downloadPath, const PathList &filePaths = {}) const; void enablePortMapping(); void disablePortMapping(); @@ -520,6 +509,7 @@ namespace BitTorrent void generateResumeData(); void handleIPFilterParsed(int ruleCount); void handleIPFilterError(); + void fileSearchFinished(const TorrentID &id, const Path &savePath, const PathList &fileNames); void torrentContentRemovingFinished(const QString &torrentName, const QString &errorMessage); private: @@ -578,7 +568,8 @@ namespace BitTorrent void updateSeedingLimitTimer(); void exportTorrentFile(const Torrent *torrent, const Path &folderPath); - void handleAlert(lt::alert *alert); + void handleAlert(const lt::alert *alert); + void dispatchTorrentAlert(const lt::torrent_alert *alert); void handleAddTorrentAlert(const lt::add_torrent_alert *alert); void handleStateUpdateAlert(const lt::state_update_alert *alert); void handleMetadataReceivedAlert(const lt::metadata_received_alert *alert); @@ -605,20 +596,9 @@ namespace BitTorrent void handleTrackerAlert(const lt::tracker_alert *alert); #ifdef QBT_USES_LIBTORRENT2 void handleTorrentConflictAlert(const lt::torrent_conflict_alert *alert); - void handleFilePrioAlert(const lt::file_prio_alert *alert); #endif - void handleFastResumeRejectedAlert(const lt::fastresume_rejected_alert *alert); - void handleFileCompletedAlert(const lt::file_completed_alert *alert); - void handleFileRenamedAlert(const lt::file_renamed_alert *alert); - void handleFileRenameFailedAlert(const lt::file_rename_failed_alert *alert); - void handlePerformanceAlert(const lt::performance_alert *alert) const; - void handleSaveResumeDataAlert(lt::save_resume_data_alert *alert); - void handleSaveResumeDataFailedAlert(const lt::save_resume_data_failed_alert *alert); - void handleTorrentCheckedAlert(const lt::torrent_checked_alert *alert); - void handleTorrentFinishedAlert(const lt::torrent_finished_alert *alert); - TorrentImpl *createTorrent(const lt::torrent_handle &nativeHandle, LoadTorrentParams params); - TorrentImpl *getTorrent(const lt::torrent_handle &nativeHandle) const; + TorrentImpl *createTorrent(const lt::torrent_handle &nativeHandle, const LoadTorrentParams ¶ms); void saveResumeData(); void saveTorrentsQueue(); @@ -703,7 +683,6 @@ namespace BitTorrent CachedSettingValue m_btProtocol; CachedSettingValue m_isUTPRateLimited; CachedSettingValue m_utpMixedMode; - CachedSettingValue m_hostnameCacheTTL; CachedSettingValue m_IDNSupportEnabled; CachedSettingValue m_multiConnectionsPerIpEnabled; CachedSettingValue m_validateHTTPSTrackerCertificate; @@ -825,13 +804,11 @@ namespace BitTorrent FileSearcher *m_fileSearcher = nullptr; TorrentContentRemover *m_torrentContentRemover = nullptr; - using AddTorrentAlertHandler = std::function; - QList m_addTorrentAlertHandlers; - QHash m_downloadedMetadata; QHash m_torrents; QHash m_hybridTorrentsByAltID; + QHash m_loadingTorrents; QHash m_removingTorrents; QHash m_changedTorrentIDs; QMap m_categories; @@ -873,10 +850,6 @@ namespace BitTorrent QList m_pendingFinishedTorrents; - FreeDiskSpaceChecker *m_freeDiskSpaceChecker = nullptr; - QTimer *m_freeDiskSpaceCheckingTimer = nullptr; - qint64 m_freeDiskSpace = -1; - friend void Session::initInstance(); friend void Session::freeInstance(); friend Session *Session::instance(); diff --git a/src/base/bittorrent/torrent.h b/src/base/bittorrent/torrent.h index 644af158b..72cbf0a38 100644 --- a/src/base/bittorrent/torrent.h +++ b/src/base/bittorrent/torrent.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -45,8 +45,6 @@ class QByteArray; class QDateTime; class QUrl; -template class QFuture; - namespace BitTorrent { enum class DownloadPriority; @@ -275,7 +273,10 @@ namespace BitTorrent virtual bool isDHTDisabled() const = 0; virtual bool isPEXDisabled() const = 0; virtual bool isLSDDisabled() const = 0; + virtual QList peers() const = 0; virtual QBitArray pieces() const = 0; + virtual QBitArray downloadingPieces() const = 0; + virtual QList pieceAvailability() const = 0; virtual qreal distributedCopies() const = 0; virtual qreal maxRatio() const = 0; virtual int maxSeedingTime() const = 0; @@ -322,10 +323,10 @@ namespace BitTorrent virtual nonstd::expected exportToBuffer() const = 0; virtual nonstd::expected exportToFile(const Path &path) const = 0; - virtual QFuture> fetchPeerInfo() const = 0; - virtual QFuture> fetchURLSeeds() const = 0; - virtual QFuture> fetchPieceAvailability() const = 0; - virtual QFuture fetchDownloadingPieces() const = 0; + virtual void fetchPeerInfo(std::function)> resultHandler) const = 0; + virtual void fetchURLSeeds(std::function)> resultHandler) const = 0; + virtual void fetchPieceAvailability(std::function)> resultHandler) const = 0; + virtual void fetchDownloadingPieces(std::function resultHandler) const = 0; TorrentID id() const; bool isRunning() const; diff --git a/src/base/bittorrent/torrentcontenthandler.h b/src/base/bittorrent/torrentcontenthandler.h index 350db753e..2e3702d2c 100644 --- a/src/base/bittorrent/torrentcontenthandler.h +++ b/src/base/bittorrent/torrentcontenthandler.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2022-2025 Vladimir Golovnev + * Copyright (C) 2022-2023 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -34,8 +34,6 @@ #include "abstractfilestorage.h" #include "downloadpriority.h" -template class QFuture; - namespace BitTorrent { class TorrentContentHandler : public QObject, public AbstractFileStorage @@ -54,7 +52,8 @@ namespace BitTorrent * This is not the same as torrrent availability, it is just a fraction of pieces * that can be downloaded right now. It varies between 0 to 1. */ - virtual QFuture> fetchAvailableFileFractions() const = 0; + virtual QList availableFileFractions() const = 0; + virtual void fetchAvailableFileFractions(std::function)> resultHandler) const = 0; virtual void prioritizeFiles(const QList &priorities) = 0; virtual void flushCache() const = 0; diff --git a/src/base/bittorrent/torrentcreator.cpp b/src/base/bittorrent/torrentcreator.cpp index 23568b2df..727e9a9dc 100644 --- a/src/base/bittorrent/torrentcreator.cpp +++ b/src/base/bittorrent/torrentcreator.cpp @@ -124,20 +124,18 @@ void TorrentCreator::run() // need to sort the file names by natural sort order QStringList dirs = {m_params.sourcePath.data()}; - QDirIterator dirIter {m_params.sourcePath.data(), (QDir::AllDirs | QDir::NoDotAndDotDot), QDirIterator::Subdirectories}; +#ifdef Q_OS_WIN + // libtorrent couldn't handle .lnk files on Windows + // Also, Windows users do not expect torrent creator to traverse into .lnk files so skip over them + const QDir::Filters dirFilters {QDir::AllDirs | QDir::NoDotAndDotDot | QDir::NoSymLinks}; +#else + const QDir::Filters dirFilters {QDir::AllDirs | QDir::NoDotAndDotDot}; +#endif + QDirIterator dirIter {m_params.sourcePath.data(), dirFilters, QDirIterator::Subdirectories}; while (dirIter.hasNext()) { - const QFileInfo dirInfo = dirIter.nextFileInfo(); - -#ifdef Q_OS_WIN - // .lnk to directory - // Windows users do not expect torrent creator to traverse into .lnk files so skip over them - if (dirInfo.isShortcut()) - continue; -#endif - - const QString dirPath = dirInfo.filePath(); - dirs.append(dirPath); + const QString filePath = dirIter.next(); + dirs.append(filePath); } std::sort(dirs.begin(), dirs.end(), naturalLessThan); @@ -148,29 +146,19 @@ void TorrentCreator::run() { QStringList tmpNames; // natural sort files within each dir - QDirIterator fileIter {dir, QDir::Files}; +#ifdef Q_OS_WIN + const QDir::Filters fileFilters {QDir::Files | QDir::NoSymLinks}; +#else + const QDir::Filters fileFilters {QDir::Files}; +#endif + QDirIterator fileIter {dir, fileFilters}; while (fileIter.hasNext()) { const QFileInfo fileInfo = fileIter.nextFileInfo(); - const Path filePath {fileInfo.filePath()}; - qint64 fileSize = fileInfo.size(); -#ifdef Q_OS_WIN - // .lnk to file - // libtorrent couldn't handle .lnk files on Windows - if (fileInfo.isShortcut()) - continue; - - // file symbolic link - // QFileInfo::size() failed to return the target file size - // and we need to redirect it manually - if (fileInfo.isSymbolicLink()) - fileSize = QFileInfo(fileInfo.symLinkTarget()).size(); -#endif - - const Path relFilePath = parentPath.relativePathOf(filePath); + const Path relFilePath = parentPath.relativePathOf(Path(fileInfo.filePath())); tmpNames.append(relFilePath.toString()); - fileSizeMap[tmpNames.last()] = fileSize; + fileSizeMap[tmpNames.last()] = fileInfo.size(); } std::sort(tmpNames.begin(), tmpNames.end(), naturalLessThan); @@ -186,8 +174,8 @@ void TorrentCreator::run() #ifdef QBT_USES_LIBTORRENT2 lt::create_torrent newTorrent {fs, m_params.pieceSize, toNativeTorrentFormatFlag(m_params.torrentFormat)}; #else - lt::create_torrent newTorrent {fs, m_params.pieceSize, m_params.paddedFileSizeLimit - , (m_params.isAlignmentOptimized ? lt::create_torrent::optimize_alignment : lt::create_flags_t {})}; + lt::create_torrent newTorrent(fs, m_params.pieceSize, m_params.paddedFileSizeLimit + , (m_params.isAlignmentOptimized ? lt::create_torrent::optimize_alignment : lt::create_flags_t {})); #endif // Add url seeds diff --git a/src/base/bittorrent/torrentdescriptor.cpp b/src/base/bittorrent/torrentdescriptor.cpp index a8945d205..437c6557c 100644 --- a/src/base/bittorrent/torrentdescriptor.cpp +++ b/src/base/bittorrent/torrentdescriptor.cpp @@ -141,22 +141,6 @@ catch (const lt::system_error &err) return nonstd::make_unexpected(QString::fromLocal8Bit(err.what())); } -nonstd::expected BitTorrent::TorrentDescriptor::saveToBuffer() const -try -{ - const lt::entry torrentEntry = lt::write_torrent_file(m_ltAddTorrentParams); - // usually torrent size should be smaller than 1 MB, - // however there are >100 MB v2/hybrid torrent files out in the wild - QByteArray buffer; - buffer.reserve(1024 * 1024); - lt::bencode(std::back_inserter(buffer), torrentEntry); - return buffer; -} -catch (const lt::system_error &err) -{ - return nonstd::make_unexpected(QString::fromLocal8Bit(err.what())); -} - BitTorrent::TorrentDescriptor::TorrentDescriptor(lt::add_torrent_params ltAddTorrentParams) : m_ltAddTorrentParams {std::move(ltAddTorrentParams)} { diff --git a/src/base/bittorrent/torrentdescriptor.h b/src/base/bittorrent/torrentdescriptor.h index 74c971c8c..f41140fed 100644 --- a/src/base/bittorrent/torrentdescriptor.h +++ b/src/base/bittorrent/torrentdescriptor.h @@ -69,7 +69,6 @@ namespace BitTorrent static nonstd::expected loadFromFile(const Path &path) noexcept; static nonstd::expected parse(const QString &str) noexcept; nonstd::expected saveToFile(const Path &path) const; - nonstd::expected saveToBuffer() const; const lt::add_torrent_params <AddTorrentParams() const; diff --git a/src/base/bittorrent/torrentimpl.cpp b/src/base/bittorrent/torrentimpl.cpp index c3a7c0f2b..96547fe77 100644 --- a/src/base/bittorrent/torrentimpl.cpp +++ b/src/base/bittorrent/torrentimpl.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -37,10 +37,11 @@ #endif #include +#include +#include #include #include #include -#include #ifdef QBT_USES_LIBTORRENT2 #include @@ -50,9 +51,7 @@ #include #include #include -#include #include -#include #include #include #include @@ -68,7 +67,6 @@ #include "common.h" #include "downloadpriority.h" #include "extensiondata.h" -#include "filesearcher.h" #include "loadtorrentparams.h" #include "ltqbitarray.h" #include "lttypecast.h" @@ -151,41 +149,36 @@ namespace if (ltAnnounceInfo.updating) { - trackerEndpointStatus.isUpdating = true; + trackerEndpointStatus.state = TrackerEndpointState::Updating; ++numUpdating; } - else + else if (ltAnnounceInfo.fails > 0) { - trackerEndpointStatus.isUpdating = false; - - if (ltAnnounceInfo.fails > 0) + if (ltAnnounceInfo.last_error == lt::errors::tracker_failure) { - if (ltAnnounceInfo.last_error == lt::errors::tracker_failure) - { - trackerEndpointStatus.state = TrackerEndpointState::TrackerError; - ++numTrackerError; - } - else if (ltAnnounceInfo.last_error == lt::errors::announce_skipped) - { - trackerEndpointStatus.state = TrackerEndpointState::Unreachable; - ++numUnreachable; - } - else - { - trackerEndpointStatus.state = TrackerEndpointState::NotWorking; - ++numNotWorking; - } + trackerEndpointStatus.state = TrackerEndpointState::TrackerError; + ++numTrackerError; } - else if (nativeEntry.verified) + else if (ltAnnounceInfo.last_error == lt::errors::announce_skipped) { - trackerEndpointStatus.state = TrackerEndpointState::Working; - ++numWorking; + trackerEndpointStatus.state = TrackerEndpointState::Unreachable; + ++numUnreachable; } else { - trackerEndpointStatus.state = TrackerEndpointState::NotContacted; + trackerEndpointStatus.state = TrackerEndpointState::NotWorking; + ++numNotWorking; } } + else if (nativeEntry.verified) + { + trackerEndpointStatus.state = TrackerEndpointState::Working; + ++numWorking; + } + else + { + trackerEndpointStatus.state = TrackerEndpointState::NotContacted; + } if (!ltAnnounceInfo.message.empty()) { @@ -219,28 +212,23 @@ namespace { if (numUpdating > 0) { - trackerEntryStatus.isUpdating = true; + trackerEntryStatus.state = TrackerEndpointState::Updating; } - else + else if (numWorking > 0) { - trackerEntryStatus.isUpdating = false; - - if (numWorking > 0) - { - trackerEntryStatus.state = TrackerEndpointState::Working; - } - else if (numTrackerError > 0) - { - trackerEntryStatus.state = TrackerEndpointState::TrackerError; - } - else if (numUnreachable == numEndpoints) - { - trackerEntryStatus.state = TrackerEndpointState::Unreachable; - } - else if ((numUnreachable + numNotWorking) == numEndpoints) - { - trackerEntryStatus.state = TrackerEndpointState::NotWorking; - } + trackerEntryStatus.state = TrackerEndpointState::Working; + } + else if (numTrackerError > 0) + { + trackerEntryStatus.state = TrackerEndpointState::TrackerError; + } + else if (numUnreachable == numEndpoints) + { + trackerEntryStatus.state = TrackerEndpointState::Unreachable; + } + else if ((numUnreachable + numNotWorking) == numEndpoints) + { + trackerEntryStatus.state = TrackerEndpointState::NotWorking; } } @@ -299,9 +287,11 @@ namespace // TorrentImpl -TorrentImpl::TorrentImpl(SessionImpl *session, const lt::torrent_handle &nativeHandle, LoadTorrentParams params) +TorrentImpl::TorrentImpl(SessionImpl *session, lt::session *nativeSession + , const lt::torrent_handle &nativeHandle, const LoadTorrentParams ¶ms) : Torrent(session) , m_session(session) + , m_nativeSession(nativeSession) , m_nativeHandle(nativeHandle) #ifdef QBT_USES_LIBTORRENT2 , m_infoHash(m_nativeHandle.info_hashes()) @@ -324,7 +314,7 @@ TorrentImpl::TorrentImpl(SessionImpl *session, const lt::torrent_handle &nativeH , m_useAutoTMM(params.useAutoTMM) , m_isStopped(params.stopped) , m_sslParams(params.sslParameters) - , m_ltAddTorrentParams(std::move(params.ltAddTorrentParams)) + , m_ltAddTorrentParams(params.ltAddTorrentParams) , m_downloadLimit(cleanLimitValue(m_ltAddTorrentParams.download_limit)) , m_uploadLimit(cleanLimitValue(m_ltAddTorrentParams.upload_limit)) { @@ -1447,7 +1437,7 @@ int TorrentImpl::totalLeechersCount() const int TorrentImpl::downloadLimit() const { - return m_downloadLimit; + return m_downloadLimit;; } int TorrentImpl::uploadLimit() const @@ -1475,11 +1465,48 @@ bool TorrentImpl::isLSDDisabled() const return static_cast(m_nativeStatus.flags & lt::torrent_flags::disable_lsd); } +QList TorrentImpl::peers() const +{ + std::vector nativePeers; + m_nativeHandle.get_peer_info(nativePeers); + + QList peers; + peers.reserve(static_cast(nativePeers.size())); + + for (const lt::peer_info &peer : nativePeers) + peers.append(PeerInfo(peer, pieces())); + + return peers; +} + QBitArray TorrentImpl::pieces() const { return m_pieces; } +QBitArray TorrentImpl::downloadingPieces() const +{ + if (!hasMetadata()) + return {}; + + std::vector queue; + m_nativeHandle.get_download_queue(queue); + + QBitArray result {piecesCount()}; + for (const lt::partial_piece_info &info : queue) + result.setBit(LT::toUnderlyingType(info.piece_index)); + + return result; +} + +QList TorrentImpl::pieceAvailability() const +{ + std::vector avail; + m_nativeHandle.piece_availability(avail); + + return {avail.cbegin(), avail.cend()}; +} + qreal TorrentImpl::distributedCopies() const { return m_nativeStatus.distributed_copies; @@ -1725,6 +1752,12 @@ void TorrentImpl::applyFirstLastPiecePriority(const bool enabled) m_nativeHandle.prioritize_pieces(piecePriorities); } +void TorrentImpl::fileSearchFinished(const Path &savePath, const PathList &fileNames) +{ + if (m_maintenanceJob == MaintenanceJob::HandleMetadata) + endReceivedMetadataHandling(savePath, fileNames); +} + TrackerEntryStatus TorrentImpl::updateTrackerEntryStatus(const lt::announce_entry &announceEntry, const QHash> &updateInfo) { const auto it = std::find_if(m_trackerEntryStatuses.begin(), m_trackerEntryStatuses.end() @@ -1835,7 +1868,7 @@ void TorrentImpl::endReceivedMetadataHandling(const Path &savePath, const PathLi applyFirstLastPiecePriority(true); m_maintenanceJob = MaintenanceJob::None; - prepareResumeData(std::move(p)); + prepareResumeData(p); m_session->handleTorrentMetadataReceived(this); } @@ -1844,6 +1877,16 @@ void TorrentImpl::reload() { try { + m_completedFiles.fill(false); + m_filesProgress.fill(0); + m_pieces.fill(false); + m_nativeStatus.pieces.clear_all(); + m_nativeStatus.num_pieces = 0; + + const auto queuePos = m_nativeHandle.queue_position(); + + m_nativeSession->remove_torrent(m_nativeHandle, lt::session::delete_partfile); + lt::add_torrent_params p = m_ltAddTorrentParams; p.flags |= lt::torrent_flags::update_subscribe | lt::torrent_flags::override_trackers @@ -1863,21 +1906,19 @@ void TorrentImpl::reload() p.flags &= ~(lt::torrent_flags::auto_managed | lt::torrent_flags::paused); } - const auto queuePos = m_nativeHandle.queue_position(); + auto *const extensionData = new ExtensionData; + p.userdata = LTClientData(extensionData); +#ifndef QBT_USES_LIBTORRENT2 + p.storage = customStorageConstructor; +#endif + m_nativeHandle = m_nativeSession->add_torrent(p); - m_nativeHandle = m_session->reloadTorrent(m_nativeHandle, std::move(p)); - m_nativeStatus = static_cast(m_nativeHandle.userdata())->status; + m_nativeStatus = extensionData->status; if (queuePos >= lt::queue_position_t {}) m_nativeHandle.queue_position_set(queuePos); m_nativeStatus.queue_position = queuePos; - m_completedFiles.fill(false); - m_filesProgress.fill(0); - m_pieces.fill(false); - m_nativeStatus.pieces.clear_all(); - m_nativeStatus.num_pieces = 0; - updateState(); } catch (const lt::system_error &err) @@ -2022,7 +2063,7 @@ void TorrentImpl::handleMoveStorageJobFinished(const Path &path, const MoveStora } } -void TorrentImpl::handleTorrentChecked() +void TorrentImpl::handleTorrentCheckedAlert([[maybe_unused]] const lt::torrent_checked_alert *p) { if (!hasMetadata()) { @@ -2065,7 +2106,7 @@ void TorrentImpl::handleTorrentChecked() }); } -void TorrentImpl::handleTorrentFinished() +void TorrentImpl::handleTorrentFinishedAlert([[maybe_unused]] const lt::torrent_finished_alert *p) { m_hasMissingFiles = false; if (m_hasFinishedStatus) @@ -2088,29 +2129,37 @@ void TorrentImpl::handleTorrentFinished() m_hasFinishedStatus = true; if (isMoveInProgress() || (m_renameCount > 0)) - m_moveFinishedTriggers.enqueue([this] { m_session->handleTorrentFinished(this); }); + m_moveFinishedTriggers.enqueue([this]() { m_session->handleTorrentFinished(this); }); else m_session->handleTorrentFinished(this); } }); } -void TorrentImpl::handleSaveResumeData(lt::add_torrent_params params) +void TorrentImpl::handleTorrentPausedAlert([[maybe_unused]] const lt::torrent_paused_alert *p) { - if (m_ltAddTorrentParams.url_seeds != params.url_seeds) +} + +void TorrentImpl::handleTorrentResumedAlert([[maybe_unused]] const lt::torrent_resumed_alert *p) +{ +} + +void TorrentImpl::handleSaveResumeDataAlert(const lt::save_resume_data_alert *p) +{ + if (m_ltAddTorrentParams.url_seeds != p->params.url_seeds) { // URL seed list have been changed by libtorrent for some reason, so we need to update cached one. // Unfortunately, URL seed list containing in "resume data" is generated according to different rules // than the list we usually cache, so we have to request it from the appropriate source. - fetchURLSeeds().then(this, [this](const QList &urlSeeds) { m_urlSeeds = urlSeeds; }); + fetchURLSeeds([this](const QList &urlSeeds) { m_urlSeeds = urlSeeds; }); } - if ((m_maintenanceJob == MaintenanceJob::HandleMetadata) && params.ti) + if ((m_maintenanceJob == MaintenanceJob::HandleMetadata) && p->params.ti) { Q_ASSERT(m_indexMap.isEmpty()); const auto isSeedMode = static_cast(m_ltAddTorrentParams.flags & lt::torrent_flags::seed_mode); - m_ltAddTorrentParams = std::move(params); + m_ltAddTorrentParams = p->params; if (isSeedMode) m_ltAddTorrentParams.flags |= lt::torrent_flags::seed_mode; @@ -2149,20 +2198,15 @@ void TorrentImpl::handleSaveResumeData(lt::add_torrent_params params) filePaths[i] = Path(it->second); } - m_session->findIncompleteFiles(savePath(), downloadPath(), filePaths).then(this - , [this](const FileSearchResult &result) - { - if (m_maintenanceJob == MaintenanceJob::HandleMetadata) - endReceivedMetadataHandling(result.savePath, result.fileNames); - }); + m_session->findIncompleteFiles(metadata, savePath(), downloadPath(), filePaths); } else { - prepareResumeData(std::move(params)); + prepareResumeData(p->params); } } -void TorrentImpl::prepareResumeData(lt::add_torrent_params params) +void TorrentImpl::prepareResumeData(const lt::add_torrent_params ¶ms) { { decltype(params.have_pieces) havePieces; @@ -2186,7 +2230,7 @@ void TorrentImpl::prepareResumeData(lt::add_torrent_params params) } // Update recent resume data - m_ltAddTorrentParams = std::move(params); + m_ltAddTorrentParams = params; if (needPreserveProgress) { @@ -2202,7 +2246,7 @@ void TorrentImpl::prepareResumeData(lt::add_torrent_params params) // We shouldn't save upload_mode flag to allow torrent operate normally on next run m_ltAddTorrentParams.flags &= ~lt::torrent_flags::upload_mode; - LoadTorrentParams resumeData + const LoadTorrentParams resumeData { .ltAddTorrentParams = m_ltAddTorrentParams, .name = m_name, @@ -2225,20 +2269,33 @@ void TorrentImpl::prepareResumeData(lt::add_torrent_params params) .sslParameters = m_sslParams }; - m_session->handleTorrentResumeDataReady(this, std::move(resumeData)); + m_session->handleTorrentResumeDataReady(this, resumeData); } -void TorrentImpl::handleFastResumeRejected() +void TorrentImpl::handleSaveResumeDataFailedAlert(const lt::save_resume_data_failed_alert *p) +{ + if (p->error != lt::errors::resume_data_not_modified) + { + LogMsg(tr("Generate resume data failed. Torrent: \"%1\". Reason: \"%2\"") + .arg(name(), Utils::String::fromLocal8Bit(p->error.message())), Log::CRITICAL); + } +} + +void TorrentImpl::handleFastResumeRejectedAlert(const lt::fastresume_rejected_alert *p) { // Files were probably moved or storage isn't accessible m_hasMissingFiles = true; + LogMsg(tr("Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: \"%1\". Reason: \"%2\"") + .arg(name(), QString::fromStdString(p->message())), Log::WARNING); } -void TorrentImpl::handleFileRenamed(const lt::file_index_t nativeFileIndex, const Path &newActualFilePath, const Path &oldActualFilePath) +void TorrentImpl::handleFileRenamedAlert(const lt::file_renamed_alert *p) { - const int fileIndex = fileIndexFromNative(nativeFileIndex); + const int fileIndex = m_indexMap.value(p->index, -1); Q_ASSERT(fileIndex >= 0); + const Path newActualFilePath {QString::fromUtf8(p->new_name())}; + const Path oldFilePath = m_filePaths.at(fileIndex); const Path newFilePath = makeUserPath(newActualFilePath); @@ -2248,6 +2305,11 @@ void TorrentImpl::handleFileRenamed(const lt::file_index_t nativeFileIndex, cons if (oldFilePath.data() == newFilePath.data()) { // Remove empty ".unwanted" folders +#ifdef QBT_USES_LIBTORRENT2 + const Path oldActualFilePath {QString::fromUtf8(p->old_name())}; +#else + const Path oldActualFilePath; +#endif const Path oldActualParentPath = oldActualFilePath.parentPath(); const Path newActualParentPath = newActualFilePath.parentPath(); if (newActualParentPath.filename() == UNWANTED_FOLDER_NAME) @@ -2297,11 +2359,14 @@ void TorrentImpl::handleFileRenamed(const lt::file_index_t nativeFileIndex, cons deferredRequestResumeData(); } -void TorrentImpl::handleFileRenameFailed(const lt::file_index_t nativeFileIndex) +void TorrentImpl::handleFileRenameFailedAlert(const lt::file_rename_failed_alert *p) { - const int fileIndex = fileIndexFromNative(nativeFileIndex); + const int fileIndex = m_indexMap.value(p->index, -1); Q_ASSERT(fileIndex >= 0); + LogMsg(tr("File rename failed. Torrent: \"%1\", file: \"%2\", reason: \"%3\"") + .arg(name(), filePath(fileIndex).toString(), Utils::String::fromLocal8Bit(p->error.message())), Log::WARNING); + --m_renameCount; while (!isMoveInProgress() && (m_renameCount == 0) && !m_moveFinishedTriggers.isEmpty()) m_moveFinishedTriggers.takeFirst()(); @@ -2309,12 +2374,12 @@ void TorrentImpl::handleFileRenameFailed(const lt::file_index_t nativeFileIndex) deferredRequestResumeData(); } -void TorrentImpl::handleFileCompleted(const lt::file_index_t nativeFileIndex) +void TorrentImpl::handleFileCompletedAlert(const lt::file_completed_alert *p) { if (m_maintenanceJob == MaintenanceJob::HandleMetadata) return; - const int fileIndex = fileIndexFromNative(nativeFileIndex); + const int fileIndex = m_indexMap.value(p->index, -1); Q_ASSERT(fileIndex >= 0); m_completedFiles.setBit(fileIndex); @@ -2342,13 +2407,22 @@ void TorrentImpl::handleFileCompleted(const lt::file_index_t nativeFileIndex) } } -void TorrentImpl::handleFileError(FileErrorInfo fileError) +void TorrentImpl::handleFileErrorAlert(const lt::file_error_alert *p) { - m_lastFileError = std::move(fileError); + m_lastFileError = {p->error, p->op}; } -void TorrentImpl::handleMetadataReceived() +#ifdef QBT_USES_LIBTORRENT2 +void TorrentImpl::handleFilePrioAlert(const lt::file_prio_alert *) { + deferredRequestResumeData(); +} +#endif + +void TorrentImpl::handleMetadataReceivedAlert([[maybe_unused]] const lt::metadata_received_alert *p) +{ + qDebug("Metadata received for torrent %s.", qUtf8Printable(name())); + #ifdef QBT_USES_LIBTORRENT2 const InfoHash prevInfoHash = infoHash(); m_infoHash = InfoHash(m_nativeHandle.info_hashes()); @@ -2360,6 +2434,12 @@ void TorrentImpl::handleMetadataReceived() deferredRequestResumeData(); } +void TorrentImpl::handlePerformanceAlert(const lt::performance_alert *p) const +{ + LogMsg((tr("Performance alert: %1. More info: %2").arg(QString::fromStdString(p->message()), u"https://libtorrent.org/reference-Alerts.html#enum-performance-warning-t"_s)) + , Log::INFO); +} + void TorrentImpl::handleCategoryOptionsChanged() { if (m_useAutoTMM) @@ -2382,6 +2462,57 @@ void TorrentImpl::handleUnwantedFolderToggled() manageActualFilePaths(); } +void TorrentImpl::handleAlert(const lt::alert *a) +{ + switch (a->type()) + { +#ifdef QBT_USES_LIBTORRENT2 + case lt::file_prio_alert::alert_type: + handleFilePrioAlert(static_cast(a)); + break; +#endif + case lt::file_renamed_alert::alert_type: + handleFileRenamedAlert(static_cast(a)); + break; + case lt::file_rename_failed_alert::alert_type: + handleFileRenameFailedAlert(static_cast(a)); + break; + case lt::file_completed_alert::alert_type: + handleFileCompletedAlert(static_cast(a)); + break; + case lt::file_error_alert::alert_type: + handleFileErrorAlert(static_cast(a)); + break; + case lt::torrent_finished_alert::alert_type: + handleTorrentFinishedAlert(static_cast(a)); + break; + case lt::save_resume_data_alert::alert_type: + handleSaveResumeDataAlert(static_cast(a)); + break; + case lt::save_resume_data_failed_alert::alert_type: + handleSaveResumeDataFailedAlert(static_cast(a)); + break; + case lt::torrent_paused_alert::alert_type: + handleTorrentPausedAlert(static_cast(a)); + break; + case lt::torrent_resumed_alert::alert_type: + handleTorrentResumedAlert(static_cast(a)); + break; + case lt::metadata_received_alert::alert_type: + handleMetadataReceivedAlert(static_cast(a)); + break; + case lt::fastresume_rejected_alert::alert_type: + handleFastResumeRejectedAlert(static_cast(a)); + break; + case lt::torrent_checked_alert::alert_type: + handleTorrentCheckedAlert(static_cast(a)); + break; + case lt::performance_alert::alert_type: + handlePerformanceAlert(static_cast(a)); + break; + } +} + void TorrentImpl::manageActualFilePaths() { const std::shared_ptr nativeInfo = nativeTorrentInfo(); @@ -2429,11 +2560,6 @@ lt::torrent_handle TorrentImpl::nativeHandle() const return m_nativeHandle; } -int TorrentImpl::fileIndexFromNative(const lt::file_index_t nativeFileIndex) const -{ - return m_indexMap.value(nativeFileIndex, -1); -} - void TorrentImpl::setMetadata(const TorrentInfo &torrentInfo) { if (hasMetadata()) @@ -2753,9 +2879,18 @@ nonstd::expected TorrentImpl::exportTorrent() const try { - [[maybe_unused]] const auto infoGuard = qScopeGuard([this] { m_ltAddTorrentParams.ti.reset(); }); - m_ltAddTorrentParams.ti = info().nativeInfo(); - return lt::write_torrent_file(m_ltAddTorrentParams); +#ifdef QBT_USES_LIBTORRENT2 + const std::shared_ptr completeTorrentInfo = m_nativeHandle.torrent_file_with_hashes(); + const std::shared_ptr torrentInfo = (completeTorrentInfo ? completeTorrentInfo : info().nativeInfo()); +#else + const std::shared_ptr torrentInfo = info().nativeInfo(); +#endif + lt::create_torrent creator {*torrentInfo}; + + for (const TrackerEntryStatus &status : asConst(trackers())) + creator.add_tracker(status.url.toStdString(), status.tier); + + return creator.generate(); } catch (const lt::system_error &err) { @@ -2790,9 +2925,9 @@ nonstd::expected TorrentImpl::exportToFile(const Path &path) cons return {}; } -QFuture> TorrentImpl::fetchPeerInfo() const +void TorrentImpl::fetchPeerInfo(std::function)> resultHandler) const { - return invokeAsync([nativeHandle = m_nativeHandle, allPieces = pieces()]() -> QList + invokeAsync([nativeHandle = m_nativeHandle, allPieces = pieces()]() -> QList { try { @@ -2807,12 +2942,13 @@ QFuture> TorrentImpl::fetchPeerInfo() const catch (const std::exception &) {} return {}; - }); + } + , std::move(resultHandler)); } -QFuture> TorrentImpl::fetchURLSeeds() const +void TorrentImpl::fetchURLSeeds(std::function)> resultHandler) const { - return invokeAsync([nativeHandle = m_nativeHandle]() -> QList + invokeAsync([nativeHandle = m_nativeHandle]() -> QList { try { @@ -2826,12 +2962,13 @@ QFuture> TorrentImpl::fetchURLSeeds() const catch (const std::exception &) {} return {}; - }); + } + , std::move(resultHandler)); } -QFuture> TorrentImpl::fetchPieceAvailability() const +void TorrentImpl::fetchPieceAvailability(std::function)> resultHandler) const { - return invokeAsync([nativeHandle = m_nativeHandle]() -> QList + invokeAsync([nativeHandle = m_nativeHandle]() -> QList { try { @@ -2842,12 +2979,13 @@ QFuture> TorrentImpl::fetchPieceAvailability() const catch (const std::exception &) {} return {}; - }); + } + , std::move(resultHandler)); } -QFuture TorrentImpl::fetchDownloadingPieces() const +void TorrentImpl::fetchDownloadingPieces(std::function resultHandler) const { - return invokeAsync([nativeHandle = m_nativeHandle, torrentInfo = m_torrentInfo]() -> QBitArray + invokeAsync([nativeHandle = m_nativeHandle, torrentInfo = m_torrentInfo]() -> QBitArray { try { @@ -2866,12 +3004,13 @@ QFuture TorrentImpl::fetchDownloadingPieces() const catch (const std::exception &) {} return {}; - }); + } + , std::move(resultHandler)); } -QFuture> TorrentImpl::fetchAvailableFileFractions() const +void TorrentImpl::fetchAvailableFileFractions(std::function)> resultHandler) const { - return invokeAsync([nativeHandle = m_nativeHandle, torrentInfo = m_torrentInfo]() -> QList + invokeAsync([nativeHandle = m_nativeHandle, torrentInfo = m_torrentInfo]() -> QList { if (!torrentInfo.isValid() || (torrentInfo.filesCount() <= 0)) return {}; @@ -2905,7 +3044,8 @@ QFuture> TorrentImpl::fetchAvailableFileFractions() const catch (const std::exception &) {} return {}; - }); + } + , std::move(resultHandler)); } void TorrentImpl::prioritizeFiles(const QList &priorities) @@ -2916,7 +3056,7 @@ void TorrentImpl::prioritizeFiles(const QList &priorities) Q_ASSERT(priorities.size() == filesCount()); // Reset 'm_hasSeedStatus' if needed in order to react again to - // "torrent finished" event and e.g. show tray notifications + // 'torrent_finished_alert' and eg show tray notifications const QList oldPriorities = filePriorities(); for (int i = 0; i < oldPriorities.size(); ++i) { @@ -2945,17 +3085,47 @@ void TorrentImpl::prioritizeFiles(const QList &priorities) manageActualFilePaths(); } -template -QFuture> TorrentImpl::invokeAsync(Func &&func) const +QList TorrentImpl::availableFileFractions() const { - QPromise> promise; - const auto future = promise.future(); - promise.start(); - m_session->invokeAsync([func = std::forward(func), promise = std::move(promise)]() mutable - { - promise.addResult(func()); - promise.finish(); - }); + Q_ASSERT(hasMetadata()); - return future; + const int filesCount = this->filesCount(); + if (filesCount <= 0) return {}; + + const QList piecesAvailability = pieceAvailability(); + // libtorrent returns empty array for seeding only torrents + if (piecesAvailability.empty()) return QList(filesCount, -1); + + QList res; + res.reserve(filesCount); + for (int i = 0; i < filesCount; ++i) + { + const TorrentInfo::PieceRange filePieces = m_torrentInfo.filePieces(i); + + int availablePieces = 0; + for (const int piece : filePieces) + availablePieces += (piecesAvailability[piece] > 0) ? 1 : 0; + + const qreal availability = filePieces.isEmpty() + ? 1 // the file has no pieces, so it is available by default + : static_cast(availablePieces) / filePieces.size(); + res.push_back(availability); + } + return res; +} + +template +void TorrentImpl::invokeAsync(Func func, Callback resultHandler) const +{ + m_session->invokeAsync([session = m_session + , func = std::move(func) + , resultHandler = std::move(resultHandler) + , thisTorrent = QPointer(this)]() mutable + { + session->invoke([result = func(), thisTorrent, resultHandler = std::move(resultHandler)] + { + if (thisTorrent) + resultHandler(result); + }); + }); } diff --git a/src/base/bittorrent/torrentimpl.h b/src/base/bittorrent/torrentimpl.h index 2c1f9af77..5c54b2d00 100644 --- a/src/base/bittorrent/torrentimpl.h +++ b/src/base/bittorrent/torrentimpl.h @@ -94,7 +94,8 @@ namespace BitTorrent Q_DISABLE_COPY_MOVE(TorrentImpl) public: - TorrentImpl(SessionImpl *session, const lt::torrent_handle &nativeHandle, LoadTorrentParams params); + TorrentImpl(SessionImpl *session, lt::session *nativeSession + , const lt::torrent_handle &nativeHandle, const LoadTorrentParams ¶ms); ~TorrentImpl() override; bool isValid() const; @@ -202,7 +203,10 @@ namespace BitTorrent bool isDHTDisabled() const override; bool isPEXDisabled() const override; bool isLSDDisabled() const override; + QList peers() const override; QBitArray pieces() const override; + QBitArray downloadingPieces() const override; + QList pieceAvailability() const override; qreal distributedCopies() const override; qreal maxRatio() const override; int maxSeedingTime() const override; @@ -216,6 +220,7 @@ namespace BitTorrent int connectionsCount() const override; int connectionsLimit() const override; qlonglong nextAnnounce() const override; + QList availableFileFractions() const override; void setName(const QString &name) override; void setSequentialDownload(bool enable) override; @@ -253,29 +258,19 @@ namespace BitTorrent nonstd::expected exportToBuffer() const override; nonstd::expected exportToFile(const Path &path) const override; - QFuture> fetchPeerInfo() const override; - QFuture> fetchURLSeeds() const override; - QFuture> fetchPieceAvailability() const override; - QFuture fetchDownloadingPieces() const override; - QFuture> fetchAvailableFileFractions() const override; + void fetchPeerInfo(std::function)> resultHandler) const override; + void fetchURLSeeds(std::function)> resultHandler) const override; + void fetchPieceAvailability(std::function)> resultHandler) const override; + void fetchDownloadingPieces(std::function resultHandler) const override; + void fetchAvailableFileFractions(std::function)> resultHandler) const override; bool needSaveResumeData() const; // Session interface lt::torrent_handle nativeHandle() const; - int fileIndexFromNative(lt::file_index_t nativeFileIndex) const; - + void handleAlert(const lt::alert *a); void handleStateUpdate(const lt::torrent_status &nativeStatus); - void handleFastResumeRejected(); - void handleFileCompleted(lt::file_index_t nativeFileIndex); - void handleFileError(FileErrorInfo fileError); - void handleFileRenamed(lt::file_index_t nativeFileIndex, const Path &newActualFilePath, const Path &oldActualFilePath); - void handleFileRenameFailed(lt::file_index_t nativeFileIndex); - void handleMetadataReceived(); - void handleSaveResumeData(lt::add_torrent_params params); - void handleTorrentChecked(); - void handleTorrentFinished(); void handleQueueingModeChanged(); void handleCategoryOptionsChanged(); void handleAppendExtensionToggled(); @@ -283,6 +278,7 @@ namespace BitTorrent void requestResumeData(lt::resume_data_flags_t flags = {}); void deferredRequestResumeData(); void handleMoveStorageJobFinished(const Path &path, MoveStorageContext context, bool hasOutstandingJob); + void fileSearchFinished(const Path &savePath, const PathList &fileNames); TrackerEntryStatus updateTrackerEntryStatus(const lt::announce_entry &announceEntry, const QHash> &updateInfo); void resetTrackerEntryStatuses(); @@ -295,6 +291,23 @@ namespace BitTorrent void updateProgress(); void updateState(); + void handleFastResumeRejectedAlert(const lt::fastresume_rejected_alert *p); + void handleFileCompletedAlert(const lt::file_completed_alert *p); + void handleFileErrorAlert(const lt::file_error_alert *p); +#ifdef QBT_USES_LIBTORRENT2 + void handleFilePrioAlert(const lt::file_prio_alert *p); +#endif + void handleFileRenamedAlert(const lt::file_renamed_alert *p); + void handleFileRenameFailedAlert(const lt::file_rename_failed_alert *p); + void handleMetadataReceivedAlert(const lt::metadata_received_alert *p); + void handlePerformanceAlert(const lt::performance_alert *p) const; + void handleSaveResumeDataAlert(const lt::save_resume_data_alert *p); + void handleSaveResumeDataFailedAlert(const lt::save_resume_data_failed_alert *p); + void handleTorrentCheckedAlert(const lt::torrent_checked_alert *p); + void handleTorrentFinishedAlert(const lt::torrent_finished_alert *p); + void handleTorrentPausedAlert(const lt::torrent_paused_alert *p); + void handleTorrentResumedAlert(const lt::torrent_resumed_alert *p); + bool isMoveInProgress() const; void setAutoManaged(bool enable); @@ -307,16 +320,17 @@ namespace BitTorrent void manageActualFilePaths(); void applyFirstLastPiecePriority(bool enabled); - void prepareResumeData(lt::add_torrent_params resumeData); + void prepareResumeData(const lt::add_torrent_params ¶ms); void endReceivedMetadataHandling(const Path &savePath, const PathList &fileNames); void reload(); nonstd::expected exportTorrent() const; - template - QFuture> invokeAsync(Func &&func) const; + template + void invokeAsync(Func func, Callback resultHandler) const; SessionImpl *const m_session = nullptr; + lt::session *m_nativeSession = nullptr; lt::torrent_handle m_nativeHandle; mutable lt::torrent_status m_nativeStatus; TorrentState m_state = TorrentState::Unknown; @@ -373,7 +387,7 @@ namespace BitTorrent bool m_unchecked = false; - mutable lt::add_torrent_params m_ltAddTorrentParams; + lt::add_torrent_params m_ltAddTorrentParams; int m_downloadLimit = 0; int m_uploadLimit = 0; diff --git a/src/base/bittorrent/tracker.cpp b/src/base/bittorrent/tracker.cpp index a86d50310..6da1321cd 100644 --- a/src/base/bittorrent/tracker.cpp +++ b/src/base/bittorrent/tracker.cpp @@ -380,7 +380,7 @@ void Tracker::registerPeer(const TrackerAnnounceRequest &announceReq) { // Reached max size, remove a random torrent if (m_torrents.size() >= MAX_TORRENTS) - m_torrents.erase(m_torrents.cbegin()); + m_torrents.erase(m_torrents.begin()); } m_torrents[announceReq.torrentID].setPeer(announceReq.peer); diff --git a/src/base/bittorrent/trackerentrystatus.h b/src/base/bittorrent/trackerentrystatus.h index 026580623..fa5998a58 100644 --- a/src/base/bittorrent/trackerentrystatus.h +++ b/src/base/bittorrent/trackerentrystatus.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -41,6 +41,7 @@ namespace BitTorrent { NotContacted = 1, Working = 2, + Updating = 3, NotWorking = 4, TrackerError = 5, Unreachable = 6 @@ -51,7 +52,6 @@ namespace BitTorrent QString name {}; int btVersion = 1; - bool isUpdating = false; TrackerEndpointState state = TrackerEndpointState::NotContacted; QString message {}; @@ -69,7 +69,6 @@ namespace BitTorrent QString url {}; int tier = 0; - bool isUpdating = false; TrackerEndpointState state = TrackerEndpointState::NotContacted; QString message {}; diff --git a/src/base/http/connection.cpp b/src/base/http/connection.cpp index 216d3e103..55309a778 100644 --- a/src/base/http/connection.cpp +++ b/src/base/http/connection.cpp @@ -155,11 +155,7 @@ void Connection::read() sendResponse(resp); } -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - m_receivedData.slice(result.frameSize); -#else m_receivedData.remove(0, result.frameSize); -#endif } break; diff --git a/src/base/http/requestparser.cpp b/src/base/http/requestparser.cpp index e8a02dd09..bd93fa6cc 100644 --- a/src/base/http/requestparser.cpp +++ b/src/base/http/requestparser.cpp @@ -69,8 +69,8 @@ namespace return false; } - const QString name = line.first(i).trimmed().toString().toLower(); - const QString value = line.sliced(i + 1).trimmed().toString(); + const QString name = line.left(i).trimmed().toString().toLower(); + const QString value = line.mid(i + 1).trimmed().toString(); out[name] = value; return true; @@ -204,15 +204,15 @@ bool RequestParser::parseRequestLine(const QString &line) m_request.method = match.captured(1); // Request Target - const QByteArray url {match.capturedView(2).toLatin1()}; + const QByteArray url {match.captured(2).toLatin1()}; const int sepPos = url.indexOf('?'); - const QByteArrayView pathComponent = ((sepPos == -1) ? url : QByteArrayView(url).first(sepPos)); + const QByteArrayView pathComponent = ((sepPos == -1) ? url : QByteArrayView(url).mid(0, sepPos)); m_request.path = QString::fromUtf8(QByteArray::fromPercentEncoding(asQByteArray(pathComponent))); if (sepPos >= 0) { - const QByteArrayView query = QByteArrayView(url).sliced(sepPos + 1); + const QByteArrayView query = QByteArrayView(url).mid(sepPos + 1); // [rfc3986] 2.4 When to Encode or Decode // URL components should be separated before percent-decoding @@ -221,8 +221,8 @@ bool RequestParser::parseRequestLine(const QString &line) const int eqCharPos = param.indexOf('='); if (eqCharPos <= 0) continue; // ignores params without name - const QByteArrayView nameComponent = param.first(eqCharPos); - const QByteArrayView valueComponent = param.sliced(eqCharPos + 1); + const QByteArrayView nameComponent = param.mid(0, eqCharPos); + const QByteArrayView valueComponent = param.mid(eqCharPos + 1); const QString paramName = QString::fromUtf8( QByteArray::fromPercentEncoding(asQByteArray(nameComponent)).replace('+', ' ')); const QByteArray paramValue = QByteArray::fromPercentEncoding(asQByteArray(valueComponent)).replace('+', ' '); @@ -270,7 +270,7 @@ bool RequestParser::parsePostMessage(const QByteArrayView data) return false; } - const QByteArray delimiter = Utils::String::unquote(QStringView(contentType).sliced(idx + boundaryFieldName.size())).toLatin1(); + const QByteArray delimiter = Utils::String::unquote(QStringView(contentType).mid(idx + boundaryFieldName.size())).toLatin1(); if (delimiter.isEmpty()) { qWarning() << Q_FUNC_INFO << "boundary delimiter field empty!"; @@ -279,7 +279,7 @@ bool RequestParser::parsePostMessage(const QByteArrayView data) // split data by "dash-boundary" const QByteArray dashDelimiter = QByteArray("--") + delimiter + CRLF; - QList multipart = splitToViews(data, dashDelimiter); + QList multipart = splitToViews(data, dashDelimiter, Qt::SkipEmptyParts); if (multipart.isEmpty()) { qWarning() << Q_FUNC_INFO << "multipart empty"; @@ -310,8 +310,8 @@ bool RequestParser::parseFormData(const QByteArrayView data) return false; } - const QString headers = QString::fromLatin1(data.first(eohPos)); - const QByteArrayView payload = viewWithoutEndingWith(data.sliced((eohPos + EOH.size())), CRLF); + const QString headers = QString::fromLatin1(data.mid(0, eohPos)); + const QByteArrayView payload = viewWithoutEndingWith(data.mid((eohPos + EOH.size()), data.size()), CRLF); HeaderMap headersMap; const QList headerLines = QStringView(headers).split(QString::fromLatin1(CRLF), Qt::SkipEmptyParts); @@ -328,8 +328,8 @@ bool RequestParser::parseFormData(const QByteArrayView data) if (idx < 0) continue; - const QString name = directive.first(idx).trimmed().toString().toLower(); - const QString value = Utils::String::unquote(directive.sliced(idx + 1).trimmed()).toString(); + const QString name = directive.left(idx).trimmed().toString().toLower(); + const QString value = Utils::String::unquote(directive.mid(idx + 1).trimmed()).toString(); headersMap[name] = value; } } diff --git a/src/base/net/dnsupdater.cpp b/src/base/net/dnsupdater.cpp index 99c80b35a..6399fc5a2 100644 --- a/src/base/net/dnsupdater.cpp +++ b/src/base/net/dnsupdater.cpp @@ -96,9 +96,9 @@ void DNSUpdater::ipRequestFinished(const DownloadResult &result) const QRegularExpressionMatch ipRegexMatch = QRegularExpression(u"Current IP Address:\\s+([^<]+)"_s).match(QString::fromUtf8(result.data)); if (ipRegexMatch.hasMatch()) { - const QString ipStr = ipRegexMatch.captured(1); + QString ipStr = ipRegexMatch.captured(1); qDebug() << Q_FUNC_INFO << "Regular expression captured the following IP:" << ipStr; - const QHostAddress newIp {ipStr}; + QHostAddress newIp(ipStr); if (!newIp.isNull()) { if (m_lastIP != newIp) diff --git a/src/base/net/downloadhandlerimpl.cpp b/src/base/net/downloadhandlerimpl.cpp index abc796d37..370347946 100644 --- a/src/base/net/downloadhandlerimpl.cpp +++ b/src/base/net/downloadhandlerimpl.cpp @@ -279,13 +279,13 @@ QString Net::DownloadHandlerImpl::errorCodeToString(const QNetworkReply::Network case QNetworkReply::ProxyAuthenticationRequiredError: return tr("The proxy requires authentication in order to honor the request but did not accept any credentials offered"); case QNetworkReply::ContentAccessDenied: - return tr("The access to the remote content was denied (403)"); + return tr("The access to the remote content was denied (401)"); case QNetworkReply::ContentOperationNotPermittedError: return tr("The operation requested on the remote content is not permitted"); case QNetworkReply::ContentNotFoundError: return tr("The remote content was not found at the server (404)"); case QNetworkReply::AuthenticationRequiredError: - return tr("The remote server requires authentication to serve the content but the credentials provided were not accepted (401)"); + return tr("The remote server requires authentication to serve the content but the credentials provided were not accepted"); case QNetworkReply::ProtocolUnknownError: return tr("The Network Access API cannot honor the request because the protocol is not known"); case QNetworkReply::ProtocolInvalidOperationError: diff --git a/src/base/net/downloadmanager.cpp b/src/base/net/downloadmanager.cpp index 6a46ee0ce..2d75de73c 100644 --- a/src/base/net/downloadmanager.cpp +++ b/src/base/net/downloadmanager.cpp @@ -265,37 +265,38 @@ void Net::DownloadManager::applyProxySettings() const auto *proxyManager = ProxyConfigurationManager::instance(); const ProxyConfiguration proxyConfig = proxyManager->proxyConfiguration(); - switch (proxyConfig.type) + m_proxy = QNetworkProxy(QNetworkProxy::NoProxy); + + if ((proxyConfig.type == Net::ProxyType::None) || (proxyConfig.type == ProxyType::SOCKS4)) + return; + + // Proxy enabled + if (proxyConfig.type == ProxyType::SOCKS5) { - case Net::ProxyType::None: - case Net::ProxyType::SOCKS4: - m_proxy = QNetworkProxy(QNetworkProxy::NoProxy); - break; + qDebug() << Q_FUNC_INFO << "using SOCKS proxy"; + m_proxy.setType(QNetworkProxy::Socks5Proxy); + } + else + { + qDebug() << Q_FUNC_INFO << "using HTTP proxy"; + m_proxy.setType(QNetworkProxy::HttpProxy); + } - case Net::ProxyType::HTTP: - m_proxy = QNetworkProxy( - QNetworkProxy::HttpProxy - , proxyConfig.ip - , proxyConfig.port - , (proxyConfig.authEnabled ? proxyConfig.username : QString()) - , (proxyConfig.authEnabled ? proxyConfig.password : QString())); - m_proxy.setCapabilities(proxyConfig.hostnameLookupEnabled - ? (m_proxy.capabilities() | QNetworkProxy::HostNameLookupCapability) - : (m_proxy.capabilities() & ~QNetworkProxy::HostNameLookupCapability)); - break; + m_proxy.setHostName(proxyConfig.ip); + m_proxy.setPort(proxyConfig.port); - case Net::ProxyType::SOCKS5: - m_proxy = QNetworkProxy( - QNetworkProxy::Socks5Proxy - , proxyConfig.ip - , proxyConfig.port - , (proxyConfig.authEnabled ? proxyConfig.username : QString()) - , (proxyConfig.authEnabled ? proxyConfig.password : QString())); - m_proxy.setCapabilities(proxyConfig.hostnameLookupEnabled - ? (m_proxy.capabilities() | QNetworkProxy::HostNameLookupCapability) - : (m_proxy.capabilities() & ~QNetworkProxy::HostNameLookupCapability)); - break; - }; + // Authentication? + if (proxyConfig.authEnabled) + { + qDebug("Proxy requires authentication, authenticating..."); + m_proxy.setUser(proxyConfig.username); + m_proxy.setPassword(proxyConfig.password); + } + + if (proxyConfig.hostnameLookupEnabled) + m_proxy.setCapabilities(m_proxy.capabilities() | QNetworkProxy::HostNameLookupCapability); + else + m_proxy.setCapabilities(m_proxy.capabilities() & ~QNetworkProxy::HostNameLookupCapability); } void Net::DownloadManager::processWaitingJobs(const ServiceID &serviceID) diff --git a/src/base/net/smtp.cpp b/src/base/net/smtp.cpp index e130f6b11..a8e40acdd 100644 --- a/src/base/net/smtp.cpp +++ b/src/base/net/smtp.cpp @@ -148,7 +148,8 @@ void Smtp::sendMail(const QString &from, const QString &to, const QString &subje // Encode the body in base64 QString crlfBody = body; const QByteArray b = crlfBody.replace(u"\n"_s, u"\r\n"_s).toUtf8().toBase64(); - for (int i = 0, end = b.length(); i < end; i += 78) + const int ct = b.length(); + for (int i = 0; i < ct; i += 78) m_message += b.mid(i, 78); m_from = from; m_rcpt = to; @@ -189,12 +190,8 @@ void Smtp::readyRead() { const int pos = m_buffer.indexOf("\r\n"); if (pos < 0) return; // Loop exit condition - const QByteArray line = m_buffer.first(pos); -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - m_buffer.slice(pos + 2); -#else + const QByteArray line = m_buffer.left(pos); m_buffer.remove(0, (pos + 2)); -#endif qDebug() << "Response line:" << line; // Extract response code const QByteArray code = line.left(3); diff --git a/src/base/path.cpp b/src/base/path.cpp index 55162d6df..14950d473 100644 --- a/src/base/path.cpp +++ b/src/base/path.cpp @@ -94,13 +94,7 @@ bool Path::isValid() const #if defined(Q_OS_WIN) QStringView view = m_pathStr; if (hasDriveLetter(view)) - { -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - view.slice(3); -#else - view = view.sliced(3); -#endif - } + view = view.mid(3); // \\37 is using base-8 number system const QRegularExpression regex {u"[\\0-\\37:?\"*<>|]"_s}; @@ -153,9 +147,9 @@ Path Path::rootItem() const #ifdef Q_OS_WIN // should be `c:/` instead of `c:` if ((slashIndex == 2) && hasDriveLetter(m_pathStr)) - return createUnchecked(m_pathStr.first(slashIndex + 1)); + return createUnchecked(m_pathStr.left(slashIndex + 1)); #endif - return createUnchecked(m_pathStr.first(slashIndex)); + return createUnchecked(m_pathStr.left(slashIndex)); } Path Path::parentPath() const @@ -173,9 +167,9 @@ Path Path::parentPath() const // should be `c:/` instead of `c:` // Windows "drive letter" is limited to one alphabet if ((slashIndex == 2) && hasDriveLetter(m_pathStr)) - return (m_pathStr.size() == 3) ? Path() : createUnchecked(m_pathStr.first(slashIndex + 1)); + return (m_pathStr.size() == 3) ? Path() : createUnchecked(m_pathStr.left(slashIndex + 1)); #endif - return createUnchecked(m_pathStr.first(slashIndex)); + return createUnchecked(m_pathStr.left(slashIndex)); } QString Path::filename() const @@ -184,7 +178,7 @@ QString Path::filename() const if (slashIndex == -1) return m_pathStr; - return m_pathStr.sliced(slashIndex + 1); + return m_pathStr.mid(slashIndex + 1); } QString Path::extension() const @@ -194,9 +188,9 @@ QString Path::extension() const return (u"." + suffix); const int slashIndex = m_pathStr.lastIndexOf(u'/'); - const auto filename = QStringView(m_pathStr).sliced(slashIndex + 1); + const auto filename = QStringView(m_pathStr).mid(slashIndex + 1); const int dotIndex = filename.lastIndexOf(u'.', -2); - return ((dotIndex == -1) ? QString() : filename.sliced(dotIndex).toString()); + return ((dotIndex == -1) ? QString() : filename.mid(dotIndex).toString()); } bool Path::hasExtension(const QStringView ext) const @@ -299,7 +293,7 @@ Path Path::commonPath(const Path &left, const Path &right) if (commonItemsCount > 0) commonPathSize += (commonItemsCount - 1); // size of intermediate separators - return Path::createUnchecked(left.m_pathStr.first(commonPathSize)); + return Path::createUnchecked(left.m_pathStr.left(commonPathSize)); } Path Path::findRootFolder(const PathList &filePaths) @@ -328,13 +322,7 @@ void Path::stripRootFolder(PathList &filePaths) return; for (Path &filePath : filePaths) - { -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - filePath.m_pathStr.slice(commonRootFolder.m_pathStr.size() + 1); -#else filePath.m_pathStr.remove(0, (commonRootFolder.m_pathStr.size() + 1)); -#endif - } } void Path::addRootFolder(PathList &filePaths, const Path &rootFolder) diff --git a/src/base/preferences.cpp b/src/base/preferences.cpp index ef0ad708b..8a443e92e 100644 --- a/src/base/preferences.cpp +++ b/src/base/preferences.cpp @@ -186,19 +186,6 @@ void Preferences::setAlternatingRowColors(const bool b) setValue(u"Preferences/General/AlternatingRowColors"_s, b); } -bool Preferences::getProgressBarFollowsTextColor() const -{ - return value(u"GUI/TransferList/ProgressBarFollowsTextColor"_s, false); -} - -void Preferences::setProgressBarFollowsTextColor(const bool value) -{ - if (value == getProgressBarFollowsTextColor()) - return; - - setValue(u"GUI/TransferList/ProgressBarFollowsTextColor"_s, value); -} - bool Preferences::getHideZeroValues() const { return value(u"Preferences/General/HideZeroValues"_s, false); @@ -372,19 +359,6 @@ void Preferences::setStatusbarDisplayed(const bool displayed) setValue(u"Preferences/General/StatusbarDisplayed"_s, displayed); } -bool Preferences::isStatusbarFreeDiskSpaceDisplayed() const -{ - return value(u"Preferences/General/StatusbarFreeDiskSpaceDisplayed"_s, false); -} - -void Preferences::setStatusbarFreeDiskSpaceDisplayed(const bool displayed) -{ - if (displayed == isStatusbarFreeDiskSpaceDisplayed()) - return; - - setValue(u"Preferences/General/StatusbarFreeDiskSpaceDisplayed"_s, displayed); -} - bool Preferences::isStatusbarExternalIPDisplayed() const { return value(u"Preferences/General/StatusbarExternalIPDisplayed"_s, false); diff --git a/src/base/preferences.h b/src/base/preferences.h index bf08fde3d..817a5ff55 100644 --- a/src/base/preferences.h +++ b/src/base/preferences.h @@ -113,16 +113,12 @@ public: void showSpeedInTitleBar(bool show); bool useAlternatingRowColors() const; void setAlternatingRowColors(bool b); - bool getProgressBarFollowsTextColor() const; - void setProgressBarFollowsTextColor(bool value); bool getHideZeroValues() const; void setHideZeroValues(bool b); int getHideZeroComboValues() const; void setHideZeroComboValues(int n); bool isStatusbarDisplayed() const; void setStatusbarDisplayed(bool displayed); - bool isStatusbarFreeDiskSpaceDisplayed() const; - void setStatusbarFreeDiskSpaceDisplayed(bool displayed); bool isStatusbarExternalIPDisplayed() const; void setStatusbarExternalIPDisplayed(bool displayed); bool isToolbarDisplayed() const; diff --git a/src/base/rss/rss_autodownloader.cpp b/src/base/rss/rss_autodownloader.cpp index 294e3289e..c40218457 100644 --- a/src/base/rss/rss_autodownloader.cpp +++ b/src/base/rss/rss_autodownloader.cpp @@ -43,7 +43,6 @@ #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 02b52231a..dcd752bcf 100644 --- a/src/base/rss/rss_autodownloader.h +++ b/src/base/rss/rss_autodownloader.h @@ -37,6 +37,7 @@ #include #include "base/applicationcomponent.h" +#include "base/bittorrent/addtorrenterror.h" #include "base/exceptions.h" #include "base/settingvalue.h" #include "base/utils/thread.h" @@ -47,11 +48,6 @@ class Application; class AsyncFileStorage; struct ProcessingJob; -namespace BitTorrent -{ - struct AddTorrentError; -} - namespace RSS { class Article; diff --git a/src/base/rss/rss_autodownloadrule.cpp b/src/base/rss/rss_autodownloadrule.cpp index 77d342f91..2960b984b 100644 --- a/src/base/rss/rss_autodownloadrule.cpp +++ b/src/base/rss/rss_autodownloadrule.cpp @@ -184,10 +184,14 @@ QString computeEpisodeName(const QString &article) for (int i = 1; i <= match.lastCapturedIndex(); ++i) { const QString cap = match.captured(i); + if (cap.isEmpty()) continue; - ret.append(cap); + bool isInt = false; + const int x = cap.toInt(&isInt); + + ret.append(isInt ? QString::number(x) : cap); } return ret.join(u'x'); } @@ -289,26 +293,20 @@ bool AutoDownloadRule::matchesEpisodeFilterExpression(const QString &articleTitl if (!matcher.hasMatch()) return false; - const QStringView season {matcher.capturedView(1)}; - const QList episodes {matcher.capturedView(2).split(u';')}; + const QString season {matcher.captured(1)}; + const QStringList episodes {matcher.captured(2).split(u';')}; const int seasonOurs {season.toInt()}; - for (QStringView episode : episodes) + for (QString episode : episodes) { if (episode.isEmpty()) continue; // We need to trim leading zeroes, but if it's all zeros then we want episode zero. while ((episode.size() > 1) && episode.startsWith(u'0')) - { -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - episode.slice(1); -#else - episode = episode.sliced(1); -#endif - } + episode = episode.right(episode.size() - 1); - if (episode.contains(u'-')) + if (episode.indexOf(u'-') != -1) { // Range detected const QString partialPattern1 {u"\\bs0?(\\d{1,4})[ -_\\.]?e(0?\\d{1,4})(?:\\D|\\b)"_s}; const QString partialPattern2 {u"\\b(\\d{1,4})x(0?\\d{1,4})(?:\\D|\\b)"_s}; @@ -325,25 +323,24 @@ bool AutoDownloadRule::matchesEpisodeFilterExpression(const QString &articleTitl if (matched) { - const int seasonTheirs {matcher.capturedView(1).toInt()}; - const int episodeTheirs {matcher.capturedView(2).toInt()}; + const int seasonTheirs {matcher.captured(1).toInt()}; + const int episodeTheirs {matcher.captured(2).toInt()}; if (episode.endsWith(u'-')) { // Infinite range - const int episodeOurs {QStringView(episode).chopped(1).toInt()}; + const int episodeOurs {QStringView(episode).left(episode.size() - 1).toInt()}; if (((seasonTheirs == seasonOurs) && (episodeTheirs >= episodeOurs)) || (seasonTheirs > seasonOurs)) return true; } else { // Normal range - const QList range {episode.split(u'-')}; + const QStringList range {episode.split(u'-')}; Q_ASSERT(range.size() == 2); + if (range.first().toInt() > range.last().toInt()) + continue; // Ignore this subrule completely const int episodeOursFirst {range.first().toInt()}; const int episodeOursLast {range.last().toInt()}; - if (episodeOursFirst > episodeOursLast) - continue; // Ignore this subrule completely - if ((seasonTheirs == seasonOurs) && ((episodeOursFirst <= episodeTheirs) && (episodeOursLast >= episodeTheirs))) return true; } diff --git a/src/base/rss/rss_feed.cpp b/src/base/rss/rss_feed.cpp index 2df5c2417..111658e01 100644 --- a/src/base/rss/rss_feed.cpp +++ b/src/base/rss/rss_feed.cpp @@ -1,7 +1,7 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev * Copyright (C) 2024 Jonathan Ketchker + * Copyright (C) 2015-2022 Vladimir Golovnev * Copyright (C) 2010 Christophe Dumez * Copyright (C) 2010 Arnaud Demaiziere * @@ -56,22 +56,19 @@ const QString KEY_UID = u"uid"_s; const QString KEY_URL = u"url"_s; -const QString KEY_REFRESHINTERVAL = u"refreshInterval"_s; const QString KEY_TITLE = u"title"_s; const QString KEY_LASTBUILDDATE = u"lastBuildDate"_s; const QString KEY_ISLOADING = u"isLoading"_s; const QString KEY_HASERROR = u"hasError"_s; const QString KEY_ARTICLES = u"articles"_s; -using namespace std::chrono_literals; using namespace RSS; -Feed::Feed(Session *session, const QUuid &uid, const QString &url, const QString &path, const std::chrono::seconds refreshInterval) +Feed::Feed(const QUuid &uid, const QString &url, const QString &path, Session *session) : Item(path) - , m_session {session} - , m_uid {uid} - , m_url {url} - , m_refreshInterval {refreshInterval} + , m_session(session) + , m_uid(uid) + , m_url(url) { const auto uidHex = QString::fromLatin1(m_uid.toRfc4122().toHex()); m_dataFileName = Path(uidHex + u".json"); @@ -330,9 +327,9 @@ bool Feed::addArticle(const QVariantHash &articleData) // Insertion sort const int maxArticles = m_session->maxArticlesPerFeed(); - const auto lowerBound = std::lower_bound(m_articlesByDate.cbegin(), m_articlesByDate.cend() - , articleData.value(Article::KeyDate).toDateTime(), Article::articleDateRecentThan); - if ((lowerBound - m_articlesByDate.cbegin()) >= maxArticles) + const auto lowerBound = std::lower_bound(m_articlesByDate.begin(), m_articlesByDate.end() + , articleData.value(Article::KeyDate).toDateTime(), Article::articleDateRecentThan); + if ((lowerBound - m_articlesByDate.begin()) >= maxArticles) return false; // we reach max articles auto *article = new Article(this, articleData); @@ -465,20 +462,6 @@ Path Feed::iconPath() const return m_iconPath; } -std::chrono::seconds Feed::refreshInterval() const -{ - return m_refreshInterval; -} - -void Feed::setRefreshInterval(const std::chrono::seconds refreshInterval) -{ - if (refreshInterval == m_refreshInterval) - return; - - const std::chrono::seconds oldRefreshInterval = std::exchange(m_refreshInterval, refreshInterval); - emit refreshIntervalChanged(oldRefreshInterval); -} - void Feed::setURL(const QString &url) { const QString oldURL = m_url; @@ -491,8 +474,6 @@ QJsonValue Feed::toJsonValue(const bool withData) const QJsonObject jsonObj; jsonObj.insert(KEY_UID, uid().toString()); jsonObj.insert(KEY_URL, url()); - if (refreshInterval() > 0s) - jsonObj.insert(KEY_REFRESHINTERVAL, static_cast(refreshInterval().count())); if (withData) { diff --git a/src/base/rss/rss_feed.h b/src/base/rss/rss_feed.h index 639b8bda4..b85231b34 100644 --- a/src/base/rss/rss_feed.h +++ b/src/base/rss/rss_feed.h @@ -1,7 +1,7 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev * Copyright (C) 2024 Jonathan Ketchker + * Copyright (C) 2015-2022 Vladimir Golovnev * Copyright (C) 2010 Christophe Dumez * Copyright (C) 2010 Arnaud Demaiziere * @@ -31,8 +31,6 @@ #pragma once -#include - #include #include #include @@ -70,7 +68,7 @@ namespace RSS friend class Session; - Feed(Session *session, const QUuid &uid, const QString &url, const QString &path, std::chrono::seconds refreshInterval); + Feed(const QUuid &uid, const QString &url, const QString &path, Session *session); ~Feed() override; public: @@ -89,9 +87,6 @@ namespace RSS Article *articleByGUID(const QString &guid) const; Path iconPath() const; - std::chrono::seconds refreshInterval() const; - void setRefreshInterval(std::chrono::seconds refreshInterval); - QJsonValue toJsonValue(bool withData = false) const override; signals: @@ -99,7 +94,6 @@ namespace RSS void titleChanged(Feed *feed = nullptr); void stateChanged(Feed *feed = nullptr); void urlChanged(const QString &oldURL); - void refreshIntervalChanged(std::chrono::seconds oldRefreshInterval); private slots: void handleSessionProcessingEnabledChanged(bool enabled); @@ -129,7 +123,6 @@ namespace RSS Private::FeedSerializer *m_serializer = nullptr; const QUuid m_uid; QString m_url; - std::chrono::seconds m_refreshInterval; QString m_title; QString m_lastBuildDate; bool m_hasError = false; diff --git a/src/base/rss/rss_item.cpp b/src/base/rss/rss_item.cpp index 19f340fa0..6cbc0ba3f 100644 --- a/src/base/rss/rss_item.cpp +++ b/src/base/rss/rss_item.cpp @@ -97,7 +97,7 @@ QStringList Item::expandPath(const QString &path) int index = 0; while ((index = path.indexOf(Item::PathSeparator, index)) >= 0) { - result << path.first(index); + result << path.left(index); ++index; } result << path; @@ -108,11 +108,11 @@ QStringList Item::expandPath(const QString &path) QString Item::parentPath(const QString &path) { const int pos = path.lastIndexOf(Item::PathSeparator); - return (pos >= 0) ? path.first(pos) : QString(); + return (pos >= 0) ? path.left(pos) : QString(); } QString Item::relativeName(const QString &path) { - const int pos = path.lastIndexOf(Item::PathSeparator); - return (pos >= 0) ? path.sliced(pos + 1) : path; + int pos; + return ((pos = path.lastIndexOf(Item::PathSeparator)) >= 0 ? path.right(path.size() - (pos + 1)) : path); } diff --git a/src/base/rss/rss_parser.cpp b/src/base/rss/rss_parser.cpp index d34212b40..ec646ecc3 100644 --- a/src/base/rss/rss_parser.cpp +++ b/src/base/rss/rss_parser.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2012 Christophe Dumez * * This program is free software; you can redistribute it and/or diff --git a/src/base/rss/rss_parser.h b/src/base/rss/rss_parser.h index 1569049a1..17d4a2464 100644 --- a/src/base/rss/rss_parser.h +++ b/src/base/rss/rss_parser.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2012 Christophe Dumez * * This program is free software; you can redistribute it and/or diff --git a/src/base/rss/rss_session.cpp b/src/base/rss/rss_session.cpp index 53cf8b3f5..e91d3d70c 100644 --- a/src/base/rss/rss_session.cpp +++ b/src/base/rss/rss_session.cpp @@ -1,7 +1,7 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2017-2025 Vladimir Golovnev * Copyright (C) 2024 Jonathan Ketchker + * Copyright (C) 2017 Vladimir Golovnev * Copyright (C) 2010 Christophe Dumez * Copyright (C) 2010 Arnaud Demaiziere * @@ -56,7 +56,6 @@ const QString CONF_FOLDER_NAME = u"rss"_s; const QString DATA_FOLDER_NAME = u"rss/articles"_s; const QString FEEDS_FILE_NAME = u"feeds.json"_s; -using namespace std::chrono_literals; using namespace RSS; QPointer Session::m_instance = nullptr; @@ -95,10 +94,12 @@ Session::Session() m_workingThread->start(); load(); - m_refreshTimer.setSingleShot(true); connect(&m_refreshTimer, &QTimer::timeout, this, &Session::refresh); if (isProcessingEnabled()) + { + m_refreshTimer.start(std::chrono::minutes(refreshInterval())); refresh(); + } // Remove legacy/corrupted settings // (at least on Windows, QSettings is case-insensitive and it can get @@ -137,20 +138,19 @@ Session *Session::instance() return m_instance; } -nonstd::expected Session::addFolder(const QString &path) +nonstd::expected Session::addFolder(const QString &path) { const nonstd::expected result = prepareItemDest(path); if (!result) return result.get_unexpected(); auto *destFolder = result.value(); - auto *folder = new Folder(path); - addItem(folder, destFolder); + addItem(new Folder(path), destFolder); store(); - return folder; + return {}; } -nonstd::expected Session::addFeed(const QString &url, const QString &path, const std::chrono::seconds refreshInterval) +nonstd::expected Session::addFeed(const QString &url, const QString &path) { if (m_feedsByURL.contains(url)) return nonstd::make_unexpected(tr("RSS feed with given URL already exists: %1.").arg(url)); @@ -160,13 +160,13 @@ nonstd::expected Session::addFeed(const QString &url, const QSt return result.get_unexpected(); auto *destFolder = result.value(); - auto *feed = new Feed(this, generateUID(), url, path, refreshInterval); + auto *feed = new Feed(generateUID(), url, path, this); addItem(feed, destFolder); store(); if (isProcessingEnabled()) - refreshFeed(feed, std::chrono::system_clock::now()); + feed->refresh(); - return feed; + return {}; } nonstd::expected Session::setFeedURL(const QString &path, const QString &url) @@ -192,7 +192,7 @@ nonstd::expected Session::setFeedURL(Feed *feed, const QString &u feed->setURL(url); store(); if (isProcessingEnabled()) - refreshFeed(feed, std::chrono::system_clock::now()); + feed->refresh(); return {}; } @@ -214,20 +214,14 @@ nonstd::expected Session::moveItem(Item *item, const QString &des Q_ASSERT(item); Q_ASSERT(item != rootFolder()); - if (item->path() == destPath) - return {}; - - if (auto *folder = static_cast(item)) // if `item` is a `Folder` - { - if (destPath.startsWith(folder->path() + Item::PathSeparator)) - return nonstd::make_unexpected(tr("Can't move a folder into itself or its subfolders.")); - } - const nonstd::expected result = prepareItemDest(destPath); if (!result) return result.get_unexpected(); auto *destFolder = result.value(); + if (static_cast(destFolder) == item) + return nonstd::make_unexpected(tr("Couldn't move folder into itself.")); + auto *srcFolder = static_cast(m_itemsByPath.value(Item::parentPath(item->path()))); if (srcFolder != destFolder) { @@ -320,7 +314,7 @@ bool Session::loadFolder(const QJsonObject &jsonObj, Folder *folder) QString url = val.toString(); if (url.isEmpty()) url = key; - addFeedToFolder(generateUID(), url, key, folder, 0s); + addFeedToFolder(generateUID(), url, key, folder); updated = true; } else if (val.isObject()) @@ -360,9 +354,7 @@ bool Session::loadFolder(const QJsonObject &jsonObj, Folder *folder) updated = true; } - const auto refreshInterval = std::chrono::seconds(valObj[u"refreshInterval"].toInteger()); - - addFeedToFolder(uid, valObj[u"url"].toString(), key, folder, refreshInterval); + addFeedToFolder(uid, valObj[u"url"].toString(), key, folder); } else { @@ -393,14 +385,8 @@ void Session::loadLegacy() uint i = 0; for (QString legacyPath : legacyFeedPaths) { - if (legacyPath.startsWith(Item::PathSeparator)) - { -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - legacyPath.slice(1); -#else + if (Item::PathSeparator == legacyPath[0]) legacyPath.remove(0, 1); -#endif - } const QString parentFolderPath = Item::parentPath(legacyPath); const QString feedUrl = Item::relativeName(legacyPath); @@ -418,7 +404,7 @@ void Session::loadLegacy() void Session::store() { m_confFileStorage->store(Path(FEEDS_FILE_NAME) - , QJsonDocument(rootFolder()->toJsonValue().toObject()).toJson()); + , QJsonDocument(rootFolder()->toJsonValue().toObject()).toJson()); } nonstd::expected Session::prepareItemDest(const QString &path) @@ -444,9 +430,9 @@ Folder *Session::addSubfolder(const QString &name, Folder *parentFolder) return folder; } -Feed *Session::addFeedToFolder(const QUuid &uid, const QString &url, const QString &name, Folder *parentFolder, const std::chrono::seconds refreshInterval) +Feed *Session::addFeedToFolder(const QUuid &uid, const QString &url, const QString &name, Folder *parentFolder) { - auto *feed = new Feed(this, uid, url, Item::joinPath(parentFolder->path(), name), refreshInterval); + auto *feed = new Feed(uid, url, Item::joinPath(parentFolder->path(), name), this); addItem(feed, parentFolder); return feed; } @@ -468,25 +454,8 @@ void Session::addItem(Item *item, Folder *destFolder) emit feedURLChanged(feed, oldURL); }); - connect(feed, &Feed::refreshIntervalChanged, this, [this, feed](const std::chrono::seconds oldRefreshInterval) - { - store(); - - std::chrono::system_clock::time_point &nextRefresh = m_refreshTimepoints[feed]; - if (nextRefresh > std::chrono::system_clock::time_point()) - nextRefresh += feed->refreshInterval() - oldRefreshInterval; - - if (isProcessingEnabled()) - { - const std::chrono::seconds oldEffectiveRefreshInterval = (oldRefreshInterval > 0s) - ? oldRefreshInterval : std::chrono::minutes(refreshInterval()); - if (feed->refreshInterval() < oldEffectiveRefreshInterval) - refresh(); - } - }); m_feedsByUID[feed->uid()] = feed; m_feedsByURL[feed->url()] = feed; - m_refreshTimepoints.emplace(feed, std::chrono::system_clock::time_point()); } connect(item, &Item::pathChanged, this, &Session::itemPathChanged); @@ -507,9 +476,14 @@ void Session::setProcessingEnabled(const bool enabled) { m_storeProcessingEnabled = enabled; if (enabled) + { + m_refreshTimer.start(std::chrono::minutes(refreshInterval())); refresh(); + } else + { m_refreshTimer.stop(); + } emit processingStateChanged(enabled); } @@ -580,7 +554,6 @@ void Session::handleItemAboutToBeDestroyed(Item *item) { m_feedsByUID.remove(feed->uid()); m_feedsByURL.remove(feed->url()); - m_refreshTimepoints.remove(feed); } } @@ -619,28 +592,6 @@ void Session::setMaxArticlesPerFeed(const int n) void Session::refresh() { - const auto currentTimepoint = std::chrono::system_clock::now(); - std::chrono::seconds nextRefreshInterval = 0s; - for (auto it = m_refreshTimepoints.begin(); it != m_refreshTimepoints.end(); ++it) - { - Feed *feed = it.key(); - std::chrono::system_clock::time_point &timepoint = it.value(); - - if (timepoint <= currentTimepoint) - timepoint = refreshFeed(feed, currentTimepoint); - - const auto interval = std::chrono::duration_cast(timepoint - currentTimepoint); - if ((interval < nextRefreshInterval) || (nextRefreshInterval == 0s)) - nextRefreshInterval = interval; - } - - m_refreshTimer.start(nextRefreshInterval); -} - -std::chrono::system_clock::time_point Session::refreshFeed(Feed *feed, const std::chrono::system_clock::time_point ¤tTimepoint) -{ - feed->refresh(); - const std::chrono::seconds feedRefreshInterval = feed->refreshInterval(); - const std::chrono::seconds effectiveRefreshInterval = (feedRefreshInterval > 0s) ? feedRefreshInterval : std::chrono::minutes(refreshInterval()); - return currentTimepoint + effectiveRefreshInterval; + // NOTE: Should we allow manually refreshing for disabled session? + rootFolder()->refresh(); } diff --git a/src/base/rss/rss_session.h b/src/base/rss/rss_session.h index b8d2e28c4..97241c56f 100644 --- a/src/base/rss/rss_session.h +++ b/src/base/rss/rss_session.h @@ -1,7 +1,7 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2017-2025 Vladimir Golovnev * Copyright (C) 2024 Jonathan Ketchker + * Copyright (C) 2017 Vladimir Golovnev * Copyright (C) 2010 Christophe Dumez * Copyright (C) 2010 Arnaud Demaiziere * @@ -35,20 +35,26 @@ * RSS Session configuration file format (JSON): * * =============== BEGIN =============== - * { - * "folder1": { - * "subfolder1": { - * "Feed name 1 (Alias)": { + * + { + * "folder1": + { + * "subfolder1": + { + * "Feed name 1 (Alias)": + { * "uid": "feed unique identifier", * "url": "http://some-feed-url1" * } - * "Feed name 2 (Alias)": { + * "Feed name 2 (Alias)": + { * "uid": "feed unique identifier", * "url": "http://some-feed-url2" * } * }, * "subfolder2": {}, - * "Feed name 3 (Alias)": { + * "Feed name 3 (Alias)": + { * "uid": "feed unique identifier", * "url": "http://some-feed-url3" * } @@ -114,8 +120,8 @@ namespace RSS std::chrono::seconds fetchDelay() const; void setFetchDelay(std::chrono::seconds delay); - nonstd::expected addFolder(const QString &path); - nonstd::expected addFeed(const QString &url, const QString &path, std::chrono::seconds refreshInterval = {}); + nonstd::expected addFolder(const QString &path); + nonstd::expected addFeed(const QString &url, const QString &path); nonstd::expected setFeedURL(const QString &path, const QString &url); nonstd::expected setFeedURL(Feed *feed, const QString &url); nonstd::expected moveItem(const QString &itemPath, const QString &destPath); @@ -129,6 +135,9 @@ namespace RSS Folder *rootFolder() const; + public slots: + void refresh(); + signals: void processingStateChanged(bool enabled); void maxArticlesPerFeedChanged(int n); @@ -151,10 +160,8 @@ namespace RSS void store(); nonstd::expected prepareItemDest(const QString &path); Folder *addSubfolder(const QString &name, Folder *parentFolder); - Feed *addFeedToFolder(const QUuid &uid, const QString &url, const QString &name, Folder *parentFolder, std::chrono::seconds refreshInterval); + Feed *addFeedToFolder(const QUuid &uid, const QString &url, const QString &name, Folder *parentFolder); void addItem(Item *item, Folder *destFolder); - void refresh(); - std::chrono::system_clock::time_point refreshFeed(Feed *feed, const std::chrono::system_clock::time_point ¤tTimepoint); static QPointer m_instance; @@ -169,6 +176,5 @@ namespace RSS QHash m_itemsByPath; QHash m_feedsByUID; QHash m_feedsByURL; - QHash m_refreshTimepoints; }; } diff --git a/src/base/search/searchdownloadhandler.cpp b/src/base/search/searchdownloadhandler.cpp index 42869579f..436637183 100644 --- a/src/base/search/searchdownloadhandler.cpp +++ b/src/base/search/searchdownloadhandler.cpp @@ -41,10 +41,7 @@ SearchDownloadHandler::SearchDownloadHandler(const QString &pluginName, const QS , m_manager {manager} , m_downloadProcess {new QProcess(this)} { - m_downloadProcess->setProcessEnvironment(m_manager->proxyEnvironment()); -#ifdef Q_OS_UNIX - m_downloadProcess->setUnixProcessParameters(QProcess::UnixProcessFlag::CloseFileDescriptors); -#endif + m_downloadProcess->setEnvironment(QProcess::systemEnvironment()); connect(m_downloadProcess, qOverload(&QProcess::finished) , this, &SearchDownloadHandler::downloadProcessFinished); const QStringList params @@ -55,7 +52,7 @@ SearchDownloadHandler::SearchDownloadHandler(const QString &pluginName, const QS url }; // Launch search - m_downloadProcess->start(Utils::ForeignApps::pythonInfo().executablePath.data(), params, QIODevice::ReadOnly); + m_downloadProcess->start(Utils::ForeignApps::pythonInfo().executableName, params, QIODevice::ReadOnly); } void SearchDownloadHandler::downloadProcessFinished(int exitcode) diff --git a/src/base/search/searchhandler.cpp b/src/base/search/searchhandler.cpp index d1d9fb4b7..fa43ef880 100644 --- a/src/base/search/searchhandler.cpp +++ b/src/base/search/searchhandler.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -38,7 +38,6 @@ #include "base/global.h" #include "base/path.h" -#include "base/utils/bytearray.h" #include "base/utils/foreignapps.h" #include "base/utils/fs.h" #include "searchpluginmanager.h" @@ -71,11 +70,7 @@ SearchHandler::SearchHandler(const QString &pattern, const QString &category, co , m_searchTimeout {new QTimer(this)} { // Load environment variables (proxy) - m_searchProcess->setProcessEnvironment(m_manager->proxyEnvironment()); - m_searchProcess->setProgram(Utils::ForeignApps::pythonInfo().executablePath.data()); -#ifdef Q_OS_UNIX - m_searchProcess->setUnixProcessParameters(QProcess::UnixProcessFlag::CloseFileDescriptors); -#endif + m_searchProcess->setEnvironment(QProcess::systemEnvironment()); const QStringList params { @@ -84,6 +79,9 @@ SearchHandler::SearchHandler(const QString &pattern, const QString &category, co m_usedPlugins.join(u','), m_category }; + + // Launch search + m_searchProcess->setProgram(Utils::ForeignApps::pythonInfo().executableName); m_searchProcess->setArguments(params + m_pattern.split(u' ')); connect(m_searchProcess, &QProcess::errorOccurred, this, &SearchHandler::processFailed); @@ -95,7 +93,6 @@ SearchHandler::SearchHandler(const QString &pattern, const QString &category, co connect(m_searchTimeout, &QTimer::timeout, this, &SearchHandler::cancelSearch); m_searchTimeout->start(3min); - // Launch search // deferred start allows clients to handle starting-related signals QMetaObject::invokeMethod(this, [this]() { m_searchProcess->start(QIODevice::ReadOnly); } , Qt::QueuedConnection); @@ -140,23 +137,28 @@ void SearchHandler::processFinished(const int exitcode) // line to SearchResult calling parseSearchResult(). void SearchHandler::readSearchOutput() { - const QByteArray output = m_searchResultLineTruncated + m_searchProcess->readAllStandardOutput(); - QList lines = Utils::ByteArray::splitToViews(output, "\n", Qt::KeepEmptyParts); + QByteArray output = m_searchProcess->readAllStandardOutput(); + output.replace('\r', ""); - m_searchResultLineTruncated = lines.takeLast().trimmed().toByteArray(); + QList lines = output.split('\n'); + if (!m_searchResultLineTruncated.isEmpty()) + lines.prepend(m_searchResultLineTruncated + lines.takeFirst()); + m_searchResultLineTruncated = lines.takeLast().trimmed(); QList searchResultList; searchResultList.reserve(lines.size()); - for (const QByteArrayView &line : asConst(lines)) + for (const QByteArray &line : asConst(lines)) { - if (SearchResult searchResult; parseSearchResult(line, searchResult)) - searchResultList.append(std::move(searchResult)); + SearchResult searchResult; + if (parseSearchResult(QString::fromUtf8(line), searchResult)) + searchResultList << searchResult; } if (!searchResultList.isEmpty()) { - m_results.append(searchResultList); + for (const SearchResult &result : searchResultList) + m_results.append(result); emit newSearchResults(searchResultList); } } @@ -170,17 +172,17 @@ void SearchHandler::processFailed() // Parse one line of search results list // Line is in the following form: // file url | file name | file size | nb seeds | nb leechers | Search engine url -bool SearchHandler::parseSearchResult(const QByteArrayView line, SearchResult &searchResult) +bool SearchHandler::parseSearchResult(const QStringView line, SearchResult &searchResult) { - const QList parts = Utils::ByteArray::splitToViews(line, "|"); + const QList parts = line.split(u'|'); const int nbFields = parts.size(); if (nbFields <= PL_ENGINE_URL) return false; // Anything after ENGINE_URL is optional searchResult = SearchResult(); - searchResult.fileUrl = QString::fromUtf8(parts.at(PL_DL_LINK).trimmed()); // download URL - searchResult.fileName = QString::fromUtf8(parts.at(PL_NAME).trimmed()); // Name + searchResult.fileUrl = parts.at(PL_DL_LINK).trimmed().toString(); // download URL + searchResult.fileName = parts.at(PL_NAME).trimmed().toString(); // Name searchResult.fileSize = parts.at(PL_SIZE).trimmed().toLongLong(); // Size bool ok = false; @@ -193,11 +195,11 @@ bool SearchHandler::parseSearchResult(const QByteArrayView line, SearchResult &s if (!ok || (searchResult.nbLeechers < 0)) searchResult.nbLeechers = -1; - searchResult.siteUrl = QString::fromUtf8(parts.at(PL_ENGINE_URL).trimmed()); // Search engine site URL + searchResult.siteUrl = parts.at(PL_ENGINE_URL).trimmed().toString(); // Search engine site URL searchResult.engineName = m_manager->pluginNameBySiteURL(searchResult.siteUrl); // Search engine name if (nbFields > PL_DESC_LINK) - searchResult.descrLink = QString::fromUtf8(parts.at(PL_DESC_LINK).trimmed()); // Description Link + searchResult.descrLink = parts.at(PL_DESC_LINK).trimmed().toString(); // Description Link if (nbFields > PL_PUB_DATE) { diff --git a/src/base/search/searchhandler.h b/src/base/search/searchhandler.h index fe6fe9d76..40cf58754 100644 --- a/src/base/search/searchhandler.h +++ b/src/base/search/searchhandler.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2015-2025 Vladimir Golovnev + * Copyright (C) 2015-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -81,7 +81,7 @@ private: void readSearchOutput(); void processFailed(); void processFinished(int exitcode); - bool parseSearchResult(QByteArrayView line, SearchResult &searchResult); + bool parseSearchResult(QStringView line, SearchResult &searchResult); const QString m_pattern; const QString m_category; diff --git a/src/base/search/searchpluginmanager.cpp b/src/base/search/searchpluginmanager.cpp index cb597a9dc..ab53c5d5e 100644 --- a/src/base/search/searchpluginmanager.cpp +++ b/src/base/search/searchpluginmanager.cpp @@ -88,7 +88,6 @@ QPointer SearchPluginManager::m_instance = nullptr; SearchPluginManager::SearchPluginManager() : m_updateUrl(u"https://searchplugins.qbittorrent.org/nova3/engines/"_s) - , m_proxyEnv {QProcessEnvironment::systemEnvironment()} { Q_ASSERT(!m_instance); // only one instance is allowed m_instance = this; @@ -363,11 +362,6 @@ SearchHandler *SearchPluginManager::startSearch(const QString &pattern, const QS return new SearchHandler(pattern, category, usedPlugins, this); } -QProcessEnvironment SearchPluginManager::proxyEnvironment() const -{ - return m_proxyEnv; -} - QString SearchPluginManager::categoryFullName(const QString &categoryName) { const QHash categoryTable @@ -409,70 +403,50 @@ Path SearchPluginManager::engineLocation() void SearchPluginManager::applyProxySettings() { - // 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; - // for `helpers.setupSOCKSProxy()`: https://everything.curl.dev/usingcurl/proxies/socks.html - const QString SOCKS_PROXY = u"qbt_socks_proxy"_s; + const auto *proxyManager = Net::ProxyConfigurationManager::instance(); + const Net::ProxyConfiguration proxyConfig = proxyManager->proxyConfiguration(); - if (!Preferences::instance()->useProxyForGeneralPurposes()) + // Define environment variables for urllib in search engine plugins + QString proxyStrHTTP, proxyStrSOCK; + if ((proxyConfig.type != Net::ProxyType::None) && Preferences::instance()->useProxyForGeneralPurposes()) { - m_proxyEnv.remove(HTTP_PROXY); - m_proxyEnv.remove(HTTPS_PROXY); - m_proxyEnv.remove(SOCKS_PROXY); - return; + switch (proxyConfig.type) + { + case Net::ProxyType::HTTP: + if (proxyConfig.authEnabled) + { + proxyStrHTTP = u"http://%1:%2@%3:%4"_s.arg(proxyConfig.username + , proxyConfig.password, proxyConfig.ip, QString::number(proxyConfig.port)); + } + else + { + proxyStrHTTP = u"http://%1:%2"_s.arg(proxyConfig.ip, QString::number(proxyConfig.port)); + } + break; + + case Net::ProxyType::SOCKS5: + if (proxyConfig.authEnabled) + { + proxyStrSOCK = u"%1:%2@%3:%4"_s.arg(proxyConfig.username + , proxyConfig.password, proxyConfig.ip, QString::number(proxyConfig.port)); + } + else + { + proxyStrSOCK = u"%1:%2"_s.arg(proxyConfig.ip, QString::number(proxyConfig.port)); + } + break; + + default: + qDebug("Disabling HTTP communications proxy"); + } + + qDebug("HTTP communications proxy string: %s" + , qUtf8Printable((proxyConfig.type == Net::ProxyType::SOCKS5) ? proxyStrSOCK : proxyStrHTTP)); } - const Net::ProxyConfiguration proxyConfig = Net::ProxyConfigurationManager::instance()->proxyConfiguration(); - switch (proxyConfig.type) - { - case Net::ProxyType::None: - m_proxyEnv.remove(HTTP_PROXY); - m_proxyEnv.remove(HTTPS_PROXY); - m_proxyEnv.remove(SOCKS_PROXY); - break; - - case Net::ProxyType::HTTP: - { - 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); - } - break; - - case Net::ProxyType::SOCKS5: - { - 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); - } - break; - } + qputenv("http_proxy", proxyStrHTTP.toLocal8Bit()); + qputenv("https_proxy", proxyStrHTTP.toLocal8Bit()); + qputenv("sock_proxy", proxyStrSOCK.toLocal8Bit()); } void SearchPluginManager::versionInfoDownloadFinished(const Net::DownloadResult &result) @@ -495,9 +469,9 @@ void SearchPluginManager::pluginDownloadFinished(const Net::DownloadResult &resu } else { - const QString &url = result.url; - const QString pluginName = url.sliced(url.lastIndexOf(u'/') + 1) - .replace(u".py"_s, u""_s, Qt::CaseInsensitive); + const QString url = result.url; + QString pluginName = url.mid(url.lastIndexOf(u'/') + 1); + pluginName.replace(u".py"_s, u""_s, Qt::CaseInsensitive); if (pluginInfo(pluginName)) emit pluginUpdateFailed(pluginName, tr("Failed to download the plugin file. %1").arg(result.errorString)); @@ -523,32 +497,29 @@ void SearchPluginManager::updateNova() packageFile2.close(); // Copy search plugin files (if necessary) - const auto updateFile = [&enginePath](const Path &filename) + const auto updateFile = [&enginePath](const Path &filename, const bool compareVersion) { const Path filePathBundled = Path(u":/searchengine/nova3"_s) / filename; const Path filePathDisk = enginePath / filename; - if (getPluginVersion(filePathBundled) <= getPluginVersion(filePathDisk)) + if (compareVersion && (getPluginVersion(filePathBundled) <= getPluginVersion(filePathDisk))) return; Utils::Fs::removeFile(filePathDisk); Utils::Fs::copyFile(filePathBundled, filePathDisk); }; - 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)); + 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); } void SearchPluginManager::update() { QProcess nova; - nova.setProcessEnvironment(proxyEnvironment()); -#ifdef Q_OS_UNIX - nova.setUnixProcessParameters(QProcess::UnixProcessFlag::CloseFileDescriptors); -#endif + nova.setProcessEnvironment(QProcessEnvironment::systemEnvironment()); const QStringList params { @@ -556,7 +527,7 @@ void SearchPluginManager::update() (engineLocation() / Path(u"/nova2.py"_s)).toString(), u"--capabilities"_s }; - nova.start(Utils::ForeignApps::pythonInfo().executablePath.data(), params, QIODevice::ReadOnly); + nova.start(Utils::ForeignApps::pythonInfo().executableName, params, QIODevice::ReadOnly); nova.waitForFinished(); const auto capabilities = QString::fromUtf8(nova.readAllStandardOutput()); @@ -621,14 +592,14 @@ void SearchPluginManager::parseVersionInfo(const QByteArray &info) QHash updateInfo; int numCorrectData = 0; - const QList lines = Utils::ByteArray::splitToViews(info, "\n"); + const QList lines = Utils::ByteArray::splitToViews(info, "\n", Qt::SkipEmptyParts); for (QByteArrayView line : lines) { line = line.trimmed(); if (line.isEmpty()) continue; if (line.startsWith('#')) continue; - const QList list = Utils::ByteArray::splitToViews(line, ":"); + const QList list = Utils::ByteArray::splitToViews(line, ":", Qt::SkipEmptyParts); if (list.size() != 2) continue; const auto pluginName = QString::fromUtf8(list.first().trimmed()); @@ -680,10 +651,9 @@ 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 QString versionStr = line.mid(9); const auto version = PluginVersion::fromString(versionStr); if (version.isValid()) return version; diff --git a/src/base/search/searchpluginmanager.h b/src/base/search/searchpluginmanager.h index 60c4f105c..72cf0f146 100644 --- a/src/base/search/searchpluginmanager.h +++ b/src/base/search/searchpluginmanager.h @@ -32,7 +32,6 @@ #include #include #include -#include #include "base/path.h" #include "base/utils/version.h" @@ -88,8 +87,6 @@ public: SearchHandler *startSearch(const QString &pattern, const QString &category, const QStringList &usedPlugins); SearchDownloadHandler *downloadTorrent(const QString &pluginName, const QString &url); - QProcessEnvironment proxyEnvironment() const; - static PluginVersion getPluginVersion(const Path &filePath); static QString categoryFullName(const QString &categoryName); QString pluginFullName(const QString &pluginName) const; @@ -125,5 +122,4 @@ private: const QString m_updateUrl; QHash m_plugins; - QProcessEnvironment m_proxyEnv; }; diff --git a/src/base/settingsstorage.cpp b/src/base/settingsstorage.cpp index c6006beb7..9f19f0891 100644 --- a/src/base/settingsstorage.cpp +++ b/src/base/settingsstorage.cpp @@ -170,7 +170,7 @@ bool SettingsStorage::writeNativeSettings() const // between deleting the file and recreating it. This is a safety measure. // Write everything to qBittorrent_new.ini/qBittorrent_new.conf and if it succeeds // replace qBittorrent.ini/qBittorrent.conf with it. - for (auto i = m_data.cbegin(); i != m_data.cend(); ++i) + for (auto i = m_data.begin(); i != m_data.end(); ++i) nativeSettings->setValue(i.key(), i.value()); nativeSettings->sync(); // Important to get error status diff --git a/src/base/utils/bytearray.cpp b/src/base/utils/bytearray.cpp index d372f507f..cae871f38 100644 --- a/src/base/utils/bytearray.cpp +++ b/src/base/utils/bytearray.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2023-2025 Vladimir Golovnev + * Copyright (C) 2023 Vladimir Golovnev * Copyright (C) 2018 Mike Tzou (Chocobo1) * * This program is free software; you can redistribute it and/or @@ -30,53 +30,33 @@ #include "bytearray.h" #include -#include #include #include QList Utils::ByteArray::splitToViews(const QByteArrayView in, const QByteArrayView sep, const Qt::SplitBehavior behavior) { - if (behavior == Qt::SkipEmptyParts) - { - if (in.isEmpty()) - return {}; + if (sep.isEmpty()) + return {in}; - if (sep.isEmpty()) - return {in}; - } - else - { - if (in.isEmpty()) - { - if (sep.isEmpty()) - return {{}, {}}; - - return {{}}; - } - } - - const QByteArrayMatcher matcher {sep}; QList ret; - ret.reserve((behavior == Qt::SkipEmptyParts) - ? (1 + (in.size() / (sep.size() + 1))) - : (1 + (in.size() / sep.size()))); - qsizetype head = 0; + ret.reserve((behavior == Qt::KeepEmptyParts) + ? (1 + (in.size() / sep.size())) + : (1 + (in.size() / (sep.size() + 1)))); + int head = 0; while (head < in.size()) { - qsizetype end = matcher.indexIn(in, head); + int end = in.indexOf(sep, head); if (end < 0) end = in.size(); - const QByteArrayView part = in.sliced(head, (end - head)); + // omit empty parts + const QByteArrayView part = in.mid(head, (end - head)); if (!part.isEmpty() || (behavior == Qt::KeepEmptyParts)) ret += part; head = end + sep.size(); } - if ((behavior == Qt::KeepEmptyParts) && (head == in.size())) - ret.emplaceBack(); - return ret; } diff --git a/src/base/utils/bytearray.h b/src/base/utils/bytearray.h index 03f0f06d0..d0930dede 100644 --- a/src/base/utils/bytearray.h +++ b/src/base/utils/bytearray.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2023-2025 Vladimir Golovnev + * Copyright (C) 2023 Vladimir Golovnev * Copyright (C) 2018 Mike Tzou (Chocobo1) * * This program is free software; you can redistribute it and/or @@ -37,8 +37,8 @@ class QByteArrayView; namespace Utils::ByteArray { - // Inspired by QStringView(in).split(sep, behavior) - QList splitToViews(QByteArrayView in, QByteArrayView sep, Qt::SplitBehavior behavior = Qt::SkipEmptyParts); + // Mimic QStringView(in).split(sep, behavior) + QList splitToViews(QByteArrayView in, QByteArrayView sep, Qt::SplitBehavior behavior = Qt::KeepEmptyParts); QByteArray asQByteArray(QByteArrayView view); QByteArray toBase32(const QByteArray &in); diff --git a/src/base/utils/compare.cpp b/src/base/utils/compare.cpp index 15d438b2d..aca03e1a6 100644 --- a/src/base/utils/compare.cpp +++ b/src/base/utils/compare.cpp @@ -64,7 +64,7 @@ int Utils::Compare::naturalCompare(const QString &left, const QString &right, co const int start = pos; while ((pos < str.size()) && str[pos].isDigit()) ++pos; - return str.sliced(start, (pos - start)); + return str.mid(start, (pos - start)); }; const QStringView numViewL = numberView(left, posL); diff --git a/src/base/utils/foreignapps.cpp b/src/base/utils/foreignapps.cpp index 91a254d91..3c80b12f0 100644 --- a/src/base/utils/foreignapps.cpp +++ b/src/base/utils/foreignapps.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2018-2025 Mike Tzou (Chocobo1) + * Copyright (C) 2018 Mike Tzou * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -30,7 +30,6 @@ #include "foreignapps.h" #if defined(Q_OS_WIN) -#include #include #endif @@ -41,30 +40,24 @@ #if defined(Q_OS_WIN) #include -#include #endif +#include "base/global.h" #include "base/logger.h" +#include "base/path.h" #include "base/preferences.h" #include "base/utils/bytearray.h" -#if defined(Q_OS_WIN) -#include "base/utils/compare.h" -#endif - using namespace Utils::ForeignApps; namespace { - bool testPythonInstallation(const Path &exePath, PythonInfo &info) + bool testPythonInstallation(const QString &exeName, PythonInfo &info) { info = {}; QProcess proc; -#ifdef Q_OS_UNIX - proc.setUnixProcessParameters(QProcess::UnixProcessFlag::CloseFileDescriptors); -#endif - proc.start(exePath.data(), {u"--version"_s}, QIODevice::ReadOnly); + proc.start(exeName, {u"--version"_s}, QIODevice::ReadOnly); if (proc.waitForFinished() && (proc.exitCode() == QProcess::NormalExit)) { QByteArray procOutput = proc.readAllStandardOutput(); @@ -75,7 +68,7 @@ namespace // Software 'Anaconda' installs its own python interpreter // and `python --version` returns a string like this: // "Python 3.4.3 :: Anaconda 2.3.0 (64-bit)" - const QList outputSplit = Utils::ByteArray::splitToViews(procOutput, " "); + const QList outputSplit = Utils::ByteArray::splitToViews(procOutput, " ", Qt::SkipEmptyParts); if (outputSplit.size() <= 1) return false; @@ -87,9 +80,9 @@ namespace if (!version.isValid()) return false; - info = {.executablePath = exePath, .version = version}; + info = {exeName, version}; LogMsg(QCoreApplication::translate("Utils::ForeignApps", "Found Python executable. Name: \"%1\". Version: \"%2\"") - .arg(info.executablePath.toString(), info.version.toString()), Log::INFO); + .arg(info.executableName, info.version.toString()), Log::INFO); return true; } @@ -104,160 +97,178 @@ namespace SYSTEM_64BIT }; - PathList getRegSubkeys(const HKEY handle) + QStringList getRegSubkeys(const HKEY handle) { - PathList keys; + QStringList keys; DWORD cSubKeys = 0; DWORD cMaxSubKeyLen = 0; - const LSTATUS result = ::RegQueryInfoKeyW(handle, NULL, NULL, NULL, &cSubKeys, &cMaxSubKeyLen, NULL, NULL, NULL, NULL, NULL, NULL); + LONG res = ::RegQueryInfoKeyW(handle, NULL, NULL, NULL, &cSubKeys, &cMaxSubKeyLen, NULL, NULL, NULL, NULL, NULL, NULL); - if (result == ERROR_SUCCESS) + if (res == ERROR_SUCCESS) { ++cMaxSubKeyLen; // For null character - LPWSTR lpName = new WCHAR[cMaxSubKeyLen] {0}; - [[maybe_unused]] const auto lpNameGuard = qScopeGuard([&lpName] { delete[] lpName; }); - - keys.reserve(cSubKeys); + LPWSTR lpName = new WCHAR[cMaxSubKeyLen]; + DWORD cName; for (DWORD i = 0; i < cSubKeys; ++i) { - DWORD cName = cMaxSubKeyLen; - const LSTATUS res = ::RegEnumKeyExW(handle, i, lpName, &cName, NULL, NULL, NULL, NULL); + cName = cMaxSubKeyLen; + res = ::RegEnumKeyExW(handle, i, lpName, &cName, NULL, NULL, NULL, NULL); if (res == ERROR_SUCCESS) - keys.append(Path(QString::fromWCharArray(lpName))); + keys.push_back(QString::fromWCharArray(lpName)); } + + delete[] lpName; } return keys; } - Path getRegValue(const HKEY handle, const QString &name = {}) + QString getRegValue(const HKEY handle, const QString &name = {}) { const std::wstring nameWStr = name.toStdWString(); DWORD type = 0; DWORD cbData = 0; + // Discover the size of the value ::RegQueryValueExW(handle, nameWStr.c_str(), NULL, &type, NULL, &cbData); + DWORD cBuffer = (cbData / sizeof(WCHAR)) + 1; + LPWSTR lpData = new WCHAR[cBuffer]; + LONG res = ::RegQueryValueExW(handle, nameWStr.c_str(), NULL, &type, reinterpret_cast(lpData), &cbData); - const DWORD cBuffer = (cbData / sizeof(WCHAR)) + 1; - LPWSTR lpData = new WCHAR[cBuffer] {0}; - [[maybe_unused]] const auto lpDataGuard = qScopeGuard([&lpData] { delete[] lpData; }); - - const LSTATUS res = ::RegQueryValueExW(handle, nameWStr.c_str(), NULL, &type, reinterpret_cast(lpData), &cbData); + QString result; if (res == ERROR_SUCCESS) - return Path(QString::fromWCharArray(lpData)); + { + lpData[cBuffer - 1] = 0; + result = QString::fromWCharArray(lpData); + } + delete[] lpData; - return {}; + return result; } - PathList pythonSearchReg(const REG_SEARCH_TYPE type) + QString pythonSearchReg(const REG_SEARCH_TYPE type) { - const HKEY hkRoot = (type == USER) ? HKEY_CURRENT_USER : HKEY_LOCAL_MACHINE; - const REGSAM samDesired = KEY_READ - | ((type == SYSTEM_64BIT) ? KEY_WOW64_64KEY : KEY_WOW64_32KEY); - PathList ret; + HKEY hkRoot; + if (type == USER) + hkRoot = HKEY_CURRENT_USER; + else + hkRoot = HKEY_LOCAL_MACHINE; - HKEY hkPythonCore {0}; - if (::RegOpenKeyExW(hkRoot, L"SOFTWARE\\Python\\PythonCore", 0, samDesired, &hkPythonCore) == ERROR_SUCCESS) + REGSAM samDesired = KEY_READ; + if (type == SYSTEM_32BIT) + samDesired |= KEY_WOW64_32KEY; + else if (type == SYSTEM_64BIT) + samDesired |= KEY_WOW64_64KEY; + + QString path; + LONG res = 0; + HKEY hkPythonCore; + res = ::RegOpenKeyExW(hkRoot, L"SOFTWARE\\Python\\PythonCore", 0, samDesired, &hkPythonCore); + + if (res == ERROR_SUCCESS) { - [[maybe_unused]] const auto hkPythonCoreGuard = qScopeGuard([&hkPythonCore] { ::RegCloseKey(hkPythonCore); }); + QStringList versions = getRegSubkeys(hkPythonCore); + versions.sort(); - // start with the largest version - PathList versions = getRegSubkeys(hkPythonCore); - // ordinary sort won't suffice, it needs to sort ["3.9", "3.10"] correctly - const Utils::Compare::NaturalCompare comparator; - std::sort(versions.begin(), versions.end(), [&comparator](const Path &left, const Path &right) + bool found = false; + while (!found && !versions.empty()) { - return comparator(left.data(), right.data()); - }); + const std::wstring version = QString(versions.takeLast() + u"\\InstallPath").toStdWString(); - ret.reserve(versions.size() * 2); + HKEY hkInstallPath; + res = ::RegOpenKeyExW(hkPythonCore, version.c_str(), 0, samDesired, &hkInstallPath); - while (!versions.empty()) - { - const std::wstring version = (versions.takeLast() / Path(u"InstallPath"_s)).toString().toStdWString(); - - HKEY hkInstallPath {0}; - if (::RegOpenKeyExW(hkPythonCore, version.c_str(), 0, samDesired, &hkInstallPath) == ERROR_SUCCESS) + if (res == ERROR_SUCCESS) { - [[maybe_unused]] const auto hkInstallPathGuard = qScopeGuard([&hkInstallPath] { ::RegCloseKey(hkInstallPath); }); + qDebug("Detected possible Python v%ls location", version.c_str()); + path = getRegValue(hkInstallPath); + ::RegCloseKey(hkInstallPath); - const Path basePath = getRegValue(hkInstallPath); - if (basePath.isEmpty()) - continue; + if (!path.isEmpty()) + { + const QDir baseDir {path}; - if (const Path path = (basePath / Path(u"python3.exe"_s)); path.exists()) - ret.append(path); - if (const Path path = (basePath / Path(u"python.exe"_s)); path.exists()) - ret.append(path); + if (baseDir.exists(u"python3.exe"_s)) + { + found = true; + path = baseDir.filePath(u"python3.exe"_s); + } + else if (baseDir.exists(u"python.exe"_s)) + { + found = true; + path = baseDir.filePath(u"python.exe"_s); + } + } } } + + if (!found) + path = QString(); + + ::RegCloseKey(hkPythonCore); } - return ret; + return path; } - PathList searchPythonPaths() + QString findPythonPath() { - // From registry - PathList ret = pythonSearchReg(USER) - + pythonSearchReg(SYSTEM_64BIT) - + pythonSearchReg(SYSTEM_32BIT); + QString path = pythonSearchReg(USER); + if (!path.isEmpty()) + return path; + + path = pythonSearchReg(SYSTEM_32BIT); + if (!path.isEmpty()) + return path; + + path = pythonSearchReg(SYSTEM_64BIT); + if (!path.isEmpty()) + return path; // Fallback: Detect python from default locations const QFileInfoList dirs = QDir(u"C:/"_s).entryInfoList({u"Python*"_s}, QDir::Dirs, (QDir::Name | QDir::Reversed)); for (const QFileInfo &info : dirs) { - const Path absPath {info.absolutePath()}; + const QString py3Path {info.absolutePath() + u"/python3.exe"}; + if (QFile::exists(py3Path)) + return py3Path; - if (const Path path = (absPath / Path(u"python3.exe"_s)); path.exists()) - ret.append(path); - if (const Path path = (absPath / Path(u"python.exe"_s)); path.exists()) - ret.append(path); + const QString pyPath {info.absolutePath() + u"/python.exe"}; + if (QFile::exists(pyPath)) + return pyPath; } - return ret; + return {}; } #endif // Q_OS_WIN } bool Utils::ForeignApps::PythonInfo::isValid() const { - return (executablePath.isValid() && version.isValid()); + return (!executableName.isEmpty() && version.isValid()); } bool Utils::ForeignApps::PythonInfo::isSupportedVersion() const { - return (version >= MINIMUM_SUPPORTED_VERSION); + return (version >= Version {3, 9, 0}); } PythonInfo Utils::ForeignApps::pythonInfo() { static PythonInfo pyInfo; - const Path preferredPythonPath = Preferences::instance()->getPythonExecutablePath(); - if (pyInfo.isValid() && (preferredPythonPath == pyInfo.executablePath)) + const QString preferredPythonPath = Preferences::instance()->getPythonExecutablePath().toString(); + if (pyInfo.isValid() && (preferredPythonPath == pyInfo.executableName)) return pyInfo; - const QString invalidVersionMessage = QCoreApplication::translate("Utils::ForeignApps" - , "Python failed to meet minimum version requirement. Path: \"%1\". Found version: \"%2\". Minimum supported version: \"%3\"."); - if (!preferredPythonPath.isEmpty()) { if (testPythonInstallation(preferredPythonPath, pyInfo)) - { - if (pyInfo.isSupportedVersion()) - return pyInfo; - - LogMsg(invalidVersionMessage.arg(pyInfo.executablePath.toString() - , pyInfo.version.toString(), PythonInfo::MINIMUM_SUPPORTED_VERSION.toString()), Log::WARNING); - } - else - { - LogMsg(QCoreApplication::translate("Utils::ForeignApps", "Failed to find Python executable. Path: \"%1\".") - .arg(preferredPythonPath.toString()), Log::WARNING); - } + return pyInfo; + LogMsg(QCoreApplication::translate("Utils::ForeignApps", "Failed to find Python executable. Path: \"%1\".") + .arg(preferredPythonPath), Log::WARNING); } else { @@ -265,40 +276,24 @@ PythonInfo Utils::ForeignApps::pythonInfo() if (!pyInfo.isValid()) { - // search in `PATH` environment variable - const QString exeNames[] = {u"python3"_s, u"python"_s}; - for (const QString &exeName : exeNames) - { - if (testPythonInstallation(Path(exeName), pyInfo)) - { - if (pyInfo.isSupportedVersion()) - return pyInfo; + if (testPythonInstallation(u"python3"_s, pyInfo)) + return pyInfo; + LogMsg(QCoreApplication::translate("Utils::ForeignApps", "Failed to find `python3` executable in PATH environment variable. PATH: \"%1\"") + .arg(qEnvironmentVariable("PATH")), Log::INFO); - LogMsg(invalidVersionMessage.arg(pyInfo.executablePath.toString() - , pyInfo.version.toString(), PythonInfo::MINIMUM_SUPPORTED_VERSION.toString()), Log::INFO); - } - else - { - LogMsg(QCoreApplication::translate("Utils::ForeignApps", "Failed to find `%1` executable in PATH environment variable. PATH: \"%2\"") - .arg(exeName, qEnvironmentVariable("PATH")), Log::INFO); - } - } + if (testPythonInstallation(u"python"_s, pyInfo)) + return pyInfo; + LogMsg(QCoreApplication::translate("Utils::ForeignApps", "Failed to find `python` executable in PATH environment variable. PATH: \"%1\"") + .arg(qEnvironmentVariable("PATH")), Log::INFO); #if defined(Q_OS_WIN) - for (const Path &path : asConst(searchPythonPaths())) - { - if (testPythonInstallation(path, pyInfo)) - { - if (pyInfo.isSupportedVersion()) - return pyInfo; - - LogMsg(invalidVersionMessage.arg(pyInfo.executablePath.toString() - , pyInfo.version.toString(), PythonInfo::MINIMUM_SUPPORTED_VERSION.toString()), Log::INFO); - } - } + if (testPythonInstallation(findPythonPath(), pyInfo)) + return pyInfo; + LogMsg(QCoreApplication::translate("Utils::ForeignApps", "Failed to find `python` executable in Windows Registry."), Log::INFO); #endif LogMsg(QCoreApplication::translate("Utils::ForeignApps", "Failed to find Python executable"), Log::WARNING); + } } diff --git a/src/base/utils/foreignapps.h b/src/base/utils/foreignapps.h index 9621fd2ba..45d05438b 100644 --- a/src/base/utils/foreignapps.h +++ b/src/base/utils/foreignapps.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2018-2025 Mike Tzou (Chocobo1) + * Copyright (C) 2018 Mike Tzou * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -32,7 +32,6 @@ #include #include "base/global.h" -#include "base/path.h" #include "base/utils/version.h" namespace Utils::ForeignApps @@ -46,10 +45,8 @@ namespace Utils::ForeignApps bool isValid() const; bool isSupportedVersion() const; - Path executablePath; + QString executableName; Version version; - - inline static const Version MINIMUM_SUPPORTED_VERSION {3, 9, 0}; }; PythonInfo pythonInfo(); diff --git a/src/base/utils/password.cpp b/src/base/utils/password.cpp index fd3ffdfee..b3be4dacd 100644 --- a/src/base/utils/password.cpp +++ b/src/base/utils/password.cpp @@ -115,7 +115,7 @@ bool Utils::Password::PBKDF2::verify(const QByteArray &secret, const QString &pa bool Utils::Password::PBKDF2::verify(const QByteArray &secret, const QByteArray &password) { - const QList list = ByteArray::splitToViews(secret, ":"); + const QList list = ByteArray::splitToViews(secret, ":", Qt::SkipEmptyParts); if (list.size() != 2) return false; diff --git a/src/base/utils/string.h b/src/base/utils/string.h index f3ed70213..1f5aa2c27 100644 --- a/src/base/utils/string.h +++ b/src/base/utils/string.h @@ -49,13 +49,12 @@ namespace Utils::String template T unquote(const T &str, const QString "es = u"\""_s) { - if (str.length() < 2) - return str; + if (str.length() < 2) return str; for (const QChar quote : quotes) { if (str.startsWith(quote) && str.endsWith(quote)) - return str.sliced(1, (str.length() - 2)); + return str.mid(1, (str.length() - 2)); } return str; diff --git a/src/base/version.h.in b/src/base/version.h.in index 94857236a..9648af7ad 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 2 -#define QBT_VERSION_BUGFIX 0 +#define QBT_VERSION_MINOR 1 +#define QBT_VERSION_BUGFIX 2 #define QBT_VERSION_BUILD 0 -#define QBT_VERSION_STATUS "alpha1" // Should be empty for stable releases! +#define QBT_VERSION_STATUS "" // Should be empty for stable releases! #define QBT__STRINGIFY(x) #x #define QBT_STRINGIFY(x) QBT__STRINGIFY(x) diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index 2ed0a7d3c..e25d02945 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -18,7 +18,6 @@ qt_wrap_ui(UI_HEADERS properties/peersadditiondialog.ui properties/propertieswidget.ui rss/automatedrssdownloader.ui - rss/rssfeeddialog.ui rss/rsswidget.ui search/pluginselectdialog.ui search/pluginsourcedialog.ui @@ -70,7 +69,6 @@ add_library(qbt_gui STATIC log/logmodel.h mainwindow.h optionsdialog.h - powermanagement/inhibitor.h powermanagement/powermanagement.h previewlistdelegate.h previewselectdialog.h @@ -90,7 +88,6 @@ add_library(qbt_gui STATIC rss/automatedrssdownloader.h rss/feedlistwidget.h rss/htmlbrowser.h - rss/rssfeeddialog.h rss/rsswidget.h search/pluginselectdialog.h search/pluginsourcedialog.h @@ -140,7 +137,6 @@ add_library(qbt_gui STATIC uithememanager.h uithemesource.h utils.h - utils/keysequence.h watchedfolderoptionsdialog.h watchedfoldersmodel.h windowstate.h @@ -171,7 +167,6 @@ add_library(qbt_gui STATIC log/logmodel.cpp mainwindow.cpp optionsdialog.cpp - powermanagement/inhibitor.cpp powermanagement/powermanagement.cpp previewlistdelegate.cpp previewselectdialog.cpp @@ -191,7 +186,6 @@ add_library(qbt_gui STATIC rss/automatedrssdownloader.cpp rss/feedlistwidget.cpp rss/htmlbrowser.cpp - rss/rssfeeddialog.cpp rss/rsswidget.cpp search/pluginselectdialog.cpp search/pluginsourcedialog.cpp @@ -240,7 +234,6 @@ add_library(qbt_gui STATIC uithememanager.cpp uithemesource.cpp utils.cpp - utils/keysequence.cpp watchedfolderoptionsdialog.cpp watchedfoldersmodel.cpp @@ -266,8 +259,8 @@ if (DBUS) notifications/dbusnotifier.cpp notifications/dbusnotificationsinterface.h notifications/dbusnotificationsinterface.cpp - powermanagement/inhibitordbus.h - powermanagement/inhibitordbus.cpp + powermanagement/powermanagement_x11.h + powermanagement/powermanagement_x11.cpp ) endif() @@ -281,6 +274,13 @@ if (STACKTRACE) ) endif() +if ((CMAKE_SYSTEM_NAME STREQUAL "Windows") OR (CMAKE_SYSTEM_NAME STREQUAL "Darwin")) + target_sources(qbt_gui PRIVATE + programupdater.h + programupdater.cpp + ) +endif() + if (CMAKE_SYSTEM_NAME STREQUAL "Darwin") target_sources(qbt_gui PRIVATE macosdockbadge/badger.h @@ -291,19 +291,6 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Darwin") macosshiftclickhandler.cpp macutilities.h macutilities.mm - powermanagement/inhibitormacos.h - powermanagement/inhibitormacos.cpp - programupdater.h - programupdater.cpp ) target_link_libraries(qbt_gui PRIVATE objc) endif() - -if (CMAKE_SYSTEM_NAME STREQUAL "Windows") - target_sources(qbt_gui PRIVATE - powermanagement/inhibitorwindows.h - powermanagement/inhibitorwindows.cpp - programupdater.h - programupdater.cpp - ) -endif() diff --git a/src/gui/addnewtorrentdialog.cpp b/src/gui/addnewtorrentdialog.cpp index 8954a1c4d..0f4359579 100644 --- a/src/gui/addnewtorrentdialog.cpp +++ b/src/gui/addnewtorrentdialog.cpp @@ -32,14 +32,12 @@ #include #include -#include #include #include #include #include #include #include -#include #include #include #include @@ -124,7 +122,7 @@ namespace fsPathEdit->setCurrentIndex(existingIndex); } - void updatePathHistory(const QString &settingsKey, const Path &path, const qsizetype maxLength) + void updatePathHistory(const QString &settingsKey, const Path &path, const int maxLength) { // Add last used save path to the front of history @@ -136,10 +134,7 @@ namespace else pathList.prepend(path.toString()); - if (pathList.size() > maxLength) - pathList.resize(maxLength); - - settings()->storeValue(settingsKey, pathList); + settings()->storeValue(settingsKey, QStringList(pathList.mid(0, maxLength))); } } @@ -244,13 +239,14 @@ public: return QList(filesCount(), 0); } - QFuture> fetchAvailableFileFractions() const override + QList availableFileFractions() const override { -#if (QT_VERSION >= QT_VERSION_CHECK(6, 6, 0)) - return QtFuture::makeReadyValueFuture(QList(filesCount(), 0)); -#else - return QtFuture::makeReadyFuture(QList(filesCount(), 0)); -#endif + return QList(filesCount(), 0); + } + + void fetchAvailableFileFractions(std::function)> resultHandler) const override + { + resultHandler(availableFileFractions()); } void prioritizeFiles(const QList &priorities) override @@ -379,7 +375,8 @@ AddNewTorrentDialog::AddNewTorrentDialog(const BitTorrent::TorrentDescriptor &to connect(Preferences::instance(), &Preferences::changed, [] { const int length = Preferences::instance()->addNewTorrentDialogSavePathHistoryLength(); - settings()->storeValue(KEY_SAVEPATHHISTORY, settings()->loadValue(KEY_SAVEPATHHISTORY).mid(0, length)); + settings()->storeValue(KEY_SAVEPATHHISTORY + , QStringList(settings()->loadValue(KEY_SAVEPATHHISTORY).mid(0, length))); }); setCurrentContext(std::make_shared(Context {torrentDescr, inParams})); diff --git a/src/gui/advancedsettings.cpp b/src/gui/advancedsettings.cpp index ba620e027..ec2957d30 100644 --- a/src/gui/advancedsettings.cpp +++ b/src/gui/advancedsettings.cpp @@ -40,6 +40,7 @@ #include "base/global.h" #include "base/preferences.h" #include "base/unicodestrings.h" +#include "gui/addnewtorrentdialog.h" #include "gui/desktopintegration.h" #include "gui/mainwindow.h" #include "interfaces/iguiapplication.h" @@ -64,7 +65,7 @@ namespace QBITTORRENT_HEADER, RESUME_DATA_STORAGE, TORRENT_CONTENT_REMOVE_OPTION, -#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_LINUX) && !defined(Q_OS_MACOS) +#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_MACOS) MEMORY_WORKING_SET_LIMIT, #endif #if defined(Q_OS_WIN) @@ -151,7 +152,6 @@ namespace UPNP_LEASE_DURATION, PEER_TOS, UTP_MIX_MODE, - HOSTNAME_CACHE_TTL, IDN_SUPPORT, MULTI_CONNECTIONS_PER_IP, VALIDATE_HTTPS_TRACKER_CERTIFICATE, @@ -209,7 +209,7 @@ void AdvancedSettings::saveAdvancedSettings() const BitTorrent::Session *const session = BitTorrent::Session::instance(); session->setResumeDataStorageType(m_comboBoxResumeDataStorage.currentData().value()); -#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_LINUX) && !defined(Q_OS_MACOS) +#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_MACOS) // Physical memory (RAM) usage limit app()->setMemoryWorkingSetLimit(m_spinBoxMemoryWorkingSetLimit.value()); #endif @@ -279,8 +279,6 @@ void AdvancedSettings::saveAdvancedSettings() const session->setPeerToS(m_spinBoxPeerToS.value()); // uTP-TCP mixed mode session->setUtpMixedMode(m_comboBoxUtpMixedMode.currentData().value()); - // Hostname resolver cache TTL - session->setHostnameCacheTTL(m_spinBoxHostnameCacheTTL.value()); // Support internationalized domain name (IDN) session->setIDNSupportEnabled(m_checkBoxIDNSupport.isChecked()); // multiple connections per IP @@ -494,11 +492,12 @@ void AdvancedSettings::loadAdvancedSettings() m_comboBoxTorrentContentRemoveOption.setCurrentIndex(m_comboBoxTorrentContentRemoveOption.findData(QVariant::fromValue(session->torrentContentRemoveOption()))); addRow(TORRENT_CONTENT_REMOVE_OPTION, tr("Torrent content removing mode"), &m_comboBoxTorrentContentRemoveOption); -#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_LINUX) && !defined(Q_OS_MACOS) +#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_MACOS) // Physical memory (RAM) usage limit m_spinBoxMemoryWorkingSetLimit.setMinimum(1); m_spinBoxMemoryWorkingSetLimit.setMaximum(std::numeric_limits::max()); m_spinBoxMemoryWorkingSetLimit.setSuffix(tr(" MiB")); + m_spinBoxMemoryWorkingSetLimit.setToolTip(tr("This option is less effective on Linux")); m_spinBoxMemoryWorkingSetLimit.setValue(app()->memoryWorkingSetLimit()); addRow(MEMORY_WORKING_SET_LIMIT, (tr("Physical memory (RAM) usage limit") + u' ' + makeLink(u"https://wikipedia.org/wiki/Working_set", u"(?)")) , &m_spinBoxMemoryWorkingSetLimit); @@ -735,14 +734,6 @@ void AdvancedSettings::loadAdvancedSettings() addRow(UTP_MIX_MODE, (tr("%1-TCP mixed mode algorithm", "uTP-TCP mixed mode algorithm").arg(C_UTP) + u' ' + makeLink(u"https://www.libtorrent.org/reference-Settings.html#mixed_mode_algorithm", u"(?)")) , &m_comboBoxUtpMixedMode); - // Hostname resolver cache TTL - m_spinBoxHostnameCacheTTL.setMinimum(0); - m_spinBoxHostnameCacheTTL.setMaximum(std::numeric_limits::max()); - m_spinBoxHostnameCacheTTL.setValue(session->hostnameCacheTTL()); - m_spinBoxHostnameCacheTTL.setSuffix(tr(" s", " seconds")); - addRow(HOSTNAME_CACHE_TTL, (tr("Internal hostname resolver cache expiry interval") - + u' ' + makeLink(u"https://www.libtorrent.org/reference-Settings.html#resolver_cache_timeout", u"(?)")) - , &m_spinBoxHostnameCacheTTL); // Support internationalized domain name (IDN) m_checkBoxIDNSupport.setChecked(session->isIDNSupportEnabled()); addRow(IDN_SUPPORT, (tr("Support internationalized domain name (IDN)") diff --git a/src/gui/advancedsettings.h b/src/gui/advancedsettings.h index 7ffca4f33..fff4167be 100644 --- a/src/gui/advancedsettings.h +++ b/src/gui/advancedsettings.h @@ -70,7 +70,7 @@ private: QSpinBox m_spinBoxSaveResumeDataInterval, m_spinBoxSaveStatisticsInterval, m_spinBoxTorrentFileSizeLimit, m_spinBoxBdecodeDepthLimit, m_spinBoxBdecodeTokenLimit, m_spinBoxAsyncIOThreads, m_spinBoxFilePoolSize, m_spinBoxCheckingMemUsage, m_spinBoxDiskQueueSize, - m_spinBoxOutgoingPortsMin, m_spinBoxOutgoingPortsMax, m_spinBoxUPnPLeaseDuration, m_spinBoxPeerToS, m_spinBoxHostnameCacheTTL, + m_spinBoxOutgoingPortsMin, m_spinBoxOutgoingPortsMax, m_spinBoxUPnPLeaseDuration, m_spinBoxPeerToS, m_spinBoxListRefresh, m_spinBoxTrackerPort, m_spinBoxSendBufferWatermark, m_spinBoxSendBufferLowWatermark, m_spinBoxSendBufferWatermarkFactor, m_spinBoxConnectionSpeed, m_spinBoxSocketSendBufferSize, m_spinBoxSocketReceiveBufferSize, m_spinBoxSocketBacklogSize, m_spinBoxAnnouncePort, m_spinBoxMaxConcurrentHTTPAnnounces, m_spinBoxStopTrackerTimeout, m_spinBoxSessionShutdownTimeout, @@ -93,7 +93,7 @@ private: QSpinBox m_spinBoxHashingThreads; #endif -#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_LINUX) && !defined(Q_OS_MACOS) +#if defined(QBT_USES_LIBTORRENT2) && !defined(Q_OS_MACOS) QSpinBox m_spinBoxMemoryWorkingSetLimit; #endif diff --git a/src/gui/fspathedit.cpp b/src/gui/fspathedit.cpp index 477a93a77..ff3a8f1e4 100644 --- a/src/gui/fspathedit.cpp +++ b/src/gui/fspathedit.cpp @@ -234,14 +234,14 @@ void FileSystemPathEdit::setFileNameFilter(const QString &val) const int closeBracePos = val.indexOf(u')', (openBracePos + 1)); if ((openBracePos > 0) && (closeBracePos > 0) && (closeBracePos > openBracePos + 2)) { - const QString filterString = val.sliced((openBracePos + 1), (closeBracePos - openBracePos - 1)); + QString filterString = val.mid(openBracePos + 1, closeBracePos - openBracePos - 1); if (filterString == u"*") { // no filters d->m_editor->setFilenameFilters({}); } else { - const QStringList filters = filterString.split(u' ', Qt::SkipEmptyParts); + QStringList filters = filterString.split(u' ', Qt::SkipEmptyParts); d->m_editor->setFilenameFilters(filters); } } diff --git a/src/gui/guiaddtorrentmanager.cpp b/src/gui/guiaddtorrentmanager.cpp index 6e6b709d7..ed137d218 100644 --- a/src/gui/guiaddtorrentmanager.cpp +++ b/src/gui/guiaddtorrentmanager.cpp @@ -33,6 +33,7 @@ #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" diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index 271932fbc..dd07ea2ef 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -101,7 +101,6 @@ #include "ui_mainwindow.h" #include "uithememanager.h" #include "utils.h" -#include "utils/keysequence.h" #ifdef Q_OS_MACOS #include "macosdockbadge/badger.h" @@ -131,8 +130,6 @@ MainWindow::MainWindow(IGUIApplication *app, const WindowState initialState, con , m_ui {new Ui::MainWindow} , m_downloadRate {Utils::Misc::friendlyUnit(0, true)} , m_uploadRate {Utils::Misc::friendlyUnit(0, true)} - , m_pwr {new PowerManagement} - , m_preventTimer {new QTimer(this)} , m_storeExecutionLogEnabled {EXECUTIONLOG_SETTINGS_KEY(u"Enabled"_s)} , m_storeDownloadTrackerFavicon {SETTINGS_KEY(u"DownloadTrackerFavicon"_s)} , m_storeExecutionLogTypes {EXECUTIONLOG_SETTINGS_KEY(u"Types"_s), Log::MsgType::ALL} @@ -339,6 +336,8 @@ MainWindow::MainWindow(IGUIApplication *app, const WindowState initialState, con connect(m_ui->actionManageCookies, &QAction::triggered, this, &MainWindow::manageCookies); // Initialise system sleep inhibition timer + m_pwr = new PowerManagement(this); + m_preventTimer = new QTimer(this); m_preventTimer->setSingleShot(true); connect(m_preventTimer, &QTimer::timeout, this, &MainWindow::updatePowerManagementState); connect(pref, &Preferences::changed, this, &MainWindow::updatePowerManagementState); @@ -838,7 +837,6 @@ void MainWindow::cleanup() delete m_executableWatcher; m_preventTimer->stop(); - delete m_pwr; #if (defined(Q_OS_WIN) || defined(Q_OS_MACOS)) if (m_programUpdateTimer) @@ -884,7 +882,7 @@ void MainWindow::createKeyboardShortcuts() { m_ui->actionCreateTorrent->setShortcut(QKeySequence::New); m_ui->actionOpen->setShortcut(QKeySequence::Open); - m_ui->actionDelete->setShortcut(Utils::KeySequence::deleteItem()); + m_ui->actionDelete->setShortcut(QKeySequence::Delete); 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); @@ -1616,14 +1614,14 @@ void MainWindow::on_actionSearchWidget_triggered() #ifdef Q_OS_WIN const QMessageBox::StandardButton buttonPressed = QMessageBox::question(this, tr("Old Python Runtime") , tr("Your Python version (%1) is outdated. Minimum requirement: %2.\nDo you want to install a newer version now?") - .arg(pyInfo.version.toString(), Utils::ForeignApps::PythonInfo::MINIMUM_SUPPORTED_VERSION.toString()) + .arg(pyInfo.version.toString(), u"3.9.0") , (QMessageBox::Yes | QMessageBox::No), QMessageBox::Yes); if (buttonPressed == QMessageBox::Yes) installPython(); #else QMessageBox::information(this, tr("Old Python Runtime") , tr("Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work.\nMinimum requirement: %2.") - .arg(pyInfo.version.toString(), Utils::ForeignApps::PythonInfo::MINIMUM_SUPPORTED_VERSION.toString())); + .arg(pyInfo.version.toString(), u"3.9.0")); #endif return; } @@ -1828,7 +1826,7 @@ void MainWindow::updatePowerManagementState() const return torrent->isMoving(); }); - m_pwr->setActivityState(inhibitSuspend ? PowerManagement::ActivityState::Busy : PowerManagement::ActivityState::Idle); + m_pwr->setActivityState(inhibitSuspend); m_preventTimer->start(PREVENT_SUSPEND_INTERVAL); } diff --git a/src/gui/mainwindow.ui b/src/gui/mainwindow.ui index 90a4fecb7..24c6ada61 100644 --- a/src/gui/mainwindow.ui +++ b/src/gui/mainwindow.ui @@ -149,8 +149,8 @@ false - + diff --git a/src/gui/optionsdialog.cpp b/src/gui/optionsdialog.cpp index 70eb43c43..3527e4db9 100644 --- a/src/gui/optionsdialog.cpp +++ b/src/gui/optionsdialog.cpp @@ -261,7 +261,6 @@ void OptionsDialog::loadBehaviorTabOptions() m_ui->confirmDeletion->setChecked(pref->confirmTorrentDeletion()); m_ui->checkAltRowColors->setChecked(pref->useAlternatingRowColors()); - m_ui->checkProgressBarFollowsTextColor->setChecked(pref->getProgressBarFollowsTextColor()); m_ui->checkHideZero->setChecked(pref->getHideZeroValues()); m_ui->comboHideZero->setCurrentIndex(pref->getHideZeroComboValues()); m_ui->comboHideZero->setEnabled(m_ui->checkHideZero->isChecked()); @@ -356,7 +355,6 @@ void OptionsDialog::loadBehaviorTabOptions() // Groupbox's check state must be initialized after some of its children if they are manually enabled/disabled m_ui->checkFileLog->setChecked(app()->isFileLoggerEnabled()); - m_ui->checkBoxFreeDiskSpaceStatusBar->setChecked(pref->isStatusbarFreeDiskSpaceDisplayed()); m_ui->checkBoxExternalIPStatusBar->setChecked(pref->isStatusbarExternalIPDisplayed()); m_ui->checkBoxPerformanceWarning->setChecked(session->isPerformanceWarningEnabled()); @@ -390,7 +388,6 @@ void OptionsDialog::loadBehaviorTabOptions() connect(m_ui->confirmDeletion, &QAbstractButton::toggled, this, &ThisType::enableApplyButton); connect(m_ui->checkAltRowColors, &QAbstractButton::toggled, this, &ThisType::enableApplyButton); - connect(m_ui->checkProgressBarFollowsTextColor, &QAbstractButton::toggled, this, &ThisType::enableApplyButton); connect(m_ui->checkHideZero, &QAbstractButton::toggled, m_ui->comboHideZero, &QWidget::setEnabled); connect(m_ui->checkHideZero, &QAbstractButton::toggled, this, &ThisType::enableApplyButton); connect(m_ui->comboHideZero, qComboBoxCurrentIndexChanged, this, &ThisType::enableApplyButton); @@ -446,7 +443,6 @@ void OptionsDialog::loadBehaviorTabOptions() connect(m_ui->spinFileLogAge, qSpinBoxValueChanged, this, &ThisType::enableApplyButton); connect(m_ui->comboFileLogAgeType, qComboBoxCurrentIndexChanged, this, &ThisType::enableApplyButton); - connect(m_ui->checkBoxFreeDiskSpaceStatusBar, &QAbstractButton::toggled, this, &ThisType::enableApplyButton); connect(m_ui->checkBoxExternalIPStatusBar, &QAbstractButton::toggled, this, &ThisType::enableApplyButton); connect(m_ui->checkBoxPerformanceWarning, &QAbstractButton::toggled, this, &ThisType::enableApplyButton); } @@ -485,7 +481,6 @@ void OptionsDialog::saveBehaviorTabOptions() const pref->setConfirmTorrentDeletion(m_ui->confirmDeletion->isChecked()); pref->setAlternatingRowColors(m_ui->checkAltRowColors->isChecked()); - pref->setProgressBarFollowsTextColor(m_ui->checkProgressBarFollowsTextColor->isChecked()); pref->setHideZeroValues(m_ui->checkHideZero->isChecked()); pref->setHideZeroComboValues(m_ui->comboHideZero->currentIndex()); @@ -541,7 +536,6 @@ void OptionsDialog::saveBehaviorTabOptions() const app()->setStartUpWindowState(m_ui->windowStateComboBox->currentData().value()); - pref->setStatusbarFreeDiskSpaceDisplayed(m_ui->checkBoxFreeDiskSpaceStatusBar->isChecked()); pref->setStatusbarExternalIPDisplayed(m_ui->checkBoxExternalIPStatusBar->isChecked()); session->setPerformanceWarningEnabled(m_ui->checkBoxPerformanceWarning->isChecked()); } @@ -666,7 +660,7 @@ void OptionsDialog::loadDownloadsTabOptions() #else m_ui->autoRunConsole->hide(); #endif - const auto autoRunStr = u"%1\n %2\n %3\n %4\n %5\n %6\n %7\n %8\n %9\n %10\n %11\n %12\n %13\n %14\n%15"_s + const auto autoRunStr = u"%1\n %2\n %3\n %4\n %5\n %6\n %7\n %8\n %9\n %10\n %11\n %12\n %13\n%14"_s .arg(tr("Supported parameters (case sensitive):") , tr("%N: Torrent name") , tr("%L: Category") @@ -680,7 +674,6 @@ void OptionsDialog::loadDownloadsTabOptions() , tr("%I: Info hash v1 (or '-' if unavailable)") , tr("%J: Info hash v2 (or '-' if unavailable)") , tr("%K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent)") - , tr("%M: Comment") , tr("Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., \"%N\")")); m_ui->labelAutoRunParam->setText(autoRunStr); @@ -1693,7 +1686,7 @@ void OptionsDialog::adjustProxyOptions() if (currentProxyType == Net::ProxyType::None) { - m_ui->labelProxyTypeUnavailable->setVisible(false); + m_ui->labelProxyTypeIncompatible->setVisible(false); m_ui->lblProxyIP->setEnabled(false); m_ui->textProxyIP->setEnabled(false); @@ -1718,7 +1711,7 @@ void OptionsDialog::adjustProxyOptions() if (currentProxyType == Net::ProxyType::SOCKS4) { - m_ui->labelProxyTypeUnavailable->setVisible(true); + m_ui->labelProxyTypeIncompatible->setVisible(true); m_ui->checkProxyHostnameLookup->setEnabled(false); m_ui->checkProxyRSS->setEnabled(false); @@ -1727,7 +1720,7 @@ void OptionsDialog::adjustProxyOptions() else { // SOCKS5 or HTTP - m_ui->labelProxyTypeUnavailable->setVisible(false); + m_ui->labelProxyTypeIncompatible->setVisible(false); m_ui->checkProxyHostnameLookup->setEnabled(true); m_ui->checkProxyRSS->setEnabled(true); @@ -1763,9 +1756,9 @@ void OptionsDialog::initializeStyleCombo() m_ui->labelStyle->hide(); m_ui->comboStyle->hide(); m_ui->labelStyleHint->hide(); - m_ui->layoutStyle->removeWidget(m_ui->labelStyle); - m_ui->layoutStyle->removeWidget(m_ui->comboStyle); - m_ui->layoutStyle->removeWidget(m_ui->labelStyleHint); + m_ui->UISettingsBoxLayout->removeWidget(m_ui->labelStyle); + m_ui->UISettingsBoxLayout->removeWidget(m_ui->comboStyle); + m_ui->UISettingsBoxLayout->removeWidget(m_ui->labelStyleHint); #endif } @@ -1779,9 +1772,9 @@ void OptionsDialog::initializeColorSchemeOptions() #else m_ui->labelColorScheme->hide(); m_ui->comboColorScheme->hide(); - m_ui->layoutStyle->removeWidget(m_ui->labelColorScheme); - m_ui->layoutStyle->removeWidget(m_ui->comboColorScheme); - m_ui->layoutStyle->removeItem(m_ui->spacerColorScheme); + m_ui->UISettingsBoxLayout->removeWidget(m_ui->labelColorScheme); + m_ui->UISettingsBoxLayout->removeWidget(m_ui->comboColorScheme); + m_ui->UISettingsBoxLayout->removeItem(m_ui->spacerColorScheme); #endif } @@ -1863,10 +1856,10 @@ void OptionsDialog::setLocale(const QString &localeStr) if (index < 0) { //Attempt to find a language match without a country - const int pos = name.indexOf(u'_'); + int pos = name.indexOf(u'_'); if (pos > -1) { - const QString lang = name.first(pos); + QString lang = name.left(pos); index = m_ui->comboLanguage->findData(lang, Qt::UserRole); } } diff --git a/src/gui/optionsdialog.ui b/src/gui/optionsdialog.ui index 4ac59453c..4d124915f 100644 --- a/src/gui/optionsdialog.ui +++ b/src/gui/optionsdialog.ui @@ -137,8 +137,8 @@ Interface - - + + @@ -150,80 +150,72 @@ - - - - - - Language: - - - - - - - - - - Qt::Orientation::Horizontal - - - - 200 - 20 - - - - - + + + + Language: + + - - - - - - Style: - - - - - - - - - - - true - - - - - - - - Color scheme: - - - - - - - - - - Qt::Orientation::Horizontal - - - - 40 - 20 - - - - - + + - + + + + Qt::Orientation::Horizontal + + + + 200 + 20 + + + + + + + + Style: + + + + + + + + + + + true + + + + + + + + Color scheme: + + + + + + + + + + Qt::Orientation::Horizontal + + + + 40 + 20 + + + + + Use custom UI Theme @@ -245,21 +237,15 @@ - + Use icons from system theme - + - - - 0 - 0 - - Customize UI Theme... @@ -297,13 +283,6 @@ - - - - Make progress bars follow text colors - - - @@ -840,13 +819,6 @@ - - - - Show free disk space in status bar - - - @@ -1052,7 +1024,7 @@ - When adding a duplicate torrent + When duplicate torrent is being added @@ -1068,7 +1040,7 @@ - Ask to merge trackers for manually added torrent + Ask for merging trackers when torrent is being added manually true @@ -2098,14 +2070,14 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not 'readme10.txt'. - + true - Some functions are unavailable with the chosen proxy type! + Some options are incompatible with the chosen proxy type! @@ -2165,7 +2137,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not 'readme10.txt'. - Note: The password is saved unencrypted + Info: The password is saved unencrypted diff --git a/src/gui/powermanagement/inhibitor.cpp b/src/gui/powermanagement/inhibitor.cpp deleted file mode 100644 index dff5633ba..000000000 --- a/src/gui/powermanagement/inhibitor.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Mike Tzou (Chocobo1) - * Copyright (C) 2011 Vladimir Golovnev - * - * 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 "inhibitor.h" - -bool Inhibitor::requestBusy() -{ - return true; -} - -bool Inhibitor::requestIdle() -{ - return true; -} diff --git a/src/gui/powermanagement/inhibitor.h b/src/gui/powermanagement/inhibitor.h deleted file mode 100644 index 7b0d6bb68..000000000 --- a/src/gui/powermanagement/inhibitor.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * 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 Inhibitor -{ -public: - virtual ~Inhibitor() = default; - - virtual bool requestBusy(); - virtual bool requestIdle(); -}; diff --git a/src/gui/powermanagement/inhibitormacos.cpp b/src/gui/powermanagement/inhibitormacos.cpp deleted file mode 100644 index c22d10b28..000000000 --- a/src/gui/powermanagement/inhibitormacos.cpp +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Mike Tzou (Chocobo1) - * Copyright (C) 2011 Vladimir Golovnev - * - * 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 "inhibitormacos.h" - -#include - -bool InhibitorMacOS::requestBusy() -{ - const CFStringRef assertName = tr("PMMacOS", "qBittorrent is active").toCFString(); - [[maybe_unused]] const auto assertNameGuard = qScopeGuard([&assertName] { ::CFRelease(assertName); }); - const IOReturn result = ::IOPMAssertionCreateWithName(kIOPMAssertionTypeNoIdleSleep, kIOPMAssertionLevelOn - , assertName, &m_assertionID); - return result == kIOReturnSuccess; -} - -bool InhibitorMacOS::requestIdle() -{ - return ::IOPMAssertionRelease(m_assertionID) == kIOReturnSuccess; -} diff --git a/src/gui/powermanagement/inhibitormacos.h b/src/gui/powermanagement/inhibitormacos.h deleted file mode 100644 index 5ad4f06a3..000000000 --- a/src/gui/powermanagement/inhibitormacos.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * 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 - -#include - -#include - -#include "inhibitor.h" - -class InhibitorMacOS final : public Inhibitor -{ - Q_DECLARE_TR_FUNCTIONS(InhibitorMacOS) - -public: - bool requestBusy() override; - bool requestIdle() override; - -private: - IOPMAssertionID m_assertionID {}; -}; diff --git a/src/gui/powermanagement/inhibitorwindows.cpp b/src/gui/powermanagement/inhibitorwindows.cpp deleted file mode 100644 index d31eb23b5..000000000 --- a/src/gui/powermanagement/inhibitorwindows.cpp +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Mike Tzou (Chocobo1) - * Copyright (C) 2011 Vladimir Golovnev - * - * 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 "inhibitorwindows.h" - -#include - -bool InhibitorWindows::requestBusy() -{ - return ::SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED) != NULL; -} - -bool InhibitorWindows::requestIdle() -{ - return ::SetThreadExecutionState(ES_CONTINUOUS) != NULL; -} diff --git a/src/gui/powermanagement/inhibitorwindows.h b/src/gui/powermanagement/inhibitorwindows.h deleted file mode 100644 index 79bf8df29..000000000 --- a/src/gui/powermanagement/inhibitorwindows.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * 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 - -#include "inhibitor.h" - -class InhibitorWindows final : public Inhibitor -{ -public: - bool requestBusy() override; - bool requestIdle() override; -}; diff --git a/src/gui/powermanagement/powermanagement.cpp b/src/gui/powermanagement/powermanagement.cpp index 68c12dc93..c184dde8b 100644 --- a/src/gui/powermanagement/powermanagement.cpp +++ b/src/gui/powermanagement/powermanagement.cpp @@ -1,6 +1,5 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Mike Tzou (Chocobo1) * Copyright (C) 2011 Vladimir Golovnev * * This program is free software; you can redistribute it and/or @@ -31,59 +30,71 @@ #include -#if defined(Q_OS_MACOS) -#include "inhibitormacos.h" -using InhibitorImpl = InhibitorMacOS; -#elif defined(Q_OS_WIN) -#include "inhibitorwindows.h" -using InhibitorImpl = InhibitorWindows; -#elif defined(QBT_USES_DBUS) -#include "inhibitordbus.h" -using InhibitorImpl = InhibitorDBus; -#else -#include "inhibitor.h" -using InhibitorImpl = Inhibitor; +#ifdef Q_OS_MACOS +#include +#include #endif -PowerManagement::PowerManagement() - : m_inhibitor {new InhibitorImpl} +#ifdef Q_OS_WIN +#include +#endif + +#ifdef QBT_USES_DBUS +#include "powermanagement_x11.h" +#endif + +PowerManagement::PowerManagement(QObject *parent) + : QObject(parent) +#ifdef QBT_USES_DBUS + , m_inhibitor {new PowerManagementInhibitor(this)} +#endif { } PowerManagement::~PowerManagement() { setIdle(); - delete m_inhibitor; } -void PowerManagement::setActivityState(const ActivityState state) +void PowerManagement::setActivityState(const bool busy) { - switch (state) - { - case ActivityState::Busy: + if (busy) setBusy(); - break; - - case ActivityState::Idle: + else setIdle(); - break; - }; } void PowerManagement::setBusy() { - if (m_state == ActivityState::Busy) + if (m_busy) return; + m_busy = true; - if (m_inhibitor->requestBusy()) - m_state = ActivityState::Busy; +#ifdef Q_OS_WIN + ::SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED); +#elif defined(QBT_USES_DBUS) + m_inhibitor->requestBusy(); +#elif defined(Q_OS_MACOS) + const CFStringRef assertName = tr("qBittorrent is active").toCFString(); + [[maybe_unused]] const auto assertNameGuard = qScopeGuard([&assertName] { ::CFRelease(assertName); }); + const IOReturn success = ::IOPMAssertionCreateWithName(kIOPMAssertionTypeNoIdleSleep, kIOPMAssertionLevelOn + , assertName, &m_assertionID); + if (success != kIOReturnSuccess) + m_busy = false; +#endif } void PowerManagement::setIdle() { - if (m_state == ActivityState::Idle) + if (!m_busy) return; + m_busy = false; - if (m_inhibitor->requestIdle()) - m_state = ActivityState::Idle; +#ifdef Q_OS_WIN + ::SetThreadExecutionState(ES_CONTINUOUS); +#elif defined(QBT_USES_DBUS) + m_inhibitor->requestIdle(); +#elif defined(Q_OS_MACOS) + ::IOPMAssertionRelease(m_assertionID); +#endif } diff --git a/src/gui/powermanagement/powermanagement.h b/src/gui/powermanagement/powermanagement.h index e81a1b0b1..f5168c1df 100644 --- a/src/gui/powermanagement/powermanagement.h +++ b/src/gui/powermanagement/powermanagement.h @@ -1,6 +1,5 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Mike Tzou (Chocobo1) * Copyright (C) 2011 Vladimir Golovnev * * This program is free software; you can redistribute it and/or @@ -29,26 +28,38 @@ #pragma once -class Inhibitor; +#include -class PowerManagement final +#ifdef Q_OS_MACOS +// Require Mac OS X >= 10.5 +#include +#endif + +#ifdef QBT_USES_DBUS +class PowerManagementInhibitor; +#endif + +class PowerManagement final : public QObject { + Q_OBJECT + Q_DISABLE_COPY_MOVE(PowerManagement) + public: - enum class ActivityState - { - Busy, - Idle - }; + PowerManagement(QObject *parent = nullptr); + ~PowerManagement() override; - PowerManagement(); - ~PowerManagement(); - - void setActivityState(ActivityState state); + void setActivityState(bool busy); private: void setBusy(); void setIdle(); - ActivityState m_state = ActivityState::Idle; - Inhibitor *m_inhibitor = nullptr; + bool m_busy = false; + +#ifdef QBT_USES_DBUS + PowerManagementInhibitor *m_inhibitor = nullptr; +#endif +#ifdef Q_OS_MACOS + IOPMAssertionID m_assertionID {}; +#endif }; diff --git a/src/gui/powermanagement/inhibitordbus.cpp b/src/gui/powermanagement/powermanagement_x11.cpp similarity index 87% rename from src/gui/powermanagement/inhibitordbus.cpp rename to src/gui/powermanagement/powermanagement_x11.cpp index 1eee96194..ed3b16079 100644 --- a/src/gui/powermanagement/inhibitordbus.cpp +++ b/src/gui/powermanagement/powermanagement_x11.cpp @@ -1,6 +1,5 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Mike Tzou (Chocobo1) * Copyright (C) 2011 Vladimir Golovnev * * This program is free software; you can redistribute it and/or @@ -27,7 +26,7 @@ * exception statement from your version. */ -#include "inhibitordbus.h" +#include "powermanagement_x11.h" #include #include @@ -37,7 +36,7 @@ #include "base/global.h" #include "base/logger.h" -InhibitorDBus::InhibitorDBus(QObject *parent) +PowerManagementInhibitor::PowerManagementInhibitor(QObject *parent) : QObject(parent) , m_busInterface {new QDBusInterface(u"org.gnome.SessionManager"_s, u"/org/gnome/SessionManager"_s , u"org.gnome.SessionManager"_s, QDBusConnection::sessionBus(), this)} @@ -71,26 +70,38 @@ InhibitorDBus::InhibitorDBus(QObject *parent) } else { - m_state = Error; - LogMsg(tr("Power management error. Did not find a suitable D-Bus interface."), Log::WARNING); + LogMsg(tr("Power management error. Did not found suitable D-Bus interface."), Log::WARNING); } } -bool InhibitorDBus::requestBusy() +void PowerManagementInhibitor::requestIdle() +{ + m_intendedState = Idle; + if ((m_state == Error) || (m_state == Idle) || (m_state == RequestIdle) || (m_state == RequestBusy)) + return; + + if (m_manager == ManagerType::Systemd) + { + m_fd = {}; + m_state = Idle; + return; + } + + m_state = RequestIdle; + + const QString method = (m_manager == ManagerType::Gnome) + ? u"Uninhibit"_s + : u"UnInhibit"_s; + const QDBusPendingCall pcall = m_busInterface->asyncCall(method, m_cookie); + const auto *watcher = new QDBusPendingCallWatcher(pcall, this); + connect(watcher, &QDBusPendingCallWatcher::finished, this, &PowerManagementInhibitor::onAsyncReply); +} + +void PowerManagementInhibitor::requestBusy() { m_intendedState = Busy; - - switch (m_state) - { - case Busy: - case RequestBusy: - return true; - case Error: - case RequestIdle: - return false; - case Idle: - break; - }; + if ((m_state == Error) || (m_state == Busy) || (m_state == RequestBusy) || (m_state == RequestIdle)) + return; m_state = RequestBusy; @@ -112,45 +123,10 @@ bool InhibitorDBus::requestBusy() const QDBusPendingCall pcall = m_busInterface->asyncCallWithArgumentList(u"Inhibit"_s, args); const auto *watcher = new QDBusPendingCallWatcher(pcall, this); - connect(watcher, &QDBusPendingCallWatcher::finished, this, &InhibitorDBus::onAsyncReply); - return true; + connect(watcher, &QDBusPendingCallWatcher::finished, this, &PowerManagementInhibitor::onAsyncReply); } -bool InhibitorDBus::requestIdle() -{ - m_intendedState = Idle; - - switch (m_state) - { - case Idle: - case RequestIdle: - return true; - case Error: - case RequestBusy: - return false; - case Busy: - break; - }; - - if (m_manager == ManagerType::Systemd) - { - m_fd = {}; - m_state = Idle; - return true; - } - - m_state = RequestIdle; - - const QString method = (m_manager == ManagerType::Gnome) - ? u"Uninhibit"_s - : u"UnInhibit"_s; - const QDBusPendingCall pcall = m_busInterface->asyncCall(method, m_cookie); - const auto *watcher = new QDBusPendingCallWatcher(pcall, this); - connect(watcher, &QDBusPendingCallWatcher::finished, this, &InhibitorDBus::onAsyncReply); - return true; -} - -void InhibitorDBus::onAsyncReply(QDBusPendingCallWatcher *call) +void PowerManagementInhibitor::onAsyncReply(QDBusPendingCallWatcher *call) { call->deleteLater(); diff --git a/src/gui/powermanagement/inhibitordbus.h b/src/gui/powermanagement/powermanagement_x11.h similarity index 89% rename from src/gui/powermanagement/inhibitordbus.h rename to src/gui/powermanagement/powermanagement_x11.h index e0cc998ef..cc6fa529f 100644 --- a/src/gui/powermanagement/inhibitordbus.h +++ b/src/gui/powermanagement/powermanagement_x11.h @@ -1,6 +1,5 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Mike Tzou (Chocobo1) * Copyright (C) 2011 Vladimir Golovnev * * This program is free software; you can redistribute it and/or @@ -32,21 +31,20 @@ #include #include -#include "inhibitor.h" - class QDBusInterface; class QDBusPendingCallWatcher; -class InhibitorDBus final : public QObject, public Inhibitor +class PowerManagementInhibitor final : public QObject { Q_OBJECT - Q_DISABLE_COPY_MOVE(InhibitorDBus) + Q_DISABLE_COPY_MOVE(PowerManagementInhibitor) public: - InhibitorDBus(QObject *parent = nullptr); + PowerManagementInhibitor(QObject *parent = nullptr); + ~PowerManagementInhibitor() override = default; - bool requestBusy() override; - bool requestIdle() override; + void requestIdle(); + void requestBusy(); private slots: void onAsyncReply(QDBusPendingCallWatcher *call); diff --git a/src/gui/progressbarpainter.cpp b/src/gui/progressbarpainter.cpp index fcf0d3bd4..8788f5f7a 100644 --- a/src/gui/progressbarpainter.cpp +++ b/src/gui/progressbarpainter.cpp @@ -1,6 +1,5 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Vladimir Golovnev * Copyright (C) 2020 Prince Gupta * * This program is free software; you can redistribute it and/or @@ -39,22 +38,17 @@ #endif #include "base/global.h" -#include "gui/uithememanager.h" -ProgressBarPainter::ProgressBarPainter(QObject *parent) - : QObject(parent) +ProgressBarPainter::ProgressBarPainter() { #if (defined(Q_OS_WIN) || defined(Q_OS_MACOS)) - auto *fusionStyle = new QProxyStyle(u"fusion"_s); + auto *fusionStyle = new QProxyStyle {u"fusion"_s}; fusionStyle->setParent(&m_dummyProgressBar); m_dummyProgressBar.setStyle(fusionStyle); #endif - - applyUITheme(); - connect(UIThemeManager::instance(), &UIThemeManager::themeChanged, this, &ProgressBarPainter::applyUITheme); } -void ProgressBarPainter::paint(QPainter *painter, const QStyleOptionViewItem &option, const QString &text, const int progress, const QColor &color) const +void ProgressBarPainter::paint(QPainter *painter, const QStyleOptionViewItem &option, const QString &text, const int progress) const { QStyleOptionProgressBar styleOption; styleOption.initFrom(&m_dummyProgressBar); @@ -65,30 +59,16 @@ void ProgressBarPainter::paint(QPainter *painter, const QStyleOptionViewItem &op styleOption.text = text; styleOption.textVisible = true; // QStyleOption fields - styleOption.rect = option.rect.adjusted(0, 1, 0, -1); + styleOption.rect = option.rect; // Qt 6 requires QStyle::State_Horizontal to be set for correctly drawing horizontal progress bar styleOption.state = option.state | QStyle::State_Horizontal; const bool isEnabled = option.state.testFlag(QStyle::State_Enabled); styleOption.palette.setCurrentColorGroup(isEnabled ? QPalette::Active : QPalette::Disabled); - if (color.isValid()) - { - styleOption.palette.setColor(QPalette::Highlight, color); - } - else if (m_chunkColor.isValid()) - { - styleOption.palette.setColor(QPalette::Highlight, m_chunkColor); - } - painter->save(); const QStyle *style = m_dummyProgressBar.style(); style->drawPrimitive(QStyle::PE_PanelItemViewItem, &option, painter, option.widget); style->drawControl(QStyle::CE_ProgressBar, &styleOption, painter, &m_dummyProgressBar); painter->restore(); } - -void ProgressBarPainter::applyUITheme() -{ - m_chunkColor = UIThemeManager::instance()->getColor(u"ProgressBar"_s); -} diff --git a/src/gui/progressbarpainter.h b/src/gui/progressbarpainter.h index 29156134b..b6ecac377 100644 --- a/src/gui/progressbarpainter.h +++ b/src/gui/progressbarpainter.h @@ -1,6 +1,5 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2025 Vladimir Golovnev * Copyright (C) 2020 Prince Gupta * * This program is free software; you can redistribute it and/or @@ -29,26 +28,18 @@ #pragma once -#include -#include #include class QStyleOptionViewItem; -class ProgressBarPainter : public QObject +class ProgressBarPainter { - Q_OBJECT - Q_DISABLE_COPY_MOVE(ProgressBarPainter) - public: - explicit ProgressBarPainter(QObject *parent = nullptr); + ProgressBarPainter(); - void paint(QPainter *painter, const QStyleOptionViewItem &option, const QString &text, int progress, const QColor &color = {}) const; + void paint(QPainter *painter, const QStyleOptionViewItem &option, const QString &text, int progress) const; private: - void applyUITheme(); - - QColor m_chunkColor; // for painting progressbar with stylesheet option, a dummy progress bar is required QProgressBar m_dummyProgressBar; }; diff --git a/src/gui/properties/downloadedpiecesbar.cpp b/src/gui/properties/downloadedpiecesbar.cpp index 305baad9f..0f1ec8cea 100644 --- a/src/gui/properties/downloadedpiecesbar.cpp +++ b/src/gui/properties/downloadedpiecesbar.cpp @@ -36,16 +36,11 @@ #include #include "base/global.h" -#include "gui/uithememanager.h" namespace { QColor dlPieceColor(const QColor &pieceColor) { - const QColor color = UIThemeManager::instance()->getColor(u"PiecesBar.PartialPiece"_s); - if (color.isValid()) - return color; - const QColor green {Qt::green}; return QColor::fromHsl(green.hslHue(), pieceColor.hslSaturation(), pieceColor.lightness()); } diff --git a/src/gui/properties/peerlistwidget.cpp b/src/gui/properties/peerlistwidget.cpp index 4c27d4eb4..d10bb9c03 100644 --- a/src/gui/properties/peerlistwidget.cpp +++ b/src/gui/properties/peerlistwidget.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2023-2025 Vladimir Golovnev + * Copyright (C) 2023 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -33,7 +33,6 @@ #include #include -#include #include #include #include @@ -59,7 +58,6 @@ #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" @@ -189,7 +187,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(Utils::KeySequence::deleteItem(), this, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, this, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteHotkey, &QShortcut::activated, this, &PeerListWidget::banSelectedPeers); } @@ -407,13 +405,10 @@ void PeerListWidget::loadPeers(const BitTorrent::Torrent *torrent) return; using TorrentPtr = QPointer; - torrent->fetchPeerInfo().then(this, [this, torrent = TorrentPtr(torrent)](const QList &peers) + torrent->fetchPeerInfo([this, torrent = TorrentPtr(torrent)](const QList &peers) { - if (const BitTorrent::Torrent *currentTorrent = m_properties->getCurrentTorrent(); - !currentTorrent || (currentTorrent != torrent)) - { + if (torrent != m_properties->getCurrentTorrent()) return; - } // Remove I2P peers since they will be completely reloaded. for (const QStandardItem *item : asConst(m_I2PPeerItems)) diff --git a/src/gui/properties/piecesbar.cpp b/src/gui/properties/piecesbar.cpp index edfbd1786..87b941493 100644 --- a/src/gui/properties/piecesbar.cpp +++ b/src/gui/properties/piecesbar.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2024-2025 Vladimir Golovnev + * Copyright (C) 2024 Vladimir Golovnev * Copyright (C) 2016 Eugene Shalygin * Copyright (C) 2006 Christophe Dumez * @@ -42,7 +42,6 @@ #include "base/indexrange.h" #include "base/path.h" #include "base/utils/misc.h" -#include "gui/uithememanager.h" namespace { @@ -217,20 +216,17 @@ void PiecesBar::redraw() QColor PiecesBar::backgroundColor() const { - const QColor color = UIThemeManager::instance()->getColor(u"PiecesBar.MissingPiece"_s); - return color.isValid() ? color : palette().color(QPalette::Active, QPalette::Base); + return palette().color(QPalette::Active, QPalette::Base); } QColor PiecesBar::borderColor() const { - const QColor color = UIThemeManager::instance()->getColor(u"PiecesBar.Border"_s); - return color.isValid() ? color : palette().color(QPalette::Active, QPalette::Dark); + return palette().color(QPalette::Active, QPalette::Dark); } QColor PiecesBar::pieceColor() const { - const QColor color = UIThemeManager::instance()->getColor(u"PiecesBar.Piece"_s); - return color.isValid() ? color : palette().color(QPalette::Active, QPalette::Highlight); + return palette().color(QPalette::Active, QPalette::Highlight); } QColor PiecesBar::highlightedPieceColor() const diff --git a/src/gui/properties/propertieswidget.cpp b/src/gui/properties/propertieswidget.cpp index d86f5a074..fe7870272 100644 --- a/src/gui/properties/propertieswidget.cpp +++ b/src/gui/properties/propertieswidget.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2022-2025 Vladimir Golovnev + * Copyright (C) 2022-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -32,7 +32,6 @@ #include #include #include -#include #include #include #include @@ -57,7 +56,6 @@ #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" @@ -138,7 +136,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(Utils::KeySequence::deleteItem(), m_ui->listWebSeeds, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteWebSeedsHotkey = new QShortcut(QKeySequence::Delete, m_ui->listWebSeeds, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteWebSeedsHotkey, &QShortcut::activated, this, &PropertiesWidget::deleteSelectedUrlSeeds); connect(m_ui->listWebSeeds, &QListWidget::doubleClicked, this, &PropertiesWidget::editWebSeed); @@ -472,18 +470,17 @@ void PropertiesWidget::loadDynamicData() if (m_torrent->hasMetadata()) { + using TorrentPtr = QPointer; + m_ui->labelTotalPiecesVal->setText(tr("%1 x %2 (have %3)", "(torrent pieces) eg 152 x 4MB (have 25)").arg(m_torrent->piecesCount()).arg(Utils::Misc::friendlyUnit(m_torrent->pieceLength())).arg(m_torrent->piecesHave())); if (!m_torrent->isFinished() && !m_torrent->isStopped() && !m_torrent->isQueued() && !m_torrent->isChecking()) { // Pieces availability showPiecesAvailability(true); - - using TorrentPtr = QPointer; - m_torrent->fetchPieceAvailability().then(this - , [this, torrent = TorrentPtr(m_torrent)](const QList &pieceAvailability) + m_torrent->fetchPieceAvailability([this, torrent = TorrentPtr(m_torrent)](const QList &pieceAvailability) { - if (m_torrent && (m_torrent == torrent)) + if (torrent == m_torrent) m_piecesAvailability->setAvailability(pieceAvailability); }); @@ -498,11 +495,9 @@ void PropertiesWidget::loadDynamicData() qreal progress = m_torrent->progress() * 100.; m_ui->labelProgressVal->setText(Utils::String::fromDouble(progress, 1) + u'%'); - using TorrentPtr = QPointer; - m_torrent->fetchDownloadingPieces().then(this - , [this, torrent = TorrentPtr(m_torrent)](const QBitArray &downloadingPieces) + m_torrent->fetchDownloadingPieces([this, torrent = TorrentPtr(m_torrent)](const QBitArray &downloadingPieces) { - if (m_torrent && (m_torrent == torrent)) + if (torrent == m_torrent) m_downloadedPieces->setProgress(m_torrent->pieces(), downloadingPieces); }); } @@ -529,9 +524,9 @@ void PropertiesWidget::loadUrlSeeds() return; using TorrentPtr = QPointer; - m_torrent->fetchURLSeeds().then(this, [this, torrent = TorrentPtr(m_torrent)](const QList &urlSeeds) + m_torrent->fetchURLSeeds([this, torrent = TorrentPtr(m_torrent)](const QList &urlSeeds) { - if (!m_torrent || (m_torrent != torrent)) + if (torrent != m_torrent) return; m_ui->listWebSeeds->clear(); diff --git a/src/gui/rss/automatedrssdownloader.cpp b/src/gui/rss/automatedrssdownloader.cpp index f305cefb9..5492a6732 100644 --- a/src/gui/rss/automatedrssdownloader.cpp +++ b/src/gui/rss/automatedrssdownloader.cpp @@ -55,7 +55,6 @@ #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; @@ -152,7 +151,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(Utils::KeySequence::deleteItem(), m_ui->ruleList, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, 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/rssfeeddialog.cpp b/src/gui/rss/rssfeeddialog.cpp deleted file mode 100644 index e179617ff..000000000 --- a/src/gui/rss/rssfeeddialog.cpp +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 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 - * 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 "rssfeeddialog.h" - -#include - -#include "ui_rssfeeddialog.h" - -RSSFeedDialog::RSSFeedDialog(QWidget *parent) - : QDialog(parent) - , m_ui {new Ui::RSSFeedDialog} -{ - m_ui->setupUi(this); - - m_ui->spinRefreshInterval->setMaximum(std::numeric_limits::max()); - m_ui->spinRefreshInterval->setStepType(QAbstractSpinBox::AdaptiveDecimalStepType); - m_ui->spinRefreshInterval->setSuffix(tr(" sec")); - m_ui->spinRefreshInterval->setSpecialValueText(tr("Default")); - - // disable Ok button - m_ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false); - connect(m_ui->buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept); - connect(m_ui->buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject); - - connect(m_ui->textFeedURL, &QLineEdit::textChanged, this, &RSSFeedDialog::feedURLChanged); -} - -RSSFeedDialog::~RSSFeedDialog() -{ - delete m_ui; -} - -QString RSSFeedDialog::feedURL() const -{ - return m_ui->textFeedURL->text(); -} - -void RSSFeedDialog::setFeedURL(const QString &feedURL) -{ - m_ui->textFeedURL->setText(feedURL); -} - -std::chrono::seconds RSSFeedDialog::refreshInterval() const -{ - return std::chrono::seconds(m_ui->spinRefreshInterval->value()); -} - -void RSSFeedDialog::setRefreshInterval(const std::chrono::seconds refreshInterval) -{ - m_ui->spinRefreshInterval->setValue(refreshInterval.count()); -} - -void RSSFeedDialog::feedURLChanged(const QString &feedURL) -{ - m_ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(!feedURL.isEmpty()); -} diff --git a/src/gui/rss/rssfeeddialog.h b/src/gui/rss/rssfeeddialog.h deleted file mode 100644 index d97f605a0..000000000 --- a/src/gui/rss/rssfeeddialog.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 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 - * 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 - -#include -#include - -namespace Ui -{ - class RSSFeedDialog; -} - -class RSSFeedDialog final : public QDialog -{ - Q_OBJECT - Q_DISABLE_COPY_MOVE(RSSFeedDialog) - -public: - explicit RSSFeedDialog(QWidget *parent = nullptr); - ~RSSFeedDialog() override; - - QString feedURL() const; - void setFeedURL(const QString &feedURL); - std::chrono::seconds refreshInterval() const; - void setRefreshInterval(std::chrono::seconds refreshInterval); - -private: - void feedURLChanged(const QString &feedURL); - - Ui::RSSFeedDialog *m_ui = nullptr; -}; diff --git a/src/gui/rss/rssfeeddialog.ui b/src/gui/rss/rssfeeddialog.ui deleted file mode 100644 index 601d4c798..000000000 --- a/src/gui/rss/rssfeeddialog.ui +++ /dev/null @@ -1,75 +0,0 @@ - - - RSSFeedDialog - - - - 0 - 0 - 555 - 106 - - - - RSS Feed Options - - - - - - - - URL: - - - - - - - - - - Refresh interval: - - - - - - - - 0 - 0 - - - - - - - - - - Qt::Orientation::Vertical - - - - 20 - 40 - - - - - - - - Qt::Orientation::Horizontal - - - QDialogButtonBox::StandardButton::Cancel|QDialogButtonBox::StandardButton::Ok - - - - - - - - diff --git a/src/gui/rss/rsswidget.cpp b/src/gui/rss/rsswidget.cpp index fb711b0ac..6b101a993 100644 --- a/src/gui/rss/rsswidget.cpp +++ b/src/gui/rss/rsswidget.cpp @@ -50,11 +50,9 @@ #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" -#include "rssfeeddialog.h" #include "ui_rsswidget.h" namespace @@ -72,8 +70,8 @@ namespace while (iter.hasNext()) { const QRegularExpressionMatch match = iter.next(); - const QStringView scheme = match.capturedView(4); - const QStringView host = match.capturedView(5); + const QString scheme = match.captured(4); + const QString host = match.captured(5); if (!scheme.isEmpty()) { if (host.isEmpty()) @@ -83,21 +81,15 @@ namespace continue; } - QStringView relativePath = match.capturedView(6); + QString relativePath = match.captured(6); if (relativePath.startsWith(u'/')) - { -#if QT_VERSION >= QT_VERSION_CHECK(6, 8, 0) - relativePath.slice(1); -#else - relativePath = relativePath.sliced(1); -#endif - } + relativePath = relativePath.mid(1); const QString absoluteUrl = !host.isEmpty() ? QString(defaultScheme + u':' + host) : (normalizedBaseUrl + relativePath); const QString fullMatch = match.captured(0); - const QStringView prefix = match.capturedView(1); - const QStringView suffix = match.capturedView(7); + const QString prefix = match.captured(1); + const QString suffix = match.captured(7); html.replace(fullMatch, (prefix + absoluteUrl + suffix)); } @@ -115,7 +107,7 @@ RSSWidget::RSSWidget(IGUIApplication *app, QWidget *parent) m_ui->actionCopyFeedURL->setIcon(UIThemeManager::instance()->getIcon(u"edit-copy"_s)); m_ui->actionDelete->setIcon(UIThemeManager::instance()->getIcon(u"edit-clear"_s)); m_ui->actionDownloadTorrent->setIcon(UIThemeManager::instance()->getIcon(u"downloading"_s, u"download"_s)); - m_ui->actionEditFeed->setIcon(UIThemeManager::instance()->getIcon(u"edit-rename"_s)); + m_ui->actionEditFeedURL->setIcon(UIThemeManager::instance()->getIcon(u"edit-rename"_s)); m_ui->actionMarkItemsRead->setIcon(UIThemeManager::instance()->getIcon(u"task-complete"_s, u"mail-mark-read"_s)); m_ui->actionNewFolder->setIcon(UIThemeManager::instance()->getIcon(u"folder-new"_s)); m_ui->actionNewSubscription->setIcon(UIThemeManager::instance()->getIcon(u"list-add"_s)); @@ -142,13 +134,13 @@ 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(Utils::KeySequence::deleteItem(), m_ui->feedListWidget, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, m_ui->feedListWidget, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteHotkey, &QShortcut::activated, this, &RSSWidget::deleteSelectedItems); // Feeds list actions connect(m_ui->actionDelete, &QAction::triggered, this, &RSSWidget::deleteSelectedItems); connect(m_ui->actionRename, &QAction::triggered, this, &RSSWidget::renameSelectedRSSItem); - connect(m_ui->actionEditFeed, &QAction::triggered, this, &RSSWidget::editSelectedRSSFeed); + connect(m_ui->actionEditFeedURL, &QAction::triggered, this, &RSSWidget::editSelectedRSSFeedURL); connect(m_ui->actionUpdate, &QAction::triggered, this, &RSSWidget::refreshSelectedItems); connect(m_ui->actionNewFolder, &QAction::triggered, this, &RSSWidget::askNewFolder); connect(m_ui->actionNewSubscription, &QAction::triggered, this, &RSSWidget::on_newFeedButton_clicked); @@ -212,7 +204,7 @@ void RSSWidget::displayRSSListMenu(const QPoint &pos) { menu->addAction(m_ui->actionRename); if (m_ui->feedListWidget->isFeed(selectedItem)) - menu->addAction(m_ui->actionEditFeed); + menu->addAction(m_ui->actionEditFeedURL); menu->addAction(m_ui->actionDelete); menu->addSeparator(); if (m_ui->feedListWidget->isFolder(selectedItem)) @@ -295,29 +287,36 @@ void RSSWidget::askNewFolder() } // Consider the case where the user clicked on Unread item RSS::Folder *rssDestFolder = ((!destItem || (destItem == m_ui->feedListWidget->stickyUnreadItem())) - ? RSS::Session::instance()->rootFolder() - : qobject_cast(m_ui->feedListWidget->getRSSItem(destItem))); + ? RSS::Session::instance()->rootFolder() + : qobject_cast(m_ui->feedListWidget->getRSSItem(destItem))); const QString newFolderPath = RSS::Item::joinPath(rssDestFolder->path(), newName); - const nonstd::expected result = RSS::Session::instance()->addFolder(newFolderPath); + const nonstd::expected result = RSS::Session::instance()->addFolder(newFolderPath); if (!result) - { QMessageBox::warning(this, u"qBittorrent"_s, result.error(), QMessageBox::Ok); - return; - } - - RSS::Folder *newFolder = result.value(); // Expand destination folder to display new feed if (destItem && (destItem != m_ui->feedListWidget->stickyUnreadItem())) destItem->setExpanded(true); // As new RSS items are added synchronously, we can do the following here. - m_ui->feedListWidget->setCurrentItem(m_ui->feedListWidget->mapRSSItem(newFolder)); + m_ui->feedListWidget->setCurrentItem(m_ui->feedListWidget->mapRSSItem(RSS::Session::instance()->itemByPath(newFolderPath))); } // add a stream by a button void RSSWidget::on_newFeedButton_clicked() { + // Ask for feed URL + const QString clipText = qApp->clipboard()->text(); + const QString defaultURL = Net::DownloadManager::hasSupportedScheme(clipText) ? clipText : u"http://"_s; + + bool ok = false; + QString newURL = AutoExpandableDialog::getText( + this, tr("Please type a RSS feed URL"), tr("Feed URL:"), QLineEdit::Normal, defaultURL, &ok); + if (!ok) return; + + newURL = newURL.trimmed(); + if (newURL.isEmpty()) return; + // Determine destination folder for new item QTreeWidgetItem *destItem = nullptr; QList selectedItems = m_ui->feedListWidget->selectedItems(); @@ -328,38 +327,21 @@ void RSSWidget::on_newFeedButton_clicked() destItem = destItem->parent(); } // Consider the case where the user clicked on Unread item - RSS::Folder *destFolder = ((!destItem || (destItem == m_ui->feedListWidget->stickyUnreadItem())) - ? RSS::Session::instance()->rootFolder() - : qobject_cast(m_ui->feedListWidget->getRSSItem(destItem))); + RSS::Folder *rssDestFolder = ((!destItem || (destItem == m_ui->feedListWidget->stickyUnreadItem())) + ? RSS::Session::instance()->rootFolder() + : qobject_cast(m_ui->feedListWidget->getRSSItem(destItem))); - // Ask for feed URL - const QString clipText = qApp->clipboard()->text(); - const QString defaultURL = Net::DownloadManager::hasSupportedScheme(clipText) ? clipText : u"https://"_s; - - RSS::Feed *newFeed = nullptr; - RSSFeedDialog dialog {this}; - dialog.setFeedURL(defaultURL); - while (!newFeed && (dialog.exec() == RSSFeedDialog::Accepted)) - { - const QString feedURL = dialog.feedURL().trimmed(); - const std::chrono::seconds refreshInterval = dialog.refreshInterval(); - - const QString feedPath = RSS::Item::joinPath(destFolder->path(), feedURL); - const nonstd::expected result = RSS::Session::instance()->addFeed(feedURL, feedPath, refreshInterval); - if (result) - newFeed = result.value(); - else - QMessageBox::warning(&dialog, u"qBittorrent"_s, result.error(), QMessageBox::Ok); - } - - if (!newFeed) - return; + // NOTE: We still add feed using legacy way (with URL as feed name) + const QString newFeedPath = RSS::Item::joinPath(rssDestFolder->path(), newURL); + const nonstd::expected result = RSS::Session::instance()->addFeed(newURL, newFeedPath); + if (!result) + QMessageBox::warning(this, u"qBittorrent"_s, result.error(), QMessageBox::Ok); // Expand destination folder to display new feed if (destItem && (destItem != m_ui->feedListWidget->stickyUnreadItem())) destItem->setExpanded(true); // As new RSS items are added synchronously, we can do the following here. - m_ui->feedListWidget->setCurrentItem(m_ui->feedListWidget->mapRSSItem(newFeed)); + m_ui->feedListWidget->setCurrentItem(m_ui->feedListWidget->mapRSSItem(RSS::Session::instance()->itemByPath(newFeedPath))); } void RSSWidget::deleteSelectedItems() @@ -414,7 +396,7 @@ void RSSWidget::saveFoldersOpenState() void RSSWidget::refreshAllFeeds() { - RSS::Session::instance()->rootFolder()->refresh(); + RSS::Session::instance()->refresh(); } void RSSWidget::downloadSelectedTorrents() @@ -512,7 +494,7 @@ void RSSWidget::renameSelectedRSSItem() } while (!ok); } -void RSSWidget::editSelectedRSSFeed() +void RSSWidget::editSelectedRSSFeedURL() { QList selectedItems = m_ui->feedListWidget->selectedItems(); if (selectedItems.size() != 1) @@ -524,20 +506,15 @@ void RSSWidget::editSelectedRSSFeed() if (!rssFeed) [[unlikely]] return; - auto *dialog = new RSSFeedDialog(this); - dialog->setAttribute(Qt::WA_DeleteOnClose); - dialog->setFeedURL(rssFeed->url()); - dialog->setRefreshInterval(rssFeed->refreshInterval()); - connect(dialog, &RSSFeedDialog::accepted, this, [this, dialog, rssFeed] - { - rssFeed->setRefreshInterval(dialog->refreshInterval()); + bool ok = false; + QString newURL = AutoExpandableDialog::getText(this, tr("Please type a RSS feed URL") + , tr("Feed URL:"), QLineEdit::Normal, rssFeed->url(), &ok).trimmed(); + if (!ok || newURL.isEmpty()) + return; - const QString newURL = dialog->feedURL(); - const nonstd::expected result = RSS::Session::instance()->setFeedURL(rssFeed, newURL); - if (!result) - QMessageBox::warning(this, u"qBittorrent"_s, result.error(), QMessageBox::Ok); - }); - dialog->open(); + const nonstd::expected result = RSS::Session::instance()->setFeedURL(rssFeed, newURL); + if (!result) + QMessageBox::warning(this, u"qBittorrent"_s, result.error(), QMessageBox::Ok); } void RSSWidget::refreshSelectedItems() @@ -660,60 +637,58 @@ void RSSWidget::renderArticle(const RSS::Article *article) const { Q_ASSERT(article); - const QString articleLink = article->link(); const QString highlightedBaseColor = m_ui->textBrowser->palette().color(QPalette::Active, QPalette::Highlight).name(); const QString highlightedBaseTextColor = m_ui->textBrowser->palette().color(QPalette::Active, QPalette::HighlightedText).name(); const QString alternateBaseColor = m_ui->textBrowser->palette().color(QPalette::Active, QPalette::AlternateBase).name(); - QString html = u"
" - + u"
%3
"_s.arg(highlightedBaseColor, highlightedBaseTextColor, article->title()); - if (const QDateTime articleDate = article->date(); articleDate.isValid()) - html += u"
%2%3
"_s.arg(alternateBaseColor, tr("Date: "), QLocale::system().toString(articleDate.toLocalTime(), QLocale::ShortFormat)); + QString html = + u"
" + + u"
%3
"_s.arg(highlightedBaseColor, highlightedBaseTextColor, article->title()); + if (article->date().isValid()) + html += u"
%2%3
"_s.arg(alternateBaseColor, tr("Date: "), QLocale::system().toString(article->date().toLocalTime())); if (m_ui->feedListWidget->currentItem() == m_ui->feedListWidget->stickyUnreadItem()) html += u"
%2%3
"_s.arg(alternateBaseColor, tr("Feed: "), article->feed()->title()); - if (const QString articleAuthor = article->author(); !articleAuthor.isEmpty()) - html += u"
%2%3
"_s.arg(alternateBaseColor, tr("Author: "), articleAuthor); - if (!articleLink.isEmpty()) - html += u""_s.arg(alternateBaseColor, articleLink, tr("Open link")); + if (!article->author().isEmpty()) + html += u"
%2%3
"_s.arg(alternateBaseColor, tr("Author: "), article->author()); html += u"
" u"
"; - if (QString description = article->description(); Qt::mightBeRichText(description)) + if (Qt::mightBeRichText(article->description())) { - html += description; + html += article->description(); } else { + QString description = article->description(); QRegularExpression rx; // If description is plain text, replace BBCode tags with HTML and wrap everything in
 so it looks nice
         rx.setPatternOptions(QRegularExpression::InvertedGreedinessOption
                              | QRegularExpression::CaseInsensitiveOption);
 
         rx.setPattern(u"\\[img\\](.+)\\[/img\\]"_s);
-        description.replace(rx, u""_s);
+        description = description.replace(rx, u""_s);
 
         rx.setPattern(u"\\[url=(\")?(.+)\\1\\]"_s);
-        description.replace(rx, u""_s)
-            .replace(u"[/url]"_s, u""_s, Qt::CaseInsensitive);
+        description = description.replace(rx, u""_s);
+        description = description.replace(u"[/url]"_s, u""_s, Qt::CaseInsensitive);
 
         rx.setPattern(u"\\[(/)?([bius])\\]"_s);
-        description.replace(rx, u"<\\1\\2>"_s);
+        description = description.replace(rx, u"<\\1\\2>"_s);
 
         rx.setPattern(u"\\[color=(\")?(.+)\\1\\]"_s);
-        description.replace(rx, u""_s)
-            .replace(u"[/color]"_s, u""_s, Qt::CaseInsensitive);
+        description = description.replace(rx, u""_s);
+        description = description.replace(u"[/color]"_s, u""_s, Qt::CaseInsensitive);
 
         rx.setPattern(u"\\[size=(\")?(.+)\\d\\1\\]"_s);
-        description.replace(rx, u""_s)
-            .replace(u"[/size]"_s, u""_s, Qt::CaseInsensitive);
+        description = description.replace(rx, u""_s);
+        description = description.replace(u"[/size]"_s, u""_s, Qt::CaseInsensitive);
 
         html += u"
" + description + u"
"; } - html += u"
"; // Supplement relative URLs to absolute ones - const QUrl url {articleLink}; + const QUrl url {article->link()}; const QString baseUrl = url.toString(QUrl::RemovePath | QUrl::RemoveQuery); convertRelativeUrlToAbsolute(html, baseUrl); - + html += u"
"; m_ui->textBrowser->setHtml(html); } diff --git a/src/gui/rss/rsswidget.h b/src/gui/rss/rsswidget.h index 67d1e474c..98bceac30 100644 --- a/src/gui/rss/rsswidget.h +++ b/src/gui/rss/rsswidget.h @@ -70,7 +70,7 @@ private slots: void displayRSSListMenu(const QPoint &pos); void displayItemsListMenu(); void renameSelectedRSSItem(); - void editSelectedRSSFeed(); + void editSelectedRSSFeedURL(); void refreshSelectedItems(); void copySelectedFeedsURL(); void handleCurrentFeedItemChanged(QTreeWidgetItem *currentItem); diff --git a/src/gui/rss/rsswidget.ui b/src/gui/rss/rsswidget.ui index 964b0bae1..97fc97e83 100644 --- a/src/gui/rss/rsswidget.ui +++ b/src/gui/rss/rsswidget.ui @@ -198,9 +198,12 @@ New folder...
- + - Feed options... + Edit feed URL... + + + Edit feed URL
diff --git a/src/gui/search/searchsortmodel.cpp b/src/gui/search/searchsortmodel.cpp index 5b0f815a4..becf1ea72 100644 --- a/src/gui/search/searchsortmodel.cpp +++ b/src/gui/search/searchsortmodel.cpp @@ -46,7 +46,7 @@ void SearchSortModel::setNameFilter(const QString &searchTerm) { m_searchTerm = searchTerm; if ((searchTerm.length() > 2) && searchTerm.startsWith(u'"') && searchTerm.endsWith(u'"')) - m_searchTermWords = QStringList(m_searchTerm.sliced(1, (m_searchTerm.length() - 2))); + m_searchTermWords = QStringList(m_searchTerm.mid(1, m_searchTerm.length() - 2)); else m_searchTermWords = searchTerm.split(u' ', Qt::SkipEmptyParts); } diff --git a/src/gui/search/searchwidget.cpp b/src/gui/search/searchwidget.cpp index 775ed7a1f..4369be0b1 100644 --- a/src/gui/search/searchwidget.cpp +++ b/src/gui/search/searchwidget.cpp @@ -172,10 +172,8 @@ namespace return nonstd::make_unexpected(readResult.error().message); } - const QList lines = Utils::ByteArray::splitToViews(readResult.value(), "\n"); QStringList history; - history.reserve(lines.size()); - for (const QByteArrayView line : lines) + for (const QByteArrayView line : asConst(Utils::ByteArray::splitToViews(readResult.value(), "\n"))) history.append(QString::fromUtf8(line)); return history; @@ -675,7 +673,7 @@ void SearchWidget::loadHistory() } if (history.size() > m_historyLength) - history.remove(0, (history.size() - m_historyLength)); + history = history.mid(history.size() - m_historyLength); m_searchPatternCompleterModel->setStringList(history); }); @@ -827,11 +825,11 @@ void SearchWidget::showTabMenu(const int index) if (auto *searchJobWidget = static_cast(m_ui->tabWidget->widget(index)); searchJobWidget->status() != SearchJobWidget::Status::Ongoing) { - menu->addAction(tr("Refresh tab"), this, [this, searchJobWidget] { refreshTab(searchJobWidget); }); + menu->addAction(tr("Refresh"), this, [this, searchJobWidget] { refreshTab(searchJobWidget); }); } else { - menu->addAction(tr("Stop search"), this, [searchJobWidget] { searchJobWidget->cancelSearch(); }); + menu->addAction(tr("Stop"), this, [searchJobWidget] { searchJobWidget->cancelSearch(); }); } menu->addSeparator(); diff --git a/src/gui/statusbar.cpp b/src/gui/statusbar.cpp index d881ee24b..9f4070808 100644 --- a/src/gui/statusbar.cpp +++ b/src/gui/statusbar.cpp @@ -44,19 +44,6 @@ #include "uithememanager.h" #include "utils.h" -namespace -{ - QWidget *createSeparator(QWidget *parent) - { - QFrame *separator = new QFrame(parent); - separator->setFrameStyle(QFrame::VLine); - #ifndef Q_OS_MACOS - separator->setFrameShadow(QFrame::Raised); - #endif - return separator; - } -} - StatusBar::StatusBar(QWidget *parent) : QStatusBar(parent) { @@ -100,17 +87,11 @@ StatusBar::StatusBar(QWidget *parent) m_upSpeedLbl->setStyleSheet(u"text-align:left;"_s); m_upSpeedLbl->setMinimumWidth(200); - m_freeDiskSpaceLbl = new QLabel(tr("Free space: N/A")); - m_freeDiskSpaceLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred); - m_freeDiskSpaceSeparator = createSeparator(m_freeDiskSpaceLbl); - m_lastExternalIPsLbl = new QLabel(tr("External IP: N/A")); m_lastExternalIPsLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred); - m_lastExternalIPsSeparator = createSeparator(m_lastExternalIPsLbl); m_DHTLbl = new QLabel(tr("DHT: %1 nodes").arg(0), this); m_DHTLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred); - m_DHTSeparator = createSeparator(m_DHTLbl); m_altSpeedsBtn = new QPushButton(this); m_altSpeedsBtn->setFlat(true); @@ -132,42 +113,52 @@ StatusBar::StatusBar(QWidget *parent) m_connecStatusLblIcon->setMaximumWidth(Utils::Gui::largeIconSize().width()); m_altSpeedsBtn->setMaximumWidth(Utils::Gui::largeIconSize().width()); - layout->addWidget(m_freeDiskSpaceLbl); - layout->addWidget(m_freeDiskSpaceSeparator); - + QFrame *statusSep1 = new QFrame(this); + statusSep1->setFrameStyle(QFrame::VLine); +#ifndef Q_OS_MACOS + statusSep1->setFrameShadow(QFrame::Raised); +#endif + QFrame *statusSep2 = new QFrame(this); + statusSep2->setFrameStyle(QFrame::VLine); +#ifndef Q_OS_MACOS + statusSep2->setFrameShadow(QFrame::Raised); +#endif + QFrame *statusSep3 = new QFrame(this); + statusSep3->setFrameStyle(QFrame::VLine); +#ifndef Q_OS_MACOS + statusSep3->setFrameShadow(QFrame::Raised); +#endif + QFrame *statusSep4 = new QFrame(this); + statusSep4->setFrameStyle(QFrame::VLine); +#ifndef Q_OS_MACOS + statusSep4->setFrameShadow(QFrame::Raised); +#endif + QFrame *statusSep5 = new QFrame(this); + statusSep5->setFrameStyle(QFrame::VLine); +#ifndef Q_OS_MACOS + statusSep5->setFrameShadow(QFrame::Raised); +#endif layout->addWidget(m_lastExternalIPsLbl); - layout->addWidget(m_lastExternalIPsSeparator); - + layout->addWidget(statusSep1); layout->addWidget(m_DHTLbl); - layout->addWidget(m_DHTSeparator); - + layout->addWidget(statusSep2); layout->addWidget(m_connecStatusLblIcon); - layout->addWidget(createSeparator(m_connecStatusLblIcon)); - + layout->addWidget(statusSep3); layout->addWidget(m_altSpeedsBtn); - layout->addWidget(createSeparator(m_altSpeedsBtn)); - + layout->addWidget(statusSep4); layout->addWidget(m_dlSpeedLbl); - layout->addWidget(createSeparator(m_dlSpeedLbl)); - + layout->addWidget(statusSep5); layout->addWidget(m_upSpeedLbl); addPermanentWidget(container); setStyleSheet(u"QWidget {margin: 0;}"_s); container->adjustSize(); adjustSize(); - updateFreeDiskSpaceVisibility(); updateExternalAddressesVisibility(); // Is DHT enabled - const bool isDHTVisible = session->isDHTEnabled(); - m_DHTLbl->setVisible(isDHTVisible); - m_DHTSeparator->setVisible(isDHTVisible); + m_DHTLbl->setVisible(session->isDHTEnabled()); refresh(); connect(session, &BitTorrent::Session::statsUpdated, this, &StatusBar::refresh); - - updateFreeDiskSpaceLabel(session->freeDiskSpace()); - connect(session, &BitTorrent::Session::freeDiskSpaceChecked, this, &StatusBar::updateFreeDiskSpaceLabel); - connect(Preferences::instance(), &Preferences::changed, this, &StatusBar::optionsSaved); } @@ -225,28 +216,15 @@ void StatusBar::updateDHTNodesNumber() if (BitTorrent::Session::instance()->isDHTEnabled()) { m_DHTLbl->setVisible(true); - m_DHTSeparator->setVisible(true); - m_DHTLbl->setText(tr("DHT: %1 nodes").arg(BitTorrent::Session::instance()->status().dhtNodes)); + m_DHTLbl->setText(tr("DHT: %1 nodes") + .arg(BitTorrent::Session::instance()->status().dhtNodes)); } else { m_DHTLbl->setVisible(false); - m_DHTSeparator->setVisible(false); } } -void StatusBar::updateFreeDiskSpaceLabel(const qint64 value) -{ - m_freeDiskSpaceLbl->setText(tr("Free space: ") + Utils::Misc::friendlyUnit(value)); -} - -void StatusBar::updateFreeDiskSpaceVisibility() -{ - const bool isVisible = Preferences::instance()->isStatusbarFreeDiskSpaceDisplayed(); - m_freeDiskSpaceLbl->setVisible(isVisible); - m_freeDiskSpaceSeparator->setVisible(isVisible); -} - void StatusBar::updateExternalAddressesLabel() { const QString lastExternalIPv4Address = BitTorrent::Session::instance()->lastExternalIPv4Address(); @@ -266,9 +244,7 @@ void StatusBar::updateExternalAddressesLabel() void StatusBar::updateExternalAddressesVisibility() { - const bool isVisible = Preferences::instance()->isStatusbarExternalIPDisplayed(); - m_lastExternalIPsLbl->setVisible(isVisible); - m_lastExternalIPsSeparator->setVisible(isVisible); + m_lastExternalIPsLbl->setVisible(Preferences::instance()->isStatusbarExternalIPDisplayed()); } void StatusBar::updateSpeedLabels() @@ -324,6 +300,5 @@ void StatusBar::capSpeed() void StatusBar::optionsSaved() { - updateFreeDiskSpaceVisibility(); updateExternalAddressesVisibility(); } diff --git a/src/gui/statusbar.h b/src/gui/statusbar.h index 27fde54d1..d46846707 100644 --- a/src/gui/statusbar.h +++ b/src/gui/statusbar.h @@ -63,20 +63,14 @@ private slots: private: void updateConnectionStatus(); void updateDHTNodesNumber(); - void updateFreeDiskSpaceLabel(qint64 value); - void updateFreeDiskSpaceVisibility(); void updateExternalAddressesLabel(); void updateExternalAddressesVisibility(); void updateSpeedLabels(); QPushButton *m_dlSpeedLbl = nullptr; QPushButton *m_upSpeedLbl = nullptr; - QLabel *m_freeDiskSpaceLbl = nullptr; - QWidget *m_freeDiskSpaceSeparator = nullptr; QLabel *m_lastExternalIPsLbl = nullptr; - QWidget *m_lastExternalIPsSeparator = nullptr; QLabel *m_DHTLbl = nullptr; - QWidget *m_DHTSeparator = nullptr; QPushButton *m_connecStatusLblIcon = nullptr; QPushButton *m_altSpeedsBtn = nullptr; }; diff --git a/src/gui/torrentcontentmodel.cpp b/src/gui/torrentcontentmodel.cpp index 2df7b8176..e75fc1856 100644 --- a/src/gui/torrentcontentmodel.cpp +++ b/src/gui/torrentcontentmodel.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2022-2025 Vladimir Golovnev + * Copyright (C) 2022-2024 Vladimir Golovnev * Copyright (C) 2006-2012 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -33,7 +33,6 @@ #include #include -#include #include #include #include @@ -220,14 +219,18 @@ void TorrentContentModel::updateFilesAvailability() Q_ASSERT(m_contentHandler && m_contentHandler->hasMetadata()); using HandlerPtr = QPointer; - m_contentHandler->fetchAvailableFileFractions().then(this - , [this, handler = HandlerPtr(m_contentHandler)](const QList &availableFileFractions) + m_contentHandler->fetchAvailableFileFractions([this, handler = HandlerPtr(m_contentHandler)](const QList &availableFileFractions) { - if (!m_contentHandler || (m_contentHandler != handler)) + if (handler != m_contentHandler) + return; + + Q_ASSERT(m_filesIndex.size() == availableFileFractions.size()); + // XXX: Why is this necessary? + if (m_filesIndex.size() != availableFileFractions.size()) [[unlikely]] return; for (int i = 0; i < m_filesIndex.size(); ++i) - m_filesIndex[i]->setAvailability(availableFileFractions.value(i, 0)); + m_filesIndex[i]->setAvailability(availableFileFractions[i]); // Update folders progress in the tree m_rootItem->recalculateProgress(); }); diff --git a/src/gui/torrentcontentmodelfolder.cpp b/src/gui/torrentcontentmodelfolder.cpp index baaa098aa..57d3b43cf 100644 --- a/src/gui/torrentcontentmodelfolder.cpp +++ b/src/gui/torrentcontentmodelfolder.cpp @@ -97,7 +97,7 @@ void TorrentContentModelFolder::updatePriority() // If all children have the same priority // then the folder should have the same // priority - const BitTorrent::DownloadPriority prio = m_childItems.constFirst()->priority(); + const BitTorrent::DownloadPriority prio = m_childItems.first()->priority(); for (int i = 1; i < m_childItems.size(); ++i) { if (m_childItems.at(i)->priority() != prio) diff --git a/src/gui/trackerlist/trackerlistmodel.cpp b/src/gui/trackerlist/trackerlistmodel.cpp index 684bef069..78465488c 100644 --- a/src/gui/trackerlist/trackerlistmodel.cpp +++ b/src/gui/trackerlist/trackerlistmodel.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2023-2025 Vladimir Golovnev + * Copyright (C) 2023-2024 Vladimir Golovnev * Copyright (C) 2006 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -42,7 +42,6 @@ #include #include -#include #include #include #include @@ -73,6 +72,26 @@ namespace return (val > -1) ? QString::number(val) : TrackerListModel::tr("N/A"); } + QString toString(const BitTorrent::TrackerEndpointState state) + { + switch (state) + { + case BitTorrent::TrackerEndpointState::Working: + return TrackerListModel::tr(STR_WORKING); + case BitTorrent::TrackerEndpointState::Updating: + return TrackerListModel::tr("Updating..."); + case BitTorrent::TrackerEndpointState::NotWorking: + return TrackerListModel::tr("Not working"); + case BitTorrent::TrackerEndpointState::TrackerError: + return TrackerListModel::tr("Tracker error"); + case BitTorrent::TrackerEndpointState::Unreachable: + return TrackerListModel::tr("Unreachable"); + case BitTorrent::TrackerEndpointState::NotContacted: + return TrackerListModel::tr("Not contacted yet"); + } + return TrackerListModel::tr("Invalid state!"); + } + QString statusDHT(const BitTorrent::Torrent *torrent) { if (!torrent->session()->isDHTEnabled()) @@ -117,7 +136,6 @@ struct TrackerListModel::Item final QString name {}; int tier = -1; int btVersion = -1; - bool isUpdating = false; BitTorrent::TrackerEndpointState status = BitTorrent::TrackerEndpointState::NotContacted; QString message {}; @@ -150,8 +168,6 @@ struct TrackerListModel::Item final void fillFrom(const BitTorrent::TrackerEntryStatus &trackerEntryStatus); void fillFrom(const BitTorrent::TrackerEndpointStatus &endpointStatus); - - QString statusText() const; }; class TrackerListModel::Items final : public multi_index_container< @@ -188,7 +204,6 @@ void TrackerListModel::Item::fillFrom(const BitTorrent::TrackerEntryStatus &trac Q_ASSERT(trackerEntryStatus.url == name); tier = trackerEntryStatus.tier; - isUpdating = trackerEntryStatus.isUpdating; status = trackerEntryStatus.state; message = trackerEntryStatus.message; numPeers = trackerEntryStatus.numPeers; @@ -208,7 +223,6 @@ void TrackerListModel::Item::fillFrom(const BitTorrent::TrackerEndpointStatus &e Q_ASSERT(endpointStatus.name == name); Q_ASSERT(endpointStatus.btVersion == btVersion); - isUpdating = endpointStatus.isUpdating; status = endpointStatus.state; message = endpointStatus.message; numPeers = endpointStatus.numPeers; @@ -222,28 +236,6 @@ void TrackerListModel::Item::fillFrom(const BitTorrent::TrackerEndpointStatus &e announceTimestamp = {}; } -QString TrackerListModel::Item::statusText() const -{ - if (isUpdating) - return TrackerListModel::tr("Updating..."); - - switch (status) - { - case BitTorrent::TrackerEndpointState::Working: - return TrackerListModel::tr(STR_WORKING); - case BitTorrent::TrackerEndpointState::NotWorking: - return TrackerListModel::tr("Not working"); - case BitTorrent::TrackerEndpointState::TrackerError: - return TrackerListModel::tr("Tracker error"); - case BitTorrent::TrackerEndpointState::Unreachable: - return TrackerListModel::tr("Unreachable"); - case BitTorrent::TrackerEndpointState::NotContacted: - return TrackerListModel::tr("Not contacted yet"); - } - - return TrackerListModel::tr("Invalid state!"); -} - TrackerListModel::TrackerListModel(BitTorrent::Session *btSession, QObject *parent) : QAbstractItemModel(parent) , m_btSession {btSession} @@ -317,16 +309,16 @@ void TrackerListModel::populate() m_items->emplace_back(std::make_shared(u"** [LSD] **", privateTorrentMessage)); using TorrentPtr = QPointer; - m_torrent->fetchPeerInfo().then(this, [this, torrent = TorrentPtr(m_torrent)](const QList &peers) + m_torrent->fetchPeerInfo([this, torrent = TorrentPtr(m_torrent)](const QList &peers) { - if (!m_torrent || (m_torrent != torrent)) + if (torrent != m_torrent) return; - // XXX: libtorrent should provide this info... - // Count peers from DHT, PeX, LSD - uint seedsDHT = 0, seedsPeX = 0, seedsLSD = 0, peersDHT = 0, peersPeX = 0, peersLSD = 0; - for (const BitTorrent::PeerInfo &peer : peers) - { + // XXX: libtorrent should provide this info... + // Count peers from DHT, PeX, LSD + uint seedsDHT = 0, seedsPeX = 0, seedsLSD = 0, peersDHT = 0, peersPeX = 0, peersLSD = 0; + for (const BitTorrent::PeerInfo &peer : peers) + { if (peer.isConnecting()) continue; @@ -603,14 +595,14 @@ QVariant TrackerListModel::data(const QModelIndex &index, const int role) const return isEndpoint ? (u'v' + QString::number(itemPtr->btVersion)) : QString(); case COL_STATUS: if (isEndpoint) - return itemPtr->statusText(); + return toString(itemPtr->status); if (index.row() == ROW_DHT) return statusDHT(m_torrent); if (index.row() == ROW_PEX) return statusPeX(m_torrent); if (index.row() == ROW_LSD) return statusLSD(m_torrent); - return itemPtr->statusText(); + return toString(itemPtr->status); case COL_PEERS: return prettyCount(itemPtr->numPeers); case COL_SEEDS: @@ -639,7 +631,7 @@ QVariant TrackerListModel::data(const QModelIndex &index, const int role) const case COL_PROTOCOL: return isEndpoint ? itemPtr->btVersion : -1; case COL_STATUS: - return itemPtr->statusText(); + return toString(itemPtr->status); case COL_PEERS: return itemPtr->numPeers; case COL_SEEDS: diff --git a/src/gui/trackerlist/trackerlistwidget.cpp b/src/gui/trackerlist/trackerlistwidget.cpp index 36ae595d8..51ef35c9c 100644 --- a/src/gui/trackerlist/trackerlistwidget.cpp +++ b/src/gui/trackerlist/trackerlistwidget.cpp @@ -53,7 +53,6 @@ #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" @@ -107,7 +106,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(Utils::KeySequence::deleteItem(), this, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, 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/transferlistdelegate.cpp b/src/gui/transferlistdelegate.cpp index 8bc41e45d..e08cb7ef8 100644 --- a/src/gui/transferlistdelegate.cpp +++ b/src/gui/transferlistdelegate.cpp @@ -30,7 +30,6 @@ #include -#include "base/preferences.h" #include "transferlistmodel.h" TransferListDelegate::TransferListDelegate(QObject *parent) @@ -91,9 +90,7 @@ void TransferListDelegate::paint(QPainter *painter, const QStyleOptionViewItem & QStyleOptionViewItem customOption {option}; customOption.state.setFlag(QStyle::State_Enabled, isEnableState(torrentState)); - const QColor color = Preferences::instance()->getProgressBarFollowsTextColor() ? index.data(Qt::ForegroundRole).value() : QColor(); - - m_progressBarPainter.paint(painter, customOption, index.data().toString(), progress, color); + m_progressBarPainter.paint(painter, customOption, index.data().toString(), progress); } break; default: diff --git a/src/gui/transferlistfilters/categoryfiltermodel.cpp b/src/gui/transferlistfilters/categoryfiltermodel.cpp index 45516321f..ecee89975 100644 --- a/src/gui/transferlistfilters/categoryfiltermodel.cpp +++ b/src/gui/transferlistfilters/categoryfiltermodel.cpp @@ -174,9 +174,9 @@ namespace { QString shortName(const QString &fullName) { - const int pos = fullName.lastIndexOf(u'/'); + int pos = fullName.lastIndexOf(u'/'); if (pos >= 0) - return fullName.sliced(pos + 1); + return fullName.mid(pos + 1); return fullName; } } diff --git a/src/gui/transferlistfilters/trackersfilterwidget.cpp b/src/gui/transferlistfilters/trackersfilterwidget.cpp index 894c1b578..9ab0a54a1 100644 --- a/src/gui/transferlistfilters/trackersfilterwidget.cpp +++ b/src/gui/transferlistfilters/trackersfilterwidget.cpp @@ -463,6 +463,9 @@ void TrackersFilterWidget::handleTrackerStatusesUpdated(const BitTorrent::Torren trackerErrorHashesIt->remove(trackerEntryStatus.url); } break; + + case BitTorrent::TrackerEndpointState::Updating: + break; }; } @@ -552,7 +555,7 @@ void TrackersFilterWidget::handleFavicoDownloadFinished(const Net::DownloadResul { if (result.url.endsWith(u".ico", Qt::CaseInsensitive)) { - const QString faviconURL = QStringView(result.url).chopped(4) + u".png"; + const QString faviconURL = result.url.left(result.url.size() - 4) + u".png"; for (const auto &trackerHost : trackerHosts) { if (m_trackers.contains(trackerHost)) diff --git a/src/gui/transferlistwidget.cpp b/src/gui/transferlistwidget.cpp index f78dd8481..f553f5c6b 100644 --- a/src/gui/transferlistwidget.cpp +++ b/src/gui/transferlistwidget.cpp @@ -72,7 +72,6 @@ #include "tristateaction.h" #include "uithememanager.h" #include "utils.h" -#include "utils/keysequence.h" #ifdef Q_OS_MACOS #include "macosshiftclickhandler.h" @@ -229,7 +228,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(Utils::KeySequence::deleteItem(), this, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, 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); @@ -649,10 +648,7 @@ void TransferListWidget::recheckSelectedTorrents() void TransferListWidget::reannounceSelectedTorrents() { for (BitTorrent::Torrent *const torrent : asConst(getSelectedTorrents())) - { torrent->forceReannounce(); - torrent->forceDHTAnnounce(); - } } int TransferListWidget::visibleColumnsCount() const diff --git a/src/gui/uithemecommon.h b/src/gui/uithemecommon.h index 2b808101e..ba7a5c2c5 100644 --- a/src/gui/uithemecommon.h +++ b/src/gui/uithemecommon.h @@ -80,14 +80,7 @@ inline QHash defaultUIThemeColors() {u"TransferList.StoppedUploading"_s, {Color::Primer::Light::doneFg, Color::Primer::Dark::doneFg}}, {u"TransferList.Moving"_s, {Color::Primer::Light::successFg, Color::Primer::Dark::successFg}}, {u"TransferList.MissingFiles"_s, {Color::Primer::Light::dangerFg, Color::Primer::Dark::dangerFg}}, - {u"TransferList.Error"_s, {Color::Primer::Light::dangerFg, Color::Primer::Dark::dangerFg}}, - - {u"PiecesBar.Border"_s, {{}, {}}}, - {u"PiecesBar.Piece"_s, {{}, {}}}, - {u"PiecesBar.PartialPiece"_s, {{}, {}}}, - {u"PiecesBar.MissingPiece"_s, {{}, {}}}, - - {u"ProgressBar"_s, {{}, {}}} + {u"TransferList.Error"_s, {Color::Primer::Light::dangerFg, Color::Primer::Dark::dangerFg}} }; } diff --git a/src/gui/uithemedialog.cpp b/src/gui/uithemedialog.cpp index 5b629d171..2d06ceeba 100644 --- a/src/gui/uithemedialog.cpp +++ b/src/gui/uithemedialog.cpp @@ -28,7 +28,6 @@ #include "uithemedialog.h" -#include #include #include #include @@ -234,10 +233,6 @@ UIThemeDialog::UIThemeDialog(QWidget *parent) { m_ui->setupUi(this); -#if (defined(Q_OS_WIN) || defined(Q_OS_MACOS)) - m_ui->colorsWarningLabel->hide(); -#endif - connect(m_ui->buttonBox, &QDialogButtonBox::accepted, this, &QDialog::accept); connect(m_ui->buttonBox, &QDialogButtonBox::rejected, this, &QDialog::reject); diff --git a/src/gui/uithemedialog.ui b/src/gui/uithemedialog.ui index 8c8f1a7ca..c2de159d0 100644 --- a/src/gui/uithemedialog.ui +++ b/src/gui/uithemedialog.ui @@ -72,21 +72,6 @@ - - - - Note that some custom colors may not be applied in some desktop environments. - - - true - - - - true - - - - diff --git a/src/gui/uithememanager.cpp b/src/gui/uithememanager.cpp index b8cd31fb9..61f2276fc 100644 --- a/src/gui/uithememanager.cpp +++ b/src/gui/uithememanager.cpp @@ -199,8 +199,8 @@ QIcon UIThemeManager::getFlagIcon(const QString &countryIsoCode) const return {}; const QString key = countryIsoCode.toLower(); - const auto iter = m_flags.constFind(key); - if (iter != m_flags.cend()) + const auto iter = m_flags.find(key); + if (iter != m_flags.end()) return *iter; const QIcon icon {u":/icons/flags/" + key + u".svg"}; diff --git a/src/gui/uithemesource.cpp b/src/gui/uithemesource.cpp index 59f132d27..b854986ea 100644 --- a/src/gui/uithemesource.cpp +++ b/src/gui/uithemesource.cpp @@ -177,7 +177,7 @@ void DefaultThemeSource::loadColors() const QHash lightModeColorOverrides = colorsFromJSON(config.value(KEY_COLORS_LIGHT).toObject()); for (auto overridesIt = lightModeColorOverrides.cbegin(); overridesIt != lightModeColorOverrides.cend(); ++overridesIt) { - const auto it = m_colors.find(overridesIt.key()); + auto it = m_colors.find(overridesIt.key()); if (it != m_colors.end()) it.value().light = overridesIt.value(); } @@ -185,7 +185,7 @@ void DefaultThemeSource::loadColors() const QHash darkModeColorOverrides = colorsFromJSON(config.value(KEY_COLORS_DARK).toObject()); for (auto overridesIt = darkModeColorOverrides.cbegin(); overridesIt != darkModeColorOverrides.cend(); ++overridesIt) { - const auto it = m_colors.find(overridesIt.key()); + auto it = m_colors.find(overridesIt.key()); if (it != m_colors.end()) it.value().dark = overridesIt.value(); } diff --git a/src/gui/utils.cpp b/src/gui/utils.cpp index e987d75c0..c14bb4ed1 100644 --- a/src/gui/utils.cpp +++ b/src/gui/utils.cpp @@ -176,7 +176,6 @@ void Utils::Gui::openFolderSelect(const Path &path) const int lineMaxLength = 64; QProcess proc; - proc.setUnixProcessParameters(QProcess::UnixProcessFlag::CloseFileDescriptors); proc.start(u"xdg-mime"_s, {u"query"_s, u"default"_s, u"inode/directory"_s}); proc.waitForFinished(); const auto output = QString::fromLocal8Bit(proc.readLine(lineMaxLength).simplified()); diff --git a/src/gui/utils/keysequence.cpp b/src/gui/utils/keysequence.cpp deleted file mode 100644 index 53fa5041f..000000000 --- a/src/gui/utils/keysequence.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/* - * 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 deleted file mode 100644 index b89dd2d7f..000000000 --- a/src/gui/utils/keysequence.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * 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(); -} diff --git a/src/icons/mascot.png b/src/icons/mascot.png index 61cf53d24..68523c52e 100644 Binary files a/src/icons/mascot.png and b/src/icons/mascot.png differ diff --git a/src/icons/splash.png b/src/icons/splash.png index 5f17a22cd..ed1fe1682 100644 Binary files a/src/icons/splash.png and b/src/icons/splash.png differ diff --git a/src/lang/qbittorrent_ar.ts b/src/lang/qbittorrent_ar.ts index 645213f8a..8f3d67f8f 100644 --- a/src/lang/qbittorrent_ar.ts +++ b/src/lang/qbittorrent_ar.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 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 اكتمل جلب البيانات الوصفية @@ -477,35 +477,35 @@ 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 - - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB م.بايت - + Recheck torrents on completion إعادة تأكيد البيانات بعد اكتمال التنزيل - - + + ms milliseconds ملي ثانية @@ -699,686 +699,680 @@ القيمة - + (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، إلخ). + يؤثر على التحقق من الشهادات وأنشطة بروتوكول غير متعلقة بالتورنت (مثل خلاصات 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 منفذ المتتبع الداخلي @@ -1389,7 +1383,7 @@ Invalid directory path - مسار المجلد غير صحيح + مسار المجلد غير صالح @@ -1425,64 +1419,64 @@ استخدام دليل التكوين: %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. واجهة الويب للمستخدم معطلة! لتفعيل واجهة الويب للمستخدم، قم بتحرير ملف الإعدادات يدويًا. @@ -1497,34 +1491,34 @@ فشل في تشغيل برنامج خارجي. تورنت: "%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'. @@ -1533,18 +1527,18 @@ السبب: %2 - + Torrent added تمت إضافة تورنت - + '%1' was added. e.g: xxx.avi was added. تم إضافة '%1' - + Download completed انتهى التحميل @@ -1555,88 +1549,88 @@ تم بدء %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 جاهز الآن للخروج @@ -1773,263 +1767,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. سيستبعد جميع المقالات. @@ -2225,504 +2219,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". - + 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 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" - + 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". خطأ: "تنسيق البيانات غير صالح" - + %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" تم تلقي رسالة خطأ من بذرة 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" @@ -2772,47 +2766,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 @@ -2861,27 +2855,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also يجب أن يحدد %1 منفذًا صالحًا (من 1 إلى 65535). - + Usage: الاستخدام: - + [options] [(<filename> | <url>)...] [خيارات][(<filename> | <url>)...] - + Options: خيارات: - + Display program version and exit عرض إصدار البرنامج والخروج - + Display this help message and exit عرض رسالة المساعدة هذه والخروج @@ -2892,130 +2886,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also يجب أن يتبع المعلمة '%1' بناء الجملة '%1=%2' - + 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> تخزين ملفات التضبيط في <dir> - - + + name الاسم - + Store configuration files in directories qBittorrent_<name> تخزين ملفات التضبيط في الدلائل qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory اخترق ملفات libtorrent fastresume وعمل مسارات للملفات ذات صلة بدليل الملف الشخصي - + files or URLs الملفات أو الروابط - + Download the torrents passed by the user تنزيل ملفات التورنت التي مر بها المستخدم - + Options when adding new torrents: الخيارات عند إضافة التورنتات الجديدة: - + path المسار - + Torrent save path مسار حفظ التورنت - + Add torrents as running or stopped - + Skip hash check تخطي التحقق من البيانات (الهاش) - + 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: يمكن توفير قيم الخيار عبر متغيرات المحيط. بالنسبة للخيار المسمى "parameter-name"، اسم متغير المحيط هو 'QBT_PARAMETER_NAME' (في الحالة العلوية، تم استبدال "-" بـ "_") لتمرير قيم العَلم ، اضبط المتغير على "1" أو "TRUE". فمثلا، لتعطيل شاشة البداية: - + Command line parameters take precedence over environment variables معلمات سطر الأوامر لها الأسبقية على المتغيرات المحيطة - + Help مساعدة @@ -3138,12 +3132,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 فشل تحميل ورقة أنماط السمة المخصصة. %1 - + Failed to load custom theme colors. %1 فشل تحميل ألوان السمات المخصصة. %1 @@ -3151,7 +3145,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 فشل تحميل ألوان السمة الافتراضية. %1 @@ -3404,22 +3398,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? التورنت '%1' موجود بالفعل في قائمة النقل. هل تريد دمج المتتبعات من مصدر الجديد؟ @@ -3537,40 +3531,6 @@ 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 @@ -3961,12 +3921,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show أظهر - + Check for program updates التحقق من وجود تحديثات للتطبيق @@ -3981,382 +3941,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 خطأ في التنزيل - - + + 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 ملفات التورنت @@ -5851,47 +5811,47 @@ Minimum requirement: %2. 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 @@ -6037,175 +5997,175 @@ 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) 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 @@ -6214,190 +6174,180 @@ 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 تفعيل جلب مواجز RSS - + 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 منزّل التورنت التلقائي من تغذية 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. @@ -6406,37 +6356,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 مُعطّل - + 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. @@ -6449,37 +6399,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 تحديث اسم النطاق الديناميكي الخاص بي @@ -6592,99 +6542,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. إلى: @@ -6694,22 +6644,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.إظهار كيوبت‎تورنت بجوار الساعة - + 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 تخصيص مسبق لمساحة القرص لجميع الملفات @@ -6804,65 +6754,65 @@ 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 ما إذا كان يجب حذف ملف .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 حل مسار الحفظ النسبي مقابل مسار الفئة المناسب بدلاً من المسار الافتراضي @@ -6882,50 +6832,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". @@ -6954,506 +6904,511 @@ 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 تشغيل برنامج خارجي - + 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 تغيير كلمة المرور الحالية - + 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> "في مربع حوار "إضافة تورنت" @@ -7463,12 +7418,12 @@ readme.txt: تصفية اسم الملف الدقيق. حدد ملف سمة واجهة مستخدم رسومية كيوبت‎تورنت - + Choose Alternative UI files location اختر موقع ملفات واجهة المستخدم البديلة - + Supported parameters (case sensitive): المعلمات المدعومة (حساس لحالة الأحرف): @@ -7488,183 +7443,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> كذلك @@ -7674,69 +7629,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 قواعد. @@ -7747,18 +7702,18 @@ readme.txt: تصفية اسم الملف الدقيق. التفضيلات - + Time Error خطأ في الوقت - + The start time and the end time can't be the same. لا يمكن أن يكون وقت البدء مطابق لوقت الانتهاء. - - + + Length Error خطأ في الطول @@ -7849,163 +7804,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 نسخ آي بي: المنفذ @@ -8283,6 +8238,39 @@ 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 @@ -8364,6 +8352,15 @@ Those plugins were disabled. ليس لديك إذن الكتابة إلى المسار + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8572,124 +8569,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. - + 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: رابط القرين عبر الويب: @@ -8697,33 +8694,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 @@ -8731,22 +8728,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' بنجاح. البدء في تحليلها. @@ -8795,12 +8792,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" @@ -8822,117 +8819,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. العنصر غير موجود: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + تعذر نقل المجلد إلى نفسه. - + 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 @@ -9032,61 +8988,101 @@ 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 + + + + + Feed URL: + رابط الموجز: + + + Deletion confirmation تأكيد الحذف - + Are you sure you want to delete the selected RSS feeds? هل أنت متأكد من رغبتك في حذف موجز RSS المحددة؟ - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed يرجى اختيار اسمًا جديدًا لهذا موجز RSS - + New feed name: اسم الموجز الجديد: - + Rename failed فشل إعادة التسمية - + Date: التاريخ: - + Feed: - + Author: المؤلف: @@ -9200,142 +9196,168 @@ Those plugins were disabled. الحجم: - + Name i.e: file name الاسم - + Size i.e: file size الحجم - + Seeders i.e: Number of full sources الباذرون - + Leechers i.e: Number of partial sources المحمِّلون - + Filter search results... تصفية نتائج البحث... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results النتائج (يظهر %1 من إجمالي %2): - + Torrent names only أسماء التورنتات فقط - + Everywhere في كل مكان - + Use regular expressions استخدام التعبيرات العادية - + Open download window افتح نافذة التنزيل - + Download تنزيل - + Open description page افتح صفحة الوصف - + Copy نسخ - + Name الاسم - + Download link رابط التنزيل - + Description page URL 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 قم بتغيير حجم جميع الأعمدة غير المخفية إلى حجم محتوياتها @@ -9343,104 +9365,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') @@ -9466,94 +9488,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 <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 أوقف @@ -9561,32 +9583,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" @@ -9984,77 +10006,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. لا اتصالات مباشرة. قد يشير هذا إلى وجود مشاكل في إعداد الشبكة. - - 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 انقر للتبديل إلى حدود السرعات العادية @@ -10593,17 +10605,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10970,34 +10982,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default إهمال - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -11007,32 +11019,32 @@ Please choose a different name and try again. د - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent إزالة التورنت - + Remove torrent and its content - + Enable super seeding for torrent تفعيل البذر الخارق للتورنت @@ -11083,78 +11095,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 تعذّر إنشاء مسار الحفظ @@ -11174,39 +11186,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 اسم الفئة غير صحيحة @@ -11354,73 +11366,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 وضوح العامود @@ -11909,319 +11921,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 لا يحتوي التورنت المحدد "%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. هل أنت متأكد من أنك تريد تفعيل الإدارة التلقائية للتورنت المحدد؟ قد يتم نقلهم. - + 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' غير صالح - + 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 الوضع التلقائي يعني أن العديد من خصائص التورنت (مثل مسار الحفظ) سيتم تحديده عن طريق الفئة المرتبطة بها - + Super seeding mode نمط البذر الخارق @@ -12276,18 +12288,18 @@ Please choose a different name and try again. لا يمكن تطبيق تغييرات سمة واجهة المستخدم بشكل كامل. يمكن العثور على التفاصيل في السجل. - + Couldn't save UI Theme configuration. Reason: %1 تعذر حفظ تضبيط سمة واجهة المستخدم. السبب: %1 - - + + Couldn't remove icon file. File: %1. لا يمكن إزالة ملف الأيقونة. الملف: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. لا يمكن نسخ ملف الأيقونة. المصدر: %1. الوجهة: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. خطأ في خادم الويب. خطأ غير معروف. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' واجهة الوِب الرسومية: رأس الأصل وعدم تطابق أصل الهدف! آي بي المصدر: '%1'. رأس الأصل: '%2'. أصل الهدف: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' واجهة الوِب الرسومية: رأس المُحيل وعدم تطابق أصل الهدف! آي بي المصدر: '%1'. رأس المُحيل: '%2'. أصل الهدف: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' واجهة الوِب الرسومية: رأس مضيف غير صالح، عدم تطابق المنفذ. طلب الآي بي المصدر: '%1'. منفذ الخادم: '%2'. رأس المضيف المتلقى: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' واجهة الوِب الرسومية: رأس مضيف غير صالح. طلب آي بي المصدر: '%1'. رأس المضيف المتلقى: '%2' diff --git a/src/lang/qbittorrent_az@latin.ts b/src/lang/qbittorrent_az@latin.ts index 18898bbfc..9b3f2c212 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,21 +666,21 @@ AdvancedSettings - - - - + + + + MiB MB - + Recheck torrents on completion Yüklənmə tamamlandıqdan sonra torrentləri yoxlamaq - - + + ms milliseconds msan @@ -697,686 +697,680 @@ 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) + 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ı, məkan İ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 @@ -1423,64 +1417,64 @@ 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. @@ -1495,34 +1489,34 @@ 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'. @@ -1531,18 +1525,18 @@ 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ı @@ -1553,88 +1547,88 @@ 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 @@ -1771,263 +1765,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 @@ -2097,12 +2091,12 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Corrupted resume data: %1 - + Davam etmək üçün veriləən pozulub: %1 save_path is invalid - + save_path saxlama yolu səhvdir @@ -2184,12 +2178,12 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Corrupted resume data: %1 - + Davam etmək üçün veriləən pozulub: %1 save_path is invalid - + save_path saxlama yolu səhvdir @@ -2223,503 +2217,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 torent ə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 - + Torrentin təkrarı - - - - 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" + İştirakçı ünvanı ilə bağlantı alınmadı. Torrent: "%1". URL: "%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" @@ -2769,47 +2763,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 @@ -2858,27 +2852,27 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin "%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 @@ -2889,130 +2883,130 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin "%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 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 @@ -3401,22 +3395,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? @@ -3534,40 +3528,6 @@ 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 @@ -3958,12 +3918,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 @@ -3978,383 +3938,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. + Səbəb: Quraşdırılmada xəta var. - + 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ı @@ -5848,47 +5808,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 @@ -6034,175 +5994,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 @@ -6211,190 +6171,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 - + 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. @@ -6402,37 +6352,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. @@ -6445,37 +6395,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 @@ -6588,99 +6538,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: @@ -6690,22 +6640,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 @@ -6800,65 +6750,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 @@ -6878,50 +6828,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". @@ -6951,506 +6901,511 @@ 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> @@ -7460,12 +7415,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) @@ -7485,183 +7440,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 @@ -7671,69 +7626,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. @@ -7744,18 +7699,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ı @@ -7846,163 +7801,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 @@ -8280,6 +8235,39 @@ 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 @@ -8569,124 +8557,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: @@ -8694,33 +8682,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 @@ -8728,22 +8716,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. @@ -8792,12 +8780,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" @@ -8819,117 +8807,76 @@ Bu qoşmalar söndürülüb. - + Item doesn't exist: %1. Element tapılmadı: %1. - Can't move a folder into itself or its subfolders. - + 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. - - 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 @@ -9029,61 +8976,78 @@ Bu qoşmalar söndürülüb. - Feed options... - + 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: @@ -9319,7 +9283,7 @@ Bu qoşmalar söndürülüb. Published On - Yayımlandığı yer + Nəşr olunduğu yer @@ -9340,104 +9304,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 @@ -9463,94 +9427,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 @@ -9558,32 +9522,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" @@ -9981,77 +9945,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. - - 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 @@ -10590,17 +10544,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 @@ -10967,34 +10921,34 @@ Başqa ad verin və yenidən cəhd edin. TorrentShareLimitsWidget - - - + + + Default Standart - - + + Unlimited Limitsiz - - + + Set to Təyin edin - + Seeding time: Paylama vaxtı: - - + + @@ -11004,32 +10958,32 @@ Başqa ad verin və yenidən cəhd edin. 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 @@ -11049,7 +11003,7 @@ Başqa ad verin və yenidən cəhd edin. Add tag - Etiket əlavə etməkEtiket əlavə etmək + Etiket əlavə etmək @@ -11080,78 +11034,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 @@ -11171,39 +11125,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ı @@ -11352,73 +11306,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 @@ -11907,319 +11861,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 @@ -12351,32 +12305,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ı @@ -12468,72 +12422,72 @@ 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. - + 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" diff --git a/src/lang/qbittorrent_be.ts b/src/lang/qbittorrent_be.ts index fc2eb1404..91dd5e7d1 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'. @@ -231,25 +231,25 @@ Умова спынення: - - + + None Няма - - + + Metadata received Метаданыя атрыманы - + Torrents that have metadata initially will be added as stopped. Торэнты, якія адпачатку ўтрымліваюць метаданыя, будуць дададзеныя як спыненыя. + - Files checked Файлы правераны @@ -364,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 Атрыманне метаданых скончана @@ -477,35 +477,35 @@ 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 - - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB МБ - + Recheck torrents on completion Пераправераць торэнты пасля спампоўвання - - + + ms milliseconds мс @@ -699,686 +699,680 @@ Значэнне - + (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 Порт убудаванага трэкеру @@ -1425,64 +1419,64 @@ Выкарыстоўваецца каталог налад: %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. Вэб-інтэрфейс адключаны! Каб уключыць вэб-інтэрфейс, адрэдагуйце файл канфігурацыі ўручную. @@ -1497,54 +1491,54 @@ Не ўдалося запусціць знешнюю праграму. Торэнт: «%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 Спампоўванне завершана @@ -1555,88 +1549,88 @@ 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 гатовы да выхаду @@ -1773,263 +1767,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. выключыць усе артыкулы. @@ -2039,7 +2033,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also List of banned IP addresses - Спіс забароненых IP адрасоў + Спіс забароненых IP-адрасоў @@ -2065,7 +2059,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also The entered IP is already banned. - Уведзены IP адрас ужо забаронены. + Уведзены IP-адрас ужо забаронены. @@ -2099,12 +2093,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 - + Памылковы шлях захавання @@ -2186,12 +2180,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 - + Памылковы шлях захавання @@ -2225,503 +2219,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" - + 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». - + 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 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" Торэнт спынены. Торэнт: «%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» - + 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». Памылка: «Памылковы фармат даных» - + %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" Атрымана паведамленне пра памылку ад адраса сіда. Торэнт: «%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» @@ -2739,7 +2733,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Operation aborted - Аперацыя перапынена + Аперацыя перарвана @@ -2771,47 +2765,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 @@ -2835,23 +2829,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» + Чакаўся цэлы лік у пераменнай асяроддзя − '%1', але атрымана '%2' Expected %1 in environment variable '%2', but got '%3' - Чакалася «%1» у пераменнай асяроддзя «%2», але атрымана «%3» + Чакалася '%1' у пераменнай асяроддзя '%2', але атрымана '%3' @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 неабходна ўказаць сапраўдны порт (з 1 да 65535). - + Usage: Выкарыстанне: - + [options] [(<filename> | <url>)...] [параметры] [(<filename> | <url>)...] - + Options: Параметры: - + Display program version and exit Паказваць версію праграмы і выхад - + Display this help message and exit Паказваць гэтую даведку і выхад @@ -2888,133 +2882,133 @@ 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' - + 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> Захоўваць файлы канфігурацыі ў <dir> - - + + name назва - + Store configuration files in directories qBittorrent_<name> Захоўваць файлы канфігурацыі ў папках 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 running or stopped Дадаваць торэнты як запушчаныя або спыненыя - + Skip hash check Прапусціць праверку хэшу - + 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 Даведка @@ -3137,12 +3131,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 Не ўдалося загрузіць табліцу стыляў уласнай тэмы. %1 - + Failed to load custom theme colors. %1 Не ўдалося загрузіць уласныя колеры тэмы. %1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Не ўдалося загрузіць колеры тэмы па змаўчанні. %1 @@ -3403,22 +3397,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? Торэнт «%1» ужо ёсць у спісе. Хочаце дадаць трэкеры з новай крыніцы? @@ -3434,12 +3428,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' мае памылковы тып. @@ -3477,7 +3471,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 + Хібны метад запыту Http, закрыццё сокета. IP: %1 @@ -3536,40 +3530,6 @@ 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 @@ -3920,7 +3880,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Check for Program Updates - Праверыць абнаўленні праграмы + Правяраць наяўнасць абнаўленняў праграмы @@ -3960,14 +3920,14 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Паказаць - + Check for program updates - Праверыць абнаўленні праграмы + Правяраць наяўнасць абнаўленняў праграмы @@ -3980,382 +3940,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 + [С: %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». + Не ўдалося перафайл значка. Крыніца: %1. Месца прызначэння: %2. - + Python installation success. Усталяванне 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". Файл праграмы ўсталявання 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 Памылка спампоўвання - - + + 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-файлы @@ -4429,7 +4389,7 @@ Minimum requirement: %2. Exceeded max redirections (%1) - + Перавышана максімальная колькасць перанакіраванняў (%1) @@ -4439,7 +4399,7 @@ Minimum requirement: %2. The remote host name was not found (invalid hostname) - Адлеглы хост не знойдзены (памылковая назва хоста) + Аддалены хост не знойдзены (памылковая назва хоста) @@ -4454,7 +4414,7 @@ Minimum requirement: %2. The connection to the remote server timed out - Тэрмін чакання злучэння з адлеглым серверам скончыўся + Тэрмін чакання злучэння з аддаленым серверам скончыўся @@ -4464,7 +4424,7 @@ Minimum requirement: %2. The remote server refused the connection - Адлеглы сервер адмовіў у злучэнні + Аддалены сервер адхіліў злучэнне @@ -4489,27 +4449,27 @@ Minimum requirement: %2. The proxy requires authentication in order to honor the request but did not accept any credentials offered - Проксі-сервер патрабуе аўтэнтыфікацыю, але не прыняў пазначаныя ўліковыя звесткі + Для выканання запыту проксі-сервер патрабуе аўтэнтыфікацыі, але пазначаныя ўліковыя даныя не прымаюцца The access to the remote content was denied (401) - Доступ да адлеглага змесціва забаронены (401) + Доступ да аддаленага змесціва забаронены (401) The operation requested on the remote content is not permitted - Дзеянне, якое запытвала адлеглае змесціва, забаронена + Аперацыя, запытаная для аддаленага змесціва, забаронена The remote content was not found at the server (404) - Адлеглага змесціва не знойдзена на гэтым серверы (404) + Аддаленае змесціва не знойдзена на серверы (404) The remote server requires authentication to serve the content but the credentials provided were not accepted - Адлеглы сервер патрабуе аўтэнтыфікацыі для доступа да змесціва, але прадастаўленныя ўліковыя звесткі не прыняў + Для перадачы змесціва аддалены сервер патрабуе аўтэнтыфікацыі, але ўказаныя ўліковыя даныя не прымаюцца @@ -4534,7 +4494,7 @@ Minimum requirement: %2. An unknown error related to the remote content was detected - Узнікла невядомая памылка адлеглага змесціва + Выяўлена невядомая памылка звязаная з аддаленым змесцівам @@ -5849,47 +5809,47 @@ Minimum requirement: %2. 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 @@ -6012,7 +5972,7 @@ Minimum requirement: %2. Show splash screen on start up - Паказваць падчас запуску застаўку + Паказваць застаўку падчас запуску @@ -6035,175 +5995,175 @@ 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 Захоўваць нявыбраныя файлы ў папцы «.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 (эксперыментальны) - + 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 @@ -6212,190 +6172,180 @@ 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 Уключыць атрыманне RSS-каналаў - + 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-адраса ў новыя спампоўванні: - + 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. @@ -6404,37 +6354,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 Адключана - + 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. @@ -6448,37 +6398,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 @@ -6563,7 +6513,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Check for program updates - Праверыць абнаўленні праграмы + Правяраць наяўнасць абнаўленняў праграмы @@ -6591,101 +6541,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 файлы ў: @@ -6693,22 +6643,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Паказваць &qBittorrent у вобласці апавяшчэнняў - + 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 Папярэдне рэзерваваць месца для ўсіх файлаў @@ -6803,65 +6753,65 @@ 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 Ці патрэбна выдаляць файлы .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 @@ -6881,50 +6831,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". @@ -6941,506 +6891,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 Задайце значэнне 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, забароненыя ўручную… + Спіс 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 Змяніць бягучы пароль - + 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; @@ -7450,12 +7405,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Выберыце файл тэмы qBittorrent - + Choose Alternative UI files location Выбраць альтэрнатыўнае размяшчэнне для файлаў інтэрфейсу - + Supported parameters (case sensitive): Параметры якія падтрымліваюцца (з улікам рэгістру): @@ -7475,183 +7430,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> @@ -7661,69 +7616,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 правілаў. @@ -7734,18 +7689,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 Памылка памеру @@ -7836,163 +7791,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 ID кліента - + Progress i.e: % downloaded Ход выканання - + Down Speed i.e: Download speed - Хуткасць спампоўвання + 🡇Хуткасць спампоўвання + + + + Up Speed + i.e: Upload 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:порт @@ -8229,7 +8184,7 @@ Those plugins were disabled. Sorry, couldn't check for plugin updates. %1 - Не атрымалася праверыць абнаўленні плагіна. %1 + Не ўдалося праверыць абнаўленні плагіна. %1 @@ -8270,6 +8225,39 @@ 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 @@ -8351,6 +8339,15 @@ Those plugins were disabled. Няма правоў на запіс у гэтым размяшчэнні + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8531,7 +8528,7 @@ Those plugins were disabled. Created By: - Створаны ў: + Створаны праз: @@ -8559,124 +8556,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. Гэты вэб-сід ужо ў спісе. - + 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: Адрас вэб-раздачы: @@ -8684,33 +8681,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 @@ -8718,22 +8715,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» паспяхова загружаны. Запушчаны яе аналіз. @@ -8782,12 +8779,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» @@ -8809,117 +8806,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Элемент не існуе: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Немагчыма перамясціць папку саму ў сябе. - + 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 @@ -9019,61 +8975,101 @@ Those plugins were disabled. - Feed options... - + Edit feed URL... + Змяніць URL канала... - + + Edit feed URL + Змяніць URL канала + + + Please choose a folder name Выберыце назву папкі - + Folder name: Назва папкі: - + New folder Новая папка - + + + Please type a RSS feed URL + Увядзіце адрас RSS-канала + + + + + Feed URL: + Адрас канала: + + + Deletion confirmation Пацвярджэнне выдалення - + Are you sure you want to delete the selected RSS feeds? Сапраўды выдаліць выбраныя RSS-каналы? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed Выберыце новую назву для гэтага RSS-канала - + New feed name: Новае імя канала: - + Rename failed Памылка перайменавання - + Date: Дата: - + Feed: Канал: - + Author: Аўтар: @@ -9187,142 +9183,168 @@ Those plugins were disabled. Памер: - + Name i.e: file name Назва - + Size i.e: file size Памер - + Seeders i.e: Number of full sources Сіды - + Leechers i.e: Number of partial sources Спампоўваюць - + Filter search results... Фільтраваць вынікі пошуку... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Вынікі (паказваюцца <i>%1</i> з <i>%2</i>): - + Torrent names only Толькі назвы торэнтаў - + Everywhere Усюды - + Use regular expressions Выкарыстоўваць рэгулярныя выразы - + Open download window Адкрыць акно спампоўвання - + Download Спампаваць - + Open description page Адкрыць старонку з апісаннем - + Copy Скапіяваць - + Name Назву - + Download link Спасылку спампоўвання - + Description page URL 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 Змяніць памер усіх несхаваных калонак да памеру іх змесціва @@ -9330,104 +9352,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») @@ -9453,94 +9475,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 <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 Стоп @@ -9548,32 +9570,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" - + Не ўдалося загрузіць захаваныя даныя пра стан інтэрфейсу пошуку. Файл: «%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» @@ -9755,12 +9777,12 @@ Click the "Search plugins..." button at the bottom right of the window DHT Upload - Раздадзена DHT + Раздадзена праз DHT DHT Download - Спампавана DHT + Спампавана праз DHT @@ -9853,12 +9875,12 @@ Click the "Search plugins..." button at the bottom right of the window DHT Upload - Раздадзена DHT + Раздадзена праз DHT DHT Download - Спампавана DHT + Спампавана праз DHT @@ -9971,77 +9993,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. Няма прамых злучэнняў. Гэта можа сведчыць аб праблемах канфігурацыі сеткі. - - 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 У сетцы - - 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 Націсніце для пераключэння на звычайныя абмежаванні хуткасці @@ -10072,12 +10084,12 @@ Click the "Search plugins..." button at the bottom right of the window Running (0) - Запушчаны (0) + Запушчаныя (0) Stopped (0) - Спынены (0) + Спыненыя (0) @@ -10107,12 +10119,12 @@ Click the "Search plugins..." button at the bottom right of the window Checking (0) - Правяраецца (0) + Правяраюцца (0) Moving (0) - Перамяшчаецца (0) + Перамяшчаюцца (0) @@ -10142,12 +10154,12 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - Запушчаны (%1) + Запушчаныя (%1) Stopped (%1) - Спынены (%1) + Спыненыя (%1) @@ -10162,7 +10174,7 @@ Click the "Search plugins..." button at the bottom right of the window Moving (%1) - Перамяшчаецца (%1) + Перамяшчаюцца (%1) @@ -10197,7 +10209,7 @@ Click the "Search plugins..." button at the bottom right of the window Checking (%1) - Правяраецца (%1) + Правяраюцца (%1) @@ -10554,7 +10566,7 @@ Please choose a different name and try again. By shown file order - Па паказаным парадку файлаў + У паказаным парадку файлаў @@ -10580,17 +10592,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Занадта шмат актыўных заданняў - + Torrent creation is still unfinished. Стварэнне торэнта яшчэ не завершана. - + Torrent creation failed. Не ўдалося стварыць торэнт. @@ -10642,7 +10654,7 @@ Please choose a different name and try again. Hybrid - + Гібрыдны @@ -10957,34 +10969,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Па змаўчанні - - + + Unlimited Неабмежавана - - + + Set to Задаць на - + Seeding time: Час раздачы: - - + + @@ -10994,32 +11006,32 @@ Please choose a different name and try again.  хв - + Inactive seeding time: Час неактыўнай раздачы: - + Action when the limit is reached: Дзеянне пры дасягненні абмежавання: - + Stop torrent Спыніць торэнт - + Remove torrent Выдаліць торэнт - + Remove torrent and its content Выдаліць торэнт і яго змесціва - + Enable super seeding for torrent Уключыць для торэнта рэжым суперраздачы @@ -11070,78 +11082,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 Немагчыма экспартаваць torrent-файл. Памылка: %1 - + Cannot make save path Не атрымалася стварыць шлях захавання @@ -11161,39 +11173,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 Няправільная назва катэгорыі @@ -11342,73 +11354,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 Бачнасць калонак @@ -11897,319 +11909,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 Выбраны торэнт «%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. Сапраўды хочаце ўключыць аўтаматычнае кіраванне для выбраных торэнтаў? Яны могуць перамясціцца. - + 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» памылкова - + 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 Аўтаматычны рэжым азначае, што пэўныя ўласцівасці торэнта (напр. шлях захавання) вызначаюцца ў залежнасці ад катэгорыі - + Super seeding mode Рэжым суперраздачы @@ -12264,18 +12276,18 @@ Please choose a different name and try again. Не ўдалося цалкам ужыць змены тэмы абалонкі. Падрабязнасці можна знайсці ў журнале. - + Couldn't save UI Theme configuration. Reason: %1 Не ўдалося захаваць канфігурацыю тэмы. Прычына: %1 - - + + Couldn't remove icon file. File: %1. Не ўдалося выдаліць файл значка. Файл: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Не ўдалося скапіяваць файл значка. Крыніца: %1. Месца прызначэння: %2. @@ -12341,32 +12353,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. @@ -12458,72 +12470,72 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - Пазначана непрымальная назва для файла cookie сеанса: «%1». Ужыта стандартная назва. + Пазначана непрымальная назва сеансавага файла кукі: '%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. Памылка вэб-сервера. Невядомая памылка. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Вэб-інтэрфейс: Зыходны і мэтавы загалоўкі не супадаюць! IP крыніцы: «%1». Зыходны загаловак: «%2». Мэтавая крыніца: «%3» - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Вэб-інтэрфейс: Спасылачны і мэтавы загалоўкі не супадаюць! IP крыніцы: «%1». Загаловак спасылкі: «%2». Мэтавая крыніца: «%3» - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Вэб-інтэрфейс: памылковы загаловак хоста, несупадзенне порта. Запыт IP крыніцы: «%1». Порт сервера: «%2». Атрыманы загаловак хоста: «%3» - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Вэб-інтэрфейс: памылковы загаловак хоста. Запыт IP крыніцы: «%1». Атрыманы загаловак хоста: «%2» diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index 172edd98c..35b010dd6 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -84,7 +84,7 @@ Copy to clipboard - + Копирай към клипборд @@ -203,22 +203,22 @@ Torrent options - + Торент опции Tags: - + Тагове: Click [...] button to add/remove tags. - + Цъкни [...] бутон да добавиш/премахнеш тагове. Add/remove tags - + Добави/премахни тагове @@ -231,32 +231,32 @@ Условие за спиране: - - + + None Няма - - + + Metadata received Метаданни получени - + Torrents that have metadata initially will be added as stopped. - + Торенти, които имат метаданни първоначално, ще бъдат добавени като спрени. + - Files checked Файлове проверени Add to top of queue - + Добави към върха на опашка @@ -364,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 Извличането на метаданни завърши @@ -477,34 +477,34 @@ 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 - + 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 - + Тракери са слети от нов източник @@ -532,7 +532,7 @@ Note: the current defaults are displayed for reference. - + Забележка: текущите подразбирания са показани за справка. @@ -547,17 +547,17 @@ Tags: - + Тагове: Click [...] button to add/remove tags. - + Цъкни [...] бутон да добавиш/премахнеш тагове. Add/remove tags - + Добави/премахни тагове @@ -567,7 +567,7 @@ Start torrent: - + Започни торент: @@ -582,7 +582,7 @@ Add to top of queue: - + Добави към върха на опашка: @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB МБ - + Recheck torrents on completion Провери торентите при завършване - - + + ms milliseconds мс @@ -699,686 +699,680 @@ Стойност - + (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) - + 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  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 Вграден порт на тракер @@ -1425,64 +1419,64 @@ Използване на конфигурационна папка: %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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Причина: %2 - + Torrent added Торент добавен - + '%1' was added. e.g: xxx.avi was added. '%1' бе добавен. - + Download completed Сваляне приключено @@ -1555,88 +1549,88 @@ - + 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 сега е готов за изход @@ -1773,263 +1767,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. ще изключи всички артикули. @@ -2225,503 +2219,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". - + 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 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" - + 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 е забранен - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 трябва да задава валиден порт (1 до 65535) - + Usage: Ползване: - + [options] [(<filename> | <url>)...] [опции] [(<filename> | <url>)...] - + Options: Настройки: - + Display program version and exit Показване на версията на програмата и изход - + Display this help message and exit Показване на това помощно съобщение и изход @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Параметър '%1' трябва да следва синтаксиса '%1=%2' - + 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" dir - + Store configuration files in <dir> Съхранение на конфигурационните файлове в <dir> - - + + name име - + Store configuration files in directories qBittorrent_<name> Съхранение на конфигурационните файлове в директории qBittorent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Намеса във файловете за бързо подновяване на ЛибТорент и редактиране директориите като относителни към директорията на профила - + files or URLs файлове или URL-и - + Download the torrents passed by the user Сваля торентите дадени от потребителя. - + Options when adding new torrents: Опции, когато се добавят нови торенти: - + path път - + Torrent save path Път на запис на торент - + Add torrents as running or stopped - + Skip hash check Пропусни хеш проверка - + 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: Стойности могат да бъдат въведени и като променливи на средата. За опция с име 'parameter-name' променливата на средата би била 'QBT_PARAMETER_NAME' (всичко с главни букви и '_' вместо '-'). За отбелязване на флагове задайте променливата като '1' или 'TRUE'. Например за скриване на началния екран при стартиране: - + Command line parameters take precedence over environment variables Параметрите от командния ред са приоритетни пред променливите от средата - + Help Помощ @@ -3137,12 +3131,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 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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? Торент '%1' вече е в списъка за трансфер. Искате ли да обедините тракери от нов източник? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Покажи - + Check for program updates Проверка за обновления на програмата @@ -3980,382 +3940,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 Грешка при сваляне - - + + 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 Торент Файлове @@ -5849,47 +5809,47 @@ Minimum requirement: %2. 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 @@ -6035,175 +5995,175 @@ Minimum requirement: %2. 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 @@ -6212,190 +6172,180 @@ 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 - + 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 Лимит за качване - + 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. @@ -6404,37 +6354,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 Забранено - + 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. @@ -6443,37 +6393,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 Обнови моето динамично име на домейн @@ -6586,99 +6536,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: Копирай .торент файловете в: @@ -6688,22 +6638,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Показване на &qBittorrent в зоната за уведомяване - + 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 Преразпредели дисково пространство за всички файлове @@ -6798,65 +6748,65 @@ 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 Дали .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 Решавай относителен път на запазване срещу подходящ път на категория вместо такъв по подразбиране @@ -6876,50 +6826,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". @@ -6948,506 +6898,511 @@ 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 Изпълни външна програма - + 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 Промени текущата парола - + 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; @@ -7457,12 +7412,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Избиране на qBittorrent ПИ тема-файл - + Choose Alternative UI files location Избиране на алтернативно местоположение за ПИ файлове - + Supported parameters (case sensitive): Поддържани параметри (чувствителност към регистъра) @@ -7482,183 +7437,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>. @@ -7668,69 +7623,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 правила бяха приложени. @@ -7741,18 +7696,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 Дължинна Грешка @@ -7843,163 +7798,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:порт @@ -8277,6 +8232,39 @@ 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 + + + PreviewSelectDialog @@ -8358,6 +8346,15 @@ Those plugins were disabled. Няма права за писане към път + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8566,124 +8563,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. - + 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 споделяне - + Web seed URL: URL на Web споделяне: @@ -8691,33 +8688,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 @@ -8725,22 +8722,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' е успешно свален. Започване на прочитането му. @@ -8789,12 +8786,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" @@ -8816,117 +8813,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Елементът не съществува: %1 - Can't move a folder into itself or its subfolders. + 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. Не можа да се зареди 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 @@ -9026,61 +8982,101 @@ 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 + Моля въведете URL на RSS канал + + + + + Feed URL: + URL на канал: + + + Deletion confirmation Потвърждение за изтриване - + Are you sure you want to delete the selected RSS feeds? Сигурни ли сте, че искате да изтриете избраните RSS канали? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed Моля изберете ново име за този RSS канал - + New feed name: Име на нов канал: - + Rename failed Преименуването неуспешно - + Date: Дата: - + Feed: - + Author: Автор: @@ -9194,142 +9190,168 @@ Those plugins were disabled. Размер: - + Name i.e: file name Име - + Size i.e: file size Размер - + Seeders i.e: Number of full sources Споделящи - + Leechers i.e: Number of partial sources Вземащи - + Filter search results... Филтрирай резултати на търсене... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Резултати (показва <i>%1</i> от <i>%2</i>): - + Torrent names only Само имена на торентите - + Everywhere Навсякъде - + Use regular expressions Ползване на регулярни изрази - + Open download window Отвори прозорец сваляне - + Download Свали - + Open description page Отиди в страницата с описанието - + Copy Копирай - + Name Име - + Download link Връзка за сваляне - + Description page URL 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 Преоразмери всички нескрити колони до размерът на техните съдържания @@ -9337,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 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') @@ -9460,94 +9482,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 <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 Спиране @@ -9555,32 +9577,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" @@ -9978,77 +10000,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. Няма директни връзки. Това може да е от проблеми в мрежовата настройка. - - 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 Натисни за смяна към стандартни ограничения за скорост @@ -10587,17 +10599,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10964,34 +10976,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default По подразбиране - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -11001,32 +11013,32 @@ Please choose a different name and try again. мин - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Премахни торент - + Remove torrent and its content - + Enable super seeding for torrent Разреши супер засяване за торент @@ -11077,78 +11089,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 Не може да се направи път на запазване @@ -11168,39 +11180,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 Неправилно име на категория @@ -11349,73 +11361,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 Видимост на колона @@ -11904,319 +11916,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 Избраният торент "%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. Сигурни ли сте, че искате да разрешите автоматично управление на торент за избраният/те торент(и)? Те могат да бъдат преместени. - + 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' е невалидно - + 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 Автоматичен режим значи, че различни свойства на торент (н. пр. път на запазване) ще бъдат решени от асоциираната категория - + Super seeding mode Режим на супер-даване @@ -12271,18 +12283,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12348,32 +12360,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 @@ -12465,72 +12477,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: Заглавната част на източника и целевия източник не съответстват. IP източник: '%1'. Заглавна част на източник: '%2'. Целеви източник: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Заглавната част на рефера и целевия източник не съвпадат! IP на източник: '%1'. Заглавна част на рефера: '%2. Целеви източник: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: Невалидна заглавна част на хоста, несъвпадение на порт! Заявка на IP на източник: '%1'. Сървър порт: '%2. Получена заглавна част на хост: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Невалидна заглавна част на хост. Заявка на IP на източник: '%1'. Получена заглавна част на хост: '%2' diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index dddb742e0..fcabdaf18 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torna a comprovar els torrents completats - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 Adjunta el diàleg "Afegeix un torrent nou" a la finestra principal. - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Raó: %2 - + Torrent added Torrent afegit - + '%1' was added. e.g: xxx.avi was added. S'ha afegit "%1". - + Download completed Baixada completa @@ -1555,88 +1549,88 @@ Raó: %2 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. @@ -1773,263 +1767,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. @@ -2099,12 +2093,12 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Corrupted resume data: %1 - + Dades de represa danyades: %1 save_path is invalid - + El _camí de desament no és vàlid. @@ -2186,12 +2180,12 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Corrupted resume data: %1 - + Dades de represa danyades: %1 save_path is invalid - + El camí de desament no és vàlid. @@ -2225,503 +2219,503 @@ 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". - + 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. - + 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. - + 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. + 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 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" - + Duplicate torrent - + Torrent duplicat - - - - 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" - + 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. - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb %1 ha d'especificar un port vàlid (d'1 a 65535). - + Usage: Utilització: - + [options] [(<filename> | <url>)...] [opcions] [(<filename> | <url>)...] - + Options: Opcions: - + Display program version and exit Mostra la versió del programa i surt. - + Display this help message and exit Mostra aquest missatge d'ajuda i surt. @@ -2891,130 +2885,130 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb El paràmetre "%1" ha de seguir la sintaxi "%1=%2" - + Confirm the legal notice Confirmeu l'avís legal - - + + port port - + Change the WebUI port Canvieu el port de la interfície web - + Change the torrenting port Canvia el port del torrent - + Disable splash screen Desactiva finestra de benvinguda - + Run in daemon-mode (background) Executa en mode dimoni (segon terme) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Desa els fitxers de configuració a <dir> - - + + name nom - + Store configuration files in directories qBittorrent_<name> Desa els fitxers de configuració en directoris qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Entreu als fitxers de represa ràpida de libtorrent i feu els camins dels fitxers relatius al directori del perfil. - + files or URLs fitxers o URLs - + Download the torrents passed by the user Baixa els Torrents passats per l'usuari. - + Options when adding new torrents: Opcions en afegir torrents nous: - + path camí - + Torrent save path Camí per desar el torrent - + Add torrents as running or stopped Afegeix torrents com a iniciats o interromputs - + Skip hash check Omet la comprovació del resum - + Assign torrents to category. If the category doesn't exist, it will be created. Assignació de torrents a una categoria. Si la categoria no existeix, es crearà. - + Download files in sequential order Baixa fitxers en ordre seqüencial - + Download first and last pieces first Baixa primer els trossos del principi i del final - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Especifica si el diàleg "Afegeix un torrent nou" s'obre quan s'afegeixi un 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: Els valors de les opcions es poden proporcionar a través de variables d'entorn. Per a l'opció anomenada "parameter-name", el nom de la variable d'entorn és "QBT_PARAMETER_NAME" (en majúscules, "-" reemplaçat per "_"). Per passar valors d'indicadors, establiu la variable a "1" o "TRUE". Per exemple, per inhabilitar la pantalla de benvinguda: - + Command line parameters take precedence over environment variables Els paràmetres de la línia d'ordres tenen prioritat per davant de les variables d'entorn. - + Help Ajuda @@ -3137,12 +3131,12 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb CustomThemeSource - + Failed to load custom theme style sheet. %1 No s'ha pogut carregar el full d'estil del tema personalitzat. %1 - + Failed to load custom theme colors. %1 No s'han pogut carregar els colors del tema personalitzat. %1 @@ -3150,7 +3144,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb DefaultThemeSource - + Failed to load default theme colors. %1 No s'han pogut carregar els colors del tema predeterminat. %1 @@ -3403,22 +3397,22 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb GUIAddTorrentManager - + Downloading torrent... Source: "%1" Es baixa el torrent... Font: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,383 +3940,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 - + Search has failed La cerca ha fallat - + Search has finished 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. 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 - + 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 - - + + 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 @@ -5850,47 +5810,47 @@ Requisit mínim: %2. 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 @@ -6036,175 +5996,175 @@ Requisit mínim: %2. 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) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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 - + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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 @@ -6526,7 +6476,7 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" Start / stop torrent - Inicia / atura el torrent + Inicia / Atura el torrent @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" Mostra el &qBittorrent a l'àrea de notificació. - + 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 @@ -6803,65 +6753,65 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" anys - + Log performance warnings Registra els avisos de rendiment - + 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 @@ -6881,50 +6831,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". @@ -6953,507 +6903,512 @@ 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 - + 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ó. + + + 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 - + 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; @@ -7463,12 +7418,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): @@ -7488,183 +7443,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>. @@ -7674,69 +7629,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. @@ -7747,18 +7702,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 @@ -7849,163 +7804,163 @@ readme[0-9].txt: filtra "readme1.txt", "readme2.txt" però n 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 @@ -8284,6 +8239,39 @@ 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 @@ -8365,6 +8353,15 @@ Aquests connectors s'han inhabilitat. No teniu permís d'escriptura al camí. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8573,124 +8570,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 - + %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. - + Filter files... Filtra els fitxers... - + Add web seed... - Afegeix una llavor web... + Afegeix 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. - + Web seed editing Edició de la llavor web - + Web seed URL: URL de la llavor web: @@ -8698,33 +8695,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 @@ -8732,22 +8729,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. @@ -8796,12 +8793,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" @@ -8823,117 +8820,76 @@ Aquests connectors s'han inhabilitat. - + Item doesn't exist: %1. No existeix l'element %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + No s'ha pogut moure la carpeta a si mateixa. - + 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: - Interval d'actualització: - - - - sec - s - - - - Default - Per defecte - - RSSWidget @@ -9033,61 +8989,101 @@ 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 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9201,142 +9197,168 @@ Aquests connectors s'han inhabilitat. Mida: - + Name i.e: file name Nom - + Size i.e: file size Mida - + Seeders i.e: Number of full sources Sembradors - + Leechers i.e: Number of partial sources Sangoneres - + Filter search results... Filtra els resultats de la cerca... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultats (se'n mostren <i>%1</i> d'un total de <i>%2</i>): - + Torrent names only Només noms de torrents - + Everywhere Arreu - + Use regular expressions Usa expressions regulars - + Open download window Obre la finestra de baixades - + Download Baixa - + Open description page Obre la pàgina de descripció - + Copy Copia - + Name Nom - + Download link Enllaç de baixada - + Description page URL URL de la pàgina de descripció - + Searching... Cercant.. - + Search has finished La cerca s'ha acabat. - + Search aborted Cerca avortada - + An error occurred during search... S'ha produït un error durant la cerca... - + Search returned no results La cerca no ha trobat cap resultat. - + Engine Motor - + Engine URL URL del motor - + Published On Publicat el - + 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 @@ -9344,104 +9366,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») @@ -9467,94 +9489,94 @@ 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. - + <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 @@ -9562,32 +9584,32 @@ Cliqueu al botó "Connectors de cerca..." del cantó de baix a la dret 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" + 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" + 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" @@ -9985,77 +10007,67 @@ 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. - - 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 - - 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 @@ -10594,17 +10606,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. @@ -10971,34 +10983,34 @@ Trieu-ne un altre i torneu-ho a provar. TorrentShareLimitsWidget - - - + + + Default Per defecte - - + + Unlimited Sense límit - - + + Set to Establert a - + Seeding time: Temps de sembra: - - + + @@ -11008,32 +11020,32 @@ Trieu-ne un altre i torneu-ho a provar. min. - + Inactive seeding time: Temps de sembra inactiu: - + Action when the limit is reached: Acció quan s'arriba al límit: - + Stop torrent Interromp el torrent - + Remove 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 @@ -11084,78 +11096,78 @@ 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. @@ -11175,39 +11187,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 @@ -11356,73 +11368,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 @@ -11911,319 +11923,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 - + 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ó. - + 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. - + 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. - + Super seeding mode Mode de supersembra @@ -12278,18 +12290,18 @@ Trieu-ne un altre i torneu-ho a provar. Els canvis al tema d'IU no han pogut aplicar-se completament. Els detalls poden trobar-se al Log. - + Couldn't save UI Theme configuration. Reason: %1 No s'ha pogut guardar la configuració del tema d'IU. Motiu: %1 - - + + Couldn't remove icon file. File: %1. No s'ha pogut esborrar el fitxer d'icona. Fitxer: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. No s'ha pogut copiar el fitxer d'icona. Origen %1. Destí: %2. @@ -12355,32 +12367,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. @@ -12472,72 +12484,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Interfície d'usuari de xarxa: la capçalera d'origen i l'origen de destinació no coincideixen! IP d'origen: «%1». Capçalera d'origen «%2». Origen de destinació: «%3» - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Interfície d'usuari de xarxa: la capçalera de referència i l'origen de destinació no coincideixen! IP d'origen: «%1». Capçalera de referència «%2». Origen de destinació: «%3» - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Interfície d'usuari de xarxa: capçalera d'amfitrió, el port no coincideix. IP origen de la petició: «%1». Port del servidor: «%2». Capçalera d'amfitrió rebuda: «%3» - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Interfície d'usuari de xarxa: capçalera d'amfitrió no vàlida. IP origen de la petició: «%1». Capçalera d'amfitrió rebuda: «%2» diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts index 779e32bbe..8105164fd 100644 --- a/src/lang/qbittorrent_cs.ts +++ b/src/lang/qbittorrent_cs.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion - Při dokončení překontrolovat torrenty + Po dokončení překontrolovat torrenty - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 Připojit dialog "Přidat nový torrent" k hlavnímu oknu - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ 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. @@ -1555,88 +1549,88 @@ Důvod: %2 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í @@ -1773,263 +1767,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? + Opravdu chcete odstranit vybraná pravidla stahování? - + 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 + Smazat vybraná 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. @@ -2099,12 +2093,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Corrupted resume data: %1 - + Poškozená data obnovení: %1 save_path is invalid - + save_path je neplatný @@ -2186,12 +2180,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Corrupted resume data: %1 - + Poškozená data obnovení: %1 save_path is invalid - + save_path je neplatný @@ -2225,503 +2219,503 @@ 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". - + 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 - + 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 - + 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 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" - + Duplicate torrent - + Duplicitní 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod %1 musí určovat správný port (od 1 do 65535). - + Usage: Používání: - + [options] [(<filename> | <url>)...] [volby] [(<filename> | <url>)...] - + Options: Možnosti: - + Display program version and exit Zobrazit verzi programu a skončit - + Display this help message and exit Zobrazit nápovědu a skončit @@ -2891,130 +2885,130 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Parametr '%1' musí dodržovat syntaxi '%1=%2' - + Confirm the legal notice Potvrďte právní upozornění - - + + port port - + Change the WebUI port Změnit port WebUI - + Change the torrenting port Změnit port pro torrent - + Disable splash screen Zakáže úvodní obrazovku - + Run in daemon-mode (background) Spustit na pozadí - + dir Use appropriate short form or abbreviation of "directory" adr - + Store configuration files in <dir> Uložit soubory konfigurace do <dir> - - + + name název - + Store configuration files in directories qBittorrent_<name> Uložit soubory konfigurace v adresářích qBittorrent_ <name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Vniknout do souborů libtorrent fastresume a vztáhnout cesty k souborům podle adresáře profilu - + files or URLs soubory nebo URL odkazy - + Download the torrents passed by the user Stáhnout soubory přidané uživatelem - + Options when adding new torrents: Volby při přidávání torrentů: - + path cesta - + Torrent save path Cesta uložení torrentu - + Add torrents as running or stopped Přidat torrenty jako běžící nebo zastavené - + Skip hash check Přeskočit kontrolu hashe - + Assign torrents to category. If the category doesn't exist, it will be created. Přiřadit torrenty do kategorie. Když kategorie neexistuje, bude vytvořena. - + Download files in sequential order Stahovat soubory v sekvenčním pořadí - + Download first and last pieces first Stáhnout nejprve první a poslední část - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Určit, zda se otevře dialog "Přidat nový torrent" když je torrent přidáván. - + 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: Hodnoty předvoleb mohou být zadány pomocí proměnných. Pro volt nazvanou 'parameter-name', je proměnná prostředí 'QBT_PARAMETER_NAME' (velkými písmeny, znak '-' je nahrazen znakem '_'). Pro předání stavové hodnoty nastavte proměnnou na '1' nebo 'TRUE'. Příklad vypnutí úvodní obrazovky: - + Command line parameters take precedence over environment variables Parametry příkazového řádku mají přednost před parametry proměnných prostředí - + Help Nápověda @@ -3137,12 +3131,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod CustomThemeSource - + Failed to load custom theme style sheet. %1 Selhalo načtení stylu vlastního stylu. %1 - + Failed to load custom theme colors. %1 Selhalo načtení barev vlastního motivu. %1 @@ -3150,7 +3144,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod DefaultThemeSource - + Failed to load default theme colors. %1 Selhalo načtení barev výchozího motivu. %1 @@ -3403,22 +3397,22 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod GUIAddTorrentManager - + Downloading torrent... Source: "%1" Stahování torrentu... Zdroj: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,383 +3940,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č - + Search has failed 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. - Úspěšná instalace Python. + Úspěch 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 - + 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í - - + + 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 @@ -5850,47 +5810,47 @@ Minimální požadavky: %2 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 @@ -6036,175 +5996,175 @@ Minimální požadavky: %2 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í) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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í - + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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) @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Použijte ';' pro oddělení více položek. Můžete použít masku & Zobrazit qBittorrent v oznamovací oblasti - + 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 @@ -6803,65 +6753,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 - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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é + + + 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 - + 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; @@ -7462,12 +7417,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ů): @@ -7487,183 +7442,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> @@ -7673,69 +7628,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. @@ -7746,18 +7701,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 @@ -7848,163 +7803,163 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale 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? + Opravdu chcete natrvalo zakázat vybrané 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 @@ -8052,12 +8007,12 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Unavailable pieces - Nedostupné díly + Nedostupné části Available pieces - Dostupné díly + Dostupné části @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Tyto pluginy byly vypnuty. Není oprávnění k zápisu pro cestu + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 - + No 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. - + 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 - + Web seed editing Úpravy webového zdroje - + Web seed URL: URL webového zdroje: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Tyto pluginy byly vypnuty. - + Item doesn't exist: %1. Položka neexistuje: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Nebylo možné přesunout adresář do sebe. - + 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: - Interval obnovení: - - - - sec - sec - - - - Default - Výchozí - - RSSWidget @@ -9031,61 +8987,101 @@ Tyto pluginy byly vypnuty. - Feed options... - + Edit feed URL... + Upravit adresu feedu... - + + Edit feed URL + 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 + + + + + Feed URL: + 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? + Určitě chcete smazat vybrané RSS feedy? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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 @@ -9199,142 +9195,168 @@ Tyto pluginy byly vypnuty. Velikost: - + Name i.e: file name Název - + Size i.e: file size Velikost - + Seeders i.e: Number of full sources Seedeři - + Leechers i.e: Number of partial sources Leecheři - + Filter search results... Filtrovat výsledky hledání... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Výsledky (zobrazuje <i>%1</i> z <i>%2</i>): - + Torrent names only Pouze názvy torrentů - + Everywhere Všude - + Use regular expressions Použijte regulární výrazy - + Open download window Otevřít okno stahování - + Download Stáhnout - + Open description page Otevřít stránku s popisem - + Copy Kopírovat - + Name Název - + Download link Download link - + Description page URL URL stránky s popisem - + Searching... Hledání... - + Search has finished Hledání dokončeno - + Search aborted Hledání zrušeno - + An error occurred during search... Během hledání nastala chyba... - + Search returned no results Nebyly nalezeny žádné výsledky - + Engine Vyhledávač - + Engine URL URL vyhledávače - + Published On Zveřejněno - + 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 @@ -9342,104 +9364,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') @@ -9465,94 +9487,94 @@ 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. - + <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 @@ -9560,32 +9582,32 @@ Klikněte na tlačítko "Vyhledávácí pluginy..." dole vpravo v okn 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" @@ -9983,77 +10005,67 @@ 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ě. - - 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 - - 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 @@ -10592,17 +10604,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. @@ -10694,7 +10706,7 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Align to piece boundary for files larger than: - Align to piece boundary for files larger than: + Zarovnání k hranici části u souborů větších než: @@ -10969,34 +10981,34 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. TorrentShareLimitsWidget - - - + + + Default Výchozí - - + + Unlimited Neomezeně - - + + Set to Nastavit na - + Seeding time: Čas seedování: - - + + @@ -11006,32 +11018,32 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. min - + Inactive seeding time: Čas neaktivního seedování: - + Action when the limit is reached: Akce při dosažení limitu: - + Stop torrent Zastavit torrent - + Remove torrent Odstranit torrent - + Remove torrent and its content Odebrat torrent a jeho obsah - + Enable super seeding for torrent Zapnout super seeding pro torrent @@ -11082,78 +11094,78 @@ 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í @@ -11173,39 +11185,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 @@ -11354,73 +11366,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ů @@ -11909,319 +11921,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? + Opravdu chcete překontrolovat vybrané torrenty? - + Rename Přejmenovat - + New name: Nový název: - + Choose save path Vybrat cestu uložení - + 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. - + 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ů? + Odebrat všechny štítky z vybraný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ý - + 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 - + Super seeding mode Mód super sdílení @@ -12276,18 +12288,18 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Změny v motivu UI nemohly být plně použity. Podrobnosti můžete najít v Logu. - + Couldn't save UI Theme configuration. Reason: %1 Nebylo možné uložit nastavení motivu UI. Důvod: %1 - - + + Couldn't remove icon file. File: %1. Nebylo možné odebrat soubor ikony. Soubor: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Nebylo možné zkopírovat soubor ikony. Zdroj: %1. Cíl: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: Zdrojové záhlaví a cílový původ nesouhlasí! Zdrojová IP: '%1'. Původní záhlaví: '%2'. Cílový zdroj: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Záhlaví refereru a cílový původ nesouhlasí! Zdrojová IP: '%1'. Původní záhlaví: '%2'. Cílový zdroj: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: Neplatné záhlaví hostitele, nesoulad portů. Požadavek zdroje IP: '%1'. Serverový port: '%2'. Obdrženo záhlaví hostitele: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Neplatné záhlaví hostitele. Požadavek zdroje IP: '%1'. Obdrženo záhlaví hostitele: '%2' diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index d5947fe2a..65ca1a728 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -231,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. + - Files checked @@ -364,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 @@ -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,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Gentjek torrents når de er færdige - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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. - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Årsag: %2 - + Torrent added Torrent tilføjet - + '%1' was added. e.g: xxx.avi was added. '%1' blev tilføjet. - + Download completed @@ -1555,88 +1549,88 @@ - + 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 @@ -1772,263 +1766,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. @@ -2224,503 +2218,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" @@ -2770,47 +2764,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 @@ -2859,27 +2853,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 skal angive en gyldig port (1 til 65535). - + Usage: Anvendelse: - + [options] [(<filename> | <url>)...] - + Options: Tilvalg: - + Display program version and exit Vis programversion og afslut - + Display this help message and exit Vis denne hjælpemeddelelse og afslut @@ -2890,130 +2884,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameteren '%1' skal følge syntaksen '%1=%2' - + Confirm the legal notice - - + + port port - + Change the WebUI port - + Change the torrenting port - + Disable splash screen Deaktivér splash-skærm - + Run in daemon-mode (background) Kør i dæmon-tilstand (i baggrunden) - + dir Use appropriate short form or abbreviation of "directory" mappe - + Store configuration files in <dir> Opbevar konfigurationsfiler i <dir> - - + + name navn - + Store configuration files in directories qBittorrent_<name> Opbevar konfigurationsfiler i mapper ved navn qBittorrent_<navn> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Hack ind i libtorrent fastresume-filer og gør filstierne relative til profilmappen - + files or URLs filer eller URL'er - + Download the torrents passed by the user Download torrents som brugeren har givet - + Options when adding new torrents: Tilvalg når der tilføjes nye torrents: - + path sti - + Torrent save path Gemmesti til torrent - + Add torrents as running or stopped - + Skip hash check Spring hashtjek over - + Assign torrents to category. If the category doesn't exist, it will be created. Tildel torrents til kategori. Hvis kategorien ikke findes, så oprettes den. - + Download files in sequential order Download filer i fortløbende rækkefølge - + Download first and last pieces first Download første og sidste stykker først - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Angiv om "Tilføj ny torrent"-dialogen åbnes når der tilføjes en 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: Tilvalgsværdier kan gives via miljøvariabler. For tilvalg ved navn 'parameterens-navn', er miljøvariablens navn 'QBT_PARAMETERENS_NAVN' (med store bogstaver, '-' erstattes med '_'). Sæt variablen til '1' eller 'TRUE', for at videregive flag-værdier. F.eks. for at deaktivere splash-skærmen: - + Command line parameters take precedence over environment variables Kommandolinjeparametre har forrang over miljøvariabler - + Help Hjælp @@ -3136,12 +3130,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 @@ -3149,7 +3143,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3402,22 +3396,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? @@ -3535,40 +3529,6 @@ 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 @@ -3959,12 +3919,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 @@ -3979,380 +3939,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 - + Search has failed Søgningen mislykkedes - + Search has finished 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 - + 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 - - + + 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 @@ -5846,47 +5806,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 @@ -6032,365 +5992,355 @@ Minimum requirement: %2. 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 - + 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 - + 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: - + 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. @@ -6399,37 +6349,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. @@ -6442,37 +6392,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 @@ -6585,99 +6535,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: @@ -6687,22 +6637,22 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*&apos Vis &qBittorrent i underretningsområdet - + 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 @@ -6797,64 +6747,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 @@ -6874,50 +6824,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". @@ -6934,506 +6884,511 @@ 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 + + + 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 - + 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 @@ -7443,12 +7398,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): @@ -7468,183 +7423,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 @@ -7654,69 +7609,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. @@ -7727,18 +7682,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 @@ -7829,163 +7784,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 @@ -8263,6 +8218,39 @@ Pluginsne blev deaktiveret. Weblink + + 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 + + + PreviewSelectDialog @@ -8344,6 +8332,15 @@ Pluginsne blev deaktiveret. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8552,124 +8549,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 - + No 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. - + 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 - + Web seed editing Redigering af webseed - + Web seed URL: Webseed-URL: @@ -8677,33 +8674,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 @@ -8711,22 +8708,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. @@ -8775,12 +8772,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" @@ -8802,117 +8799,76 @@ Pluginsne blev deaktiveret. - + Item doesn't exist: %1. Element findes ikke: %1. - Can't move a folder into itself or its subfolders. + Couldn't move folder into itself. - + 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 @@ -9012,61 +8968,101 @@ Pluginsne blev deaktiveret. - Feed options... + Edit feed URL... - + + 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9180,142 +9176,168 @@ Pluginsne blev deaktiveret. Størrelse: - + Name i.e: file name Navn - + Size i.e: file size Størrelse - + Seeders i.e: Number of full sources Seedere - + Leechers i.e: Number of partial sources Leechere - + Filter search results... Filtrer søgeresultater... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultater (viser <i>%1</i> ud af <i>%2</i>): - + Torrent names only Kun torrentnavne - + Everywhere Alle steder - + Use regular expressions Brug regulære udtryk - + Open download window - + Download Download - + Open description page Åbn beskrivelsesside - + Copy Kopiér - + Name Navn - + Download link Downloadlink - + Description page URL URL for beskrivelsesside - + Searching... Søger... - + Search has finished Søgningen er færdig - + Search aborted Søgning afbrudt - + An error occurred during search... Der opstod en fejl under søgningen... - + Search returned no results Søgningen gav ingen resultater - + Engine - + Engine URL - + Published On - + 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 @@ -9323,104 +9345,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') @@ -9446,94 +9468,94 @@ 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. - + <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 @@ -9541,32 +9563,32 @@ Klik på "Søg efter plugins..."-knappen nederst til højre i vinduet, 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" @@ -9964,77 +9986,67 @@ 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 @@ -10573,17 +10585,17 @@ Vælg venligst et andet navn og prøv igen. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10950,34 +10962,34 @@ Vælg venligst et andet navn og prøv igen. TorrentShareLimitsWidget - - - + + + Default Standard - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10987,32 +10999,32 @@ Vælg venligst et andet navn og prøv igen. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Fjern torrent - + Remove torrent and its content - + Enable super seeding for torrent Aktivér superseeding for torrent @@ -11063,78 +11075,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 @@ -11154,39 +11166,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 @@ -11335,73 +11347,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 @@ -11890,319 +11902,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. - + 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 - + 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 @@ -12257,18 +12269,18 @@ Vælg venligst et andet navn og prøv igen. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12334,32 +12346,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 @@ -12451,72 +12463,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Webgrænseflade: Origin-header og target-oprindelse matcher ikke! Kilde-IP: '%1'. Origin-header: '%2'. Target-oprindelse: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Webgrænseflade: Referer-header og target-oprindelse matcher ikke! Kilde-IP: '%1'. Referer-header: '%2'. Target-oprindelse: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Webgrænseflade: Ugyldig værtsheader, port matcher ikke. Anmodningens kilde-IP: '%1'. Serverport: '%2'. Modtog værtsheader: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Webgrænseflade: Ugyldig værtsheader. Anmodningens kilde-IP: '%1'. Modtog værtsheader: '%2' diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index 3f9d8d0c8..a2b5f8b6e 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -231,25 +231,25 @@ Bedingung für das Anhalten: - - + + None - Kein + Keine - - + + 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 @@ -351,12 +351,12 @@ Select All - Alle Wählen + Alle wählen Select None - Keine Wählen + Keine wählen @@ -364,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. - + 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. - + Filter files... Dateien filtern ... - + Parsing metadata... Analysiere Metadaten ... - + Metadata retrieval complete Abfrage der Metadaten komplett @@ -477,35 +477,35 @@ 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 Torrent 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 @@ -532,7 +532,7 @@ Note: the current defaults are displayed for reference. - Hinweis: Die Standardwerte sind nur als Referenz angezeigt. + Hinweis: Die Standardwerte werden nur als Referenz angezeigt. @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrents nach Abschluss der Übertragung erneut prüfen - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 Dialog "Neuen Torrent hinzufügen" an das Hauptfenster anhängen - + 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) - + 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. - + -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 - + DHT bootstrap nodes DHT-Bootstrap-Knotenpunkte - + I2P inbound quantity - i2p eingehende Tunnelanzahl + I2P eingehende Tunnelanzahl - + I2P outbound quantity - i2p ausgehende Tunnelanzahl + 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 @@ -1425,66 +1419,66 @@ 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. + Das Webinterface ist deaktiviert! Die Konfigurationsdatei manuell editieren, um es zu aktivieren. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Grund: '%2' - + Torrent added Torrent hinzugefügt - + '%1' was added. e.g: xxx.avi was added. '%1' wurde hinzugefügt. - + Download completed Download abgeschlossen @@ -1555,88 +1549,88 @@ Grund: '%2' 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 @@ -1773,263 +1767,263 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form &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. - + 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 ... - + 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 - + 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. @@ -2099,12 +2093,12 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Corrupted resume data: %1 - + Fortsetzungsdaten sind beschädigt: %1 save_path is invalid - + Speicherpfad ist ungültig @@ -2186,12 +2180,12 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Corrupted resume data: %1 - + Fortsetzungsdaten sind beschädigt: %1 save_path is invalid - + Speicherpfad ist ungültig @@ -2225,503 +2219,503 @@ 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". - + 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 Torrent wurde erkannt. Bestehender Torrent: %1. Ergebnis: %2 + + + 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. - + 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" + Konnte Tracker-Liste nicht aktualsieren. 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 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" - + Duplicate torrent - + Torrent duplizieren - - - - 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form %1 muss einen gültigen Port (zwischen 1 und 65535) angeben. - + Usage: Verwendung: - + [options] [(<filename> | <url>)...] - [Optionen] [(<filename> | <url>)...] + [Optionen] [(<filename> | <url>) ...] - + Options: Optionen: - + Display program version and exit Zeige die Programmversion und beende. - + Display this help message and exit Zeige diese Hilfe und beende. @@ -2891,130 +2885,130 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Parameter '%1' benötigt folgende Syntax: '%1=%2' - + Confirm the legal notice Bestätige den rechtlichen Hinweis - - + + port Port - + Change the WebUI port Ändere den Webinterface-Port - + Change the torrenting port Ändere den Torrent-Port - + Disable splash screen Deaktiviere Splash Screen - + Run in daemon-mode (background) Laufe im Hintergrund als Dienst - + dir Use appropriate short form or abbreviation of "directory" Verz. - + Store configuration files in <dir> Konfigurationsdateien in <dir> speichern - - + + name Name - + Store configuration files in directories qBittorrent_<name> Konfigurationsdateien in Verzeichnis qBittorrent_<name> speichern - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Modifiziere die libtorrent-Fortsetzungsdateien und mache die Pfade relativ zum Profilverzeichnis - + files or URLs Dateien oder URLs - + Download the torrents passed by the user Lade die vom Benutzer angebenen Torrents herunter - + Options when adding new torrents: Sobald ein Torrent hinzugefügt wird: - + path Pfad - + Torrent save path Speicherpfad für Torrent - + Add torrents as running or stopped Torrents als gestartet oder angehalten hinzufügen - + Skip hash check Prüfsummenkontrolle überspringen - + 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. - + Download files in sequential order Der Reihe nach downloaden - + Download first and last pieces first Erste und letzte Teile zuerst laden - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Lege fest ob der "Neuen Torrent hinzufügen"-Dialog beim Hinzufügen eines Torrents startet. - + 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: - + Command line parameters take precedence over environment variables Kommandozeilenparameter haben Vorrang vor Umgebungsvariablen - + Help Hilfe @@ -3137,12 +3131,12 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form CustomThemeSource - + Failed to load custom theme style sheet. %1 Konnte die angepasste Themen-Stil Datei nicht laden. %1 - + Failed to load custom theme colors. %1 Konnte die angepassten Themen-Farben nicht laden. %1 @@ -3150,7 +3144,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form DefaultThemeSource - + Failed to load default theme colors. %1 Konnte die Standard Themen-Farben nicht laden. %1 @@ -3176,13 +3170,13 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form 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? - Soll '%1' wirklich von der Transfer-Liste gelöscht werden? + Soll '%1' wirklich von der Übertragungsliste gelöscht werden? 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? - Sollen diese %1 Torrents wirklich von der Transfer-Liste gelöscht werden? + Sollen diese %1 Torrents wirklich von der Übertragungsliste gelöscht werden? @@ -3403,24 +3397,24 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form GUIAddTorrentManager - + Downloading torrent... Source: "%1" Lade Torrent herunter ... Quelle: "%1" - + 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? + Torrent '%1' befindet sich bereits in der Übertragungsliste. Sollen die Tracker von der neuen Quelle zusammengeführt werden? @@ -3536,40 +3530,6 @@ 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 @@ -3740,7 +3700,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Status &Bar - Status &Bar + Status&leiste @@ -3760,7 +3720,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form &RSS Reader - &RSS Reader + &RSS-Reader @@ -3785,7 +3745,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form &Do nothing - Nichts ändern + Nichts tun @@ -3960,12 +3920,12 @@ 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 @@ -3980,383 +3940,383 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form 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 - + Search has failed Suche fehlgeschlagen - + Search has finished 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. 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. 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. - - + + 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 - + 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". + 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 - - + + 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 @@ -5850,47 +5810,47 @@ Mindestens erforderlich ist: %2. 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 - + Email Notification Error: %1 Fehler bei der E-Mail Benachrichtigung: %1 @@ -6028,7 +5988,7 @@ Mindestens erforderlich ist: %2. <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/>bitte den <span style=" font-weight:600;">'Standardprogramme'</span>-Dialog in den <span style=" font-weight:600;">'Systemeinstellungen'</span> verwenden.</p></body></html> @@ -6036,175 +5996,175 @@ Mindestens erforderlich ist: %2. 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) - + 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 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 @@ -6213,190 +6173,180 @@ 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: - + 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 - + 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 + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6450,37 +6400,37 @@ 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. - + Upda&te my dynamic domain name Dynamischen Domainnamen akt&ualisieren @@ -6555,7 +6505,7 @@ Platzhalter '*' kann verwendet werden. Use qBittorrent for .torrent files - qBittorrent für .torrent Dateien verwenden + qBittorrent für .torrent-Dateien verwenden @@ -6593,101 +6543,101 @@ Platzhalter '*' kann verwendet werden. Lösche Sicherungen älter als: - + Show external IP in status bar - Externe IP in der Titelleiste anzeigen + Externe IP in der Statusleiste 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 - + 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: + .torrent-Dateien kopieren nach: @@ -6695,22 +6645,22 @@ Platzhalter '*' kann verwendet werden. &qBittorrent im Benachrichtigungsbereich anzeigen - + 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: + Kopiere die .torrent-Dateien von beendeten Downloads nach: - + Pre-allocate disk space for all files Allen Dateien Speicherplatz im Vorhinein zuweisen @@ -6779,7 +6729,7 @@ Platzhalter '*' kann verwendet werden. Inhibit system sleep when torrents are seeding - Schlafmodus verhindern, solange Torrents noch uploaden + Schlafmodus verhindern, solange Torrents noch hochladen @@ -6805,65 +6755,65 @@ Platzhalter '*' kann verwendet werden. Jahre - + Log performance warnings Leistungswarnungen protokollieren - + 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 + .!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. @@ -6883,50 +6833,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". @@ -6955,506 +6905,511 @@ 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 - + Show console window Konsolenfenster anzeigen - + TCP and μTP TCP und μTP - + Listening Port - Port auf dem gelauscht wird + 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! + + + Filter path (.dat, .p2p, .p2b): Filterpfad (.dat, .p2p, .p2b): - + Reload the filter Filter neu laden - + Manually banned IP addresses... 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 - + 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 - + 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. - + 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 - + 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 - + 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. @@ -7464,12 +7419,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): @@ -7489,183 +7444,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. - + 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. @@ -7675,69 +7630,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. @@ -7748,18 +7703,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 @@ -7850,163 +7805,163 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt', aber 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 + Heruntergeladen - + 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 @@ -8285,6 +8240,39 @@ 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 @@ -8366,6 +8354,15 @@ Diese Plugins wurden jetzt aber deaktiviert. Keine Schreibberechtigung für den Pfad + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8404,7 +8401,7 @@ Diese Plugins wurden jetzt aber deaktiviert. Downloaded: - Runtergeladen: + Heruntergeladen: @@ -8500,12 +8497,12 @@ Diese Plugins wurden jetzt aber deaktiviert. Select All - Alle Wählen + Alle wählen Select None - Keine Wählen + Keine wählen @@ -8574,124 +8571,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 - + No 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. - + 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 - + Web seed editing Webseed editieren - + Web seed URL: Webseed-URL: @@ -8699,33 +8696,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 @@ -8733,22 +8730,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. @@ -8797,12 +8794,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" @@ -8824,117 +8821,76 @@ Diese Plugins wurden jetzt aber deaktiviert. - + Item doesn't exist: %1. Das existiert nicht: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Verzeichnis kann nicht in sich selbst verschoben werden. - + 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: - Aktualisierungsintervall: - - - - sec - Sek. - - - - Default - Standard - - RSSWidget @@ -9034,61 +8990,101 @@ 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 Bitte einen Verzeichnisnamen wählen - + Folder name: Verzeichnisname: - + New folder Neues Verzeichnis - + + + Please type a RSS feed URL + Bitte eine RSS-Feed Adresse eingeben + + + + + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9098,7 +9094,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 benutzen zu können. @@ -9202,142 +9198,168 @@ Diese Plugins wurden jetzt aber deaktiviert. Größe: - + Name i.e: file name Name - + Size i.e: file size Größe - + Seeders i.e: Number of full sources Seeder - + Leechers i.e: Number of partial sources Leecher - + Filter search results... Dateien filtern ... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Ergebnisse (zeige <i>%1</i> von <i>%2</i>): - + Torrent names only Nur Torrent-Namen - + Everywhere Überall - + Use regular expressions Reguläre Ausdrücke verwenden - + Open download window Das Download-Fenster öffnen - + Download Download - + Open description page Beschreibungsseite öffnen - + Copy Kopieren - + Name Name - + Download link Download-Link - + Description page URL Beschreibungsseiten-URL - + Searching... Suche ... - + Search has finished Suche abgeschlossen - + Search aborted Suche abgebrochen - + An error occurred during search... Während der Suche ist ein Fehler aufgetreten ... - + Search returned no results Suche lieferte keine Ergebnisse - + Engine Engine - + Engine URL Engine-URL - + Published On Veröffentlicht am - + Column visibility Spaltensichtbarkeit - + Resize columns Spaltenbreite ändern - + Resize all non-hidden columns to the size of their contents Ändere alle sichtbaren Spalten in der Breite nach Inhalt @@ -9345,104 +9367,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') @@ -9468,94 +9490,94 @@ Wähle den "Such-Plugins ..."-Knopf unten rechts aus, um welche zu ins 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. - + <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 benutzen zu können. - + Empty search pattern Leere Suchanfrage - + Please type a search pattern first Bitte zuerst eine Suchanfrage eingeben - + Stop Stopp @@ -9563,32 +9585,32 @@ Wähle den "Such-Plugins ..."-Knopf unten rechts aus, um welche zu ins SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - Konnte gespeicherte Suchfenster-Statusdaten nicht laden. Datei: "%1“. Fehler: "%2“ + Gespeicherte Suchfenster-Statusdaten konnten nicht geladen werden. 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“ @@ -9751,12 +9773,12 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Payload Upload - Nutzerdaten Upload + Nutzerdaten-Upload Payload Download - Nutzerdaten Download + Nutzerdaten-Download @@ -9781,12 +9803,12 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Tracker Upload - Tracker Upload + Tracker-Upload Tracker Download - Tracker Download + Tracker-Download @@ -9849,12 +9871,12 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Payload Upload - Nutzerdaten Upload + Nutzerdaten-Upload Payload Download - Nutzerdaten Download + Nutzerdaten-Download @@ -9879,12 +9901,12 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Tracker Upload - Tracker Upload + Tracker-Upload Tracker Download - Tracker Download + Tracker-Download @@ -9950,7 +9972,7 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Total buffer size: - Gesamte Buffergröße: + Gesamte Puffergröße: @@ -9987,79 +10009,69 @@ 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. - - 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 - - Free space: - - - - + 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 + Klicken, um zu den regulären Geschwindigkeitsbegrenzungen zu wechseln @@ -10113,7 +10125,7 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Stalled Uploading (0) - Verzögerter Upload (0) + Verzögertes Hochladen (0) @@ -10203,7 +10215,7 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Stalled Uploading (%1) - Verzögerter Upload (%1) + Verzögertes Hochladen (%1) @@ -10595,17 +10607,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 @@ -10687,7 +10699,7 @@ Please choose a different name and try again. Ignore share ratio limits for this torrent - Ignoriere das Shareverhältnis-Limit für diese Torrent + Ignoriere das Shareverhältnis-Limit für diesen Torrent @@ -10972,34 +10984,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Standard - - + + Unlimited Unbegrenzt - - + + Set to Einstellen auf - + Seeding time: Seed-Zeit: - - + + @@ -11009,32 +11021,32 @@ Please choose a different name and try again. Min. - + Inactive seeding time: Inaktive Seed-Zeit: - + Action when the limit is reached: Aktion, wenn das Limit erreicht ist: - + Stop torrent Torrent anhalten - + Remove torrent Torrent entfernen - + Remove torrent and its content Entferne Torrent und seine Inhalte - + Enable super seeding for torrent Super-Seeding für Torrent aktivieren @@ -11085,78 +11097,78 @@ 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 @@ -11176,39 +11188,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 @@ -11357,73 +11369,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 @@ -11770,7 +11782,7 @@ Please choose a different name and try again. Downloaded Amount of data downloaded (e.g. in MB) - Runtergeladen + Heruntergeladen @@ -11912,319 +11924,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 - + 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. - + 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 - + 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 + Erzwungene erneute Anmeldung ist nicht möglich, wenn der Torrent gestoppt/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, dass diverse Torrent-Eigenschaften (z.B. der Speicherpfad) durch die gewählte Kategorie vorgegeben werden. - + Super seeding mode Super-Seeding-Modus @@ -12279,18 +12291,18 @@ Please choose a different name and try again. Die Änderungen am UI-Thema konnten nicht vollständig übernommen werden. Details dazu stehen im Protokoll. - + Couldn't save UI Theme configuration. Reason: %1 Die Konfigurationsdatei des UI-Themas konnte nicht gespeichert werden. Grund: %1 - - + + Couldn't remove icon file. File: %1. Konnte Icon-Datei nicht entfernen. Datei: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Konnte Icon-Datei nicht kopieren. Quelle: %1. Ziel: %2. @@ -12356,32 +12368,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. @@ -12473,72 +12485,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Webinterface: Ursprungs-Header & -Ziel stimmen nicht überein! Quell-IP: '%1'. Ursprungs-Header: '%2'. Ziel-Ursprung: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Webinterface: Referenz-Header & -Ziel stimmen nicht überein! Quell-IP: '%1'. Referenz-Header: '%2'. Ziel-Ursprung: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Webinterface: Ungültiger Host-Header, Ports stimmen nicht überein. Angefragte Quell-IP: '%1'. Server-Port: '%2'. Empfangener Host-Header: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Webinterface: Ungültiger Host-Header. Angefragte Quell-IP: '%1'. Empfangener Host-Header: '%2' @@ -12609,7 +12621,7 @@ Please choose a different name and try again. TiB tebibytes (1024 gibibytes) - TB + TiB diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index 6837132e0..3b48f8dff 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -231,25 +231,25 @@ Συνθήκη διακοπής: - - + + None Κανένα - - + + Metadata received Ληφθέντα μεταδεδομένα - + Torrents that have metadata initially will be added as stopped. Τα torrents που έχουν μεταδεδομένα εξαρχής θα προστεθούν ως σταματημένα. + - Files checked Ελεγμένα αρχεία @@ -364,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 Η ανάκτηση μεταδεδομένων ολοκληρώθηκε @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Επανέλεγχος των torrents μετά την ολοκλήρωση - - + + ms milliseconds ms @@ -699,686 +699,680 @@ Τιμή - + (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 Επισυνάψτε το παράθυρο διαλόγου "Προσθήκη νέου torrent" στο κύριο παράθυρο - + 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 - + -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 @@ -1425,64 +1419,64 @@ Γίνεται χρήση του καταλόγου διαμόρφωσης: %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, επεξεργαστείτε χειροκίνητα το αρχείο ρυθμίσεων. @@ -1497,34 +1491,34 @@ Απέτυχε η εκτέλεση εξωτερικού προγράμματος. 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'. @@ -1533,18 +1527,18 @@ Αιτία: %2 - + Torrent added Το torrent προστέθηκε - + '%1' was added. e.g: xxx.avi was added. Το '%1' προστέθηκε. - + Download completed Η λήψη ολοκληρώθηκε @@ -1555,88 +1549,88 @@ Το 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 είναι έτοιμο να πραγματοποιήσει έξοδο @@ -1773,263 +1767,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. θα εξαιρέσει όλα τα άρθρα. @@ -2225,503 +2219,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 Υποστήριξη Ανακάλυψης Τοπικών 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". - + 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 cannot be merged because it is a private torrent Δεν είναι δυνατή η συγχώνευση των Trackers επειδή είναι ιδιωτικός torrent - + Trackers are merged from new source Οι 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 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" - + Duplicate torrent - + Αντιγραφή 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. - + 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". Σφάλμα: "Μη έγκυρη μορφή δεδομένων" - + %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" Ελήφθη μήνυμα σφάλματος από 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Το %1 πρέπει να καθορίσει μια έγκυρη θύρα (1 έως 65535). - + Usage: Χρήση: - + [options] [(<filename> | <url>)...] [επιλογές] [(<filename> | <url>)...] - + Options: Επιλογές: - + Display program version and exit Εμφάνιση έκδοσης προγράμματος και έξοδος - + Display this help message and exit Εμφάνιση αυτού του μηνύματος βοήθειας και έξοδο @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Η παράμετρος '%1' πρέπει να ακολουθεί τη σύνταξη '%1=%2' - + Confirm the legal notice Επιβεβαιώστε τη νομική ειδοποίηση - - + + port θύρα - + Change the WebUI port Αλλάξτε τη θύρα WebUI - + Change the torrenting port Αλλαγή της θύρας του torrenting - + Disable splash screen Απενεργοποίηση οθόνης εκκίνησης - + Run in daemon-mode (background) Εκτέλεση σε λειτουργία daemon (παρασκήνιο) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Αποθήκευση αρχείων διαμόρφωσης σε <dir> - - + + name όνομα - + Store configuration files in directories qBittorrent_<name> Αποθήκευση αρχείων διαμόρφωσης σε καταλόγους qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Κάντε hack στα fastresume αρχεία του libtorrent και κάντε τις διαδρομές των αρχείων σχετικές με τον κατάλογο του προφίλ - + files or URLs αρχεία ή URLs - + Download the torrents passed by the user Λήψη των torrents που δόθηκαν από τον χρήστη - + Options when adding new torrents: Επιλογές όταν προστίθενται νέα torrents: - + path διαδρομή - + Torrent save path Διαδρομή αποθήκευσης torrent - + Add torrents as running or stopped Προσθήκη torrents ως εκκινημένα ή σε διακοπή - + Skip hash check Παράλειψη ελέγχου hash - + Assign torrents to category. If the category doesn't exist, it will be created. Αναθέστε torrents σε μια κατηγορία. Αν η κατηγορία δεν υπάρχει, θα δημιουργηθεί. - + Download files in sequential order Λήψη αρχείων με διαδοχική σειρά - + Download first and last pieces first Λήψη των πρώτων και των τελευταίων κομματιών πρώτα - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Καθορίστε εάν ο διάλογος «Προσθήκη νέου Torrent» θα ανοίγει όταν προσθέτετε ένα 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: Οι τιμές των επιλογών ενδέχεται να παρέχονται από τις μεταβλητές περιβάλλοντος. Για επιλογή με την ονομασία «onoma-parametrou», η μεταβλητή περιβάλλοντος έχει ονομασία «QBT_ONOMA_PARAMETROU» (στα κεφαλαία το «-» αντικαθίσταται με «_»). Για να στείλετε τιμές σήμανσης ορίστε την μεταβλητή σε «1» ή «TRUE». Για παράδειγμα, για να απενεργοποιήσετε της οθόνης εκκίνησης: - + Command line parameters take precedence over environment variables Οι παράμετροι της γραμμής εντολών υπερισχύουν των μεταβλητών περιβάλλοντος - + Help Βοήθεια @@ -3137,12 +3131,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 Αποτυχία φόρτωσης του προσαρμοσμένου φύλλου στυλ του θέματος. %1 - + Failed to load custom theme colors. %1 Αποτυχία φόρτωσης προσαρμοσμένων χρωμάτων θέματος. %1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Αποτυχία φόρτωσης των προεπιλεγμένων χρωμάτων του θέματος. %1 @@ -3403,22 +3397,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. Οι trackers δεν μπορούν να ενωθούν γιατί αυτό είναι ένα private torrent - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Το torrent '%1' υπάρχει ήδη στη λίστα λήψεων. Θέλετε να γίνει συγχώνευση των tracker από τη νέα πηγή; @@ -3536,40 +3530,6 @@ 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 @@ -3780,7 +3740,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + &Τερματισμός Συστήματος @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Εμφάνιση - + Check for program updates Έλεγχος για ενημερώσεις προγράμματος @@ -3980,382 +3940,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. - + Κώδικας εξόδου: %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 Σφάλμα λήψης - - + + 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 @@ -5849,47 +5809,47 @@ Minimum requirement: %2. 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 @@ -6035,175 +5995,175 @@ Minimum requirement: %2. 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 (πειραματικό) - + Mixed mode Μικτή λειτουργία - + + Some options are incompatible with the chosen proxy type! + Ορισμένες επιλογές δεν είναι συμβατές με τον επιλεγμένο τύπο 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 @@ -6212,190 +6172,180 @@ 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 ολοκληρωθεί - + 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 - + 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: - + 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. @@ -6404,37 +6354,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 Απενεργοποιημένο - + 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. @@ -6447,37 +6397,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 &Ενημέρωση του δυναμικού ονόματος τομέα μου @@ -6590,99 +6540,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 στο: @@ -6692,22 +6642,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Εμφάνιση του &qBittorrent στην περιοχή ειδοποιήσεων - + 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 Προ-εντοπισμός χώρου στο δίσκο για όλα τα αρχεία @@ -6802,65 +6752,65 @@ 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 Εάν το αρχείο .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 Επιλύστε τη σχετική Διαδρομή Αποθήκευσης έναντι της κατάλληλης διαδρομής Κατηγορίας, αντί για την Προεπιλεγμένη @@ -6880,50 +6830,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". @@ -6952,506 +6902,511 @@ 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 Εκτέλεση εξωτερικού προγράμμματος - + 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 Αλλαγή τρέχοντος κωδικού πρόσβασης - + 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; @@ -7461,12 +7416,12 @@ readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά Επιλέξτε αρχείο Θέματος του qBittorrent UI - + Choose Alternative UI files location Επιλέξτε εναλλακτική τοποθεσία αρχείων του UI - + Supported parameters (case sensitive): Υποστηριζόμενοι παράμετροι (διάκριση πεζών): @@ -7486,183 +7441,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> @@ -7672,69 +7627,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 κανόνες. @@ -7745,18 +7700,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 Σφάλμα Μήκους @@ -7847,163 +7802,163 @@ readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά 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:θύρα @@ -8281,6 +8236,39 @@ 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 @@ -8362,6 +8350,15 @@ Those plugins were disabled. Δεν έχει δικαίωμα εγγραφής στη διαδρομή + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8570,124 +8567,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. - + 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 - + Web seed URL: URL του Web seed: @@ -8695,33 +8692,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 @@ -8729,22 +8726,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'. Εκκίνηση ανάλυσης. @@ -8793,12 +8790,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" @@ -8820,117 +8817,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Το στοιχείο δεν υπάρχει: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Δεν ήταν δυνατή η μετακίνηση του φακέλου στον εαυτό του. - + 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 @@ -9030,61 +8986,101 @@ Those plugins were disabled. - Feed options... - + Edit feed URL... + Επεξεργασία URL ροής... - + + Edit feed URL + Επεξεργασία URL ροής + + + Please choose a folder name Παρακαλώ επιλέξτε ένα όνομα φακέλου - + Folder name: Όνομα φακέλου: - + New folder Νέος φάκελος - + + + Please type a RSS feed URL + Παρακαλώ εισάγετε ένα URL ροής RSS + + + + + Feed URL: + URL ροής: + + + Deletion confirmation Επιβεβαίωση διαγραφής - + Are you sure you want to delete the selected RSS feeds? Είστε σίγουροι ότι θέλετε να διαγράψετε τις επιλεγμένες ροές RSS; - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed Παρακαλώ επιλέξτε ένα νέο όνομα για αυτή την ροή RSS - + New feed name: Νέο όνομα ροής: - + Rename failed Η μετονομασία απέτυχε - + Date: Ημερομηνία: - + Feed: Τροφοδοσία: - + Author: Δημιουργός: @@ -9198,142 +9194,168 @@ Those plugins were disabled. Μέγεθος: - + Name i.e: file name Όνομα - + Size i.e: file size Μέγεθος - + Seeders i.e: Number of full sources Seeders - + Leechers i.e: Number of partial sources Leechers - + Filter search results... Φίλτρο αποτελεσμάτων αναζήτησης... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Αποτελέσματα (εμφανίζονται <i>%1</i> από <i>%2</i>): - + Torrent names only Ονόματα αρχείων torrent μόνο - + Everywhere Παντού - + Use regular expressions Χρήση κανονικών εκφράσεων - + Open download window Άνοιγμα παράθυρου λήψης - + Download Λήψη - + Open description page Άνοιγμα σελίδας περιγραφής - + Copy Αντιγραφή - + Name Όνομα - + Download link Σύνδεσμος λήψης - + Description page URL URL σελίδας περιγραφής - + Searching... Αναζήτηση... - + Search has finished Η αναζήτηση ολοκληρώθηκε - + Search aborted Η αναζήτηση διακόπηκε - + An error occurred during search... Προέκυψε ένα σφάλμα κατά την αναζήτηση... - + Search returned no results Η αναζήτηση δεν επέστρεψε κάποιο αποτέλεσμα - + Engine Engine - + Engine URL Engine URL - + Published On Δημοσιεύτηκε Στις - + Column visibility Ορατότητα στήλης - + Resize columns Αλλαγή μεγέθους στηλών - + Resize all non-hidden columns to the size of their contents Αλλαγή του μεγέθους όλων των μη κρυφών στηλών στο μέγεθος του περιεχομένου τους @@ -9341,104 +9363,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') @@ -9464,94 +9486,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 <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 Διακοπή @@ -9559,32 +9581,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" @@ -9982,77 +10004,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. Χωρίς απευθείας συνδέσεις. Αυτό μπορεί να αποτελεί ένδειξη προβλημάτων των παραμέτρων του δικτύου. - - 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 Σε σύνδεση - - 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 Κλικ για αλλαγή σε κανονικά όρια ταχύτητας @@ -10274,7 +10286,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + Προσθήκη ετικέτας @@ -10591,17 +10603,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Πάρα πολλές ενεργές εργασίες - + Torrent creation is still unfinished. Η δημιουργία του torrent είναι ακόμα ημιτελής. - + Torrent creation failed. Αποτυχία δημιουργίας του torrent @@ -10968,34 +10980,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Προεπιλογή - - + + Unlimited Απεριόριστο - - + + Set to Ορισμός σε - + Seeding time: Χρόνος seeding: - - + + @@ -11005,32 +11017,32 @@ Please choose a different name and try again. λεπτά - + Inactive seeding time: Χρόνος που δεν γίνεται seeding - + Action when the limit is reached: Ενέργεια όταν συμπληρωθεί το όριο: - + Stop torrent Διακοπή torrent - + Remove torrent Αφαίρεση torrent - + Remove torrent and its content Αφαίρεση torrent και του περιεχομένου του - + Enable super seeding for torrent Ενεργοποίηση super seeding για το torrent @@ -11050,7 +11062,7 @@ Please choose a different name and try again. Add tag - + Προσθήκη ετικέτας @@ -11081,78 +11093,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 Αδυναμία δημιουργίας διαδρομής αποθήκευσης @@ -11172,39 +11184,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 Λανθασμένο όνομα κατηγορίας @@ -11353,73 +11365,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 Ορατότητα στήλης @@ -11908,319 +11920,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 Επιλέξτε διαδρομή αποθήκευσης - + 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); Μπορεί να μετεγκατασταθούν. - + 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' δεν είναι έγκυρο. - + 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 (π.χ. διαδρομή αποθήκευσης) θα καθοριστούν από την συσχετισμένη κατηγορία. - + Super seeding mode Λειτουργία super seeding @@ -12275,18 +12287,18 @@ Please choose a different name and try again. Οι αλλαγές στο Θέμα του UI δεν μπόρεσαν να εφαρμοστούν πλήρως. Οι λεπτομέρειες μπορούν να βρεθούν στο Αρχείο καταγραφής. - + Couldn't save UI Theme configuration. Reason: %1 Δεν ήταν δυνατή η αποθήκευση των ρυθμίσεων στο Θέμα του UI. Αιτία: %1 - - + + Couldn't remove icon file. File: %1. Δεν ήταν δυνατή η κατάργηση του αρχείου εικονιδίου. Αρχείο: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Δεν ήταν δυνατή η αντιγραφή του αρχείου εικονιδίου. Πηγή: %1. Προορισμός: %2. @@ -12352,32 +12364,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 @@ -12469,72 +12481,72 @@ 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. Άγνωστο σφάλμα. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: Αναντιστοιχία προέλευσης κεφαλίδας & προέλευσης στόχου! Πηγή IP: '%1'. Προέλευση κεφαλίδας : '%2'. Προέλευση στόχου: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Αναντιστοιχία κεφαλίδας referer & προέλευση στόχου! Πηγή IP: '%1'. Κεφαλίδα referer : '%2'. Προέλευση στόχου: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: Μη έγκυρη κεφαλίδα Host, αναντιστοιχία θυρών. IP προέλευσης αιτήματος: '%1'. Θύρα εξυπηρετητή: '%2'. Κεφαλίδα Host που ελήφθη: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Μη έγκυρη κεφαλίδα Host. IP προέλευσης αιτήματος: '%1'. Κεφαλίδα Host που ελήφθη: '%2' diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index ffee3b25d..7cffdc14f 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 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,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB - + Recheck torrents on completion - - + + ms milliseconds @@ -699,686 +699,680 @@ - + (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 @@ -1425,64 +1419,64 @@ - + 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1532,18 +1526,18 @@ - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed @@ -1554,88 +1548,88 @@ - + 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 @@ -1771,263 +1765,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. @@ -2223,503 +2217,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" @@ -2769,47 +2763,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 @@ -2858,27 +2852,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: - + [options] [(<filename> | <url>)...] - + Options: - + Display program version and exit - + Display this help message and exit @@ -2889,130 +2883,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + 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 running or stopped - + Skip hash check - + 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 @@ -3135,12 +3129,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 @@ -3148,7 +3142,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3401,22 +3395,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? @@ -3534,40 +3528,6 @@ 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 @@ -3958,12 +3918,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show - + Check for program updates @@ -3978,378 +3938,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 @@ -5843,47 +5803,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 @@ -6029,402 +5989,392 @@ 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. @@ -6433,37 +6383,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 @@ -6576,99 +6526,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: @@ -6678,22 +6628,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 @@ -6788,64 +6738,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 @@ -6865,50 +6815,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". @@ -6925,506 +6875,511 @@ 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 @@ -7434,12 +7389,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7459,183 +7414,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 @@ -7645,69 +7600,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 @@ -7718,18 +7673,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 @@ -7820,163 +7775,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 @@ -8253,6 +8208,39 @@ 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 @@ -8334,6 +8322,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8542,124 +8539,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: @@ -8667,33 +8664,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 @@ -8701,22 +8698,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. @@ -8765,12 +8762,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" @@ -8792,117 +8789,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - - - - - Refresh interval: - - - - - sec - - - - - Default - - - RSSWidget @@ -9002,61 +8958,101 @@ 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 + + + + + + Feed URL: + + + + Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed - + New feed name: - + Rename failed - + Date: - + Feed: - + Author: @@ -9170,142 +9166,168 @@ Those plugins were disabled. - + Name i.e: file name - + Size i.e: file size - + Seeders i.e: Number of full sources - + Leechers i.e: Number of partial sources - + Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + 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 - + Open description page - + Copy - + 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 @@ -9313,104 +9335,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') @@ -9435,94 +9457,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 @@ -9530,32 +9552,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" @@ -9953,77 +9975,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. - - 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 @@ -10559,17 +10571,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10936,34 +10948,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10973,32 +10985,32 @@ Please choose a different name and try again. - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent - + Remove torrent and its content - + Enable super seeding for torrent @@ -11049,78 +11061,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 @@ -11140,39 +11152,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 @@ -11316,73 +11328,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 @@ -11871,319 +11883,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 @@ -12238,18 +12250,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12315,32 +12327,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 @@ -12432,72 +12444,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_en_AU.ts b/src/lang/qbittorrent_en_AU.ts index a4f8e49d1..e952237b3 100644 --- a/src/lang/qbittorrent_en_AU.ts +++ b/src/lang/qbittorrent_en_AU.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Recheck torrents on completion - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Reason: %2 - + Torrent added Torrent added - + '%1' was added. e.g: xxx.avi was added. '%1' was added. - + Download completed Download completed @@ -1555,88 +1549,88 @@ 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,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". - + 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 - + 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 - + 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 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 must specify a valid port (1 to 65535). - + Usage: Usage: - + [options] [(<filename> | <url>)...] [options] [(<filename> | <url>)...] - + Options: Options: - + Display program version and exit Display program version and exit - + Display this help message and exit Display this help message and exit @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' - + Confirm the legal notice Confirm the legal notice - - + + port port - + Change the WebUI port Change the WebUI port - + Change the torrenting port Change the torrenting port - + Disable splash screen Disable splash screen - + Run in daemon-mode (background) Run in daemon-mode (background) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Store configuration files in <dir> - - + + name name - + Store configuration files in directories qBittorrent_<name> Store configuration files in directories qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Hack into libtorrent fast-resume files and make file paths relative to the profile directory - + files or URLs files or URLs - + Download the torrents passed by the user Download the torrents passed by the user - + Options when adding new torrents: Options when adding new torrents: - + path path - + Torrent save path Torrent save path - + Add torrents as running or stopped - + Skip hash check Skip hash check - + Assign torrents to category. If the category doesn't exist, it will be created. Assign torrents to category. If the category doesn't exist, it will be created. - + Download files in sequential order Download files in sequential order - + Download first and last pieces first Download first and last pieces first - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. 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: 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 Command line parameters take precedence over environment variables - + Help Help @@ -3137,12 +3131,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 style sheet. %1 - + Failed to load custom theme colors. %1 Failed to load custom theme colors. %1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Failed to load default theme colors. %1 @@ -3403,22 +3397,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" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,382 +3940,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 has failed Search has failed - + 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 - + 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 - - + + 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 @@ -5849,47 +5809,47 @@ Minimum requirement: %2. 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 @@ -6035,175 +5995,175 @@ Minimum requirement: %2. 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) - + 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 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 @@ -6212,190 +6172,180 @@ 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 - + 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 - + 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: - + 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. @@ -6404,37 +6354,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 - + 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. @@ -6447,37 +6397,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 @@ -6590,99 +6540,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: @@ -6692,22 +6642,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Show &qBittorrent in notification area - + 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 @@ -6802,65 +6752,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.years - + Log performance warnings Log performance warnings - + 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 @@ -6880,50 +6830,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". @@ -6952,506 +6902,511 @@ 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 - + 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 + + + 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 - + 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 @@ -7461,12 +7416,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): @@ -7486,183 +7441,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 @@ -7672,69 +7627,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. @@ -7745,18 +7700,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 @@ -7847,163 +7802,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 @@ -8281,6 +8236,39 @@ 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 @@ -8362,6 +8350,15 @@ Those plugins were disabled. Don't have write permission to path + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8570,124 +8567,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 - + 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. - + 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 - + Web seed editing Web seed editing - + Web seed URL: Web seed URL: @@ -8695,33 +8692,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 @@ -8729,22 +8726,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. @@ -8793,12 +8790,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" @@ -8820,117 +8817,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Couldn't move folder into itself. - + 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: - Refresh interval: - - - - sec - sec - - - - Default - Default - - RSSWidget @@ -9030,61 +8986,101 @@ Those plugins were disabled. - Feed options... - + 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 + + + + + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9198,142 +9194,168 @@ Those plugins were disabled. Size: - + Name i.e: file name Name - + Size i.e: file size Size - + Seeders i.e: Number of full sources Seeders - + Leechers i.e: Number of partial sources Leechers - + Filter search results... Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Results (showing <i>%1</i> out of <i>%2</i>): - + Torrent names only Torrent names only - + Everywhere Everywhere - + Use regular expressions Use regular expressions - + Open download window Open download window - + Download Download - + Open description page Open description page - + Copy Copy - + Name Name - + Download link Download link - + Description page URL Description page URL - + Searching... Searching... - + Search has finished Search has finished - + Search aborted Search aborted - + An error occurred during search... An error occurred during search... - + Search returned no results Search returned no results - + Engine - + Engine URL - + Published On - + 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 @@ -9341,104 +9363,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') @@ -9464,94 +9486,94 @@ 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. - + <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 @@ -9559,32 +9581,32 @@ Click the "Search plug-ins..." button at the bottom right of the windo 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" @@ -9982,77 +10004,67 @@ 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 @@ -10591,17 +10603,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. @@ -10968,34 +10980,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Default - - + + Unlimited Unlimited - - + + Set to Set to - + Seeding time: Seeding time: - - + + @@ -11005,32 +11017,32 @@ Please choose a different name and try again. min - + Inactive seeding time: Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Remove torrent - + Remove torrent and its content - + Enable super seeding for torrent Enable super seeding for torrent @@ -11081,78 +11093,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 @@ -11172,39 +11184,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 @@ -11353,73 +11365,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 @@ -11908,319 +11920,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 - + 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. - + 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 - + 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 - + Super seeding mode Super seeding mode @@ -12275,18 +12287,18 @@ Please choose a different name and try again. 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 save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Couldn't copy icon file. Source: %1. Destination: %2. @@ -12352,32 +12364,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 @@ -12469,72 +12481,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' 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: 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, 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' WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' diff --git a/src/lang/qbittorrent_en_GB.ts b/src/lang/qbittorrent_en_GB.ts index eb34cec27..353c3ba81 100644 --- a/src/lang/qbittorrent_en_GB.ts +++ b/src/lang/qbittorrent_en_GB.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Recheck torrents on completion - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Reason: %2 - + Torrent added Torrent added - + '%1' was added. e.g: xxx.avi was added. '%1' was added. - + Download completed Download completed @@ -1555,88 +1549,88 @@ 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,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". - + 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 - + 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 - + 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 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" - + 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 must specify a valid port (1 to 65535). - + Usage: Usage: - + [options] [(<filename> | <url>)...] [options] [(<filename> | <url>)...] - + Options: Options: - + Display program version and exit Display program version and exit - + Display this help message and exit Display this help message and exit @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' - + Confirm the legal notice Confirm the legal notice - - + + port port - + Change the WebUI port Change the WebUI port - + Change the torrenting port Change the torrenting port - + Disable splash screen Disable splash screen - + Run in daemon-mode (background) Run in daemon-mode (background) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Store configuration files in <dir> - - + + name name - + Store configuration files in directories qBittorrent_<name> Store configuration files in directories qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Hack into libtorrent fast-resume files and make file paths relative to the profile directory - + files or URLs files or URLs - + Download the torrents passed by the user Download the torrents passed by the user - + Options when adding new torrents: Options when adding new torrents: - + path path - + Torrent save path Torrent save path - + Add torrents as running or stopped Add torrents as running or stopped - + Skip hash check Skip hash check - + Assign torrents to category. If the category doesn't exist, it will be created. Assign torrents to category. If the category doesn't exist, it will be created. - + Download files in sequential order Download files in sequential order - + Download first and last pieces first Download first and last pieces first - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. 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: 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 Command line parameters take precedence over environment variables - + Help Help @@ -3137,12 +3131,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 style sheet. %1 - + Failed to load custom theme colors. %1 Failed to load custom theme colours. %1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Failed to load default theme colours. %1 @@ -3403,22 +3397,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" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,383 +3940,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 has failed Search has failed - + 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. 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 - + 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 - - + + 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 @@ -5850,47 +5810,47 @@ Minimum requirement: %2. 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 @@ -6036,175 +5996,175 @@ Minimum requirement: %2. 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) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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 - + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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 @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Show &qBittorrent in notification area - + 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 @@ -6803,65 +6753,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.years - + Log performance warnings Log performance warnings - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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 + + + 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 - + 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 @@ -7462,12 +7417,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): @@ -7487,183 +7442,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 @@ -7673,69 +7628,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. @@ -7746,18 +7701,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 @@ -7848,163 +7803,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 @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Those plugins were disabled. Don't have write permission to path + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 - + 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. - + 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 - + Web seed editing Web seed editing - + Web seed URL: Web seed URL: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Couldn't move folder into itself. - + 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: - Refresh interval: - - - - sec - sec - - - - Default - Default - - RSSWidget @@ -9031,61 +8987,101 @@ Those plugins were disabled. - Feed options... - + 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 + + + + + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9199,142 +9195,168 @@ Those plugins were disabled. Size: - + Name i.e: file name Name - + Size i.e: file size Size - + Seeders i.e: Number of full sources Seeders - + Leechers i.e: Number of partial sources Leechers - + Filter search results... Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Results (showing <i>%1</i> out of <i>%2</i>): - + Torrent names only Torrent names only - + Everywhere Everywhere - + Use regular expressions Use regular expressions - + Open download window Open download window - + Download Download - + Open description page Open description page - + Copy Copy - + Name Name - + Download link Download link - + Description page URL Description page URL - + Searching... Searching... - + Search has finished Search has finished - + Search aborted Search aborted - + An error occurred during search... An error occurred during search... - + Search returned no results Search returned no results - + Engine Engine - + Engine URL Engine URL - + Published On Published On - + 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 @@ -9342,104 +9364,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') @@ -9465,94 +9487,94 @@ 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. - + <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 @@ -9560,32 +9582,32 @@ Click the "Search plug-ins..." button at the bottom right of the windo 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" @@ -9983,77 +10005,67 @@ 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 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 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 @@ -10592,17 +10604,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. @@ -10969,34 +10981,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Default - - + + Unlimited Unlimited - - + + Set to Set to - + Seeding time: Seeding time: - - + + @@ -11006,32 +11018,32 @@ Please choose a different name and try again. min - + Inactive seeding time: Inactive seeding time: - + Action when the limit is reached: Action when the limit is reached: - + Stop torrent Stop 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 @@ -11082,78 +11094,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 @@ -11173,39 +11185,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 @@ -11354,73 +11366,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 @@ -11909,319 +11921,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 - + 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. - + 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 - + 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 - + Super seeding mode Super seeding mode @@ -12276,18 +12288,18 @@ Please choose a different name and try again. 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 save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Couldn't copy icon file. Source: %1. Destination: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' 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: 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, 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' WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' diff --git a/src/lang/qbittorrent_eo.ts b/src/lang/qbittorrent_eo.ts index 8c2993353..3652b1d96 100644 --- a/src/lang/qbittorrent_eo.ts +++ b/src/lang/qbittorrent_eo.ts @@ -21,12 +21,12 @@ Current maintainer - Nuna prizorganto + Aktuala prizorganto Greece - Grekio + Grekujo @@ -38,7 +38,7 @@ E-mail: - Retpoŝtadreso: + Repoŝto: @@ -49,17 +49,17 @@ Original author - Origina aŭtoro + Originala aŭtoro France - Francio + Francujo Special Thanks - Specialaj dankoj + Specialaj Dankoj @@ -74,12 +74,12 @@ Software Used - Programaro uzita + Programaroj Uzita qBittorrent was built with the following libraries: - qBittorrent estis farita kun la jenaj bibliotekoj: + qBittorrent konstruiĝis kun la sekvaj bibliotekoj: @@ -89,7 +89,7 @@ An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar. - Altnivela BitTorrent-kliento programita en C++, bazita sur Qt toolkit kaj libtorrent-rasterbar. + Altnivelan BitTorrent kienton programis per C++, kiu uzas Qt ilaron kaj libtorrent-rasterbar. @@ -99,7 +99,7 @@ Home Page: - Hejmpaĝo: + Ĉefpaĝo: @@ -123,39 +123,39 @@ The old path is invalid: '%1'. - La malnova vojo nevalidas: "%1". + La malnova indiko estas nevalida: '%1'. The new path is invalid: '%1'. - La nova vojo nevalidas: "%1". + La nova indiko estas nevalida: '%1'. Absolute path isn't allowed: '%1'. - Absoluta vojo ne estas permesata: "%1". + Absoluta indiko ne rajtas: '%1'. The file already exists: '%1'. - La dosiero jam ekzistas: "%1". + La dosiero jam ekzistas: '%1'. No such file: '%1'. - Tiu dosiero ne ekzistas: "%1". + Dosiero ne ekzistas: '%1'. The folder already exists: '%1'. - La dosierujo jam ekzistas: "%1". + La dosierujo jam ekzistas: '%1'. No such folder: '%1'. - Tiu dosierujo ne ekzistas: "%1". + Dosierujo ne ekzistas: '%1'. @@ -163,17 +163,17 @@ Save at - Konservi ĉe + konservi en Never show again - Neniam remontri + Neniam remontru Set as default category - Agordi kiel defaŭlta kategorio + Metu kiel defaŭla kategorio @@ -183,22 +183,22 @@ Start torrent - Komenci torenton + Komenci la torenton Torrent information - Torenta informaro + Torena informo Skip hash check - Preterpasi haket-kontrolon + Preterpasi la haketan kontrolon Use another path for incomplete torrent - Uzi alian vojon por nekompleta torento + Uzi alian indikon por nekompleta torento @@ -213,7 +213,7 @@ Click [...] button to add/remove tags. - Alklaki [...] butonon por aldoni/forigi etikedojn. + Alklaki [...] butonon al aldoni/forigi etikedojn. @@ -228,35 +228,35 @@ Stop condition: - Kondiĉo por halti: + 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. - - 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 - Dosieroj kontrolitaj + Dosierojn ekzamenis Add to top of queue - Aldoni al vica supro + Aldoni al super de la vicoj @@ -271,7 +271,7 @@ Original - Origina + Originalo @@ -306,17 +306,17 @@ Torrent Management Mode: - Torenta mastruma reĝimo: + Modo de Torenta Administrado: Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - Aŭtomata reĝimo signifas ke diversaj torentaj ecoj (ekz. konserva vojo) estos decidota de la ligita kategorio + La signifo de aŭtomata modo estas diversaj torentaj ecoj(ek. konserva indiko) decidos per la elektita kategorio Manual - Permana + Mana @@ -326,12 +326,12 @@ Remember last used save path - Memori laste uzitan konservan vojon + Memori lastan uzitan konservan indikon Do not delete .torrent file - Ne forigi .torrent-dosieron + Ne forigi .torrent dosieron @@ -351,125 +351,125 @@ Select All - Elekti ĉiujn + Elekti cion Select None - Elekti neniujn + Elekti nenion Save as .torrent file... - Konservi kiel ".torrent"-dosiero... + Konservi kiel .torrent dosiero - + I/O Error - Eneliga erraro + Eneliga eraro - + Not Available This comment is unavailable - Nedisponebla - - - - Not Available - This date is unavailable - Nedisponebla - - - - Not available - Nedisponebla + Ne Disponeblas + Not Available + This date is unavailable + Ne Disponeblas + + + + Not available + Ne disponeblas + + + 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 surdiske: %2) + %1 (Libera spaco de disko: %2) - + Not available This size is unavailable. - Nedisponebla + Ne disponeblas + + + + Torrent file (*%1) + Torenta dosiero (*%1) - Torrent file (*%1) - Torentodosiero (*%1) - - - Save as torrent file - Konservi kiel torentodosiero + Konservi kiel torrenta dosiero - + 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 @@ -477,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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Rekontroli torentojn post fino - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 @@ -1425,64 +1419,64 @@ - + 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Kial: %2 - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed @@ -1555,88 +1549,88 @@ Kial: %2 - + 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 @@ -1749,7 +1743,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also days - tagoj + tagoj @@ -1764,271 +1758,271 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Import... - Enport&i... + &Enporti... &Export... - &Elporti... + E&lporti... - + 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. @@ -2048,7 +2042,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Delete - Forigi + Forigu @@ -2224,503 +2218,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". - + 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" @@ -2770,47 +2764,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 @@ -2859,27 +2853,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: - Uzado: + Uzo: - + [options] [(<filename> | <url>)...] - + Options: Opcioj: - + Display program version and exit - + Display this help message and exit @@ -2890,130 +2884,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Confirm the legal notice - - + + port pordo - + Change the WebUI port - + Change the torrenting port - + Disable splash screen Malebligi salutŝildon - + Run in daemon-mode (background) Lanĉi per demonreĝimo (fone) - + dir Use appropriate short form or abbreviation of "directory" - + Store configuration files in <dir> - - + + name nomo - + 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 running or stopped - + Skip hash check Preterpasi la haketan kontrolon - + 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 Elŝuti la unuan kaj la finan pecojn unue - + 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 Helpo @@ -3041,7 +3035,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add category... - Aldoni kategroion... + Aldoni kategorion... @@ -3136,12 +3130,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 @@ -3149,7 +3143,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Malsukcesis ŝargi defaŭltajn kolorojn de etoso. %1 @@ -3214,12 +3208,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also No URL entered - Neniu URL entajpita + Neniu URL-adreso eniĝis Please type at least one URL. - Bonvole tajpu almenaŭ unu URL-on. + Bonvolu tajpi almenaŭ unu URL-adreson. @@ -3250,7 +3244,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Blocked IPs - Forbaritaj IP-oj + Blokitaj IP-adresoj @@ -3260,7 +3254,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Clear - Viŝi + Vakigi @@ -3402,22 +3396,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? @@ -3499,7 +3493,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Delete - Forigi + Forigu @@ -3517,7 +3511,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Browse... - Foliumi... + Folii... @@ -3535,40 +3529,6 @@ 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 @@ -3678,7 +3638,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Edit - R&edakti + &Redakti @@ -3708,12 +3668,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... - &Opcioj... + &Opcioj &Remove - Fo&rigi + &Forigi @@ -3769,7 +3729,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also L&ock qBittorrent - Ŝl&osi qBittorrent-on + Ŝl&osi la qBittorrent-klienton @@ -3824,7 +3784,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Log - Protoko&lo + &Protokolo @@ -3929,7 +3889,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Add Torrent File... - &Aldoni torentodosieron... + Aldonu Torent&dosieron... @@ -3959,12 +3919,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 @@ -3979,382 +3939,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 - Preferoj + Agordoj - + &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 - + Search has failed Serĉo malsukcesis - + Search has finished 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 - Ĉi&am jes + &Ĉiam 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 - + 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 nevalidas + La pasvorto malvalidas - + DL speed: %1 e.g: Download speed: 10 KiB/s - EL rapido: %1 + Elŝutrapido: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s - AL rapido: %1 + Alŝutrapido: %1 - + Hide Kaŝi - + Exiting qBittorrent qBittorrent ĉesantas - + Open Torrent Files - Malfermi torentodosierojn + Malfermi Torentdosierojn - + Torrent Files - Torentodosieroj + Torentdosieroj @@ -4610,7 +4570,7 @@ Minimum requirement: %2. Albania - Albanio + Albanujo @@ -4675,7 +4635,7 @@ Minimum requirement: %2. Belgium - Belgio + Belgujo @@ -4685,7 +4645,7 @@ Minimum requirement: %2. Bulgaria - Bulgario + Bulgarujo @@ -4740,7 +4700,7 @@ Minimum requirement: %2. Belarus - Belaruso + Belorusujo @@ -4835,12 +4795,12 @@ Minimum requirement: %2. Czech Republic - Ĉeĥio + Ĉeĥujo Germany - Germanio + Germanujo @@ -4895,7 +4855,7 @@ Minimum requirement: %2. Spain - Hispanio + Hispanujo @@ -4930,7 +4890,7 @@ Minimum requirement: %2. France - Francio + Francujo @@ -4995,7 +4955,7 @@ Minimum requirement: %2. Greece - Grekio + Grekujo @@ -5050,7 +5010,7 @@ Minimum requirement: %2. Hungary - Hungario + Hungarujo @@ -5095,7 +5055,7 @@ Minimum requirement: %2. Italy - Italio + Italujo @@ -5110,7 +5070,7 @@ Minimum requirement: %2. Japan - Japanio + Japanujo @@ -5350,7 +5310,7 @@ Minimum requirement: %2. Norway - Norvegio + Norvegujo @@ -5425,7 +5385,7 @@ Minimum requirement: %2. Portugal - Portugalio + Portugalujo @@ -5450,12 +5410,12 @@ Minimum requirement: %2. Romania - Romanio + Rumanujo Russian Federation - Rusio + Rusujo @@ -5485,7 +5445,7 @@ Minimum requirement: %2. Sweden - Svedio + Svedujo @@ -5495,7 +5455,7 @@ Minimum requirement: %2. Slovenia - Slovenio + Slovenujo @@ -5505,7 +5465,7 @@ Minimum requirement: %2. Slovakia - Slovakio + Slovakujo @@ -5695,7 +5655,7 @@ Minimum requirement: %2. Turkey - Turkio + Turkujo @@ -5720,7 +5680,7 @@ Minimum requirement: %2. Ukraine - Ukrainio + Ukrainujo @@ -5795,7 +5755,7 @@ Minimum requirement: %2. Serbia - Serbio + Serbujo @@ -5846,47 +5806,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 @@ -5931,7 +5891,7 @@ Minimum requirement: %2. Advanced - Altnivelaj + Speciala @@ -6032,402 +5992,392 @@ 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 - Ĝis: + Al: - + 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 dosieroj + Forigi torenton kaj ĝiaj dosierojn - + 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: - + 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. @@ -6436,37 +6386,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 @@ -6579,101 +6529,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: @@ -6681,22 +6631,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 @@ -6791,64 +6741,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.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 @@ -6868,50 +6818,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". @@ -6928,506 +6878,511 @@ 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 + + + 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ŝuto: + Alŝuta: - - + + Download: - Elŝuto: + Elŝuti - + Alternative Rate Limits Alternativaj rapidlimoj - + Start time Komenca tempo - + End time Fina tempo - + When: Kiam: - + Every day Ĉiutage - + Weekdays - Labortagoj + Laborsemajne - + Weekends - Semajnfinoj + Semajnfine - + 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 - tiam + poste - + 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 @@ -7437,12 +7392,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7462,183 +7417,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 da dosieroj + %C: Nombro de 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 @@ -7648,69 +7603,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 @@ -7718,21 +7673,21 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Preferences - Preferoj + Agordoj - + 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 @@ -7823,163 +7778,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 @@ -8257,6 +8212,39 @@ Tiuj kromprogramoj malebliĝis. TTT-ligilo + + PowerManagement + + + qBittorrent is active + qBittorrent estas aktiva + + + + 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 @@ -8338,6 +8326,15 @@ Tiuj kromprogramoj malebliĝis. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8376,7 +8373,7 @@ Tiuj kromprogramoj malebliĝis. Downloaded: - Elŝutita: + Elŝutis: @@ -8407,7 +8404,7 @@ Tiuj kromprogramoj malebliĝis. Uploaded: - Alŝutita: + Alŝutis: @@ -8417,12 +8414,12 @@ Tiuj kromprogramoj malebliĝis. Download Speed: - Elŝuta rapido: + Elŝutrapido: Upload Speed: - Alŝuta rapido: + Alŝutrapido: @@ -8432,17 +8429,17 @@ Tiuj kromprogramoj malebliĝis. Download Limit: - Elŝuta limo: + Elŝutlimo: Upload Limit: - Alŝuta limo: + Alŝutlimo: Wasted: - Perdita: + Senefikaĵo: @@ -8528,7 +8525,7 @@ Tiuj kromprogramoj malebliĝis. Completed On: - Kompletigita je: + Finita je: @@ -8546,124 +8543,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 - + No 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. - + 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 - + Web seed editing TTT-fonta redaktado - + Web seed URL: URL-adreso de la TTT-fonto: @@ -8671,33 +8668,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 @@ -8705,22 +8702,22 @@ 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. - + 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. @@ -8769,12 +8766,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" @@ -8796,117 +8793,76 @@ Tiuj kromprogramoj malebliĝis. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - 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 @@ -8955,17 +8911,17 @@ Tiuj kromprogramoj malebliĝis. Delete - Forigi + Forigu Rename... - Alinomi... + Renomi... Rename - Alinomi + Renomi... @@ -9006,61 +8962,101 @@ Tiuj kromprogramoj malebliĝis. - Feed options... + Edit feed URL... - + + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9174,142 +9170,168 @@ Tiuj kromprogramoj malebliĝis. Grando: - + Name i.e: file name Nomo - + Size i.e: file size Grando - + Seeders i.e: Number of full sources Fontoj - + Leechers i.e: Number of partial sources Ricevantoj - + Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + 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 Elŝuti - + Open description page - + Copy Kopii - + Name Nomo - + Download link - + Description page URL - + Searching... Serĉante... - + Search has finished Serĉo finiĝis - + Search aborted Serĉo ĉesiĝis - + An error occurred during search... Eraro okazis dum la serĉo... - + Search returned no results Serĉo reportis neniun rezulton - + Engine - + Engine URL - + Published On - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents @@ -9317,104 +9339,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') @@ -9439,94 +9461,94 @@ 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 @@ -9534,32 +9556,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" @@ -9676,7 +9698,7 @@ Click the "Search plugins..." button at the bottom right of the window Upload: - Alŝuto: + Alŝuta: @@ -9698,7 +9720,7 @@ Click the "Search plugins..." button at the bottom right of the window Download: - Elŝuto: + Elŝuti @@ -9957,77 +9979,67 @@ 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 @@ -10038,22 +10050,22 @@ Click the "Search plugins..." button at the bottom right of the window All (0) this is for the status filter - Ĉiuj (0) + Ĉio (0) Downloading (0) - Elŝutataj (0) + Elŝutante (0) Seeding (0) - Fontsendataj (0) + Fontsendanta (0) Completed (0) - Kompletigitaj (0) + Finite (0) @@ -10103,27 +10115,27 @@ Click the "Search plugins..." button at the bottom right of the window Errored (0) - Eroritaj (0) + Erarinta (0) All (%1) - Ĉiuj (%1) + Ĉio (%1) Downloading (%1) - Elŝutataj (%1) + Elŝutante (%1) Seeding (%1) - Fontsendataj (%1) + Fontsendanta (%1) Completed (%1) - Kompletigitaj (%1) + Finite (%1) @@ -10188,7 +10200,7 @@ Click the "Search plugins..." button at the bottom right of the window Errored (%1) - Eroritaj (%1) + Erarinta (%1) @@ -10201,7 +10213,7 @@ Click the "Search plugins..." button at the bottom right of the window All - Ĉiuj + Ĉio @@ -10219,7 +10231,7 @@ Click the "Search plugins..." button at the bottom right of the window Remove tag - Forigi etikedon + Forigi la etikedon @@ -10254,7 +10266,7 @@ Click the "Search plugins..." button at the bottom right of the window Invalid tag name - Nevalida etikeda nomo + Malvalida etikednomo @@ -10312,7 +10324,7 @@ Click the "Search plugins..." button at the bottom right of the window Path: - Vojo: + Indiko: @@ -10496,7 +10508,7 @@ Please choose a different name and try again. Open - Malfermi + Malfermu @@ -10506,7 +10518,7 @@ Please choose a different name and try again. Rename... - Alinomi... + Renomi... @@ -10563,17 +10575,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10593,7 +10605,7 @@ Please choose a different name and try again. Path: - Vojo: + Indiko: @@ -10630,7 +10642,7 @@ Please choose a different name and try again. Piece size: - Peca grando: + Pecogrando: @@ -10940,34 +10952,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Defaŭlto - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10977,32 +10989,32 @@ Please choose a different name and try again. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Forigi torenton - + Remove torrent and its content - + Enable super seeding for torrent @@ -11027,12 +11039,12 @@ Please choose a different name and try again. Tag: - Etikedo: + Etikedo Invalid tag name - Nevalida etikeda nomo + Malvalida etikednomo @@ -11053,78 +11065,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 @@ -11144,39 +11156,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 @@ -11320,73 +11332,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 @@ -11500,7 +11512,7 @@ Please choose a different name and try again. All (%1) this is for the tracker filter - Ĉiuj (%1) + Ĉio (%1) @@ -11539,13 +11551,13 @@ Please choose a different name and try again. Downloading - Elŝutata + Elŝutante Stalled Torrent is waiting for download to begin - Neviva + Haltigita @@ -11563,14 +11575,14 @@ 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ŝutata + [F] Elŝutanta Seeding Torrent is complete and in upload-only mode - Fontsendata + Fontsendanta @@ -11583,14 +11595,14 @@ Please choose a different name and try again. Queued Torrent is queued - Envicigita + Enviciĝita Checking Torrent local data is being checked - Kontrolata + Kontrolate @@ -11601,7 +11613,7 @@ Please choose a different name and try again. Completed - Kompletigita + Finita @@ -11612,13 +11624,13 @@ Please choose a different name and try again. Missing Files - Mankas dosierojn + Mankantaj Dosieroj Errored Torrent status, the torrent has an error - Erarita + Erarinta @@ -11665,13 +11677,13 @@ Please choose a different name and try again. Down Speed i.e: Download speed - Elŝuta rapido + Elŝutrapido Up Speed i.e: Upload speed - Alŝuta rapido + Alŝutrapido @@ -11710,7 +11722,7 @@ Please choose a different name and try again. Completed On Torrent was completed on 01/01/2010 08:00 - Kompletigita je + Finita je @@ -11721,13 +11733,13 @@ Please choose a different name and try again. Down Limit i.e: Download limit - Elŝuta limo + Elŝutlimo Up Limit i.e: Upload limit - Alŝuta limo + Alŝutlimo @@ -11791,7 +11803,7 @@ Please choose a different name and try again. Completed Amount of data completed (e.g. in MB) - Kompletigita + Finita @@ -11869,325 +11881,325 @@ Please choose a different name and try again. %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - %1 (fontsendata dum %2) + %1 (fontsendis 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. - + 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 - + 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 - Fo&rigi + &Forigi - + 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 @@ -12242,18 +12254,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12319,32 +12331,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 @@ -12436,72 +12448,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index f972a67e2..bf2f756be 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Verificar torrents completados - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 Adjunte el cuadro de diálogo "Añadir nuevo torrent" a la ventana principal - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Motivo: %2 - + Torrent added Torrent añadido - + '%1' was added. e.g: xxx.avi was added. Se añadió '%1'. - + Download completed Descarga completada @@ -1555,88 +1549,88 @@ 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 @@ -1773,263 +1767,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. @@ -2099,12 +2093,12 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Corrupted resume data: %1 - + Datos de reanudación corruptos: %1 save_path is invalid - + La ruta de guardado no es válida @@ -2186,12 +2180,12 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Corrupted resume data: %1 - + Datos de reanudación corruptos: %1 save_path is invalid - + La ruta de guardado no es válida @@ -2225,503 +2219,503 @@ 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". - + 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. - + 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 - + 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 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" - + Duplicate torrent - + Torrent duplicado - - - - 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha %1 debe especificar un puerto válido (entre 1 y 65535). - + Usage: Uso: - + [options] [(<filename> | <url>)...] [opciones] [(<filename> | <url>)...] - + Options: Opciones: - + Display program version and exit Muestra la versión del programa y sale - + Display this help message and exit Muestra este mensaje de ayuda y sale @@ -2891,130 +2885,130 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha El parámetro '%1' debe seguir la sintaxis '%1=%2' - + Confirm the legal notice Confirmar el aviso legal - - + + port puerto - + Change the WebUI port Cambiar el puerto de WebUI - + Change the torrenting port Cambiar el puerto del torrente - + Disable splash screen Desactivar pantalla de inicio - + Run in daemon-mode (background) Ejecutar en modo servicio (segundo plano) - + dir Use appropriate short form or abbreviation of "directory" ruta - + Store configuration files in <dir> Guardar archivos de configuración en <dir> - - + + name nombre - + Store configuration files in directories qBittorrent_<name> Guardar archivos de configuración en direcciones qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Modificar los archivos de continuación rápida de libtorrent y hacer las rutas relativas a la ruta del perfil. - + files or URLs archivos o URLs - + Download the torrents passed by the user Descarga los torrents pasados por el usuario - + Options when adding new torrents: Opciones cuando agregue nuevos torrents: - + path ruta - + Torrent save path Ruta de destino del Torrent - + Add torrents as running or stopped Añadir torrents iniciados o detenidos - + Skip hash check Omitir comprobación de hash - + Assign torrents to category. If the category doesn't exist, it will be created. Asignar torrents a la categoría. Si la categoría no existe, será creada. - + Download files in sequential order Descargar archivos en orden secuencial - + Download first and last pieces first Descargar antes primeras y últimas partes - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Especifica si el dialogo de "Agregar torrent" se abre al agregar un 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: Valores opcionales pueden ser provistos por variables del entorno. Para la opción llamada 'parameter-name', la variable del entorno se llama 'QBT_PARAMETER_NAME' (en mayúsculas y '-' es reemplazado por '_'). Para pasar valores de bandera, defina la variable como '1' o 'TRUE'. Por Ej: para desactivar la pantalla de inicio: - + Command line parameters take precedence over environment variables Los parámetros de linea de comandos tienen prioridad sobre las variables del entorno - + Help Ayuda @@ -3137,12 +3131,12 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha CustomThemeSource - + Failed to load custom theme style sheet. %1 No se pudo cargar la hoja de estilo del tema personalizado. %1 - + Failed to load custom theme colors. %1 No se pudieron cargar los colores del tema personalizado. %1 @@ -3150,7 +3144,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha DefaultThemeSource - + Failed to load default theme colors. %1 Error al cargar los colores del tema predeterminado. %1 @@ -3403,22 +3397,22 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha GUIAddTorrentManager - + Downloading torrent... Source: "%1" Descargando torrent... Fuente: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,384 +3940,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 - + Search has failed 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. 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 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 - - + + 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 @@ -5851,47 +5811,47 @@ Requisito mínimo: %2. 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 @@ -6037,175 +5997,175 @@ Requisito mínimo: %2. 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) - + 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 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 @@ -6214,190 +6174,180 @@ 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 - + 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 - + 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: - + 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. @@ -6408,37 +6358,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 - + 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. @@ -6451,37 +6401,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 @@ -6594,99 +6544,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: @@ -6696,22 +6646,22 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' Mostrar &qBittorrent en el área de notificación - + 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 @@ -6806,65 +6756,65 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' años - + Log performance warnings Registrar advertencias de rendimiento - + 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. @@ -6884,50 +6834,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". @@ -6956,506 +6906,511 @@ 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 - + 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 + + + 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 - + 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; @@ -7465,12 +7420,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): @@ -7490,183 +7445,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> @@ -7676,69 +7631,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. @@ -7749,18 +7704,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 @@ -7851,163 +7806,163 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no 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 @@ -8284,6 +8239,39 @@ 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 @@ -8365,6 +8353,15 @@ Those plugins were disabled. No tiene permiso de escritura para la ruta + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8573,124 +8570,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 - + %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 + 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. - + 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 - + Web seed editing Editando semilla Web - + Web seed URL: URL de la semilla Web: @@ -8698,33 +8695,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 @@ -8732,22 +8729,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. @@ -8796,12 +8793,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" @@ -8823,117 +8820,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. El item no existe: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + No se pudo mover la carpeta a sí misma. - + 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: - Intervalo de actualización: - - - - sec - seg - - - - Default - Por defecto - - RSSWidget @@ -9033,61 +8989,101 @@ 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 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9201,142 +9197,168 @@ Those plugins were disabled. Tamaño: - + Name i.e: file name Nombre - + Size i.e: file size Tamaño - + Seeders i.e: Number of full sources Semillas - + Leechers i.e: Number of partial sources Pares - + Filter search results... Filtrar archivos... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultados (mostrando <i>%1</i> de <i>%2</i>): - + Torrent names only Solo nombres de Torrent - + Everywhere En todas partes - + Use regular expressions Usar expresiones regulares - + Open download window Abrir ventana de descarga - + Download Descargar - + Open description page Abrir la página de descripción - + Copy Copiar - + Name Nombre - + Download link Enlace de descarga - + Description page URL URL de página de descripción - + Searching... Buscando... - + Search has finished La búsqueda ha finalizado - + Search aborted Búsqueda abortada - + An error occurred during search... Ha ocurrido un error durante la búsqueda... - + Search returned no results La búsqueda no ha devuelto resultados - + Engine Motor - + Engine URL URL del motor - + Published On Publicado el - + 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. @@ -9344,104 +9366,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') @@ -9467,94 +9489,94 @@ 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. - + <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 @@ -9562,32 +9584,32 @@ Presione el boton "Plugins de búsqueda..." ubicado abajo a la derecha 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" @@ -9985,77 +10007,67 @@ 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. - - 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 - - Free space: - - - - + External IPs: %1, %2 - IPs externas: %1, %2 + IP 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 @@ -10594,17 +10606,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ó. @@ -10907,7 +10919,7 @@ Por favor, elija otro nombre. Torrent Speed Limits - Límites de velocidad de torrent + Límites de velocidad de torrents @@ -10971,34 +10983,34 @@ Por favor, elija otro nombre. TorrentShareLimitsWidget - - - + + + Default Por defecto - - + + Unlimited Ilimitado - - + + Set to Ajustado a - + Seeding time: Tiempo sembrando: - - + + @@ -11008,32 +11020,32 @@ Por favor, elija otro nombre. min - + Inactive seeding time: Tiempo de sembrado inactivo: - + Action when the limit is reached: Acción cuando se alcanza el límite: - + Stop torrent Parar torrents - + Remove 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 @@ -11084,85 +11096,85 @@ 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 + "%1" no es una URL válida @@ -11175,39 +11187,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 @@ -11356,73 +11368,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 @@ -11911,319 +11923,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 - + 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. - + 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 - + 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. - + Super seeding mode Modo supersiembra @@ -12278,18 +12290,18 @@ Por favor, elija otro nombre. Los cambios en el tema de IU no pudieron ser aplicados completamente. Los detalles están en el Log. - + Couldn't save UI Theme configuration. Reason: %1 No se pudo guardar la configuración del tema de IU. Razón: %1 - - + + Couldn't remove icon file. File: %1. No se pudo borrar el fichero de icono. Fichero: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. No se pudo copiar el fichero de icono. Origen: %1. Destino: %2. @@ -12355,32 +12367,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 @@ -12472,72 +12484,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' interfaz Web: ¡El encabezado de origen y el origen objetivo no coinciden! IP de origen: '%1'. Encabezado de origen: '%2'. Origen objetivo: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' interfaz Web: ¡El encabezado de referencia y el origen objetivo no coinciden! IP de origen: '%1'. Encabezado de referencia: '%2'. Origen objetivo: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' interfaz Web: Encabezado Host inválido, los puertos no coinciden. IP de origen de la solicitud: '%1'. Puerto del servidor: '%2'. Encabezado Host recibido: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' interfaz Web: Encabezado Host inválido. IP de origen de la solicitud: '%1'. Encabezado Host recibido: '%2' diff --git a/src/lang/qbittorrent_et.ts b/src/lang/qbittorrent_et.ts index cb42d9a1d..d4373f209 100644 --- a/src/lang/qbittorrent_et.ts +++ b/src/lang/qbittorrent_et.ts @@ -203,7 +203,7 @@ Torrent options - + Torrenti valikud @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Kontrolli üle torrentid pärast allalaadimist - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - + Ignoreeri SSL vigu - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds 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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Selgitus: %2 - + Torrent added Torrent lisatud - + '%1' was added. e.g: xxx.avi was added. '%1' oli lisatud. - + Download completed Allalaadimine sai valmis @@ -1555,88 +1549,88 @@ - + 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 @@ -1773,263 +1767,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. @@ -2114,7 +2108,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 saanud salvestada torrenti jätkamise andmeid '%1'. Viga: %2. + Ei õnnestunud salvestada torrendi jätkamise andmeid '%1'. Viga: %2. @@ -2214,7 +2208,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 saanud kustutada torrenti '%1' jätkamise andmeid. Viga: %2 + Ei õnnestunud kustutada torrenti '%1' jätkamise andmeid. Viga: %2 @@ -2225,503 +2219,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". - + 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 - + 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 - + 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 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" - + 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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe %1 määratud port peab olema sobiv (1 kuni 65535). - + Usage: Kasutus: - + [options] [(<filename> | <url>)...] - + Options: Valikud: - + Display program version and exit Kuva programmi versioon ja sule - + Display this help message and exit Kuva see abitekst ja sulge @@ -2891,130 +2885,130 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Parameeter '%1' peab järgima süntaksit '%1=%2' - + Confirm the legal notice - - + + port Port - + Change the WebUI port Muuda WebUI porti - + Change the torrenting port Muuda torrentimise porti - + Disable splash screen - + Run in daemon-mode (background) Käivitab deemon-režiimis (taustal) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Hoiusta konfiguratsiooni faile asukohas <dir> - - + + name Nimi - + Store configuration files in directories qBittorrent_<name> Hoia konfiguratsiooni faile asukohtades qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Haki libtorrent fastresume failidesse ja tee failide asukohad suhteliseks profiili kataloogi suhtes - + files or URLs failid või URL-id - + Download the torrents passed by the user Laadige kasutaja poolt edastatud torrentid alla - + Options when adding new torrents: Valikud kui lisatakse uued torrentid: - + path asukoht - + Torrent save path Torrenti salvestamise asukoht - + Add torrents as running or stopped - + Skip hash check Jäta vahele räsi kontroll - + Assign torrents to category. If the category doesn't exist, it will be created. Määra torrentitele kategooriad. Kui kategooriat pole, siis see luuakse. - + Download files in sequential order Järjestikuses failide allalaadimine - + Download first and last pieces first Lae alla esmalt esimene ja viimane tükk - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Määra, et kas avatakse dialoog "Lisa Uus Torrent", torrentite lisamisel. - + 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: Valiku väärtused võib esitada keskkonnamuutujate kaudu. 'parameetri-nimi' nimelise valiku puhul on keskkonnamuutuja nimi 'QBT_PARAMETER_NAME' (suures kirjas, '-' asendatud '_'-ga). Lipuväärtuste edastamiseks tuleb muutuja väärtuseks määrata '1' või 'TRUE'. Näiteks, et keelata splash screen: - + Command line parameters take precedence over environment variables - + Help Abi @@ -3095,7 +3089,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe System - + Süsteem @@ -3137,12 +3131,12 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe CustomThemeSource - + Failed to load custom theme style sheet. %1 - + Failed to load custom theme colors. %1 @@ -3150,7 +3144,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,382 +3940,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 - + Search has failed Otsimine nurjus - + Search has finished 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 - + 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 - - + + 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 +5809,47 @@ Vajalik on vähemalt: %2. 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 @@ -6035,175 +5995,175 @@ Vajalik on vähemalt: %2. 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: - + Käivita kui torrent on lisatud: - + Run on torrent finished: - + Käivita kui torrent on valmis: - + 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! + + + 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 @@ -6212,227 +6172,217 @@ 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 - + 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 - + 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 - - 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 - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + Ajaloo pikkus - + 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. @@ -6441,37 +6391,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 @@ -6503,12 +6453,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + Stiil: Color scheme: - + Värvi teema: @@ -6566,7 +6516,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. &Log Files - + &Logi failid @@ -6584,99 +6534,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: @@ -6686,22 +6636,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Kuva &qBittorrent teavituste alal - + 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 @@ -6796,65 +6746,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.aastat - + Log performance warnings Logi jõudluse hoiatused - + 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 @@ -6874,50 +6824,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". @@ -6934,506 +6884,511 @@ 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 - + 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 salvestatakse krüpteerimata + + + 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 - + 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; @@ -7443,12 +7398,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): @@ -7468,183 +7423,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 - + Süsteem - + Let Qt decide the style for this system - + Dark Dark color scheme Tume - + Light Light color scheme Hele - + System System color scheme - + Süsteem - + 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 @@ -7654,69 +7609,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 @@ -7727,18 +7682,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 @@ -7829,163 +7784,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 @@ -8263,6 +8218,39 @@ Need pistikprogrammid olid välja lülitatud. Veebi link + + 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 + + + PreviewSelectDialog @@ -8344,6 +8332,15 @@ Need pistikprogrammid olid välja lülitatud. Puudub asukoha kirjutamisõigus + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8552,124 +8549,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 - + No 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. - + 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 - + Web seed editing Veebi-seemne muutmine - + Web seed URL: Veebi-seemne URL: @@ -8677,33 +8674,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 @@ -8711,22 +8708,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. @@ -8775,12 +8772,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" @@ -8802,117 +8799,76 @@ Need pistikprogrammid olid välja lülitatud. - + Item doesn't exist: %1. Seda pole olemas: %1. - Can't move a folder into itself or its subfolders. + Couldn't move folder into itself. - + 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". Selgitus: UID on kehtetu. + 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: - Värskendamise intervall: - - - - sec - sek - - - - Default - Vaikimisi - - RSSWidget @@ -9012,61 +8968,101 @@ 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 Palun valige kausta nimi - + Folder name: Kausta nimi: - + New folder Uus kaust - + + + Please type a RSS feed URL + Palun sisesta RSS-voo URL + + + + + Feed 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9180,142 +9176,168 @@ Need pistikprogrammid olid välja lülitatud. Suurus: - + Name i.e: file name Nimi - + Size i.e: file size Suurus - + Seeders i.e: Number of full sources Jagajad - + Leechers i.e: Number of partial sources Kaanid - + Filter search results... Filtreeri otsingu tulemused... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Tulemused (näitab <i>%1</i> <i>%2</i>-st): - + Torrent names only Torrenti nimed ainult - + Everywhere Kõikjal - + Use regular expressions Kasuta regulaarseid väljendeid - + Open download window Ava allalaadimise aken - + Download Lae alla - + Open description page Ava selgituste leht - + Copy Kopeeri - + Name Nimi - + Download link Allalaadimise link - + Description page URL Selgituste lehe URL - + Searching... Otsin... - + Search has finished Otsing on lõpetatud - + Search aborted Otsing tühistati - + An error occurred during search... Viga ilmnes otsinguga... - + Search returned no results Otsingul ei leitud mittemidagi - + Engine - + Engine URL - + Published On - + Column visibility Veergude 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 @@ -9323,104 +9345,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') @@ -9445,94 +9467,94 @@ 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. - + <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 - + Värskenda - + 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 @@ -9540,32 +9562,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" @@ -9963,77 +9985,67 @@ 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 - + Väline 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 @@ -10572,17 +10584,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,34 +10961,34 @@ Palun vali teine nimi ja proovi uuesti. TorrentShareLimitsWidget - - - + + + Default Vaikimisi - - + + Unlimited Piiramatu - - + + Set to - + Seeding time: - - + + @@ -10986,32 +10998,32 @@ Palun vali teine nimi ja proovi uuesti. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent Peata torrent - + Remove torrent Eemalda torrent - + Remove torrent and its content - + Enable super seeding for torrent Luba super jagamise režiim torrentile @@ -11062,78 +11074,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 @@ -11153,39 +11165,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 @@ -11334,73 +11346,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 @@ -11889,319 +11901,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 - + 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. - + 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 - + 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 @@ -12256,18 +12268,18 @@ Palun vali teine nimi ja proovi uuesti. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. Ei saanud eemaldada ikooni faili. Fail: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12333,32 +12345,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 @@ -12450,72 +12462,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_eu.ts b/src/lang/qbittorrent_eu.ts index d57bfcc7c..83e844deb 100644 --- a/src/lang/qbittorrent_eu.ts +++ b/src/lang/qbittorrent_eu.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Berregiaztatu torrentak osatutakoan - - + + ms milliseconds sm @@ -699,686 +699,680 @@ 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 Erantsi "Gehitu torrent berria" elkarrizketa-koadroa leiho nagusian - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Zergaitia: %2 - + Torrent added Torrenta gehituta - + '%1' was added. e.g: xxx.avi was added. '%1' gehituta. - + Download completed Deskarga osatu da @@ -1555,88 +1549,88 @@ Zergaitia: %2 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,503 @@ 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". - + 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 - + 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 - + 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 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" - + 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar %1-k baliozko ataka adierazi behar du (1 eta 65535 artean). - + Usage: Erabilpena: - + [options] [(<filename> | <url>)...] [aukerak] [(<filename> | <url>)...] - + Options: Aukerak: - + Display program version and exit Erakutsi programaren bertsioa eta irten - + Display this help message and exit Erakutsi laguntza mezu hau eta irten @@ -2891,130 +2885,130 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar '%1' parametroak '%1=%2' joskera jarraitu behar du - + Confirm the legal notice Berretsi ohar legala - - + + port ataka - + Change the WebUI port Aldatu WebUI ataka - + Change the torrenting port Aldatu torrent ataka - + Disable splash screen Ezgaitu ongi etorri ikusleihoa - + Run in daemon-mode (background) Ekin daemon-moduan (barrenean) - + dir Use appropriate short form or abbreviation of "directory" zuz - + Store configuration files in <dir> Biltegiratu itxurapen agiriak hemen: <dir> - - + + name izena - + Store configuration files in directories qBittorrent_<name> Biltegiratu itxurapen agiriak qBittorrent zuzenbideetan_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Hackeatu libtorrent berrekite-azkarra agirietan eta egin helburuak erlatiboak profilaren zuzenbidearekiko - + files or URLs agirak edo URL-ak - + Download the torrents passed by the user Jeitsi rabiltzaileak pasatutako torrentak - + Options when adding new torrents: Aukerak torrent berriak gehitzerakoan: - + path helburua - + Torrent save path Torrenta gordetzeko helburua - + Add torrents as running or stopped Gehitu torrentak martxan edo geldituta bezala - + Skip hash check Jausi hash egiaztapena - + Assign torrents to category. If the category doesn't exist, it will be created. Esleitu torrentak kategoriari. Kategoria ez badago, sortu egin daiteke. - + Download files in sequential order Jeitsi agiriak hurrenkera sekuentzialean - + Download first and last pieces first Jeitsi lehen eta azken atalak lehenik - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Torrent bat gehitzerakoan "Gehitu Torrent Berria" elkarrizketak zer irekitzen duen adierazten du - + 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: Aukera balioak inguru aldagaien bidez eman daitezke. 'parameter-name' izeneko aukerarentzat, inguru aldagaiaren izena da 'QBT_PARAMETER_NAME' (hizki larriz, '-' ordeztuz '_'-rekin). Igaropen ikur balioentzat, ezarri aldagaia '1' edo 'TRUE' egoeran. Adibidez, hasierako ikusleihoa ezgaitzeko: - + Command line parameters take precedence over environment variables Agindu lerro parametroek lehentasuna dute inguru aldagaiekiko - + Help Laguntza @@ -3137,12 +3131,12 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar CustomThemeSource - + Failed to load custom theme style sheet. %1 Gaiaren estilo-orri pertsonalizatua kargatzeak huts egin du. %1 - + Failed to load custom theme colors. %1 Gaiaren kolore pertsonalizatuak kargatzeak huts egin du. %1 @@ -3150,7 +3144,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar DefaultThemeSource - + Failed to load default theme colors. %1 Gaiaren kolore lehenetsiak kargatzeak huts egin du. %1 @@ -3403,22 +3397,22 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrenta deskargatzen... Iturria: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,12 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar - + Show Erakutsi - + Check for program updates Egiaztatu programaren eguneraketak @@ -3980,382 +3940,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 - + Search has failed Bilaketak huts egin du - + Search has finished 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 - + 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 - - + + 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 @@ -5849,47 +5809,47 @@ Beharrezko gutxiena: %2. 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 @@ -6035,175 +5995,175 @@ Beharrezko gutxiena: %2. 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) - + 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 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 @@ -6212,190 +6172,180 @@ 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 - + 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 - + 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: - + 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. @@ -6404,37 +6354,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 - + 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. @@ -6447,37 +6397,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 @@ -6590,99 +6540,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: @@ -6692,22 +6642,22 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabi Erakutsi &qBittorrent jakinarazpen eremuan - + 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 @@ -6802,65 +6752,65 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabi urte - + Log performance warnings Erregistratu errendimendu oharrak - + 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 @@ -6880,50 +6830,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". @@ -6952,506 +6902,511 @@ 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 - + 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 + + + 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 - + 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 @@ -7461,12 +7416,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) @@ -7486,183 +7441,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. @@ -7672,69 +7627,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. @@ -7745,18 +7700,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 @@ -7847,163 +7802,163 @@ readme[0-9].txt: iragazi 'readme1.txt', 'readme2.txt' baina 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 @@ -8281,6 +8236,39 @@ 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 @@ -8362,6 +8350,15 @@ Plugin hauek ezgaituta daude. Ez daukazu bide-izen honetan idazteko baimenik + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8570,124 +8567,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 - + No 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. - + 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 - + Web seed editing Web emaritza editatzen - + Web seed URL: Web emaritza URL-a: @@ -8695,33 +8692,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 @@ -8729,22 +8726,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. @@ -8793,12 +8790,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" @@ -8820,117 +8817,76 @@ Plugin hauek ezgaituta daude. - + Item doesn't exist: %1. Gaia ez dago: %1 - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Ezin izan da karpeta bere burura mugitu. - + 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: - Freskatze-tartea - - - - sec - seg - - - - Default - Berezkoa - - RSSWidget @@ -9030,61 +8986,101 @@ 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 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9198,142 +9194,168 @@ Plugin hauek ezgaituta daude. Neurria: - + Name i.e: file name Izena - + Size i.e: file size Neurria - + Seeders i.e: Number of full sources Emaleak - + Leechers i.e: Number of partial sources Izainak - + Filter search results... Iragazi bilaketa emaitzak... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Emaitzak (erakusten <i>%1</i> -> <i>%2</i>-tik): - + Torrent names only Torrentaren izena bakarrik - + Everywhere Edonon - + Use regular expressions Erabili adierazpen arruntak - + Open download window Ireki deskarga-leihoa - + Download Jeitsi - + Open description page Ireki azalpen orrialdera - + Copy Kopiatu - + Name Izena - + Download link Jeitsiera lotura - + Description page URL Azalpen orrialdearen URL-a - + Searching... Bilatzen... - + Search has finished Bilaketa amaitu da - + Search aborted Bilaketa utzita - + An error occurred during search... Akats bat gertatu da bilaketan... - + Search returned no results Bilaketak ez du emaitzik itzuli - + Engine Motorra - + Engine URL Motorraten URL-a - + Published On Hemen argitaratuta - + 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 @@ -9341,104 +9363,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') @@ -9464,94 +9486,94 @@ 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 - + <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 @@ -9559,32 +9581,32 @@ Klikatu "Bilatu pluginak..." botoia leihoaren behe eskuinean zenbait e 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" @@ -9982,77 +10004,67 @@ 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 @@ -10591,17 +10603,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. @@ -10968,34 +10980,34 @@ Mesedez hautatu beste izen bat eta saiatu berriro. TorrentShareLimitsWidget - - - + + + Default Berezkoa - - + + Unlimited Mugagabea - - + + Set to Ezarri honetara - + Seeding time: Emaritza denbora: - - + + @@ -11005,32 +11017,32 @@ Mesedez hautatu beste izen bat eta saiatu berriro. min - + Inactive seeding time: Denbora inaktiboa emaritzen: - + Action when the limit is reached: Ekintza mugara iristen denean: - + Stop torrent Gelditu torrenta - + Remove torrent Kendu torrenta - + Remove torrent and its content Kendu torrenta eta bere edukia - + Enable super seeding for torrent Gaitu gain emaritza torrentarentzat @@ -11081,78 +11093,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 @@ -11172,39 +11184,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 @@ -11353,73 +11365,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 @@ -11908,319 +11920,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 - + 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. - + 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 - + 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 - + Super seeding mode Gain emaritza modua @@ -12275,18 +12287,18 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Ezin izan dira UI gaiaren aldaketak guztiz aplikatu. Xehetasunak erregistroan aurki daitezke. - + Couldn't save UI Theme configuration. Reason: %1 Ezin izan da UI gaiaren konfigurazioa gorde. Arrazoia: %1 - - + + Couldn't remove icon file. File: %1. Ezin izan da ikono-fitxategia kendu. Fitxategia: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Ezin izan da kopiatu ikono-fitxategia. Iturria: %1. Helmuga: %2. @@ -12352,32 +12364,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 @@ -12469,72 +12481,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebEI: Jatorri idazburua eta Etiketa jatorria ez datoz bat! Iturburu IP-a: '%1'. Jatorri idazburua: '%2'. Xede jatorria: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebEI: Jatorri idazburua eta Etiketa jatorria ez datoz bat! Iturburu IP-a: '%1'. Jatorri idazburua: '%2'. Xede jatorria: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebEI: Hostalari idazburu baliogabea, ataka ez dator bat! Eskera Iturburu IP-a: '%1'. Zerbitzari ataka: '%2'. Jasotako Hostalar idazburua: '%3'. - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebEI: Hostalari idazburu baliogabea. Eskaturiko iturburu IP-a: '%1'. Jasotako Hostalari idazburua: '%2' diff --git a/src/lang/qbittorrent_fa.ts b/src/lang/qbittorrent_fa.ts index 1bf14beeb..8ff9e5ea3 100644 --- a/src/lang/qbittorrent_fa.ts +++ b/src/lang/qbittorrent_fa.ts @@ -231,25 +231,25 @@ شرط توقف: - - + + None هیچ‌کدام - - + + Metadata received متادیتا دریافت شد - + Torrents that have metadata initially will be added as stopped. تورنت هایی که در ابتدا دارای ابرداده هستند به عنوان متوقف شده اضافه می شوند. + - Files checked فایل‌ها بررسی شد @@ -364,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 ایجاد کرد. + تا زمانی که اطلاعات آن به طور کامل دانلود نشود، نمی توان تورنت ن2 ایجاد کرد. - + Filter files... صافی کردن فایلها... - + Parsing metadata... بررسی متادیتا... - + Metadata retrieval complete دریافت متادیتا انجام شد @@ -477,35 +477,35 @@ 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 - - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB مبی بایت - + Recheck torrents on completion بررسی مجدد تورنت ها بعد از دانلود - - + + ms milliseconds میلی ثانیه @@ -699,686 +699,680 @@ مقدار - + (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 پورت ترکر تعبیه شده @@ -1425,64 +1419,64 @@ مسیر پیکرپندی مورد استفاده: %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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1532,18 +1526,18 @@ - + Torrent added تورنت اضافه شد - + '%1' was added. e.g: xxx.avi was added. '%1' اضافه شده. - + Download completed بارگیری شد @@ -1554,88 +1548,88 @@ - + 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 اکنون آماده خروج است @@ -1771,263 +1765,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. @@ -2223,503 +2217,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" @@ -2769,47 +2763,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 @@ -2858,27 +2852,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: - + [options] [(<filename> | <url>)...] - + Options: تنظیمات: - + Display program version and exit - + Display this help message and exit @@ -2889,130 +2883,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + 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 running or stopped - + Skip hash check هش فایل‌ها بررسی نشود - + 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 کمک @@ -3135,12 +3129,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 @@ -3148,7 +3142,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3401,22 +3395,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? @@ -3534,40 +3528,6 @@ 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 @@ -3958,12 +3918,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show نمایش دادن - + Check for program updates جستجو برای به‌روز رسانی نرم‌افزار @@ -3978,379 +3938,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 پرونده‌های تورنت @@ -5844,47 +5804,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 @@ -6030,402 +5990,392 @@ 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 - + 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 فعال کردن بارگیری خودکار تورنت‌های 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. @@ -6434,37 +6384,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 @@ -6577,99 +6527,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 به: @@ -6679,22 +6629,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 @@ -6789,64 +6739,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 @@ -6866,50 +6816,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". @@ -6926,506 +6876,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) - - + + 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 @@ -7435,12 +7390,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7460,183 +7415,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 %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. - + 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 @@ -7646,69 +7601,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 @@ -7719,18 +7674,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 خطا در طول @@ -7821,163 +7776,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 کپی آی‌پی:پروت @@ -8255,6 +8210,39 @@ 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 @@ -8336,6 +8324,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8544,124 +8541,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: @@ -8669,33 +8666,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 @@ -8703,22 +8700,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. @@ -8767,12 +8764,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" @@ -8794,117 +8791,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - آدرس: - - - - Refresh interval: - فاصله بازخوانی: - - - - sec - ثانیه - - - - Default - پیش فرض - - RSSWidget @@ -9004,61 +8960,101 @@ 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 + لطفا آدرس فید را تایپ کنید + + + + + Feed URL: + آدرس فید: + + + Deletion confirmation تأیید حذف - + Are you sure you want to delete the selected RSS feeds? برای حذف فید آراس‌اس انتخاب شده مطمئن هستید؟ - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed لطفا یک نام جدید برای این فید آراس‌اس انتخاب کنید - + New feed name: نام فید جدید: - + Rename failed تغییر نام با شکست مواجه شد - + Date: تاریخ: - + Feed: - + Author: مولف: @@ -9172,142 +9168,168 @@ Those plugins were disabled. حجم: - + Name i.e: file name نام - + Size i.e: file size سایز - + Seeders i.e: Number of full sources سیدر‌ها - + Leechers i.e: Number of partial sources زالوها - + Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + 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 بارگیری - + Open description page باز کردن صفحه توضیحات - + Copy کپی - + 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 اندازه تمام ستون‌های پنهان را به اندازه محتوای آنها تغییر دهید @@ -9315,104 +9337,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. افزونه %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') @@ -9437,94 +9459,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 توقف @@ -9532,32 +9554,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" @@ -9955,77 +9977,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. - - 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 @@ -10076,17 +10088,17 @@ Click the "Search plugins..." button at the bottom right of the window Stalled (0) - متوقف (0) + متوقف شده (0) Stalled Uploading (0) - بارگذاری متوقف‌شده (0) + بارگذاری متوقف شده (0) Stalled Downloading (0) - بارگیری متوقف‌شده (0) + بارگیری متوقف شده (0) @@ -10111,17 +10123,17 @@ Click the "Search plugins..." button at the bottom right of the window Downloading (%1) - در‌حال دانلود (%1) + در حال دانلود (%1) Seeding (%1) - در‌حال سید کردن (%1) + در حال سید کردن (%1) Completed (%1) - کامل‌شده (%1) + کامل شده (%1) @@ -10285,7 +10297,7 @@ Click the "Search plugins..." button at the bottom right of the window Save path for incomplete torrents: - مسیر ذخیره برای تورنت‌های ناقص: + ذخیره مسیر برای تورنت‌های ناقص: @@ -10320,7 +10332,7 @@ Click the "Search plugins..." button at the bottom right of the window Choose save path - انتخاب محل ذخیره + انتخاب مسیر ذخیره سازی @@ -10342,9 +10354,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. - نام دسته نمی تواند حاوی "\" باشد. -نام دسته نمی تواند با "/" شروع/پایان یابد. -نام دسته نمی تواند حاوی دنباله "//" باشد. + نام دسته نمی تواند حاوی '\' باشد. +نام دسته نمی تواند با '/' شروع/پایان یابد. +نام دسته نمی تواند حاوی دنباله '//' باشد. @@ -10564,17 +10576,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks وظایف فعال بیش از حد - + Torrent creation is still unfinished. ایجاد تورنت هنوز ناتمام است. - + Torrent creation failed. ایجاد تورنت ناموفق بود. @@ -10696,7 +10708,7 @@ Please choose a different name and try again. Tracker URLs: - آدرس‌های ردیاب: + آدرس‌های ترکر: @@ -10747,7 +10759,176 @@ Please choose a different name and try again. Reason: "%1" - دلیل: "%1" + Reason: "%1" +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  +  @@ -10941,34 +11122,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default پیش فرض - - + + Unlimited نامحدود - - + + Set to تنظیم کردن - + Seeding time: - - + + @@ -10978,32 +11159,32 @@ Please choose a different name and try again. حداقل - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent توقف تورنت - + Remove torrent پاک کردن تورنت - + Remove torrent and its content - + Enable super seeding for torrent @@ -11054,78 +11235,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 نمی توان محل ذخیره‌سازی را ایجاد کرد @@ -11145,39 +11326,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 نام دسته‌بندی نادرست است @@ -11321,73 +11502,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 نمایش ستون @@ -11876,319 +12057,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 نام برچسب '%1' نامعتبر است - + 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 حالت به اشتراک‌گذاری فوق‌العاده @@ -12243,18 +12424,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12320,32 +12501,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 @@ -12383,7 +12564,7 @@ Please choose a different name and try again. Watched Folder Options - گزینه‌های پوشه مشاهده شده + گزینه‌های پوشه تماشا شده @@ -12437,72 +12618,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index c7923a044..49d0c63d6 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -231,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 @@ -364,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 @@ -477,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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Tarkista torrentit uudelleen niiden valmistuttua - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Syy: %2 - + Torrent added Torrent lisättiin - + '%1' was added. e.g: xxx.avi was added. "% 1" lisättiin. - + Download completed Lataus on valmis @@ -1555,88 +1549,88 @@ - + 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,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". - + 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 - + 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 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" - + 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ä - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo - + Usage: Käyttö: - + [options] [(<filename> | <url>)...] - + Options: Valinnat: - + Display program version and exit Näytä sovellusversio ja sulje - + Display this help message and exit Näytä tämä ohjeviesti ja sulje @@ -2891,130 +2885,130 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo - + Confirm the legal notice - - + + port portti - + Change the WebUI port - + Change the torrenting port - + Disable splash screen Poista aloituskuva käytöstä - + Run in daemon-mode (background) Suorita daemon-tilassa (taustalla) - + dir Use appropriate short form or abbreviation of "directory" kansio - + Store configuration files in <dir> - - + + name nimi - + Store configuration files in directories qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Murtaudu libtorrentin pikajatkotiedostoihin ja suhteuta tiedostopolut proffilikansioon - + files or URLs tiedostoja tai URL-osoitteita - + Download the torrents passed by the user - + Options when adding new torrents: Valinnat uusia torrenteja lisätessä: - + path sijainti - + Torrent save path Torrentin tallennussijainti - + Add torrents as running or stopped - + Skip hash check Ohita hajautusarvon tarkistus - + Assign torrents to category. If the category doesn't exist, it will be created. - + Download files in sequential order Lataa tiedostot järjestyksessä - + Download first and last pieces first Lataa ensin ensimmäinen ja viimeinen osa - + 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 Ohje @@ -3137,12 +3131,12 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo CustomThemeSource - + Failed to load custom theme style sheet. %1 - + Failed to load custom theme colors. %1 @@ -3150,7 +3144,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,22 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo GUIAddTorrentManager - + Downloading torrent... Source: "%1" Ladataan torrent... Lähde: "%1" - + 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ä? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,380 +3940,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 - + Search has failed 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 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 - - + + 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 @@ -5847,47 +5807,47 @@ Minimum requirement: %2. 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 @@ -6033,175 +5993,175 @@ Minimum requirement: %2. 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 @@ -6210,190 +6170,180 @@ 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 - + 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 - + 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 - - 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: - + 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. @@ -6401,37 +6351,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ä - + 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. @@ -6440,37 +6390,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 @@ -6583,99 +6533,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: @@ -6685,22 +6635,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Näytä &qBittorrent ilmoitusalueella - + 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 @@ -6795,65 +6745,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.vuotta - + Log performance warnings Lokita suorituskykyvaroitukset - + 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 @@ -6873,50 +6823,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". @@ -6933,506 +6883,511 @@ 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 - + 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 + + + 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 - + 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 @@ -7442,12 +7397,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ä): @@ -7467,183 +7422,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. @@ -7653,69 +7608,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. @@ -7726,18 +7681,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 @@ -7828,163 +7783,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 @@ -8262,6 +8217,39 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Web-linkki + + 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 + + + PreviewSelectDialog @@ -8343,6 +8331,15 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Ei kirjoitusoikeutta polkuun + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8551,124 +8548,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ä - + No 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. - + 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 - + Web seed editing Web-jaon muokkaus - + Web seed URL: Web-jaon URL-osoite @@ -8676,33 +8673,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 @@ -8710,22 +8707,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. @@ -8774,12 +8771,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" @@ -8801,117 +8798,76 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. - + Item doesn't exist: %1. Tietuetta ei ole olemassa: %1. - Can't move a folder into itself or its subfolders. + Couldn't move folder into itself. - + 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: - Päivitystiheys: - - - - sec - s - - - - Default - Oletus - - RSSWidget @@ -9011,61 +8967,101 @@ 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 Valitse kansion nimi - + Folder name: Kansion nimi: - + New folder Uusi kansio - + + + Please type a RSS feed URL + Anna RSS-syötteen verkko-osoite. + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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ä: @@ -9179,142 +9175,168 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Koko: - + Name i.e: file name Nimi - + Size i.e: file size Koko - + Seeders i.e: Number of full sources Jakoja - + Leechers i.e: Number of partial sources Lataajia - + Filter search results... Suodata hakutulokset... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Tulokset (näytetään <i>%1</i>/<i>%2</i>): - + Torrent names only Vain torrentin nimestä - + Everywhere Kaikkialta - + Use regular expressions Käytä säännöllisiä lausekkeita - + Open download window Avaa latausikkuna - + Download Lataa - + Open description page Avaa kuvaussivu - + Copy Kopioi - + Name Nimi - + Download link Lataa linkki - + Description page URL Kuvaussivun osoite - + Searching... Haetaan... - + Search has finished Haku on päättynyt - + Search aborted Haku keskeytettiin - + An error occurred during search... Haun aikana tapahtui virhe... - + Search returned no results Haku ei palauttanut tuloksia - + Engine - + Engine URL - + Published On Julkaistu - + 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 @@ -9322,104 +9344,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') @@ -9445,94 +9467,94 @@ 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ä @@ -9540,32 +9562,32 @@ Napsauta "Hakuliitännäiset"-painiketta ikkunan oikeasta alakulmasta 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" @@ -9963,77 +9985,67 @@ 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ä - - 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 @@ -10570,17 +10582,17 @@ Valitse toinen nimi ja yritä uudelleen. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. Torrentin luonti epäonnistui. @@ -10947,34 +10959,34 @@ Valitse toinen nimi ja yritä uudelleen. TorrentShareLimitsWidget - - - + + + Default Oletus - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10984,32 +10996,32 @@ Valitse toinen nimi ja yritä uudelleen. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent Pysäytä torrent - + Remove torrent Poista torrentti - + Remove torrent and its content Poista torrent ja sen sisältö - + Enable super seeding for torrent Käytä torrentille superjakoa @@ -11060,78 +11072,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 @@ -11151,39 +11163,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 @@ -11327,73 +11339,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 @@ -11882,319 +11894,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 - + 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. - + 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 - + 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ä + Käynni&stä - + 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 @@ -12249,18 +12261,18 @@ Valitse toinen nimi ja yritä uudelleen. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. Kuvaketiedostoa ei voitu poistaa. Tiedosto: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12326,32 +12338,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 @@ -12443,72 +12455,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index 1ae949511..a3b1c7fe2 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,12 +79,12 @@ 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 : Copy to clipboard - Copier dans le presse-papier + Copier dans le presse-papiers @@ -94,7 +94,7 @@ Copyright %1 2006-2025 The qBittorrent project - Copyright %1 2006-2025 Le projet qBitTorrent + Copyright %1 2006-2025 Le projet qBittorrent @@ -163,7 +163,7 @@ Save at - Sauvegarder sous + Enregistrer sous @@ -231,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 @@ -364,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... + Analyse syntaxique des métadonnées en cours… - + Metadata retrieval complete Récuperation des métadonnées terminée @@ -477,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - Téléchargement du torrent ... Source : "%1" + Téléchargement du torrent en cours… 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 + + + 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 @@ -527,7 +527,7 @@ Save at - Enregistrer à + Enregistrer sous @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB Mio - + Recheck torrents on completion Revérifier les torrents lorsqu'ils sont terminés - - + + ms milliseconds ms @@ -699,687 +699,681 @@ 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 Ancrer la boîte de dialogue « Ajouter un nouveau torrent » à la fenêtre principale - + 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. - + -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 + Enregistrer la longueur de l'historique des répertoires de destination - + 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é @@ -1426,66 +1420,66 @@ 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. + L'IU Web est désactivée ! Pour activer l'IU Web, modifiez le fichier de configuration manuellement. @@ -1498,34 +1492,34 @@ É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'. @@ -1534,18 +1528,18 @@ 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é @@ -1553,93 +1547,93 @@ Raison : %2 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,271 +1760,271 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &Import... - &Importer... + &Importer… &Export... - &Exporter... + &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. @@ -2100,12 +2094,12 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Corrupted resume data: %1 - + Données de reprise corrompues : %1 save_path is invalid - + Le répertoire de destination est invalide @@ -2187,12 +2181,12 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Corrupted resume data: %1 - + Données de reprise corrompues : %1 save_path is invalid - + Le répertoire de destination est invalide @@ -2226,503 +2220,503 @@ 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 ». - + 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é - + 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 - + 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 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 » - + Duplicate torrent - + Dupliquer le 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 » - + 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 » + Échec de la connexion à l'URL seed. 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 » - + %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é - + 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 » @@ -2772,47 +2766,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 @@ -2861,27 +2855,27 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date %1 doit spécifier un port valide (1 à 65535). - + Usage: Utilisation : - + [options] [(<filename> | <url>)...] [options] [(<filename> | <url>)…] - + Options: Options - + Display program version and exit Afficher la version du programme et quitter - + Display this help message and exit Afficher ce message d'aide et quitter @@ -2892,130 +2886,130 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Le paramètre '%1' doit suivre la syntaxe '%1=%2' - + Confirm the legal notice Confirmer les mentions légales - - + + port port - + Change the WebUI port Changer le port de l'IU Web - + Change the torrenting port Changer le port des torrents - + Disable splash screen Désactiver l'écran de démarrage - + Run in daemon-mode (background) Exécuter en mode daemon (arrière-plan) - + dir Use appropriate short form or abbreviation of "directory" dossier - + Store configuration files in <dir> Stocker les fichiers de configuration sous <dir> - - + + name nom - + 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> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Hacke les fichiers fastresume de libtorrent et rend les chemins des fichiers relatifs au répertoire du profil - + files or URLs fichiers ou URLs - + Download the torrents passed by the user Télécharger les torrents transmis par l'utilisateur - + Options when adding new torrents: Options lors de l'ajout d'un nouveau torrent : - + path chemin - + Torrent save path Répertoire de destination du torrent - + Add torrents as running or stopped Ajouter les torrents comme en cours ou arrêtés. - + Skip hash check Sauter la vérification du hachage - + Assign torrents to category. If the category doesn't exist, it will be created. Affecter des torrents à la catégorie. Si la catégorie n'existe pas, elle sera créée. - + Download files in sequential order Télécharger les fichiers en ordre séquentiel - + Download first and last pieces first Télécharger les premiers et derniers morceaux en premier - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Préciser si la fenêtre « Ajouter un nouveau torrent » s'ouvre lors de l'ajout d'un 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: Les valeurs des options peuvent être renseignées par les variables d'environnement. Pour une option nommée 'parameter-name', le nom de la variable d'environnement est 'QBT_PARAMETER_NAME' (en majuscules, en remplaçant '-' par '_'). Pour renseigner une valeur sentinelle, réglez la variable sur '1' ou 'TRUE'. Par exemple, pour désactiver l'écran d’accueil : - + Command line parameters take precedence over environment variables Les paramètres de la ligne de commande ont priorité sur les variables d'environnement - + Help Aide @@ -3138,12 +3132,12 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date CustomThemeSource - + Failed to load custom theme style sheet. %1 Échec du chargement de la feuille de style du thème personnalisé. %1 - + Failed to load custom theme colors. %1 Échec du chargement des couleurs du thème personnalisé. %1 @@ -3151,7 +3145,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date DefaultThemeSource - + Failed to load default theme colors. %1 Échec du chargement des couleurs du thème par défaut. %1 @@ -3404,22 +3398,22 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date GUIAddTorrentManager - + Downloading torrent... Source: "%1" - Téléchargement du torrent ... Source : "%1" + Téléchargement du torrent en cours… Source : « %1 » - + 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 ? @@ -3537,40 +3531,6 @@ 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 @@ -3581,7 +3541,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é. @@ -3652,22 +3612,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. @@ -3680,7 +3640,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &Edit - &Édition + &Edition @@ -3710,7 +3670,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &Options... - &Options... + &Options… @@ -3771,7 +3731,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date L&ock qBittorrent - &Verrouiller qBittorrent + Verr&ouiller qBittorrent @@ -3826,7 +3786,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &Log - &Journal + Journa&l @@ -3846,7 +3806,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Pau&se Session - Mettre en pause + Mettre en pau&se @@ -3901,12 +3861,12 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &Suspend System - &Mettre en veille le système + Mettre en veille le &système &Hibernate System - &Mettre en veille prolongée le système + Mettre en &veille prolongée le système @@ -3961,12 +3921,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 @@ -3981,383 +3941,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 + Définir le mot de pa&sse - + Preferences Préférences - + &Clear Password - &Supprimer le mot de pass + &Supprimer le mot de passe - + 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 + Texte à côté des icônes + + + + Text Under Icons + Texte sous les 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 + Mot de passe de verrouillage de l'IU - - + + Please type the UI lock password: - Veuillez entrer le mot de passe de verrouillage : + Veuillez entrer le mot de passe de verrouillage de l'IU : - + 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 - + Search has failed 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 + 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. + L’installateur de 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". + Échec du renommage de l'installateur de Python. Source : « %1 ». Destination : « %2 ». - + Python installation success. L'installation de Python est réussie. - + Exit code: %1. - Code de fin d’exécution: %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". + 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 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é. + 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. + Aucune mise à jour disponible. 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 - + Checking for Updates... - Vérification des mises à jour… + Vérification des mises à jour en cours… - + 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... + Installation de Python en cours… - + Failed to open Python installer. File: "%1". - Échec à l'ouverture de l'installateur Python. Fichier : "%1". + Échec de l'ouverture de l'installateur de 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". + Échec de la vérification du hachage MD5 pour l'installateur de 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". + Échec de la vérification du hachage SHA3-512 pour l'installateur de Python. Fichier : « %1 ». Résultat du hachage : « %2 ». Hachage attendu : « %3 ». - + Download error Erreur de téléchargement - - + + Invalid password Mot de passe invalide - + Filter torrents... Filtrer les torrents… - + Filter by: - Filtrer par: + 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 + Le mot de passe 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 + Ouvrir des fichiers torrent - + Torrent Files Fichiers torrent @@ -4387,7 +4347,7 @@ Configuration minimale requise : %2. 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. @@ -4554,7 +4514,7 @@ Configuration minimale requise : %2. SSL error, URL: "%1", errors: "%2" - Erreur SSL, URL : « %1 », erreurs : « %2 » + Erreur SSL, URL : « %1 », erreurs : « %2 » @@ -4573,7 +4533,7 @@ Configuration minimale requise : %2. N/A - N/A + N/D @@ -4590,12 +4550,12 @@ Configuration minimale requise : %2. Couldn't load IP geolocation database. Reason: %1 - Impossible de charger la base de données de géolocalisation des IPs. Raison : %1 + Impossible de charger la base de données de géolocalisation des IP. Raison : %1 United Arab Emirates - Émirats Arabes Unis + Émirats arabes unis @@ -4640,7 +4600,7 @@ Configuration minimale requise : %2. American Samoa - Samoa Américaines + Samoa américaines @@ -4665,7 +4625,7 @@ Configuration minimale requise : %2. Bosnia and Herzegovina - Bosnie Herzégovine + Bosnie-Herzégovine @@ -4760,7 +4720,7 @@ Configuration minimale requise : %2. Cocos (Keeling) Islands - Îles Cocos (anciennement Keeling) + Îles Cocos (Keeling) @@ -4770,7 +4730,7 @@ Configuration minimale requise : %2. Central African Republic - République d'Afrique Centrale + Centrafrique @@ -4780,7 +4740,7 @@ Configuration minimale requise : %2. Switzerland - Suiss + Suisse @@ -4840,7 +4800,7 @@ Configuration minimale requise : %2. Czech Republic - République Tchèque + Tchéquie @@ -4875,7 +4835,7 @@ Configuration minimale requise : %2. Ecuador - Equateur + Équateur @@ -4900,7 +4860,7 @@ Configuration minimale requise : %2. Spain - Espagn + Espagne @@ -4945,7 +4905,7 @@ Configuration minimale requise : %2. United Kingdom - Royaume-uni + Royaume-Uni @@ -4960,7 +4920,7 @@ Configuration minimale requise : %2. French Guiana - Guinée française + Guyane française @@ -5025,7 +4985,7 @@ Configuration minimale requise : %2. Guyana - Guyane + Guyana @@ -5090,7 +5050,7 @@ Configuration minimale requise : %2. Iran, Islamic Republic of - République islamique d'Iran + Iran @@ -5200,7 +5160,7 @@ Configuration minimale requise : %2. Liberia - Liberia + Libéria @@ -5340,7 +5300,7 @@ Configuration minimale requise : %2. Nigeria - Nigeria + Nigéria @@ -5400,7 +5360,7 @@ Configuration minimale requise : %2. Papua New Guinea - Papouasie - Nouvelle-Guinée + Papouasie-Nouvelle-Guinée @@ -5420,7 +5380,7 @@ Configuration minimale requise : %2. Saint Pierre and Miquelon - Saint Pierre et Miquelon + Saint-Pierre-et-Miquelon @@ -5435,7 +5395,7 @@ Configuration minimale requise : %2. Palau - Palau + Palaos @@ -5450,7 +5410,7 @@ Configuration minimale requise : %2. Reunion - Réunion + La Réunion @@ -5470,7 +5430,7 @@ Configuration minimale requise : %2. Saudi Arabia - Arabie Saoudite + Arabie saoudite @@ -5555,7 +5515,7 @@ Configuration minimale requise : %2. Swaziland - Swaziland + Eswatini @@ -5570,7 +5530,7 @@ Configuration minimale requise : %2. French Southern Territories - Terres australes françaises + Terres australes et antarctiques françaises @@ -5625,7 +5585,7 @@ Configuration minimale requise : %2. Couldn't save downloaded IP geolocation database file. Reason: %1 - Impossible d'enregistrer le fichier de base de données de géolocalisation IP téléchargé. Raison : %1 + Impossible d'enregistrer le fichier de base de données de géolocalisation des IPs téléchargé. Raison : %1 @@ -5645,7 +5605,7 @@ Configuration minimale requise : %2. Bonaire, Sint Eustatius and Saba - Pays-Bas caribéens - Bonaire, St Eustatius, Saba + Pays-Bas caribéens @@ -5665,7 +5625,7 @@ Configuration minimale requise : %2. Macedonia, The Former Yugoslav Republic of - Macédoine + Macédoine du Nord @@ -5680,7 +5640,7 @@ Configuration minimale requise : %2. Palestine, State of - Palestine, État de + Palestine @@ -5715,7 +5675,7 @@ Configuration minimale requise : %2. Taiwan - Taiwan + Taïwan @@ -5765,12 +5725,12 @@ Configuration minimale requise : %2. Virgin Islands, British - Îles Vierges, Royaume-Uni + Îles Vierges britanniques Virgin Islands, U.S. - Îles Vierges, États-Unis + Îles Vierges des États-Unis @@ -5830,7 +5790,7 @@ Configuration minimale requise : %2. Guernsey - Bailliage de Guernesey + Guernesey @@ -5851,47 +5811,47 @@ Configuration minimale requise : %2. 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 @@ -6029,7 +5989,7 @@ Configuration minimale requise : %2. <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> @@ -6037,175 +5997,175 @@ Configuration minimale requise : %2. 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) + I2P (expérimental) - + 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 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 + Planifier l'utilisation des limites de vi&tesse 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 @@ -6214,190 +6174,180 @@ 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 - + 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 - + 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 : - + Fetched trackers - Trackeurs récupérés + Trackers récupérés - + Search UI - Recherche UI + Recherche dans l'IU - + 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 + Téléchargeur automatique de torrents par RSS - + Enable auto downloading of RSS torrents - Active le téléchargement automatique des torrents par RSS + Active le téléchargement automatique de 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) + 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. @@ -6406,37 +6356,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é - + Server domains: - Domaines de serveur : + Domaines du 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. @@ -6448,49 +6398,49 @@ 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. + Spécifier les adresses IPs 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 + Recherche @@ -6520,7 +6470,7 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu Stopped torrents only - Seulement les torrents stoppés + Seulement les torrents arrêtés @@ -6553,12 +6503,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 @@ -6573,142 +6523,142 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu &Log Files - &Fichier journal + Fichier journal Save path: - Chemin de sauvegarde : + Répertoire de destination : Backup the log file after: - Sauvegarder le Log après : + Sauvegarder le fichier journal après : Delete backup logs older than: - Supprimer les journaux antérieurs à : + Supprimer les journaux sauvegardés 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 : + Répertoire de destination 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 - + 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 @@ -6757,7 +6707,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 - Fermer qBitTorrent dans la zone de notification + Conserver dans la zone de notification à la fermeture @@ -6803,65 +6753,65 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu années - + Log performance warnings Journaliser les avertissements de performances - + 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 @@ -6873,58 +6823,58 @@ Manuel : Certaines propriétés du torrent (p. ex. le répertoire de destination Window state on start up: - État de la fenêtre au démarrage : + État de la fenêtre au démarrage : 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". @@ -6953,521 +6903,526 @@ 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 - + 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 + + + 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> + 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 IPs 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. - + 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 - + 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> + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Liste des IU Web 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) + Activer l'attribut « Secure » des cookies (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; + Si vous activez la seconde option (également lorsque l'ajout est annulé), le fichier .torrent <strong>sera supprimé</strong> même si vous appuyez sur «<strong>Annuler</strong>» dans la boîte de dialogue « Ajouter un torrent » 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) : @@ -7487,255 +7442,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. @@ -7746,18 +7701,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 @@ -7842,169 +7797,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 + Le pair utilise le hole punching du 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 + Réception + + + + Up Speed + i.e: Upload speed + Envoi - 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. + Certains pairs n'ont pas pu être ajoutés. Consultez le fichier 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 @@ -8124,7 +8079,7 @@ readme[0-9].txt : filtre 'readme1.txt' et 'readme2.txt', mai Warning: Be sure to comply with your country's copyright laws when downloading torrents from any of these search engines. - Avertissement : assurez-vous d'être en conformité avec les lois sur le droit d'auteur de votre pays lorsque vous téléchargez des torrents à partir d'un de ces moteurs de recherche. + Avertissement : Assurez-vous d'être en conformité avec les lois sur le droit d'auteur de votre pays lorsque vous téléchargez des torrents à partir d'un de ces moteurs de recherche. @@ -8175,8 +8130,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. -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. @@ -8231,7 +8185,7 @@ Ces derniers ont été désactivés. qBittorrent search plugin - Greffon de recherche de qBitTorrent + Greffon de recherche de qBittorrent @@ -8282,6 +8236,39 @@ 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 @@ -8363,6 +8350,15 @@ Ces derniers ont été désactivés. N'a pas l'autorisation d'écrire dans le chemin + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8568,161 +8564,161 @@ Ces derniers ont été désactivés. Save Path: - Chemin de sauvegarde : + Répertoire de destination : - + 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 - + No 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 + Ajouter une source Web - + Add web seed: - Ajouter une source web: + Ajouter une source Web : - - + + This web seed is already in the list. - Cette source web est déjà dans la liste. + Cette source Web est déjà dans la liste. - + Filter files... Filtrer les fichiers… - + Add web seed... - Ajouter une source web... + Ajouter une source Web… - + Remove web seed - Supprimer la source web + Retirer la source Web - + Copy web seed URL - Copier l'URL de la source web + Copier l'URL de la source Web - + Edit web seed URL... - Modifier l'URL de la source web + 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 - + Web seed editing - Modification de la source web + Modification de la source Web - + Web seed URL: - URL de la source web : + URL de la source Web : 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... + 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 @@ -8730,22 +8726,22 @@ Ces derniers ont été désactivés. 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. @@ -8794,12 +8790,12 @@ Ces derniers ont été désactivés. 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 » @@ -8821,117 +8817,76 @@ Ces derniers ont été désactivés. - + Item doesn't exist: %1. L'élément n'existe pas : %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Impossible de déplacer le dossier vers lui-même. - + Cannot delete root folder. - Ne peut pas supprimer le dossier racine. + Impossible de 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: - Intervalle d'actualisation - - - - sec - sec. - - - - Default - Par défaut - - RSSWidget @@ -9031,61 +8986,101 @@ 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 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 + + + + + Feed URL: + 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 ? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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 : @@ -9199,142 +9194,168 @@ Ces derniers ont été désactivés. Taille : - + Name i.e: file name Nom - + Size i.e: file size Taille - + Seeders i.e: Number of full sources Sources complètes - + Leechers i.e: Number of partial sources Sources partielles - + Filter search results... Filtrer les résultats… - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Résultats (affiche <i>%1</i> sur <i>%2</i>) : - + Torrent names only Noms de torrents seulement - + Everywhere Partout - + Use regular expressions Utiliser les expressions régulières - + Open download window Ouvrir la fenêtre de téléchargement - + Download Télécharger - + Open description page Ouvrir la page de description - + Copy Copier - + Name Nom - + Download link Lien de téléchargement - + Description page URL URL de la page de description - + Searching... Recherche en cours… - + Search has finished La recherche est terminée - + Search aborted Recherche annulée - + An error occurred during search... Une erreur s'est produite lors de la recherche… - + Search returned no results La recherche n'a retourné aucun résultat - + Engine Moteur - + Engine URL URL du moteur - + Published On Publié sur - + 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 @@ -9342,104 +9363,104 @@ Ces derniers ont été désactivés. 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 @@ -9462,97 +9483,97 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen Search plugins... - Greffons de recherche... + 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. - + <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 @@ -9560,34 +9581,34 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen 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" + É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". + É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". + É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". + É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". + É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" + Échec de l'enregistrement de l'historique de recherche. Fichier : « %1 ». Erreur : « %2 » @@ -9623,7 +9644,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. @@ -9643,7 +9664,7 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen &Shutdown Now - &Eteindre maintenant + &Éteindre maintenant @@ -9983,77 +10004,67 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen StatusBar - + Connection status: - Statut de la connexion : + État 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. - - Free space: N/A - - - - - + + External IP: N/A - IP externe : N/A + IP externe : N/D - - + + 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é - - 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 @@ -10280,7 +10291,7 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen Invalid tag name - Nom de tag invalide + Nom d'étiquette invalide @@ -10592,17 +10603,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. @@ -10627,7 +10638,7 @@ Veuillez en choisir un autre. [Drag and drop area] - [zone pour glisser et déposer] + [Zone pour glisser et déposer] @@ -10775,7 +10786,7 @@ Veuillez en choisir un autre. Reason: "%1" - Raison : "%1" + Raison : « %1 » @@ -10813,7 +10824,7 @@ Veuillez en choisir un autre. Couldn't store Watched Folders configuration to %1. Error: %2 - Impossible de stocker la configuration des dossiers surveillés dans %1. Erreur : %2 + Impossible de stocker la configuration des dossiers surveillés dans %1. Erreur : %2 @@ -10874,7 +10885,7 @@ Veuillez en choisir un autre. Save at - Enregistrer à + Enregistrer sous @@ -10969,34 +10980,34 @@ Veuillez en choisir un autre. TorrentShareLimitsWidget - - - + + + Default Par défaut - - + + Unlimited Illimité - - + + Set to Définit à - + Seeding time: Temps en partage : - - + + @@ -11006,32 +11017,32 @@ Veuillez en choisir un autre. min - + Inactive seeding time: Temps en partage inactif : - + Action when the limit is reached: Action lorsque la limite est atteinte : - + Stop torrent Arrêter le torrent - + Remove torrent Retirer le torrent - + Remove torrent and its content - Retiré les torrent et son contenu + Retirer le torrent et son contenu - + Enable super seeding for torrent Activer le super partage pour ce torrent @@ -11082,85 +11093,85 @@ 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 + « %1 » n'est pas une URL valide @@ -11173,39 +11184,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 » 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 @@ -11354,73 +11365,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 @@ -11523,7 +11534,7 @@ Veuillez en choisir un autre. Are you sure you want to remove tracker "%1" from all torrents? - Êtes-vous sûr de vouloir supprimer le tracker "%1" de tous les torrents ? + Êtes-vous sûr de vouloir supprimer le tracker « %1 » de tous les torrents ? @@ -11681,7 +11692,7 @@ Veuillez en choisir un autre. Status Torrent status (e.g. downloading, seeding, stopped) - Statut + État @@ -11884,7 +11895,7 @@ Veuillez en choisir un autre. Ratio / Time Active (in months), indicates how popular the torrent is - Ratio / Temps Actif (en mois), indique la popularité du torrent + Ratio / Temps actif (en mois), indique la popularité du torrent @@ -11909,319 +11920,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 - + 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. - + 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 - + 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 - + Super seeding mode Mode de super-partage @@ -12276,18 +12287,18 @@ Veuillez en choisir un autre. Les changements du thème de l'interface n'ont pas pu être pleinement appliqués. Les détails peuvent être trouvés dans le fichier journal. - + Couldn't save UI Theme configuration. Reason: %1 La configuration du thème de l'interface n'a pas pu être sauvegardé. Raison: %1 - - + + Couldn't remove icon file. File: %1. Le fichier d'icône n'a pas pu être retiré. Fichier: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Le fichier d'icône n'a pas pu être copié. Source: %1. Destination: %2. @@ -12297,7 +12308,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 » + Échec de la définition du style de l'application. Style inconnu : « %1 » @@ -12353,32 +12364,32 @@ Veuillez en choisir un autre. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - Exécutable Python trouvé. Nom : "%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". + 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" + 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" + 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 in Windows Registry. - Exécutable 'python' non trouvé dans le registre Windows. - - - Failed to find Python executable Exécutable Python non trouvé @@ -12398,7 +12409,7 @@ Veuillez en choisir un autre. File size exceeds data size limit. File: "%1". File size: %2. Array limit: %3 - La taille du fichier dépasse la taille limite. Fichier : "%1". Taille du fichier : "%2". Limite : "%3" + La taille du fichier dépasse la taille limite. Fichier : « %1 ». Taille du fichier : « %2 ». Limite : « %3 » @@ -12470,72 +12481,72 @@ 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. + Erreur du serveur Web. Erreur inconnue. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' IU Web : Disparité entre l'en-tête d'origine et l'origine de la cible ! IP source : '%1'. En-tête d'origine : '%2'. Origine de la cible : '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' IU Web : Disparité entre l'en-tête du référent et l'origine de la cible ! IP source : '%1'. En-tête du référent : '%2'. Origine de la cible : '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' IU Web : En-tête d'hôte invalide, non-concordance du port. IP source de la requête : '%1'. Port du serveur : '%2'. En-tête d'hôte reçu : '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' IU Web : En-tête d'hôte invalide. IP source de la requête : '%1'. En-tête d'hôte reçu : '%2' @@ -12672,7 +12683,7 @@ Veuillez en choisir un autre. < 1m < 1 minute - < 1min + < 1 min diff --git a/src/lang/qbittorrent_gl.ts b/src/lang/qbittorrent_gl.ts index 5588765b6..1f57d6d9e 100644 --- a/src/lang/qbittorrent_gl.ts +++ b/src/lang/qbittorrent_gl.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Volver comprobar os torrents ao rematar - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 Engade o diálogo "Engadir novo torrent" á xanela principal - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Razón: %2 - + Torrent added Engadiuse o torrent - + '%1' was added. e.g: xxx.avi was added. Engadiuse «%1». - + Download completed Descarga completada @@ -1555,88 +1549,88 @@ 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 @@ -1773,263 +1767,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. @@ -2099,12 +2093,12 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Corrupted resume data: %1 - + Datos de continuación danados: %1 save_path is invalid - + A ruta_gardar non é válida @@ -2186,12 +2180,12 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Corrupted resume data: %1 - + Datos de continuación danados: %1 save_path is invalid - + A ruta_gardar non é válida @@ -2225,503 +2219,503 @@ 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». - + 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 - + 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 - + 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 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" - + Duplicate torrent - + Torrent duplicado - - - - 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d %1 debe especificar un porto válido (1 a 65535). - + Usage: Utilización: - + [options] [(<filename> | <url>)...] [Opcións] [(<filename> | <url>)...] - + Options: Opcións: - + Display program version and exit Mostrar a versión do programa e saír - + Display this help message and exit Mostrar esta axuda e saír @@ -2891,130 +2885,130 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d O parámetro «%1» deber seguir a sintaxe «%1=%2» - + Confirm the legal notice Confirme o aviso legal - - + + port porto - + Change the WebUI port Cambia o porto WebUI - + Change the torrenting port Cambia o porto de torrenting - + Disable splash screen Desactivar a pantalla de inicio - + Run in daemon-mode (background) Executar no modo daemon (en segundo plano) - + dir Use appropriate short form or abbreviation of "directory" cart. - + Store configuration files in <dir> Gardar os ficheiros de configuración en <dir> - - + + name nome - + Store configuration files in directories qBittorrent_<name> Gardar os ficheiros de configuración en cartafoles qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Acceder aos ficheiros co resumo rápido de libtorrent e facer rutas de ficheiros relativas ao cartafol do perfil - + files or URLs ficheiros ou URL - + Download the torrents passed by the user Descargar os torrents pasados polo usuario - + Options when adding new torrents: Opcións cando se engaden torrents novos: - + path ruta - + Torrent save path Ruta onde gardar os torrents - + Add torrents as running or stopped Engadir torrents como activos ou detidos - + Skip hash check Saltar a comprobación hash - + Assign torrents to category. If the category doesn't exist, it will be created. Asignar torrents a unha categoría. Se a categoría non existe, crearase. - + Download files in sequential order Descargar ficheiros en orde secuencial - + Download first and last pieces first Descargar primeiro os anacos inicial e final - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Especificar se o diálogo de «Engadir novo torrent» se abre ao engadir un 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: Os valores pódense subministrar vía variábeis do contorno. Para a opción chamada «nome do parámetro», o nome da variábel de contorno é «QBT_PARAMETER_NAME» (en maiúsculas, o «-» substitúese por «_»). Para pasar os valores das marcas, estabeleza a variábel a «1» ou «TRUE». Por exemplo, para desactivar a pantalla de presentación: - + Command line parameters take precedence over environment variables Os parámetros da liña de ordes teñen prioridade sobre a variabeis de contorno - + Help Axuda @@ -3137,12 +3131,12 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d CustomThemeSource - + Failed to load custom theme style sheet. %1 Produciuse un erro ao cargar a folla de estilo do tema personalizado. %1 - + Failed to load custom theme colors. %1 Produciuse un erro ao cargar as cores do tema personalizado. %1 @@ -3150,7 +3144,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d DefaultThemeSource - + Failed to load default theme colors. %1 Produciuse un erro ao cargar as cores predeterminadas do tema. %1 @@ -3403,22 +3397,22 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d GUIAddTorrentManager - + Downloading torrent... Source: "%1" Descargando torrent... Fonte: "% 1" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,382 +3940,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 Motor de busca - + Search has failed A busca fallou - + Search has finished 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. 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 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 - - + + 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 @@ -5849,47 +5809,47 @@ Requirimento mínimo: %2. 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 @@ -6035,175 +5995,175 @@ Requirimento mínimo: %2. 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) - + 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 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 @@ -6212,190 +6172,180 @@ 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 - + 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 - + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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 @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Mostrar o &qBittorrent na área de notificacións - + 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 @@ -6803,65 +6753,65 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».anos - + Log performance warnings Rexistrar avisos de rendemento - + 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. @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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 + + + 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 - + 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; @@ -7462,12 +7417,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.) @@ -7487,183 +7442,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> @@ -7673,69 +7628,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. @@ -7746,18 +7701,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 @@ -7848,163 +7803,163 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no 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 @@ -8283,6 +8238,39 @@ 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 @@ -8364,6 +8352,15 @@ Desactiváronse estes engadidos. Non tes permiso de escritura para o camiño + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8572,124 +8569,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 - + No 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. - + 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 - + Web seed editing Edición da semente web - + Web seed URL: URL da semente web: @@ -8697,33 +8694,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 @@ -8731,22 +8728,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. @@ -8795,12 +8792,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" @@ -8822,117 +8819,76 @@ Desactiváronse estes engadidos. - + Item doesn't exist: %1. O elemento non existe: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Non se puido mover o cartafol dentro de si mesmo. - + 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: - Intervalo de actualización: - - - - sec - s - - - - Default - Predeterminado - - RSSWidget @@ -9032,61 +8988,101 @@ 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 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9200,142 +9196,168 @@ Desactiváronse estes engadidos. Tamaño: - + Name i.e: file name Nome - + Size i.e: file size Tamaño - + Seeders i.e: Number of full sources Sementadores - + Leechers i.e: Number of partial sources Pares incompletos - + Filter search results... Filtrar resultados da busca... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultados (mostrando <i>%1</i> de <i>%2</i>): - + Torrent names only Só nos nomes dos torrents - + Everywhere En todo - + Use regular expressions Usar expresións regulares - + Open download window Abrir a xanela de descargas - + Download Descargar - + Open description page Abrir a páxina da descrición - + Copy Copiar - + Name Nome - + Download link Descargar ligazón - + Description page URL URL da descrición - + Searching... Buscando... - + Search has finished A busca rematou - + Search aborted Busca cancelada - + An error occurred during search... Produciuse un erro durante a busca... - + Search returned no results A busca non obtivo resultados - + Engine Motor - + Engine URL URL do motor - + Published On Publicado o - + 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 @@ -9343,104 +9365,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») @@ -9466,94 +9488,94 @@ 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. - + <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 @@ -9561,32 +9583,32 @@ Prema no botón «Engadidos de busca...» na parte inferior dereita da xanela pa 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" @@ -9984,77 +10006,67 @@ 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. - - 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 - - Free space: - - - - + External IPs: %1, %2 - IPs externas: % 1, % 2 + IPs externos: % 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 @@ -10593,17 +10605,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. @@ -10970,34 +10982,34 @@ Seleccione un nome diferente e ténteo de novo. TorrentShareLimitsWidget - - - + + + Default Predeterminado - - + + Unlimited Ilimitado - - + + Set to Establecer en - + Seeding time: Tempo de sementeira: - - + + @@ -11007,32 +11019,32 @@ Seleccione un nome diferente e ténteo de novo. min. - + Inactive seeding time: Tempo de sementeira inactivo: - + Action when the limit is reached: Acción cando se alcance o límite: - + Stop torrent Deter torrent - + Remove 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 @@ -11083,78 +11095,78 @@ 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 @@ -11174,39 +11186,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 @@ -11355,73 +11367,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 @@ -11910,319 +11922,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 - + 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. - + 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 - + 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 - + Super seeding mode Modo super-sementeira @@ -12277,18 +12289,18 @@ Seleccione un nome diferente e ténteo de novo. Non se puideron aplicar completamente os cambios no tema da IU. Os detalles pódense atopar no rexistro. - + Couldn't save UI Theme configuration. Reason: %1 Non se puido gardar a configuración do tema da IU. Motivo: %1 - - + + Couldn't remove icon file. File: %1. Non se puido eliminar o ficheiro de icona. Ficheiro: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Non se puido copiar o ficheiro de icona. Fonte: %1. Destino: %2. @@ -12355,32 +12367,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 @@ -12472,73 +12484,73 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Interface web: a cabeceira da orixe e do destino non coinciden. IP da orixe: «%1». Cabeceira da orixe: «%2». Orixe do destino: «%3» - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Interface web: a cabeceira do referente e a orixe do destino non coinciden. IP da orixe: «%1». Cabeceira do referente: «%2». Orixe do destino: «%3» - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Interface web: a cabeceira do servidor e o porto non coinciden. IP da orixe da petición: «%1». Porto do servidor: «%2». Cabeceira do servidor: «%3» - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Interface web: A cabeceira do servidor non é válida. IP da orixe da petición: «%1». Cabeceira recibida do servidor: «%2» diff --git a/src/lang/qbittorrent_he.ts b/src/lang/qbittorrent_he.ts index a195c1105..fe98b5e54 100644 --- a/src/lang/qbittorrent_he.ts +++ b/src/lang/qbittorrent_he.ts @@ -231,25 +231,25 @@ תנאי עצירה : - - + + None ללא - - + + Metadata received מטא־נתונים התקבלו - + Torrents that have metadata initially will be added as stopped. + - Files checked קבצים שנבדקו @@ -364,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 אחזור מטא־נתונים הושלם @@ -477,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 + ניסיון להוסיף טורנט כפול התגלה. מקור: %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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB מ״ב - + Recheck torrents on completion בדוק מחדש טורנטים בעת השלמה - - + + ms milliseconds מילי שנייה @@ -699,686 +699,680 @@ ערך - + (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 פתחת עוקבן משובץ @@ -1425,64 +1419,64 @@ משתמש בתיקיית תיצור: %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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ סיבה: %2 - + Torrent added טורנט התווסף - + '%1' was added. e.g: xxx.avi was added. '%1' התווסף. - + Download completed הורדה הושלמה @@ -1555,88 +1549,88 @@ - + 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 @@ -1773,263 +1767,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. יחריג את כל המאמרים. @@ -2225,503 +2219,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". - + 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 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" טורנט נעצר. טורנט: "%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" - + 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 מושבת - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 חייב לציין פתחה תקפה (1 עד 65535). - + Usage: שימוש: - + [options] [(<filename> | <url>)...] [options] [(<filename> | <url>)...] - + Options: אפשרויות: - + Display program version and exit מציג גרסת תוכנית ויוצא - + Display this help message and exit מציג הודעה זו של עזרה ויוצא @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also הפרמטר '%1' חייב לעקוב אחר התחביר '%1=%2' - + 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> אחסן קבצי תצורה ב<dir> - - + + name שם - + Store configuration files in directories qBittorrent_<name> אחסן קבצי תצורה בתיקיות qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory פרוץ לתוך קבצי המשכה מהירה של libtorrent ועשה נתיבי קבצים קשורי משפחה אל תיקיית הפרופיל - + files or URLs קבצים או כתובות - + Download the torrents passed by the user מוריד את הטורנטים שדולגו ע״י המשתמש - + Options when adding new torrents: אפשרויות בעת הוספת טורנטים חדשים: - + path נתיב - + Torrent save path נתיב שמירת טורנט - + Add torrents as running or stopped - + Skip hash check דלג על בדיקת גיבוב - + 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: ערכי אפשרות יכולים להיות מסופקים באמצעות משתני סביבה. לאפשרות בשם 'parameter-name', שם משתנה סביבה הוא 'QBT_PARAMETER_NAME' (ברישיות גדולה, '-' מוחלף עם '_'). כדי לחלוף על ערכי דגל, הגדר את המשתנה אל '1' או 'TRUE'. לדוגמה, כדי להשבית את מסך המתז: - + Command line parameters take precedence over environment variables פרמטרי שורת פקודה לוקחים קדימות על משתני סביבה - + Help עזרה @@ -3137,12 +3131,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 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show הראה - + Check for program updates בדוק אחר עדכוני תוכנה @@ -3980,382 +3940,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 שגיאת הורדה - - + + 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 קבצי טורנט @@ -5849,47 +5809,47 @@ Minimum requirement: %2. 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 @@ -6035,175 +5995,175 @@ 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) 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 @@ -6212,190 +6172,180 @@ 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 אפשר משיכת הזנות RSS - + 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 מורידן אוטומטי של טורנטי 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. @@ -6403,37 +6353,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 מושבת - + 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 +6396,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 &עדכן את השם של התחום הדינמי שלי @@ -6488,7 +6438,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - חיפוש + חפש @@ -6589,99 +6539,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. אל: @@ -6691,22 +6641,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.הראה את &qBittorrent באזור ההתראות - + 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 הקצה מראש מקום בכונן עבור כל הקבצים @@ -6801,65 +6751,65 @@ 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 כאשר טורנט מורד, הצע להוסיף טורנטים מקבצי .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 פתור נתיב שמירה קשור משפחה כנגד נתיב קטגוריה הולם במקום נתיב ברירת המחדל @@ -6879,50 +6829,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". @@ -6939,506 +6889,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 הגדר אל 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 שנה סיסמה נוכחית - + 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; @@ -7448,12 +7403,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not בחר קובץ ערכת נושא UI של qBittorrent - + Choose Alternative UI files location בחר מיקום של קבצי ממשק חלופי - + Supported parameters (case sensitive): פרמטרים נתמכים (תלוי רישיות): @@ -7473,183 +7428,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> @@ -7659,69 +7614,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 כללים הוחלו. @@ -7732,18 +7687,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 שגיאת אורך @@ -7834,163 +7789,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:פתחה @@ -8268,6 +8223,39 @@ 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 + + + PreviewSelectDialog @@ -8349,6 +8337,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8557,124 +8554,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. - + 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: כתובת זורע רשת: @@ -8682,33 +8679,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 @@ -8716,22 +8713,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' ירדה בהצלחה. אבחון שלה מתחיל. @@ -8780,12 +8777,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" @@ -8807,117 +8804,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. פריט אינו קיים: %1. - Can't move a folder into itself or its subfolders. + 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. לא היה ניתן לטעון הזנת 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 @@ -9017,61 +8973,101 @@ 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 + + + + + Feed URL: + כתובת הזנה: + + + Deletion confirmation אישור מחיקה - + Are you sure you want to delete the selected RSS feeds? האם אתה בטוח שאתה רוצה למחוק את הזנות ה־RSS הנבחרות? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed אנא בחר שם חדש עבור הזנת RSS זו - + New feed name: שם הזנה חדשה: - + Rename failed שינוי שם נכשל - + Date: תאריך: - + Feed: הזנה: - + Author: מחבר: @@ -9185,142 +9181,168 @@ Those plugins were disabled. גודל: - + Name i.e: file name שם - + Size i.e: file size גודל - + Seeders i.e: Number of full sources זורעים - + Leechers i.e: Number of partial sources עלוקות - + Filter search results... סנן תוצאות חיפוש… - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results תוצאות (מראה <i>%1</i> מתוך <i>%2</i>): - + Torrent names only שמות טורנט בלבד - + Everywhere בכל מקום - + Use regular expressions השתמש בביטויים רגולריים - + Open download window פתיחת חלון ההורדה - + Download הורד - + Open description page פתיחת דף התיאור - + Copy העתקה - + 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 שנה גודל של כל העמודות הבלתי מוסתרות אל הגודל של התכנים שלהן @@ -9328,104 +9350,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') @@ -9451,94 +9473,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 <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 עצור @@ -9546,32 +9568,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" @@ -9969,77 +9991,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. אין חיבורים ישירים. זה עלול להעיד על בעיות בתצורת הרשת. - - 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 לחץ כדי להחליף אל מגבלות מהירות רגילה @@ -10578,17 +10590,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10955,34 +10967,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default ברירת מחדל - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10992,32 +11004,32 @@ Please choose a different name and try again. דק' - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent עצור טורנט - + Remove torrent הסר טורנט - + Remove torrent and its content - + Enable super seeding for torrent אפשר זריעת־על עבור טורנט @@ -11068,78 +11080,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 לא ניתן ליצור נתיב שמירה @@ -11159,39 +11171,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 שם לא נכון של קטגוריה @@ -11340,73 +11352,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 נראות עמודות @@ -11895,319 +11907,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 הטורנט הנבחר "%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. האם אתה בטוח שאתה רוצה לאפשר ניהול טורנטים אוטומטי עבור הטורנטים הנבחרים? ייתכן שהם ימוקמו מחדש. - + 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' אינו תקף - + 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 מצב אוטומטי אומר שאפיוני טורנט שונים (למשל, נתיב שמירה) יוחלטו ע״י הקטגוריה המשויכת - + Super seeding mode מצב זריעת־על @@ -12262,18 +12274,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12339,32 +12351,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 @@ -12456,72 +12468,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' ממשק רשת: כותרת מוצא ומוצא מטרה אינם תואמים! IP מקור: '%1'. כותרת מוצא: '%2'. מוצא מטרה: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' ממשק רשת: כותרת אזכור ומוצא מטרה אינם תואמים! IP מקור: '%1'. כותרת אזכור: '%2'. מוצא מטרה: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' ממשק רשת: כותרת מארח בלתי תקפה, פתחה בלתי תואמת. בקש IP מקור: '%1'. פתחת שרת: '%2'. התקבלה כותרת מארח: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' ממשק רשת: כותרת מארח בלתי תקפה. בקש IP מקור: '%1'. התקבלה כותרת מארח: '%2' diff --git a/src/lang/qbittorrent_hi_IN.ts b/src/lang/qbittorrent_hi_IN.ts index 648967847..d07429fb0 100644 --- a/src/lang/qbittorrent_hi_IN.ts +++ b/src/lang/qbittorrent_hi_IN.ts @@ -231,25 +231,25 @@ रोकने की स्थिति - - + + None कोई नहीं - - + + Metadata received मेटाडाटा प्राप्त - + Torrents that have metadata initially will be added as stopped. + - Files checked जंची हुई फाइलें @@ -364,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 मेटाडेटा प्राप्ति पूर्ण @@ -477,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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB एमबी - + Recheck torrents on completion पूर्ण होने पर टाॅरेंट पुनः जाँचें - - + + ms milliseconds मिलीसे० @@ -699,686 +699,680 @@ मान - + (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 सम्मिलित ट्रैकर का पोर्ट @@ -1425,64 +1419,64 @@ - + 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ कारण : %2 - + Torrent added टॉरेंट जोड़ा गया - + '%1' was added. e.g: xxx.avi was added. '%1' को जोड़ा गया। - + Download completed डाउनलोड हो गया @@ -1555,88 +1549,88 @@ - + 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 क्यूबिटटाॅरेंट बन्द होने के लिए तैयार है... @@ -1773,263 +1767,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. किसी भी लेख से मिलान नहीं करेगा। @@ -2225,503 +2219,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". - + 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 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 - + 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" टोरेंट को स्थानांतरित करने में विफल। टोरेंट: "%1"। स्त्रोत: "%2"। गंतव्य: "%3"। कारण: "%4"। @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 को एक मान्य पोर्ट होना चाहिए (1 से 65535)। - + Usage: समुपयोग : - + [options] [(<filename> | <url>)...] [विकल्प] [(<filename>|<url>)...] - + Options: विकल्प : - + Display program version and exit प्रोग्राम संस्करण को प्रदर्शित करें और बाहर निकलें - + Display this help message and exit इस सहायता सन्देश को प्रदर्शित करें और बाहर निकलें @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + 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> विन्यास फाइलें इन डायरेक्टरी में संचित करें क्यूबिटटाॅरेंट_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory - + files or URLs फाइलें व URL - + Download the torrents passed by the user - + Options when adding new torrents: नये टॉरेंट जोड़ते समय विकल्प : - + path पथ - + Torrent save path टॉरेंट संचय पथ - + Add torrents as running or stopped - + Skip hash check हैश की जाँच रहने दे - + 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 सहायता @@ -3137,12 +3131,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 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show दिखाएँ - + Check for program updates कार्यक्रम अद्यतन के लिए जाँच करें @@ -3980,380 +3940,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 डाउनलोड त्रुटि - - + + 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 टाॅरेंट फाइलें @@ -5847,47 +5807,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 @@ -6033,402 +5993,392 @@ 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 डाउनलोड पूरा होने पर ईमेल अधिसूचना (&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 - + 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 स्रोत की सीमाएं - + 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. - + 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. @@ -6437,37 +6387,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) @@ -6580,99 +6530,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 फाइलों की नकल यहां करें : @@ -6682,22 +6632,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.क्यूबिटटोरेंट को अधिसूचना क्षेत्र में दिखाएँ (&Q) - + 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 सभी फाइलों के लिए डिस्क में स्थान पूर्व-निर्धारित करें @@ -6792,64 +6742,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 @@ -6869,50 +6819,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". @@ -6929,507 +6879,512 @@ 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 पासवर्ड बदलें - + 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> @@ -7439,12 +7394,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not क्यूबिटटोरेंट उपयोक्ता अंतरफलक थीम फाइल चयन - + Choose Alternative UI files location अन्य UI की फाइलों के स्थान को चुनें - + Supported parameters (case sensitive): समर्थित पैरामीटर (लघु-गुरू संवेदनशील) : @@ -7464,183 +7419,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> द्वारा प्रयुक्त फाइलों पर भी लागू होगा @@ -7650,69 +7605,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 नियमों को लागू किया। @@ -7723,18 +7678,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 लम्बाई त्रुटि @@ -7794,17 +7749,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 का सहकर्मी @@ -7825,163 +7780,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 + पीयर 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:पोर्ट की प्रतिलिपि बनायें @@ -8259,6 +8214,39 @@ 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 @@ -8340,6 +8328,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8548,124 +8545,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. - + 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 : @@ -8673,33 +8670,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 @@ -8707,22 +8704,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 स्रोत को डाउनलोड कर लिया है। इसे समझने की शुरुआत कर दी है। @@ -8771,12 +8768,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" @@ -8798,117 +8795,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. वस्तु अस्तित्व में नहीं है : %1। - Can't move a folder into itself or its subfolders. + 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 वस्तु का पथ गलत है : %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 @@ -9008,61 +8964,101 @@ 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 स्रोत का URL भरें + + + + + Feed URL: + स्रोत URL: + + + Deletion confirmation मिटाने की पुष्टि - + Are you sure you want to delete the selected RSS feeds? क्या आप निश्चित ही चुनें हुए RSS स्रोतों को मिटाना चाहते हैं? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed इस RSS स्रोत के लिए नया नाम चुनें - + New feed name: नया स्रोत नाम: - + Rename failed नाम बदलनें में असफल - + Date: दिनांक: - + Feed: - + Author: रचनाकार: @@ -9176,142 +9172,168 @@ Those plugins were disabled. आकार: - + Name i.e: file name नाम - + Size i.e: file size आकार - + Seeders i.e: Number of full sources स्रोतस्वामी - + Leechers i.e: Number of partial sources जोंके - + Filter search results... खोज परिणाम फिल्टर करें... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results परिणाम (<i>%2</i> में से <i>%1</i> प्रदर्शित): - + Torrent names only केवल टौरेंटों के नाम - + Everywhere हर जगह - + Use regular expressions रेगुलर एक्सप्रेसन्स का प्रयोग करें - + Open download window - + Download डाउनलोड - + Open description page विवरण पृष्ठ खोलें - + Copy प्रतिलिपि बनाए - + 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 सभी गैर-ओझल स्तंभों का आकार उनकी अंतर्वस्तु के अनुसार बदलें @@ -9319,104 +9341,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') @@ -9442,94 +9464,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 <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 रोकें @@ -9537,32 +9559,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" @@ -9960,77 +9982,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. कोई प्रत्यक्ष कनेक्शन नहीं। नेटवर्क विन्यास समस्या संभव है। - - 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 सामान्य गति सीमाएँ उपयोग करने हेतु क्लिक करें @@ -10567,17 +10579,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10944,34 +10956,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default पूर्व निर्धारित - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10981,32 +10993,32 @@ Please choose a different name and try again. न्यूनतम - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent टॉरेंट को हटायें - + Remove torrent and its content - + Enable super seeding for torrent इसे महास्रोत बनायें @@ -11057,78 +11069,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 सञ्चय पथ नहीं बन सका @@ -11148,39 +11160,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 श्रेणी का नाम गलत है @@ -11324,73 +11336,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 स्तंभ दृश्यता @@ -11879,319 +11891,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 उपनाम : '%1' अमान्य है - + 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 महास्रोत रीति @@ -12246,18 +12258,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. चित्र फाइल नहीं हटा पाये। फाइल: %1। - + Couldn't copy icon file. Source: %1. Destination: %2. आइकॉन फाइल की प्रतिलिपि नहीं बना पाये। स्त्रोत: %1। गंतव्य: %2। @@ -12323,32 +12335,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 @@ -12440,72 +12452,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_hr.ts b/src/lang/qbittorrent_hr.ts index e708485c3..8283995b6 100644 --- a/src/lang/qbittorrent_hr.ts +++ b/src/lang/qbittorrent_hr.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Ponovno provjeri torrente pri dopunjavanju - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 Priloži dijalog "Dodaj novi torrent" u glavni prozor - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1532,18 +1526,18 @@ 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 @@ -1554,88 +1548,88 @@ 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 @@ -1771,263 +1765,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. @@ -2223,503 +2217,503 @@ 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". - + 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 - + 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 - + 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 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" - + 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" - + 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" - + %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 - + 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" @@ -2769,47 +2763,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 @@ -2858,27 +2852,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 mora navesti važeći port (1 do 65535). - + Usage: Upotreba: - + [options] [(<filename> | <url>)...] [options] [(<filename> | <url>)...] - + Options: Postavke: - + Display program version and exit Prikaz verzije programa i izlaz - + Display this help message and exit Prikaz ove poruke pomoći i izlaz @@ -2889,130 +2883,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parametar '%1' mora slijediti sintaksu '%1=%2' - + Confirm the legal notice Potvrdite pravnu obavijest - - + + port port - + Change the WebUI port Promijenite WebUI port - + Change the torrenting port Promijenite port za torrentiranje - + Disable splash screen Onemogući najavni ekran - + Run in daemon-mode (background) Pokreni u pozadinskom načinu - + dir Use appropriate short form or abbreviation of "directory" mapa - + Store configuration files in <dir> Pohranite konfiguracijske datoteke u <dir> - - + + name naziv - + Store configuration files in directories qBittorrent_<name> Pohranite konfiguracijske datoteke u direktorije qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Hakirajte datoteke libtorrent fastresume i napravite putanje datoteka relativnim prema direktoriju profila - + files or URLs datoteke ili URL-ovi - + Download the torrents passed by the user Preuzmite torrente koje je korisnik prenio - + Options when adding new torrents: Opcije pri dodavanju novih torrenta: - + path putanja - + Torrent save path Putanja za spremanje torrenta - + Add torrents as running or stopped Dodajte torrente kao pokrenute ili zaustavljene - + Skip hash check Preskoči provjeru hasha - + Assign torrents to category. If the category doesn't exist, it will be created. Dodijelite torrente kategoriji. Ako kategorija ne postoji, bit će stvorena. - + Download files in sequential order Preuzmite datoteke redoslijedom - + Download first and last pieces first Preuzmi prve i zadnje dijelove prije drugih. - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Odredite hoće li se prilikom dodavanja torrenta otvoriti dijaloški okvir "Dodaj novi 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: Vrijednosti opcija mogu se dostaviti putem varijabli okoline. Za opciju pod nazivom 'naziv-parametra', naziv varijable okruženja je 'QBT_PARAMETER_NAME' (u velikim slovima, '-' zamijenjeno s '_'). Za prijenos vrijednosti zastavice postavite varijablu na '1' ili 'TRUE'. Na primjer, da biste onemogućili početni ekran: - + Command line parameters take precedence over environment variables Parametri naredbenog retka imaju prednost nad varijablama okruženja - + Help Pomoć @@ -3135,12 +3129,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 Nije uspjelo učitavanje lista stilova prilagođene teme. %1 - + Failed to load custom theme colors. %1 Učitavanje prilagođenih boja teme nije uspjelo. %1 @@ -3148,7 +3142,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Učitavanje zadanih boja teme nije uspjelo. %1 @@ -3401,22 +3395,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" Preuzimanje torrenta... Izvor: "%1" - + 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? @@ -3534,40 +3528,6 @@ 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 @@ -3958,12 +3918,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 @@ -3978,381 +3938,380 @@ 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 - + Search has failed Pretraga nije uspjela - + Search has finished 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. + Nije moguće preuzeti Python instalacijski program. Pogreška: "%1". Molimo instalirajte ga ručno. - + Rename Python installer failed. Source: "%1". Destination: "%2". Preimenovanje Python instalacijskog programa nije uspjela. Izvor: "%1". Odredište: "%2". - + Python installation success. 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 - + 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 - - + + 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 @@ -5846,47 +5805,47 @@ Minimum requirement: %2. 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 @@ -6033,402 +5992,392 @@ Minimum requirement: %2. 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) - + 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 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 - + 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 - + 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: - + 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 - + 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. @@ -6441,37 +6390,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 @@ -6584,99 +6533,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: @@ -6686,24 +6635,24 @@ Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski Prikaži &qBittorrent u području obavijesti - + 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 - Unaprijed dodijeli prostor na disku za sve datoteke + Prethodno dodijelite prostor na disku za sve datoteke @@ -6796,65 +6745,65 @@ Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski godine - + Log performance warnings Zapis upozorenja o performansama - + 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 @@ -6874,50 +6823,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". @@ -6946,506 +6895,511 @@ 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 - + 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 + + + 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 - + 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” @@ -7455,12 +7409,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): @@ -7480,183 +7434,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> @@ -7666,69 +7620,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. @@ -7739,18 +7693,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 @@ -7841,163 +7795,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' ali ne 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 @@ -8276,6 +8230,39 @@ 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 @@ -8357,6 +8344,15 @@ Ti dodaci su onemogućeni. Nemate dopuštenje za pisanje na putanju + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8565,124 +8561,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 - + No 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. - + 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 - + Web seed editing Uređivanje web seeda - + Web seed URL: URL web seeda: @@ -8690,33 +8686,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 @@ -8724,22 +8720,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. @@ -8788,12 +8784,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" @@ -8815,117 +8811,76 @@ Ti dodaci su onemogućeni. - + Item doesn't exist: %1. Stavka ne postoji: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Nije moguće premjestiti mapu u samu mapu. - + 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: - Interval osvježavanja: - - - - sec - sek - - - - Default - Zadano - - RSSWidget @@ -9025,61 +8980,101 @@ Ti dodaci su onemogućeni. - Feed options... - + Edit feed URL... + Uredi URL feeda... - + + Edit feed URL + 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9193,142 +9188,168 @@ Ti dodaci su onemogućeni. Veličina: - + Name i.e: file name Ime - + Size i.e: file size Veličina - + Seeders i.e: Number of full sources Seederi - + Leechers i.e: Number of partial sources Leecheri - + Filter search results... Filtriraj rezultate pretraživanja... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Rezultati (prikazano <i>%1</i> od <i>%2</i>): - + Torrent names only Samo nazivi torrenta - + Everywhere Svugdje - + Use regular expressions Koristite regularne izraze - + Open download window Otvori prozor za preuzimanje - + Download Preuzimanje - + Open description page Otvaranje stranice opisa - + Copy Kopiraj - + Name Ime - + Download link Link preuzimanja - + Description page URL URL stranice opisa - + Searching... Pretraživanje... - + Search has finished Pretraga je završila - + Search aborted Pretraga prekinuta - + An error occurred during search... Greška prilikom pretrage... - + Search returned no results Potraga vraćena bez rezultata - + Engine Pogon - + Engine URL URL pogona - + Published On Objavljeno dana - + Column visibility Vidljivost stupca - + 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 @@ -9336,104 +9357,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') @@ -9459,94 +9480,94 @@ 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. - + <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 @@ -9554,32 +9575,32 @@ Pritisnite gumb "Traži dodatke..." u donjem desnom kutu prozora da bi 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" @@ -9977,77 +9998,67 @@ 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. - - 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 - - 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 @@ -10586,17 +10597,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 @@ -10963,34 +10974,34 @@ Odaberite drugo ime i pokušajte ponovno. TorrentShareLimitsWidget - - - + + + Default Zadano - - + + Unlimited Neograničeno - - + + Set to Postavljeno - + Seeding time: Vrijeme seedanja: - - + + @@ -11000,32 +11011,32 @@ Odaberite drugo ime i pokušajte ponovno. min - + Inactive seeding time: Neaktivno vrijeme seedanja: - + Action when the limit is reached: Postupak kada se dosegne ograničenje: - + Stop torrent Zaustavi torrent - + Remove 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 @@ -11076,78 +11087,78 @@ 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 @@ -11167,39 +11178,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 @@ -11348,73 +11359,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 @@ -11903,319 +11914,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 - + 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. - + 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 - + 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 - + Super seeding mode Način superseedanja @@ -12270,18 +12281,18 @@ Odaberite drugo ime i pokušajte ponovno. Promjene teme korisničkog sučelja nisu se mogle u potpunosti primijeniti. Detalje možete pronaći u Dnevniku. - + Couldn't save UI Theme configuration. Reason: %1 Nije moguće spremiti konfiguraciju teme korisničkog sučelja. Razlog: %1 - - + + Couldn't remove icon file. File: %1. Nije moguće ukloniti datoteku ikone. Datoteka: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Nije moguće kopirati datoteku ikone. Izvor: %1. Odredište: %2. @@ -12347,32 +12358,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 @@ -12464,72 +12475,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: neusklađenost zaglavlja izvora i ishodišta cilja! Izvor IP: '%1'. Izvorno zaglavlje: '%2'. Ciljano podrijetlo: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Nepodudaranje zaglavlja preporuke i ciljanog porijekla! Izvor IP: '%1'. Zaglavlje preporuke: '%2'. Ciljano podrijetlo: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: nevažeće zaglavlje hosta, nepodudaranje portova. IP izvora zahtjeva: '%1'. Port poslužitelja: '%2'. Primljeno Host zaglavlje: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: nevažeće zaglavlje hosta. IP izvora zahtjeva: '%1'. Primljeno Host zaglavlje: '%2' diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index a52f2879b..282dee40a 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrentek újraellenőrzése a letöltésük végeztével - - + + ms milliseconds ms @@ -699,686 +699,680 @@ É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 "Új torrent hozzáadása" párbeszédpanel csatolása a főablakhoz - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ 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 @@ -1555,88 +1549,88 @@ Indok: %2 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 @@ -1773,263 +1767,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. @@ -2099,12 +2093,12 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Corrupted resume data: %1 - + Sérült folytatási adat: %1 save_path is invalid - + save_path érvénytelen @@ -2186,12 +2180,12 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Corrupted resume data: %1 - + Sérült folytatási adat: %1 save_path is invalid - + save_path érvénytelen @@ -2225,503 +2219,503 @@ 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". - + 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 - + 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 + Trackerek összevonva ú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" + Nem sikerült frissíteni a trackerlistá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 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" - + Duplicate torrent - + Duplikált 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. - + 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" + URL seed kapcsolati hiba. Torrent: "%1". URL: "%2". Error: "%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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor %1 -nek érvényes portot kell megadnia (1 és 65535 között). - + Usage: Használat: - + [options] [(<filename> | <url>)...] [opciók] [(<filename> | <url>)...] - + Options: Opciók: - + Display program version and exit Program verzió megjelenítése és kilépés - + Display this help message and exit Ezen súgó üzenet megjelenítése és kilépés @@ -2891,130 +2885,130 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor A '%1' paraméternek követnie kell a '%1=%2' szintaxist - + Confirm the legal notice Jogi közlemény megerősítése - - + + port port - + Change the WebUI port WebUI port módosítása - + Change the torrenting port Torrent port módosítása - + Disable splash screen Induló képernyő letiltása - + Run in daemon-mode (background) daemon-mode -ban való futtatás (háttérben) - + dir Use appropriate short form or abbreviation of "directory" könyvtár - + Store configuration files in <dir> Konfigurációs fájlok tárolása itt: <dir> - - + + name név - + Store configuration files in directories qBittorrent_<name> Konfigurációs fájlok tárolása a qBittorrent_<name> könyvtárakban - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Hackeljen bele a libtorrent gyors-folytatás állományaiba, és a fájlok elérési útjai legyenek relatívak a profil könyvtárhoz - + files or URLs fájlok vagy URL-ek - + Download the torrents passed by the user A felhasználó által átadott torrentek letöltése - + Options when adding new torrents: Beállítások az új torrentek hozzáadásakor: - + path útvonal - + Torrent save path Torrent mentési útvonala - + Add torrents as running or stopped Torrentek hozzáadása futó vagy megállított állapotban - + Skip hash check Hash ellenőrzés kihagyása - + Assign torrents to category. If the category doesn't exist, it will be created. Torrentek kategóriákba rendezése. Ha a kategória nem létezik, akkor létre lesz hozva. - + Download files in sequential order Fájlok letöltése sorrendben - + Download first and last pieces first Első és utolsó szelet letöltése először - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Adja meg, hogy az "Új torrent hozzáadása" párbeszédablak megnyíljon-e egy új torrent hozzáadásakor. - + 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: Az opciók értékekeit környezeti változókon keresztül lehet megadni. Egy 'option-name' beállítás esetén, a környezeti változó neve 'QBT_PARAMETER_NAME' (nagybetűkkel, '-' helyett '_'). A jelzőértékek átadásához állítsa a változót '1' vagy 'TRUE' értékre. Például, az induló képernyő letiltásához: - + Command line parameters take precedence over environment variables Parancssori paraméterek elsőbbséget élveznek a környezeti változókkal szemben - + Help Súgó @@ -3137,12 +3131,12 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor CustomThemeSource - + Failed to load custom theme style sheet. %1 Nem sikerült betölteni az egyéni téma stíluslapot. %1 - + Failed to load custom theme colors. %1 Nem sikerült betölteni az egyéni téma színeket. %1 @@ -3150,7 +3144,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor DefaultThemeSource - + Failed to load default theme colors. %1 Nem sikerült betölteni az alapértelmezett téma színeket. %1 @@ -3403,22 +3397,22 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent letöltése... Forrás: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,382 +3940,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 - + Search has failed A keresés sikertelen - + Search has finished 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. + A 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. - A Python telepítése sikeres volt. + A Python telepítése sikeres. - + 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ü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 - - + + 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 @@ -4449,12 +4409,12 @@ Minimális követelmény: %2. The remote server closed the connection prematurely, before the entire reply was received and processed - A távoli szerver idő előtt lezárta a kapcsolatot, mielőtt a teljes választ megkapta és feldolgozta volna + A távoli kiszolgáló 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 - A távoli szerverhez való kapcsolat időtúllépés miatt megszakadt + Időtúllépés a távoli kiszolgálóhoz kapcsolódáskor @@ -4464,7 +4424,7 @@ Minimális követelmény: %2. The remote server refused the connection - A távoli szerver elutasította a kapcsolatot + A távoli kiszolgáló elutasította a kapcsolatot @@ -4504,12 +4464,12 @@ Minimális követelmény: %2. The remote content was not found at the server (404) - A távoli tartalom nem található a szerveren (404) + A távoli tartalom nem található a kiszolgálón (404) The remote server requires authentication to serve the content but the credentials provided were not accepted - 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 + 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 @@ -5849,47 +5809,47 @@ Minimális követelmény: %2. 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 @@ -6035,175 +5995,175 @@ Minimális követelmény: %2. 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) - + 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 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 @@ -6212,190 +6172,180 @@ 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 - + 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 - + 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: - + 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. @@ -6404,37 +6354,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 - + 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. @@ -6447,37 +6397,37 @@ A DNS újrakötési támadások ellen, 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 @@ -6590,99 +6540,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: @@ -6692,22 +6642,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 - + 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 @@ -6802,65 +6752,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 - + 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 @@ -6880,50 +6830,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". @@ -6952,506 +6902,511 @@ 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-szerver: - + Sender Küldő - + From: From sender Feladó: - + This server requires a secure connection (SSL) 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 - + 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 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 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 + + + 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> + <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 is 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 - + 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 @@ -7461,12 +7416,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): @@ -7486,183 +7441,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 @@ -7672,69 +7627,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. @@ -7745,18 +7700,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 @@ -7847,163 +7802,163 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt' szűrő, de ne 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 @@ -8281,6 +8236,39 @@ 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 @@ -8362,6 +8350,15 @@ Azok a modulok letiltásra kerültek. Nincs írási jogosultság az elérési úthoz + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8570,124 +8567,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 - + No 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. - + 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 - + Web seed editing Web seed szerkesztés - + Web seed URL: Web seed URL: @@ -8695,33 +8692,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 @@ -8729,22 +8726,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. @@ -8793,12 +8790,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" @@ -8820,117 +8817,76 @@ Azok a modulok letiltásra kerültek. - + Item doesn't exist: %1. Elem nem létezik: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Nem lehetett áthelyezni a mappát önmagába. - + 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: - Frissítési időköz: - - - - sec - mp - - - - Default - Alapértelmezett - - RSSWidget @@ -9030,61 +8986,101 @@ 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 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 + + + + + Feed 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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ő: @@ -9198,142 +9194,168 @@ Azok a modulok letiltásra kerültek. Méret: - + Name i.e: file name Név - + Size i.e: file size Méret - + Seeders i.e: Number of full sources Seederek - + Leechers i.e: Number of partial sources Leecherek - + Filter search results... Keresési találatok szűrése… - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Találatok (<i>%1</i> / <i>%2</i> megjelenítve): - + Torrent names only Csak a torrentek nevében - + Everywhere Mindenhol - + Use regular expressions Reguláris kifejezések használata - + Open download window Nyissa meg a letöltési ablakot - + Download Letöltés - + Open description page Adatlap megnyitása - + Copy Másolás - + Name Név - + Download link Letöltési link - + Description page URL Adatlap link - + Searching... Keresés… - + Search has finished A keresés befejeződött - + Search aborted Keresés megszakítva - + An error occurred during search... Hiba történt a keresés közben… - + Search returned no results A keresés nem hozott eredményt - + Engine Motor - + Engine URL Motor URL - + Published On Közzétéve - + 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 @@ -9341,104 +9363,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 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') @@ -9464,94 +9486,94 @@ 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. - + <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 @@ -9559,32 +9581,32 @@ Az ablak jobb alsó sarkában található „Modulok keresése…” gomb megnyo 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". @@ -9982,77 +10004,67 @@ 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. - - 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 - - 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 @@ -10591,17 +10603,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. @@ -10968,34 +10980,34 @@ Válasszon egy másik nevet és próbálja újra. TorrentShareLimitsWidget - - - + + + Default Alapértelmezett - - + + Unlimited Korlátlan - - + + Set to Érték - + Seeding time: Seedelési idő: - - + + @@ -11005,32 +11017,32 @@ Válasszon egy másik nevet és próbálja újra. perc - + Inactive seeding time: Inaktív seedelési idő: - + 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 - + 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 @@ -11081,78 +11093,78 @@ 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 @@ -11164,7 +11176,7 @@ Válasszon egy másik nevet és próbálja újra. URL scheme must be one of [%1] - URL séma a következők egyike kell, hogy legyen: [%1] + Az URL séma a következők egyike kell, hogy legyen: [%1] @@ -11172,39 +11184,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 @@ -11353,73 +11365,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 @@ -11908,319 +11920,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 - + 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. - + 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 - + 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 - + Super seeding mode Szuper seed üzemmód @@ -12275,18 +12287,18 @@ Válasszon egy másik nevet és próbálja újra. A felhasználói felület változtatásokat nem sikerült teljes mértékben végrehajtani. A részleteket a Napló nézetben találja. - + Couldn't save UI Theme configuration. Reason: %1 Nem sikerült a felhasználói téma konfiguráció mentése. Indok: %1 - - + + Couldn't remove icon file. File: %1. Nem sikerült eltávolítani az ikon fájlt. Fájl: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Nem sikerült az ikon fájl másolása. Forrás: %1. Cél: %2. @@ -12352,32 +12364,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 @@ -12469,72 +12481,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: Origin header & Cél origin nem egyezik! Forrás IP: '%1'. Origin header: '%2'. Cél origin: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Hivatkozó fejléc & Cél forrás eltér! Forrás IP: '%1'. Hivatkozó fejléc: '%2'. Cél forrás: '%3'. - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' - WebUI: Érvénytelen Kiszolgáló fejléc, port eltérés. Forrást kérő IP: '%1'. Kiszolgáló port: '%2'. Fogadott Kiszolgáló fejléc: '%3' + WebUI: Érvénytelen Kiszolgáló fejléc, port eltérés. Forrást kérő IP: '%1'. Szerver port: '%2'. Fogadott Kiszolgáló fejléc: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Érvénytelen Kiszolgáló fejléc. Forrást kérő IP: '%1'. Fogadott Kiszolgáló fejléc: '%2' diff --git a/src/lang/qbittorrent_hy.ts b/src/lang/qbittorrent_hy.ts index 37ccce578..079f24fe9 100644 --- a/src/lang/qbittorrent_hy.ts +++ b/src/lang/qbittorrent_hy.ts @@ -231,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. + - Files checked Ստուգված ֆայլեր @@ -364,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 Մետատվյալների առբերումը ավարտվեց @@ -477,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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB ՄԲ - + Recheck torrents on completion Ավարտելուց հետո վերստուգել torrent-ները - - + + ms milliseconds մվ @@ -699,686 +699,680 @@ Արժեք - + (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 Արգելված ուղղորդիչի դարպասը @@ -1425,64 +1419,64 @@ - + 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1532,18 +1526,18 @@ - + Torrent added Torrent-ը ավելացվեց - + '%1' was added. e.g: xxx.avi was added. '%1'-ը ավելացվեց: - + Download completed Ներբեռնման ավարտ @@ -1554,88 +1548,88 @@ - + 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 @@ -1771,263 +1765,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. @@ -2223,503 +2217,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»: - + 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-ը: 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" @@ -2769,47 +2763,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 @@ -2858,27 +2852,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: Օգտագործում՝ - + [options] [(<filename> | <url>)...] - + Options: Ընտրանքներ՝ - + Display program version and exit Ցուցադրել ծրագրի տարբերակն ու փակել այն - + Display this help message and exit Ցուցադրել այս օգնող հաղորդագրությունը և դուրս գալ @@ -2889,130 +2883,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Confirm the legal notice - - + + port մատույց - + Change the WebUI port Փոխել WebUI մատույցը - + Change the torrenting port Փոխել torrent-ման մատույցը - + 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 ֆայլեր կամ URL-ներ - + Download the torrents passed by the user - + Options when adding new torrents: Նոր torrent-ներ ավելացնելու ընտրանքներ՝ - + path ուղի - + Torrent save path Torrent-ը պահելու ուղին - + Add torrents as running or stopped - + Skip hash check Բաց թողնել հեշի ստուգումը - + 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 Օգնություն @@ -3135,12 +3129,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 @@ -3148,7 +3142,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3401,22 +3395,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? @@ -3534,40 +3528,6 @@ 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 @@ -3958,12 +3918,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Ցուցադրել - + Check for program updates Ստուգել արդիացումների առկայությունը @@ -3978,379 +3938,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 Ներբեռնման սխալ - - + + 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 ֆայլեր @@ -5845,47 +5805,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 @@ -6031,402 +5991,392 @@ 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 Փնտրել ցանցորդներ 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 Բաժանման սահմանաչափ - + 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՝ - + 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. @@ -6435,37 +6385,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 @@ -6578,99 +6528,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 ֆայլերը դեպի՝ @@ -6680,22 +6630,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Ցուցա&դրել qBittorrent-ը ծանուցման տարածքում - + 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 Նախապես սկավառակային տարածք հատկացնել բոլոր ֆայլերի համար @@ -6790,64 +6740,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 @@ -6867,50 +6817,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". @@ -6927,506 +6877,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: Կապուղիների առավ. քանակը 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 @@ -7436,12 +7391,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7461,183 +7416,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 @@ -7647,69 +7602,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 կանոններ են կիրառվել։ @@ -7720,18 +7675,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 @@ -7822,163 +7777,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-ը @@ -8255,6 +8210,39 @@ 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 + + + PreviewSelectDialog @@ -8336,6 +8324,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8544,124 +8541,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. - + 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-ը՝ @@ -8669,33 +8666,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 @@ -8703,22 +8700,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. @@ -8767,12 +8764,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" @@ -8794,117 +8791,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Տարրը գոյություն չունի՝ %1: - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - URL՝ - - - - Refresh interval: - - - - - sec - վ - - - - Default - Լռելայն - - RSSWidget @@ -9004,61 +8960,101 @@ 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 + + + + + + Feed URL: + + + + Deletion confirmation Ջնջելու հաստատում - + Are you sure you want to delete the selected RSS feeds? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed Ընտրեք RSS ալիքի անունը - + New feed name: Անունը. - + Rename failed Անվանափոխումը չհաջողվեց - + Date: Ամսաթիվ՝ - + Feed: - + Author: Հեղինակ՝ @@ -9172,142 +9168,168 @@ Those plugins were disabled. Չափ՝ - + Name i.e: file name Անվանում - + Size i.e: file size Չափ - + Seeders i.e: Number of full sources Բաժանողներ - + Leechers i.e: Number of partial sources Քաշողներ - + Filter search results... Զտիչի որոնման արդյունքներ... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + 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 Ներբեռնել - + Open description page - + Copy Պատճենել - + 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 @@ -9315,104 +9337,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') @@ -9437,94 +9459,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 Կանգնեցնել @@ -9532,32 +9554,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" @@ -9955,77 +9977,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. Չկան ուղիղ կապակցումներ։ - - 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 Սեղմեք՝ հիմնական սահ-ներին անցնելու համար @@ -10561,17 +10573,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10938,34 +10950,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Լռելայն - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10975,32 +10987,32 @@ Please choose a different name and try again. Նվազ. - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Հեռացնել torrent-ը - + Remove torrent and its content - + Enable super seeding for torrent @@ -11051,78 +11063,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 @@ -11142,39 +11154,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 Անվանակարգի սխալ անվանում @@ -11318,73 +11330,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 Սյունակների տեսանելիությունը @@ -11873,319 +11885,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. - + 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 - + 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 Գերբաժանման գործելաձև @@ -12240,18 +12252,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12317,32 +12329,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 @@ -12434,72 +12446,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_id.ts b/src/lang/qbittorrent_id.ts index c5227dd2e..17c8c83ad 100644 --- a/src/lang/qbittorrent_id.ts +++ b/src/lang/qbittorrent_id.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Periksa ulang torrent saat selesai - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Alasan: %2 - + Torrent added Torrent ditambahkan - + '%1' was added. e.g: xxx.avi was added. '%1' telah ditambahkan. - + Download completed Unduhan Selesai @@ -1555,88 +1549,88 @@ Alasan: %2 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 @@ -1772,263 +1766,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. @@ -2224,503 +2218,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". - + 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 - + 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 - + 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 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" - + 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" - + %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" @@ -2770,47 +2764,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 @@ -2859,27 +2853,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 harus spesifik port benar (1 sampai 65535). - + Usage: Penggunaan: - + [options] [(<filename> | <url>)...] - + Options: Opsi: - + Display program version and exit Tampilkan versi program dan keluar - + Display this help message and exit Tampilkan pesan bantuan ini dan keluar @@ -2890,130 +2884,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' harus mengikuti sintaksis '%1=%2' - + Confirm the legal notice - - + + port port - + Change the WebUI port Ubah port WebUI - + Change the torrenting port - + Disable splash screen Nonaktifkan layar sambutan - + Run in daemon-mode (background) Jalankan dalam mode daemon (latar) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Simpan berkas konfigurasi di dalam <dir> - - + + name nama - + Store configuration files in directories qBittorrent_<name> Simpan berkas konfigurasi di dalam direktori qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Retas ke dalam libtorrent sambung-cepat berkas dan buat tempat tujuan relatif ke direktori profil - + files or URLs berkas atau URL - + Download the torrents passed by the user Unduhan torrent dilewati oleh pengguna - + Options when adding new torrents: Opsi saat menambahkan torrent baru: - + path jalur - + Torrent save path Jalur simpan torrent - + Add torrents as running or stopped - + Skip hash check Lewati pengecekan hash - + Assign torrents to category. If the category doesn't exist, it will be created. Masukkan torrent ke dalam kategori. Kategori otomatis dibuat jika tidak ada. - + Download files in sequential order Unduh berkas dalam urutan - + Download first and last pieces first Unduh bagian-bagian pertama dan akhir terlebih dahulu - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Tentukan apakah "Buat torrent baru" dialog terbuka saat menambah 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: Opsi nilai mungkin berisi via lingkungan variabel. Untuk opsi bernama 'parameter-nama', lingkungan variabel nama ialah 'QBT_PARAMETER_NAMA' (dengan huruf besar, '-' diganti dengan '_'). Untuk meneruskan nilai bendera, atur variabel menjadi '1' atau 'BENAR'. Untuk contoh, untuk menonatifkan splash screen:  - + Command line parameters take precedence over environment variables Perintah baris parameter akan mendahulukan lebih dari lingkungan variabel. - + Help Bantuan @@ -3136,12 +3130,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 @@ -3149,7 +3143,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3402,22 +3396,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" - + 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? @@ -3535,40 +3529,6 @@ 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 @@ -3959,12 +3919,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 @@ -3979,380 +3939,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 - + Search has failed 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 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 - - + + 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 @@ -5846,47 +5806,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 @@ -6032,175 +5992,175 @@ Minimum requirement: %2. 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 @@ -6209,190 +6169,180 @@ 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 - + 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 - + 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: - + 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. @@ -6401,37 +6351,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 - + 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. @@ -6444,37 +6394,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 @@ -6587,99 +6537,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: @@ -6689,22 +6639,22 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard & Tampilkan &qBittorrent di dalam area notifikasi - + 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 @@ -6799,64 +6749,64 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard & tahun - + Log performance warnings Log peringatan performa - + 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 @@ -6876,50 +6826,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". @@ -6936,506 +6886,511 @@ 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 + + + 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 - + 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 @@ -7445,12 +7400,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): @@ -7470,183 +7425,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 @@ -7656,69 +7611,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. @@ -7729,18 +7684,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 @@ -7831,163 +7786,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 @@ -8265,6 +8220,39 @@ Plugin ini semua dinonaktifkan. Tautan Web + + 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 + + + PreviewSelectDialog @@ -8346,6 +8334,15 @@ Plugin ini semua dinonaktifkan. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8554,124 +8551,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 - + No 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. - + 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 - + Web seed editing Penyuntingan bibit web - + Web seed URL: URL bibit web: @@ -8679,33 +8676,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 @@ -8713,22 +8710,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. @@ -8777,12 +8774,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" @@ -8804,117 +8801,76 @@ Plugin ini semua dinonaktifkan. - + Item doesn't exist: %1. Item tidak ada: %1. - Can't move a folder into itself or its subfolders. + Couldn't move folder into itself. - + 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 @@ -9014,61 +8970,101 @@ Plugin ini semua dinonaktifkan. - Feed options... + Edit feed URL... - + + 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 + + + + + Feed URL: + URL Umpan: + + + Deletion confirmation Konfirmasi penghapusan - + Are you sure you want to delete the selected RSS feeds? Anda yakin ingin menghapus masukkan terpilih RSS? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9182,142 +9178,168 @@ Plugin ini semua dinonaktifkan. Ukuran: - + Name i.e: file name Nama - + Size i.e: file size Ukuran - + Seeders i.e: Number of full sources Benih - + Leechers i.e: Number of partial sources Lintah - + Filter search results... Uraikan hasil pencarian - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Hasil (menampilkan <i>%1</i> dari <i>%2</i>): - + Torrent names only Hanya nama torrent - + Everywhere Dimana saja - + Use regular expressions Gunakan ekspresi reguler - + Open download window - + Download Unduh - + Open description page Buka halaman deskripsi - + Copy Salin - + Name Nama - + Download link Tautan unduhan - + Description page URL URL halaman deskripsi - + Searching... Mencari... - + Search has finished Pencarian sudah selesai - + Search aborted Pencarian dibatalkan - + An error occurred during search... Ada terjadi galat saat pencarian... - + Search returned no results Pencarian kembali tanpa hasil - + Engine - + Engine URL - + Published On - + 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 @@ -9325,104 +9347,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') @@ -9448,94 +9470,94 @@ 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. - + <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 @@ -9543,32 +9565,32 @@ Klik tombol "Temukan plugin" tepat dibawah bagian jendela untuk memasa 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" @@ -9966,77 +9988,67 @@ 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 @@ -10575,17 +10587,17 @@ Mohon memilih nama lain dan coba lagi. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10952,34 +10964,34 @@ Mohon memilih nama lain dan coba lagi. TorrentShareLimitsWidget - - - + + + Default Bawaan - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10989,32 +11001,32 @@ Mohon memilih nama lain dan coba lagi. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Buang torrent - + Remove torrent and its content - + Enable super seeding for torrent Aktifkan berbagi super untuk torrent @@ -11065,78 +11077,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 @@ -11156,39 +11168,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 @@ -11332,73 +11344,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 @@ -11887,319 +11899,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 - + 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. - + 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 - + 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 @@ -12254,18 +12266,18 @@ Mohon memilih nama lain dan coba lagi. Perubahan Tema UI tidak dapat diterapkan sepenuhnya. Lihat detail di log. - + Couldn't save UI Theme configuration. Reason: %1 Tidak dapat menyimpan konfigurasi Tema UI. Reason: %1 - - + + Couldn't remove icon file. File: %1. Tidak dapat menghapus file ikon. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Tidak dapat menyalin file ikon. Source: %1. Destination: %2. @@ -12331,32 +12343,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 @@ -12448,72 +12460,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: header asal & Target asal tidak sesuai! Sumber IP: '%1'. Header asal: '%2'. Target asal: '%3 - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Pengarah header & Target asal tidak sesuai! Sumber IP: '%1'. Pengarah header: '%2'. Target asal: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: : header Host tidak sah, port tidak sesuai. Permintaan asal IP: '%1'. Server port: '%2'. Diterima Host header: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: header Host tidak sah. Permintaan asal IP: '%1'. Diterima header Host: '%2' diff --git a/src/lang/qbittorrent_is.ts b/src/lang/qbittorrent_is.ts index a9459be35..7311e2e21 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,26 +788,26 @@ AdvancedSettings - - - - + + + + MiB MiB - + Socket backlog size - + Recheck torrents on completion - - + + ms milliseconds ms @@ -824,524 +824,518 @@ 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 @@ -1351,159 +1345,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 @@ -1559,69 +1553,69 @@ - + 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. @@ -1630,7 +1624,7 @@ [qBittorrent] '%1' hefur lokið niðurhali - + Torrent: %1, sending mail notification @@ -1651,34 +1645,34 @@ - + 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'. @@ -1690,23 +1684,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. @@ -1716,72 +1710,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 @@ -1933,145 +1927,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 @@ -2080,120 +2074,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. @@ -2427,503 +2421,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" @@ -2980,47 +2974,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 @@ -3069,27 +3063,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: Notkun: - + [options] [(<filename> | <url>)...] - + Options: Valkostir: - + Display program version and exit - + Display this help message and exit @@ -3100,130 +3094,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + 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 running or stopped - + Skip hash check - + 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 Hjálp @@ -3350,12 +3344,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 @@ -3363,7 +3357,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3652,22 +3646,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? @@ -3962,40 +3956,6 @@ 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 @@ -4432,12 +4392,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Sýna - + Check for program updates @@ -4452,175 +4412,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". @@ -4646,65 +4606,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 @@ -4719,72 +4679,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 @@ -4793,51 +4753,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 @@ -4848,22 +4808,22 @@ Minimum requirement: %2. [D: %1, U: %2] qBittorrent %3 - + Hide Fela - + Exiting qBittorrent Hætti qBittorrent - + Open Torrent Files - + Torrent Files @@ -6372,47 +6332,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 @@ -6557,78 +6517,73 @@ 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". @@ -6645,346 +6600,341 @@ 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. @@ -6993,37 +6943,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 @@ -7136,99 +7086,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: @@ -7238,22 +7188,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 @@ -7348,64 +7298,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 @@ -7430,264 +7380,269 @@ 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: @@ -7696,272 +7651,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 @@ -7971,12 +7926,12 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7996,183 +7951,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 @@ -8182,69 +8137,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 @@ -8255,18 +8210,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 @@ -8357,163 +8312,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 @@ -8837,6 +8792,39 @@ 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 @@ -8933,6 +8921,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropListDelegate @@ -9194,99 +9191,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. @@ -9303,12 +9300,12 @@ Those plugins were disabled. Forgangur - + Speed graphs are disabled - + You can enable it in Advanced Options @@ -9337,17 +9334,17 @@ Those plugins were disabled. qBittorrent - + Filter files... - + Web seed editing - + Web seed URL: @@ -9441,33 +9438,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 @@ -9475,22 +9472,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. @@ -9539,12 +9536,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" @@ -9566,117 +9563,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - Slóð: - - - - Refresh interval: - - - - - sec - - - - - Default - - - RSSImp @@ -9803,61 +9759,101 @@ Those plugins were disabled. - Feed options... + Edit feed URL... - + + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed - + New feed name: - + Rename failed - + Date: Dagsetning: - + Feed: - + Author: Höfundur: @@ -10009,25 +10005,25 @@ Those plugins were disabled. Stærð: - + Name i.e: file name Nafn - + Size i.e: file size Stærð - + Seeders i.e: Number of full sources - + Leechers i.e: Number of partial sources @@ -10037,118 +10033,144 @@ Those plugins were disabled. Leitarvél - + Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + 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 Niðurhal - + Open description page - + Copy Afrita - + Name Nafn - + Download link - + Description page URL - + Searching... - + Search has finished Leit lokið - + 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 @@ -10163,104 +10185,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') @@ -10318,94 +10340,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 @@ -10417,32 +10439,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" @@ -10848,77 +10870,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. - - 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 @@ -11517,17 +11529,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -12044,34 +12056,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -12081,32 +12093,32 @@ Please choose a different name and try again. - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent - + Remove torrent and its content - + Enable super seeding for torrent @@ -12169,78 +12181,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 @@ -12260,39 +12272,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 @@ -12512,53 +12524,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 @@ -12571,17 +12583,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... @@ -12594,7 +12606,7 @@ Please choose a different name and try again. Skilaboð - + Column visibility @@ -13183,117 +13195,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 @@ -13303,179 +13315,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 @@ -13509,22 +13521,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 @@ -13545,7 +13557,7 @@ Please choose a different name and try again. Afrita magnet slóð - + Super seeding mode @@ -13604,18 +13616,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -13681,32 +13693,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 @@ -13806,72 +13818,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index 0fc4858e9..cb5d59bd8 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -232,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 @@ -365,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 @@ -478,42 +478,41 @@ 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. +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 - Rilevato un tentativo di aggiungere un torrente duplicato. -Sorgente: %1. -Torrent esistente: "%2". -Info hash torrent: %3. -Risultato: %4 - AddTorrentParamsWidget @@ -676,21 +675,21 @@ Risultato: %4 AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Ricontrolla torrent quando completato - - + + ms milliseconds ms @@ -707,686 +706,680 @@ Risultato: %4 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] + 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 - Intervallo scadenza cache resolver host interno - - - + 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 Collega la finestra di dialogo "Aggiungi nuovo torrent" alla finestra principale - + 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 - + -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 @@ -1412,7 +1405,7 @@ Risultato: %4 cookies must be array - i cookie devono essere una matrice + i cookie devonoe ssere una matrice @@ -1434,66 +1427,66 @@ La modalità portatile implica una relativa ripresa rapida. 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. @@ -1511,34 +1504,34 @@ 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'. @@ -1547,18 +1540,18 @@ Comando: `%2` Motivo: %2 - + Torrent added Torrent aggiunto - + '%1' was added. e.g: xxx.avi was added. '%1' è stato aggiunto. - + Download completed Download completato @@ -1569,73 +1562,73 @@ Motivo: %2 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. @@ -1644,22 +1637,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 @@ -1798,263 +1791,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. @@ -2258,253 +2251,262 @@ 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". - + 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 - + 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 - + 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". @@ -2512,94 +2514,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 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" @@ -2607,27 +2609,17 @@ Sorgente: "%2" 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 - - - + 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" @@ -2636,7 +2628,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" @@ -2645,7 +2637,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" @@ -2653,65 +2645,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" - + 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" @@ -2719,37 +2711,37 @@ 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. @@ -2757,50 +2749,50 @@ 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" - + %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 - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Messaggio di errore ricevuto dal seed dell'URL. Torrent: "%1" @@ -2808,14 +2800,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" @@ -2823,26 +2815,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" @@ -2899,50 +2891,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. @@ -2992,27 +2984,27 @@ Ulteriori informazioni: %2. %1 deve specificare una porta valida (1 a 65535). - + Usage: Uso: - + [options] [(<filename> | <url>)...] [opzioni] [(<filename> | <url>)...] - + Options: Opzioni: - + Display program version and exit Visualizza versione programma ed esci - + Display this help message and exit Visualizza questo messaggio di aiuto ed esci @@ -3023,133 +3015,133 @@ Ulteriori informazioni: %2. Il parametro '%1' deve seguire la sintassi '%1=%2' - + Confirm the legal notice Conferma l'avviso legale - - + + port porta - + Change the WebUI port Modifica la porta WebUI - + Change the torrenting port Modifica la porta del torrent - + Disable splash screen Disattiva schermata d'avvio - + Run in daemon-mode (background) Esegui in modalità daemon (background) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Memorizza file configurazione in <dir> - - + + name nome - + Store configuration files in directories qBittorrent_<name> Memorizza file configurazione in cartelle qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Inserisciti nei file fastresume di libtorrent e rendi i percorsi dei file relativi alla cartella del profilo - + files or URLs file o URL - + Download the torrents passed by the user Scarica i torrent passati dall'utente - + Options when adding new torrents: Impostazioni all'aggiunta di nuovi torrent: - + path percorso - + Torrent save path Percorso salvataggio torrent - + Add torrents as running or stopped Aggiungi torrent come avviato o fermato - + Skip hash check Salta controllo hash - + Assign torrents to category. If the category doesn't exist, it will be created. Assegna torrent a categoria. Se la categoria non esiste, verrà creata. - + Download files in sequential order Scarica file in ordine sequenziale - + Download first and last pieces first Scarica èer prima la prima e l'ultima parte - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Specifica se la finestra "Aggiungi nuovo torrent" si apra quando viene aggiunto un 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: 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: - + Command line parameters take precedence over environment variables I parametri della riga di comando hanno la precedenza sulle variabili ambiente - + Help Aiuto @@ -3272,12 +3264,12 @@ Per esempio, per disabilitare la schermata d'avvio: CustomThemeSource - + Failed to load custom theme style sheet. %1 Impossibile caricare il foglio di stile del tema personalizzato. %1 - + Failed to load custom theme colors. %1 Impossibile caricare i colori del tema personalizzato. %1 @@ -3285,7 +3277,7 @@ Per esempio, per disabilitare la schermata d'avvio: DefaultThemeSource - + Failed to load default theme colors. %1 Impossibile caricare i colori del tema predefinito. %1 @@ -3538,23 +3530,23 @@ Per esempio, per disabilitare la schermata d'avvio: GUIAddTorrentManager - + Downloading torrent... Source: "%1" Download torrent... Sorgente: "%1" - + 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? @@ -3676,46 +3668,6 @@ 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. - Errore gestione alimentazione. -Impossibile trovare un'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 - - - - InhibitorMacOS - - - PMMacOS - qBittorrent is active - PMMacOS - - LegalNotice @@ -4113,12 +4065,12 @@ Codice errore: %2. - + Show Visualizza - + Check for program updates Controlla gli aggiornamenti del programma @@ -4133,176 +4085,176 @@ 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 - + Search has failed 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. @@ -4310,103 +4262,103 @@ 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. 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. @@ -4414,33 +4366,33 @@ Per far funzionare i motori di ricerca aggiorna alla versione più recente. Requisito minimo: v. %2. - + Paused 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". @@ -4448,7 +4400,7 @@ 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". @@ -4456,72 +4408,72 @@ Hash risultato: "%2". Hash previsto: "%3". - + Download error Errore download - - + + 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 @@ -6019,47 +5971,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 @@ -6205,175 +6157,175 @@ Motivo: %1 KiB - - Show free disk space in status bar - Visualizza lo spazio disco libero nella barra di stato - - - + 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) - + 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 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 @@ -6382,190 +6334,180 @@ 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 - + 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 - + 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! - Con il tipo proxy scelto alcune funzioni non sono disponibili! - - - - Note: The password is saved unencrypted - Nota: la password viene salvata non crittografata - - - + 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: - + 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. @@ -6574,37 +6516,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 - + 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. @@ -6618,38 +6560,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 @@ -6762,99 +6704,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: @@ -6864,22 +6806,22 @@ Usa ';' per dividere più voci. Visualizza &qBittorrent nell'area di notifica - + 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 @@ -6974,66 +6916,66 @@ Usa ';' per dividere più voci. anni - + Log performance warnings Avvisi prestazioni registro - + 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 @@ -7053,50 +6995,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". @@ -7126,507 +7068,512 @@ 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 - + 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 + + + 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 - + 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; @@ -7636,12 +7583,12 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazi Seleziona file tema UI qBittorent - + Choose Alternative UI files location Scegli posizione alternativa file interfaccia - + Supported parameters (case sensitive): Parametri supportati (maiuscole/minuscole): @@ -7661,184 +7608,184 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazi 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 @@ -7849,69 +7796,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. @@ -7922,18 +7869,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 @@ -8024,164 +7971,164 @@ Questa modalità verrà applicato <strong>non solo</strong> ai file 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 @@ -8460,6 +8407,45 @@ 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 @@ -8541,6 +8527,15 @@ Questi plugin verranno disabilitati. Non hai i permessi di scrittura per il percorso + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8749,124 +8744,124 @@ Questi plugin verranno disabilitati. 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 - + %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: - + 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 - + Web seed editing Modifica distributore web - + Web seed URL: URL distributore web: @@ -8874,34 +8869,34 @@ Questi plugin verranno disabilitati. 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 @@ -8909,22 +8904,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. @@ -8978,12 +8973,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" @@ -9005,121 +9000,80 @@ Formato dati non valido. - + Item doesn't exist: %1. L'elemento non esiste: %1. - Can't move a folder into itself or its subfolders. - Impossibile spostare una cartella in se stessa o nelle sue sottocartelle. + Couldn't move folder into itself. + Impossibile spostare la cartella in se stessa. - + 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 - Valore 'refreshInterval' non valido - - - - Feed doesn't exist: %1. - Il feed non esiste: %1. - - - - RSSFeedDialog - - - RSS Feed Options - Opzioni feed RSS - - - - URL: - URL: - - - - Refresh interval: - Intervallo aggiornamento: - - - - sec - s - - - - Default - Predefinito - - RSSWidget @@ -9219,61 +9173,101 @@ Errore: "formato dati non valido". - Feed options... - Opzioni feed... + Edit feed URL... + Modifica URL feed... - + + Edit feed URL + 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9387,142 +9381,168 @@ Errore: "formato dati non valido". Dimensione: - + Name i.e: file name Nome - + Size i.e: file size Dimensione - + Seeders i.e: Number of full sources Sorgenti - + Leechers i.e: Number of partial sources Sorgenti parziali - + Filter search results... Risultati filtro ricerca... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Risultati (visualizza <i>%1</i> su <i>%2</i>): - + Torrent names only Solo nomi torrent - + Everywhere Qualsiasi - + Use regular expressions Usa espressione regolare - + Open download window Apri finestra download - + Download Download - + Open description page Apri descrizione pagina - + Copy Copia - + Name Nome - + Download link Collegamento download - + Description page URL URL descrizione pagina - + Searching... Ricerca... - + Search has finished Riecrca completata - + Search aborted Ricerca annullata - + An error occurred during search... Si è verificato un errore durante la ricerca... - + Search returned no results La ricerca non ha prodotto risultati - + Engine Engine - + Engine URL URL engine - + Published On Pubblicato il - + 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 @@ -9530,104 +9550,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') @@ -9653,94 +9673,94 @@ 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. - + <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 @@ -9748,14 +9768,14 @@ Fai clic sul pulsante "Estensioni di ricerca..." in basso a destra per 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". @@ -9763,14 +9783,14 @@ 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". @@ -9778,14 +9798,14 @@ 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". @@ -10186,77 +10206,67 @@ 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. - - Free space: N/A - Spazio libero: n/d - - - - + + 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 - - Free space: - Spazio libero: - - - + 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à @@ -10795,17 +10805,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. @@ -11178,34 +11188,34 @@ File: %1 TorrentShareLimitsWidget - - - + + + Default Predefinito - - + + Unlimited Illimitato - - + + Set to Impostato a - + Seeding time: Tempo seeding: - - + + @@ -11215,32 +11225,32 @@ File: %1 min - + Inactive seeding time: Tempo inattività seeding: - + Action when the limit is reached: Azione quando viene raggiunto il limite: - + Stop torrent Ferma torrent - + Remove torrent Rimuovi torrent - + Remove torrent and its content Rimuovi torrent e il suo contenuto - + Enable super seeding for torrent Abilita super seeding per torrent @@ -11291,78 +11301,78 @@ File: %1 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 @@ -11382,39 +11392,39 @@ File: %1 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 @@ -11563,73 +11573,73 @@ File: %1 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 @@ -11713,12 +11723,12 @@ Motivo: "%1" Start torrents - Avvia torrent + Avvia torrents Stop torrents - Ferma torrent + Ferma torrents @@ -12094,7 +12104,7 @@ Motivo: "%1" Ratio / Time Active (in months), indicates how popular the torrent is - Rapporto/tempo attivo (in mesi), indica quanto è popolare il torrent + Rapporto / Tempo Attivo (in mesi), indica quanto è popolare il torrent @@ -12119,321 +12129,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 - + 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. - + 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 - + 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 - + Super seeding mode Modalità super distribuzione @@ -12489,20 +12499,20 @@ Per i dettagli controlla il registro di esecuzione. 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. Motivo: %1 - - + + Couldn't remove icon file. File: %1. 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. @@ -12578,37 +12588,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 @@ -12713,75 +12723,75 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Interfaccia web: intestazione Origin e origine Target non corrispondenti! IP sorgente: '%1'. Intestazione Origin: '%2': Intestazione Target: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Interfaccia web: Intestazione Referer e origine Target non corrispondenti! IP sorgente: '%1'. Intestazione referer: '%2'. Origine Target: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Interfaccia web: Intestazione Host non valida, porte non corrispondenti. Sorgente IP di richiesta: '%1'. Porta server: '%2'. Intestazione Host ricevuta: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Interfaccia web: Intestazione Host non valida. IP sorgente di richiesta: '%1'. Intestazione Host ricevuta: '%2' diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index eaa66fd1f..96ee26b53 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -231,25 +231,25 @@ 停止条件: - - + + None なし - - + + Metadata received メタデータを受信後 - + Torrents that have metadata initially will be added as stopped. 最初からメタデータを持つTorrentは、停止状態で追加されます。 + - Files checked ファイルのチェック後 @@ -364,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 メタデータの取得が完了しました @@ -477,35 +477,35 @@ 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. + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrentの完了時に再チェックする - - + + ms milliseconds ミリ秒 @@ -699,686 +699,680 @@ - + (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 「新しいTorrernの追加」ダイアログをメインウィンドウに追加します - + 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 組み込みトラッカーのポート @@ -1425,64 +1419,64 @@ 次の設定ディレクトリーを使用します: %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を有効にするには設定ファイルを手動で編集します。 @@ -1497,34 +1491,34 @@ 外部プログラムが実行できませんでした。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'. @@ -1533,18 +1527,18 @@ 理由: %2 - + Torrent added Torrentが追加されました - + '%1' was added. e.g: xxx.avi was added. '%1'が追加されました。 - + Download completed ダウンロードが完了しました @@ -1555,88 +1549,88 @@ 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は終了準備ができました @@ -1773,263 +1767,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. すべての記事にマッチしません。 @@ -2099,12 +2093,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が無効です @@ -2186,12 +2180,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が無効です @@ -2225,503 +2219,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 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". - + 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のため、トラッカーはマージできません。 - + 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 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 - + 重複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" - + 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". エラー: 無効なデータ形式 - + %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" 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1には正しいポート番号(1から65535)を設定してください。 - + Usage: 使用法: - + [options] [(<filename> | <url>)...] [オプション] [(<filename> | <url>)...] - + Options: オプション: - + Display program version and exit プログラムのバージョンを表示して終了する - + Display this help message and exit このヘルプメッセージを表示して終了する @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 引数'%1'は'%1=%2'の構文で指定する必要があります - + Confirm the legal notice 免責事項を確認する - - + + port ポート番号 - + Change the WebUI port WebUIのポート番号を変更する - + Change the torrenting port Torrent用のポート番号を変更する - + Disable splash screen スプラッシュ・スクリーンを表示しません - + Run in daemon-mode (background) デーモンモード(バックグラウンド)で実行します - + dir Use appropriate short form or abbreviation of "directory" ディレクトリ - + Store configuration files in <dir> 設定ファイルは <dir> に保存されます - - + + name 名前 - + Store configuration files in directories qBittorrent_<name> 設定ファイルはディレクトリ qBittorrent_<name> に保存されます - + Hack into libtorrent fastresume files and make file paths relative to the profile directory libtorrentのfastresumeファイルをハックして、プロファイルディレクトリーに相対的なファイルパスを作成します - + files or URLs ファイルまたはURL - + Download the torrents passed by the user ユーザーから渡されたTorrentをダウンロード - + Options when adding new torrents: 新規Torrentを追加したときのオプション: - + path パス - + Torrent save path Torrentの保存パス - + Add torrents as running or stopped Torrentを実行中または停止中で追加する - + Skip hash check ハッシュチェックを省略する - + Assign torrents to category. If the category doesn't exist, it will be created. Torrentにカテゴリーを割り当てます。存在しないカテゴリーは作成されます。 - + Download files in sequential order ファイルのピースを先頭から順番にダウンロードします - + Download first and last pieces first 先頭と最後のピースを先にダウンロード - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Torrentを追加するときに「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: オプションの値は環境変数から取られます。オプション名'parameter-name'の値に対応する環境変数名は'QBT_PARAMETER_NAME' (大文字、'-'は'_'に置き換え)です。フラグ値を渡す場合は、値に'1'または'TRUE'を指定します。スプラッシュスクリーンを表示しないようにするには: - + Command line parameters take precedence over environment variables コマンドライン引数は環境変数より優先されます - + Help ヘルプ @@ -3137,12 +3131,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 カスタムテーマのスタイルシートが読み込めませんでした。%1 - + Failed to load custom theme colors. %1 カスタムテーマのカラーが読み込めませんでした。%1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 デフォルトテーマのカラーが読み込めませんでした。%1 @@ -3403,22 +3397,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のため、トラッカーはマージできません。 - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent(%1)はすでに転送リストにあります。新しいソースからトラッカーをマージしますか? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 表示 - + Check for program updates プログラムのアップデートを確認する @@ -3980,383 +3940,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。 + Pythonのインストーラーをダウンロードできませんでした。エラー: %1。 手動でインストールしてください。 - + Rename Python installer failed. Source: "%1". Destination: "%2". Pythonインストーラーの名前を変更できませんでした。変更前: "%1". 変更後: "%2". - + Python installation success. 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". + 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 ダウンロードエラー - - + + 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ファイル @@ -5850,47 +5810,47 @@ Minimum requirement: %2. 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 @@ -6036,175 +5996,175 @@ Minimum requirement: %2. 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 (実験的) - + 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 @@ -6213,190 +6173,180 @@ 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 非稼働シード時間に達したとき - + 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 シードの制限 - + 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: - + 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. @@ -6406,37 +6356,37 @@ IPv4、またはIPv6アドレスを指定します。 "*"でIPv4と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. @@ -6449,37 +6399,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) @@ -6592,99 +6542,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"ファイルを次のパスにコピーする: @@ -6694,22 +6644,22 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 qBittorrentを通知エリアに表示する(&Q) - + 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 すべてのファイルにディスク領域を事前に割り当てる @@ -6804,65 +6754,65 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 - + 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 ".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 相対的な保存パスを、デフォルトのパスではなく適切なカテゴリーのパスで解決します @@ -6882,50 +6832,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". @@ -6954,506 +6904,511 @@ 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 外部プログラムの実行 - + 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 現在のパスワードを変更 - + 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>。 @@ -7463,12 +7418,12 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'をフィルタ qBittorrentのUIテーマファイルを選択 - + Choose Alternative UI files location 別のUIファイルの場所の選択 - + Supported parameters (case sensitive): 使用できるパラメーター(大文字と小文字を区別): @@ -7488,183 +7443,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>で開いた場合も適用されます。 @@ -7675,69 +7630,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)が適用されました。 @@ -7748,18 +7703,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 文字数エラー @@ -7850,163 +7805,163 @@ readme[0-9].txt: 'readme1.txt', 'readme2.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 ピア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:ポートをコピー @@ -8284,6 +8239,39 @@ 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 @@ -8365,6 +8353,15 @@ Those plugins were disabled. パスへの書き込み許可がありません + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8573,124 +8570,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. このウェブシードはすでにリストにあります。 - + 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 高度な設定で有効にできます - + Web seed editing ウェブシードの編集 - + Web seed URL: ウェブシードURL: @@ -8698,33 +8695,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 @@ -8732,22 +8729,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'は正常にダウンロードされ、解析が開始されました。 @@ -8796,12 +8793,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" @@ -8823,117 +8820,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. アイテムが存在しません: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + フォルダーをフォルダー自身に移動できませんでした。 - + 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 @@ -9033,61 +8989,101 @@ Those plugins were disabled. - Feed options... - + Edit feed URL... + フィードURLを編集... - + + Edit feed URL + フィードURLの編集 + + + Please choose a folder name フォルダー名を選択してください - + Folder name: フォルダー名: - + New folder 新しいフォルダー - + + + Please type a RSS feed URL + RSSフィードのURLを入力してください + + + + + Feed URL: + フィード URL: + + + Deletion confirmation 削除の確認 - + Are you sure you want to delete the selected RSS feeds? 選択したRSSフィードを削除しますか? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed このRSSフィードの新しい名前を入力してください - + New feed name: 新しいフィード名: - + Rename failed 名前の変更に失敗 - + Date: 日付: - + Feed: フィード: - + Author: 作者: @@ -9201,142 +9197,168 @@ Those plugins were disabled. サイズ: - + Name i.e: file name 名前 - + Size i.e: file size サイズ - + Seeders i.e: Number of full sources シーダー - + Leechers i.e: Number of partial sources リーチャー - + Filter search results... 検索結果を絞り込む... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results 検索結果 ( <i>%2</i> 件中 <i>%1</i> 件を表示): - + Torrent names only Torrent名だけ - + Everywhere すべて - + Use regular expressions 正規表現を使用 - + Open download window ダウンロードウィンドウを開く - + Download ダウンロード - + Open description page 説明ページを開く - + Copy コピー - + Name 名前 - + Download link ダウンロードのリンク - + Description page URL 説明ページのURL - + Searching... 検索中... - + Search has finished 検索完了 - + Search aborted 検索中止 - + An error occurred during search... 検索中にエラーが発生しました... - + Search returned no results 検索結果は 0 件でした - + Engine エンジン - + Engine URL エンジンのURL - + Published On 公開日 - + Column visibility 表示する列 - + Resize columns 列のリサイズ - + Resize all non-hidden columns to the size of their contents 非表示以外のすべての列をコンテンツのサイズにリサイズします @@ -9344,104 +9366,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')が含まれています @@ -9467,94 +9489,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 <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 停止 @@ -9562,32 +9584,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" 検索UIの状態が保存されたデータを読み込めませんでした。 ファイル: "%1". エラー: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - 保存された検索結果を読み込めませんでした。タブ: "%1". ファイル: "%2". エラー: "%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" @@ -9985,77 +10007,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. ネットワークに接続されていません。ネットワーク構成に問題がある可能性があります。 - - 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 オンライン - - 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 クリックすると通常の速度制限に切り替わります @@ -10594,17 +10606,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks アクティブなタスクが多すぎます - + Torrent creation is still unfinished. Torrentの作成は、まだ完了していません。 - + Torrent creation failed. Torrentを作成できませんでした。 @@ -10971,34 +10983,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default デフォルト - - + + Unlimited 無制限 - - + + Set to 選択 - + Seeding time: シード時間: - - + + @@ -11008,32 +11020,32 @@ Please choose a different name and try again. - + Inactive seeding time: 非稼働シード時間: - + Action when the limit is reached: 制限に達したときのアクション: - + Stop torrent Torrentを停止する - + Remove torrent Torrentを削除 - + Remove torrent and its content Torrentとそのコンテンツを削除する - + Enable super seeding for torrent Torrentをスーパーシードにする @@ -11084,85 +11096,85 @@ 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ではありません + '%1' は有効なURLではありません。 @@ -11175,39 +11187,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 不正なカテゴリ名 @@ -11356,73 +11368,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 表示カラム @@ -11911,319 +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)? 選択されたTorrentを再チェックしますか? - + Rename 名前の変更 - + New name: 新しい名前: - + Choose save path 保存先の選択 - + 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管理を有効にしますか? それらは再配置される可能性があります。 - + 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'は正しくありません - + 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の各種プロパティー(保存先など)が決定されます - + Super seeding mode スーパーシードモード @@ -12278,18 +12290,18 @@ Please choose a different name and try again. UIテーマの変更が完全には適用されませんでした。詳細はログを参照してください。 - + Couldn't save UI Theme configuration. Reason: %1 UIテーマの設定を保存できませんでした。理由: %1 - - + + Couldn't remove icon file. File: %1. アイコンファイルを削除できませんでした。ファイル: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. アイコンファイルをコピーできませんでした。コピー元: %1. コピー先: %2. @@ -12355,32 +12367,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の実行ファイルが見つかりませんでした。 @@ -12472,72 +12484,72 @@ 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. ウェブサーバーエラー。不明なエラー。 - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: オリジンヘッダーとターゲットオリジンが一致しません! ソース IP: '%1'. オリジンヘッダー: '%2'. ターゲットオリジン: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: リファラーヘッダーとターゲットオリジンが一致しません! ソース IP: '%1'. リファラーヘッダー: '%2'. ターゲットオリジン: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: 不正なホストヘッダー、ポートの不一致です。リクエストソースIP: '%1'. サーバーポート番号: '%2'. 受信ホストヘッダー: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: 不正なホストヘッダーです。リクエストソース IP: '%1'. 受信ホストヘッダー: '%2' diff --git a/src/lang/qbittorrent_ka.ts b/src/lang/qbittorrent_ka.ts index 8566bb3ef..b3294426d 100644 --- a/src/lang/qbittorrent_ka.ts +++ b/src/lang/qbittorrent_ka.ts @@ -231,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. + - Files checked @@ -364,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 მეტამონაცემების მიღება დასრულებულია @@ -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,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB მიბ - + Recheck torrents on completion ტორენტების გადამოწმება დასრულებისას - - + + ms milliseconds მწ @@ -699,686 +699,680 @@ მნიშვნელობა - + (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 ჩაშენებული ტრეკერის პორტი @@ -1425,64 +1419,64 @@ - + 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1532,18 +1526,18 @@ - + Torrent added ტორენტი დამატებულია - + '%1' was added. e.g: xxx.avi was added. '%1' დამატებულია - + Download completed @@ -1554,88 +1548,88 @@ - + 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 @@ -1771,263 +1765,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. @@ -2223,503 +2217,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" @@ -2769,47 +2763,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 @@ -2858,27 +2852,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: გამოყენება: - + [options] [(<filename> | <url>)...] - + Options: პარამეტრები: - + Display program version and exit - + Display this help message and exit @@ -2889,130 +2883,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + 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 running or stopped - + Skip hash check ჰეშის შემოწმების გამოტოვება - + 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 დახმარება @@ -3135,12 +3129,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 @@ -3148,7 +3142,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3401,22 +3395,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? @@ -3534,40 +3528,6 @@ 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 @@ -3958,12 +3918,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show ჩვენება - + Check for program updates პროგრამული განახლების შემოწმება @@ -3978,380 +3938,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 ჩამოტვირთვის შეცდომა - - + + 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 ტორენტ ფაილები @@ -5845,47 +5805,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 @@ -6031,175 +5991,175 @@ 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 @@ -6208,227 +6168,217 @@ 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 სიდირების ლიმიტები - + 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. @@ -6437,37 +6387,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 @@ -6580,99 +6530,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 ფაილების კომირება მისამართით: @@ -6682,22 +6632,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.&qBittorrent-ის ჩვენება სისტემურ არეში - + 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 დისკის ადგილის წინასწარ გამოყოფა ყველა ფაილისთვის @@ -6792,64 +6742,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 @@ -6869,50 +6819,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". @@ -6929,506 +6879,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 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 ახლანდელი პაროლის შეცვლა - + 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 @@ -7438,12 +7393,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not ამოირჩიეთ qBittorrent-ის ინტერფეისის თემის ფაილი - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7463,183 +7418,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 @@ -7649,69 +7604,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 @@ -7722,18 +7677,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,163 +7779,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 @@ -8257,6 +8212,39 @@ 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 + + + PreviewSelectDialog @@ -8338,6 +8326,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8546,124 +8543,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. - + 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: @@ -8671,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 @@ -8705,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. @@ -8769,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" @@ -8796,117 +8793,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - ბმული: - - - - Refresh interval: - - - - - sec - წამი - - - - Default - - - RSSWidget @@ -9006,61 +8962,101 @@ 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 + + + + + + Feed URL: + + + + Deletion confirmation წაშლის დადასტურება - + Are you sure you want to delete the selected RSS feeds? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed გთხოვთ აირჩიეთ ახალი სახელი ამ RSS არხისთვის - + New feed name: არხის ახალი სახელი: - + Rename failed გადარქმევა ჩაიშალა - + Date: თარიღი: - + Feed: - + Author: ავტორი: @@ -9174,142 +9170,168 @@ Those plugins were disabled. ზომა: - + Name i.e: file name სახელი - + Size i.e: file size ზომა - + Seeders i.e: Number of full sources სიდები: - + Leechers i.e: Number of partial sources ლიჩები: - + Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + 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 ჩამოტვირთვა - + Open description page აღწერის გვერდის გახსნა - + Copy ასლი - + 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 ყველა ხილული სვეტის ზომის გასწორება მათი შიგთავსის მიხედვით. @@ -9317,104 +9339,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') @@ -9439,94 +9461,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. გთხოვთ დააყენოთ Python-ი საძიებო სისტემის გამოყენებისთვის. - + Empty search pattern ცარიელი საძიებო შაბლონი - + Please type a search pattern first გთხოვთ პირველ რიგში შეიყვანეთ საძიებო შაბლონი - + Stop გაჩერება @@ -9534,32 +9556,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" @@ -9957,77 +9979,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. პიდაპირი კავშირები არ არის. ამას შესაძლოა იწვევდეს ქსელის კონფიგურაციის პრობლემები. - - 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 დააწკაპუნეთ სიჩქარის ჩვეულებრივ ლიმიტებზე გადასართველად @@ -10563,17 +10575,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10940,34 +10952,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10977,32 +10989,32 @@ Please choose a different name and try again. წუთი - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent ტორენტის წაშლა - + Remove torrent and its content - + Enable super seeding for torrent @@ -11053,78 +11065,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 @@ -11144,39 +11156,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 არასწორი კატეგორიის სახელი @@ -11320,73 +11332,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 სვეტის ხილვადობა @@ -11875,319 +11887,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 ტეგის სახელი '%1' არასწორია - + 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 სუპერ სიდირების რეჟიმი @@ -12242,18 +12254,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12319,32 +12331,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 @@ -12436,72 +12448,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index 9ba51defa..ee8c85225 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -231,25 +231,25 @@ 중지 조건: - - + + None 없음 - - + + Metadata received 수신된 메타데이터 - + Torrents that have metadata initially will be added as stopped. 처음에 메타데이터가 포함된 토렌트는 중지된 상태로 추가됩니다. + - Files checked 파일 확인됨 @@ -261,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 파일이 삭제되지 않습니다. + 이 옵션을 선택하면 옵션 대화 상자의 "다운로드" 페이지 설정에 관계없이 .torrent 파일이 삭제되지 않습니다. @@ -336,12 +336,12 @@ Download in sequential order - 순차 내려받기 + 순차적으로 다운로드 Download first and last pieces first - 처음과 마지막 조각을 먼저 내려받기 + 처음과 마지막 조각을 먼저 다운로드 @@ -364,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 토렌트를 만들 수 없습니다. + 데이터를 완전히 다운로드할 때까지 v2 토렌트를 만들 수 없습니다. - + Filter files... 파일 필터링... - + Parsing metadata... 메타데이터 분석 중… - + Metadata retrieval complete 메타데이터 복구 완료 @@ -477,34 +477,34 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - 토렌트 내려받는 중... 소스 : "%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 - + 새로운 소스에서 트래커가 병합됨 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion 완료했을 때 토렌트 다시 검사 - - + + ms milliseconds ms @@ -699,686 +699,680 @@ - + (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) 활성화 + 다운로드한 파일에 대해 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 내장 트래커 포트 @@ -1425,64 +1419,64 @@ 사용할 구성 디렉터리: %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에 내려받았습니다. + 토렌트가 %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를 활성화하려면 구성 파일을 수동으로 편집하세요. @@ -1497,34 +1491,34 @@ 외부 프로그램을 실행하지 못했습니다. 토렌트: "%1". 명령: `%2` - + Torrent "%1" has finished downloading - "%1" 토렌트 내려받기를 완료했습니다 + "%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'. @@ -1533,20 +1527,20 @@ 원인: %2 - + Torrent added 토렌트 추가됨 - + '%1' was added. e.g: xxx.avi was added. '%1'이(가) 추가되었습니다. - + Download completed - 내려받기 완료됨 + 다운로드 완료됨 @@ -1555,88 +1549,88 @@ qBittorrent %1이(가) 시작되었습니다. 프로세스 ID : %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를 제어하려면 다음에서 웹 UI에 접속: %1 - + Exit 종료 - + Recursive download confirmation - 반복적으로 내려받기 확인 + 반복적으로 다운로드 확인 - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - 토렌트 '%1'에 .torrent 파일이 포함되어 있습니다. 내려받기를 계속하시겠습니까? + 토렌트 '%1'에 .torrent 파일이 포함되어 있습니다. 다운로드를 계속하시겠습니까? - + Never 절대 안함 - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - 토렌트 내의 .torent 파일을 반복적으로 내려받기합니다. 원본 토렌트: "%1". 파일: "%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가 이제 종료할 준비가 되었습니다. @@ -1677,12 +1671,12 @@ RSS Downloader - RSS 내려받기 도구 + RSS 다운로드 도구 Download Rules - 내려받기 규칙 + 다운로드 규칙 @@ -1702,7 +1696,7 @@ Auto downloading of RSS torrents is currently disabled. You can enable it in application settings. - RSS 토렌트의 자동 내려받기는 현재 비활성화되었습니다. 앱 설정에서 활성화 설정할 수 있습니다. + RSS 토렌트의 자동 다운로드는 현재 비활성화되었습니다. 앱 설정에서 활성화 설정할 수 있습니다. @@ -1728,7 +1722,7 @@ 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 (-를 구분자로 사용하는 날짜 형식도 지원) @@ -1773,263 +1767,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' 내려받기 규칙을 제거하시겠습니까? + '%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 규칙 삭제 확인 - + 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 + 다운로드한 에피소드 지우기 - 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. 은(는) 모든 규약을 제외합니다. @@ -2099,12 +2093,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가 잘못되었습니다 @@ -2186,12 +2180,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가 잘못되었습니다 @@ -2225,503 +2219,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" 토렌트 이어받기 실패: 일치하지 않는 토렌트 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". - + 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" + 토렌트에 URL 시드를 추가했습니다. 토렌트: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - 토렌트에서 URL 배포를 제거했습니다. 토렌트: "%1". URL: "%2" + 토렌트에서 URL 시드를 제거했습니다. 토렌트: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". 조각 파일을 제거하지 못했습니다. 토런트 : "%1". 이유 : "%2". - + Torrent resumed. Torrent: "%1" 토렌트가 이어받기되었습니다. 토렌트: "%1" - + Torrent download finished. Torrent: "%1" - 토렌트 내려받기를 완료했습니다. 토렌트: "%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" 토렌트가 정지되었습니다. 토렌트: "%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" - + 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". 오류: "잘못된 데이터 형식" - + %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" - URL 배포에서 오류 메시지를 수신했습니다. 토렌트: "%1". URL: "%2". 메시지: "%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" @@ -2731,7 +2725,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Failed to start seeding. - 배포하지 못했습니다. + 시딩을 시작하지 못했습니다. @@ -2745,7 +2739,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Create new torrent file failed. Reason: %1. - 새 토렌트 파일을 만들지 못했습니다. 원인: %1. + 새로운 토렌트 파일을 만들지 못했습니다. 원인: %1. @@ -2768,50 +2762,50 @@ 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. - 파일에 쓸 수 없습니다. 원인: %1. 토렌트는 이제 "올려주기 전용" 모드입니다. - - - - Download first and last piece first: %1, torrent: '%2' - 처음과 마지막 조각 먼저 내려받기: %1, 토렌트: '%2' + 파일에 쓸 수 없습니다. 원인: %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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1은 타당한 포트 번호여야 합니다(1 ~ 65535). - + Usage: 사용법: - + [options] [(<filename> | <url>)...] [옵션] [(<filename> | <url>)...] - + Options: 옵션: - + Display program version and exit 프로그램 버전을 표시 후 종료 - + Display this help message and exit 이 도움말 메시지를 표시하고 종료 @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 매개변수 '%1'은(는) '%1=%2' 구문을 따라야 합니다 - + Confirm the legal notice 법적 고지 확인 - - + + port 포트 - + Change the WebUI port WebUI 포트 변경하기 - + 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> <dir>에 구성 파일 저장 - - + + name 이름 - + Store configuration files in directories qBittorrent_<name> qBittorrent_<name> 폴더에 구성 파일 저장 - + Hack into libtorrent fastresume files and make file paths relative to the profile directory libtorrent Fastresume 파일을 해킹하여 프로필 디렉터리를 기준으로 파일 경로를 만듭니다. - + files or URLs 파일 또는 URL - + Download the torrents passed by the user - 사용자가 건넨 토렌트 내려받기 + 사용자가 건넨 토렌트 다운로드 - + Options when adding new torrents: - 새 토렌트를 추가 할 때 옵션: + 새로운 토렌트를 추가 할 때 옵션: - + path 경로 - + Torrent save path 토렌트 저장 경로 - + Add torrents as running or stopped 토렌트를 실행 또는 중단 상태로 추가 - + Skip hash check 해시 검사 건너뛰기 - + 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. - 토렌트를 추가할 때 "새 토렌트 추가" 창을 열 것인지 지정합니다. + 순차적으로 파일 다운로드 + 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: 옵션 값은 환경 변수로 제공될 수 있습니다. 'parameter-name'이라는 옵션의 경우 환경 변수 이름은 'QBT_PARAMETER_NAME'(대문자의 경우 '-'는 '_'로 대체)입니다. 플래그 값을 전달하려면 변수를 '1' 또는 'TRUE'로 설정하십시오. 다음은 시작 화면 사용을 중지하는 예시입니다: - + Command line parameters take precedence over environment variables 명령줄 매개 변수는 환경 변수보다 우선됩니다 - + Help 도움말 @@ -3137,12 +3131,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 사용자 지정 테마 스타일 시트를 불러오지 못했습니다. %1 - + Failed to load custom theme colors. %1 사용자 지정 테마 색상을 불러오지 못했습니다. %1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 기본 테마 색상을 불러오지 못했습니다. %1 @@ -3195,7 +3189,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Download from URLs - URL에서 내려받기 + URL에서 다운로드 @@ -3210,7 +3204,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Download - 내려받기 + 다운로드 @@ -3403,24 +3397,24 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - 토렌트 내려받는 중... 소스 : "%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? - '%1' 토렌트가 이미 전송 목록에 있습니다. 새 소스의 트래커를 병합하시겠습니까? + '%1' 토렌트가 이미 전송 목록에 있습니다. 새로운 소스의 트래커를 병합하시겠습니까? @@ -3536,40 +3530,6 @@ 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 @@ -3580,7 +3540,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 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는 파일 공유 프로그램입니다. 토렌트를 실행하면 올려주기를 통해 해당 데이터를 다른 사람이 사용할 수 있습니다. 당신이 공유하는 모든 콘텐츠는 전적으로 당신의 책임입니다. + qBittorrent는 파일 공유 프로그램입니다. 토렌트를 실행하면 업로드를 통해 해당 데이터를 다른 사람이 사용할 수 있습니다. 당신이 공유하는 모든 콘텐츠는 전적으로 당신의 책임입니다. @@ -3699,7 +3659,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also On Downloads &Done - 내려받기 완료 후(&D) + 다운로드 완료 후(&D) @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 표시 - + Check for program updates 프로그램 업데이트 확인 @@ -3980,383 +3940,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. 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을(를) 내려받기하시겠습니까? + %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 - 내려받기 오류 + 다운로드 오류 - - + + 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 토렌트 파일 @@ -4425,7 +4385,7 @@ Minimum requirement: %2. The file size (%1) exceeds the download limit (%2) - 파일 크기(%1)가 내려받기 제한(%2)을 초과했습니다 + 파일 크기(%1)가 다운로드 제한(%2)을 초과했습니다 @@ -5614,7 +5574,7 @@ Minimum requirement: %2. Couldn't download IP geolocation database file. Reason: %1 - IP 지리적 위치 데이터베이스 파일을 내려받기할 수 없습니다. 원인: %1 + IP 지리적 위치 데이터베이스 파일을 다운로드할 수 없습니다. 원인: %1 @@ -5624,7 +5584,7 @@ Minimum requirement: %2. Couldn't save downloaded IP geolocation database file. Reason: %1 - 내려받은 IP 지리적 위치 데이터베이스 파일을 저장할 수 없습니다. 원인: %1 + 다운로드한 IP 지리적 위치 데이터베이스 파일을 저장할 수 없습니다. 원인: %1 @@ -5850,47 +5810,47 @@ Minimum requirement: %2. 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 @@ -5910,7 +5870,7 @@ Minimum requirement: %2. Downloads - 내려받기 + 다운로드 @@ -5976,7 +5936,7 @@ Minimum requirement: %2. Downloading torrents: - 내려받는 중인 토렌트: + 다운로드 중인 토렌트: @@ -5993,7 +5953,7 @@ Minimum requirement: %2. Completed torrents: - 내려받기 완료된 토렌트: + 다운로드 완료된 토렌트: @@ -6023,7 +5983,7 @@ Minimum requirement: %2. Confirmation on auto-exit when downloads finish - 내려받기가 완료되면 자동 종료 시 확인 + 다운로드가 완료되면 자동 종료 시 확인 @@ -6036,175 +5996,175 @@ Minimum requirement: %2. 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) + 다운로드가 완료되면 이메일로 알림(&U) - + 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 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 @@ -6213,190 +6173,180 @@ 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 비활성 시딩 시간에 도달한 경우 - + 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 - 배포 제한 + 시딩 제한 - + 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): + 이 트래커들을 새로운 다운로드에 자동으로 추가(&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 토렌트 자동 내려받기 도구 + RSS 토렌트 자동 다운로드 도구 - + Enable auto downloading of RSS torrents - RSS 자동 내려받기 활성화 + RSS 자동 다운로드 활성화 - + Edit auto downloading rules... - 자동 내려받기 규칙 편집… + 자동 다운로드 규칙 편집… - + RSS Smart Episode Filter RSS 스마트 에피소드 필터 - + Download REPACK/PROPER episodes - REPACK/PROPER된 에피소드 내려받기 + 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. @@ -6405,37 +6355,37 @@ IPv4나 IPV6 주소를 지정하십시오. IPv4 주소에 "0.0.0.0"을 또는 IPV4/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. @@ -6448,37 +6398,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) @@ -6591,99 +6541,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 파일을 복사할 경로: @@ -6693,22 +6643,22 @@ DNS 재결합 공격을 방어하기 위해 알림 영역에 qBittorrent 아이콘 표시(&Q) - + 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 모든 파일에 디스크 공간 미리 할당 @@ -6772,12 +6722,12 @@ DNS 재결합 공격을 방어하기 위해 Inhibit system sleep when torrents are downloading - 토렌트 내려받는 중에 시스템 휴면모드 억제 + 토렌트 다운로드 중에 시스템 휴면모드 억제 Inhibit system sleep when torrents are seeding - 토렌트를 배포하고 있을 때 시스템 휴면모드 억제 + 토렌트를 시딩하고 있을 때 시스템 휴면모드 억제 @@ -6803,65 +6753,65 @@ DNS 재결합 공격을 방어하기 위해 - + 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 .torrent 파일을 추가한 후 삭제할지 여부 - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - 조각화를 최소화하기 위해 내려받기를 시작하기 전에 디스크에 전체 파일 크기를 할당합니다. HDD에만 유용합니다. + 조각화를 최소화하기 위해 다운로드를 시작하기 전에 디스크에 전체 파일 크기를 할당합니다. HDD에만 유용합니다. - + Append .!qB extension to incomplete files - 내려받기 중인 파일에 .!qB 확장자 덧붙이기 + 다운로드 중인 파일에 .!qB 확장자 덧붙이기 - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - 토렌트가 내려받기되면, 그 안에 있는 .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 자동: 여러 토렌트 속성(예: 저장 경로)은 관련 범주에 따라 결정됩니다 수동: 여러 토렌트 속성(예: 저장 경로)을 수동으로 할당해야 합니다 - + 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 기본 경로 대신 적절한 범주 경로에 대해 상대 저장 경로를 확인합니다 @@ -6881,50 +6831,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". @@ -6938,8 +6888,8 @@ Examples readme.txt: filter exact file name. ?.txt: filter 'a.txt', 'b.txt' but not 'aa.txt'. readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not 'readme10.txt'. - 블랙리스트에서 필터링된 파일 이름은 토렌트에서 내려받지 않습니다. -이 목록의 필터와 일치하는 파일의 우선순위는 자동으로 "내려받지 않음"으로 설정됩니다. + 블랙리스트에서 필터링된 파일 이름은 토렌트에서 다운로드하지 않습니다. +이 목록의 필터와 일치하는 파일의 우선순위는 자동으로 "다운로드하지 않음"으로 설정됩니다. 새 줄을 사용하여 여러 항목을 구분합니다. 아래에 설명된 대로 와일드카드를 사용할 수 있습니다. *: 0개 이상의 문자와 일치합니다. @@ -6953,506 +6903,511 @@ 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 외부 프로그램 실행 - + 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 현재 암호 바꾸기 - + 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>됩니다 @@ -7462,12 +7417,12 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 qBittorrent UI 테마 파일 선택 - + Choose Alternative UI files location 대체 UI 파일 위치 선정 - + Supported parameters (case sensitive): 지원 변수 (대소문자 구분): @@ -7487,185 +7442,185 @@ 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>를 통해 연 파일에도 적용됩니다. + 이 옵션이 활성화되면, qBittorrent는 .torrent 파일이 다운로드 대기열에 성공적으로 추가되거나(첫 번째 옵션) 추가되지 않았을 때(두 번째 옵션) 해당 파일을 <strong>삭제</strong>합니다. 이 옵션은 &ldquo;토렌트 추가&rdquo; 메뉴를 통해 연 파일<strong>뿐만 아니라</strong> <strong>파일 유형 연계</strong>를 통해 연 파일에도 적용됩니다. @@ -7673,69 +7628,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개 규칙을 적용했습니다. @@ -7746,18 +7701,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 길이 오류 @@ -7848,163 +7803,163 @@ readme[0-9].txt: 'readme1.txt', 'readme2.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 피어 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:포트 복사 @@ -8124,7 +8079,7 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 Warning: Be sure to comply with your country's copyright laws when downloading torrents from any of these search engines. - 경고: 검색 엔진에서 토렌트를 내려받기할 때 해당 국가의 저작권법을 준수해야 합니다. + 경고: 검색 엔진에서 토렌트를 다운로드할 때 해당 국가의 저작권법을 준수해야 합니다. @@ -8134,7 +8089,7 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 Install a new one - 새 플러그인 설치 + 새로운 플러그인 설치 @@ -8205,7 +8160,7 @@ Those plugins were disabled. New search engine plugin URL - 새 검색 엔진 플러그인 URL + 새로운 검색 엔진 플러그인 URL @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Those plugins were disabled. 경로에 대한 쓰기 권한이 없음 + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8401,7 +8398,7 @@ Those plugins were disabled. Downloaded: - 내려받음: + 다운로드함: @@ -8437,17 +8434,17 @@ Those plugins were disabled. Seeds: - 배포: + 시드: Download Speed: - 내려받기 속도: + 다운로드 속도: Upload Speed: - 올려주기 속도: + 업로드 속도: @@ -8457,12 +8454,12 @@ Those plugins were disabled. Download Limit: - 내려받기 제한: + 다운로드 제한: Upload Limit: - 올려주기 제한: + 업로드 제한: @@ -8571,158 +8568,158 @@ 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 동안 시드됨) - + %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 웹 시드 URL 복사 - + Edit web seed URL... 웹 시드 URL 수정... - + Speed graphs are disabled 속도 그래프가 비활성화되었습니다 - + You can enable it in Advanced Options 고급 옵션에서 활성화할 수 있습니다 - + Web seed editing - 웹 배포 편집 + 웹 시드 편집 - + Web seed URL: - 웹 배포 URL: + 웹 시드 URL: 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 @@ -8730,24 +8727,24 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - '%1'에서 RSS 피드를 내려받기하지 못했습니다. 원인: %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 피드를 성공적으로 내려받았습니다. 분석을 시작합니다. + "%1"에서 RSS 피드를 성공적으로 다운로드했습니다. 분석을 시작합니다. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. 항목이 존재하지 않습니다: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + 폴더를 자체적으로 이동할 수 없습니다. - + 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 @@ -8947,7 +8903,7 @@ Those plugins were disabled. New subscription - 새 구독 + 새로운 구독 @@ -8969,12 +8925,12 @@ Those plugins were disabled. RSS Downloader... - RSS 내려받기 도구… + RSS 다운로드 도구… Torrents: (double-click to download) - 토렌트: (두 번 클릭해서 내려받기) + 토렌트: (두 번 클릭해서 다운로드) @@ -9001,7 +8957,7 @@ Those plugins were disabled. New subscription... - 새 구독… + 새로운 구독… @@ -9012,7 +8968,7 @@ Those plugins were disabled. Download torrent - 토렌트 내려받기 + 토렌트 다운로드 @@ -9031,61 +8987,101 @@ Those plugins were disabled. - Feed options... - + Edit feed URL... + 피드 URL 편집... - + + Edit feed URL + 피드 URL 편집 + + + Please choose a folder name 폴더 이름을 선정하십시오 - + Folder name: 폴더 이름: - + New folder 새 폴더 - + + + Please type a RSS feed URL + RSS 피드 URL을 입력하십시오 + + + + + Feed URL: + 피드 URL: + + + Deletion confirmation 삭제 확인 - + Are you sure you want to delete the selected RSS feeds? 선택한 RSS 피드를 정말 삭제하시겠습니까? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed 이 RSS 피드에 사용할 새 이름을 선정하십시오 - + New feed name: 새 피드 이름: - + Rename failed 이름 바꾸기 실패 - + Date: 날짜: - + Feed: 피드 : - + Author: 작성자: @@ -9149,17 +9145,17 @@ Those plugins were disabled. Set minimum and maximum allowed number of seeders - 허용되는 최소 및 최대 배포 수 설정 + 허용되는 최소 및 최대 배포자 수 설정 Minimum number of seeds - 최소 배포 수 + 최소 시드 수 Maximum number of seeds - 최대 배포 수 + 최대 시드 수 @@ -9179,7 +9175,7 @@ Those plugins were disabled. Seeds: - 배포: + 시드: @@ -9199,142 +9195,168 @@ Those plugins were disabled. 크기: - + Name i.e: file name 이름 - + Size i.e: file size 크기 - + Seeders i.e: Number of full sources 배포자 - + Leechers i.e: Number of partial sources 공유자 - + Filter search results... 필터 검색 결과… - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results 결과 (<i>%2</i> 중 <i>%1</i> 표시): - + Torrent names only 토렌트 이름만 - + Everywhere 모두 - + Use regular expressions 정규표현식 사용 - + Open download window - 내려받기 창 열기 + 다운로드 창 열기 - + Download - 내려받기 + 다운로드 - + Open description page 설명 페이지 열기 - + Copy 복사 - + Name 이름 - + Download link - 내려받기 링크 + 다운로드 링크 - + Description page URL 설명 페이지 URL - + Searching... 검색 중… - + Search has finished 검색이 완료되었습니다 - + Search aborted 검색 중단됨 - + An error occurred during search... 검색 중 오류 발생… - + Search returned no results 검색 결과가 없습니다 - + Engine 엔진 - + Engine URL 엔진 URL - + Published On 게시일 - + Column visibility 열 표시 여부 - + Resize columns 열 크기조정 - + Resize all non-hidden columns to the size of their contents 숨겨지지 않은 모든 열의 크기를 해당 콘텐츠 크기로 조정합니다 @@ -9342,104 +9364,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 + 플러그인 파일을 다운로드하지 못했습니다. %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')이 포함되어 있습니다 @@ -9465,94 +9487,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 <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 중지 @@ -9560,32 +9582,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" 검색 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” @@ -9702,7 +9724,7 @@ Click the "Search plugins..." button at the bottom right of the window Upload: - 올려주기: + 업로드: @@ -9724,7 +9746,7 @@ Click the "Search plugins..." button at the bottom right of the window Download: - 내려받기: + 다운로드: @@ -9737,52 +9759,52 @@ Click the "Search plugins..." button at the bottom right of the window Total Upload - 전체 올려주기 + 전체 업로드 Total Download - 전체 내려받기 + 전체 다운로드 Payload Upload - 페이로드 올려주기 + 페이로드 업로드 Payload Download - 페이로드 내려받기 + 페이로드 다운로드 Overhead Upload - 오버헤드 올려주기 + 오버헤드 업로드 Overhead Download - 오버헤드 내려받기 + 오버헤드 다운로드 DHT Upload - DHT 올려주기 + DHT 업로드 DHT Download - DHT 내려받기 + DHT 다운로드 Tracker Upload - 트래커 올려주기 + 트래커 업로드 Tracker Download - 트래커 내려받기 + 트래커 다운로드 @@ -9820,7 +9842,7 @@ Click the "Search plugins..." button at the bottom right of the window Total Upload - 전체 올려주기 + 전체 업로드 @@ -9840,47 +9862,47 @@ Click the "Search plugins..." button at the bottom right of the window Total Download - 전체 내려받기 + 전체 다운로드 Payload Upload - 페이로드 올려주기 + 페이로드 업로드 Payload Download - 페이로드 내려받기 + 페이로드 다운로드 Overhead Upload - 오버헤드 올려주기 + 오버헤드 업로드 Overhead Download - 오버헤드 내려받기 + 오버헤드 다운로드 DHT Upload - DHT 올려주기 + DHT 업로드 DHT Download - DHT 내려받기 + DHT 다운로드 Tracker Upload - 트래커 올려주기 + 트래커 업로드 Tracker Download - 트래커 내려받기 + 트래커 다운로드 @@ -9931,7 +9953,7 @@ Click the "Search plugins..." button at the bottom right of the window All-time download: - 전체 시간 내려받기: + 전체 시간 다운로드: @@ -9941,7 +9963,7 @@ Click the "Search plugins..." button at the bottom right of the window All-time upload: - 전체 시간 올려주기: + 전체 시간 업로드: @@ -9983,77 +10005,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. 직접적인 연결이 없습니다. 네트워크 구성에 문제가 있을 수 있습니다. - - 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 온라인 - - 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 클릭해서 일반 속도 제한으로 전환 @@ -10069,12 +10081,12 @@ Click the "Search plugins..." button at the bottom right of the window Downloading (0) - 내려받는 중 (0) + 다운로드 중 (0) Seeding (0) - 배포 중 (0) + 시딩 (0) @@ -10109,12 +10121,12 @@ Click the "Search plugins..." button at the bottom right of the window Stalled Uploading (0) - 중지된 올려주기 (0) + 중지된 업로드 (0) Stalled Downloading (0) - 중지된 내려받기 (0) + 중지된 다운로드 (0) @@ -10139,12 +10151,12 @@ Click the "Search plugins..." button at the bottom right of the window Downloading (%1) - 내려받는 중 (%1) + 다운로드 중 (%1) Seeding (%1) - 배포 중 (%1) + 시딩 (%1) @@ -10199,12 +10211,12 @@ Click the "Search plugins..." button at the bottom right of the window Stalled Uploading (%1) - 중지된 올려주기 (%1) + 중지된 업로드 (%1) Stalled Downloading (%1) - 중지된 내려받기 (%1) + 중지된 다운로드 (%1) @@ -10353,7 +10365,7 @@ Click the "Search plugins..." button at the bottom right of the window Choose download path - 내려받기 경로 선정 + 다운로드 경로 선정 @@ -10393,7 +10405,7 @@ Please choose a different name and try again. Do not download Do not download (priority) - 내려받지 않음 + 다운로드하지 않음 @@ -10435,7 +10447,7 @@ Please choose a different name and try again. Download Priority - 내려받기 우선순위 + 다운로드 우선순위 @@ -10464,7 +10476,7 @@ Please choose a different name and try again. Not downloaded - 내려받지 않음 + 다운로드하지 않음 @@ -10546,7 +10558,7 @@ Please choose a different name and try again. Do not download - 내려받지 않음 + 다운로드하지 않음 @@ -10592,17 +10604,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks 활성화된 작업이 너무 많습니다. - + Torrent creation is still unfinished. 토렌트 생성이 여전히 끝나지 않았습니다. - + Torrent creation failed. 토렌트 생성이 실패했습니다. @@ -10679,7 +10691,7 @@ Please choose a different name and try again. Start seeding immediately - 즉시 배포 시작 + 즉시 시딩 시작 @@ -10719,7 +10731,7 @@ Please choose a different name and try again. Web seed URLs: - 웹 배포 URL: + 웹 시드 URL: @@ -10760,7 +10772,7 @@ Please choose a different name and try again. Select where to save the new torrent - 새 토렌트를 저장할 위치 선택 + 새로운 토렌트를 저장할 위치 선택 @@ -10894,7 +10906,7 @@ Please choose a different name and try again. Download: - 내려받기: + 다운로드: @@ -10921,7 +10933,7 @@ Please choose a different name and try again. Upload: - 올려주기: + 업로드: @@ -10931,7 +10943,7 @@ Please choose a different name and try again. Download in sequential order - 순차 내려받기 + 순차적으로 다운로드 @@ -10941,7 +10953,7 @@ Please choose a different name and try again. Download first and last pieces first - 처음과 마지막 조각 먼저 내려받기 + 처음과 마지막 조각 먼저 다운로드 @@ -10969,34 +10981,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default 기본 - - + + Unlimited 무제한 - - + + Set to 다음으로 설정 - + Seeding time: 시딩 시간 : - - + + @@ -11006,34 +11018,34 @@ Please choose a different name and try again. - + Inactive seeding time: 비활성 시딩 시간 : - + Action when the limit is reached: 한계에 도달했을 때의 조치 : - + Stop torrent 토렌트 정지 - + Remove torrent 토렌트 제거 - + Remove torrent and its content 토렌트 및 해당 내용물 제거 - + Enable super seeding for torrent - 토렌트에 대해 초도 배포 활성화 + 토렌트에 대해 슈퍼 시딩 활성화 @@ -11082,78 +11094,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 저장 경로를 만들 수 없습니다 @@ -11173,39 +11185,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 잘못된 범주 이름 @@ -11258,7 +11270,7 @@ Please choose a different name and try again. N/A - 해당사항 없음 + 해당 없음 @@ -11313,7 +11325,7 @@ Please choose a different name and try again. Tier - 계증 + 우선순위 @@ -11328,7 +11340,7 @@ Please choose a different name and try again. Seeds - 배포 + 시드 @@ -11338,7 +11350,7 @@ Please choose a different name and try again. Times Downloaded - 내려받은 시간 + 다운로드한 시간 @@ -11354,73 +11366,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 열 표시 여부 @@ -11445,7 +11457,7 @@ Please choose a different name and try again. Download trackers list - 트래커 목록 내려받기 + 트래커 목록 다운로드 @@ -11465,12 +11477,12 @@ Please choose a different name and try again. Download trackers list error - 트래커 목록 내려받기 오류 + 트래커 목록 다운로드 오류 Error occurred when downloading the trackers list. Reason: "%1" - 트래커 목록을 내려받는 동안 오류가 발생했습니다. 원인: "%1" + 트래커 목록을 다운로드 동안 오류가 발생했습니다. 원인: "%1" @@ -11573,7 +11585,7 @@ Please choose a different name and try again. Downloading - 내려받는 중 + 다운로드 중 @@ -11585,32 +11597,32 @@ Please choose a different name and try again. Downloading metadata Used when loading a magnet link - 메타데이터 내려받는 중 + 메타데이터 다운로드 중 [F] Downloading metadata Used when forced to load a magnet link. You probably shouldn't translate the F. - [F] 메타데이터 내려받는 중 + [F] 메타데이터 다운로드 중 [F] Downloading Used when the torrent is forced started. You probably shouldn't translate the F. - [F] 내려받는 중 + [F] 다운로드 중 Seeding Torrent is complete and in upload-only mode - 배포 중 + 시딩 [F] Seeding Used when the torrent is forced started. You probably shouldn't translate the F. - [F] 배포 중 + [F] 시딩 @@ -11687,7 +11699,7 @@ Please choose a different name and try again. Seeds i.e. full sources (often untranslated) - 배포 + 시드 @@ -11767,7 +11779,7 @@ Please choose a different name and try again. Downloaded Amount of data downloaded (e.g. in MB) - 내려받음 + 다운로드함 @@ -11779,13 +11791,13 @@ Please choose a different name and try again. 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) - 세션 올려주기 + 세션 업로드 @@ -11903,327 +11915,327 @@ Please choose a different name and try again. %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - %1 (%2 동안 배포됨) + %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 선택한 "%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. 선택한 토렌트에 대해 자동 토렌트 관리를 활성화하시겠습니까? 재배치될 수 있습니다. - + 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'이(가) 잘못됐습니다 - + 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)… + 새로 만들기(&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 자동 모드는 다양한 토렌트 특성(예: 저장 경로)이 관련 범주에 의해 결정됨을 의미합니다 - + Super seeding mode - 초도 배포 모드 + 슈퍼 시딩 모드 @@ -12276,18 +12288,18 @@ Please choose a different name and try again. UI 테마 변경사항을 완전히 적용하지 못했습니다. 자세한 내용은 로그에서 확인할 수 있습니다. - + Couldn't save UI Theme configuration. Reason: %1 UI 테마 구성을 저장할 수 없습니다. 원인: %1 - - + + Couldn't remove icon file. File: %1. 아이콘 파일을 제거할 수 없습니다. 파일: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. 아이콘 파일을 복사할 수 없습니다. 소스: %1. 대상: %2. @@ -12353,32 +12365,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 파이썬 실행 파일을 찾지 못함 @@ -12470,72 +12482,72 @@ 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. 웹 서버 오류입니다. 알 수 없는 오류입니다. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' 웹 UI: 원본 헤더 및 목표 원점 불일치! 소스 IP: '%1'. 원본 헤더: '%2'. 목표 원점: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' 웹 UI: 출처 헤더 및 목표 원점 불일치! 소스 IP: '%1'. 출처 헤더: '%2'. 목표 원점: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' 웹 UI: 잘못된 호스트 헤더, 포트 불일치. 소스 IP 요청: '%1'. 서버 포트: '%2'. 수신된 호스트 헤더: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' 웹 UI: 잘못된 호스트 헤더. 소스 IP 요청: '%1'. 수신된 호스트 헤더: '%2' @@ -12666,7 +12678,7 @@ Please choose a different name and try again. qBittorrent will shutdown the computer now because all downloads are complete. - 모든 내려받기가 완료되었기 때문에 qBittorrent가 지금 컴퓨터의 전원을 끕니다. + 모든 다운로드가 완료되었기 때문에 qBittorrent가 지금 컴퓨터의 전원을 끕니다. diff --git a/src/lang/qbittorrent_lt.ts b/src/lang/qbittorrent_lt.ts index 08659ec5e..00d26146f 100644 --- a/src/lang/qbittorrent_lt.ts +++ b/src/lang/qbittorrent_lt.ts @@ -231,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 @@ -364,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 @@ -477,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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Pertikrinti torentus baigus atsiuntimą - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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. - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ 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 @@ -1555,88 +1549,88 @@ Priežastis: %2 - + 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,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". - + 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 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" - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat %1 privalo nurodyti teisingą prievadą (1 iki 65535). - + Usage: Naudojimas: - + [options] [(<filename> | <url>)...] - + Options: Parinktys: - + Display program version and exit Rodyti programos versiją ir išeiti - + Display this help message and exit Rodyti šį pagalbos pranešimą ir išeiti @@ -2891,130 +2885,130 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Parametras "%1" privalo atitikti sintaksę "%1=%2" - + Confirm the legal notice - - + + port prievadas - + Change the WebUI port - + Change the torrenting port - + Disable splash screen Išjungti pradžios langą - + Run in daemon-mode (background) Vykdyti foniniame režime - + dir Use appropriate short form or abbreviation of "directory" katalogas - + Store configuration files in <dir> Laikyti konfigūracijos failus ties <dir> - - + + name pavadinimas - + Store configuration files in directories qBittorrent_<name> Laikyti konfigūracijos failus qBittorrent_<name> kataloguose - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Įsilaužti į libtorrent greitojo pratęsimo failus ir padaryti failų kelius santykinius profilio katalogui - + files or URLs failai ar URL - + Download the torrents passed by the user Atsisiųsti naudotojo perduotus torentus - + Options when adding new torrents: Parinktys, pridedant naujus torentus: - + path kelias - + Torrent save path Torento išsaugojimo kelias - + Add torrents as running or stopped - + Skip hash check Praleisti maišos tikrinimą - + Assign torrents to category. If the category doesn't exist, it will be created. Priskirti torentus kategorijai. Jeigu kategorijos nėra, ji bus sukurta. - + Download files in sequential order Atsisiųsti failus eilės tvarka - + Download first and last pieces first Visų pirma siųsti pirmas ir paskutines dalis - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Nurodyti ar pridedant torentą bus atveriamas "Pridėti naują torentą" dialogas - + 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: Parinkties reikšmės gali būti pateikiamos per aplinkos kintamuosius. Parinkčiai, pavadinimu "parameter-name", aplinkos kintamojo pavadinimas bus "QBT_PARAMETER_NAME" (rašant didžiosiomis raidėmis, "-" pakeičiami "_"). Norėdami perduoti vėliavėlių reikšmes, nustatykite kintamąjį į "1" arba "TRUE". Pavyzdžiui, norint išjungti prisistatymo langą: - + Command line parameters take precedence over environment variables Komandų eilutės parametrai turi pirmumo teisę prieš aplinkos kintamuosius - + Help Žinynas @@ -3137,12 +3131,12 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat CustomThemeSource - + Failed to load custom theme style sheet. %1 - + Failed to load custom theme colors. %1 @@ -3150,7 +3144,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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ų @@ -3980,382 +3940,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 - + Search has failed Paieška nepavyko - + Search has finished 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 - + 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 - - + + 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 @@ -5850,47 +5810,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 @@ -6036,365 +5996,355 @@ 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 - + 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 - + 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 - - 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: - + 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. @@ -6403,37 +6353,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 - + 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. @@ -6448,37 +6398,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ą @@ -6591,99 +6541,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 į: @@ -6693,22 +6643,22 @@ pakaitos simbolį "*". Rodyti &qBittorrent piktogramą pranešimų srityje - + 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 @@ -6803,64 +6753,64 @@ pakaitos simbolį "*". mėtų - + Log performance warnings Registruoti našumo įspėjimus - + 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 @@ -6880,50 +6830,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". @@ -6940,506 +6890,511 @@ 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 + + + 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į - + 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; @@ -7449,12 +7404,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į): @@ -7474,183 +7429,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 @@ -7660,69 +7615,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. @@ -7733,18 +7688,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 @@ -7835,163 +7790,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ą @@ -8269,6 +8224,39 @@ Tie papildiniai buvo išjungti. Tinklo nuoroda + + 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 + + + PreviewSelectDialog @@ -8351,6 +8339,15 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8559,124 +8556,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 - + No 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. - + 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 - + Web seed editing Žiniatinklio šaltinio redagavimas - + Web seed URL: Žiniatinklio šaltinio URL: @@ -8684,33 +8681,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 @@ -8718,22 +8715,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. @@ -8782,12 +8779,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" @@ -8809,117 +8806,76 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". - + Item doesn't exist: %1. Elemento nėra: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Nepavyko perkelti aplanko į jį patį. - + 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 - Numatytasis - - RSSWidget @@ -9019,61 +8975,101 @@ 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 Pasirinkite aplanko pavadinimą - + Folder name: Aplanko pavadinimas: - + New folder Naujas aplankas - + + + Please type a RSS feed URL + Įrašykite RSS kanalo URL + + + + + Feed 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9187,142 +9183,168 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1".Dydis: - + Name i.e: file name Pavadinimas - + Size i.e: file size Dydis - + Seeders i.e: Number of full sources Skleidėjai - + Leechers i.e: Number of partial sources Siuntėjai - + Filter search results... Filtruoti paieškos rezultatus... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Rezultatai (rodoma <i>%1</i> iš <i>%2</i>): - + Torrent names only Tik torentų pavadinimuose - + Everywhere Visur - + Use regular expressions Naudoti reguliariuosius reiškinius - + Open download window Atverti atsiuntimo langą - + Download Atsisiųsti - + Open description page Atverti aprašo puslapį - + Copy Kopijuoti - + Name Pavadinimas - + Download link Atsiuntimo nuoroda - + Description page URL Aprašo puslapio URL - + Searching... Ieškoma... - + Search has finished Paieška baigta - + Search aborted Paieška nutraukta - + An error occurred during search... Paieškos metu įvyko klaida... - + Search returned no results Paieška negrąžino jokių rezultatų - + Engine - + Engine URL - + Published On - + 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 @@ -9330,104 +9352,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') @@ -9453,94 +9475,94 @@ 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. - + <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 @@ -9548,32 +9570,32 @@ Norėdami juos įdiegti, spustelėkite lango apatinėje dešinėje mygtuką &quo 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" @@ -9971,77 +9993,67 @@ 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 @@ -10580,17 +10592,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. @@ -10957,34 +10969,34 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. TorrentShareLimitsWidget - - - + + + Default Numatytasis - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10994,32 +11006,32 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. min. - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent Stabdyti torentą - + Remove torrent Šalinti torentą - + Remove torrent and its content - + Enable super seeding for torrent Įgalinti super atidavimą torentui @@ -11070,78 +11082,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 @@ -11161,39 +11173,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 @@ -11337,73 +11349,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 @@ -11892,319 +11904,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ą - + 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. - + 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 - + 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 @@ -12259,18 +12271,18 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. Nepavyko pašalinti piktogramos failo. Failas: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Nepavyko nukopijuoti piktogramos failo. Šaltinis: %1. Paskirtis: %2. @@ -12336,32 +12348,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 @@ -12453,72 +12465,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Tinklo sąsaja: Kilmės antraštė ir Paskirties kilmė nesutampa! Šaltinio IP: "%1". Kilmės antraštė: "%2". Paskirties kilmė: "%3" - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Tinklo sąsaja: Nukreipėjo antraštė ir Paskirties kilmė nesutampa! Šaltinio IP: "%1". Nukreipėjo antraštė: "%2". Paskirties kilmė: "%3" - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Tinklo sąsaja: Neteisinga Serverio antraštė, prievadai nesutampa. Užklausos šaltinio IP: "%1". Serverio prievadas: "%2". Gauta Serverio antraštė: "%3" - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Tinklo sąsaja: Neteisinga Serverio antraštė. Užklausos šaltinio IP: "%1". Gauta Serverio antraštė: "%2" diff --git a/src/lang/qbittorrent_ltg.ts b/src/lang/qbittorrent_ltg.ts index d8dbc1560..8f8c9180a 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,21 +666,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Atkuortuotai puorsavērt torrentus piec atsasyuteišonas dabeigšonas. - - + + ms milliseconds ms @@ -697,686 +697,680 @@ 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 @@ -1423,64 +1417,64 @@ 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. @@ -1495,34 +1489,34 @@ - + 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'. @@ -1531,18 +1525,18 @@ Īmesls: %2 - + Torrent added Torrents dalikts - + '%1' was added. e.g: xxx.avi was added. '%1' tika dalikts. - + Download completed @@ -1553,88 +1547,88 @@ - + 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 @@ -1771,263 +1765,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. @@ -2223,503 +2217,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" @@ -2769,47 +2763,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 @@ -2858,27 +2852,27 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - + Usage: - + [options] [(<filename> | <url>)...] - + Options: Vareibas: - + Display program version and exit - + Display this help message and exit @@ -2889,130 +2883,130 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - + 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 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 @@ -3401,22 +3395,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? @@ -3534,40 +3528,6 @@ 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 @@ -3958,12 +3918,12 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - + Show Ruodeit - + Check for program updates Meklēt aplikacejis atjaunynuojumus @@ -3978,379 +3938,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 @@ -5844,47 +5804,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 @@ -6030,402 +5990,392 @@ 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. @@ -6434,37 +6384,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 @@ -6577,99 +6527,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: @@ -6679,22 +6629,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 @@ -6789,64 +6739,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 @@ -6866,50 +6816,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". @@ -6926,506 +6876,511 @@ 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 @@ -7435,12 +7390,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): @@ -7460,183 +7415,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 @@ -7646,69 +7601,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 @@ -7719,18 +7674,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 @@ -7821,163 +7776,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 @@ -8254,6 +8209,39 @@ 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 @@ -8543,124 +8531,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: @@ -8668,33 +8656,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 @@ -8702,22 +8690,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. @@ -8766,12 +8754,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" @@ -8793,117 +8781,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - Adress: - - - - Refresh interval: - - - - - sec - sek - - - - Default - - - RSSWidget @@ -9003,61 +8950,78 @@ Those plugins were disabled. - Feed options... + 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: @@ -9314,104 +9278,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') @@ -9436,94 +9400,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 @@ -9531,32 +9495,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" @@ -9954,77 +9918,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. - - 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 @@ -10561,17 +10515,17 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10938,34 +10892,34 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentShareLimitsWidget - - - + + + Default - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10975,32 +10929,32 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. 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 @@ -11051,78 +11005,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 @@ -11142,39 +11096,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 @@ -11318,73 +11272,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 @@ -11873,319 +11827,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 @@ -12317,32 +12271,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 @@ -12434,72 +12388,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_lv_LV.ts b/src/lang/qbittorrent_lv_LV.ts index bc8dcaf57..433860c73 100644 --- a/src/lang/qbittorrent_lv_LV.ts +++ b/src/lang/qbittorrent_lv_LV.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Atkārtoti pārbaudīt torrentus pēc ielādes pabeigšanas - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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) - + 0 (beztermiņa noma) - + 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) - + Pārvietot failus uz atkritni (ja iespējams) - + Torrent content removing mode - + Torrentu satura noņemšanas režīms - + This option is less effective on Linux Šī iespēja īsti labi nestrādā uz Linux sistēmas - + Process memory priority - + Procesa atmiņas prioritāte - + Bdecode depth limit - + Bdekodēšanas dziļuma ierobežojums - + Bdecode token limit - + Bdekodēšanas tokenu ierobežojums - + Default Noklusētais - + Memory mapped files Atmiņas kartētie faili - + POSIX-compliant POSIX-saderīgs - + Simple pread/pwrite - + Vienkāršs 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] - + Soketa sūtīšanas bufera izmērs [0: sistēmas noklusējums] - + Socket receive buffer size [0: system default] - + Soketa saņemšanas bufera izmērs [0: sistēmas noklusējums] - + 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 - + Tas kontrolē iekšējā stāvokļa atjaunināšanas intervālu, kas savukārt ietekmēs lietotāja saskarnes atjauninājumus - + 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] - + Ports, par kuru ziņo trakeriem (nepieciešams restarts) [0: klausīšanās ports] - + 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 Pievienot "Pievienot jaunu torrentu" logu galvenajā logā - + 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 - + Iespējot tīmekļa atzīmi (MOTW) lejupielādētajiem failiem - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ietekmē sertifikātu validāciju un ne-torrentu protokolu darbības (piem., RSS plūsmas, programmas atjauninājumus, torrentu failus, geoip db utt.) - + 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 - + -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 - + DHT sāknēšanas mezgli - + 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 @@ -1389,7 +1383,7 @@ Invalid directory path - + Nederīgs direktorijas ceļš @@ -1399,12 +1393,12 @@ Invalid mode, allowed values: %1 - + Nederīgs režīms, atļautās vērtības: %1 cookies must be array - + sīkdatnēm jābūt datu masīvam @@ -1425,64 +1419,64 @@ 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ā. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Iemesls: %2 - + Torrent added Torrents pievienots - + '%1' was added. e.g: xxx.avi was added. '%1' tika pievienots. - + Download completed Lejupielāde pabeigta @@ -1555,88 +1549,88 @@ Iemesls: %2 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 @@ -1773,263 +1767,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. @@ -2099,12 +2093,12 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Corrupted resume data: %1 - + Bojāti atsākšanas dati: %1 save_path is invalid - + save_path ir nederīgs @@ -2159,17 +2153,17 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Nevarēja iespējot Write-Ahead Logging (WAL) žurnāla režīmu. Kļūda: %1. Couldn't obtain query result. - + Nevarēja iegūt vaicājuma rezultātu. WAL mode is probably unsupported due to filesystem limitations. - + WAL režīms, iespējams, netiek atbalstīts failu sistēmas ierobežojumu dēļ. @@ -2186,17 +2180,17 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Corrupted resume data: %1 - + Bojāti atsākšanas dati: %1 save_path is invalid - + save_path ir nederīgs Couldn't begin transaction. Error: %1 - + Nevarēja sākt transakciju. Kļūda: %1 @@ -2225,503 +2219,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". - + 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. - + Atsākšanas datu saglabāšana pabeigta. - + BitTorrent session successfully finished. - + BitTorrent sesija veiksmīgi pabeigta. - + Session shutdown timed out. - + Sesijas izslēgšanai iestājās noildze. - + Removing torrent. - + Noņem torrentu. - + Removing torrent and deleting its content. - + Noņem torrentu un dzēš tā saturu. - + Torrent stopped. - + Torrents apturēts. - + Torrent content removed. Torrent: "%1" - + Torrenta saturs noņemts. Torrents: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Neizdevās noņemt torrenta saturu. Torrents: "%1". Kļūda: "%2" - + Torrent removed. Torrent: "%1" - + Torrents noņemts. Torrents: "%1" - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 + Konstatēts mēģinājums pievienot dublētu torrentu. Esošais torrents: %1. Rezultāts: %2 + + + 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 - + 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 - + Trakeru saraksts atjaunināts - + Failed to update tracker list. Reason: "%1" - + Neizdevās atjaunināt trakeru sarakstu. Iemesls: "%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". - + Neizdevās noņemt partfile. Torrents: "%1". Iemesls: "%2". - + 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" - + 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" - + 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" - + URL sēklas savienojums neizdevās. Torrents: "%1". URL: "%2". Kļūda: "%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" - + %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 - + 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" @@ -2763,7 +2757,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Unexpected data detected. Torrent: %1. Data: total_wanted=%2 total_wanted_done=%3. - + Konstatēti negaidīti dati. Torrents: %1. Dati: total_wanted=%2 total_wanted_done=%3. @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā %1 norādiet pareizo portu (starp 1 un 65535). - + Usage: Lietojums: - + [options] [(<filename> | <url>)...] [iespējas] [(<filename> | <url>)...] - + Options: Iespējas: - + Display program version and exit Parādīt programmas versiju un aizvērt - + Display this help message and exit Parādīt palīdzības ziņojumu un aizvērt @@ -2891,130 +2885,130 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Parametram '%1' ir jāatbilst sintaksei '%1=%2' - + Confirm the legal notice Aptstiprināt legālo ziņojumu - - + + port ports - + Change the WebUI port Mainīt Tālvadības kontroles paneļa portu - + Change the torrenting port - + Mainīt torrentēšanas portu - + Disable splash screen Atslēgt uzlēcošo logu - + Run in daemon-mode (background) Darbināt fonā (daemon-mode) - + dir Use appropriate short form or abbreviation of "directory" mape - + Store configuration files in <dir> Glabāt konfigurācijas failus šeit <dir> - - + + name nosaukums - + Store configuration files in directories qBittorrent_<name> Glabāt konfigurācijas failu mapēs qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Modificēt libtorrent ātratsākšanas failus un izveidot ceļus relatīvu profila mapei - + files or URLs faili vai saites - + Download the torrents passed by the user Lejupielādēt lietotāja norādītos torrentus - + Options when adding new torrents: Iespējas, pievienojot jaunu torrentus: - + path vieta - + Torrent save path Torrenta saglabāšanas vieta - + Add torrents as running or stopped Pievienot torrentus kā palaistus vai apstādinātus - + Skip hash check Izlaist jaucējkoda pārbaudi - + Assign torrents to category. If the category doesn't exist, it will be created. Iedalīt torrentus kategorijā. Ja kategorija nepastāv, tā tiks izveidota. - + Download files in sequential order Lejupielādēt secīgā kārtībā - + Download first and last pieces first Vispirms ielādēt pirmās un pēdējās daļiņas - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Norādīt vai, pievienojot torrentu, tiks parādīts "Pievienot jaunu torrentu" logs. - + 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: Opciju vērtības var norādīt, izmantojot vides mainīgos. Opcijai ar nosaukumu 'parameter-name', vides mainīgā nosaukums ir 'QBT_PARAMETER_NAME' (lielajiem burtiem, '-' aizstāj ar '_'). Lai iesniegtu vērtības, iestatiet mainīgo uz '1' vai "TRUE". Piemēram, lai atslēgtu sākuma ekrānu: - + Command line parameters take precedence over environment variables Komandrindas parametriem ir prioritāte pār vides mainīgajiem - + Help Palīdzība @@ -3095,7 +3089,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā System - + Sistēma @@ -3137,12 +3131,12 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā CustomThemeSource - + Failed to load custom theme style sheet. %1 Neizdevās ielādēt pielāgoto saskarni. %1 - + Failed to load custom theme colors. %1 Neizdevās ielādēt pielāgotās saskarnes krāsas. %1 @@ -3150,7 +3144,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā DefaultThemeSource - + Failed to load default theme colors. %1 Neizdevās ielādēt noklusētās saskarnes krāsas. %1 @@ -3170,7 +3164,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Also remove the content files - + Arī noņemt satura failus @@ -3382,7 +3376,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Pattern Format - + Parauga formāts @@ -3392,33 +3386,33 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Wildcards - + Aizstājējzīmes Regular expression - + Regulārā izteiksme GUIAddTorrentManager - + Downloading torrent... Source: "%1" Lejupielāde torrentu.... Avots: "%1" - + Torrent is already present Šis torrents jau ir pievienots - + Trackers cannot be merged because it is a private torrent. - + Trakerus nevar apvienot, jo tas ir privāts torrents. - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3645,13 +3605,13 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā An unrecoverable error occurred. - + Notika neatgūstama kļūda. qBittorrent has encountered an unrecoverable error. - + qBittorrent ir saskāries ar neatgūstamu kļūdu. @@ -3666,12 +3626,12 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Found unexpected qBittorrent instance. Exiting this instance. Current process ID: %1. - + Atrasta negaidīta qBittorrent instance. Notiek iziešana no šīs instances. Pašreizējais procesa ID: %1. Error when daemonizing. Reason: "%1". Error code: %2. - + Kļūda dēmonizējot. Iemesls: "%1". Kļūdas kods: %2. @@ -3780,7 +3740,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Sh&utdown System - + I&zslēgt sistēmu @@ -3830,7 +3790,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Sta&rt - + Sā&kt @@ -3840,12 +3800,12 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā R&esume Session - + A&tsākt sesiju Pau&se Session - + Ap&turēt sesiju @@ -3960,12 +3920,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 @@ -3980,383 +3940,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 - + Search has failed 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 - + [APTURĒTS] %1 - + [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. - + Izejas kods: %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 - + 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 - - + + 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 @@ -5850,47 +5810,47 @@ Vecākā atļautā: %2. 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 @@ -5998,7 +5958,7 @@ Vecākā atļautā: %2. Auto hide zero status filters - + Automātiski slēpt nulles statusa filtrus @@ -6036,175 +5996,175 @@ Vecākā atļautā: %2. 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: - + Palaist, kad torrents pievienots: - + Run on torrent finished: - + Palaist, kad torrents pabeigts: - + Peer connection protocol: Koplietotāju savienojumu protokols - + Any Vienalga - + I2P (experimental) l2P (eksperimentāls) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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: - + Tā paša resursdatora pieprasījuma aizkave: - + Maximum number of articles per feed: Atļautais ziņu skaits katram kanālam: - - - + + + min minutes min - + Seeding Limits Augšupielādes ierobežojumi - + 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 - - 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: - + A&utomātiski pievienot šos trakerus jauniem lejupielādēm: - + Automatically append trackers from URL to new downloads: - + Automātiski pievienot trakerus no URL jauniem lejupielādēm: - + URL: Adrese: - + Fetched trackers - + Iegūtie trakeri - + Search UI Meklētāja saskarne - + Store opened tabs - + Saglabāt atvērtās cilnes - + Also store search results - + Arī saglabāt meklēšanas rezultātus - + History length - + Vēstures garums - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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 @@ -6510,7 +6460,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu Style: - + Stils: @@ -6573,7 +6523,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu &Log Files - + &Žurnāla faili @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu Rādīt &qBittorrent paziņojumu joslā - + 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 @@ -6803,65 +6753,65 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu gadiem - + Log performance warnings Reģistrēt darbības brīdinājumus - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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ā + + + 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> - + <html><head/><body><p>Ja "jauktais režīms" ir iespējots, I2P torrentiem ir atļauts iegūt līdzgājējus arī no citiem avotiem, ne tikai no trakera, un savienoties ar parastajām IP adresēm, nenodrošinot anonimizāciju. Tas var būt noderīgi, ja lietotājs nav ieinteresēts I2P anonimizācijā, bet joprojām vēlas spēt savienoties ar I2P līdzgājējiem.</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 - + 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) - + Iespējot sīkdatņu Secure parametru (nepieciešams HTTPS vai localhost savienojums) - + 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ā @@ -7462,12 +7417,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): @@ -7487,183 +7442,183 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet 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 - + Sistēma - + Let Qt decide the style for this system Ļaut Qt noteikt šīs sistēmas stilu - + Dark Dark color scheme - + Tumšs - + Light Light color scheme - + Gaišs - + System System color scheme - + Sistēma - + 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 + Atlasiet izgūšanas mapi - + 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> @@ -7673,69 +7628,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. @@ -7746,18 +7701,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 @@ -7842,169 +7797,169 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet Peer is using NAT hole punching - + Līdzgājējs izmanto NAT caurduršanu 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 @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Esošie spraudņi tika atslēgti. Nav rakstīšanas tiesību šajā vietā + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8523,7 +8520,7 @@ Esošie spraudņi tika atslēgti. Ratio / Time Active (in months), indicates how popular the torrent is - + Attiecība / Aktīvais laiks (mēnešos), norāda, cik populārs ir torrents @@ -8571,124 +8568,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ā. - + 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... - + Rediģēt tīmekļa sēklas 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 - + Web seed editing Tīmekļa devēja labošana - + Web seed URL: Tīmekļa devēja adrese: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Esošie spraudņi tika atslēgti. - + Item doesn't exist: %1. Fails nepastāv: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Nevar mapi ievietot sevī. - + 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: - Atsvaidzināšanas intervāls: - - - - sec - sek - - - - Default - Noklusētais - - RSSWidget @@ -9031,61 +8987,101 @@ 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 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9199,142 +9195,168 @@ Esošie spraudņi tika atslēgti. Izmērs: - + Name i.e: file name Nosaukuma - + Size i.e: file size Izmērs - + Seeders i.e: Number of full sources Devēji - + Leechers i.e: Number of partial sources Ņēmēji - + Filter search results... Meklēt rezultātos... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Rezultāti (parādīti <i>%1</i> no <i>%2</i>): - + Torrent names only Tikai torrentu nosaukumos - + Everywhere Visur - + Use regular expressions Lietot Regulārās izteiksmes - + Open download window Atvērt lejupielādes logu - + Download Lejupielādēt - + Open description page Atvērt torrenta apraksta lapu - + Copy Kopēt - + Name Nosaukumu - + Download link Lejupielādes saiti - + Description page URL Apraksta lapas adresi - + Searching... Meklē... - + Search has finished Meklēšana pabeigta. - + Search aborted Meklēšana pārtraukta - + An error occurred during search... Meklēšanas laikā radās kļūda... - + Search returned no results Meklēšana nedeva rezultātus - - - Engine - - - - - Engine URL - - + Engine + Dzinējs + + + + Engine URL + Dzinēja URL + + + Published On Publicēts - + 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 @@ -9342,104 +9364,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') @@ -9465,94 +9487,94 @@ 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. - + <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 - + Atsvaidzināt - + 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 @@ -9560,32 +9582,32 @@ Spiediet uz "Meklētāju spraudņi..." pogas, lai kādu uzinstalētu. SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Neizdevās ielādēt Meklēšanas UI saglabāto stāvokļa datus. Fails: "%1". Kļūda: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Neizdevās ielādēt saglabātos meklēšanas rezultātus. Cilne: "%1". Fails: "%2". Kļūda: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Neizdevās saglabāt Meklēšanas UI stāvokli. Fails: "%1". Kļūda: "%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" @@ -9983,77 +10005,67 @@ 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. - - Free space: - - - - + External IPs: %1, %2 Publiskās IP adreses: %1, %2 - + External IP: %1%2 - Publiskā IP adrese: %1%2 + Publiskā IP: %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 @@ -10592,17 +10604,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. @@ -10969,34 +10981,34 @@ Lūdzu izvēlieties citu nosaukumu. TorrentShareLimitsWidget - - - + + + Default Noklusētais - - + + Unlimited Neierobežots - - + + Set to Uzstādīt - + Seeding time: Augšupielādes laiks: - - + + @@ -11006,32 +11018,32 @@ Lūdzu izvēlieties citu nosaukumu. min - + Inactive seeding time: Neaktīvais augšupielādes laiks: - + Action when the limit is reached: Darbība, kad limits ir sasniegts: - + Stop torrent Apstādināt torrentu - + Remove torrent Dzēst torrentu - + Remove torrent and its content - + Enable super seeding for torrent Ieslēgt torrentu super-augšupielādi @@ -11082,78 +11094,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 @@ -11173,39 +11185,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 @@ -11354,73 +11366,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 @@ -11884,7 +11896,7 @@ Lūdzu izvēlieties citu nosaukumu. Ratio / Time Active (in months), indicates how popular the torrent is - + Attiecība / Aktīvais laiks (mēnešos), norāda, cik populārs ir torrents @@ -11909,319 +11921,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 - + 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. - + 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 + .torrent datnes izgūš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 - + 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 + Izgūtais torrents ne vienmēr ir tāds pats kā ievietotais - + 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 - + Super seeding mode Super-augšupielādēšanas režīms @@ -12276,18 +12288,18 @@ Lūdzu izvēlieties citu nosaukumu. Saskarnes izmaiņas netika pilnībā pielāgotas. Sīkākā informācija atrodama reģistrā. - + Couldn't save UI Theme configuration. Reason: %1 Neizdevās saglabāt Saskarnes iestatījumus. Iemesls: %1 - - + + Couldn't remove icon file. File: %1. Neizdevās izdzēst ikonas failu. Fails: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Neizdevās nokopēt ikonas failu. Avots: %1. Galavieta: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: Izcelsmes galvene un Mērķa izcelsme nesakrīt! Avota IP: '%1'. Izcelsmes galvene: '%2'. Mērķa izcelsme: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Atsauces galvene un Mērķa izcelsme nesakrīt! Avota IP: '%1'. Atsauces galvene: '%2'. Mērķa izcelsme: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: nederīga Resursdatora galvene, porti nesakrīt. Pieprasīt avota IP: '%1'. Servera ports: '%2'. Saņemtā Resursdatora galvene: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Nederīga Resursdatora galvene. Pieprasīt avota IP: '%1'. Saņemtā Resursdatora galvene: '%2' diff --git a/src/lang/qbittorrent_mn_MN.ts b/src/lang/qbittorrent_mn_MN.ts index f1dedb7f2..a1a6b068f 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,21 +722,21 @@ Error: %2 AdvancedSettings - - - - + + + + MiB МиБ - + Recheck torrents on completion Торрентыг татагдаж дуусмагц шалгах - - + + ms milliseconds мс @@ -753,90 +753,90 @@ Error: %2 Утга - + (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,598 +845,592 @@ 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 Жагсаасан тракеруудын порт @@ -1488,74 +1482,74 @@ Error: %2 Хэрэглэж буй тохируулгын хаяг: %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. @@ -1576,34 +1570,34 @@ Error: %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'. @@ -1611,23 +1605,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. @@ -1637,17 +1631,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 @@ -1660,57 +1654,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 @@ -1895,115 +1889,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 Дүрмийг устгахад баталгаажуулах @@ -2012,32 +2006,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 дүрмүүдийг оруулах @@ -2050,120 +2044,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. бүх нийтлэлд үл хамаарна. @@ -2359,184 +2353,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 @@ -2559,321 +2553,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 + + Duplicate torrent - + 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" @@ -2923,47 +2917,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 @@ -3012,27 +3006,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: - + [options] [(<filename> | <url>)...] - + Options: - + Display program version and exit - + Display this help message and exit @@ -3043,130 +3037,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + 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 running or stopped - + Skip hash check Хеш шалгалтыг алгасах - + 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 Тусламж @@ -3297,12 +3291,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 @@ -3310,7 +3304,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3563,22 +3557,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? @@ -3696,40 +3690,6 @@ 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 @@ -4140,12 +4100,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Харуулах - + Check for program updates Программын шинэчлэлийг шалгах @@ -4160,155 +4120,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". @@ -4321,160 +4281,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 Торрент татах @@ -4485,46 +4445,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 @@ -4535,22 +4495,22 @@ Please install it manually. [D: %1, U: %2] qBittorrent %3 - + Hide Нуух - + Exiting qBittorrent qBittorrent гарах - + Open Torrent Files Торрент файлуудыг нээх - + Torrent Files Торрент файлууд @@ -6045,47 +6005,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 @@ -6235,402 +6195,392 @@ 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. @@ -6639,37 +6589,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 @@ -6782,99 +6732,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 файлуудыг хуулах: @@ -6884,22 +6834,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 Бүх файлд шаардлагатай зайг урьдчилж өмчлөх @@ -6994,64 +6944,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 @@ -7071,50 +7021,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". @@ -7131,506 +7081,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 - + + 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 @@ -7640,12 +7595,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7665,183 +7620,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 @@ -7851,69 +7806,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 @@ -7924,18 +7879,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 @@ -8030,7 +7985,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region @@ -8039,158 +7994,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 @@ -8467,6 +8422,39 @@ 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 @@ -8548,6 +8536,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8756,124 +8753,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: @@ -8900,33 +8897,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 @@ -8934,22 +8931,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. @@ -8998,12 +8995,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" @@ -9025,117 +9022,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - - - - - Refresh interval: - - - - - sec - - - - - Default - - - RSSWidget @@ -9235,61 +9191,101 @@ 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 + + + + + + Feed URL: + + + + Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed - + New feed name: - + Rename failed - + Date: - + Feed: - + Author: @@ -9403,142 +9399,168 @@ Those plugins were disabled. Хэмжээ: - + Name i.e: file name - + Size i.e: file size - + Seeders i.e: Number of full sources - + Leechers i.e: Number of partial sources - + Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + 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 Татах - + Open description page - + Copy Хуулбарлах - + 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 @@ -9546,104 +9568,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') @@ -9668,94 +9690,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 @@ -9763,32 +9785,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" @@ -10186,77 +10208,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. - - 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 @@ -10808,17 +10820,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -11192,34 +11204,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -11229,32 +11241,32 @@ Please choose a different name and try again. минут - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent - + Remove torrent and its content - + Enable super seeding for torrent @@ -11305,78 +11317,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 @@ -11396,39 +11408,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 @@ -11576,73 +11588,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 @@ -12144,107 +12156,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 @@ -12259,214 +12271,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 @@ -12521,18 +12533,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12598,32 +12610,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 @@ -12767,72 +12779,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_ms_MY.ts b/src/lang/qbittorrent_ms_MY.ts index 95c7d88ed..5df9ca1bb 100644 --- a/src/lang/qbittorrent_ms_MY.ts +++ b/src/lang/qbittorrent_ms_MY.ts @@ -231,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. + - Files checked @@ -364,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 @@ -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,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Semak semula torrent seusai lengkap - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Sebab: %2 - + Torrent added Torrent ditambah - + '%1' was added. e.g: xxx.avi was added. '%1' telah ditambah. - + Download completed @@ -1555,88 +1549,88 @@ Sebab: %2 - + 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 @@ -1772,263 +1766,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. @@ -2224,503 +2218,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" @@ -2770,47 +2764,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 @@ -2859,27 +2853,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 mestilah nyatakan port yang sah (1 hingga 65535). - + Usage: Penggunaan: - + [options] [(<filename> | <url>)...] - + Options: Pilihan: - + Display program version and exit Papar versi program kemudian keluar - + Display this help message and exit Papar mesej bantuan ini kemudian keluar @@ -2890,130 +2884,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' mesti ikuti sintak '%1=%2' - + Confirm the legal notice - - + + port port - + Change the WebUI port - + Change the torrenting port - + Disable splash screen Lumpuhkan skrin percikan - + Run in daemon-mode (background) Jalankan dalam mod-daemon (disebalik tabir) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Simpan fail konfigurasi dalam <dir> - - + + name nama - + Store configuration files in directories qBittorrent_<name> Simpan fail konfigurasi dalam direktori qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Godam ke dalam fail fastresume libtorrent dan buat laluan fail yang relatif dengan direktori profil - + files or URLs fail atau URL - + Download the torrents passed by the user Muat turun torrent diluluskan oleh pengguna - + Options when adding new torrents: Pilihan bila menambah torrent baharu: - + path laluan - + Torrent save path Laluan simpan Torrent - + Add torrents as running or stopped - + Skip hash check Langkau semakan cincangan - + Assign torrents to category. If the category doesn't exist, it will be created. Umpuk torrent dengan kategori. Jika kategori tidak wujuf, ia akan diciptakan. - + Download files in sequential order Muat turun fail dalam tertib berjujukan - + Download first and last pieces first Muat turn cebisan pertama dan terakhir dahulu - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Nyatakan sama ada dialog "Tambah Torrent Baharu" dibuka ketika menambah sebuah 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: Nilai pilihan boleh dibekalkan melalui pembolehubah persekitaran. Untuk pilihan bernama 'parameter-name', nama pembolehubah persekitaran ialah 'QBT_PARAMETER_NAME' (dalam huruf besar, '-' diganti dengan '_'). Untuk melepasi nilai bendera, tetapkan pembolehubah ke '1' atau 'TRUE'. Sebagai contoh, untuk lumpuhkan skrin percikan: - + Command line parameters take precedence over environment variables Parameter baris perintah mengambil alih pembolehubah persekitaran - + Help Bantuan @@ -3136,12 +3130,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 @@ -3149,7 +3143,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3402,22 +3396,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? @@ -3535,40 +3529,6 @@ 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 @@ -3959,12 +3919,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 @@ -3979,380 +3939,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 - + Search has failed Gelintar telah gagal - + Search has finished 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 - + 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 - - + + 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 @@ -5846,47 +5806,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 @@ -6032,175 +5992,175 @@ Minimum requirement: %2. 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 @@ -6209,190 +6169,180 @@ 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 - + 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 - + 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: - + 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. @@ -6401,37 +6351,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 - + 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. @@ -6444,37 +6394,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 @@ -6587,99 +6537,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: @@ -6689,22 +6639,22 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '* Tunjuk &qBittorrent dalam ruang pemberitahuan - + 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 @@ -6799,65 +6749,65 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '* tahun - + Log performance warnings - + 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 @@ -6877,50 +6827,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". @@ -6937,506 +6887,511 @@ 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 + + + 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 - + 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; @@ -7446,12 +7401,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): @@ -7471,183 +7426,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 @@ -7657,69 +7612,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. @@ -7730,18 +7685,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 @@ -7832,163 +7787,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 @@ -8266,6 +8221,39 @@ Pemalam tersebut telah dilumpuhkan. Pautan Sesawang + + 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 + + + PreviewSelectDialog @@ -8347,6 +8335,15 @@ Pemalam tersebut telah dilumpuhkan. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8555,124 +8552,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 - + No 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. - + 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 - + Web seed editing Penyuntingan semaian Sesawang - + Web seed URL: URL semaian Sesawang: @@ -8680,33 +8677,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 @@ -8714,22 +8711,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. @@ -8778,12 +8775,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" @@ -8805,117 +8802,76 @@ Pemalam tersebut telah dilumpuhkan. - + Item doesn't exist: %1. Item tidak wujud: %1. - Can't move a folder into itself or its subfolders. + Couldn't move folder into itself. - + 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 @@ -9015,61 +8971,101 @@ Pemalam tersebut telah dilumpuhkan. - Feed options... + Edit feed URL... - + + 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. + + + + + Feed URL: + URL Suapan: + + + Deletion confirmation Pengesahan pemadaman - + Are you sure you want to delete the selected RSS feeds? Anda pasti mahu memadam suapan RSS terpilih? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9183,142 +9179,168 @@ Pemalam tersebut telah dilumpuhkan. Saiz: - + Name i.e: file name Nama - + Size i.e: file size Saiz - + Seeders i.e: Number of full sources Penyemai - + Leechers i.e: Number of partial sources Penyedut - + Filter search results... Tapis keputusan gelintar... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Keputusan (menunjukkan <i>%1</i> dari <i>%2</i>): - + Torrent names only Nama torrent sahaja - + Everywhere Di mana sahaja - + Use regular expressions Guna ungkapan nalar - + Open download window - + Download Muat turun - + Open description page Buka halaman keterangan - + Copy Salin - + Name Nama - + Download link Pautan muat turun - + Description page URL URL halaman keterangan - + Searching... Menggelintar... - + Search has finished Gelintar selesai - + Search aborted Gelintar dihenti paksa - + An error occurred during search... Satu ralat berlaku ketika menggelintar... - + Search returned no results Gelintar tidak kembalikan keputusan - + Engine - + Engine URL - + Published On - + Column visibility Ketampakan lajur - + Resize columns - + Resize all non-hidden columns to the size of their contents @@ -9326,104 +9348,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') @@ -9449,94 +9471,94 @@ 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. - + <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 @@ -9544,32 +9566,32 @@ Klik butang "Gelintar pemalam..." di bahagian bawah kanan tetingkap un 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" @@ -9967,77 +9989,67 @@ 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 @@ -10576,17 +10588,17 @@ Sila pilih nama lain dan cuba sekali lagi. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10953,34 +10965,34 @@ Sila pilih nama lain dan cuba sekali lagi. TorrentShareLimitsWidget - - - + + + Default Lalai - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10990,32 +11002,32 @@ Sila pilih nama lain dan cuba sekali lagi. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Buang torrent - + Remove torrent and its content - + Enable super seeding for torrent Benarkan super penyemaian untuk torrent @@ -11066,78 +11078,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 @@ -11157,39 +11169,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 @@ -11338,73 +11350,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 @@ -11893,319 +11905,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. - + 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 - + 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 @@ -12260,18 +12272,18 @@ Sila pilih nama lain dan cuba sekali lagi. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12337,32 +12349,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 @@ -12454,72 +12466,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' UISesawang: Pengepala asal & asal sasaran tidak sepadan! IP Sumber: '%1'. Pengepala asal: '%2'. Sasaran asal: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' UISesawang: Pengepala rujukan & asal sasaran tidak sepadan! IP Sumber: '%1'. Pengepala rujukan: '%2'. Sasaran asal: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' UISesawang: Pengepala Hos tidak sah, port tidak sepadan. IP sumber permintaan: '%1'. Port pelayan: '%2'. Pengepala Hos diterima: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' UISesawang: Pengepala Hos tidak sah. IP sumber permintaan: '%1'. Pengepala Hos diterima: '%2' diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index 757423262..c4f1f5554 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Gjennomsjekk torrenter på nytt ved fullførelse - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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] + IP-adressen 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 Fest dialogvinduet «Legg til ny torrent» til hovedvinduet - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Årsak: %2 - + Torrent added Torrent lagt til - + '%1' was added. e.g: xxx.avi was added. La til «%1». - + Download completed Nedlasting fullført @@ -1555,88 +1549,88 @@ 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 @@ -1773,263 +1767,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. @@ -2099,12 +2093,12 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Corrupted resume data: %1 - + Gjenopptakelsesdata er skadet: %1 save_path is invalid - + Ugyldig save_path @@ -2186,12 +2180,12 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Corrupted resume data: %1 - + Gjenopptakelsesdata er skadet: %1 save_path is invalid - + Ugyldig save_path @@ -2225,503 +2219,503 @@ 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». - + 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 - + 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 - + 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 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» - + Duplicate torrent - + Duplisert 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» - + 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» - + %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 - + 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» @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor %1 må spesifisere en gyldig port (1 til 65535). - + Usage: Bruk: - + [options] [(<filename> | <url>)...] [alternativer] [(<filename> | <url>)...] - + Options: Alternativer: - + Display program version and exit Vis programversjon og avslutt - + Display this help message and exit Vis denne hjelpemeldingen og avslutt @@ -2891,130 +2885,130 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Parameteret '%1' må følge syntaksen '%1=%2' - + Confirm the legal notice Bekreft juridisk merknad - - + + port port - + Change the WebUI port Endre port for nettgrensesnittet - + Change the torrenting port Endre torrent-port - + Disable splash screen Skru av velkomstskjerm - + Run in daemon-mode (background) Kjør i bakgrunnsmodus - + dir Use appropriate short form or abbreviation of "directory" kat. - + Store configuration files in <dir> Lagre oppsettsfiler i <dir> - - + + name navn - + Store configuration files in directories qBittorrent_<name> Lagre oppsettsfiler i mapper qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Hack inn i libtorrents hurtigopptakelsesfiler og gjør filstier relative til profilmappen - + files or URLs filer eller URL-er - + Download the torrents passed by the user Last ned torrenter godkjent av brukeren - + Options when adding new torrents: Valg ved tillegg av nye torrenter: - + path sti - + Torrent save path Torrentlagringssti - + Add torrents as running or stopped Legg til torrenter som startet eller stoppet - + Skip hash check Hopp over sjekksummering - + Assign torrents to category. If the category doesn't exist, it will be created. Tildel torrenter til kategori. Hvis kategorien ikke finnes vil den bli opprettes. - + Download files in sequential order Last ned filer i sekvensiell rekkefølge - + Download first and last pieces first Last ned de første og siste delene først - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Angi hvorvidt dialogvinduet «Legg til ny torrent» åpnes når en torrent legges til. - + 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: Valgbare verdier kan angis via miljøvariabler. For valget ved navn "parameter-name" er miljøvariabelen "QBT_PARAMETER_NAME" (med store bokstaver "-" erstattet med "_". For å sende flaggverdier, sett variabelen til "1" eller "TRUE". For eksempel for å skru av oppstartsskjermen: - + Command line parameters take precedence over environment variables Kommandolinjeparameter overstyrer miljøvariabler - + Help Hjelp @@ -3137,12 +3131,12 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor CustomThemeSource - + Failed to load custom theme style sheet. %1 Klarte ikke laste stilark for selvvalgt grensesnittdrakt. %1 - + Failed to load custom theme colors. %1 Klarte ikke laste farger for selvvalgt grensesnittdrakt. %1 @@ -3150,7 +3144,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor DefaultThemeSource - + Failed to load default theme colors. %1 Klarte ikke laste farger for standard grensesnittdrakt. %1 @@ -3403,22 +3397,22 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor GUIAddTorrentManager - + Downloading torrent... Source: "%1" Laster ned torrent … Kilde: «%1» - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,383 +3940,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 - + Search has failed Søket mislyktes - + Search has finished 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. 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 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 - - + + 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 @@ -5850,47 +5810,47 @@ Minimumskrav: %2. 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 @@ -6036,175 +5996,175 @@ Minimumskrav: %2. 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) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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 - + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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 @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& Vis &qBittorrent i varslingsområdet - + 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 @@ -6803,65 +6753,65 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& år - + Log performance warnings Varsel om logg-ytelse - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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 + + + 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 - + 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 @@ -7462,12 +7417,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): @@ -7487,183 +7442,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> @@ -7673,69 +7628,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. @@ -7746,18 +7701,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 @@ -7848,163 +7803,163 @@ readme{0-9].txt: filtrerer «readme1.txt», «readme2.txt», men ikke «readme10 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 @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ De uavinstallerbare programtilleggene ble avskrudd. Mangler skrivetilgang til sti + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 - + No 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. - + 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 - + Web seed editing Nettdeler-redigering - + Web seed URL: Nettdeleradresse: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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. @@ -8794,12 +8791,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» @@ -8821,117 +8818,76 @@ De uavinstallerbare programtilleggene ble avskrudd. - + Item doesn't exist: %1. Elementet finnes ikke: %1 - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Kan ikke flytte mappe til seg selv. - + 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: - Oppdateringsintervall: - - - - sec - sek - - - - Default - Forvalgt - - RSSWidget @@ -9031,61 +8987,101 @@ De uavinstallerbare programtilleggene ble avskrudd. - Feed options... - + Edit feed URL... + Rediger informasjonskanalens adresse … - + + Edit feed URL + 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9199,142 +9195,168 @@ De uavinstallerbare programtilleggene ble avskrudd. Størrelse: - + Name i.e: file name Navn - + Size i.e: file size Størrelse - + Seeders i.e: Number of full sources Givere - + Leechers i.e: Number of partial sources Snyltere - + Filter search results... Filtrer søkeresultater … - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultater (viser <i>%1</i> av <i>%2</i>): - + Torrent names only Kun torrentnavn - + Everywhere Overalt - + Use regular expressions Bruk regulære uttrykk - + Open download window Åpne nedlastingsvindu - + Download Last ned - + Open description page Åpne beskrivelsesside - + Copy Kopier - + Name Navn - + Download link Nedlastingslenke - + Description page URL Adressen til beskrivelsessiden - + Searching... Søker … - + Search has finished Søket er ferdig - + Search aborted Søket ble avbrutt - + An error occurred during search... En feil oppstod under søket … - + Search returned no results Søket ga ingen resultater - + Engine Motor: - + Engine URL Motoradresse - + Published On Publisert den - + 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 @@ -9342,104 +9364,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») @@ -9465,94 +9487,94 @@ 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. - + <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 @@ -9560,32 +9582,32 @@ Klikk «Søk etter programtillegg …»-knappen nederst til høyre i vinduet for 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» @@ -9983,77 +10005,67 @@ 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. - - 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 - - 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 @@ -10592,17 +10604,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. @@ -10969,34 +10981,34 @@ Velg et annet navn og prøv igjen. TorrentShareLimitsWidget - - - + + + Default Forvalgt - - + + Unlimited Ubegrenset - - + + Set to Velg - + Seeding time: Delingstid: - - + + @@ -11006,32 +11018,32 @@ Velg et annet navn og prøv igjen. min - + Inactive seeding time: Inaktiv delingstid: - + Action when the limit is reached: Handling når grensen er nådd: - + Stop torrent Stopp torrent - + Remove torrent Fjern torrent - + Remove torrent and its content Fjern torrenten og innholdet - + Enable super seeding for torrent Skru på superdeling av torrent @@ -11082,78 +11094,78 @@ 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 @@ -11173,39 +11185,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 @@ -11354,73 +11366,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 @@ -11909,319 +11921,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 - + 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. - + 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 - + 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 - + Super seeding mode Superdelingsmodus @@ -12276,18 +12288,18 @@ Velg et annet navn og prøv igjen. Klarte ikke ta i bruk alle endringene i grensesnittdrakta. Detaljene finner du i loggen. - + Couldn't save UI Theme configuration. Reason: %1 Klarte ikke lagre oppsett av grensesnittdrakt fordi: %1 - - + + Couldn't remove icon file. File: %1. Klarte ikke fjerne ikonfil. Fil: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Klarte ikke kopiere ikonfil. Kilde: %1. Mål: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Nettgrensesnitt: Opprinnelseshodet og målopprinnelsen samsvarer ikke! Kilde-IP: «%1». Opprinnelseshode: «%2». Målopprinnelse: «%3» - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Nettgrensesnitt: Henvisningsshodet og målopprinnelsen samsvarer ikke! Kilde-IP: «%1». Henvisningshode: «%2». Målopprinnelse: «%3» - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Nettgrensesnitt: Ugyldig vertsoverskrift, porter samsvarer ikke. Forespørselens kilde-IP: «%1». Tjenerport: «%2». Mottatt vertsoverskrift: «%3» - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Nettgrensesnitt: Ugyldig vertsoverskrift. Forespørselens kilde-IP: «%1». Mottatt vertsoverskrift: «%2» diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index 9f4d6a6d3..1794cf2bb 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -203,7 +203,7 @@ Torrent options - + Torrent-opties @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrents opnieuw controleren bij voltooiing - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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. - + Interval voor opslaan van statistieken [0: uitgeschakeld] - + .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] - + Poort gemeld aan trackers (opnieuw starten vereist) [0: luisterpoort] - + 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 Dialoogvenster "nieuwe torrent toevoegen" vastmaken aan hoofdvenster - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Reden: %2 - + Torrent added Torrent toegevoegd - + '%1' was added. e.g: xxx.avi was added. '%1' werd toegevoegd. - + Download completed Download voltooid @@ -1555,88 +1549,88 @@ 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 @@ -1773,263 +1767,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. @@ -2099,7 +2093,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Corrupted resume data: %1 - + Beschadigde hervattingsgegevens: %1 @@ -2186,7 +2180,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Corrupted resume data: %1 - + Beschadigde hervattingsgegevens: %1 @@ -2225,503 +2219,503 @@ 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". - + 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 - + 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 - + 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 - + Lijst met trackers bijgewerkt - + Failed to update tracker list. Reason: "%1" - + Bijwerken van lijst met trackers mislukt. Reden: "%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 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" - + 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". - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2821,7 +2815,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Embedded Tracker: Now listening on IP: %1, port: %2 - Ingebedde tracker: nu luisteren naar IP: %1, poort: %2 + Ingebedde tracker: luisteren naar IP: %1, poort: %2 @@ -2860,27 +2854,27 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o %1 moet een geldige poort opgeven (1 tot 65535). - + Usage: Gebruik: - + [options] [(<filename> | <url>)...] [opties] [(<filename> | <url>)...] - + Options: Opties: - + Display program version and exit Programmaversie weergeven en afsluiten - + Display this help message and exit Dit helpbericht weergeven en afsluiten @@ -2891,130 +2885,130 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Parameter '%1' moet syntax '%1 = %2' volgen - + Confirm the legal notice Bevestig de juridische mededeling - - + + port poort - + Change the WebUI port De WebUI-poort wijzigen - + Change the torrenting port De torrent-poort wijzigen - + Disable splash screen Opstartscherm uitschakelen - + Run in daemon-mode (background) Uitvoeren in daemon-modus (achtergrond) - + dir Use appropriate short form or abbreviation of "directory" map - + Store configuration files in <dir> Configuratiebestanden opslaan in <dir> - - + + name naam - + Store configuration files in directories qBittorrent_<name> Configuratiebestanden opslaan in mappen qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory In de bestanden voor snel hervatten van libtorrent hacken en bestandspaden relatief aan de profielmap maken. - + files or URLs bestanden of URL's - + Download the torrents passed by the user Torrents doorgegeven door de gebruiker downloaden - + Options when adding new torrents: Opties bij het toevoegen van nieuwe torrents: - + path pad - + Torrent save path Opslagpad torrent - + Add torrents as running or stopped Torrents toevoegen als actief of gestopt - + Skip hash check Hash-check overslaan - + Assign torrents to category. If the category doesn't exist, it will be created. Torrents aan categorie toewijzen. Als de categorie niet bestaat, zal hij aangemaakt worden. - + Download files in sequential order Bestanden in sequentiële volgorde downloaden - + Download first and last pieces first Eerste en laatste deeltjes eerst downloaden - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Opgeven of het "nieuwe torrent toevoegen"-venster opent bij het toevoegen van een 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: Optiewaarden kunnen voorzien worden via omgevingsvariabelen. Voor optie 'parameter-naam' is de naam van de omgevingsvariabele 'QBT_PARAMETER_NAAM' (in hoofdletters, '-' vervangen door '_'). Om vlagwaarden door te geven stelt u de variabele in op '1' of 'TRUE'. Om bijvoorbeeld het 'splash screen' uit te schakelen: - + Command line parameters take precedence over environment variables Opdrachtregelparameters krijgen voorrang op omgevingsvariabelen - + Help Help @@ -3137,12 +3131,12 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o CustomThemeSource - + Failed to load custom theme style sheet. %1 Laden van aangepast thema-stijlblad mislukt. %1 - + Failed to load custom theme colors. %1 Laden van aangepaste themakleuren mislukt. %1 @@ -3150,7 +3144,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o DefaultThemeSource - + Failed to load default theme colors. %1 Laden van standaard themakleuren mislukt. %1 @@ -3403,22 +3397,22 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent downloaden... Bron: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3780,7 +3740,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Sh&utdown System - + Afsluiten @@ -3840,7 +3800,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o R&esume Session - + Sessie hervatten @@ -3960,12 +3920,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 @@ -3980,382 +3940,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 - + Search has failed Zoeken mislukt - + Search has finished 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. - + Installeren van Python gelukt. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Installeren van Python mislukt. - + 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 - + 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... - + Installeren van Python aan de gang... - + 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 - - + + 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 @@ -5849,47 +5809,47 @@ Minimale vereiste: %2. 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 @@ -6035,175 +5995,175 @@ Minimale vereiste: %2. 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: - + Uitvoeren wanneer torrent toegevoegd wordt: - + Run on torrent finished: - + Uitvoeren wanneer torrent voltooid is: - + Peer connection protocol: Peer-verbindingsprotocol: - + Any Om het even welke - + I2P (experimental) I2P (experimenteel) - + 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 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 @@ -6212,229 +6172,219 @@ 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 - + 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 - + 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: - + Fetched trackers - + Opgehaalde trackers - + Search UI - + Store opened tabs - + Open tabbladen opslaan - + Also store search results - + Ook zoekresultaten opslaan - + History length - + Geschiedenislengte - + 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. - IP-adres waarmee de Web-UI zal verbinden. + IP-adres waarmee de WebUI zal verbinden. Geef een IPv4- of IPv6-adres op. U kunt "0.0.0.0" opgeven voor om het even welk IPv4-adres, "::" 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 - + 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. @@ -6447,37 +6397,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 @@ -6525,13 +6475,13 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka Start / stop torrent - + Torrent starten / stoppen Open torrent options dialog - + Torrent-opties-dialoogvenster openen @@ -6572,7 +6522,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka &Log Files - + Logbestanden @@ -6590,99 +6540,99 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka Back-up-logs verwijderen die ouder zijn dan: - + Show external IP in status bar - + Externe IP in statusbalk weergeven - + 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: @@ -6692,22 +6642,22 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka qBittorrent weergeven in systeemvak - + 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 @@ -6802,65 +6752,65 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka jaar - + Log performance warnings Prestatiewaarschuwingen loggen - + 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 @@ -6880,50 +6830,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". @@ -6952,506 +6902,511 @@ 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 - + 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 + + + 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 - + 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 @@ -7461,12 +7416,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): @@ -7486,183 +7441,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 @@ -7672,69 +7627,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. @@ -7745,18 +7700,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 @@ -7847,163 +7802,163 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt' maar n 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 @@ -8281,6 +8236,39 @@ 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 @@ -8362,6 +8350,15 @@ Deze plugins zijn uitgeschakeld. Geen schrijfrechten voor pad + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8570,124 +8567,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 - + No 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 - + Webseed toevoegen - + Add web seed: - + Webseed toevoegen: - - + + This web seed is already in the list. - + Deze webseed staat al in de lijst. - + Filter files... Bestanden filteren... - + Add web seed... - + Webseed toevoegen... - + Remove web seed - + Webseed verwijderen - + Copy web seed URL - + Webseed-URL kopiëren - + Edit web seed URL... - + Webseed-URL bewerken... - + Speed graphs are disabled Snelheidsgrafieken zijn uitgeschakeld - + You can enable it in Advanced Options U kunt het inschakelen in de geavanceerde opties - + Web seed editing Webseed bewerken - + Web seed URL: Webseed-URL: @@ -8695,33 +8692,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 @@ -8729,22 +8726,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. @@ -8793,12 +8790,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" @@ -8820,117 +8817,76 @@ Deze plugins zijn uitgeschakeld. - + Item doesn't exist: %1. Item bestaat niet: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Kon map niet in zichzelf verplaatsen - + 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: - Vernieuwinterval: - - - - sec - sec - - - - Default - Standaard - - RSSWidget @@ -9030,61 +8986,101 @@ Deze plugins zijn uitgeschakeld. - Feed options... - + Edit feed URL... + Feed-URL bewerken... - + + Edit feed URL + 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 + + + + + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9198,142 +9194,168 @@ Deze plugins zijn uitgeschakeld. Grootte: - + Name i.e: file name Naam - + Size i.e: file size Grootte - + Seeders i.e: Number of full sources Seeders - + Leechers i.e: Number of partial sources Leechers - + Filter search results... Zoekresultaten filteren... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultaten (<i>%1</i> van <i>%2</i>): - + Torrent names only Alleen torrentnamen - + Everywhere Overal - + Use regular expressions Reguliere expressies gebruiken - + Open download window Downloadvenster openen - + Download Downloaden - + Open description page Beschrijvingspagina openen - + Copy Kopiëren - + Name Naam - + Download link Downloadkoppeling - + Description page URL URL van beschrijvingspagina - + Searching... Zoeken... - + Search has finished Zoeken is voltooid - + Search aborted Zoeken afgebroken - + An error occurred during search... Er trad een fout op tijdens het zoeken... - + Search returned no results Zoeken gaf geen resultaten - + Engine Engine - + Engine URL Engine-URL - + Published On Verschenen op - + 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 @@ -9341,104 +9363,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') @@ -9464,94 +9486,94 @@ 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. - + <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 - + Vernieuwen - + 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 @@ -9559,34 +9581,34 @@ Klik op de knop "zoekplugins..." rechtsonder in het venster om er een 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" - + Laden van zoekgeschiedenis mislukt. Bestand: "%1". Fout: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Opslaan van zoekgeschiedenis mislukt. Bestand: "%1". Fout: "%2" @@ -9982,77 +10004,67 @@ 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 - + Externe IP: N/B - - + + 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 - + Externe IPs: %1, %2 - + External IP: %1%2 - + Externe 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 @@ -10274,7 +10286,7 @@ Klik op de knop "zoekplugins..." rechtsonder in het venster om er een Add tag - + Label toevoegen @@ -10591,17 +10603,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. @@ -10830,7 +10842,7 @@ Kies een andere naam en probeer het opnieuw. Invalid Magnet URI. URI: %1. Reason: %2 - Ongeldige magneet-URI. URI: %1. Reden: %2 + Ongeldige magneetkoppeling. URI: %1. Reden: %2 @@ -10888,7 +10900,7 @@ Kies een andere naam en probeer het opnieuw. Torrent Share Limits - + Torrent-deelbegrenzing @@ -10904,7 +10916,7 @@ Kies een andere naam en probeer het opnieuw. Torrent Speed Limits - + Torrent-sneheidsbegrenzing @@ -10968,34 +10980,34 @@ Kies een andere naam en probeer het opnieuw. TorrentShareLimitsWidget - - - + + + Default Standaard - - + + Unlimited Onbegrensd - - + + Set to Instellen op - + Seeding time: Seed-tijd: - - + + @@ -11005,32 +11017,32 @@ Kies een andere naam en probeer het opnieuw. min - + Inactive seeding time: Niet-actieve seed-tijd: - + Action when the limit is reached: Actie wanneer de limiet bereikt is: - + Stop torrent Torrent stoppen - + Remove torrent Torrent verwijderen - + Remove torrent and its content Torrent en zijn inhoud verwijderen - + Enable super seeding for torrent Superseeden inschakelen voor torrent @@ -11050,7 +11062,7 @@ Kies een andere naam en probeer het opnieuw. Add tag - + Label toevoegen @@ -11081,90 +11093,90 @@ 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 "%1" is not a valid URL - + "%1" is geen geldige URL URL scheme must be one of [%1] - + URL-schema moet één van [%1] zijn @@ -11172,39 +11184,39 @@ Kies een andere naam en probeer het opnieuw. De 'sort'-parameter is ongeldig - + "%1" is not an existing URL - + URL "%1" bestaat niet - + "%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 @@ -11353,73 +11365,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 @@ -11908,319 +11920,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 - + 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. - + 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 - + 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 - + Labels toevoegen - + 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. - + Super seeding mode Super-seeding-modus @@ -12275,18 +12287,18 @@ Kies een andere naam en probeer het opnieuw. De wijzigingen aan het UI-thema konden niet volledig worden toegepast. De details staan in het logboek. - + Couldn't save UI Theme configuration. Reason: %1 Kon de configuratie van het UI-thema niet opslaan. Reden: %1 - - + + Couldn't remove icon file. File: %1. Kon pictogrambestand niet verwijderen. Bestand: %1 - + Couldn't copy icon file. Source: %1. Destination: %2. Kon pictogrambestand niet kopiëren. Bron: %1. Bestemming: %2 @@ -12352,32 +12364,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 @@ -12469,72 +12481,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: oorsprong-header en doel-oorsprong komen niet overeen! Bron-IP: '%1'. Oorsprong-header: '%2'. Doel-oorsprong: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: referer-header en doel-oorsprong komen niet overeen! Bron-IP: '%1'. Referer-header: '%2'. Doel-oorsprong: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: ongeldige host-header, poorten komen niet overeen. Aanvragen bron-IP: '%1'. Server-poort: '%2'. Ontvangen host-header: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: ongeldige host-header. Aanvragen bron-IP: '%1'. Ontvangen host-header: '%2' diff --git a/src/lang/qbittorrent_oc.ts b/src/lang/qbittorrent_oc.ts index a390349af..971ef2ce6 100644 --- a/src/lang/qbittorrent_oc.ts +++ b/src/lang/qbittorrent_oc.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 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 @@ -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,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB Mio - + Recheck torrents on completion Reverificar los torrents quand son acabats - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 @@ -1425,64 +1419,64 @@ - + 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Rason : %2 - + Torrent added Torrent apondut - + '%1' was added. e.g: xxx.avi was added. '%1' es estat apondut. - + Download completed @@ -1555,88 +1549,88 @@ Rason : %2 - + 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 @@ -1772,263 +1766,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. @@ -2224,503 +2218,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" @@ -2770,47 +2764,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 @@ -2859,27 +2853,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: Utilizacion : - + [options] [(<filename> | <url>)...] - + Options: Opcions - + Display program version and exit - + Display this help message and exit @@ -2890,130 +2884,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Confirm the legal notice - - + + port - + Change the WebUI port - + Change the torrenting port - + Disable splash screen Desactivar l'ecran d'aviada - + Run in daemon-mode (background) Executar en prètzfait de fons - + 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 running or stopped - + Skip hash check Verificar pas las donadas del torrent - + 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 Telecargar primièras e darrièras pèças en primièr - + 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 Ajuda @@ -3136,12 +3130,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 @@ -3149,7 +3143,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3402,22 +3396,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? @@ -3535,40 +3529,6 @@ 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 @@ -3959,12 +3919,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 @@ -3979,380 +3939,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 - + Search has failed La recèrca a fracassat - + Search has finished 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 - + 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 - - + + 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 @@ -5846,47 +5806,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 @@ -6032,402 +5992,392 @@ 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 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: - + 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. @@ -6436,37 +6386,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 @@ -6579,99 +6529,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: @@ -6681,22 +6631,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 @@ -6791,64 +6741,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 @@ -6868,50 +6818,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". @@ -6928,506 +6878,511 @@ 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 @@ -7437,12 +7392,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7462,183 +7417,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 @@ -7648,69 +7603,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. @@ -7721,18 +7676,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 @@ -7823,163 +7778,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 @@ -8257,6 +8212,39 @@ 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 @@ -8338,6 +8326,15 @@ Los empeutons en question son estats desactivats. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8546,124 +8543,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 - + No 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. - + 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 - + Web seed editing Modificacion de la font web - + Web seed URL: URL de la font web : @@ -8671,33 +8668,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 @@ -8705,22 +8702,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. @@ -8769,12 +8766,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" @@ -8796,117 +8793,76 @@ Los empeutons en question son estats desactivats. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - URL: - - - - Refresh interval: - - - - - sec - - - - - Default - - - RSSWidget @@ -9006,61 +8962,101 @@ Los empeutons en question son estats desactivats. - Feed options... + Edit feed URL... - + + 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 ? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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 : @@ -9174,142 +9170,168 @@ Los empeutons en question son estats desactivats. Talha : - + Name i.e: file name Nom - + Size i.e: file size Talha - + Seeders i.e: Number of full sources Fonts completas - + Leechers i.e: Number of partial sources Fonts parcialas - + Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultats (afichatge <i>%1</i> de <i>%2</i>) : - + Torrent names only Noms de torrent solament - + Everywhere Pertot - + Use regular expressions - + Open download window - + Download Telecargar - + Open description page - + Copy Copiar - + Name Nom - + Download link - + Description page URL - + Searching... Recèrca... - + Search has finished Recèrca acabada - + Search aborted Recèrca interrompuda - + An error occurred during search... Una error s'es produita pendent la recèrca.. - + Search returned no results La recèrca a pas tornat cap de resultat - + Engine - + Engine URL - + Published On - + Column visibility Visibilitat de las colomnas - + Resize columns - + Resize all non-hidden columns to the size of their contents @@ -9317,104 +9339,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') @@ -9439,94 +9461,94 @@ 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 @@ -9534,32 +9556,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" @@ -9957,77 +9979,67 @@ 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 @@ -10563,17 +10575,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10940,34 +10952,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10977,32 +10989,32 @@ Please choose a different name and try again. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent - + Remove torrent and its content - + Enable super seeding for torrent @@ -11053,78 +11065,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 @@ -11144,39 +11156,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 @@ -11320,73 +11332,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 @@ -11875,319 +11887,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 - + 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 @@ -12242,18 +12254,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12319,32 +12331,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 @@ -12436,72 +12448,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index ae331d1c8..22afe2436 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 - Wykryto próbę dodania zduplikowanego torrenta. Źródło: %1. Istniejący torrent: "%2". Infohash torrenta: %3. Wynik: %4 - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Sprawdzaj dane po pobraniu - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - Interwał wygaśnięcia pamięci podręcznej wewnętrznego programu do rozpoznawania nazw hostów - - - + 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 Dołącz okno dialogowe "Dodaj nowy torrent" do okna głównego - + 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 - + -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 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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Powód: %2 - + Torrent added Dodano torrent - + '%1' was added. e.g: xxx.avi was added. '%1' został dodany. - + Download completed Pobieranie zakończone @@ -1555,88 +1549,88 @@ Powód: %2 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,503 @@ 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". - + 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 - + 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 - + 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 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" - + 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 - - - + 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi %1 musi określić prawidłowy port (1 do 65535). - + Usage: Użycie: - + [options] [(<filename> | <url>)...] [opcje] [(<filename> | <url>)...] - + Options: Opcje: - + Display program version and exit Wyświetl wersję programu i zamknij - + Display this help message and exit Wyświetl tę wiadomość pomocy i zamknij @@ -2891,130 +2885,130 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Parametr '%1' musi odpowiadać składni '%1=%2' - + Confirm the legal notice Potwierdź informację prawną - - + + port port - + Change the WebUI port Zmień port interfejsu WWW - + Change the torrenting port Zmień port torrentowy - + Disable splash screen Wyłączenie ekranu startowego - + Run in daemon-mode (background) Uruchom w trybie demona (w tle) - + dir Use appropriate short form or abbreviation of "directory" katalog - + Store configuration files in <dir> Przechowuj pliki konfiguracyjne w <dir> - - + + name nazwa - + Store configuration files in directories qBittorrent_<name> Przechowuj pliki konfiguracyjne w katalogach qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Włam się do plików fastresume libtorrent i uczyń ścieżki plików względnymi do katalogu profilu - + files or URLs pliki albo adresy URL - + Download the torrents passed by the user Pobierz pliki torrent podane przez użytkownika - + Options when adding new torrents: Opcje podczas dodawania nowych torrentów: - + path ścieżka - + Torrent save path Ścieżka zapisu torrenta - + Add torrents as running or stopped Dodaj torrenty jako uruchomione lub zatrzymane - + Skip hash check Pomiń sprawdzanie danych - + Assign torrents to category. If the category doesn't exist, it will be created. Przypisz torrenty do kategorii. Jeśli kategoria nie istnieje, zostanie utworzona. - + Download files in sequential order Pobierz pliki w kolejności sekwencyjnej - + Download first and last pieces first Pobierz najpierw część pierwszą i ostatnią - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Określ, czy otwierać okno "Dodaj nowy plik torrent" podczas dodawnia torrenta. - + 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: Wartości opcji mogą być dostarczane za pośrednictwem zmiennych środowiskowych. Dla opcji nazwanej 'parameter-name', nazwa zmiennej środowiskowej to 'QBT_PARAMETER_NAME' (w trybie wielkich liter '-' zastąpione jest '_'). Aby przekazać wartości flagi, ustaw zmienną na '1' albo 'TRUE'. Na przykład, aby wyłączyć ekran powitalny: - + Command line parameters take precedence over environment variables Parametry linii poleceń mają pierwszeństwo przed zmiennymi środowiskowymi - + Help Pomoc @@ -3137,12 +3131,12 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi CustomThemeSource - + Failed to load custom theme style sheet. %1 Nie udało się załadować niestandardowego arkusza stylów motywu. %1 - + Failed to load custom theme colors. %1 Nie udało się załadować niestandardowych kolorów motywu. %1 @@ -3150,7 +3144,7 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi DefaultThemeSource - + Failed to load default theme colors. %1 Nie udało się załadować domyślnych kolorów motywu. %1 @@ -3403,22 +3397,22 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi GUIAddTorrentManager - + Downloading torrent... Source: "%1" Pobieranie torrenta... Źródło: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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. - 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 - - - - InhibitorMacOS - - - PMMacOS - qBittorrent is active - PMMacOS - - LegalNotice @@ -3960,12 +3920,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 @@ -3980,383 +3940,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 - + Search has failed Wyszukiwanie nie powiodło się - + Search has finished 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. 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 - + 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 - - + + 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 @@ -5850,47 +5810,47 @@ Minimalny wymóg: %2. 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 @@ -6036,175 +5996,175 @@ Minimalny wymóg: %2. KiB - - Show free disk space in status bar - Pokaż wolne miejsce na dysku na pasku stanu - - - + 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) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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 - + 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! - 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 - - - + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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 @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika Pokazuj ikonę &qBittorrent w obszarze powiadomień - + 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 @@ -6803,65 +6753,65 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika lat - + Log performance warnings Rejestruj ostrzeżenia dotyczące wydajności - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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 + + + 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 - + 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; @@ -7462,12 +7417,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): @@ -7487,183 +7442,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> @@ -7673,69 +7628,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ł. @@ -7746,18 +7701,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 @@ -7848,163 +7803,163 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale 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 @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Te wtyczki zostały wyłączone. Nie masz uprawnień do zapisu w ścieżce + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,124 @@ 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 - + No 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. - + 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 - + Web seed editing Edytowanie seeda sieciowego - + Web seed URL: Adres URL seeda sieciowego: @@ -8696,33 +8693,33 @@ Te wtyczki zostały wyłączone. 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 @@ -8730,22 +8727,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ć. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Te wtyczki zostały wyłączone. - + Item doesn't exist: %1. Element nie istnieje: %1. - Can't move a folder into itself or its subfolders. - Nie można przenieść folderu do niego samego ani do jego podfolderów. + Couldn't move folder into itself. + Nie można przenieść folderu do siebie. - + 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 - Nieprawidłowa wartość 'refreshInterval' - - - - Feed doesn't exist: %1. - Kanał nie istnieje: %1. - - - - RSSFeedDialog - - - RSS Feed Options - Opcje kanału RSS - - - - URL: - Adres URL: - - - - Refresh interval: - Częstotliwość odświeżania: - - - - sec - s - - - - Default - Domyślny - - RSSWidget @@ -9031,61 +8987,101 @@ Te wtyczki zostały wyłączone. - Feed options... - Opcje kanału... + Edit feed URL... + Edytuj adres URL kanału... - + + Edit feed URL + 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9199,142 +9195,168 @@ Te wtyczki zostały wyłączone. Rozmiar: - + Name i.e: file name Nazwa - + Size i.e: file size Rozmiar - + Seeders i.e: Number of full sources Seedujący - + Leechers i.e: Number of partial sources Pijawki - + Filter search results... Filtruj wyniki wyszukiwania... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Wyniki (pokazuje <i>%1</i> z <i>%2</i>): - + Torrent names only Tylko nazwy torrentów - + Everywhere Wszędzie - + Use regular expressions Używaj wyrażeń regularnych - + Open download window Otwórz okno pobierania - + Download Pobierz - + Open description page Otwórz stronę z opisem - + Copy Kopiuj - + Name Nazwa - + Download link Odnośnik pobierania - + Description page URL Adres URL strony opisu - + Searching... Wyszukiwanie... - + Search has finished Wyszukiwanie zakończone - + Search aborted Wyszukiwanie przerwane - + An error occurred during search... Wystąpił błąd podczas wyszukiwania... - + Search returned no results Wyszukiwanie nie zwróciło wyników - + Engine Wyszukiwarka - + Engine URL Adres URL wyszukiwarki - + Published On Opublikowano - + 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 @@ -9342,104 +9364,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') @@ -9465,94 +9487,94 @@ 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. - + <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 @@ -9560,32 +9582,32 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, 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" @@ -9983,77 +10005,67 @@ 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. - - Free space: N/A - Wolne miejsce: niedostępne - - - - + + 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 - - Free space: - Wolne miejsce: - - - + 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 @@ -10592,17 +10604,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. @@ -10969,34 +10981,34 @@ Wybierz inną nazwę i spróbuj ponownie. TorrentShareLimitsWidget - - - + + + Default Domyślne - - + + Unlimited Nieograniczone - - + + Set to Ustaw - + Seeding time: Czas seedowania: - - + + @@ -11006,32 +11018,32 @@ Wybierz inną nazwę i spróbuj ponownie. min - + Inactive seeding time: Nieaktywny czas seedowania: - + Action when the limit is reached: Działanie po osiągnięciu limitu: - + Stop torrent Zatrzymaj torrent - + Remove torrent Usuń torrent - + Remove torrent and its content Usuń torrent i jego zawartość - + Enable super seeding for torrent Włącz super-seedowanie dla torrenta @@ -11082,78 +11094,78 @@ 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 @@ -11173,39 +11185,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 @@ -11354,73 +11366,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 @@ -11909,319 +11921,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 - + 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. - + 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 - + 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ę - + Super seeding mode Tryb super-seeding @@ -12276,18 +12288,18 @@ Wybierz inną nazwę i spróbuj ponownie. Nie można w pełni zastosować zmian motywu interfejsu użytkownika. Szczegóły znajdziesz w dzienniku. - + Couldn't save UI Theme configuration. Reason: %1 Nie można zapisać konfiguracji motywu interfejsu użytkownika. Powód: %1 - - + + Couldn't remove icon file. File: %1. Nie można usunąć pliku ikony. Plik: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Nie można skopiować pliku ikony. Źródło: %1. Miejsce docelowe: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Interfejs WWW: Niedopasowanie nagłówka źródłowego i źródła celu! Źródło IP: '%1'. Nagłówek źródłowy: '%2'. Źródło celu: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Interfejs WWW: Niedopasowanie nagłówka odsyłacza i źródła celu! Źródło IP: '%1'. Nagłówek odsyłacza: '%2'. Źródło celu: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Interfejs WWW: Nieprawidłowy nagłówek hosta, niedopasowanie portu. Źródło IP żądania: '%1'. Port serwera: '%2'. Odebrany nagłówek hosta: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Interfejs WWW: Nieprawidłowy nagłówek hosta. Źródło IP żądania: '%1'. Nagłówek hosta: '%2' diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts index e43804846..f648dbbdf 100644 --- a/src/lang/qbittorrent_pt_BR.ts +++ b/src/lang/qbittorrent_pt_BR.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 - Detectada uma tentativa de adicionar um torrent duplicado. Fonte: %1. Torrent existente: %2. Hash de informação do torrent: %3. Resultado: %4 - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Verificar os torrents de novo ao completar - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - Intervalo de expiração do cache do resolvedor de nome de host interno - - - + 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 Anexar diálogo "Adicionar novo torrent" à janela principal - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Motivo: %2 - + Torrent added Torrent adicionado - + '%1' was added. e.g: xxx.avi was added. '%1' foi adicionado. - + Download completed Download concluído @@ -1555,88 +1549,88 @@ Motivo: %2 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,503 @@ 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". - + 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 - + 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 - + 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 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" - + 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 - - - + 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" - + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t %1 deve especificar uma porta válida (De 1 até 65535). - + Usage: Uso: - + [options] [(<filename> | <url>)...] [opções] [(<filename> | <url>)...] - + Options: Opções: - + Display program version and exit Exibe a versão do programa e sai - + Display this help message and exit Exibe esta mensagem de ajuda e sai @@ -2891,130 +2885,130 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t O parâmetro '%1' deve seguir a sintaxe '%1=%2' - + Confirm the legal notice Confirme o aviso legal - - + + port porta - + Change the WebUI port Alterar a porta WebUI - + Change the torrenting port Alterar a porta de torrent - + Disable splash screen Desativar a tela de inicialização - + Run in daemon-mode (background) Executar no modo-daemon (em 2o plano) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Armazenar os arquivos de configuração em <dir> - - + + name nome - + Store configuration files in directories qBittorrent_<name> Armazenar os arquivos de configuração nos diretórios do qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Acessar os arquivos de retomada rápida do libtorrent e criar caminhos de arquivos relativos ao diretório do perfil - + files or URLs arquivos ou URLs - + Download the torrents passed by the user Baixa os torrents passados pelo usuário - + Options when adding new torrents: Opções quando adicionar novos torrents: - + path caminho - + Torrent save path Caminho de salvamento do torrent - + Add torrents as running or stopped Adicionar torrents como iniciados ou parados - + Skip hash check Ignorar a verificação do hash - + Assign torrents to category. If the category doesn't exist, it will be created. Atribui os torrents a uma categoria. Se a categoria não existir ela será criada. - + Download files in sequential order Baixar arquivos em ordem sequencial - + Download first and last pieces first Baixar os primeiros e os últimos pedaços primeiro - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Especifica se o diálogo "Adicionar Novo Torrent" abre quando adicionar um 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: Os valores das opções podem ser supridos via variáveis do ambiente. Para a opção chamada 'parameter-name', o nome da variável do ambiente é 'QBT_PARAMETER_NAME' (em maiúsculas, '-' substituído por '_'). Pra passar os valores da bandeira, defina a variável como '1' ou 'TRUE'. Por exemplo, pra desativar a tela de inicialização: - + Command line parameters take precedence over environment variables Os parâmetros da linha de comando têm precedência sobre as variáveis do ambiente - + Help Ajuda @@ -3137,12 +3131,12 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t CustomThemeSource - + Failed to load custom theme style sheet. %1 Falha ao carregar a folha de estilo do tema personalizado. %1 - + Failed to load custom theme colors. %1 Falha ao carregar as cores do tema personalizado. %1 @@ -3150,7 +3144,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t DefaultThemeSource - + Failed to load default theme colors. %1 Falha ao carregar as cores do tema padrão. %1 @@ -3403,22 +3397,22 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t GUIAddTorrentManager - + Downloading torrent... Source: "%1" Baixando torrent... Fonte: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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. - 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 - - - - InhibitorMacOS - - - PMMacOS - qBittorrent is active - PMMacOS - - LegalNotice @@ -3960,12 +3920,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 @@ -3980,383 +3940,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 - + Search has failed A busca falhou - + Search has finished 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. 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 - + 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 - - + + 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 @@ -5850,47 +5810,47 @@ Requerimento mínimo: %2. 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 @@ -6036,175 +5996,175 @@ Requerimento mínimo: %2. KiB - - Show free disk space in status bar - Mostrar espaço livre em disco na barra de status - - - + 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) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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 - + 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! - 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 - - - + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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 @@ -6526,7 +6476,7 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& Start / stop torrent - Iniciar / Parar torrent + Iniciar / Parar Torrent @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& Mostrar o &qBittorrent na área de notificação - + 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 @@ -6803,65 +6753,65 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& anos - + Log performance warnings Registrar avisos sobre a performance - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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 + + + 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 - + 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; @@ -7462,12 +7417,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): @@ -7487,183 +7442,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> @@ -7673,69 +7628,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. @@ -7746,18 +7701,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 @@ -7848,163 +7803,163 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n 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 @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Esses plugins foram desativados. Não tem permissão de escrita para o caminho + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 - + No 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 - + 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 - + Web seed editing Editando a semente da web - + Web seed URL: URL da semente da web: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Esses plugins foram desativados. - + Item doesn't exist: %1. O item não existe: %1. - 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. + Couldn't move folder into itself. + Não foi possível mover a pasta para dentro dela. - + 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 - Valor 'refreshInterval' inválido - - - - Feed doesn't exist: %1. - O feed não existe: %1. - - - - RSSFeedDialog - - - RSS Feed Options - Opções do feed RSS - - - - URL: - URL: - - - - Refresh interval: - Intervalo de atualização: - - - - sec - seg - - - - Default - Padrão - - RSSWidget @@ -9031,61 +8987,101 @@ Esses plugins foram desativados. - Feed options... - Opções do feed... + Edit feed URL... + Editar URL do feed... - + + Edit feed URL + 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9199,142 +9195,168 @@ Esses plugins foram desativados. Tamanho: - + Name i.e: file name Nome - + Size i.e: file size Tamanho - + Seeders i.e: Number of full sources Semeadores - + Leechers i.e: Number of partial sources Leechers - + Filter search results... Filtrar resultados da busca... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultados (mostrando <i>%1</i> de <i>%2</i>): - + Torrent names only Só nomes de torrents - + Everywhere Em toda parte - + Use regular expressions Usar expressões regulares - + Open download window Abrir janela de download - + Download Download - + Open description page Abrir página da descrição - + Copy Copiar - + Name Nome - + Download link Link do download - + Description page URL URL da página de descrição - + Searching... Procurando... - + Search has finished A busca foi concluída - + Search aborted Busca abortada - + An error occurred during search... Um erro ocorreu durante a busca... - + Search returned no results A busca não retornou resultados - + Engine Mecanismo - + Engine URL URL do mecanismo - + Published On Publicado em - + 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 @@ -9342,104 +9364,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') @@ -9465,94 +9487,94 @@ 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. - + <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 @@ -9560,32 +9582,32 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel 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" @@ -9983,77 +10005,67 @@ 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. - - Free space: N/A - Espaço livre: 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 - - Free space: - Espaço livre: - - - + 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 @@ -10592,17 +10604,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. @@ -10969,34 +10981,34 @@ Por favor escolha um nome diferente e tente de novo. TorrentShareLimitsWidget - - - + + + Default Padrão - - + + Unlimited Ilimitado - - + + Set to Definir para - + Seeding time: Tempo para semear: - - + + @@ -11006,32 +11018,32 @@ Por favor escolha um nome diferente e tente de novo. mín - + Inactive seeding time: Tempo de semear inativo: - + Action when the limit is reached: Ação ao atingir o limite: - + Stop torrent Parar torrent - + Remove 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 @@ -11082,78 +11094,78 @@ 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 @@ -11173,39 +11185,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 @@ -11354,73 +11366,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 @@ -11909,319 +11921,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 - + 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. - + 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 - + 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 - + Super seeding mode Modo super semeadura @@ -12276,18 +12288,18 @@ Por favor escolha um nome diferente e tente de novo. As alterações no tema da interface não puderam ser totalmente aplicadas. Os detalhes podem ser vistos no Log. - + Couldn't save UI Theme configuration. Reason: %1 Não foi possível salvar a configuração do tema da interface. Razão: %1 - - + + Couldn't remove icon file. File: %1. Não foi possível remover o arquivo de ícone. Arquivo: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Não foi possível copiar o arquivo de ícone. Fonte: %1. Destino: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: O cabeçalho de origem & e a origem do alvo não combinam! IP de origem: '%1'. Cabeçalho de origem: '%2'. Origem do alvo: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI : O cabeçalho do referenciador & e de origem do alvo não combinam! IP de origem: '%1'. Cabeçalho do referenciador: '%2'. Origem do alvo: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: Cabeçalho do hospedeiro inválido, a porta não combina. IP de origem da requisição: '%1'. Porta do servidor '%2'. Cabeçalho recebido do hospedeiro: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Cabeçalho inválido do hospedeiro. IP de origem da requisição: '%1'. Cabeçalho recebido do hospedeiro: '%2' diff --git a/src/lang/qbittorrent_pt_PT.ts b/src/lang/qbittorrent_pt_PT.ts index c4cce2fc1..14fb6a5ff 100644 --- a/src/lang/qbittorrent_pt_PT.ts +++ b/src/lang/qbittorrent_pt_PT.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Verificar torrents ao terminar - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 + Enviar sugestões de peças do envio - - - - - + + + + + 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 - + -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 + Baseado na taxa de envio - + Upload slots behavior - Comportamento das slots de upload + Comportamento das slots de envio - + Round-robin Round-robin - + Fastest upload - Upload mais rápido + Envio mais rápido - + Anti-leech Anti-sanguessuga - + Upload choking algorithm - Algoritmo choking do upload + Enviar algoritmo de estrangulamento - + 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 @@ -1412,7 +1406,7 @@ Running in portable mode. Auto detected profile folder at: %1 - A correr no modo portátil. Detectada automaticamente pasta de perfil em: %1 + Em execução no modo portátil. Pasta de perfil detectada automaticamente em: %1 @@ -1425,71 +1419,71 @@ 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' + A executar programa externo. Torrent: “%1”. Comando: `%2` @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ Motivo: %2 - + Torrent added Torrent adicionado - + '%1' was added. e.g: xxx.avi was added. '%1' foi adicionado. - + Download completed Transferência concluída @@ -1555,88 +1549,88 @@ Motivo: %2 - + 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,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". - + 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 - + 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 - + 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 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" - + 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" - + %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 - + 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" @@ -2768,50 +2762,50 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Couldn't write to file. Reason: "%1". Torrent is now in "upload only" mode. - Não foi possível guardar no ficheiro. Motivo: "%1". O torrent agora está no modo "somente upload". + Não foi possível guardar no ficheiro. Motivo: "%1". O torrent agora está no modo "apenas envio". - + 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 @@ -2860,27 +2854,27 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para %1 deverá especificar uma porta válida (entre 1 e 65535). - + Usage: Utilização: - + [options] [(<filename> | <url>)...] [opções] [(<filename> | <url>)...] - + Options: Opções: - + Display program version and exit Mostrar a versão do programa e sair - + Display this help message and exit Mostrar esta mensagem de ajuda e sair @@ -2891,130 +2885,130 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para O parâmetro '%1' deverá seguir a sintaxe '%1=%2' - + Confirm the legal notice - - + + port porta - + Change the WebUI port Alterar a porta WebUI - + Change the torrenting port Alterar a porta de torrent - + Disable splash screen Desativar ecrã de arranque - + Run in daemon-mode (background) Executar no modo daemon (em segundo plano) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Guardar ficheiros de configuração em <dir> - - + + name nome - + Store configuration files in directories qBittorrent_<name> Guardar ficheiros de configuração em diretorias qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Retalhar em ficheiros fastresume libtorrent e fazer caminhos de ficheiro relativos para a diretoria do perfil - + files or URLs ficheiros ou URLs - + Download the torrents passed by the user Transferir os torrents enviados pelo utilizador - + Options when adding new torrents: Opções ao adicionar novos torrents: - + path caminho - + Torrent save path Caminho para guardar o torrent - + Add torrents as running or stopped Adicionar torrents como em execução ou parados - + Skip hash check Ignorar a verificação do hash - + Assign torrents to category. If the category doesn't exist, it will be created. Atribuir os torrents a categorias. Se ela não existir será criada. - + Download files in sequential order Transferir os ficheiros por ordem sequencial - + Download first and last pieces first Transferir a primeira e a última parte primeiro - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Especifica se a caixa de diálogo "Adicionar novo torrent" é aberta ao adicionar um 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: Os valores das opções podem ser fornecidos através de variáveis de ambiente. Para a opção denominada 'nome-parâmetro', o nome da variável de ambiente é 'QBT_PARAMETER_NAME' (em maiúsculas, '-' substituído por '_'). Para passar os valores do sinalizador, defina a variável como '1' ou 'VERDADEIRO'. Por exemplo, para desativar o ecrã inicial: - + Command line parameters take precedence over environment variables Os parâmetros da linha de comando têm precedência sobre as variáveis de ambiente - + Help Ajuda @@ -3137,12 +3131,12 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para CustomThemeSource - + Failed to load custom theme style sheet. %1 Falha ao carregar a folha de estilo do tema personalizado. %1 - + Failed to load custom theme colors. %1 Falha ao carregar as cores do tema personalizado. %1 @@ -3150,7 +3144,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para DefaultThemeSource - + Failed to load default theme colors. %1 Falha ao carregar as cores do tema predefinido. %1 @@ -3403,22 +3397,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" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,382 +3940,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 - + Search has failed A pesquisa falhou - + Search has finished 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 - + 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 - - + + 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 @@ -5849,47 +5809,47 @@ Requerimento mínimo: %2. 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 @@ -6035,175 +5995,175 @@ Requerimento mínimo: %2. 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! + + + 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 @@ -6212,190 +6172,180 @@ 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 - + 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 - + 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 - - 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: - + 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. @@ -6404,37 +6354,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) - + 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. @@ -6447,37 +6397,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 @@ -6590,99 +6540,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: @@ -6692,22 +6642,22 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco &apos Mostrar o &qBittorrent na área de notificação - + 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 @@ -6802,65 +6752,65 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco &apos anos - + Log performance warnings Registar avisos de desempenho - + 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' @@ -6880,50 +6830,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". @@ -6952,506 +6902,511 @@ 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 - + 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: + Número máximo de slots de envio por torrent: - + Global maximum number of upload slots: - Número máximo de slots de upload por torrent: + Número máximo global de slots de envio: - + 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 + + + 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: + Envio: - - + + 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: + Máximo de envios 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: + Limite da taxa de envio: - + 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 - + 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; @@ -7461,12 +7416,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): @@ -7486,183 +7441,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 + Um torrent será considerado lento se as taxas de transferência e envio ficarem abaixo destes valores pelos segundos do "Temporizador de inatividade do torrent" - + 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> @@ -7672,69 +7627,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. @@ -7745,18 +7700,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 @@ -7847,163 +7802,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 @@ -8281,6 +8236,39 @@ Esses plugins foram desativados. Ligação da web + + 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 + + + PreviewSelectDialog @@ -8362,6 +8350,15 @@ Esses plugins foram desativados. Não tem permissão de gravação para o caminho + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8431,7 +8428,7 @@ Esses plugins foram desativados. Uploaded: - Enviados: + Enviado: @@ -8446,7 +8443,7 @@ Esses plugins foram desativados. Upload Speed: - Vel. upload: + Vel. de envio: @@ -8461,7 +8458,7 @@ Esses plugins foram desativados. Upload Limit: - Limite de upload: + Limite do envio: @@ -8570,124 +8567,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 - + No 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. - + 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 - + Web seed editing Edição de sementes web - + Web seed URL: URL de sementes da web: @@ -8695,33 +8692,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 @@ -8729,22 +8726,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. @@ -8793,12 +8790,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" @@ -8820,117 +8817,76 @@ Esses plugins foram desativados. - + Item doesn't exist: %1. O item não existe: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Não foi possível mover a pasta para dentro da mesma. - + 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: - Intervalo de atualização: - - - - sec - seg - - - - Default - Padrão - - RSSWidget @@ -9030,61 +8986,101 @@ 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 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9198,142 +9194,168 @@ Esses plugins foram desativados. Tamanho: - + Name i.e: file name Nome - + Size i.e: file size Tamanho - + Seeders i.e: Number of full sources Semeadores - + Leechers i.e: Number of partial sources Sanguessugas - + Filter search results... Filtrar resultados da pesquisa... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultados (a mostrar <i>%1</i> de <i>%2</i>): - + Torrent names only Apenas nomes de torrents - + Everywhere Em tudo - + Use regular expressions Utilizar expressões regulares - + Open download window Abrir a janela de download - + Download Download - + Open description page Abrir página de descrição - + Copy Copiar - + Name Nome - + Download link Link para download - + Description page URL URL da página de descrição - + Searching... A pesquisar... - + Search has finished A pesquisa terminou - + Search aborted Pesquisa abortada - + An error occurred during search... Ocorreu um erro durante a procura... - + Search returned no results A pesquisa não devolveu resultados - + Engine - + Engine URL - + Published On Publicado em - + 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 @@ -9341,104 +9363,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') @@ -9464,94 +9486,94 @@ 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. - + <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 @@ -9559,32 +9581,32 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali 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" @@ -9701,7 +9723,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Upload: - Upload: + Envio: @@ -9736,7 +9758,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Total Upload - Total de uploads + Total do envio @@ -9746,7 +9768,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Payload Upload - Carga de uploads + Carga do envio @@ -9756,7 +9778,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Overhead Upload - Overhead de uploads + Sobrecarga do envio @@ -9766,7 +9788,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali DHT Upload - DHT de upload + Envio DHT @@ -9776,7 +9798,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Tracker Upload - Upload de tracker + Envio do rastreador @@ -9819,7 +9841,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Total Upload - Total de uploads + Total do envio @@ -9844,7 +9866,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Payload Upload - Envio payload + Carga do envio @@ -9854,7 +9876,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Overhead Upload - Overhead de uploads + Sobrecarga do envio @@ -9864,7 +9886,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali DHT Upload - DHT de upload + Envio DHT @@ -9874,7 +9896,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Tracker Upload - Upload de tracker + Envio do rastreador @@ -9940,7 +9962,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali All-time upload: - Uploads globais: + Envios totais: @@ -9982,77 +10004,67 @@ 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 @@ -10108,7 +10120,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Stalled Uploading (0) - Upload parado (0) + Envio parado (0) @@ -10198,7 +10210,7 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Stalled Uploading (%1) - Upload parado (%1) + Envio parado (%1) @@ -10591,17 +10603,17 @@ Por favor, escolha um nome diferente e tente novamente. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10968,34 +10980,34 @@ Por favor, escolha um nome diferente e tente novamente. TorrentShareLimitsWidget - - - + + + Default Padrão - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -11005,32 +11017,32 @@ Por favor, escolha um nome diferente e tente novamente. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent Parar torrent - + Remove torrent Remover torrent - + Remove torrent and its content - + Enable super seeding for torrent Ativar o super semear para o torrent @@ -11081,78 +11093,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 @@ -11172,39 +11184,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 @@ -11353,73 +11365,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 @@ -11784,7 +11796,7 @@ Por favor, escolha um nome diferente e tente novamente. Session Upload Amount of data uploaded since program open (e.g. in MB) - Dados enviados + Enviado na sessão @@ -11908,319 +11920,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 - + 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. - + 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 - + 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 - + Super seeding mode Modo super semeador @@ -12275,18 +12287,18 @@ Por favor, escolha um nome diferente e tente novamente. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12352,32 +12364,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 @@ -12469,72 +12481,72 @@ 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. - + 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" 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Interface web: O 'Cabeçalho de origem' e o 'Alvo de origem' são incompatíveis! IP da fonte: '%1'. Cabeçalho de origem: '%2'. Alvo de origem: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Interface web: O 'Cabeçalho referenciador' e o 'Alvo de origem' são incompatíveis! IP da fonte: '%1'. Cabeçalho referenciador: '%2'. Alvo de origem: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Interface web: Porta incompatível no 'Cabeçalho referenciador. IP da fonte pedido: '%1'. Porta do servidor: '%2'. Cabeçalho do host recebido: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Interface web: Cabeçalho do Host inválido. IP da fonte pedido: '%1'. Recebido o cabeçalho do Host: '%2' diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index dd368b889..f88c0f995 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiO - + Recheck torrents on completion Reverifică torentele la finalizare - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - + Folosește afinitatea pentru extinderea părților - + 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. - + Interval de salvare a datelor de reluare [0: dezactivat] - + 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] + 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 - + Prioritatea procesului în memorie - + Bdecode depth limit - + Limita adâncimii Bdecode - + Bdecode token limit - + Limita token-urilor Bdecode - + Default Implicit - + Memory mapped files Fișiere mapate în memorie - + POSIX-compliant Compatibil cu standardul POSIX - + Simple pread/pwrite - + Pread/Pwrite simplu - + 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 - + Scriere completă - + Disk IO write mode Modul de scriere IO al discului - + Send buffer watermark Filigranul tamponului de trimitere - + Send buffer low watermark - + Marcaj minim al buffer-ului de trimitere - + Send buffer watermark factor Factorul filigranului tamponului de trimitere - + Outgoing connections per second Conexiuni de ieșire pe secundă - - + + 0 (system default) - + 0 (implicit sistemului) - + Socket send buffer size [0: system default] - + Mărimea buffer-ului de trimitere al socket-ului [0: implicit sistem] - + Socket receive buffer size [0: system default] - + Mărimea buffer-ului de primire al socket-ului [0: implicit sistem] - + Socket backlog size Dimensiunea cozii pentru socluri - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Interval de salvare a statisticilor [0: dezactivat] - + .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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ 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ă @@ -1555,88 +1549,88 @@ Motivul: %2 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ă @@ -1773,263 +1767,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. @@ -2225,503 +2219,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". - + 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ă - + 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ă - + 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 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” - + 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” @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d %1 trebuie să specifice un port valid (de la 1 la 65535). - + Usage: Utilizare: - + [options] [(<filename> | <url>)...] - + Options: Opțiuni: - + Display program version and exit Afișează versiunea programului și iese - + Display this help message and exit Afișează acest mesaj de ajutor și iese @@ -2891,130 +2885,130 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d - + Confirm the legal notice - - + + port port - + Change the WebUI port - + Change the torrenting port Schimbați portul de torrenting - + Disable splash screen Dezactivează ecranul de întâmpinare - + Run in daemon-mode (background) Rulează în mod daemon (fundal) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Stochează fișierele de configurare în <dir> - - + + name nume - + Store configuration files in directories qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory - + files or URLs fișiere sau adrese URL - + Download the torrents passed by the user - + Options when adding new torrents: Opțiuni când se adaugă torente: - + path cale - + Torrent save path Cale salvare torente - + Add torrents as running or stopped - + Skip hash check Omite verificarea indexului - + Assign torrents to category. If the category doesn't exist, it will be created. - + Download files in sequential order Descarcă fișierele în ordine secvențială - + Download first and last pieces first Descarcă întâi primele și ultimele bucăți - + 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 Parametrii pentru linia de comandă au precedență în fața variabilelor de mediu - + Help Ajutor @@ -3137,12 +3131,12 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d CustomThemeSource - + Failed to load custom theme style sheet. %1 - + Failed to load custom theme colors. %1 @@ -3150,7 +3144,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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” - + 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ă? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,382 +3940,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 - + Search has failed 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 Î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 - - + + 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 @@ -5849,47 +5809,47 @@ Cerința minimă: %2. 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 @@ -6035,175 +5995,175 @@ Cerința minimă: %2. 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 @@ -6212,190 +6172,180 @@ 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 - + 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 - + 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: - + 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. @@ -6404,37 +6354,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 - + 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. @@ -6443,37 +6393,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 @@ -6586,99 +6536,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: @@ -6688,22 +6638,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Arată qBittorrent în zona de notificare - + 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 @@ -6798,64 +6748,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.ani - + Log performance warnings Înregistrează avertizările de performanță - + 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 @@ -6875,50 +6825,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". @@ -6935,506 +6885,511 @@ 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 - + 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 + + + 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ă - + 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; @@ -7445,12 +7400,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): @@ -7470,183 +7425,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 @@ -7656,69 +7611,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. @@ -7729,18 +7684,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 @@ -7831,163 +7786,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 @@ -8265,6 +8220,39 @@ Totuși, acele module au fost dezactivate. Legătură Web + + 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 + + + PreviewSelectDialog @@ -8346,6 +8334,15 @@ Totuși, acele module au fost dezactivate. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8554,124 +8551,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 - + No 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. - + 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 - + Web seed editing Editare sursă Web - + Web seed URL: URL sursă Web: @@ -8679,33 +8676,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 @@ -8713,22 +8710,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. @@ -8777,12 +8774,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" @@ -8804,117 +8801,76 @@ Totuși, acele module au fost dezactivate. - + Item doesn't exist: %1. Elementul nu există: %1. - Can't move a folder into itself or its subfolders. + Couldn't move folder into itself. - + 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: - Interval de împrospătare: - - - - sec - sec - - - - Default - Implicit - - RSSWidget @@ -9014,61 +8970,101 @@ Totuși, acele module au fost dezactivate. - Feed options... + Edit feed URL... - + + 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9182,142 +9178,168 @@ Totuși, acele module au fost dezactivate. Dimensiune: - + Name i.e: file name Nume - + Size i.e: file size Dimensiune - + Seeders i.e: Number of full sources Surse - + Leechers i.e: Number of partial sources Lipitori - + Filter search results... Filtrare rezultate căutare... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Rezultate (se arată <i>%1</i> din <i>%2</i>): - + Torrent names only Numai numele torentelor - + Everywhere Oriunde - + Use regular expressions Folosește expresii regulate - + Open download window Deschide fereastra de descărcare - + Download Descarcă - + Open description page Deschide pagina descrierii - + Copy Copiază - + Name Denumire - + Download link Legătură de descărcare - + Description page URL URL-ul paginii de descriere - + Searching... Se caută… - + Search has finished Căutarea s-a încheiat - + Search aborted Căutarea a fost abandonată - + An error occurred during search... A apărut o eroare în timpul căutării... - + Search returned no results Căutarea nu a întors niciun rezultat - + Engine - + Engine URL - + Published On - + Column visibility Vizibilitate coloane - + Resize columns Redimensionează coloanele - + Resize all non-hidden columns to the size of their contents Redimensionează toate coloanele neascunse la dimensiunea conținutului acestora @@ -9325,104 +9347,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') @@ -9448,94 +9470,94 @@ 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 . - + <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 @@ -9543,32 +9565,32 @@ Dați clic pe butonul „Module de căutare...” din colțul din dreapta-jos al 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" @@ -9966,77 +9988,67 @@ 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 @@ -10575,17 +10587,17 @@ Alegeți o denumire diferită și încercați iar. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10952,34 +10964,34 @@ Alegeți o denumire diferită și încercați iar. TorrentShareLimitsWidget - - - + + + Default Implicit - - + + Unlimited Nelimitat - - + + Set to - + Seeding time: - - + + @@ -10989,32 +11001,32 @@ Alegeți o denumire diferită și încercați iar. min - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Elimină torentul - + Remove torrent and its content - + Enable super seeding for torrent Activați super contribuirea pentru torent @@ -11065,78 +11077,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 @@ -11156,39 +11168,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ă @@ -11337,73 +11349,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ă @@ -11892,319 +11904,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 - + 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. - + 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 - + 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 - + Super seeding mode Mod super-contribuire @@ -12259,18 +12271,18 @@ Alegeți o denumire diferită și încercați iar. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12336,32 +12348,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 @@ -12453,72 +12465,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index 9ad0e0d43..04e4a76ed 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -231,25 +231,25 @@ Условие остановки: - - + + None Нет - - + + Metadata received Метаданные получены - + Torrents that have metadata initially will be added as stopped. Торренты, изначально содержащие метаданные, будут добавлены в остановленном состоянии. + - Files checked Файлы проверены @@ -364,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 Поиск метаданных завершён @@ -477,35 +477,35 @@ 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 - Обнаружена попытка добавления повторяющегося торрента. Источник: %1. Существующий торрент: «%2». Инфо-хеш торрента: %3. Результат: %4 - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB МБ - + Recheck torrents on completion Перепроверять торренты по завершении - - + + ms milliseconds мс @@ -699,686 +699,680 @@ Значение - + (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. + Добавляет текст к заголовку окна с целью различения экземпляров 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 для сообщения трекерам (требует перезапуск) + Сообщаемый трекерам IP-адрес (нужен перезапуск) - + Port reported to trackers (requires restart) [0: listening port] - Порт для сообщения трекерам (требует перезапуск) [0: порт прослушивания] + Сообщаемый трекерам порт (нужен перезапуск) [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) - Затрагивает проверку сертификатов и деятельность, не связанную с протоколом торрент (например, RSS-ленты, обновления программы, торрент-файлы, БД GeoIP и т. д.). + Затрагивает проверку сертификатов и деятельность, не связанную с протоколом торрент (например, 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 Порт встроенного трекера @@ -1425,64 +1419,64 @@ Используется каталог настроек: %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. Веб-интерфейс отключён! Для включения веб-интерфейса измените файл настроек вручную. @@ -1497,34 +1491,34 @@ Не удалось запустить внешнюю программу. Торрент: «%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'. @@ -1533,18 +1527,18 @@ Причина: %2 - + Torrent added Торрент добавлен - + '%1' was added. e.g: xxx.avi was added. «%1» добавлен. - + Download completed Загрузка завершена @@ -1555,88 +1549,88 @@ 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 теперь готов к выходу @@ -1773,263 +1767,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. исключит все статьи. @@ -2225,503 +2219,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" ИД пира: «%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». - + 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 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 - Обнаружена попытка добавления повторяющегося торрента. Существующий торрент: «%1». Инфо-хеш торрента: %2. Результат: %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» - + 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" Соединение с адресом сида не удалось. Торрент: «%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». Причина: «неверный формат данных» - + %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" Получено сообщение об ошибке от адреса сида. Торрент: «%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» @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 должен содержать допустимый порт (с 1 до 65535). - + Usage: Использование: - + [options] [(<filename> | <url>)...] [параметры] [(<filename> | <url>)…] - + Options: Параметры: - + Display program version and exit Отображать версию программы и выход - + Display this help message and exit Показать эту справку и выйти @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Параметр «%1» должен соответствовать синтаксису «%1=%2» - + 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> Хранить файлы настроек в папках qBittorrent_<имя> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Взломать файлы быстрого возобновления libtorrent и сделать пути файлов относительными к каталогу профиля - + files or URLs файлы или ссылки - + Download the torrents passed by the user Загрузить торренты, указанные пользователем - + Options when adding new torrents: Параметры добавления новых торрентов: - + path путь - + Torrent save path Путь сохранения торрентов - + Add torrents as running or stopped Добавлять торренты запущенными или остановленными - + Skip hash check Пропустить проверку хеша - + 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: - Значения параметров могут передаваться через переменные среды. Для параметра с названием «parameter-name» переменная среды — «QBT_PARAMETER_NAME» (в верхнем регистре, «-» заменяется на «_»). Для передачи значения флага укажите переменную равной «1» или «TRUE». Например, чтобы отключить заставку: + Значения параметров могут передаваться через переменные среды. Для параметра с названием «parameter-name» переменная среды — «QBT_PARAMETER_NAME» (в верхнем регистре, «-» заменяется на «_»). Для передачи значения флага укажите переменную равной «1» или «TRUE». Например, чтобы отключить заставку: - + Command line parameters take precedence over environment variables Параметры командной превалируют над переменными среды - + Help Справка @@ -3137,12 +3131,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 Не удалось загрузить таблицу стилей пользовательской темы. %1 - + Failed to load custom theme colors. %1 Не удалось загрузить цвета пользовательской темы. %1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Не удалось загрузить цвета стандартной темы. %1 @@ -3356,7 +3350,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also IP filter exception thrown for line %1. Exception is: %2 - Строка IP-фильтра %1 выдала исключение: %2 + Выдано исключение IP-фильтра для строки %1. Исключение: %2 @@ -3403,22 +3397,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? Торрент «%1» уже есть в списке. Хотите объединить трекеры из нового источника? @@ -3536,40 +3530,6 @@ 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. - Ошибка управления питанием. Не был найден подходящий интерфейс D-Bus. - - - - - - Power management error. Action: %1. Error: %2 - Ошибка управления питанием. Действие: %1. Ошибка: %2 - - - - Power management unexpected error. State: %1. Error: %2 - Непредвиденная ошибка управления питанием. Состояние: %1. Ошибка: %2 - - - - InhibitorMacOS - - - PMMacOS - qBittorrent is active - PMMacOS - - LegalNotice @@ -3750,7 +3710,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also S&peed in Title Bar - С&корость в заголовке + Скорость в &заголовке @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Показать - + Check for program updates Проверять наличие обновлений программы @@ -3980,383 +3940,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. 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 Ошибка при загрузке - - + + Invalid password Недопустимый пароль - + Filter torrents... Фильтр торрентов… - + Filter by: Фильтровать: - + The password must be at least 3 characters long - Пароль должен быть не менее 3 символов. + Пароль должен быть не менее 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 Торрент-файлы @@ -5850,47 +5810,47 @@ Minimum requirement: %2. 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 @@ -6036,175 +5996,175 @@ 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 Помещать невыбранные файлы в папку «.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 (экспериментально) - + 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 @@ -6213,190 +6173,180 @@ 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 Включить получение RSS-лент - + 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-адреса к новым загрузкам: - + 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. @@ -6405,37 +6355,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 Отключено - + 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. @@ -6448,37 +6398,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 О&бновлять динамическое доменное имя @@ -6591,99 +6541,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: Копировать торрент-файлы в: @@ -6693,22 +6643,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Показывать &qBittorrent в области уведомлений - + 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 Предвыделять место на диске для всех файлов @@ -6751,7 +6701,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. The systray icon will still be visible when closing the main window - В области уведомлений будет отображаться значок после закрытия главного окна + В области уведомлений будет отображаться значок после закрытия главного окна @@ -6803,65 +6753,65 @@ 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 Предлагать загрузку по любым файлам .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 Разрешить относительный путь сохранения для соответствующего пути категории вместо пути по умолчанию @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 Запуск внешней программы - + 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…) - + 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 Сменить текущий пароль - + 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>» в окне «Добавить торрент» @@ -7462,12 +7417,12 @@ readme[0-9].txt: фильтровать «readme1.txt», «readme2.txt», но Выбор файла оболочки qBittorrent - + Choose Alternative UI files location Использовать расположение файлов альтернативного интерфейса - + Supported parameters (case sensitive): Поддерживаемые параметры (с учётом регистра): @@ -7487,183 +7442,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> @@ -7673,69 +7628,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 правил. @@ -7746,18 +7701,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 Ошибка размера @@ -7848,163 +7803,163 @@ readme[0-9].txt: фильтровать «readme1.txt», «readme2.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 Копировать IP:порт @@ -8283,6 +8238,39 @@ 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 @@ -8364,6 +8352,15 @@ Those plugins were disabled. Отсутствуют права для записи в путь + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8572,124 +8569,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: Адрес веб-сида: @@ -8697,33 +8694,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 @@ -8731,22 +8728,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» успешно загружена. Запущен её разбор. @@ -8795,12 +8792,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» @@ -8822,117 +8819,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Элемент не существует: %1. - Can't move a folder into itself or its subfolders. - Нельзя переместить папку в саму себя или в её вложенные папки. + Couldn't move folder into itself. + Не удалось переместить папку в саму себя. - + 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». Ошибка: «неверный формат данных». + Не удалось загрузить данные сеанса 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 - Недействительное значение «refreshInterval» - - - - Feed doesn't exist: %1. - Лента не существует: %1. - - - - RSSFeedDialog - - - RSS Feed Options - Параметры RSS-ленты - - - - URL: - Адрес: - - - - Refresh interval: - Период обновления: - - - - sec - с - - - - Default - Стандартно - - RSSWidget @@ -9032,61 +8988,101 @@ 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-ленты + + + + + Feed URL: + Адрес ленты: + + + Deletion confirmation Подтверждение удаления - + Are you sure you want to delete the selected RSS feeds? Уверены, что хотите удалить выбранные RSS-ленты? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed Пожалуйста, укажите новое имя для этой RSS-ленты - + New feed name: Новое имя ленты: - + Rename failed Переименование не удалось - + Date: Дата: - + Feed: Лента: - + Author: Автор: @@ -9200,142 +9196,168 @@ Those plugins were disabled. Размер: - + Name i.e: file name Имя - + Size i.e: file size Размер - + Seeders i.e: Number of full sources Сиды - + Leechers i.e: Number of partial sources Личи - + Filter search results... Фильтр результатов поиска… - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Результаты (показано <i>%1</i> из <i>%2</i>): - + Torrent names only В именах торрентов - + Everywhere Везде - + Use regular expressions Использовать регулярные выражения - + Open download window Открыть окно загрузки - + Download Загрузить - + Open description page Открыть страницу описания - + Copy Копировать - + 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 Подогнать все нескрытые столбцы к размеру их содержимого @@ -9343,104 +9365,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») @@ -9466,94 +9488,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 <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 Стоп @@ -9561,32 +9583,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" Не удалось загрузить сохранённое состояние интерфейса поиска. Файл: «%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» @@ -9984,77 +10006,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. Нет прямых соединений. Причиной этому могут быть проблемы в настройках сети. - - 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 В сети - - 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 Щелчок для переключения на общие ограничения скорости @@ -10593,17 +10605,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Слишком много активных задач - + Torrent creation is still unfinished. Создание торрента ещё не завершено. - + Torrent creation failed. Не удалось создать торрент. @@ -10809,7 +10821,7 @@ Please choose a different name and try again. Failed to load Watched Folders configuration from %1. Error: "Invalid data format." - Не удалось загрузить настройки наблюдаемых папок из %1. Ошибка: «неверный формат данных». + Не удалось загрузить настройки наблюдаемых папок из %1. Ошибка: «неверный формат данных.» @@ -10890,7 +10902,7 @@ Please choose a different name and try again. Torrent Share Limits - Ограничения обмена торрентами + Лимиты обмена торрентами @@ -10906,7 +10918,7 @@ Please choose a different name and try again. Torrent Speed Limits - Ограничения скорости торрентов + Лимиты скорости торрентов @@ -10970,34 +10982,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Стандартно - - + + Unlimited Без ограничений - - + + Set to Установить на - + Seeding time: Время раздачи: - - + + @@ -11007,32 +11019,32 @@ Please choose a different name and try again. мин - + Inactive seeding time: Время бездействия раздачи: - + Action when the limit is reached: Действие по достижении ограничения: - + Stop torrent Остановить торрент - + Remove torrent Удалить торрент - + Remove torrent and its content Удалить торрент и его содержимое - + Enable super seeding for torrent Включить режим суперсида для торрента @@ -11083,78 +11095,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 Невозможно создать путь сохранения @@ -11174,39 +11186,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 Неправильное имя категории @@ -11355,73 +11367,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 Отображение столбцов @@ -11910,319 +11922,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 Выбранный торрент «%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. Уверены, что хотите включить автоматическое управление для выбранных торрентов? Они могут переместиться. - + 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» недопустимо - + 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 Автоматический режим подбирает настройки торрента (напр., путь сохранения) на основе его категории - + Super seeding mode Режим суперсида @@ -12277,18 +12289,18 @@ Please choose a different name and try again. Не удалось полностью применить изменения темы оболочки. Подробности можно найти в журнале. - + Couldn't save UI Theme configuration. Reason: %1 Не удалось сохранить настройки темы оболочки. Причина: %1 - - + + Couldn't remove icon file. File: %1. Не удалось убрать файл значка. Файл: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Не удалось скопировать файл значка. Источник: %1. Назначение: %2. @@ -12354,32 +12366,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 @@ -12471,72 +12483,72 @@ 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. Ошибка веб-сервера. Неизвестная ошибка. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Веб-интерфейс: Оригинальный и целевой заголовки не совпадают! IP источника: «%1». Заголовок источника: «%2». Целевой источник: «%3» - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Веб-интерфейс: Ссылочный и целевой заголовки не совпадают! IP источника: «%1». Заголовок источника: «%2». Целевой источник: «%3» - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Веб-интерфейс: Неверный заголовок хоста, несовпадение порта! Запрос IP источника: «%1». Порт сервера: «%2». Полученный заголовок хоста: «%3» - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Веб-интерфейс: Неверный заголовок хоста. Запрос IP источника: «%1». Полученный заголовок хоста: «%2» diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index bf8746386..a30bab1a1 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -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 - Bezplatná databáza IP to Country Lite od DB-IP sa používa na riešenie krajín peerov. Databáza je licencovaná podľa medzinárodnej licencie Creative Commons Attribution 4.0 + Bezplatná databáza IP to Country Lite od DB-IP sa používa na zisťovanie krajín peerov. Databáza je licencovaná podľa medzinárodnej licencie Creative Commons Attribution 4.0 @@ -203,7 +203,7 @@ Torrent options - + Nastavenia torrentu @@ -231,26 +231,25 @@ 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é. + Torrenty s metadátami budú pridané ako zastavené. + - Files checked Súbory skontrolované @@ -365,112 +364,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é @@ -478,35 +477,35 @@ 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. Existujú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 @@ -669,21 +668,21 @@ 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 @@ -700,686 +699,680 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené.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) + Typ úložiska dát obnovenia (vyžaduje reštart) - + Normal - Normálne + Normálna - + Below normal Pod normálom - + Medium Stredná - + Low Malá - + Very low - Veľmi malé + 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 + Max. počet nespracovaných požiadaviek na jedeného peera - - - - - + + + + + KiB KiB - + (infinite) (nekonečno) - + (system default) (predvolený systémom) - + Delete files permanently - + Odstrániť súbory natrvalo + + + + Move files to trash (if possible) + Presunúť súbory do koša (ak je to možné) - Move files to trash (if possible) - - - - Torrent content removing mode - + Režim odoberania obsahu torrentu - + 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 - + Jednoduché 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. - + Interval ukladania štatistík [0: vypnuté] - + .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 + Typ služby (ToS) pre pripojenie k peerom - + 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 - + Pripojí text k nadpisom okien pre lepšie rozpoznanie inštancií qBittorrentu - + Customize application instance name - + Upraviť názov inštancie aplikácie - + 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] - + Port nahlásený trackerom (vyžaduje reštart) [0: načúvací 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 Pripnúť dialógové okno "Pridať nový torrent" k hlavnému oknu - + 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) - + Má vplyv na overenie certifikátu a aktivity iných protokolov než bittorrent (napr. RSS kanály, aktualizácie aplikácie, torrent súbory, GeoIP databáza, atď.) - + Ignore SSL errors - + Ignorovať SSL chyby - + (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 - + Spustiť BitTorrent reláciu v pozastavenom stave - + sec seconds sec - + -1 (unlimited) - + -1 (neobmedzené) - + BitTorrent session shutdown timeout [-1: unlimited] - + Časový limit vypnutia BitTorrent relácie [-1: neobmedzený] - + 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 + Percento odpojených peerov pri peer turnover intervale - + 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 @@ -1390,22 +1383,22 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. Invalid directory path - + Neplatná cesta adresára Directory does not exist - + Adresár neexistuje Invalid mode, allowed values: %1 - + Neplatný režim, povolené hodnoty: %1 cookies must be array - + cookies musí byť pole @@ -1418,7 +1411,7 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. 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. + Detegovaný nadbytočný parameter príkazového riadku: "%1". Portable režim už zahŕňa relatívny fastresume. @@ -1426,64 +1419,64 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené.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. @@ -1498,34 +1491,34 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené.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'. @@ -1534,18 +1527,18 @@ 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é @@ -1556,88 +1549,88 @@ Dôvod: %2 qBittorrent %1 sa sputil. ID procesu: %2 - + This is a test email. - + Toto je testovací email. - + Test email - + Testovací 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 @@ -1774,263 +1767,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 @@ -2074,7 +2067,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Cannot create torrent resume folder: "%1" - Nie je možné vytvoriť zložku pre obnovenie torrentu: "% 1" + Nie je možné vytvoriť zložku pre obnovenie torrentu: "%1" @@ -2095,17 +2088,17 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Mismatching info-hash detected in resume data - + Nezhoda info-hash detekovaná v dátach obnovenia Corrupted resume data: %1 - + Poškodené dáta obnovenia: %1 save_path is invalid - + save_path je neplatné @@ -2187,12 +2180,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Corrupted resume data: %1 - + Poškodené dáta obnovenia: %1 save_path is invalid - + save_path je neplatné @@ -2226,503 +2219,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 + 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". - + Super seeding enabled. Režim super seedovania je zapnutý. - + Torrent reached the seeding time limit. - Torrent dosiahol limit času zdieľania. + Torrent dosiahol časový limit seedovania. - + Torrent reached the inactive seeding time limit. - Torrent dosiahol časový limit neaktívneho seedovania + 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. - + Ukladanie dát obnovenia dokončené. - + BitTorrent session successfully finished. - + BitTorrent relácia úspešne ukončená. - + Session shutdown timed out. - + Vypršal čas pre ukončenie relácie. - + Removing torrent. - + Odstraňovanie torrentu. - + Removing torrent and deleting its content. - + Odstraňovanie torrentu a jeho obsahu. - + Torrent stopped. - + Torrent zastavený. - + Torrent content removed. Torrent: "%1" - + Obsah torrentu odstránený. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Nepodarilo sa odobrať obsah torrentu. Torrent: "%1". Chyba: "%2" - + Torrent removed. Torrent: "%1" - + Torrent odstránený. Torrent: "%1" - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 + Zaznamenaný pokus o pridanie duplicitného torrentu. Existujúci torrent: %1. Výsledok: %2 + + + 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 - + 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 - + Zoznam trackerov aktualizovaný - + Failed to update tracker list. Reason: "%1" - + Nepodarilo sa aktualizovať zoznam trackerov. Dôvod: "%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". - + Nepodarilo sa odobrať súbor partfile. Torrent: "%1". Dôvod: "%2" - + 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" - + Torrent zastavený. 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" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + Torrentu chýbajú parametre SSL. Torrent: "%1". Správa: "%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" - + %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é - + 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" @@ -2732,7 +2725,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Failed to start seeding. - + Nepodarilo sa začať seedovanie. @@ -2754,7 +2747,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Failed to add peer "%1" to torrent "%2". Reason: %3 - Nepodarilo sa pridať peer "%1" k torrentu "%2". Dôvod: %3 + Nepodarilo sa pridať peera "%1" k torrentu "%2". Dôvod: %3 @@ -2772,47 +2765,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 - + Nepodarilo sa opätovne načítať torrent. Torrent: %1. Dôvod: %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 @@ -2861,27 +2854,27 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty %1 musí určovať správny port (1 to 65535). - + Usage: Použitie: - + [options] [(<filename> | <url>)...] [voľby] [(<filename> | <url>)...] - + Options: Voľby: - + Display program version and exit Zobraz verziu programu a skonči - + Display this help message and exit Zobraz túto nápovedu a skonči @@ -2892,130 +2885,130 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Parameter '%1' musia dodržiavať syntax '%1 =%2' - + Confirm the legal notice - + Potvrďte právne upozornenie - - + + port port - + Change the WebUI port Zmeniť WebUI port. - + Change the torrenting port Zmeniť torrentový port - + Disable splash screen vypni štartovaciu obrazovku - + Run in daemon-mode (background) spusti v režime démona (na pozadí) - + dir Use appropriate short form or abbreviation of "directory" adr - + Store configuration files in <dir> Uložiť súbory konfigurácie do <dir> - - + + name meno - + Store configuration files in directories qBittorrent_<name> Uložiť súbory konfigurácie v adresároch qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Vniknúť do súborov libtorrent fastresume a vztiahnuť cesty k súborom podľa adresára profilu - + files or URLs súbory alebo URL adresy - + Download the torrents passed by the user Stiahni torrenty zadané užívateľom - + Options when adding new torrents: Voľby pri pridávaní torrentu - + path cesta - + Torrent save path Cesta uloženia torrentu - + Add torrents as running or stopped - + Pridať torrenty ako spustené alebo zastavené - + Skip hash check Preskočiť kontrolu hash - + Assign torrents to category. If the category doesn't exist, it will be created. Priraďte torrenty do kategórie. Ak kategória neexistuje, vytvorí sa. - + Download files in sequential order Sťahovať súbory v poradí - + Download first and last pieces first Sťahovať najprv prvú a poslednú časť - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Určiť, či sa otvorí dialóg "Pridať nový torrent" keď je torrent pridávaný. - + 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: Možné hodnoty sa môžu dodávať prostredníctvom premenných prostredia. Pri možnosti s názvom "parameter-name" je názov premennej prostredia "QBT_PARAMETER_NAME" (vo veľkom prípade "-" nahradený znakom "_"). Ak chcete prejsť hodnoty vlajok, nastavte premennú na hodnotu "1" alebo "TRUE". Ak napríklad chcete zakázať úvodnú obrazovku: - + Command line parameters take precedence over environment variables Parametre príkazového riadka majú prednosť pred parametrami premenných prostredia - + Help Nápoveda @@ -3068,12 +3061,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Start torrents - + Spustiť torrenty Stop torrents - + Zastaviť torrenty @@ -3096,7 +3089,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty System - + Systém @@ -3132,18 +3125,18 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Expiration Date - Dátum expirácie + Dátum exspirácie CustomThemeSource - + Failed to load custom theme style sheet. %1 Nepodarilo sa načítať vlastný štýl motívu: %1 - + Failed to load custom theme colors. %1 Nepodarilo sa načítať farby vlastného motívu: %1 @@ -3151,7 +3144,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty DefaultThemeSource - + Failed to load default theme colors. %1 Nepodarilo sa načítať farby východzieho motívu. %1 @@ -3171,7 +3164,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Also remove the content files - + Tiež vymazať aj súbory s obsahom @@ -3383,43 +3376,43 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Pattern Format - + Formát vzoru Plain text - + Jednoduchý text Wildcards - + Zástupné znaky Regular expression - + Regulárne výrazy GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent sa sťahuje... Zdroj: "%1" - + Torrent is already present Torrent už je pridaný - + Trackers cannot be merged because it is a private torrent. - + Trackery nemôžu byť spojené, pretože torrent je súkromný. - + 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? @@ -3537,40 +3530,6 @@ 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 @@ -3591,12 +3550,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty If you have read the legal notice, you can use command line option `--confirm-legal-notice` to suppress this message. - + Ak ste si už prečítali právne upozornenie, môžete ho skryť použitím prepínača `--confirm-legal-notice` v príkazovom riadku. Press 'Enter' key to continue... - + Stlačte 'Enter' pre pokračovanie... @@ -3657,22 +3616,22 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty You cannot use %1: qBittorrent is already running. - + Nemôžete použiť %1: qBittorrent je už spustený. Another qBittorrent instance is already running. - + Iná inštancia qBittorrent už je spustená. Found unexpected qBittorrent instance. Exiting this instance. Current process ID: %1. - + Nájdená neočakávaná relácia qBittorentu. Súčasná relácia bude ukončená. Aktuálne ID procesu: %1. Error when daemonizing. Reason: "%1". Error code: %2. - + Chyba pri prechode do režimu na pozadí (ako daemon). Dôvod: "%1". Chybový kód: %2. @@ -3680,12 +3639,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty &Edit - &Úpravy + Úp&ravy &Tools - Nás&troje + &Nástroje @@ -3710,17 +3669,17 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty &Options... - Mo&žnosti... + &Možnosti... &Remove - Odst&rániť + Odst&rániť... Torrent &Creator - &Vytvoriť torrent + &Vytvoriť torrent... @@ -3731,7 +3690,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty &Top Toolbar - Panel nás&trojov + Panel &nástrojov @@ -3741,12 +3700,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Status &Bar - Stavový &riadok + Stavový ria&dok Filters Sidebar - Bočný panel s filtrami + Bočný panel s &filtrami @@ -3781,12 +3740,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Sh&utdown System - + &Vypnúť systém &Do nothing - Nerobiť nič + &Nerobiť nič @@ -3796,7 +3755,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Manage Cookies... - Spravovať Cookies... + Spravovať &cookies... @@ -3831,22 +3790,22 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Sta&rt - + &Spustiť Sto&p - + &Zastaviť R&esume Session - + &Obnoviť reláciu Pau&se Session - + &Pozastaviť reláciu @@ -3961,19 +3920,19 @@ 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 Add Torrent &Link... - Prid&ať torrentový súbor... + Pridať torrentový &odkaz... @@ -3981,382 +3940,383 @@ 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 + &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č - + Search has failed 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 - + [POZASTAVENÉ] %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. - + Nepodarilo sa stiahnuť inštalátor Pythonu. Chyba: %1. +Prosím, nainštalujte ho ručne. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Zlyhalo premenovanie inštalátora Pythonu. Zdroj: "%1". Cieľ: "%2". - + Python installation success. - + Inštalácia Python úspešná. + + + + Exit code: %1. + Výstupný kód: %1. + + + + Reason: installer crashed. + Dôvod: došlo k pádu inštalátora. - Exit code: %1. - - - - - Reason: installer crashed. - - - - Python installation failed. - + Inštalácia Pythonu sa nepodarila. - + Launching Python installer. File: "%1". - + Spúšťa sa inštalátor Pythonu. Súbor: "%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é - + 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... - + Prebieha inštalácia Pythonu... - + Failed to open Python installer. File: "%1". - + Nepodarilo sa otvoriť inštalátor Pythonu. Súbor: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Inštalátor Pythonu má nesprávny MD5 hash. Súbor: "%1". Výsledný hash: "%2". Očakávaný hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Inštalátor Pythonu má nesprávny SHA3-512 hash. Súbor: "%1". Výsledný hash: "%2". Očakávaný hash: "%3". - + Download error Chyba pri sťahovaní - - + + 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 @@ -4553,7 +4513,7 @@ Minimálna verzia: %2. SSL error, URL: "%1", errors: "%2" - + Chyba SSL. URL: "%1", chyby: "%2" @@ -5850,47 +5810,47 @@ Minimálna verzia: %2. 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 @@ -5925,7 +5885,7 @@ Minimálna verzia: %2. BitTorrent - Bittorrent + BitTorrent @@ -5982,13 +5942,13 @@ Minimálna verzia: %2. Open destination folder - Otvor cieľový priečinok + Otvoriť cieľový priečinok No action - Neurob nič + Neurobiť nič @@ -6028,7 +5988,7 @@ Minimálna verzia: %2. <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>Pre nastavenie qBittorrentu ako východzieho programu pre .torrent súbory a/alebo Magnet odkazy<br/>, môžete použiť dialógové okno <span style=" font-weight:600;">Východzie programy</span> z <span style=" font-weight:600;">Ovládacích panelov</span>.</p></body></html> + <html><head/><body><p>Pre nastavenie qBittorrentu ako východzieho programu pre .torrent súbory a/alebo Magnet odkazy,<br/>môžete použiť dialógové okno <span style=" font-weight:600;">Východzie programy</span> z <span style=" font-weight:600;">Ovládacích panelov</span>.</p></body></html> @@ -6036,175 +5996,175 @@ Minimálna verzia: %2. 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.. + Možnosti... - + Remove Odstrániť - + Email notification &upon download completion Upozornenie o dokončení sťahovania emailom - + Send test email - + Odoslať testovací email - + Run on torrent added: - + Spustiť po pridaní torrentu: - + Run on torrent finished: - + Spustiť po dokončení torrentu: - + Peer connection protocol: - Protokol peer pripojenia: + Protokol pripojenia k peerom: - + Any Akýkoľvek - + I2P (experimental) I2P (experimentálne) - + 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 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: + Pre: - + Find peers on the DHT network - Hľadať peery v sieti DHT + Hľadať peerov 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 @@ -6213,190 +6173,180 @@ 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 - + 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: - + Oneskorenie požiadavky na rovnakého hostiteľa: - + Maximum number of articles per feed: Maximálny počet článkov na kanál: - - - + + + min minutes min - + Seeding Limits Limity seedovania - + 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 - + Zastaviť torrent - + A&utomatically append these trackers to new downloads: - + A&utomaticky pridať tieto trackery k novým torrentom: - + Automatically append trackers from URL to new downloads: - + Automaticky pridať trackery z adresy URL k novým torrentom: - + URL: URL: - + Fetched trackers - + Získané trackery - + Search UI - + Prehľadávať UI - + Store opened tabs - + Uchovávať otvorené karty - + Also store search results - + Tiež uchovávať výsledky vyhľadávania - + History length - + Počet záznamov v histórii - + 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. @@ -6405,37 +6355,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: + ban na: - + Session timeout: Časový limit relácie: - + Disabled Vypnuté - + 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. @@ -6448,37 +6398,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 - + Použiť alternatívne 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 @@ -6495,7 +6445,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas WebUI - + WebUI @@ -6510,29 +6460,29 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas Style: - + Štýl: Color scheme: - + Schéma farieb: Stopped torrents only - + Iba zastavené torrenty Start / stop torrent - + Spustiť / zastaviť torrent Open torrent options dialog - + Otvoriť dialóg možností torrentu @@ -6543,7 +6493,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas Normal - Normálny + Normálne @@ -6573,7 +6523,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas &Log Files - + &Log súbory @@ -6591,99 +6541,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 - + Zobraziť externú IP adresu v stavovom riadku - + 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 - + Torrent bude pridaný do zoznamu k stiahnutiu v zastavenom stave - + 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: @@ -6693,22 +6643,22 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas Zobraziť qBittorrent v oznamovacej oblasti - + 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 @@ -6725,12 +6675,12 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas Changing Interface settings requires application restart - Zmena nastavenia rozhranie vyžaduje reštart aplikácie + Zmena nastavenia rozhrania vyžaduje reštart aplikácie Shows a confirmation dialog upon torrent deletion - Zobrazí dialóg pre potvrdenie po odstránení torrentu + Zobrazí dialóg pre potvrdenie pri odstraňovaní torrentu @@ -6746,12 +6696,12 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas When minimizing, the main window is closed and must be reopened from the systray icon - Pri minimalizácii je hlavné okno zatvorené a musí byť znovu otvorené z ikony systray + Pri minimalizácii je hlavné okno zatvorené a musí byť znovu otvorené z ikony v oznamovacej oblasti The systray icon will still be visible when closing the main window - Po zatvorení hlavného okna bude ikona systray stále viditeľná + Po zatvorení hlavného okna bude ikona v oznamovacej oblasti stále viditeľná @@ -6803,65 +6753,65 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas rokov - + Log performance warnings Logovať upozornenia ohľadom výkonu - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + Show console window - Zobraziť okno konzoli + Zobraziť okno konzoly - + 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 + Použiť presmerovanie portov UPnP / NAT-PMP z môjho routera - + 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: + Maximálny celkový počet slotov pre nahrávanie: - + Proxy Server Proxy server - + Type: Typ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: - Host: + Hostiteľ: - - - + + + 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 + Používať server proxy na spojenia s peermi - + A&uthentication Overenie - + + Info: The password is saved unencrypted + 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 + Použiť rýchlostné obmedzenie na peerov 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> - + <html><head/><body><p>Pokiaľ je zapnutý "zmiešaný režim", I2P torrenty môžu získavať peerov aj z iných zdrojov než z trackera a napájať sa na bežné IP adresy, neposkytujúc žiadnu anonymizáciu. Toto môže byť užitočné, ak užívateľ nemá záujem o anonymizáciu I2P, ale stále chce mať možnosť pripojiť sa na I2P peerov.</p></body></html> - + Apply rate limit to µTP protocol - Použiť obmedzenie rýchlosti na protokol µTP + Použiť rýchlostné obmedzenie 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 + Zapnúť DHT (decentralizovaná sieť) - umožní nájsť viac peerov - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - Vymieňať si zoznam rovesníkov s kompatibilnými klientmi siete Bittorrent (µTorrent, Vuze, ...) + Vymieňať si zoznam peerov 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 + Zapnúť Peer eXchange (PeX) - umožní nájsť viac peerov - + Look for peers on your local network - Hľadať rovesníkov na vašej lokálnej sieti + Hľadať peerov 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 + Zapnúť Local Peer Discovery - umožní nájsť viac peerov - + 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 + Použiť UPnP / NAT-PMP k presmerovaniu portu z môjho routera - + 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 - + Files location: Umiestnenie súborov: - + <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">Zoznam alternatívnych 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> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Príklady nastavení reverzného servera proxy</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; @@ -7462,12 +7417,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á): @@ -7487,183 +7442,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") + Tip: Ohraničte parameter úvodzovkami, aby nedošlo k odstrihnutiu textu za medzerou (napr. "%N") - + Test email - + Testovací email - + Attempted to send email. Check your inbox to confirm success - + Prebehol pokus o odoslanie emailu. Skontrolujte si svoju doručenú poštu - + (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 + Konfigurácia WebUI zlyhala. 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 odporúčaný pre najlepšiu kompatibilitu s tmavým režimom Windows + + + + System + System default Qt style + Systém - %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 - + Nechať Qt vybrať najvhodnejší štýl pre tento systém - + Dark Dark color scheme - + Tmavá - + Light Light color scheme - + Svetlá - + System System color scheme - + Systém - + 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 + 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> @@ -7673,70 +7628,69 @@ 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é. + Torrenty s metadátami budú pridané ako zastavené. - + Choose an IP filter file - Zvoliť súbor filtra IP + Zvoľte 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. + Lokalita umiestnenia alternatívnych WebUI súborov nemôže byť prázdna. - + 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. @@ -7747,18 +7701,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 @@ -7843,169 +7797,169 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. Peer is using NAT hole punching - + Peer používa NAT hole punching 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ť: + 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... + Pridať peerov... - - + + Adding peers - Pridanie rovesníkov + Pridanie peerov - + Some peers cannot be added. Check the Log for details. - Niektorých rovesníkov nebolo možné pridať. Pozrite prosím Log pre detaily. + Niektorých peerov nebolo možné pridať. Pozrite, prosím, Log pre detaily. - + Peers are added to this torrent. - Peeri sú pridaný do tohto torrentu. + Peeri sú pridaní do tohto torrentu. - - + + Ban peer permanently - Zablokovať rovesníka na stálo + Zablokovať peera natrvalo - + 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 + Nebol vybraný žiaden 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ý + Peer "%1" je ručne zablokovaný - + N/A nie je k dispozícií - + Copy IP:port Kopírovať IP:port @@ -8035,7 +7989,7 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. Please type at least one peer. - Zadajte prosím aspoň jedného peera. + Zadajte, prosím, aspoň jedného peera. @@ -8284,6 +8238,39 @@ 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 @@ -8365,6 +8352,15 @@ Tieto moduly však boli vypnuté. Chýbajúce oprávnenia na zápis do cesty + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8429,7 +8425,7 @@ Tieto moduly však boli vypnuté. ETA: - Odhad. čas: + Odhadovaný čas: @@ -8444,12 +8440,12 @@ Tieto moduly však boli vypnuté. Download Speed: - Sťahovaná rýchlosť: + Rýchlosť sťahovania: Upload Speed: - Nahrávaná rýchlosť: + Rýchlosť nahrávania: @@ -8525,12 +8521,12 @@ Tieto moduly však boli vypnuté. Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Aktívne po dobu (v mesiacoch), vyjadruje úroveň popularity torrentu Popularity: - + Popularita: @@ -8565,7 +8561,7 @@ Tieto moduly však boli vypnuté. Private: - + Súkromný: @@ -8573,124 +8569,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 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 - + Pridať web seed - + Add web seed: - + Pridať web seed: - - + + This web seed is already in the list. - + Tento web seed sa už nachádza v zozname. - + Filter files... Filtruj súbory... - + Add web seed... - + Pridať web seed... - + Remove web seed - + Odobrať web seed - + Copy web seed URL - + Kopírovať web seed URL - + Edit web seed URL... - + Upraviť 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. - + Web seed editing Úprava webového seedu - + Web seed URL: URL webového seedu: @@ -8698,33 +8694,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 @@ -8732,22 +8728,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ť. @@ -8796,12 +8792,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" @@ -8823,117 +8819,76 @@ Tieto moduly však boli vypnuté. - + Item doesn't exist: %1. Položka neexistuje: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Nebolo možné presunúť adresár do seba. - + 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: - Interval obnovenia: - - - - sec - sec - - - - Default - Predvolený - - RSSWidget @@ -9033,61 +8988,101 @@ 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 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9201,142 +9196,168 @@ Tieto moduly však boli vypnuté. Veľkosť: - + Name i.e: file name Názov - + Size i.e: file size Veľkosť - + Seeders i.e: Number of full sources Seederi - + Leechers i.e: Number of partial sources Leecheri - + Filter search results... Filtrovať výsledky hľadania... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Výsledky (zobrazuje <i>%1</i> z <i>%2</i>): - + Torrent names only Iba názvy torrentov - + Everywhere Všade - + Use regular expressions Používať regulárne výrazy - + Open download window Otvoriť okno sťahovania - + Download Stiahnuť - + Open description page Otvoriť stránku s popisom - + Copy Kopírovať - + Name Názov - + Download link Download link - + Description page URL URL stránky s popisom - + Searching... Hľadá sa... - + Search has finished Hľadanie skončené - + Search aborted Vyhľadávanie prerušené - + An error occurred during search... Počas vyhľadávania sa vyskytla chyba... - + Search returned no results Vyhľadávanie nevrátilo žiadne výsledky - - - Engine - - - - - Engine URL - - - Published On - + Engine + Vyhľadávač - + + Engine URL + URL vyhľadávača + + + + Published On + Zverejnené + + + 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 @@ -9344,104 +9365,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') @@ -9467,94 +9488,94 @@ 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. - + <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 - + Obnoviť - + 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ť @@ -9562,34 +9583,34 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, 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" - + Nepodarilo sa načítať uložené výsledky vyhľadávania. Záložka: "%1". Súbor: "%2". Chyba: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Nepodarilo sa uložiť výsledky vyhľadávania. Záložka: "%1". Súbor: "%2". Chyba: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Nepodarilo sa uložiť históriu vyhľadávania. Súbor: "%1". Chyba: "%2" @@ -9612,7 +9633,7 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, An unknown error occurred while trying to write the configuration file. - adr + Vyskytla sa neznáma chyba pri pokuse o zápis do konfiguračného súboru. @@ -9744,7 +9765,7 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Total Download - Stiahnuté celkom + Stiahnuté celkom @@ -9842,7 +9863,7 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Total Download - Stiahnuté celkom + Stiahnuté celkom @@ -9985,77 +10006,67 @@ 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 - + Externá 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 - + Vonkajšie IP: %1, %2 - + External IP: %1%2 - + Vonkajšia 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 @@ -10086,12 +10097,12 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Running (0) - + Spustené (0) Stopped (0) - + Zastavené (0) @@ -10156,22 +10167,22 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Running (%1) - + Spustené (%1) Stopped (%1) - + Zastavené (%1) Start torrents - + Spustiť torrenty Stop torrents - + Zastaviť torrenty @@ -10262,12 +10273,12 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Start torrents - + Spustiť torrenty Stop torrents - + Zastaviť torrenty @@ -10277,7 +10288,7 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Add tag - + Pridať značku @@ -10593,19 +10604,19 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Moc veľa aktívnych úloh - + Torrent creation is still unfinished. - + Vytváranie torrentu stále nebolo dokončené. - + Torrent creation failed. - + Vytvorenie torrentu zlyhalo. @@ -10735,7 +10746,7 @@ Please choose a different name and try again. Source: - Zdroj + Zdroj: @@ -10890,7 +10901,7 @@ Please choose a different name and try again. Torrent Share Limits - + Limity zdieľania torrentu @@ -10906,7 +10917,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Rýchlostné limity torrentu @@ -10970,34 +10981,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Predvolený - - + + Unlimited - + Neobmedzené - - + + Set to - + Nastaviť na - + Seeding time: - + Čas seedovania: - - + + @@ -11007,39 +11018,39 @@ Please choose a different name and try again. min - + Inactive seeding time: - + Čas neaktívneho seedovania: - + Action when the limit is reached: - + Akcia pri dosiahnutí limitu: - + Stop torrent - + Zastaviť torrent - + Remove torrent Odstrániť torrent - + Remove torrent and its content - + Odstrániť torrent a jeho obsah - + Enable super seeding for torrent Povoliť super seeding pre torrent Ratio: - + Pomer: @@ -11047,12 +11058,12 @@ Please choose a different name and try again. Torrent Tags - Štítky torrentu + Značky torrentu Add tag - + Pridať značku @@ -11083,90 +11094,90 @@ 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 "%1" is not a valid URL - + "%1" nie je platná adresa URL URL scheme must be one of [%1] - + Schéma URL musí byť jedna z [%1] @@ -11174,39 +11185,39 @@ Please choose a different name and try again. Parameter 'sort' je chybný - + "%1" is not an existing URL - + "%1" nie je existujúca adresa 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 @@ -11289,27 +11300,27 @@ Please choose a different name and try again. Invalid state! - + Neplatný stav! URL/Announce Endpoint - + URL/Koncový bod oznámenia BT Protocol - + BT protokol Next Announce - + Ďalšie oznámenie Min Announce - + Min. oznámenie @@ -11355,73 +11366,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 @@ -11504,12 +11515,12 @@ Please choose a different name and try again. Start torrents - + Spustiť torrenty Stop torrents - + Zastaviť torrenty @@ -11717,7 +11728,7 @@ Please choose a different name and try again. Popularity - + Popularita @@ -11880,12 +11891,12 @@ Please choose a different name and try again. Private Flags private torrents - + Súkromný Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Aktívne po dobu (v mesiacoch), vyjadruje úroveň popularity torrentu @@ -11910,319 +11921,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 - + 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é. - + 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 + Odstrániť všetky značky - + Remove all tags from selected torrents? - Odstrániť všetky štítky z vybratých torrentov? + Odstrániť všetky značky 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ý - + 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 - + Nemožno vynútiť opätovné oznámenie, ak je torrent v stave Zastavený/Vo fronte/S chybou/Kontrolovaný - + &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 - + Pridať značky - + 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 - + Štart - + Sto&p Stop the torrent - + &Zastaviť - + Force Star&t Force Resume/start the torrent - + Vynútiť šta&rt - + &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 - + Super seeding mode Režim super seedovania @@ -12277,18 +12288,18 @@ Please choose a different name and try again. Zmeny motívu používateľského rozhrania nebolo možné plne použiť. Podrobnosti je možné nájsť v Žurnále. - + Couldn't save UI Theme configuration. Reason: %1 Nepodarilo sa uložiť nastavenie motívu používateľského rozhrania. Dôvod: %1 - - + + Couldn't remove icon file. File: %1. Nepodarilo sa odstrániť súbor ikony. Súbor: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Nepodarilo sa skopírovať súbor ikony: %1. Cieľ: %2. @@ -12298,7 +12309,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + Zlyhalo nastavenie štýlu aplikácie. Neznámy štýl: "%1" @@ -12354,32 +12365,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 @@ -12471,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: Zdrojové hlavičky a cieľový pôvod nesúhlasí! Zdrojová IP: '%1'. Pôvod hlavičky: '%2'. Cieľový zdroj: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Hlavička referera a cieľový pôvod nesúhlasí! Zdrojová IP: '%1'. Pôvod hlavičky: '%2'. Cieľový zdroj: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: Neplatné záhlavie hostiteľa, nesúlad portov. Požiadavka zdroje IP: '%1'. Serverový port: '%2'. Prijaté hlavičky hostiteľa: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Neplatné hlavičky hostiteľa. Požiadavka zdroje IP: '%1'. Prijaté hlavičky hostiteľa: '%2' diff --git a/src/lang/qbittorrent_sl.ts b/src/lang/qbittorrent_sl.ts index c72d74bf9..3600cd1d2 100644 --- a/src/lang/qbittorrent_sl.ts +++ b/src/lang/qbittorrent_sl.ts @@ -231,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 @@ -364,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 @@ -477,35 +477,35 @@ 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 + + + 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 @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Preveri torrent po prenosu - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Razlog: %2 - + Torrent added Torrent dodan - + '%1' was added. e.g: xxx.avi was added. '%1' je dodan. - + Download completed Prejem dokončan @@ -1555,88 +1549,88 @@ Razlog: %2 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 @@ -1774,263 +1768,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. @@ -2226,503 +2220,503 @@ 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". - + 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 - + 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 - + 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 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" - + 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" - + 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" - + %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 - + 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" @@ -2772,47 +2766,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 @@ -2861,27 +2855,27 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 %1 mora določiti veljavna vrata ( 1 do 65535). - + Usage: Uporaba: - + [options] [(<filename> | <url>)...] - + Options: Možnosti: - + Display program version and exit Pokaži različico programa in zapri - + Display this help message and exit Prikaži sporočilo s pomočjo in zapri @@ -2892,130 +2886,130 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Parameter '%1' mora slediti sintaksi '%1=%2' - + Confirm the legal notice - - + + port vrata - + Change the WebUI port Spremeni vrata WebUI - + Change the torrenting port Spremeni vrata za prenašanje torrentov - + Disable splash screen Onemogoči pozdravno okno - + Run in daemon-mode (background) Zaženi v načinu ozadnjega opravila (v ozadju) - + dir Use appropriate short form or abbreviation of "directory" mapa - + Store configuration files in <dir> Shrani konfiguracijske datoteke v <dir> - - + + name ime - + Store configuration files in directories qBittorrent_<name> Shrani konfiguracijske datoteke v mapah qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Vdri v libtorrent datoteke za hitro nadaljevanje in ustvari poti datotek ki se nanašajo na profilno mapo - + files or URLs datoteke ali URL-ji - + Download the torrents passed by the user Prenesi datoteke, ki jih je uporabnik preskočil - + Options when adding new torrents: Možnosti ob dodajanju novih torrentov: - + path pot - + Torrent save path Pot za shranjevanje torrenta - + Add torrents as running or stopped Dodaj torrente kot zagnane ali kot ustavljene - + Skip hash check Preskoči preverjanje zgoščene vrednosti - + Assign torrents to category. If the category doesn't exist, it will be created. Dodeli torrente kategoriji. Če kategorija ne obstaja bo ustvarjena. - + Download files in sequential order Prejemanje datotek v zaporednem vrstnem redu - + Download first and last pieces first Prejemanje najprej prvih in zadnjih kosov - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Določi ali se pojavno okno "Dodaj nov torrent" prikaže ob dodajanju novih torrentov. - + 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: Vrednosti možnosti so lahko posredovane preko okoljskih spremenljivk. Za možnost imenovano 'parameter-name', je ime okoljske spremenljivke 'QBT_PARAMETER_NAME' (veliki znaki, '-' je zamenjan z '_'). Da preideš zastavljene vrednost nastavi spremenljivko na '1' ali 'TRUE'. Na primer, da onemogočiš pozdravno okno: - + Command line parameters take precedence over environment variables Parametri ukazne vrstice imajo prednost pred okoljskimi spremenljivkami - + Help Pomoč @@ -3138,12 +3132,12 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 CustomThemeSource - + Failed to load custom theme style sheet. %1 - + Failed to load custom theme colors. %1 Barv teme po meri ni bilo mogoče naložiti. %1 @@ -3151,7 +3145,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 DefaultThemeSource - + Failed to load default theme colors. %1 Barv privzete teme ni bilo mogoče naložiti. %1 @@ -3404,22 +3398,22 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 GUIAddTorrentManager - + Downloading torrent... Source: "%1" Prenašanje torrenta... Vir: "%1# - + 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? @@ -3537,40 +3531,6 @@ 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 @@ -3961,12 +3921,12 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 - + Show Pokaži - + Check for program updates Preveri posodobitve programa @@ -3981,383 +3941,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 - + Search has failed 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 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 - - + + 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 @@ -5851,47 +5811,47 @@ Najnižja podprta različica: %2. 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 @@ -6037,175 +5997,175 @@ Najnižja podprta različica: %2. 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! + + + 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 @@ -6214,190 +6174,180 @@ 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 - + 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 - + 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: - + 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. @@ -6406,37 +6356,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. @@ -6449,37 +6399,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 @@ -6592,99 +6542,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: @@ -6694,22 +6644,22 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak &apos Pokaži &qBittorrent v obvestilnem področju - + 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 @@ -6804,64 +6754,64 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak &apos let - + Log performance warnings Beleži opozorila o učinkovitosti delovanja - + 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 @@ -6881,50 +6831,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". @@ -6941,506 +6891,511 @@ 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 - + 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 + + + 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 - + 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 @@ -7450,12 +7405,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): @@ -7475,183 +7430,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 @@ -7661,69 +7616,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. @@ -7734,18 +7689,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 @@ -7836,163 +7791,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 @@ -8270,6 +8225,39 @@ Tisti vtičniki so bili onemogočeni. Spletna povezava + + 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 + + + PreviewSelectDialog @@ -8351,6 +8339,15 @@ Tisti vtičniki so bili onemogočeni. Za to pot ni dovoljenja za pisanje + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8559,124 +8556,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 - + No 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. - + 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 - + Web seed editing Urejanje spletnega sejalca - + Web seed URL: URL spletnega sejalca: @@ -8684,33 +8681,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 @@ -8718,22 +8715,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. @@ -8782,12 +8779,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" @@ -8809,117 +8806,76 @@ Tisti vtičniki so bili onemogočeni. - + Item doesn't exist: %1. Predmet ne obsaja: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Mape ni mogoče premakniti v njo samo. - + 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: - Interval osveževanja: - - - - sec - sec - - - - Default - Privzeto - - RSSWidget @@ -9019,61 +8975,101 @@ 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 Izberite ime mape - + Folder name: Ime mape: - + New folder Nova mapa - + + + Please type a RSS feed URL + Vpišite URL vira RSS + + + + + Feed 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9187,142 +9183,168 @@ Tisti vtičniki so bili onemogočeni. Velikost: - + Name i.e: file name Ime - + Size i.e: file size Velikost - + Seeders i.e: Number of full sources Sejalci - + Leechers i.e: Number of partial sources Pijavke - + Filter search results... Rezultati filtriranega iskanja... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Rezultati (prikazanih <i>%1</i> od <i>%2</i>): - + Torrent names only Samo imena torrentov - + Everywhere Povsod - + Use regular expressions Uporabi regularne izraze - + Open download window Odpri okno prejema - + Download Prejem - + Open description page Odpri stran z opisom - + Copy Kopiraj - + Name Ime - + Download link Povezava za prejem - + Description page URL URL strani z opisom - + Searching... Iskanje ... - + Search has finished Iskanje je končano - + Search aborted Iskanje je prekinjeno - + An error occurred during search... Med iskanjem je prišlo do napake ... - + Search returned no results Iskanje ni vrnilo rezultatov - + Engine - + Engine URL - + Published On - + 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 @@ -9330,104 +9352,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') @@ -9453,94 +9475,94 @@ 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. - + <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 @@ -9548,32 +9570,32 @@ Klikni na gumb "Vstavki iskanja ..." spodaj desno da jih namestite. 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" @@ -9971,77 +9993,67 @@ 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. - - 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 - - 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 @@ -10580,17 +10592,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. @@ -10957,34 +10969,34 @@ Prosimo da izberete drugo ime in poizkusite znova. TorrentShareLimitsWidget - - - + + + Default Privzeto - - + + Unlimited Neomejeno - - + + Set to Nastavi na - + Seeding time: Čas sejanja: - - + + @@ -10994,32 +11006,32 @@ Prosimo da izberete drugo ime in poizkusite znova. min - + Inactive seeding time: Trajanje nedejavnega sejanja: - + Action when the limit is reached: Dejanje, ko se doseže omejitev: - + Stop torrent Ustavi torrent - + Remove torrent Odstrani torrent - + Remove torrent and its content Odstrani torrent in njegovo vsebino - + Enable super seeding for torrent Omogoči super sejanje za torrent @@ -11070,78 +11082,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 @@ -11161,39 +11173,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 @@ -11342,73 +11354,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 @@ -11897,319 +11909,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 - + 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. - + 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 - + 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 - + Super seeding mode Način super sejanja @@ -12264,18 +12276,18 @@ Prosimo da izberete drugo ime in poizkusite znova. - + Couldn't save UI Theme configuration. Reason: %1 Nastavitve teme vmesnika ni bilo mogoče shraniti. Razlog: %1 - - + + Couldn't remove icon file. File: %1. Datoteke z ikono ni bilo mogoče odstraniti. Datoteka: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Datoteke z ikono ni bilo mogoče kopirati. Vir: %1. Cilj: %2. @@ -12341,32 +12353,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 @@ -12458,72 +12470,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: Glava izvirnika & Izvor tarče se ne ujemata! IP vira: '%1'. Glava izvirnika: '%2'. Izvor tarče: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Glava nanašalca & Izvor tarče se ne ujemata! IP vira: '%1'. Glava nanašalca: '%2'. Izvor tarče: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: Neveljavna Glava Gostitelja, neujemanje vrat. Zahteva za IP vira: '%1'. Vrata strežnika: '%2'. Prejeta Glava izvirnika: '%3'  - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Neveljavna Glava Gostitelja. Zahteva za IP vira: '%1'. Prejeta Glava izvirnika: '%2' diff --git a/src/lang/qbittorrent_sr.ts b/src/lang/qbittorrent_sr.ts index e9ed8fc8b..b058ad14c 100644 --- a/src/lang/qbittorrent_sr.ts +++ b/src/lang/qbittorrent_sr.ts @@ -231,25 +231,25 @@ Услов престанка - - + + None Никакав - - + + Metadata received Примљени метаподаци - + Torrents that have metadata initially will be added as stopped. Торенти који иницијално имају метаподатке биће додати као стопирани. + - Files checked Проверени фајлови @@ -364,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 Преузимање метаподатака завршено @@ -477,35 +477,35 @@ 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 - - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Провери торенте по завршетку - - + + ms milliseconds ms @@ -699,686 +699,680 @@ Вредност - + (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 Уграђени пратилац порта @@ -1425,64 +1419,64 @@ Користи се конфигурациона фасцикла: %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. @@ -1497,34 +1491,34 @@ Није успело покретање екстерног програма. Торент: "%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'. @@ -1533,18 +1527,18 @@ Разлог: %2 - + Torrent added Торент додат - + '%1' was added. e.g: xxx.avi was added. '%1' је додат. - + Download completed Преузимање завршено @@ -1555,88 +1549,88 @@ - + 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 је сада спреман за излазак @@ -1773,263 +1767,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. ће изузети све артикле. @@ -2225,503 +2219,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" - + 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 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 мора бити важећи порт (1 до 65535) - + Usage: Upotreba: - + [options] [(<filename> | <url>)...] [опције] [(<filename> | <url>)...] - + Options: Подешавања: - + Display program version and exit Прикажи верзију програма и изађу - + Display this help message and exit Прикажи ову помоћну поруку и изађи @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Параметар "%1" мора поштовати синтаксу "%1=%2" - + Confirm the legal notice - - + + port порт - + Change the WebUI port - + Change the torrenting port Промени порт за торентовање - + Disable splash screen Isključi pozdravni ekran - + Run in daemon-mode (background) Radi u servisnom režimu (u pozadini) - + dir Use appropriate short form or abbreviation of "directory" фасц. - + Store configuration files in <dir> Чувај конфигурационе фајлове у <dir> - - + + name име - + Store configuration files in directories qBittorrent_<name> Чувај конфигурационе фајлове у фасциклама qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory - + files or URLs фајлови или URL-ови - + Download the torrents passed by the user - + Options when adding new torrents: Подешавања при додавању нових торената: - + path путања - + Torrent save path Путања чувања торента - + Add torrents as running or stopped - + Skip hash check Прескочи проверу хеша - + 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: Вредности опција се могу наводити путем променљивих окружења. За опцију по имену "parameter-name", име променљиве окружења је "QBT_PARAMETER_NAME" (великим словима, "-" замењено са "_"). За навођење вредности-заставице, подесите променљиву на "1" или "TRUE". Например, да онемогућите уводни екран: - + Command line parameters take precedence over environment variables Параметри командне линије имају приоритет у односу на променљиве окружења - + Help Помоћ @@ -3137,12 +3131,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 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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? Торент "%1" је већ на списку преноса. Желите ли да спојите трекере из новог извора? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Прикажи - + Check for program updates Провери ажурирања програма @@ -3980,382 +3940,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 Грешка при преузимању - - + + 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 Торент Фајлови @@ -5849,47 +5809,47 @@ Minimum requirement: %2. 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 @@ -6035,365 +5995,355 @@ Minimum requirement: %2. 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 Ограничења донирања - + 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 - + 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. @@ -6401,37 +6351,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 Онемогућено - + 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. @@ -6440,37 +6390,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 А&журирај моје име динамичног домена @@ -6583,99 +6533,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 фајлове у: @@ -6685,22 +6635,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Прикажи qBittorrent на &системској палети - + 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 Унапред додели простор на диску за све фајлове @@ -6795,65 +6745,65 @@ 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 Да ли да се обрише .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 @@ -6873,50 +6823,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". @@ -6945,506 +6895,511 @@ 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 Покрени екстерни програм - + 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 Промени тренутно шифру - + 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 @@ -7454,12 +7409,12 @@ readme[0-9].txt: филтрирај "readme1.txt", "readme2.txt&q Одабери фајл qBittorrent UI теме - + Choose Alternative UI files location Изаберите локацију фајлова алтернативног КИ - + Supported parameters (case sensitive): Подржани параметри (case sensitive) @@ -7479,183 +7434,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 @@ -7665,69 +7620,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 @@ -7738,18 +7693,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 Грешка у дужини @@ -7840,163 +7795,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:порт @@ -8274,6 +8229,39 @@ 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 + + + PreviewSelectDialog @@ -8355,6 +8343,15 @@ Those plugins were disabled. Није доступна дозвола за упис на путању + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8563,124 +8560,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. - + 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: @@ -8688,33 +8685,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 @@ -8722,22 +8719,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. @@ -8786,12 +8783,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" @@ -8813,117 +8810,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Ставка не постоји: %1. - Can't move a folder into itself or its subfolders. - + 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. Учитавање 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 @@ -9023,61 +8979,101 @@ Those plugins were disabled. - Feed options... - + Edit feed URL... + Уреди URL фида... - + + Edit feed URL + Уреди URL фида + + + Please choose a folder name Молим изаберите име фасцикле - + Folder name: Име фасцикле: - + New folder Нова фасцикла - + + + Please type a RSS feed URL + Молимо унесите URL RSS фида + + + + + Feed URL: + URL фида: + + + Deletion confirmation Потврда брисања - + Are you sure you want to delete the selected RSS feeds? Да ли сигурно желите да избришете изабране RSS фидове? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed Молим изаберит ново име за овај RSS допис - + New feed name: Ново feed име: - + Rename failed Преименовање није успело - + Date: Датум: - + Feed: - + Author: Аутор: @@ -9191,142 +9187,168 @@ Those plugins were disabled. Величина: - + Name i.e: file name Име - + Size i.e: file size Величина: - + Seeders i.e: Number of full sources Донори - + Leechers i.e: Number of partial sources Трагачи - + Filter search results... Филтрирај резултате претраге... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Резултати (приказ <i>%1</i> од <i>%2</i>): - + Torrent names only Само имена торената - + Everywhere Свугде - + Use regular expressions Користи регуларне изразе - + Open download window Отвори прозор за преузимање - + Download Преузми - + Open description page Отвори страну са описом - + Copy Копирај - + Name Име - + Download link Веза за преузимање - + Description page URL 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 Промени ширину свих видљивих колона на ширину њиховог садржаја @@ -9334,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 ТВ емисије - + 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") @@ -9457,94 +9479,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 <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 Заустави @@ -9552,32 +9574,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" @@ -9975,77 +9997,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. Нема директних конекција. То може указивати на проблем мрежне конфигурације. - - 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 Кликните да укључите уобичајено ограничење брзине @@ -10582,17 +10594,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10959,34 +10971,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Подразумевано - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10996,32 +11008,32 @@ Please choose a different name and try again. мин - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent Уклони торент - + Remove torrent and its content - + Enable super seeding for torrent @@ -11072,78 +11084,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 Креирање путање чувања није успело @@ -11163,39 +11175,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 Нетачно име категорије @@ -11344,73 +11356,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 Прегледност колона @@ -11899,319 +11911,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 Изабрани торент "%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. Да ли сигурно желите да омогућите аутоматски менаџмент торената за изабране торенте? Могуће је да буду премештени. - + 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" није важеће - + 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 Аутоматски мод значи да ће се разна својства торента (нпр. путања чувања) одлучивати аутоматски на основу асоциране категорије - + Super seeding mode Супер seeding (донирајући) режим @@ -12266,18 +12278,18 @@ Please choose a different name and try again. Промене у теми КИ нису у потпуности примењене. Детаљи су доступни у запису. - + Couldn't save UI Theme configuration. Reason: %1 Чување конфигурације теме КИ није успело. Разлог: %1 - - + + Couldn't remove icon file. File: %1. Уклањање фајла иконице није успело. Фајл: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Копирање фајла иконице није успело. Извор: %1. Циљ: %2. @@ -12343,32 +12355,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 @@ -12460,72 +12472,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index a86d2f3bb..3810ef58e 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -231,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 @@ -364,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. + Detta kommer även att hämta metadata om det inte fanns där från början. - - + + 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 @@ -477,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Hämtar torrent... Källa: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - Misslyckades att lägga till torrent. Källa: "%1". Orsak: "%2" + Det gick inte 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 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 - Upptäckte ett försök att lägga till en duplicerad torrent. Källa: %1. Befintlig torrent: ”%2”. Torrent infohash: %3. Resultat: %4 - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Återkontrollera torrenter vid slutförning - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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-djupgräns - + Bdecode token limit - Bdecode tokengräns + 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 - Utgångsintervall för cache för intern värdnamnsresolver - - - + 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 Bifoga dialogrutan "Lägg till ny torrent" till huvudfönstret - + 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 - + -1 (unlimited) -1 (obegränsat) - + BitTorrent session shutdown timeout [-1: unlimited] - Timeout för avstängning av BitTorrent-session [-1: obegränsat] + Tidsgräns 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 inkommande mängd - + I2P outbound quantity - I2P inkommande kvantitet + I2P inkommande mängd - + 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 + Högst antal samtidiga HTTP-annonseringar - + Enable embedded tracker Aktivera inbäddad spårare - + Embedded tracker port Port för inbäddad spårare @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Orsak: %2 - + Torrent added Torrent tillagd - + '%1' was added. e.g: xxx.avi was added. "%1" tillagd. - + Download completed Hämtningen slutförd @@ -1555,88 +1549,88 @@ 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 @@ -1773,263 +1767,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. + Ange 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 + Ange 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. @@ -2099,7 +2093,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Corrupted resume data: %1 - Skadat återupptagningsdata: %1 + Korrupt återupptagningsdata: %1 @@ -2186,7 +2180,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Corrupted resume data: %1 - Skadat återupptagningsdata: %1 + Korrupta återupptagningsdata: %1 @@ -2225,503 +2219,503 @@ 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". - + 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. + Tidsgränsen för sessionsavstängning har passerat. - + 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 - + 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 - + 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 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" - + 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 - - - + 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" - + 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". + 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" - + %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 - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder %1 måste ange korrekt port (1 till 65535). - + Usage: Användning: - + [options] [(<filename> | <url>)...] [alternativ] [(<filename> | <url>)...] - + Options: Alternativ: - + Display program version and exit Visa programversionen och avsluta - + Display this help message and exit Visa detta hjälpmeddelande och avsluta @@ -2891,130 +2885,130 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Parametern "%1" måste följa syntaxen "%1=%2" - + Confirm the legal notice Bekräfta juridiska informationen - - + + port port - + Change the WebUI port Ändra porten för webbanvändargränssnittet - + Change the torrenting port Ändra webbgränssnittsporten - + Disable splash screen Inaktivera startbilden - + Run in daemon-mode (background) Kör i demonläge (i bakgrunden) - + dir Use appropriate short form or abbreviation of "directory" mapp - + Store configuration files in <dir> Spara konfigurationsfiler i <dir> - - + + name namn - + Store configuration files in directories qBittorrent_<name> Spara konfigurationsfiler i mappar qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory - Hacka in i libtorrents fastresume-filer och gör sökvägar i förhållande till profilmappen + Hacka in i libtorrents fastresume-filer och skapa filsökvägar relativa till profilmappen - + files or URLs filer eller URL:er - + Download the torrents passed by the user Hämta torrenterna som skickats av användaren - + Options when adding new torrents: Alternativ när nya torrenter läggs till: - + path sökväg - + Torrent save path Torrent-sparsökväg - + Add torrents as running or stopped Lägg till torrenter som igång eller stoppade - + Skip hash check Hoppa över hashkontroll - + Assign torrents to category. If the category doesn't exist, it will be created. Tilldela torrenter till kategori. Om kategorin inte finns skapas den. - + Download files in sequential order Hämta filer i sekventiell ordning - + Download first and last pieces first Hämta första och sista delarna först - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Ange om dialogrutan "Lägg till ny torrent" öppnas när du lägger till en 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: Alternativvärden kan levereras via miljövariabler. För alternativ som heter "parameter-name" är miljövariabelnamnet "QBT_PARAMETER_NAME" (i övre fallet är "-" ersatt med "_"). För att skicka flaggvärden anger du variabeln till "1" eller "TRUE". Till exempel, för att inaktivera startskärmen: - + Command line parameters take precedence over environment variables Kommandoradsparametrar har företräde framför miljövariabler - + Help Hjälp @@ -3137,12 +3131,12 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder CustomThemeSource - + Failed to load custom theme style sheet. %1 Det gick inte att läsa in anpassad temastilmall. %1 - + Failed to load custom theme colors. %1 Det gick inte att läsa in anpassade temafärger. %1 @@ -3150,7 +3144,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder DefaultThemeSource - + Failed to load default theme colors. %1 Det gick inte att läsa in standardtemafärger. %1 @@ -3220,7 +3214,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Please type at least one URL. - Skriv minst en URL. + Ange minst en URL. @@ -3403,22 +3397,22 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder GUIAddTorrentManager - + Downloading torrent... Source: "%1" Hämtar torrent... Källa: "%1" - + 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? @@ -3459,7 +3453,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Database corrupted: no data section found. - Databas skadad: ingen datasektion hittades. + Databas korrupt: ingen datasektion hittades. @@ -3536,40 +3530,6 @@ 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. - 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 - - - - Power management unexpected error. State: %1. Error: %2 - Oväntat strömhanteringsfel. Tillstånd: %1. Fel: %2 - - - - InhibitorMacOS - - - PMMacOS - qBittorrent is active - PMMacOS - - LegalNotice @@ -3900,7 +3860,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder &Suspend System - &Försätt systemet i vänteläge + Försätt s&ystemet i vänteläge @@ -3960,12 +3920,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 @@ -3980,383 +3940,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: + Ange lösenordet för gränssnittslåset: - + 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 - + Search has failed Det gick inte att söka - + Search has finished 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. 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 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 - - + + 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 @@ -4430,7 +4390,7 @@ Minimikrav: %2. Exceeded max redirections (%1) - Överskridit tillåtna omdirigeringar (%1) + Överskridit högst antal omdirigeringar (%1) @@ -5850,47 +5810,47 @@ Minimikrav: %2. 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 @@ -6036,175 +5996,175 @@ Minimikrav: %2. KiB - - Show free disk space in status bar - Visa ledigt diskutrymme i statusfältet - - - + 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 + Kör på slutförd torrent: - + Peer connection protocol: Jämlikeanslutningsprotokoll: - + Any Vilket som helst - + I2P (experimental) I2P (experimentell) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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: + Fördröjning av samma värdförfrågan: - + Maximum number of articles per feed: Högst antal artiklar per flöde: - - - + + + min minutes min - + Seeding Limits Distributionsgränser - + 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! - Vissa funktioner är inte tillgängliga med den valda proxytypen! - - - - Note: The password is saved unencrypted - Observera: Lösenordet sparas okrypterat - - - + 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: - + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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... + IP-delnätsvitlista... - + 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 @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec Visa &qBittorrent i aviseringsområdet - + 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 @@ -6803,65 +6753,65 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec år - + Log performance warnings Logga prestandavarningar - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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 + + + 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> + <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-kamrater. </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 + Räkna inte långsamma torrenter med dessa gränser - + 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 - + 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 + Aktivera skydd mot klickkapning - + 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! + Genom att aktivera dessa alternativ kan du <strong>oåterkalleligen 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 @@ -7462,12 +7417,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): @@ -7487,185 +7442,185 @@ 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 + En torrent kommer att anses vara långsam om dess hämtnings- och sändningshastigheter ligger under dessa värden i sekunder med "torrentinaktivitetstidtagare" - + 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å + När dessa alternativ är aktiverade kommer qBittorrent att <strong>ta bort</strong> .torrent-filer efter att de har lagts till i hämtningskön (det första alternativet) eller inte (det andra alternativet). Detta kommer <strong>inte endast</strong> att tillämpas på de filer som öppnas via menyåtgärden &ldquo;Lägg till torrent&rdquo; utan även de som öppnas via <strong>filtypsassociering</strong> @@ -7673,69 +7628,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. @@ -7746,18 +7701,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 @@ -7848,163 +7803,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int 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 @@ -8034,7 +7989,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int Please type at least one peer. - Skriv minst en jämlike. + Ange minst en jämlike. @@ -8124,7 +8079,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int Warning: Be sure to comply with your country's copyright laws when downloading torrents from any of these search engines. - Varning: Var noga med att följa ditt lands upphovsrättslagar när du hämtar torrenter från någon av de här sökmotorerna. + Varning: Var noga med att följa ditt lands upphovsrättslagar när du hämtar torrenter från någon av dessa sökmotorer. @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ De här insticksmodulerna inaktiverades. Har inte skrivbehörighet till sökväg + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8427,7 +8424,7 @@ De här insticksmodulerna inaktiverades. ETA: - Slutförs: + Slutförs om: @@ -8512,7 +8509,7 @@ De här insticksmodulerna inaktiverades. Reannounce In: - Omannonseras: + Annonseras igen om: @@ -8523,7 +8520,7 @@ 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 + Kvot / aktiv tid (i månader), indikerar hur populär torrenten är @@ -8543,7 +8540,7 @@ De här insticksmodulerna inaktiverades. Created By: - Skapades av: + Skapad av: @@ -8553,12 +8550,12 @@ De här insticksmodulerna inaktiverades. Completed On: - Slutfördes: + Slutförd: Created On: - Skapades: + Skapad: @@ -8571,124 +8568,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 - + No 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. - + 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 - + Web seed editing Redigering av webbdistribution - + Web seed URL: URL för webbdistribution: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ De här insticksmodulerna inaktiverades. - + Item doesn't exist: %1. - Artikeln existerar inte: %1. + Posten existerar inte: %1. - Can't move a folder into itself or its subfolders. - Kan inte flytta en mapp till sig själv eller sina undermappar. + Couldn't move folder into itself. + Kunde inte flytta mappen in i sig själv. - + 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. + Dubblett RSS-flöde hittades. UID: "%1". Fel: Konfigurationen verkar vara korrupt. - + Couldn't load RSS item. Item: "%1". Invalid data format. - Det gick inte att läsa in RSS-objektet. Objekt: "%1". Ogiltigt dataformat. + Det gick inte att läsa in RSS-posten. Post: "%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. + Felaktig sökväg för RSS-post: %1. - + RSS item with given path already exists: %1. - RSS-objekt med given sökväg finns redan: %1. + RSS-post med given sökväg finns redan: %1. - + Parent folder doesn't exist: %1. Den överordnade mappen finns inte: %1. - - RSSController - - - Invalid 'refreshInterval' value - Ogiltigt värde för 'refreshInterval' - - - - Feed doesn't exist: %1. - Flödet finns inte: %1. - - - - RSSFeedDialog - - - RSS Feed Options - Alternativ för RSS-flöde - - - - URL: - URL: - - - - Refresh interval: - Uppdateringsintervall: - - - - sec - sek - - - - Default - Standard - - RSSWidget @@ -8954,7 +8910,7 @@ De här insticksmodulerna inaktiverades. Mark items read - Markera som läst + Markera poster som lästa @@ -9031,61 +8987,101 @@ De här insticksmodulerna inaktiverades. - Feed options... - Flödesalternativ... + Edit feed URL... + Redigera flödes-URL... - + + Edit feed 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 + Ange en URL för RSS-flödet + + + + + Feed 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9164,7 +9160,7 @@ De här insticksmodulerna inaktiverades. Set minimum and maximum allowed size of a torrent - Ställ in minsta och största tillåtna storlek för en torrent + Ställ in lägsta och största tillåtna storlek för en torrent @@ -9199,142 +9195,168 @@ De här insticksmodulerna inaktiverades. Storlek: - + Name i.e: file name Namn - + Size i.e: file size Storlek - + Seeders i.e: Number of full sources Distributörer - + Leechers i.e: Number of partial sources Reciprokörer - + Filter search results... Filtrera sökresultat... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Resultat (visar <i>%1</i> av <i>%2</i>): - + Torrent names only Endast torrentnamn - + Everywhere Överallt - + Use regular expressions Använd reguljära uttryck - + Open download window Öppna hämtningsfönstret - + Download Hämta - + Open description page Öppna beskrivningssidan - + Copy Kopiera - + Name Namn - + Download link Hämtningslänk - + Description page URL Beskrivningssidans URL - + Searching... Söker... - + Search has finished Sökningen är klar - + Search aborted Sökningen avbruten - + An error occurred during search... Ett fel uppstod under sökningen... - + Search returned no results Sökningen gav inga resultat - + Engine Motor - + Engine URL - Motorns webbadress + Motor-URL - + Published On Publicerad den - + Column visibility Kolumnens synlighet - + 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 @@ -9342,104 +9364,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 + 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") @@ -9465,94 +9487,94 @@ 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. - + <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 + Ange ett sökmönster först - + Stop Stoppa @@ -9560,32 +9582,32 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av 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" + Det gick inte att läsa in sökanvändargränssnittets sparade statusdata. 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" @@ -9983,77 +10005,67 @@ 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. - - Free space: N/A - Ledigt utrymme: inte tillgängligt - - - - + + 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 - - Free space: - Ledigt utrymme: - - - + 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 @@ -10089,7 +10101,7 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Stopped (0) - Stoppad (0) + Stoppade (0) @@ -10159,7 +10171,7 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Stopped (%1) - Stoppad (%1) + Stoppade (%1) @@ -10592,17 +10604,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. @@ -10969,34 +10981,34 @@ Välj ett annat namn och försök igen. TorrentShareLimitsWidget - - - + + + Default Standard - - + + Unlimited Obegränsat - - + + Set to Ställ in på - + Seeding time: Distributionstid: - - + + @@ -11006,32 +11018,32 @@ Välj ett annat namn och försök igen. min - + Inactive seeding time: Inaktiv distributionstid: - + Action when the limit is reached: Åtgärd när gränsen nås: - + Stop torrent Stoppa torrent - + Remove 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 @@ -11082,78 +11094,78 @@ 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 @@ -11173,39 +11185,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 @@ -11229,8 +11241,8 @@ Välj ett annat namn och försök igen. - Du kan dela in spårare i grupper genom att infoga tomma rader. - Alla spårare inom samma grupp kommer att tillhöra samma nivå. -- Gruppen på toppen kommer att vara nivå 0, nästa gruppnivå 1 och så vidare. -- Nedan kommer att visa den vanliga uppsättningen av spårare för de valda torrenterna. +- Gruppen överst kommer att vara nivå 0, nästa grupp nivå 1 och så vidare. +- Nedan visas den gemensamma uppsättningen av spårare för de valda torrenterna. @@ -11268,7 +11280,7 @@ Välj ett annat namn och försök igen. Not working - Fungerar inte + Arbetar inte @@ -11293,7 +11305,7 @@ Välj ett annat namn och försök igen. URL/Announce Endpoint - Webbadress-/Annonseringsslutpunkt + URL/annonseringsslutpunkt @@ -11338,7 +11350,7 @@ Välj ett annat namn och försök igen. Times Downloaded - Gånger hämtad + Antal hämtningar @@ -11354,73 +11366,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 @@ -11722,7 +11734,7 @@ Välj ett annat namn och försök igen. ETA i.e: Estimated Time of Arrival / Time left - Slutförs + Slutförs om @@ -11744,7 +11756,7 @@ Välj ett annat namn och försök igen. Completed On Torrent was completed on 01/01/2010 08:00 - Slutfördes + Slutförd @@ -11884,7 +11896,7 @@ Välj ett annat namn och försök igen. 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 + Kvot / aktiv tid (i månader), indikerar hur populär torrenten är @@ -11909,319 +11921,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 - + 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. - + 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 - + 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 - + Super seeding mode Superdistributionsläge @@ -12276,18 +12288,18 @@ Välj ett annat namn och försök igen. Ändringarna av användargränssnittets tema kunde inte tillämpas fullt ut. Detaljerna finns i loggen. - + Couldn't save UI Theme configuration. Reason: %1 Det gick inte att spara konfigurationen av användargränssnittstema. Orsak: %1 - - + + Couldn't remove icon file. File: %1. Det gick inte att ta bort ikonfilen. Fil: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Det gick inte att kopiera ikonfilen. Källa: %1. Destination: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Webbgränssnitt: Ursprungsrubrik & målursprung obalans! Käll-IP: "%1". Ursprungsrubrik: "%2". Målursprung: "%3" - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Webbgränssnitt: Referensrubrik & målursprung obalans! Käll-IP: "%1". Referensrubrik: "%2". Målursprung: "%3" - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Webbgränssnitt: Ogiltig värdrubrik, port felmatchning. Begär käll-IP: "%1". Serverport: "%2". Mottagen värdrubrik: "%3" - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Webbgränssnitt: Ogiltig värdrubrik. Begär käll-IP: "%1". Mottagen värdrubrik: "%2" diff --git a/src/lang/qbittorrent_th.ts b/src/lang/qbittorrent_th.ts index c5bac7824..eaa889fa1 100644 --- a/src/lang/qbittorrent_th.ts +++ b/src/lang/qbittorrent_th.ts @@ -203,7 +203,7 @@ Torrent options - + ตัวเลือกทอร์เรนต์ @@ -231,25 +231,25 @@ เงื่อนไขการสิ้นสุด - - + + None ไม่มี - - + + Metadata received ได้รับข้อมูล Metadata - + Torrents that have metadata initially will be added as stopped. โทเรนต์ที่มีข้อมูล Metadata ตั้งแต่แรกจะถูกเพิ่มในสถานะหยุด + - Files checked ตรวจสอบไฟล์แล้ว @@ -364,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 ดึงข้อมูลเสร็จสมบูรณ์ @@ -477,42 +477,42 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + กำลังดาวน์โหลดทอร์เรนต์... แหล่งที่มา: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Merging of trackers is disabled + + 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 Form - + ฟอร์ม @@ -537,7 +537,7 @@ Use another path for incomplete torrents: - + ใช้เส้นทางอื่นสำหรับทอร์เรนต์ที่ไม่สมบูรณ์: @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB เมบิไบต์ - + Recheck torrents on completion ตรวจทอเร้นอีกครั้งเมื่อเสร็จสมบูรณ์ - - + + ms milliseconds มิลลิเซกันด์ @@ -699,686 +699,680 @@ มูลค่า - + (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) - + 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] - + หยุดการหมดเวลาของตัวติดตาม [0: ปิดใช้งาน] - + 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 พอร์ตติดตามแบบฝัง @@ -1425,64 +1419,64 @@ ใช้การกำหนดค่าไดเร็กทอรี: %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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ เหตุผล: %2 - + Torrent added เพิ่มไฟล์ทอเร้นต์แล้ว - + '%1' was added. e.g: xxx.avi was added. '%1' เพิ่มแล้ว - + Download completed ดาวน์โหลดเสร็จสิ้น @@ -1555,88 +1549,88 @@ - + 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 @@ -1773,263 +1767,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. จะไม่รวมบทความทั้งหมด @@ -2225,503 +2219,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" - + 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" - - Merging of trackers is disabled + + + + 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" - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: การใช้งาน: - + [options] [(<filename> | <url>)...] - + Options: ตัวเลือก: - + Display program version and exit - + Display this help message and exit @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + 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 running or stopped - + Skip hash check ข้ามการตรวจสอบแฮช - + 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 ช่วยเหลือ @@ -3137,12 +3131,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 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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? @@ -3536,40 +3530,6 @@ 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 @@ -3785,7 +3745,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Do nothing - + &ไม่ทำอะไร @@ -3830,12 +3790,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + เริ่ม Sto&p - + หยุด @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show แสดง - + Check for program updates ตรวจสอบการอัพเดตโปรแกรม @@ -3980,380 +3940,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 ดาวน์โหลดล้มเหลว - - + + 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 ไฟล์ทอร์เรนต์ @@ -5847,47 +5807,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 @@ -6033,402 +5993,392 @@ 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 เก็บไฟล์ที่ไม่ได้เลือกไว้ในโฟลเดอร์ ".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 จำกัดการส่งต่อ - + 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 - + 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. @@ -6437,37 +6387,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 @@ -6580,99 +6530,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 ไปที่: @@ -6682,22 +6632,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 @@ -6746,7 +6696,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Close qBittorrent to notification area The systray icon will still be visible when closing the main window - + ปิด qBittorrent ในพื้นที่แจ้งเตือน @@ -6792,64 +6742,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 @@ -6869,50 +6819,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". @@ -6929,506 +6879,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) - - + + 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 @@ -7438,12 +7393,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not เลือก qBittorrent UI ธีมไฟล์ - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7463,183 +7418,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 @@ -7649,69 +7604,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 ข้อบังคับถูกนำไปใช้ @@ -7722,18 +7677,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,163 +7779,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:พอร์ต @@ -8257,6 +8212,39 @@ 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 + + + PreviewSelectDialog @@ -8338,6 +8326,15 @@ Those plugins were disabled. + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8546,124 +8543,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. - + 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 ส่งต่อเว็บ: @@ -8671,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 @@ -8705,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. @@ -8769,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" @@ -8796,117 +8793,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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." - + ไม่สามารถโหลดข้อมูลเซสชัน RSS ได้ ไฟล์: "%1" ผิดพลาด: "รูปแบบข้อมูลไม่ถูกต้อง" - + 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 @@ -9006,61 +8962,101 @@ Those plugins were disabled. - Feed options... + Edit feed URL... + แก้ไข 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed - + New feed name: ชื่อฟีดใหม่: - + Rename failed เปลี่ยนชื่อไม่สำเร็จ - + Date: วันที่: - + Feed: - + Author: ผู้เขียน: @@ -9096,12 +9092,12 @@ Those plugins were disabled. Updating plugin %1 - + กำลังอัปเดตปลั๊กอิน %1 Failed to check for plugin updates: %1 - + ไม่สามารถตรวจสอบการอัปเดตปลั๊กอินได้: %1 @@ -9124,7 +9120,7 @@ Those plugins were disabled. Set minimum and maximum allowed number of seeders - + กำหนดจำนวนผู้ปล่อยขั้นต่ำและสูงสุดที่อนุญาต @@ -9174,142 +9170,168 @@ Those plugins were disabled. ขนาด: - + Name i.e: file name ชื่อ - + Size i.e: file size ขนาด - + Seeders i.e: Number of full sources ผู้ส่ง - + Leechers i.e: Number of partial sources ผู้รับ - + Filter search results... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + 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 ดาวน์โหลด - + Open description page - + Copy คัดลอก - + 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 @@ -9317,104 +9339,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') @@ -9439,94 +9461,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. โปรดติดตั้ง Python เพื่อใช้เครื่องมือค้นหา - + Empty search pattern - + Please type a search pattern first - + Stop หยุด @@ -9534,32 +9556,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" @@ -9957,77 +9979,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. - - 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 @@ -10249,7 +10261,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + เพิ่มแท็ก @@ -10292,7 +10304,7 @@ Click the "Search plugins..." button at the bottom right of the window Use another path for incomplete torrents: - + ใช้เส้นทางอื่นสำหรับทอร์เรนต์ที่ไม่สมบูรณ์: @@ -10566,17 +10578,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10879,7 +10891,7 @@ Please choose a different name and try again. Torrent Speed Limits - + จำกัดความเร็วของทอร์เรนต์ @@ -10943,34 +10955,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default ค่าเริ่มต้น - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10980,32 +10992,32 @@ Please choose a different name and try again. นาที - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent หยุดทอร์เรนต์ - + Remove torrent ลบทอร์เรนต์ - + Remove torrent and its content - + Enable super seeding for torrent เปิดใช้งานการส่งต่อขั้นสูงสำหรับทอร์เรนต์ @@ -11025,7 +11037,7 @@ Please choose a different name and try again. Add tag - + เพิ่มแท็ก @@ -11056,78 +11068,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 @@ -11147,39 +11159,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 @@ -11323,73 +11335,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 การเปิดเผยคอลัมน์ @@ -11878,319 +11890,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 เลือกบันทึกเส้นทาง - + 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. - + 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 ไม่ถูกต้อง - + 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 โหลดส่งต่อข้อมูลขั้นสูง @@ -12245,18 +12257,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12322,32 +12334,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 @@ -12439,72 +12451,72 @@ 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. - + 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: ส่วนหัวของโฮสต์ไม่ถูกต้อง, พอร์ตไม่ตรงกัน. ขอแหล่งที่มา IP: '%1'. เซิฟเวอร์พอร์ต: '%2'. ได้รับส่วนหัวของโฮสต์: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: ส่วนหัวของโฮสต์ไม่ถูกต้อง. ขอแหล่งที่มา IP: '%1'. ได้รับส่วนหัวของโฮสต์: '%2' diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index d6d774917..c06b49817 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -231,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 @@ -364,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ı @@ -477,35 +477,35 @@ 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 + + + 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 - Kopya bir torrent ekleme girişimi algılandı. Kaynak: %1. Varolan torrent: "%2". Torrent bilgisi adreslemesi: %3. Sonuç: %4 - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Tamamlanmada torrent'leri yeniden denetle - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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 - Dahili anamakine adı çözücü önbelleği sona erme aralığı - - - + 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 Ana pencereye "Yeni torrent ekle" ileti penceresi ekle - + 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 - + -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 duyurma - + Enable embedded tracker Gömülü izleyiciyi etkinleştir - + Embedded tracker port Gömülü izleyici bağlantı noktası @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ Sebep: %2 - + Torrent added Torrent eklendi - + '%1' was added. e.g: xxx.avi was added. '%1' eklendi. - + Download completed İndirme tamamlandı @@ -1555,88 +1549,88 @@ 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 @@ -1773,263 +1767,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. @@ -2225,503 +2219,503 @@ 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ı 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". - + 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 - + 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 - + 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 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" - + 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 - - - + 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" - + 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" - + %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 - + 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" - + 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d %1 geçerli bir bağlantı noktasını belirtmek zorunda (1'den 65535'e). - + Usage: Kullanım: - + [options] [(<filename> | <url>)...] [seçenekler] [(<filename> | <url>)...] - + Options: Seçenekler: - + Display program version and exit Program sürümünü görüntüle ve çık - + Display this help message and exit Bu yardım iletisini görüntüle ve çık @@ -2891,130 +2885,130 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Parametre '%1', '%1=%2' sözdizimi şeklinde olmak zorunda - + Confirm the legal notice Yasal bildiriyi onayla - - + + port b.noktası - + Change the WebUI port Web Arayüzü bağlantı noktasını değiştir - + Change the torrenting port Torrent kullanım bağlantı noktasını değiştir - + Disable splash screen Karşılama ekranını etkisizleştir - + Run in daemon-mode (background) Arka plan programı kipinde çalıştır (arka planda) - + dir Use appropriate short form or abbreviation of "directory" dizin - + Store configuration files in <dir> Yapılandırma dosyalarını <dir> içinde depola - - + + name ad - + Store configuration files in directories qBittorrent_<name> Yapılandırma dosyalarını qBittorrent_<dir> dizinlerinde depola - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Libtorrent hızlı devam dosyaları içine girin ve dosya yollarını profil dizinine göre yapın - + files or URLs dosyalar veya URL'ler - + Download the torrents passed by the user Kullanıcı tarafından atlanan torrent'leri indir - + Options when adding new torrents: Yeni torrent'ler eklenirken seçenekler: - + path yol - + Torrent save path Torrent kaydetme yolu - + Add torrents as running or stopped Torrent'leri çalışıyor veya durduruldu olarak ekle - + Skip hash check Adresleme denetimini atla - + Assign torrents to category. If the category doesn't exist, it will be created. Torrent'leri kategoriye ata. Eğer kategori mevcut değilse, oluşturulacaktır. - + Download files in sequential order Dosyaları sıralı düzende indir - + Download first and last pieces first Önce ilk ve son parçaları indir - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Bir torrent eklenirken "Yeni Torrent Ekle" ileti penceresinin açılıp açılmayacağını belirle. - + 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: Ortam değişkenleri aracılığıyla seçenek değerleri sağlanabilir. 'parameter-name' olarak adlandırılan seçenek için ortam değişkeni adı 'QBT_PARAMETER_NAME'dir (büyük harf olarak, '-' karakteri '_' ile değiştirildi). İşaretleme değerlerini geçmek için değişkeni '1' veya 'TRUE' olarak ayarlayın. Örneğin, karşılama ekranını etkisizleştirmek için: - + Command line parameters take precedence over environment variables Komut satırı parametreleri ortam değişkenleri üzerinde öncelik alır - + Help Yardım @@ -3137,12 +3131,12 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d CustomThemeSource - + Failed to load custom theme style sheet. %1 Özel tema stil sayfasını yükleme başarısız. %1 - + Failed to load custom theme colors. %1 Özel tema renklerini yükleme başarısız. %1 @@ -3150,7 +3144,7 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d DefaultThemeSource - + Failed to load default theme colors. %1 Varsayılan tema renklerini yükleme başarısız. %1 @@ -3403,22 +3397,22 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent indiriliyor... Kaynak: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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. - 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 - - - - InhibitorMacOS - - - PMMacOS - qBittorrent is active - PMMacOS - - LegalNotice @@ -3960,12 +3920,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 @@ -3980,383 +3940,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 - + Search has failed Arama başarısız oldu - + Search has finished Arama tamamlandı - + Search - Ara + Arama - + 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. 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ı - + 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ı - - + + 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ı @@ -5850,47 +5810,47 @@ En düşük gereksinim: %2. 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 @@ -6036,175 +5996,175 @@ En düşük gereksinim: %2. KiB - - Show free disk space in status bar - Durum çubuğunda boş disk alanını göster - - - + 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) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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ı - + 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! - Bazı işlevler seçilen proksi türüyle kullanılabilir değil! - - - - Note: The password is saved unencrypted - Not: Parola şifrelenmeden kaydedilir - - - + 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: - + Fetched trackers Getirilen izleyiciler - + Search UI - Arama arayüzü + 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. @@ -6405,37 +6355,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 - + 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. @@ -6448,37 +6398,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 @@ -6490,7 +6440,7 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Search - Ara + Arama @@ -6591,99 +6541,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: @@ -6693,22 +6643,22 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. &qBittorrent'i bildirim alanında göster - + 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 @@ -6803,65 +6753,65 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. yıl - + Log performance warnings Performans uyarılarını günlükle - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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 + + + 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 - + 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, 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> @@ -7462,12 +7417,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ı): @@ -7487,183 +7442,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 @@ -7673,69 +7628,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ı. @@ -7746,18 +7701,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ı @@ -7848,163 +7803,163 @@ benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını 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 @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Bu eklentiler etkisizleştirildi. Yol için yazma izni yok + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 - + No 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. - + 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 - + Web seed editing Web gönderim düzenleme - + Web seed URL: Web gönderim URL'si: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Bu eklentiler etkisizleştirildi. - + Item doesn't exist: %1. Öğe mevcut değil: %1. - Can't move a folder into itself or its subfolders. - Bir klasör kendisine veya alt klasörlerine taşınamaz. + Couldn't move folder into itself. + Klasör kendi içine taşınamadı. - + 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 - Geçersiz 'refreshInterval' değeri - - - - Feed doesn't exist: %1. - Bildirim mevcut değil: %1. - - - - RSSFeedDialog - - - RSS Feed Options - RSS Bildirim Ayarları - - - - URL: - URL: - - - - Refresh interval: - Yenileme aralığı: - - - - sec - san - - - - Default - Varsayılan - - RSSWidget @@ -9031,61 +8987,101 @@ Bu eklentiler etkisizleştirildi. - Feed options... - Bildirim seçenekleri... + Edit feed URL... + Bildirim URLʼsini düzenle... - + + Edit feed URL + 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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: @@ -9199,142 +9195,168 @@ Bu eklentiler etkisizleştirildi. Boyut: - + Name i.e: file name Ad - + Size i.e: file size Boyut - + Seeders i.e: Number of full sources Gönderen - + Leechers i.e: Number of partial sources Çeken - + Filter search results... Arama sonuçlarını süzün... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Sonuçlar (<i>%1</i> / <i>%2</i> gösteriliyor): - + Torrent names only Sadece torrent adları - + Everywhere Her yeri - + Use regular expressions Düzenli ifadeleri kullan - + Open download window İndirme penceresini aç - + Download İndir - + Open description page Açıklama sayfasını aç - + Copy Kopyala - + Name Ad - + Download link İndirme bağlantısı - + Description page URL Açıklama sayfası URL'si - + Searching... Aranıyor... - + Search has finished Arama tamamlandı - + Search aborted Arama iptal edildi - + An error occurred during search... Arama sırasında bir hata meydana geldi... - + Search returned no results Arama hiç sonuç bulamadı - + Engine Motor - + Engine URL Motor URL'si - + Published On Yayınlanma Tarihi - + 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 @@ -9342,106 +9364,106 @@ 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 + Arama eklentisi '%1' geçersiz sürüm dizgisi ('%2') içeriyor @@ -9465,94 +9487,94 @@ 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. - + <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 @@ -9560,32 +9582,32 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri 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" @@ -9983,77 +10005,67 @@ 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. - - Free space: N/A - Boş alan: Yok - - - - + + 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 - - Free space: - Boş alan: - - - + 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 @@ -10592,17 +10604,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. @@ -10969,34 +10981,34 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. TorrentShareLimitsWidget - - - + + + Default Varsayılan - - + + Unlimited Sınırsız - - + + Set to Şuna ayarla - + Seeding time: Gönderim süresi: - - + + @@ -11006,32 +11018,32 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. dak - + Inactive seeding time: Etkin olmayan gönderim süresi: - + 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 - + 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 @@ -11082,78 +11094,78 @@ 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 @@ -11173,39 +11185,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ı @@ -11354,73 +11366,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üğü @@ -11909,319 +11921,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 - + 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ş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. - + 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 - + 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 - + Super seeding mode Süper gönderim kipi @@ -12276,18 +12288,18 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Arayüz Teması değişiklikleri tamamen uygulanamadı. Ayrıntılar Günlükte bulunabilir. - + Couldn't save UI Theme configuration. Reason: %1 Arayüz Teması yapılandırması kaydedilemedi. Sebep: %1 - - + + Couldn't remove icon file. File: %1. Simge dosyası silinemedi. Dosya: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Simge dosyası kopyalanamadı. Kaynak: %1. Hedef: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Web Arayüzü: Başlangıç üstbilgisi ve Hedef başlangıcı uyuşmuyor! Kaynak IP: '%1'. Başlangıç üstbilgisi: '%2'. Hedef başlangıcı: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Web Arayüzü: Gönderen üstbilgisi ve Hedef başlangıcı uyuşmuyor! Kaynak IP: '%1'. Gönderen üstbilgisi: '%2'. Hedef başlangıcı: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Web Arayüzü: Geçersiz Anamakine üstbilgisi, bağlantı noktası uyuşmuyor. İstek kaynak IP: '%1'. Sunucu bağlantı noktası: '%2'. Alınan Anamakine üstbilgisi: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Web Arayüzü: Geçersiz Anamakine üstbilgisi. İstek kaynak IP: '%1'. Alınan Anamakine üstbilgisi: '%2' diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index 465d3037b..278f81f27 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -203,7 +203,7 @@ Torrent options - Варіанти торенту + Варіанти торренту @@ -231,25 +231,25 @@ Умови зупинки: - - + + None Немає - - + + Metadata received Отримано метадані - + Torrents that have metadata initially will be added as stopped. Торренти, які мають метадані, будуть додані як зупинені. + - Files checked Файли перевірено @@ -364,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 Завершено отримання метаданих @@ -477,35 +477,35 @@ 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 - - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB МіБ - + Recheck torrents on completion Перепровіряти торренти після завантаження - - + + ms milliseconds мс @@ -699,686 +699,680 @@ Значення - + (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 Порт вбудованого трекера @@ -1425,64 +1419,64 @@ Використовується каталог налаштувань: %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, відредагуйте конфігураційний файл вручну. @@ -1497,34 +1491,34 @@ Не вдалося запустити зовнішню програму. Торрент: "%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'. @@ -1533,18 +1527,18 @@ Причина: %2 - + Torrent added Торрент додано - + '%1' was added. e.g: xxx.avi was added. "%1" було додано. - + Download completed Завантаження завершено @@ -1555,88 +1549,88 @@ 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 готовий до виходу @@ -1773,263 +1767,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. виключить всі статті. @@ -2225,503 +2219,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 Підтримка 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". - + 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 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" Торрент зупинився. Торрент: "%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" - + 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". Помилка: "Неправильний формат даних" - + %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" Отримано повідомлення про помилку від початкового 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 має вказувати коректний порт (від 1 до 65535). - + Usage: Використання: - + [options] [(<filename> | <url>)...] [параметри] [(<filename> | <url>)...] - + Options: Параметри: - + Display program version and exit Показати версію програми та вийти - + Display this help message and exit Показати цю довідку та вийти @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Параметр '%1' повинен відповідати синтаксису '%1=%2' - + Confirm the legal notice Підтвердьте офіційне повідомлення - - + + port порт - + Change the WebUI port Зміна порту WebUI - + Change the torrenting port Змініть торрент-порт - + Disable splash screen Вимкнути початкову заставку - + Run in daemon-mode (background) Виконувати у фоновому режимі (daemon) - + dir Use appropriate short form or abbreviation of "directory" тека - + Store configuration files in <dir> Зберігати файли конфігурації в <dir> - - + + name назва - + Store configuration files in directories qBittorrent_<name> Зберігати файли налаштувань у каталогах qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Змінити файли швидкого відновлення libtorrent та створити шляхи файлів відносно каталогу профілю - + files or URLs файли або посилання - + Download the torrents passed by the user Завантажити торренти, вказані користувачем - + Options when adding new torrents: Опції для додавання нових торрентів: - + path шлях - + Torrent save path Шлях збереження торрента - + Add torrents as running or stopped Додайте торренти як запущені або зупинені - + Skip hash check Пропустити перевірку хешу - + 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: Значення параметрів можуть передаватися через змінні середовища. Для опції з назвою 'parameter-name' змінна середовища — 'QBT_PARAMETER_NAME' (в верхньому регістрі, '-' замінюється на '_'). Щоб передати значення прапорця, встановіть для змінної значення '1' або 'TRUE'. Наприклад, щоб відключити заставку: - + Command line parameters take precedence over environment variables Параметри командного рядка мають пріоритет над змінними середовища - + Help Допомога @@ -3137,12 +3131,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 Не вдалося завантажити власну таблицю стилів теми. %1 - + Failed to load custom theme colors. %1 Не вдалося завантажити власні кольори теми. %1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Не вдалося завантажити кольори теми за замовчуванням. %1 @@ -3403,22 +3397,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? Торрент '%1' вже є у списку завантажень. Трекери не об'єднано, бо цей торрент приватний. @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Показати - + Check for program updates Перевірити, чи є свіжіші версії програми @@ -3980,383 +3940,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. Успіх у встановленні 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 Помилка завантаження - - + + 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-файли @@ -5850,47 +5810,47 @@ Minimum requirement: %2. 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 @@ -6036,175 +5996,175 @@ 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 Зберігайте невибрані файли у теці ".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 (експериментальний) - + 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 @@ -6213,190 +6173,180 @@ 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 Увімкнути завантаження RSS-подач - + 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 -адреси до нових завантажень: - + 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. @@ -6405,37 +6355,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 Вимкнено - + 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. @@ -6448,37 +6398,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 Оновлювати мій &динамічний домен @@ -6591,99 +6541,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-файли до: @@ -6693,22 +6643,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Показувати &qBittorrent в області сповіщень - + 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 Попередньо виділяти місце для всіх файлів @@ -6803,65 +6753,65 @@ 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 Чи слід видалити файл .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 Визначити відносний Шлях Збереження у відповідному шляху Категорії замість типового @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 Запускати зовнішню програму - + 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 Змінити поточний пароль - + 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; @@ -7462,12 +7417,12 @@ readme[0-9].txt: фільтр 'readme1.txt', 'readme2.txt', Вибрати файл теми qBittorrent - + Choose Alternative UI files location Використовувати розташування файлів альтернативного інтерфейсу - + Supported parameters (case sensitive): Підтримувані параметри (чутливо до регістру): @@ -7487,183 +7442,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> @@ -7673,69 +7628,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 правил. @@ -7746,18 +7701,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 Помилка довжини @@ -7848,163 +7803,163 @@ readme[0-9].txt: фільтр 'readme1.txt', 'readme2.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 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:порт @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Those plugins were disabled. Немає дозволу на запис до шляху + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 вже в списку. - + Filter files... Фільтрувати файли... - + Add web seed... Додайте веб seed... - + Remove web seed Видаліть веб seed - + Copy web seed URL Скопіюйте URL -адресу веб seed - + Edit web seed URL... - Редагувати URL -адресу веб seed ... + Редагувати URL адресу веб seed ... - + Speed graphs are disabled Графіки швидкості вимкнені - + You can enable it in Advanced Options Ви можете увімкнути їх в додаткових параметрах - + Web seed editing Редагування Веб-сіда - + Web seed URL: Адреса Веб-сіда: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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' успішно завантажений. Почався його розбір. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. Елемент не існує: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Не вдалося перемістити папку в саму себе. - + 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 @@ -9031,61 +8987,101 @@ Those plugins were disabled. - Feed options... - + Edit feed URL... + Редагувати розсилку URL каналу... - + + Edit feed URL + Редагувати розсилку URL каналу... + + + Please choose a folder name Будь ласка, виберіть назву теки - + Folder name: Назва теки: - + New folder Нова тека - + + + Please type a RSS feed URL + Будь-ласка, введіть адресу подачі RSS + + + + + Feed URL: + Адреса подачі: + + + Deletion confirmation Підтвердження видалення - + Are you sure you want to delete the selected RSS feeds? Ви впевнені, що хочете видалити вибрані RSS-подачі? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed Будь ласка, виберіть нову назву для цієї RSS-подачі - + New feed name: Нова назва подачі: - + Rename failed Перейменування не вдалося - + Date: Дата: - + Feed: канал: - + Author: Автор: @@ -9199,142 +9195,168 @@ Those plugins were disabled. Розмір: - + Name i.e: file name Назва - + Size i.e: file size Розмір - + Seeders i.e: Number of full sources Сідери - + Leechers i.e: Number of partial sources Лічери - + Filter search results... Фільтрувати результати пошуку... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Результати (показано <i>%1</i> із <i>%2</i>): - + Torrent names only Лише назви торрентів - + Everywhere Всюди - + Use regular expressions Використовувати регулярні вирази - + Open download window Відкрити вікно завантаження - + Download Завантажити - + Open description page Відкрити сторінку опису - + Copy Копіювати - + Name Назва - + Download link Посилання для завантаження - + Description page URL Адреса сторінки з описом - + Searching... Шукаю... - + Search has finished Пошук закінчено - + Search aborted Пошук скасовано - + An error occurred during search... Під час пошуку сталася помилка... - + Search returned no results Пошук не дав результів - + Engine Двигун - + Engine URL URL-адреса двигуна - + Published On Опубліковано - + Column visibility Показані колонки - + Resize columns Змінити розмір стовпців - + Resize all non-hidden columns to the size of their contents Змінити розмір усіх не прихованих стовпців до розміру їх вмісту @@ -9342,104 +9364,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') @@ -9465,94 +9487,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 <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 Зупинити @@ -9560,32 +9582,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" Не вдалося завантажити пошук за збереженим 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" @@ -9983,77 +10005,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. Немає прямих з'єднань. Це може означати, що є проблеми з налаштуванням мережі. - - 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 В мережі - - 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 Клацніть, щоб повернутись до звичайних обмежень швидкості @@ -10592,17 +10604,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Забагато активних завдань - + Torrent creation is still unfinished. Створення торрента ще не завершено. - + Torrent creation failed. Не вдалося створити торрент. @@ -10969,34 +10981,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default Типово - - + + Unlimited Без обмежень - - + + Set to Встановити на - + Seeding time: Час роздачі: - - + + @@ -11006,32 +11018,32 @@ Please choose a different name and try again. хв - + Inactive seeding time: Неактивний час роздачі: - + Action when the limit is reached: Дія при досягненні ліміту: - + Stop torrent Зупинити торрент - + Remove torrent Видалити торрент - + Remove torrent and its content Видаліть торрент і його вміст - + Enable super seeding for torrent Увімкнути режим супер-сід для торрента @@ -11082,78 +11094,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 Метадані торрента ще не завантажені - + 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 Не вдалося створити шлях збереження @@ -11173,39 +11185,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 Некоректна назва категорії @@ -11354,73 +11366,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 Показані колонки @@ -11909,319 +11921,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 Обраний торрент "%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. Ви впевнені, що хочете увімкнути Автоматичне Керування Торрентами для вибраних торрент(ів)? Вони можуть бути переміщенні. - + 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' некоректна - + 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 Автоматичний режим означає, що різні властивості торрента (наприклад, шлях збереження) визначатимуться відповідною категорією - + Super seeding mode Режим супер-сідування @@ -12276,18 +12288,18 @@ Please choose a different name and try again. Зміни теми інтерфейсу користувача не вдалося застосувати повністю. Подробиці можна знайти в журналі. - + Couldn't save UI Theme configuration. Reason: %1 Не вдалося зберегти конфігурацію теми інтерфейсу користувача. Причина: %1 - - + + Couldn't remove icon file. File: %1. Не вдалося видалити файл значка. Файл: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Не вдалося скопіювати файл значка. Джерело: %1. Призначення: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. Помилка веб-сервера. Невідома помилка. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Веб-інтерфейс: заголовок напрямку переходу не співпадає з цільовою адресою! IP джерела: «%1». Заголовок напрямку переходу: «%2». Цільова адреса: «%3» - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Веб-інтерфейс: заголовок джерела не співпадають з цільовою адресою! IP джерела: «%1». Заголовок джерела: «%2». Цільова адреса: «%3» - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Веб-інтерфейс: неправильний заголовок хоста. IP джерела запиту: «%1». Порт серверу: «%2». Отриманий заголовок хоста: «%3» - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Веб-інтерфейс: неправильний заголовок хоста. IP джерела запиту: '%1'. Отриманий заголовок хоста: '%2' diff --git a/src/lang/qbittorrent_uz@Latn.ts b/src/lang/qbittorrent_uz@Latn.ts index eebcefb08..8dd9c4320 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,21 +666,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrentlar tugallanganidan so‘ng yana bir bor tekshirilsin - - + + ms milliseconds ms @@ -697,686 +697,680 @@ 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 @@ -1423,64 +1417,64 @@ - + 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. @@ -1495,34 +1489,34 @@ - + 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'. @@ -1531,18 +1525,18 @@ Sababi: %2 - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed @@ -1553,88 +1547,88 @@ - + 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 @@ -1770,263 +1764,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. @@ -2222,503 +2216,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" @@ -2768,47 +2762,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 @@ -2857,27 +2851,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Usage: - + [options] [(<filename> | <url>)...] - + Options: - + Display program version and exit - + Display this help message and exit @@ -2888,130 +2882,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + 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 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 @@ -3400,22 +3394,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? @@ -3533,40 +3527,6 @@ 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 @@ -3957,12 +3917,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 @@ -3977,380 +3937,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 @@ -5844,47 +5804,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 @@ -6030,402 +5990,392 @@ 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. @@ -6434,37 +6384,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 @@ -6577,99 +6527,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: @@ -6679,22 +6629,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 @@ -6789,64 +6739,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 @@ -6866,50 +6816,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". @@ -6926,506 +6876,511 @@ 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 @@ -7435,12 +7390,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7460,183 +7415,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 @@ -7646,69 +7601,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. @@ -7719,18 +7674,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 @@ -7821,163 +7776,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 @@ -8254,6 +8209,39 @@ 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 @@ -8543,124 +8531,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: @@ -8668,33 +8656,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 @@ -8702,22 +8690,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. @@ -8766,12 +8754,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" @@ -8793,117 +8781,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Can't move a folder into itself or its subfolders. + 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. - - RSSController - - - Invalid 'refreshInterval' value - - - - - Feed doesn't exist: %1. - - - - - RSSFeedDialog - - - RSS Feed Options - - - - - URL: - - - - - Refresh interval: - - - - - sec - - - - - Default - - - RSSWidget @@ -9003,61 +8950,78 @@ 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 + + + + + + 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: @@ -9314,104 +9278,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') @@ -9436,94 +9400,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 @@ -9531,32 +9495,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" @@ -9954,77 +9918,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. - - 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 @@ -10560,17 +10514,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10937,34 +10891,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -10974,32 +10928,32 @@ Please choose a different name and try again. daq - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent - + Remove torrent and its content - + Enable super seeding for torrent @@ -11050,78 +11004,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 @@ -11141,39 +11095,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 @@ -11317,73 +11271,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 @@ -11872,319 +11826,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 @@ -12316,32 +12270,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 @@ -12433,72 +12387,72 @@ 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. - + 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' diff --git a/src/lang/qbittorrent_vi.ts b/src/lang/qbittorrent_vi.ts index 51153d440..3d171d278 100644 --- a/src/lang/qbittorrent_vi.ts +++ b/src/lang/qbittorrent_vi.ts @@ -74,7 +74,7 @@ Software Used - Phần Mềm Đã Dùng + Phần mềm Được sử dụng @@ -84,12 +84,12 @@ Copy to clipboard - Sao chép vào bảng tạm + Sao chép vào bộ nhớ tạm An advanced BitTorrent client programmed in C++, based on Qt toolkit and 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. + 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. @@ -231,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 @@ -364,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ả @@ -477,35 +477,35 @@ 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 + + + 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 @@ -567,7 +567,7 @@ Start torrent: - Bắt đầu torrent: + Chạy torrent: @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Kiểm tra lại torrent khi hoàn tất - - + + ms milliseconds ms @@ -699,686 +699,680 @@ 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ộ + Luồng I/O bất đồ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 Đính kèm hộp thoại "Thêm torrent mới" vào cửa sổ chính - + 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 - + -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 @@ -1425,64 +1419,64 @@ 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. @@ -1497,34 +1491,34 @@ 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'. @@ -1533,18 +1527,18 @@ 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 @@ -1555,88 +1549,88 @@ 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 @@ -1654,7 +1648,7 @@ WebAPI login failure. Reason: IP has been banned, IP: %1, username: %2 - Đăng nhập WebAPI thất bại. Lí do: IP đã bị ban, IP: %1, tên người dùng: %2 + Đăng nhập WebAPI thất bại. Lí do: IP đã bị cấm, IP: %1, tên đăng nhập: %2 @@ -1669,7 +1663,7 @@ WebAPI login failure. Reason: invalid credentials, attempt count: %1, IP: %2, username: %3 - Đăng nhập WebAPI thất bại. Lí do: chứng chỉ không hợp lệ, số lần thử: %1, IP: %2, tên người dùng: %3 + Đăng nhập WebAPI thất bại. Lí do: thông tin xác thực sai, số lần thử: %1, IP: %2, tên người dùng: %3 @@ -1773,263 +1767,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. @@ -2039,7 +2033,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also List of banned IP addresses - Danh sách các địa chỉ IP bị cấm + Danh sách địa chỉ IP bị cấm @@ -2099,12 +2093,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Corrupted resume data: %1 - + Dữ liệu tiếp tục lại bị hỏng: %1 save_path is invalid - + save_path không hợp lệ @@ -2186,12 +2180,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Corrupted resume data: %1 - + Dữ liệu tiếp tục lại bị hỏng: %1 save_path is invalid - + save_path không hợp lệ @@ -2225,503 +2219,503 @@ 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". - + 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 - + 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 - + 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" + Không thể cập nhật danh sách 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" + Đã từ chối địa chỉ IP không hợp lệ trong khi áp dụng danh sách đị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 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" - + Duplicate torrent - + Torrent trùng lặp - - - - 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" - + 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ệ" - + %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 - + 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" + Đã phát hiện IP 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" @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 phải nêu một cổng hợp lệ (1 tới 65535). - + Usage: Sử dụng: - + [options] [(<filename> | <url>)...] [tùy chọn] [(<filename> | <url>)...] - + Options: Tùy chọn: - + Display program version and exit Hiển thị phiên bản chương trình và thoát - + Display this help message and exit Hiển thị thông báo trợ giúp này và thoát @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Tham số '%1' phải theo cú pháp '%1=%2' - + Confirm the legal notice Xác nhận thông báo pháp lý - - + + port cổng - + Change the WebUI port Thay đổi cổng WebUI - + Change the torrenting port Thay đổi cổng torrent - + Disable splash screen - Tắt màn hình giật gân + Tắt màn hình chào mừng - + Run in daemon-mode (background) Chạy ở chế độ-daemon (nền) - + dir Use appropriate short form or abbreviation of "directory" dir - + Store configuration files in <dir> Lưu trữ các tệp cấu hình trong <dir> - - + + name tên - + Store configuration files in directories qBittorrent_<name> Lưu trữ các tệp cấu hình trong thư mục qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Tấn công vào tệp fastresume libtorrent và tạo đường dẫn tệp liên quan đến thư mục hồ sơ - + files or URLs tập tin hoặc URL - + Download the torrents passed by the user Tải xuống torrent được chấp thuận bởi người dùng - + Options when adding new torrents: Các tùy chọn khi thêm torrent mới: - + path đường dẫn - + Torrent save path Đường dẫn lưu torrent - + Add torrents as running or stopped Thêm torrent khi đang chạy hoặc đã dừng - + Skip hash check Bỏ qua kiểm tra băm - + Assign torrents to category. If the category doesn't exist, it will be created. Gán torrent cho danh mục. Nếu danh mục không tồn tại, nó sẽ được tạo. - + Download files in sequential order Tải về các tệp theo thứ tự tuần tự - + Download first and last pieces first Tải về phần đầu và phần cuối trước - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Chỉ định xem hộp thoại "Thêm Torrent mới" có mở khi thêm torrent hay không. - + 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: - Giá trị tùy chọn có thể được cung cấp qua các biến môi trường. Đối với tùy chọn tên 'parameter-name', tên biến môi trường là 'QBT_PARAMETER_NAME' (nếu viết hoa, '-' được thay bằng '_'). Để thông qua giá trị canh, đặt biến thành '1' hoặc 'TRUE'. Lấy ví dụ, để vô hiệu hóa màn hình khởi động: + Giá trị tùy chọn có thể được cung cấp qua các biến môi trường. Đối với tùy chọn tên 'parameter-name', tên biến môi trường là 'QBT_PARAMETER_NAME' (nếu viết hoa, '-' được thay bằng '_'). Để thông qua giá trị canh, đặt biến là '1' hoặc 'TRUE'. Ví dụ, để tắt màn hình chào mừng: - + Command line parameters take precedence over environment variables Tham số dòng lệnh được ưu tiên hơn giá trị môi trường - + Help Trợ giúp @@ -3137,12 +3131,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 Không tải được biểu định kiểu chủ đề tùy chỉnh. %1 - + Failed to load custom theme colors. %1 Không tải được màu chủ đề tùy chỉnh. %1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 Không tải được màu chủ đề mặc định. %1 @@ -3233,12 +3227,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Partial pieces - Mảnh bán phần + Mảnh chưa đủ Completed pieces - Các mảnh đã hoàn tất + Mảnh đã hoàn tất @@ -3403,22 +3397,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" Đang tải torrent... Nguồn: "%1" - + 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? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,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 @@ -3980,383 +3940,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 - + Search has failed Tìm kiếm thất bại - + Search has finished 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. 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 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ề - - + + 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 + Tốc độ tải xuống: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s 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 @@ -5850,47 +5810,47 @@ Yêu cầu tối thiểu: %2. 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 @@ -5945,7 +5905,7 @@ Yêu cầu tối thiểu: %2. Transfer List - Danh sách Trao đổi + Danh Sách Trao Đổi @@ -5961,7 +5921,7 @@ Yêu cầu tối thiểu: %2. Hide zero and infinity values - Ẩn các giá trị không và vô cùng + Ẩn các giá trị không và vô cực @@ -5988,7 +5948,7 @@ Yêu cầu tối thiểu: %2. No action - Không thao tác + Không có hành động @@ -6013,7 +5973,7 @@ Yêu cầu tối thiểu: %2. Show splash screen on start up - Hiển thị màn hình giới thiệu khi mới chạy + Hiển thị màn hình chào mừng khi khởi động @@ -6028,7 +5988,7 @@ Yêu cầu tối thiểu: %2. <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>Để đặt qBittorrent mặc định cho tệp .torrent và liên kết Magnet<br/>bạn có thể dùng hộp thoại <span style=" font-weight:600;">Chương Trình Mặc Định</span> từ<span style=" font-weight:600;">Bảng Điều Khiển</span>.</p></body></html> + <html><head/><body><p>Để đặt qBittorrent mặc định cho tệp .torrent và liên kết Magnet<br/>bạn có thể dùng hộp thoại <span style=" font-weight:600;">Chương Trình Mặc Định</span> từ <span style=" font-weight:600;">Bảng Điều Khiển</span>.</p></body></html> @@ -6036,175 +5996,175 @@ Yêu cầu tối thiểu: %2. 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) - + 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 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 @@ -6213,190 +6173,180 @@ 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 - + 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ẻ - + 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: - + 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. @@ -6405,37 +6355,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: + Cấm máy khách sau khi thất bại liên tiếp: - + Never Không bao giờ - + ban for: - cấm: + cấm vì: - + Session timeout: Thời gian chờ phiên: - + Disabled Vô hiệu hóa - + 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. @@ -6448,37 +6398,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 @@ -6532,7 +6482,7 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng Open torrent options dialog - Hộp thoại Tùy chọn torrent mở + Mở hộp thoại tùy chọn torrent @@ -6591,99 +6541,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 + Hiển thị IP 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: @@ -6693,22 +6643,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 - + 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 @@ -6803,65 +6753,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 - + 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 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 - + 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 + + + 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... + Các địa chỉ IP bị cấm 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 - + 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; @@ -7462,12 +7417,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): @@ -7487,185 +7442,185 @@ 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> + Khi bật các tùy chọn này, qBittorrent sẽ <strong>xóa</strong> tệp .torrent sau khi đã thêm vào hàng đợi tải về thành công (tùy chọn 1) hoặc thất bại (tùy chọn 2). 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> @@ -7673,69 +7628,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. @@ -7746,18 +7701,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 @@ -7848,163 +7803,163 @@ readme[0-9].txt: lọc 'readme1.txt', 'readme2.txt' nhưng k 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? + Bạn có chắc muốn cấm vĩnh viễn các 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 + Máy ngang hàng "%1" bị cấm thủ công - + N/A - Không áp dụng + Không - + Copy IP:port Sao chép IP:cổng @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Các plugin đó đã bị vô hiệu hóa. Không có quyền ghi ở đường dẫn + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 + Không - + Yes Đồng Ý - + No - Không Đồng Ý + Khô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. - + 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 - + Web seed editing Đang chỉnh sửa seed Web - + Web seed URL: Đường liên kết seed Web: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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ó. @@ -8794,12 +8791,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" @@ -8821,117 +8818,76 @@ Các plugin đó đã bị vô hiệu hóa. - + Item doesn't exist: %1. Mục không tồn tại: %1. - Can't move a folder into itself or its subfolders. - + Couldn't move folder into itself. + Không thể di chuyển thư mục vào chính nó. - + 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. + Không thể tải nguồn RSS. Nguồn: "%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: - Khoảng thời gian làm mới: - - - - sec - giây - - - - Default - Mặc định - - RSSWidget @@ -9031,61 +8987,101 @@ 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 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 + + + + + Feed URL: + 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? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + 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ả: @@ -9199,142 +9195,168 @@ Các plugin đó đã bị vô hiệu hóa. Kích cỡ: - + Name i.e: file name Tên - + Size i.e: file size Kích cỡ - + Seeders i.e: Number of full sources Máy chia sẻ - + Leechers i.e: Number of partial sources Người leech - + Filter search results... Lọc kết quả tìm kiếm... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Kết quả (đang hiện <i>%1</i> trong tổng số <i>%2</i>): - + Torrent names only Chỉ tên torrent - + Everywhere Mọi nơi - + Use regular expressions Sử dụng biểu thức chính quy - + Open download window Mở cửa sổ tải xuống - + Download Tải về - + Open description page Mở trang mô tả - + Copy Sao chép - + Name Tên - + Download link Liên kết tải xuống - + Description page URL URL trang mô tả - + Searching... Đang tìm kiếm... - + Search has finished Tìm kiếm đã kết thúc - + Search aborted Tìm kiếm bị hủy bỏ - + An error occurred during search... Đã xảy ra lỗi khi tìm kiếm... - + Search returned no results Tìm kiếm không trả về kết quả - + Engine Máy - + Engine URL URL Máy - + Published On Đã Xuất Bản Lúc - + 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 @@ -9342,104 +9364,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') @@ -9465,94 +9487,94 @@ 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ệ. - + <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 @@ -9560,32 +9582,32 @@ Nhấp vào nút "Tìm kiếm plugin ..." ở dưới cùng bên phả 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" @@ -9983,77 +10005,67 @@ 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. - - 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 - - Free space: - - - - + External IPs: %1, %2 - IP bên ngoài: %1, %2 + IP 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 @@ -10487,7 +10499,7 @@ Vui lòng chọn một tên khác và thử lại. N/A - Không áp dụng + Không @@ -10592,17 +10604,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. @@ -10969,34 +10981,34 @@ Vui lòng chọn một tên khác và thử lại. TorrentShareLimitsWidget - - - + + + Default Mặc định - - + + Unlimited Không giới hạn - - + + Set to Đặt là - + Seeding time: Thời gian Seeding: - - + + @@ -11006,32 +11018,32 @@ Vui lòng chọn một tên khác và thử lại. phút - + Inactive seeding time: Thời gian seeding không hoạt động: - + 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 - + 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 @@ -11082,78 +11094,78 @@ 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 @@ -11173,39 +11185,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 @@ -11354,73 +11366,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 @@ -11891,7 +11903,7 @@ Vui lòng chọn một tên khác và thử lại. N/A - Không áp dụng + Không @@ -11909,319 +11921,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 - + 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ỗ. - + 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ệ - + 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 - + Super seeding mode Chế độ siêu chia sẻ @@ -12276,18 +12288,18 @@ Vui lòng chọn một tên khác và thử lại. Không thể áp dụng đầy đủ các thay đổi Giao diện UI. Chi tiết có thể tìm trong Nhật ký. - + Couldn't save UI Theme configuration. Reason: %1 Không thể lưu cấu hình Giao diện UI. Lý do: %1 - - + + Couldn't remove icon file. File: %1. Không thể xóa tệp biểu tượng. Tệp: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. Không thể sao chép tệp biểu tượng. Nguồn: %1. Đích: %2. @@ -12353,32 +12365,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 @@ -12470,72 +12482,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: Tiêu đề nguồn gốc & Nguồn gốc mục tiêu không khớp! IP nguồn: '%1'. Tiêu đề gốc: '%2'. Nguồn gốc mục tiêu: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: Tiêu đề giới thiệu và nguồn gốc mục tiêu không khớp! IP nguồn: '%1'. Tiêu đề giới thiệu: '%2'. Nguồn gốc mục tiêu: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI: Tiêu đề máy chủ lưu trữ không hợp lệ, cổng không khớp. Yêu cầu IP nguồn: '%1'. Cổng máy chủ: '%2'. Tiêu đề Máy chủ đã nhận: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI: Tiêu đề máy chủ lưu trữ không hợp lệ. Yêu cầu IP nguồn: '%1'. Tiêu đề Máy chủ đã nhận: '%2' diff --git a/src/lang/qbittorrent_zh_CN.ts b/src/lang/qbittorrent_zh_CN.ts index 33ac2337a..7301a08d8 100644 --- a/src/lang/qbittorrent_zh_CN.ts +++ b/src/lang/qbittorrent_zh_CN.ts @@ -231,25 +231,25 @@ 停止条件: - - + + None - - + + Metadata received 已收到元数据 - + Torrents that have metadata initially will be added as stopped. 最开始就有元数据的 Torrent 文件被添加后将处在停止状态 + - Files checked 文件已被检查 @@ -364,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 元数据检索完成 @@ -477,35 +477,35 @@ 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 + + + 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 - 检测到尝试添加重复的种子文件。来源:%1.。现有种子:"%2"。种子 infohash 值:%3。结果:%4 - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion 完成后重新校验 Torrent - - + + ms milliseconds 毫秒 @@ -699,686 +699,680 @@ - + (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:监听端口] + 报告给 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 将“添加新 torrent 文件”对话框附到主窗口 - + 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 端口 @@ -1425,64 +1419,64 @@ 使用配置目录:%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,请手动编辑配置文件。 @@ -1497,34 +1491,34 @@ 运行外部程序失败。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'. @@ -1533,18 +1527,18 @@ 原因:%2 - + Torrent added 已添加 Torrent - + '%1' was added. e.g: xxx.avi was added. 已添加 “%1”。 - + Download completed 下载完成 @@ -1555,88 +1549,88 @@ 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 现在准备好退出了 @@ -1773,263 +1767,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. 将排除所有文章。 @@ -2225,503 +2219,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... 检测到系统唤醒事件。正重新向所有 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”。 - + 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 已禁用 - + Trackers cannot be merged because it is a private torrent 无法合并 Tracker,因为这是一个私有 Torrent - + Trackers are merged from new source 来自新来源的 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” + 更新 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 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 - 检测到尝试添加重复的种子。现有种子:"%1"。种子 infohash 值:%2。结果:%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” - + 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”。错误:“无效数据格式” - + %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" 收到了来自 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” @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 必须指定一个有效的端口号(1 - 65535)。 - + Usage: 使用: - + [options] [(<filename> | <url>)...] [options] [(<filename> | <url>)...] - + Options: 设定: - + Display program version and exit 显示程序版本并退出 - + Display this help message and exit 显示帮助信息并退出 @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 参数 “%1” 必须符合语法 “%1=%2” - + Confirm the legal notice 确认法律注意事项 - - + + port 端口 - + Change the WebUI port 更改 WebUI 端口 - + 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> 保存配置文件于 <dir> - - + + name 名称 - + Store configuration files in directories qBittorrent_<name> 保存配置文件于 qBittorrent_<name> 文件夹 - + Hack into libtorrent fastresume files and make file paths relative to the profile directory 将修改 libtorrent 的快速恢复文件并使文件路径相对于设置文件夹 - + files or URLs 文件或 URL - + Download the torrents passed by the user 下载用户传入的 Torrent - + Options when adding new torrents: 添加新的 Torrent 时的选项: - + path 路径 - + Torrent save path Torrent 保存路径 - + Add torrents as running or stopped 以运行或停止状态添加多个 torrent - + Skip hash check 跳过哈希校验 - + Assign torrents to category. If the category doesn't exist, it will be created. 指定 Torrent 的分类。如果分类不存在,则会创建它。 - + Download files in sequential order 按顺序下载文件 - + Download first and last pieces first 先下载首尾文件块 - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. 指定在添加 Torrent 时是否开启“新建 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: 选项的值可以通过环境变量设置。例如选项的名称为 “parameter-name”,那么它的环境变量名为 “QBT_PARAMETER_NAME”(字符大写,使用 “_” 替换 “-”)。若要指定标记的值,将值设置为 “1” 或 “TRUE”。例如,若要禁用启动画面: - + Command line parameters take precedence over environment variables 命令行参数将覆盖环境变量 - + Help 帮助 @@ -3137,12 +3131,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 未能加载自定义主题样式表:%1 - + Failed to load custom theme colors. %1 未能加载自定义主题颜色:%1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 未能加载默认主题颜色:%1 @@ -3403,22 +3397,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. 无法合并 Tracker,因为这是一个私有 Torrent - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent “%1” 已经在传输列表中。你想合并来自新来源的 Tracker 吗? @@ -3536,40 +3530,6 @@ 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. - 电源管理错误、未找到合适的 D-Bus 接口。 - - - - - - Power management error. Action: %1. Error: %2 - 电源管理错误。操作:%1。错误:%2 - - - - Power management unexpected error. State: %1. Error: %2 - 电源管理异常错误。状态:%1.。错误:%2 - - - - InhibitorMacOS - - - PMMacOS - qBittorrent is active - PMMacOS - - LegalNotice @@ -3780,7 +3740,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - 关闭系统(&U) + 关闭系统(&U) @@ -3840,7 +3800,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also R&esume Session - 恢复会话(&E) + 恢复会话(&E) @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 显示 - + Check for program updates 检查程序更新 @@ -3980,383 +3940,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。 -请手动安装。 + 无法下载 Python 安装程序。 +错误:%1。请手动安装。 - + Rename Python installer failed. Source: "%1". Destination: "%2". 无法重命名 Python 安装程序。源:“%1”。目标:“%2”。 - + Python installation success. 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 安装进行中… + 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”。 + Python 安装程序的 SHA3-512 哈希值检查失败。文件:“%1”。哈希值结果:“%2”。期望哈希值:“%3”。 - + Download error 下载出错 - - + + 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 文件 @@ -4799,7 +4759,7 @@ Minimum requirement: %2. China - 中国 + 中国大陆 @@ -5029,7 +4989,7 @@ Minimum requirement: %2. Hong Kong - 香港 + 香港特别行政区 @@ -5669,7 +5629,7 @@ Minimum requirement: %2. Macao - 澳门 + 澳门特别行政区 @@ -5850,47 +5810,47 @@ Minimum requirement: %2. 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 @@ -6036,175 +5996,175 @@ Minimum requirement: %2. 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 完成时运行: + Torrent 完成时运行: - + Peer connection protocol: Peer 连接协议: - + 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 对 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 @@ -6213,190 +6173,180 @@ 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 达到不活跃做种时间时 - + 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 做种限制 - + 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. @@ -6405,37 +6355,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 禁用 - + 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. @@ -6448,37 +6398,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) @@ -6573,7 +6523,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. &Log Files - 日志文件(&L) + 日志文件(&L) @@ -6591,99 +6541,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 文件到: @@ -6693,22 +6643,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.在通知区域显示 qBittorrent(&Q) - + 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 为所有文件预分配磁盘空间 @@ -6803,65 +6753,65 @@ 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 添加 .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 根据适当的分类路径而不是默认路径解析相对的保存路径 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 运行外部程序 - + 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 更改当前密码 - + 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或本地连接) + 启用 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 文件。 @@ -7462,12 +7417,12 @@ readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “r 选择 qBittorrent 界面主题文件 - + Choose Alternative UI files location 选择备用的 UI 文件位置 - + Supported parameters (case sensitive): 支持的参数(区分大小写): @@ -7487,183 +7442,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>打开的文件。 @@ -7673,69 +7628,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 条规则已应用。 @@ -7746,18 +7701,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 长度错误 @@ -7848,163 +7803,163 @@ readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “r 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:端口 @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Those plugins were disabled. 没有写入路径的权限 + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 种子已在此列表中。 - + 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 您可以在“高级选项”中启用它 - + Web seed editing 编辑 Web 种子 - + Web seed URL: Web 种子 URL: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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”。开始解析。 @@ -8794,12 +8791,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” @@ -8821,117 +8818,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. 项目不存在:%1。 - Can't move a folder into itself or its subfolders. - 无法移动文件夹到其自身或其子文件夹中 + Couldn't move folder into itself. + 文件夹移动的起点和终点不能相同 - + 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 - RSS 源选项 - - - - URL: - 网址: - - - - Refresh interval: - 刷新间隔 - - - - sec - - - - - Default - 默认 - - RSSWidget @@ -9031,61 +8987,101 @@ Those plugins were disabled. - Feed options... - 源选项... + Edit feed URL... + 编辑源 URL... - + + Edit feed URL + 编辑源 URL + + + Please choose a folder name 请指定文件夹名 - + Folder name: 文件夹名: - + New folder 新建文件夹 - + + + Please type a RSS feed URL + 请输入一个 RSS 订阅地址 + + + + + Feed URL: + 订阅源 URL: + + + Deletion confirmation 确认删除 - + Are you sure you want to delete the selected RSS feeds? 您确定要删除所选的 RSS 订阅吗? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed 请重命名该 RSS 订阅源 - + New feed name: 新订阅源名称: - + Rename failed 重命名失败 - + Date: 日期: - + Feed: 订阅源: - + Author: 作者: @@ -9199,142 +9195,168 @@ Those plugins were disabled. 大小: - + Name i.e: file name 名称 - + Size i.e: file size 大小 - + Seeders i.e: Number of full sources 做种 - + Leechers i.e: Number of partial sources 下载 - + Filter search results... 过滤搜索结果... - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results 结果(显示 <i>%1</i> 条,共 <i>%2</i> 条): - + Torrent names only 仅 Torrent 名称 - + Everywhere 任意位置 - + Use regular expressions 使用正则表达式 - + Open download window 打开下载窗口 - + Download 下载 - + Open description page 打开描述页 - + Copy 复制 - + Name 名称 - + Download link 下载链接 - + Description page URL 描述页 URL - + Searching... 搜索... - + Search has finished 搜索已完成 - + Search aborted 搜索中止 - + An error occurred during search... 搜索期间发生错误... - + Search returned no results 搜索未返回任何结果 - + Engine 引擎 - + Engine URL 引擎 URL - + Published On 发布于 - + Column visibility 显示列 - + Resize columns 调整列大小 - + Resize all non-hidden columns to the size of their contents 将所有非隐藏列的大小调整为其内容的大小 @@ -9342,104 +9364,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') @@ -9465,94 +9487,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 <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 停止 @@ -9560,32 +9582,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" 加载搜索用户界面已保存的状态数据失败。文件:“%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” @@ -9983,77 +10005,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. 无直接连接。这也许表明网络设置存在问题。 - - Free space: N/A - 可用空间: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 联机 - - 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 点击以切换到常规速度限制 @@ -10592,17 +10604,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks 活跃任务太多了 - + Torrent creation is still unfinished. 仍未完成 Torrent 创建 - + Torrent creation failed. Torrent 创建失败了。 @@ -10969,34 +10981,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default 默认 - - + + Unlimited 无限制的 - - + + Set to 已设为 - + Seeding time: 做种时间: - - + + @@ -11006,32 +11018,32 @@ Please choose a different name and try again. 分钟 - + Inactive seeding time: 不活跃的做种时间: - + Action when the limit is reached: 达到限制时采取的操作: - + Stop torrent 停止 torrent - + Remove torrent 删除 torrent - + Remove torrent and its content 删除 torrent 及其内容 - + Enable super seeding for torrent 为 torrent 启用超级做种 @@ -11082,78 +11094,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 无法保存路径 @@ -11173,39 +11185,39 @@ Please choose a different name and try again. “sort” 参数无效 - + "%1" is not an existing URL - URL “%1” 不存在 + “%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" Web UI 设置路径:从 "%2" 移动 "%1" 至 "%3" - + Incorrect torrent name 不正确的 torrent 名称 - - + + Incorrect category name 不正确的分类名 @@ -11354,73 +11366,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 显示列 @@ -11909,319 +11921,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 已选中的 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 管理吗?它们可能会被移动到新位置。 - + 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' 无效 - + 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 属性(例如保存路径)将由相关的分类决定 - + Super seeding mode 超级做种模式 @@ -12276,18 +12288,18 @@ Please choose a different name and try again. 无法完全应用用户界面主题更改。详情见日志。 - + Couldn't save UI Theme configuration. Reason: %1 无法保存用户界面主题配置。原因:%1 - - + + Couldn't remove icon file. File: %1. 无法删除图标文件。文件:%1。 - + Couldn't copy icon file. Source: %1. Destination: %2. 无法复制图标文件。来源:%1。目标:%2。 @@ -12353,32 +12365,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 可执行文件失败 @@ -12470,72 +12482,72 @@ 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 服务器错误:未知错误。 - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI: 请求 Header 中 Origin 与 XFH/Host 不匹配!来源 IP: '%1'。Origin: '%2'。XFH/Host: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI: 请求 Header 中 Referer 与 XFH/Host 不匹配!来源 IP: '%1'。Referer: '%2'。XFH/Host: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI:无效的 Host header,端口不匹配。请求的来源 IP:“%1”。服务器端口:“%2”。收到的 Host header:“%3” - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI:无效的 Host header。请求的来源 IP:“%1”。收到的 Host header:“%2” diff --git a/src/lang/qbittorrent_zh_HK.ts b/src/lang/qbittorrent_zh_HK.ts index 007ab5fd8..e237f118f 100644 --- a/src/lang/qbittorrent_zh_HK.ts +++ b/src/lang/qbittorrent_zh_HK.ts @@ -231,25 +231,25 @@ 停止條件: - - + + None - - + + Metadata received 收到的元資料 - + Torrents that have metadata initially will be added as stopped. + - Files checked 已檢查的檔案 @@ -364,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 完成檢索元資料 @@ -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,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion 完成後重新檢查Torrent - - + + ms milliseconds 毫秒 @@ -699,686 +699,680 @@ - + (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 嵌入式追蹤器埠 @@ -1425,64 +1419,64 @@ 正在使用設定目錄:%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. @@ -1497,34 +1491,34 @@ - + 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'. @@ -1533,18 +1527,18 @@ 理由:「%2」 - + Torrent added 已新增 Torrent - + '%1' was added. e.g: xxx.avi was added. 「%1」已新增。 - + Download completed 下載完成 @@ -1555,88 +1549,88 @@ - + 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 已準備好關閉 @@ -1773,263 +1767,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. 將排除全部文章。 @@ -2225,503 +2219,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」。 - + 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 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」 - + 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 已停用 - + 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」 @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1須指向有效的埠(1到65535)。 - + Usage: 用量: - + [options] [(<filename> | <url>)...] [選項] [(<filename> | <url>)...] - + Options: 選項: - + Display program version and exit 顯示程式版本並離開 - + Display this help message and exit 顯示此說明訊息並離開 @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 參數「%1」須跟從句子結構「%1=%2」 - + Confirm the legal notice - - + + port - + Change the WebUI port - + Change the torrenting port 變更 torrenting 通訊埠 - + Disable splash screen 不要顯示開始畫面 - + Run in daemon-mode (background) 以守護模式啟動(背景執行) - + dir Use appropriate short form or abbreviation of "directory" 路徑 - + Store configuration files in <dir> 儲存設定檔到<dir> - - + + name 名稱 - + Store configuration files in directories qBittorrent_<name> 儲存設定檔到資料夾qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory 強行存取libtorrent快速復原檔,使檔案路徑關聯到設定檔存放位置 - + files or URLs 檔案或網址 - + Download the torrents passed by the user 下載用戶批准的Torrent - + Options when adding new torrents: 加入新Torrent的選項: - + path 路徑 - + Torrent save path Torrent儲存路徑 - + Add torrents as running or stopped - + Skip hash check 略過雜湊值檢查 - + Assign torrents to category. If the category doesn't exist, it will be created. 指派Torrent到分類。如果分類不存在,將建立分類。 - + Download files in sequential order 按順序下載檔案 - + Download first and last pieces first 先下載首片段和最後片段 - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. 指示加入Torrent時是否開啟「加入新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: 選項的值可以經由環境變數提供。選項是「parameter-name」時,環境變數名稱將會是「QBT_PARAMETER_NAME」(全大楷,並以「_」取代「-」)。要實現旗號值,設定變數為「1」或「TRUE」。例如「不要顯示開始畫面」就是: - + Command line parameters take precedence over environment variables 指令行參數凌駕環境變數 - + Help 說明 @@ -3137,12 +3131,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 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -3403,22 +3397,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」已經在傳輸清單中。您想合併來自新來源的追蹤者嗎? @@ -3536,40 +3530,6 @@ 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 @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 顯示 - + Check for program updates 檢查程式更新 @@ -3980,382 +3940,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 下載錯誤 - - + + 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檔 @@ -5849,47 +5809,47 @@ Minimum requirement: %2. 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 @@ -6035,175 +5995,175 @@ Minimum requirement: %2. 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 @@ -6212,190 +6172,180 @@ 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 - + 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 做種限制 - + 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. @@ -6404,37 +6354,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 已停用 - + 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. @@ -6447,37 +6397,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 更新動態域名 @@ -6590,99 +6540,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」檔到: @@ -6692,22 +6642,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.工作列通知區域顯示qBittorrent圖示 - + 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 預先分配檔案的磁碟空間 @@ -6802,65 +6752,65 @@ 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 是否於加入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 根據適當的分類路徑而非預設路徑解析相對儲存路徑 @@ -6880,50 +6830,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". @@ -6952,506 +6902,511 @@ 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 執行外部程式 - + 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 更改目前密碼 - + 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>」按鈕。 @@ -7461,12 +7416,12 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 選取 qBittorrent UI 佈景主題檔案 - + Choose Alternative UI files location 選取後備Web UI遠端控制的檔案位置 - + Supported parameters (case sensitive): 支援的參數(大小楷視為不同): @@ -7486,183 +7441,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>開啟的檔案。 @@ -7672,69 +7627,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個規則。 @@ -7745,18 +7700,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 長度錯誤 @@ -7847,163 +7802,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:埠」 @@ -8280,6 +8235,39 @@ 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 + + + PreviewSelectDialog @@ -8361,6 +8349,15 @@ Those plugins were disabled. 沒有寫入路徑的權限 + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8569,124 +8566,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. - + 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種子 - + Web seed URL: Web種子網址: @@ -8694,33 +8691,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 @@ -8728,22 +8725,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 已成功下載。開始解析它。 @@ -8792,12 +8789,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」 @@ -8819,117 +8816,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. 項目不存在:%1。 - Can't move a folder into itself or its subfolders. + 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. 無法載入 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 @@ -9029,61 +8985,101 @@ 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 Feed網址 + + + + + Feed URL: + RSS Feed網址: + + + Deletion confirmation 確認刪除 - + Are you sure you want to delete the selected RSS feeds? 刪除所選RSS Feed,確定? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed 請為此RSS Feed選取新名稱 - + New feed name: 新RSS Feed名稱: - + Rename failed 重新命名失敗 - + Date: 日期: - + Feed: - + Author: 作者: @@ -9197,142 +9193,168 @@ Those plugins were disabled. 大小: - + Name i.e: file name 名稱 - + Size i.e: file size 大小 - + Seeders i.e: Number of full sources 完整種子 - + Leechers i.e: Number of partial sources 同路人 - + Filter search results... 過濾搜尋結果… - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results 搜尋結果(顯示<i>%2</i>個其中<i>%1</i>個): - + Torrent names only 僅Torrent名 - + Everywhere 全部 - + Use regular expressions 使用正規表示法 - + Open download window 開啟下載視窗 - + Download 下載 - + Open description page 開啟描述頁面 - + Copy 複製 - + Name 名稱 - + Download link 下載連結 - + Description page URL 描述頁面的 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 調整所有非隱藏欄位與其內容的大小 @@ -9340,104 +9362,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」) @@ -9463,94 +9485,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 <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 停止 @@ -9558,32 +9580,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" @@ -9981,77 +10003,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. 沒有直接連接。表示你的網絡設定可能有問題。 - - 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 按下切換到正常速度限制 @@ -10590,17 +10602,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10967,34 +10979,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default 預設 - - + + Unlimited - - + + Set to - + Seeding time: - - + + @@ -11004,32 +11016,32 @@ Please choose a different name and try again. 分鐘 - + Inactive seeding time: - + Action when the limit is reached: - + Stop torrent - + Remove torrent 移除 torrent - + Remove torrent and its content - + Enable super seeding for torrent 為 torrent 啟用超級做種 @@ -11080,78 +11092,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 無法建立儲存路徑 @@ -11171,39 +11183,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 錯誤分類名稱 @@ -11352,73 +11364,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 欄位顯示 @@ -11907,319 +11919,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 所選的 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 管理嗎?它們可能會被重新安置。 - + 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」無效 - + 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屬性(例如儲存路徑)將由相關分類決定 - + Super seeding mode 超級種子模式 @@ -12274,18 +12286,18 @@ Please choose a different name and try again. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -12351,32 +12363,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 @@ -12468,72 +12480,72 @@ 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. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Web UI遠端控制:來源標頭和目標來源不相符。來源IP:「%1」╱來源標頭:「%2」╱目標來源:「%3」 - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Web UI遠端控制:參照標頭和目標來源不相符。來源IP:「%1」╱參照標頭:「%2」╱目標來源:「%3」 - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Web UI遠端控制:無效主機標頭、埠不相符。請求的來源IP:「%1」╱伺服器埠:「%2」╱接收的主機標頭:「%3」 - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Web UI遠端控制:無效主機標頭。請求的來源IP:「%1」╱接收的主機標頭:「%2」 diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts index 844628614..a38948b75 100644 --- a/src/lang/qbittorrent_zh_TW.ts +++ b/src/lang/qbittorrent_zh_TW.ts @@ -231,25 +231,25 @@ 停止條件: - - + + None - - + + Metadata received 收到的詮釋資料 - + Torrents that have metadata initially will be added as stopped. 一開始就有詮釋資料的 torrent 將被新增為已停止。 + - Files checked 已檢查的檔案 @@ -364,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 詮釋資料檢索完成 @@ -477,35 +477,35 @@ 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 + + + 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 - 偵測到新增重複 torrent 的嘗試。來源:%1。既有的 torrent:「%2」。Torrent inforhash:%3。結果:%4 - AddTorrentParamsWidget @@ -668,21 +668,21 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion 完成後重新檢查 torrent - - + + ms milliseconds ms @@ -699,686 +699,680 @@ - + (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 將「新增 torrent」對話方塊附加到主視窗 - + 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 嵌入追蹤者埠 @@ -1425,64 +1419,64 @@ 正在使用設定目錄:%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,請手動編輯設定檔。 @@ -1497,34 +1491,34 @@ 無法執行外部程式。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'. @@ -1533,18 +1527,18 @@ 原因:「%2」 - + Torrent added 已新增 Torrent - + '%1' was added. e.g: xxx.avi was added. 「%1」已新增。 - + Download completed 下載完成 @@ -1555,88 +1549,88 @@ 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 已準備好關閉 @@ -1773,263 +1767,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. 將會排除所有文章。 @@ -2225,503 +2219,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... 偵測到系統喚醒事件。正重新向所有 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」。 - + 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 已停用 - + Trackers cannot be merged because it is a private torrent 因為這是私有的 torrent,所以無法合併 tracker - + Trackers are merged from new source 已經合併來自新來源的 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 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 重複的 torrent - - - - Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - 偵測到新增重複 torrent 的嘗試。既有的 torrent:「%1」。Torrent inforhash:%2。結果:%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」 - + 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」。錯誤:「無效的資料格式」 - + %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" 從 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」 @@ -2771,47 +2765,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 @@ -2860,27 +2854,27 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 必須指定有效的埠 (1 到 65535)。 - + Usage: 使用: - + [options] [(<filename> | <url>)...] [選項] [(<filename> | <url>)...] - + Options: 選項: - + Display program version and exit 顯示程式版本並結束 - + Display this help message and exit 顯示這說明訊息並結束 @@ -2891,130 +2885,130 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 參數「%1」必須使用語法「%1=%2」 - + Confirm the legal notice 確認法律聲明 - - + + port - + Change the WebUI port 變更 WebUI 連接埠 - + Change the torrenting port 變更 torrenting 連接埠 - + Disable splash screen 停用起始畫面 - + Run in daemon-mode (background) 以守護模式開啟 (背景執行) - + dir Use appropriate short form or abbreviation of "directory" 目錄 - + Store configuration files in <dir> 儲存設定檔到 <dir> - - + + name 名稱 - + Store configuration files in directories qBittorrent_<name> 儲存設定檔到目錄 qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory 強制修改 libtorrent 快速復原檔案,並設定檔案路徑為設定檔目錄的相對路徑 - + files or URLs 檔案或 URL - + Download the torrents passed by the user 下載由使用者傳遞的 torrent - + Options when adding new torrents: 當新增 torrent 時的選項: - + path 路徑 - + Torrent save path Torrent 儲存路徑 - + Add torrents as running or stopped 新增正在執行或已停止的 torrent - + Skip hash check 略過雜湊值檢查 - + Assign torrents to category. If the category doesn't exist, it will be created. 指派 torrent 到分類。若分類不存在,其將會被建立。 - + Download files in sequential order 依順序下載檔案 - + Download first and last pieces first 先下載第一和最後一塊 - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. 指定是否要在新增 torrent 時開啟「新增 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: 選項的值可以透過環境變數提供。選項名為「parameter-name」時,環境變數將會名為「QBT_PARAMETER_NAME」(全大寫,並以「_」替代「-」)。要傳遞旗標值,設定變數為「1」或「TRUE」。舉例來說,要「停用起始畫面」就是: - + Command line parameters take precedence over environment variables 命令列的參數優先於環境變數 - + Help 說明 @@ -3137,12 +3131,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 載入自訂佈景主題樣式表失敗。%1 - + Failed to load custom theme colors. %1 載入自訂佈景主題色彩。%1 @@ -3150,7 +3144,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 載入預設佈景主題色彩失敗。%1 @@ -3403,22 +3397,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,所以無法合併 tracker。 - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent「%1」已經在傳輸清單中。您想合併來自新來源的追蹤者嗎? @@ -3536,40 +3530,6 @@ 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. - 電源管理錯誤。找不到合適的 D-Bus 介面。 - - - - - - Power management error. Action: %1. Error: %2 - 電源管理錯誤。動作:%1。錯誤:%2 - - - - Power management unexpected error. State: %1. Error: %2 - 電源管理非預期的錯誤。狀態:%1。錯誤:%2 - - - - InhibitorMacOS - - - PMMacOS - qBittorrent is active - PMMacOS - - LegalNotice @@ -3780,7 +3740,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - 關機 (&U) + 關機(&U) @@ -3960,12 +3920,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 顯示 - + Check for program updates 檢查軟體更新 @@ -3980,383 +3940,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. 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 下載錯誤 - - + + 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 檔案 @@ -5850,47 +5810,47 @@ Minimum requirement: %2. 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 @@ -6036,175 +5996,175 @@ Minimum requirement: %2. 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(實驗性) - + 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 @@ -6213,190 +6173,180 @@ 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 當不活躍種子時間達到 - + 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 種子限制 - + 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: - + 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. @@ -6405,37 +6355,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 已停用 - + 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. @@ -6448,37 +6398,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) @@ -6591,99 +6541,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 檔案到: @@ -6693,22 +6643,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.在通知區域顯示 qBittorrent (&Q) - + 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 為所有檔案預先分配磁碟空間 @@ -6803,65 +6753,65 @@ 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 新增後是否應刪除 .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 根據適當的分類路徑而非預設路徑解析相對儲存路徑 @@ -6881,50 +6831,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". @@ -6953,506 +6903,511 @@ 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 執行外部程式 - + 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 變更目前的密碼 - + 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>。 @@ -7462,12 +7417,12 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 選取 qBittorrent UI 佈景主題檔案 - + Choose Alternative UI files location 選擇替補 UI 檔案位置 - + Supported parameters (case sensitive): 支援的參數 (區分大小寫): @@ -7487,183 +7442,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>開啟的檔案。 @@ -7673,69 +7628,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 個規則。 @@ -7746,18 +7701,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 長度錯誤 @@ -7848,163 +7803,163 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 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:埠 @@ -8282,6 +8237,39 @@ 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 @@ -8363,6 +8351,15 @@ Those plugins were disabled. 沒有寫入路徑的權限 + + ProgramUpdater + + + + Failed to download the update info. URL: %1. Error: %2 + + + PropTabBar @@ -8571,124 +8568,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 種子已經在清單裡了。. - + 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 您可以在進階選項中啟用它 - + Web seed editing 編輯網頁種子中 - + Web seed URL: 網頁種子 URL: @@ -8696,33 +8693,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 @@ -8730,22 +8727,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 已成功下載。開始解析它。 @@ -8794,12 +8791,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」 @@ -8821,117 +8818,76 @@ Those plugins were disabled. - + Item doesn't exist: %1. 項目不存在:%1。 - Can't move a folder into itself or its subfolders. - 無法將資料夾移動到自身或其子資料夾中。 + Couldn't move folder into itself. + 無法將資料夾移動到自己裡面。 - + 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 - RSS Feed 選項 - - - - URL: - URL: - - - - Refresh interval: - 重新整理間隔 - - - - sec - - - - - Default - 預設 - - RSSWidget @@ -9031,61 +8987,101 @@ Those plugins were disabled. - Feed options... - Feed 選項…… + Edit feed URL... + 編輯 feed URL…… - + + Edit feed URL + 編輯 feed URL + + + Please choose a folder name 請選擇資料夾名稱 - + Folder name: 資料夾名稱: - + New folder 新資料夾 - + + + Please type a RSS feed URL + 請輸入一個 RSS feed URL + + + + + Feed URL: + Feed URL: + + + Deletion confirmation 刪除確認 - + Are you sure you want to delete the selected RSS feeds? 您確定要刪除選取的 RSS feed 嗎? - + + Blocked opening RSS article URL. URL pointing to local file might be malicious behaviour. Article: "%1". URL: "%2". + + + + + Blocked opening RSS article URL. The following article URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + + There are %1 more articles with the same issue. + + + + + The following article has no news URL provided: +%1 + + + + Please choose a new name for this RSS feed 請為這個 RSS feed 選擇新名稱 - + New feed name: 新 feed 名稱: - + Rename failed 無法重新命名 - + Date: 日期: - + Feed: Feed: - + Author: 作者: @@ -9199,142 +9195,168 @@ Those plugins were disabled. 大小: - + Name i.e: file name 名稱 - + Size i.e: file size 大小 - + Seeders i.e: Number of full sources 種子 - + Leechers i.e: Number of partial sources 下載者 - + Filter search results... 過濾搜尋結果… - + + Blocked opening search result description page URL. URL pointing to local file might be malicious behaviour. Name: "%1". URL: "%2". + + + + + Blocked opening search result description page URL. The following result URL is pointing to local file and it may be malicious behaviour: +%1 + + + + + There are %1 more results with the same issue. + + + + + Entry "%1" has no description page URL provided. + + + + + There are %1 more entries with the same issue. + + + + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results 搜尋結果 (顯示 <i>%2</i> 個中的 <i>%1</i> 個): - + Torrent names only 僅 torrent 名稱 - + Everywhere 各處 - + Use regular expressions 使用正規表示式 - + Open download window 開啟下載視窗 - + Download 下載 - + Open description page 開啟描述頁面 - + Copy 複製 - + Name 名稱 - + Download link 下載連結 - + Description page URL 描述頁面的 URL - + Searching... 正在搜尋… - + Search has finished 搜尋完成 - + Search aborted 搜尋中止 - + An error occurred during search... 搜尋時遇到錯誤… - + Search returned no results 沒有搜尋結果 - + Engine 引擎 - + Engine URL 引擎 URL - + Published On 發佈於 - + Column visibility 欄目顯示 - + Resize columns 調整欄大小 - + Resize all non-hidden columns to the size of their contents 調整所有非隱藏欄與其內容的大小 @@ -9342,104 +9364,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」) @@ -9465,94 +9487,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 <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 停止 @@ -9560,32 +9582,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" 載入搜尋使用者介面已儲存狀態資料失敗。檔案:「%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」 @@ -9983,77 +10005,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. 沒有直接的連線。這表示您的網路設定可能有問題。 - - Free space: N/A - 可用空間: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 線上 - - 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 點選來切換至一般速率限制 @@ -10592,17 +10604,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks 太多活躍的工作 - + Torrent creation is still unfinished. Torrent 建立仍未完成。 - + Torrent creation failed. Torrent 建立失敗。 @@ -10969,34 +10981,34 @@ Please choose a different name and try again. TorrentShareLimitsWidget - - - + + + Default 預設 - - + + Unlimited 無限制 - - + + Set to 設定為 - + Seeding time: 做種時間: - - + + @@ -11006,32 +11018,32 @@ Please choose a different name and try again. 分鐘 - + Inactive seeding time: 不活躍的做種時間: - + Action when the limit is reached: 達到限制時要採取的動作: - + Stop torrent 停止 torrent - + Remove torrent 移除 torrent - + Remove torrent and its content 移除 torrent 與其內容 - + Enable super seeding for torrent 為 torrent 啟用超級做種 @@ -11082,78 +11094,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 無法建立儲存路徑 @@ -11173,39 +11185,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 不正確的分類名稱 @@ -11354,73 +11366,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 欄目顯示 @@ -11909,319 +11921,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 選定的 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 管理嗎?它們可能會被重新安置。 - + 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」無效 - + 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 屬性(例如儲存路徑)將會由相關的分類來決定 - + Super seeding mode 超級種子模式 @@ -12276,18 +12288,18 @@ Please choose a different name and try again. 使用者界面佈景主題變更可能未完全套用。詳細資訊可以在紀錄檔中找到。 - + Couldn't save UI Theme configuration. Reason: %1 無法儲存使用者佈景主題設定。原因:%1 - - + + Couldn't remove icon file. File: %1. 無法移除圖示檔案。檔案:%1。 - + Couldn't copy icon file. Source: %1. Destination: %2. 無法複製圖示檔案。來源:%1。目標:%2。 @@ -12353,32 +12365,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 可執行檔 @@ -12470,72 +12482,72 @@ 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. 網路伺服器錯誤。未知錯誤。 - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' WebUI:來源檔頭與目標源頭不符合!來源 IP:「%1」╱來源檔頭:「%2」╱目標源頭:「%3」 - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' WebUI:Referer 檔頭與目標源頭不符合!來源 IP:「%1」╱Referer 檔頭:「%2」╱目標源頭:「%3」 - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' WebUI:無效的主機檔頭、埠不符合。請求來源 IP:「%1」╱伺服器埠:「%2」╱收到主機檔頭:「%3」 - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' WebUI:無效的主機檔頭。請求來源 IP:「%1」╱收到主機檔頭:「%2」 diff --git a/src/searchengine/nova3/helpers.py b/src/searchengine/nova3/helpers.py index 493905e6b..47db27bcc 100644 --- a/src/searchengine/nova3/helpers.py +++ b/src/searchengine/nova3/helpers.py @@ -1,4 +1,4 @@ -# VERSION: 1.54 +#VERSION: 1.51 # Author: # Christophe DUMEZ (chris@qbittorrent.org) @@ -32,20 +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 -import socks - -def _getBrowserUserAgent() -> str: +def getBrowserUserAgent() -> str: """ Disguise as browser to circumvent website blocking """ # Firefox release calendar @@ -61,33 +60,17 @@ 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()} -_original_socket = socket.socket +headers: dict[str, Any] = {'User-Agent': getBrowserUserAgent()} - -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: - socket.socket = _original_socket # type: ignore[misc] +# 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] # This is only provided for backward compatibility, new code should not use it @@ -97,7 +80,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: @@ -129,7 +112,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) diff --git a/src/searchengine/nova3/nova2.py b/src/searchengine/nova3/nova2.py index 6df365a07..fef072113 100644 --- a/src/searchengine/nova3/nova2.py +++ b/src/searchengine/nova3/nova2.py @@ -1,4 +1,4 @@ -# VERSION: 1.49 +#VERSION: 1.48 # Author: # Fabien Devaux @@ -46,16 +46,6 @@ 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() @@ -192,6 +182,11 @@ 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 bdbf1c574..c35646654 100644 --- a/src/searchengine/nova3/nova2dl.py +++ b/src/searchengine/nova3/nova2dl.py @@ -1,4 +1,4 @@ -# VERSION: 1.26 +#VERSION: 1.24 # Author: # Christophe DUMEZ (chris@qbittorrent.org) @@ -38,31 +38,26 @@ 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) +from helpers import download_file if __name__ == '__main__': - prog_name = sys.argv[0] - if len(sys.argv) < 3: - raise SystemExit(f'Usage: {prog_name} engine_name download_parameter') + raise SystemExit('./nova2dl.py engine_name download_parameter') engine_name = sys.argv[1].strip() download_param = sys.argv[2].strip() try: - module = importlib.import_module(f"engines.{engine_name}") + module = importlib.import_module("engines." + engine_name) engine_class = getattr(module, engine_name) engine = engine_class() except Exception as e: - print(repr(e), file=sys.stderr) - raise SystemExit(f'{prog_name}: `engine_name` was not recognized: {engine_name}') + print(repr(e)) + raise SystemExit('./nova2dl.py: this engine_name was not recognized') if hasattr(engine, 'download_torrent'): engine.download_torrent(download_param) else: - print(helpers.download_file(download_param)) + print(download_file(download_param)) sys.exit(0) diff --git a/src/searchengine/nova3/novaprinter.py b/src/searchengine/nova3/novaprinter.py index 812b0cd95..e5c0b0b74 100644 --- a/src/searchengine/nova3/novaprinter.py +++ b/src/searchengine/nova3/novaprinter.py @@ -1,4 +1,4 @@ -# VERSION: 1.53 +#VERSION: 1.52 # 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 8b7ceee69..88e6a8f8e 100644 --- a/src/searchengine/nova3/socks.py +++ b/src/searchengine/nova3/socks.py @@ -1,5 +1,3 @@ -# VERSION: 1.00 - """PySocks - A SOCKS proxy client and wrapper for Python. Version 1.7.1 diff --git a/src/webui/CMakeLists.txt b/src/webui/CMakeLists.txt index 377a8356b..9dfc12831 100644 --- a/src/webui/CMakeLists.txt +++ b/src/webui/CMakeLists.txt @@ -2,7 +2,6 @@ add_library(qbt_webui STATIC # headers api/apicontroller.h api/apierror.h - api/apistatus.h api/appcontroller.h api/authcontroller.h api/isessionmanager.h @@ -14,6 +13,7 @@ add_library(qbt_webui STATIC api/torrentscontroller.h api/transfercontroller.h api/serialize/serialize_torrent.h + freediskspacechecker.h webapplication.h webui.h @@ -30,6 +30,7 @@ add_library(qbt_webui STATIC api/torrentscontroller.cpp api/transfercontroller.cpp api/serialize/serialize_torrent.cpp + freediskspacechecker.cpp webapplication.cpp webui.cpp ) diff --git a/src/webui/api/apicontroller.cpp b/src/webui/api/apicontroller.cpp index ce279b45f..ca2c318f4 100644 --- a/src/webui/api/apicontroller.cpp +++ b/src/webui/api/apicontroller.cpp @@ -42,7 +42,6 @@ void APIResult::clear() data.clear(); mimeType.clear(); filename.clear(); - status = APIStatus::Ok; } APIController::APIController(IApplication *app, QObject *parent) @@ -106,8 +105,3 @@ void APIController::setResult(const QByteArray &result, const QString &mimeType, m_result.mimeType = mimeType; m_result.filename = filename; } - -void APIController::setStatus(const APIStatus status) -{ - m_result.status = status; -} diff --git a/src/webui/api/apicontroller.h b/src/webui/api/apicontroller.h index 898ad3fdc..edcfc16fc 100644 --- a/src/webui/api/apicontroller.h +++ b/src/webui/api/apicontroller.h @@ -34,7 +34,6 @@ #include #include "base/applicationcomponent.h" -#include "apistatus.h" using DataMap = QHash; using StringMap = QHash; @@ -44,7 +43,6 @@ struct APIResult QVariant data; QString mimeType; QString filename; - APIStatus status = APIStatus::Ok; void clear(); }; @@ -69,8 +67,6 @@ protected: void setResult(const QJsonObject &result); void setResult(const QByteArray &result, const QString &mimeType = {}, const QString &filename = {}); - void setStatus(APIStatus status); - private: StringMap m_params; DataMap m_data; diff --git a/src/webui/api/apistatus.h b/src/webui/api/apistatus.h deleted file mode 100644 index b88a5c724..000000000 --- a/src/webui/api/apistatus.h +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2024 Thomas Piccirello - * - * 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 - -enum class APIStatus -{ - Ok, - Async -}; diff --git a/src/webui/api/appcontroller.cpp b/src/webui/api/appcontroller.cpp index e2e465acd..a1fc0e1da 100644 --- a/src/webui/api/appcontroller.cpp +++ b/src/webui/api/appcontroller.cpp @@ -77,12 +77,6 @@ const QString KEY_COOKIE_DOMAIN = u"domain"_s; const QString KEY_COOKIE_PATH = u"path"_s; const QString KEY_COOKIE_VALUE = u"value"_s; const QString KEY_COOKIE_EXPIRATION_DATE = u"expirationDate"_s; -const QString KEY_FILE_METADATA_NAME = u"name"_s; -const QString KEY_FILE_METADATA_TYPE = u"type"_s; -const QString KEY_FILE_METADATA_SIZE = u"size"_s; -const QString KEY_FILE_METADATA_CREATION_DATE = u"creation_date"_s; -const QString KEY_FILE_METADATA_LAST_ACCESS_DATE = u"last_access_date"_s; -const QString KEY_FILE_METADATA_LAST_MODIFICATION_DATE = u"last_modification_date"_s; void AppController::webapiVersionAction() { @@ -129,7 +123,6 @@ void AppController::shutdownAction() { QCoreApplication::exit(); }); - setResult(QString()); } void AppController::preferencesAction() @@ -462,8 +455,6 @@ void AppController::preferencesAction() data[u"peer_tos"_s] = session->peerToS(); // uTP-TCP mixed mode data[u"utp_tcp_mixed_mode"_s] = static_cast(session->utpMixedMode()); - // Hostname resolver cache TTL - data[u"hostname_cache_ttl"_s] = session->hostnameCacheTTL(); // Support internationalized domain name (IDN) data[u"idn_support_enabled"_s] = session->isIDNSupportEnabled(); // Multiple connections per IP @@ -508,7 +499,7 @@ void AppController::setPreferencesAction() QVariantHash::ConstIterator it; const auto hasKey = [&it, &m](const QString &key) -> bool { - it = m.constFind(key); + it = m.find(key); return (it != m.constEnd()); }; @@ -793,12 +784,10 @@ void AppController::setPreferencesAction() // Scheduling if (hasKey(u"scheduler_enabled"_s)) session->setBandwidthSchedulerEnabled(it.value().toBool()); - if (const auto hourIter = m.constFind(u"schedule_from_hour"_s), minIter = m.constFind(u"schedule_from_min"_s) - ; (hourIter != m.constEnd()) && (minIter != m.constEnd())) - pref->setSchedulerStartTime({hourIter.value().toInt(), minIter.value().toInt()}); - if (const auto hourIter = m.constFind(u"schedule_to_hour"_s), minIter = m.constFind(u"schedule_to_min"_s) - ; (hourIter != m.constEnd()) && (minIter != m.constEnd())) - pref->setSchedulerEndTime({hourIter.value().toInt(), minIter.value().toInt()}); + if (m.contains(u"schedule_from_hour"_s) && m.contains(u"schedule_from_min"_s)) + pref->setSchedulerStartTime(QTime(m[u"schedule_from_hour"_s].toInt(), m[u"schedule_from_min"_s].toInt())); + if (m.contains(u"schedule_to_hour"_s) && m.contains(u"schedule_to_min"_s)) + pref->setSchedulerEndTime(QTime(m[u"schedule_to_hour"_s].toInt(), m[u"schedule_to_min"_s].toInt())); if (hasKey(u"scheduler_days"_s)) pref->setSchedulerDays(static_cast(it.value().toInt())); @@ -835,18 +824,25 @@ void AppController::setPreferencesAction() if (hasKey(u"slow_torrent_inactive_timer"_s)) session->setSlowTorrentsInactivityTimer(it.value().toInt()); // Share Ratio Limiting - if (hasKey(u"max_ratio_enabled"_s) && !it.value().toBool()) - session->setGlobalMaxRatio(-1); - else if (hasKey(u"max_ratio"_s)) - session->setGlobalMaxRatio(it.value().toReal()); - if (hasKey(u"max_seeding_time_enabled"_s) && !it.value().toBool()) - session->setGlobalMaxSeedingMinutes(-1); - else if (hasKey(u"max_seeding_time"_s)) - session->setGlobalMaxSeedingMinutes(it.value().toInt()); - if (hasKey(u"max_inactive_seeding_time_enabled"_s) && !it.value().toBool()) - session->setGlobalMaxInactiveSeedingMinutes(-1); - else if (hasKey(u"max_inactive_seeding_time"_s)) - session->setGlobalMaxInactiveSeedingMinutes(it.value().toInt()); + if (hasKey(u"max_ratio_enabled"_s)) + { + if (it.value().toBool()) + session->setGlobalMaxRatio(m[u"max_ratio"_s].toReal()); + else + session->setGlobalMaxRatio(-1); + } + if (hasKey(u"max_seeding_time_enabled"_s)) + { + if (it.value().toBool()) + session->setGlobalMaxSeedingMinutes(m[u"max_seeding_time"_s].toInt()); + else + session->setGlobalMaxSeedingMinutes(-1); + } + if (hasKey(u"max_inactive_seeding_time_enabled"_s)) + { + session->setGlobalMaxInactiveSeedingMinutes(it.value().toBool() + ? m[u"max_inactive_seeding_time"_s].toInt() : -1); + } if (hasKey(u"max_ratio_act"_s)) { switch (it.value().toInt()) @@ -984,7 +980,7 @@ void AppController::setPreferencesAction() { return (!iface.addressEntries().isEmpty()) && (iface.name() == ifaceValue); }); - const QString ifaceName = (ifacesIter != ifaces.cend()) ? ifacesIter->humanReadableName() : QString(); + const QString ifaceName = (ifacesIter != ifaces.cend()) ? ifacesIter->humanReadableName() : QString {}; session->setNetworkInterface(ifaceValue); if (!ifaceName.isEmpty() || ifaceValue.isEmpty()) @@ -994,7 +990,7 @@ void AppController::setPreferencesAction() if (hasKey(u"current_interface_address"_s)) { const QHostAddress ifaceAddress {it.value().toString().trimmed()}; - session->setNetworkInterfaceAddress(ifaceAddress.isNull() ? QString() : ifaceAddress.toString()); + session->setNetworkInterfaceAddress(ifaceAddress.isNull() ? QString {} : ifaceAddress.toString()); } // Save resume data interval if (hasKey(u"save_resume_data_interval"_s)) @@ -1118,9 +1114,6 @@ void AppController::setPreferencesAction() // uTP-TCP mixed mode if (hasKey(u"utp_tcp_mixed_mode"_s)) session->setUtpMixedMode(static_cast(it.value().toInt())); - // Hostname resolver cache TTL - if (hasKey(u"hostname_cache_ttl"_s)) - session->setHostnameCacheTTL(it.value().toInt()); // Support internationalized domain name (IDN) if (hasKey(u"idn_support_enabled"_s)) session->setIDNSupportEnabled(it.value().toBool()); @@ -1150,7 +1143,7 @@ void AppController::setPreferencesAction() if (hasKey(u"announce_ip"_s)) { const QHostAddress announceAddr {it.value().toString().trimmed()}; - session->setAnnounceIP(announceAddr.isNull() ? QString() : announceAddr.toString()); + session->setAnnounceIP(announceAddr.isNull() ? QString {} : announceAddr.toString()); } if (hasKey(u"announce_port"_s)) session->setAnnouncePort(it.value().toInt()); @@ -1174,8 +1167,6 @@ void AppController::setPreferencesAction() // Save preferences pref->apply(); - - setResult(QString()); } void AppController::defaultSavePathAction() @@ -1186,9 +1177,9 @@ void AppController::defaultSavePathAction() void AppController::sendTestEmailAction() { app()->sendTestEmail(); - setResult(QString()); } + void AppController::getDirectoryContentAction() { requireParams({u"dirPath"_s}); @@ -1216,40 +1207,10 @@ void AppController::getDirectoryContentAction() throw APIError(APIErrorType::BadParams, tr("Invalid mode, allowed values: %1").arg(u"all, dirs, files"_s)); }; - const bool withMetadata {Utils::String::parseBool(params()[u"withMetadata"_s]).value_or(false)}; - QJsonArray ret; QDirIterator it {dirPath, (QDir::NoDotAndDotDot | parseDirectoryContentMode(visibility))}; while (it.hasNext()) - { - if (withMetadata) - { - const QFileInfo fileInfo = it.nextFileInfo(); - QJsonObject fileObject - { - {KEY_FILE_METADATA_NAME, fileInfo.fileName()}, - {KEY_FILE_METADATA_CREATION_DATE, Utils::DateTime::toSecsSinceEpoch(fileInfo.birthTime())}, - {KEY_FILE_METADATA_LAST_ACCESS_DATE, Utils::DateTime::toSecsSinceEpoch(fileInfo.lastRead())}, - {KEY_FILE_METADATA_LAST_MODIFICATION_DATE, Utils::DateTime::toSecsSinceEpoch(fileInfo.lastModified())}, - }; - - if (fileInfo.isDir()) - { - fileObject.insert(KEY_FILE_METADATA_TYPE, u"dir"_s); - } - else if (fileInfo.isFile()) - { - fileObject.insert(KEY_FILE_METADATA_TYPE, u"file"_s); - fileObject.insert(KEY_FILE_METADATA_SIZE, fileInfo.size()); - } - - ret.append(fileObject); - } - else - { - ret.append(it.next()); - } - } + ret.append(it.next()); setResult(ret); } @@ -1308,8 +1269,6 @@ void AppController::setCookiesAction() } Net::DownloadManager::instance()->setAllCookies(cookies); - - setResult(QString()); } void AppController::networkInterfaceListAction() diff --git a/src/webui/api/authcontroller.cpp b/src/webui/api/authcontroller.cpp index ee52c1df6..eb1d1baf2 100644 --- a/src/webui/api/authcontroller.cpp +++ b/src/webui/api/authcontroller.cpp @@ -46,13 +46,11 @@ AuthController::AuthController(ISessionManager *sessionManager, IApplication *ap void AuthController::setUsername(const QString &username) { m_username = username; - setResult(QString()); } void AuthController::setPasswordHash(const QByteArray &passwordHash) { m_passwordHash = passwordHash; - setResult(QString()); } void AuthController::loginAction() @@ -98,16 +96,15 @@ void AuthController::loginAction() } } -void AuthController::logoutAction() +void AuthController::logoutAction() const { m_sessionManager->sessionEnd(); - setResult(QString()); } bool AuthController::isBanned() const { - const auto failedLoginIter = m_clientFailedLogins.constFind(m_sessionManager->clientId()); - if (failedLoginIter == m_clientFailedLogins.cend()) + const auto failedLoginIter = m_clientFailedLogins.find(m_sessionManager->clientId()); + if (failedLoginIter == m_clientFailedLogins.end()) return false; bool isBanned = (failedLoginIter->banTimer.remainingTime() >= 0); diff --git a/src/webui/api/authcontroller.h b/src/webui/api/authcontroller.h index cdd7c4cfb..0a47c2338 100644 --- a/src/webui/api/authcontroller.h +++ b/src/webui/api/authcontroller.h @@ -52,7 +52,7 @@ public: private slots: void loginAction(); - void logoutAction(); + void logoutAction() const; private: bool isBanned() const; diff --git a/src/webui/api/rsscontroller.cpp b/src/webui/api/rsscontroller.cpp index 8cdd1d532..0dd5d1dc3 100644 --- a/src/webui/api/rsscontroller.cpp +++ b/src/webui/api/rsscontroller.cpp @@ -50,11 +50,9 @@ void RSSController::addFolderAction() requireParams({u"path"_s}); const QString path = params()[u"path"_s]; - const nonstd::expected result = RSS::Session::instance()->addFolder(path); + const nonstd::expected result = RSS::Session::instance()->addFolder(path); if (!result) throw APIError(APIErrorType::Conflict, result.error()); - - setResult(QString()); } void RSSController::addFeedAction() @@ -63,12 +61,9 @@ void RSSController::addFeedAction() const QString url = params()[u"url"_s]; const QString path = params()[u"path"_s]; - const auto refreshInterval = std::max(params()[u"refreshInterval"_s].toLongLong(), 0); - const nonstd::expected result = RSS::Session::instance()->addFeed(url, (path.isEmpty() ? url : path), std::chrono::seconds(refreshInterval)); + const nonstd::expected result = RSS::Session::instance()->addFeed(url, (path.isEmpty() ? url : path)); if (!result) throw APIError(APIErrorType::Conflict, result.error()); - - setResult(QString()); } void RSSController::setFeedURLAction() @@ -80,25 +75,6 @@ void RSSController::setFeedURLAction() const nonstd::expected result = RSS::Session::instance()->setFeedURL(path, url); if (!result) throw APIError(APIErrorType::Conflict, result.error()); - - setResult(QString()); -} - -void RSSController::setFeedRefreshIntervalAction() -{ - requireParams({u"path"_s, u"refreshInterval"_s}); - - bool ok = false; - const auto refreshInterval = params()[u"refreshInterval"_s].toLongLong(&ok); - if (!ok || (refreshInterval < 0)) - throw APIError(APIErrorType::BadParams, tr("Invalid 'refreshInterval' value")); - - const QString path = params()[u"path"_s]; - auto *feed = qobject_cast(RSS::Session::instance()->itemByPath(path)); - if (!feed) - throw APIError(APIErrorType::Conflict, tr("Feed doesn't exist: %1.").arg(path)); - - feed->setRefreshInterval(std::chrono::seconds(refreshInterval)); } void RSSController::removeItemAction() @@ -109,8 +85,6 @@ void RSSController::removeItemAction() const nonstd::expected result = RSS::Session::instance()->removeItem(path); if (!result) throw APIError(APIErrorType::Conflict, result.error()); - - setResult(QString()); } void RSSController::moveItemAction() @@ -122,8 +96,6 @@ void RSSController::moveItemAction() const nonstd::expected result = RSS::Session::instance()->moveItem(itemPath, destPath); if (!result) throw APIError(APIErrorType::Conflict, result.error()); - - setResult(QString()); } void RSSController::itemsAction() @@ -158,8 +130,6 @@ void RSSController::markAsReadAction() { item->markAsRead(); } - - setResult(QString()); } void RSSController::refreshItemAction() @@ -170,8 +140,6 @@ void RSSController::refreshItemAction() RSS::Item *item = RSS::Session::instance()->itemByPath(itemPath); if (item) item->refresh(); - - setResult(QString()); } void RSSController::setRuleAction() @@ -183,8 +151,6 @@ void RSSController::setRuleAction() const auto jsonObj = QJsonDocument::fromJson(ruleDef).object(); RSS::AutoDownloader::instance()->setRule(RSS::AutoDownloadRule::fromJsonObject(jsonObj, ruleName)); - - setResult(QString()); } void RSSController::renameRuleAction() @@ -195,8 +161,6 @@ void RSSController::renameRuleAction() const QString newRuleName {params()[u"newRuleName"_s]}; RSS::AutoDownloader::instance()->renameRule(ruleName, newRuleName); - - setResult(QString()); } void RSSController::removeRuleAction() @@ -205,8 +169,6 @@ void RSSController::removeRuleAction() const QString ruleName {params()[u"ruleName"_s]}; RSS::AutoDownloader::instance()->removeRule(ruleName); - - setResult(QString()); } void RSSController::rulesAction() diff --git a/src/webui/api/rsscontroller.h b/src/webui/api/rsscontroller.h index 9c9e5f1fd..0d10ba5c5 100644 --- a/src/webui/api/rsscontroller.h +++ b/src/webui/api/rsscontroller.h @@ -42,7 +42,6 @@ private slots: void addFolderAction(); void addFeedAction(); void setFeedURLAction(); - void setFeedRefreshIntervalAction(); void removeItemAction(); void moveItemAction(); void itemsAction(); diff --git a/src/webui/api/searchcontroller.cpp b/src/webui/api/searchcontroller.cpp index 2af76a0f4..b954da119 100644 --- a/src/webui/api/searchcontroller.cpp +++ b/src/webui/api/searchcontroller.cpp @@ -131,8 +131,8 @@ void SearchController::stopAction() const int id = params()[u"id"_s].toInt(); - const auto iter = m_searchHandlers.constFind(id); - if (iter == m_searchHandlers.cend()) + const auto iter = m_searchHandlers.find(id); + if (iter == m_searchHandlers.end()) throw APIError(APIErrorType::NotFound); const std::shared_ptr &searchHandler = iter.value(); @@ -142,8 +142,6 @@ void SearchController::stopAction() searchHandler->cancelSearch(); m_activeSearches.remove(id); } - - setResult(QString()); } void SearchController::statusAction() @@ -178,8 +176,8 @@ void SearchController::resultsAction() int limit = params()[u"limit"_s].toInt(); int offset = params()[u"offset"_s].toInt(); - const auto iter = m_searchHandlers.constFind(id); - if (iter == m_searchHandlers.cend()) + const auto iter = m_searchHandlers.find(id); + if (iter == m_searchHandlers.end()) throw APIError(APIErrorType::NotFound); const std::shared_ptr &searchHandler = iter.value(); @@ -209,16 +207,14 @@ void SearchController::deleteAction() const int id = params()[u"id"_s].toInt(); - const auto iter = m_searchHandlers.constFind(id); - if (iter == m_searchHandlers.cend()) + const auto iter = m_searchHandlers.find(id); + if (iter == m_searchHandlers.end()) throw APIError(APIErrorType::NotFound); const std::shared_ptr &searchHandler = iter.value(); searchHandler->cancelSearch(); m_activeSearches.remove(id); m_searchHandlers.erase(iter); - - setResult(QString()); } void SearchController::downloadTorrentAction() @@ -242,8 +238,6 @@ void SearchController::downloadTorrentAction() downloadHandler->deleteLater(); }); } - - setResult(QString()); } void SearchController::pluginsAction() @@ -259,8 +253,6 @@ void SearchController::installPluginAction() const QStringList sources = params()[u"sources"_s].split(u'|'); for (const QString &source : sources) SearchPluginManager::instance()->installPlugin(source); - - setResult(QString()); } void SearchController::uninstallPluginAction() @@ -270,8 +262,6 @@ void SearchController::uninstallPluginAction() const QStringList names = params()[u"names"_s].split(u'|'); for (const QString &name : names) SearchPluginManager::instance()->uninstallPlugin(name.trimmed()); - - setResult(QString()); } void SearchController::enablePluginAction() @@ -283,8 +273,6 @@ void SearchController::enablePluginAction() for (const QString &name : names) SearchPluginManager::instance()->enablePlugin(name.trimmed(), enable); - - setResult(QString()); } void SearchController::updatePluginsAction() @@ -294,8 +282,6 @@ void SearchController::updatePluginsAction() connect(pluginManager, &SearchPluginManager::checkForUpdatesFinished, this, &SearchController::checkForUpdatesFinished); connect(pluginManager, &SearchPluginManager::checkForUpdatesFailed, this, &SearchController::checkForUpdatesFailed); pluginManager->checkForUpdates(); - - setResult(QString()); } void SearchController::checkForUpdatesFinished(const QHash &updateInfo) @@ -314,8 +300,6 @@ void SearchController::checkForUpdatesFinished(const QHashupdatePlugin(pluginName); } - - setResult(QString()); } void SearchController::checkForUpdatesFailed(const QString &reason) diff --git a/src/webui/api/serialize/serialize_torrent.cpp b/src/webui/api/serialize/serialize_torrent.cpp index 94c83a934..1543170d4 100644 --- a/src/webui/api/serialize/serialize_torrent.cpp +++ b/src/webui/api/serialize/serialize_torrent.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2018-2025 Vladimir Golovnev + * Copyright (C) 2018-2023 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -107,27 +107,14 @@ QVariantMap serialize(const BitTorrent::Torrent &torrent) : (QDateTime::currentSecsSinceEpoch() - timeSinceActivity); }; - const bool hasMetadata = torrent.hasMetadata(); - return { {KEY_TORRENT_ID, torrent.id().toString()}, {KEY_TORRENT_INFOHASHV1, torrent.infoHash().v1().toString()}, {KEY_TORRENT_INFOHASHV2, torrent.infoHash().v2().toString()}, {KEY_TORRENT_NAME, torrent.name()}, - - {KEY_TORRENT_HAS_METADATA, hasMetadata}, - {KEY_TORRENT_CREATED_BY, torrent.creator()}, - {KEY_TORRENT_CREATION_DATE, Utils::DateTime::toSecsSinceEpoch(torrent.creationDate())}, - {KEY_TORRENT_PRIVATE, (hasMetadata ? torrent.isPrivate() : QVariant())}, - {KEY_TORRENT_TOTAL_SIZE, torrent.totalSize()}, - {KEY_TORRENT_PIECES_NUM, torrent.piecesCount()}, - {KEY_TORRENT_PIECE_SIZE, torrent.pieceLength()}, - {KEY_TORRENT_MAGNET_URI, torrent.createMagnetURI()}, {KEY_TORRENT_SIZE, torrent.wantedSize()}, {KEY_TORRENT_PROGRESS, torrent.progress()}, - {KEY_TORRENT_TOTAL_WASTED, torrent.wastedSize()}, - {KEY_TORRENT_PIECES_HAVE, torrent.piecesHave()}, {KEY_TORRENT_DLSPEED, torrent.downloadPayloadRate()}, {KEY_TORRENT_UPSPEED, torrent.uploadPayloadRate()}, {KEY_TORRENT_QUEUE_POSITION, adjustQueuePosition(torrent.queuePosition())}, @@ -161,8 +148,6 @@ QVariantMap serialize(const BitTorrent::Torrent &torrent) {KEY_TORRENT_AMOUNT_UPLOADED_SESSION, torrent.totalPayloadUpload()}, {KEY_TORRENT_AMOUNT_LEFT, torrent.remainingSize()}, {KEY_TORRENT_AMOUNT_COMPLETED, torrent.completedSize()}, - {KEY_TORRENT_CONNECTIONS_COUNT, torrent.connectionsCount()}, - {KEY_TORRENT_CONNECTIONS_LIMIT, torrent.connectionsLimit()}, {KEY_TORRENT_MAX_RATIO, torrent.maxRatio()}, {KEY_TORRENT_MAX_SEEDING_TIME, torrent.maxSeedingTime()}, {KEY_TORRENT_MAX_INACTIVE_SEEDING_TIME, torrent.maxInactiveSeedingTime()}, @@ -178,6 +163,9 @@ QVariantMap serialize(const BitTorrent::Torrent &torrent) {KEY_TORRENT_LAST_ACTIVITY_TIME, getLastActivityTime()}, {KEY_TORRENT_AVAILABILITY, torrent.distributedCopies()}, {KEY_TORRENT_REANNOUNCE, torrent.nextAnnounce()}, - {KEY_TORRENT_COMMENT, torrent.comment()} + {KEY_TORRENT_COMMENT, torrent.comment()}, + {KEY_TORRENT_PRIVATE, (torrent.hasMetadata() ? torrent.isPrivate() : QVariant())}, + {KEY_TORRENT_TOTAL_SIZE, torrent.totalSize()}, + {KEY_TORRENT_HAS_METADATA, torrent.hasMetadata()} }; } diff --git a/src/webui/api/serialize/serialize_torrent.h b/src/webui/api/serialize/serialize_torrent.h index 438960e7f..883efa6dd 100644 --- a/src/webui/api/serialize/serialize_torrent.h +++ b/src/webui/api/serialize/serialize_torrent.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2018-2025 Vladimir Golovnev + * Copyright (C) 2018-2023 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -96,13 +96,5 @@ inline const QString KEY_TORRENT_REANNOUNCE = u"reannounce"_s; inline const QString KEY_TORRENT_COMMENT = u"comment"_s; inline const QString KEY_TORRENT_PRIVATE = u"private"_s; inline const QString KEY_TORRENT_HAS_METADATA = u"has_metadata"_s; -inline const QString KEY_TORRENT_CONNECTIONS_COUNT = u"connections_count"_s; -inline const QString KEY_TORRENT_CONNECTIONS_LIMIT = u"connections_limit"_s; -inline const QString KEY_TORRENT_TOTAL_WASTED = u"total_wasted"_s; -inline const QString KEY_TORRENT_PIECES_NUM = u"pieces_num"_s; -inline const QString KEY_TORRENT_PIECE_SIZE = u"piece_size"_s; -inline const QString KEY_TORRENT_PIECES_HAVE = u"pieces_have"_s; -inline const QString KEY_TORRENT_CREATED_BY = u"created_by"_s; -inline const QString KEY_TORRENT_CREATION_DATE = u"creation_date"_s; QVariantMap serialize(const BitTorrent::Torrent &torrent); diff --git a/src/webui/api/synccontroller.cpp b/src/webui/api/synccontroller.cpp index 469f58459..96ef9dd28 100644 --- a/src/webui/api/synccontroller.cpp +++ b/src/webui/api/synccontroller.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2018-2025 Vladimir Golovnev + * Copyright (C) 2018-2024 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -28,7 +28,6 @@ #include "synccontroller.h" -#include #include #include #include @@ -120,28 +119,6 @@ namespace const QString KEY_FULL_UPDATE = u"full_update"_s; const QString KEY_RESPONSE_ID = u"rid"_s; - const QString KEY_TORRENT_HAS_TRACKER_WARNING = u"has_tracker_warning"_s; - const QString KEY_TORRENT_HAS_TRACKER_ERROR = u"has_tracker_error"_s; - const QString KEY_TORRENT_HAS_OTHER_ANNOUNCE_ERROR = u"has_other_announce_error"_s; - - QStringList asStrings(const QSet &torrentIDs) - { - QStringList result; - result.reserve(torrentIDs.size()); - for (const BitTorrent::TorrentID &torrentID : torrentIDs) - result.emplaceBack(torrentID.toString()); - - return result; - } - - bool hasWarningMessage(const BitTorrent::TrackerEntryStatus &status) - { - return std::ranges::any_of(status.endpoints, [](const BitTorrent::TrackerEndpointStatus &endpointEntry) - { - return (endpointEntry.state == BitTorrent::TrackerEndpointState::Working) && !endpointEntry.message.isEmpty(); - }); - } - QVariantMap processMap(const QVariantMap &prevData, const QVariantMap &data); std::pair processHash(QVariantHash prevData, const QVariantHash &data); std::pair processList(QVariantList prevData, const QVariantList &data); @@ -406,39 +383,6 @@ namespace return QJsonObject::fromVariantMap(syncData); } - - void addAnnounceStats(QVariantMap &serializedTorrent, const BitTorrent::Torrent *torrent) - { - bool hasTrackerWarning = false; - bool hasTrackerError = false; - bool hasOtherAnnounceError = false; - for (const BitTorrent::TrackerEntryStatus &status : asConst(torrent->trackers())) - { - switch (status.state) - { - case BitTorrent::TrackerEndpointState::Working: - if (!hasTrackerWarning && hasWarningMessage(status)) - hasTrackerWarning = true; - break; - case BitTorrent::TrackerEndpointState::TrackerError: - hasTrackerError = true; - break; - case BitTorrent::TrackerEndpointState::NotWorking: - case BitTorrent::TrackerEndpointState::Unreachable: - hasOtherAnnounceError = true; - break; - default: - break; - } - - if (hasTrackerWarning && hasTrackerError && hasOtherAnnounceError) - break; - } - - serializedTorrent[KEY_TORRENT_HAS_TRACKER_WARNING] = hasTrackerWarning; - serializedTorrent[KEY_TORRENT_HAS_TRACKER_ERROR] = hasTrackerError; - serializedTorrent[KEY_TORRENT_HAS_OTHER_ANNOUNCE_ERROR] = hasOtherAnnounceError; - } } SyncController::SyncController(IApplication *app, QObject *parent) @@ -500,9 +444,6 @@ void SyncController::updateFreeDiskSpace(const qint64 freeDiskSpace) // - "seen_complete": Indicates the time when the torrent was last seen complete/whole // - "last_activity": Last time when a chunk was downloaded/uploaded // - "total_size": Size including unwanted data -// - "has_tracker_warning": the torrent has working tracker that has a message -// - "has_tracker_error": the torrent has a tracker error -// - "has_other_announce_error": the torrent has other problems announcing to a tracker // Server state map may contain the following keys: // - "connection_status": connection status // - "dht_nodes": DHT nodes count @@ -546,7 +487,6 @@ void SyncController::maindataAction() connect(btSession, &BitTorrent::Session::trackersAdded, this, &SyncController::onTorrentTrackersChanged); connect(btSession, &BitTorrent::Session::trackersRemoved, this, &SyncController::onTorrentTrackersChanged); connect(btSession, &BitTorrent::Session::trackersChanged, this, &SyncController::onTorrentTrackersChanged); - connect(btSession, &BitTorrent::Session::trackerEntryStatusesUpdated, this, &SyncController::onTorrentTrackerEntryStatusesUpdated); } const int acceptedID = params()[u"rid"_s].toInt(); @@ -585,7 +525,6 @@ void SyncController::makeMaindataSnapshot() QVariantMap serializedTorrent = serialize(*torrent); serializedTorrent.remove(KEY_TORRENT_ID); - addAnnounceStats(serializedTorrent, torrent); for (const BitTorrent::TrackerEntryStatus &status : asConst(torrent->trackers())) m_knownTrackers[status.url].insert(torrentID); @@ -607,8 +546,14 @@ void SyncController::makeMaindataSnapshot() for (const Tag &tag : asConst(session->tags())) m_maindataSnapshot.tags.append(tag.toString()); - for (const auto &[tracker, torrentIDs] : m_knownTrackers.asKeyValueRange()) - m_maindataSnapshot.trackers[tracker] = asStrings(torrentIDs); + for (auto trackersIter = m_knownTrackers.cbegin(); trackersIter != m_knownTrackers.cend(); ++trackersIter) + { + QStringList torrentIDs; + for (const BitTorrent::TorrentID &torrentID : asConst(trackersIter.value())) + torrentIDs.append(torrentID.toString()); + + m_maindataSnapshot.trackers[trackersIter.key()] = torrentIDs; + } m_maindataSnapshot.serverState = getTransferInfo(); m_maindataSnapshot.serverState[KEY_TRANSFER_FREESPACEONDISK] = m_freeDiskSpace; @@ -633,12 +578,8 @@ QJsonObject SyncController::generateMaindataSyncData(const int id, const bool fu for (const BitTorrent::TorrentID &torrentID : asConst(m_updatedTorrents)) m_maindataSyncBuf.removedTorrents.removeOne(torrentID.toString()); - for (const BitTorrent::TorrentID &torrentID : asConst(m_removedTorrents)) - { - const QString torrentIDStr = torrentID.toString(); - m_maindataSyncBuf.torrents.remove(torrentIDStr); - } + m_maindataSyncBuf.torrents.remove(torrentID.toString()); for (const QString &tracker : asConst(m_updatedTrackers)) m_maindataSyncBuf.removedTrackers.removeOne(tracker); @@ -693,64 +634,30 @@ QJsonObject SyncController::generateMaindataSyncData(const int id, const bool fu QVariantMap serializedTorrent = serialize(*torrent); serializedTorrent.remove(KEY_TORRENT_ID); - const QString torrentIDStr = torrentID.toString(); - auto &torrentSnapshot = m_maindataSnapshot.torrents[torrentIDStr]; - - if (m_announcedTorrents.contains(torrentID)) - { - addAnnounceStats(serializedTorrent, torrent); - } - else - { - serializedTorrent[KEY_TORRENT_HAS_TRACKER_WARNING] = torrentSnapshot[KEY_TORRENT_HAS_TRACKER_WARNING]; - serializedTorrent[KEY_TORRENT_HAS_TRACKER_ERROR] = torrentSnapshot[KEY_TORRENT_HAS_TRACKER_ERROR]; - serializedTorrent[KEY_TORRENT_HAS_OTHER_ANNOUNCE_ERROR] = torrentSnapshot[KEY_TORRENT_HAS_OTHER_ANNOUNCE_ERROR]; - } + auto &torrentSnapshot = m_maindataSnapshot.torrents[torrentID.toString()]; if (const QVariantMap syncData = processMap(torrentSnapshot, serializedTorrent); !syncData.isEmpty()) { - m_maindataSyncBuf.torrents[torrentIDStr] = syncData; + m_maindataSyncBuf.torrents[torrentID.toString()] = syncData; torrentSnapshot = serializedTorrent; } } - - for (const BitTorrent::TorrentID &torrentID : asConst(m_announcedTorrents)) - { - if (m_updatedTorrents.contains(torrentID)) - continue; - - const BitTorrent::Torrent *torrent = session->getTorrent(torrentID); - Q_ASSERT(torrent); - - const QString torrentIDStr = torrentID.toString(); - auto &torrentSnapshot = m_maindataSnapshot.torrents[torrentIDStr]; - - // Only announce stats are changed so don't need to serialize torrent again - QVariantMap serializedTorrent = torrentSnapshot; - addAnnounceStats(serializedTorrent, torrent); - - if (const QVariantMap syncData = processMap(torrentSnapshot, serializedTorrent); !syncData.isEmpty()) - { - m_maindataSyncBuf.torrents[torrentIDStr] = syncData; - torrentSnapshot = serializedTorrent; - } - } - m_updatedTorrents.clear(); - m_announcedTorrents.clear(); for (const BitTorrent::TorrentID &torrentID : asConst(m_removedTorrents)) { - const QString torrentIDStr = torrentID.toString(); - - m_maindataSyncBuf.removedTorrents.append(torrentIDStr); - m_maindataSnapshot.torrents.remove(torrentIDStr); + m_maindataSyncBuf.removedTorrents.append(torrentID.toString()); + m_maindataSnapshot.torrents.remove(torrentID.toString()); } m_removedTorrents.clear(); for (const QString &tracker : asConst(m_updatedTrackers)) { - const QStringList serializedTorrentIDs = asStrings(m_knownTrackers[tracker]); + const QSet torrentIDs = m_knownTrackers[tracker]; + QStringList serializedTorrentIDs; + serializedTorrentIDs.reserve(torrentIDs.size()); + for (const BitTorrent::TorrentID &torrentID : torrentIDs) + serializedTorrentIDs.append(torrentID.toString()); m_maindataSyncBuf.trackers[tracker] = serializedTorrentIDs; m_maindataSnapshot.trackers[tracker] = serializedTorrentIDs; @@ -838,7 +745,7 @@ void SyncController::torrentPeersAction() QVariantMap data; QVariantHash peers; - const QList peersList = torrent->fetchPeerInfo().takeResult(); + const QList peersList = torrent->peers(); bool resolvePeerCountries = Preferences::instance()->resolvePeerCountries(); @@ -939,7 +846,6 @@ void SyncController::onTorrentAdded(BitTorrent::Torrent *torrent) m_removedTorrents.remove(torrentID); m_updatedTorrents.insert(torrentID); - m_announcedTorrents.insert(torrentID); for (const BitTorrent::TrackerEntryStatus &status : asConst(torrent->trackers())) { @@ -953,13 +859,12 @@ void SyncController::onTorrentAboutToBeRemoved(BitTorrent::Torrent *torrent) { const BitTorrent::TorrentID torrentID = torrent->id(); - m_announcedTorrents.remove(torrentID); m_updatedTorrents.remove(torrentID); m_removedTorrents.insert(torrentID); for (const BitTorrent::TrackerEntryStatus &status : asConst(torrent->trackers())) { - const auto iter = m_knownTrackers.find(status.url); + auto iter = m_knownTrackers.find(status.url); Q_ASSERT(iter != m_knownTrackers.end()); if (iter == m_knownTrackers.end()) [[unlikely]] continue; @@ -993,7 +898,6 @@ void SyncController::onTorrentMetadataReceived(BitTorrent::Torrent *torrent) void SyncController::onTorrentStopped(BitTorrent::Torrent *torrent) { m_updatedTorrents.insert(torrent->id()); - m_announcedTorrents.insert(torrent->id()); } void SyncController::onTorrentStarted(BitTorrent::Torrent *torrent) @@ -1076,12 +980,4 @@ void SyncController::onTorrentTrackersChanged(BitTorrent::Torrent *torrent) m_removedTrackers.remove(currentTracker); } } - - m_announcedTorrents.insert(torrentID); -} - -void SyncController::onTorrentTrackerEntryStatusesUpdated(const BitTorrent::Torrent *torrent - , [[maybe_unused]] const QHash &updatedTrackers) -{ - m_announcedTorrents.insert(torrent->id()); } diff --git a/src/webui/api/synccontroller.h b/src/webui/api/synccontroller.h index 9d7009c00..af2223827 100644 --- a/src/webui/api/synccontroller.h +++ b/src/webui/api/synccontroller.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2018-2025 Vladimir Golovnev + * Copyright (C) 2018-2023 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -38,7 +38,6 @@ namespace BitTorrent { class Torrent; - struct TrackerEntryStatus; } class SyncController : public APIController @@ -80,8 +79,6 @@ private: void onTorrentTagRemoved(BitTorrent::Torrent *torrent, const Tag &tag); void onTorrentsUpdated(const QList &torrents); void onTorrentTrackersChanged(BitTorrent::Torrent *torrent); - void onTorrentTrackerEntryStatusesUpdated(const BitTorrent::Torrent *torrent - , const QHash &updatedTrackers); qint64 m_freeDiskSpace = 0; @@ -97,24 +94,20 @@ private: QSet m_updatedTrackers; QSet m_removedTrackers; QSet m_updatedTorrents; - QSet m_announcedTorrents; QSet m_removedTorrents; struct MaindataSyncBuf { QHash categories; - QStringList removedCategories; - QVariantList tags; - QStringList removedTags; - QHash torrents; - QStringList removedTorrents; - QHash trackers; - QStringList removedTrackers; - QVariantMap serverState; + + QStringList removedCategories; + QStringList removedTags; + QStringList removedTorrents; + QStringList removedTrackers; }; MaindataSyncBuf m_maindataSnapshot; diff --git a/src/webui/api/torrentcreatorcontroller.cpp b/src/webui/api/torrentcreatorcontroller.cpp index 35e2ce849..8167ec99f 100644 --- a/src/webui/api/torrentcreatorcontroller.cpp +++ b/src/webui/api/torrentcreatorcontroller.cpp @@ -32,7 +32,6 @@ #include #include #include -#include #include "base/global.h" #include "base/bittorrent/torrentcreationmanager.h" @@ -89,17 +88,6 @@ namespace } #endif - QStringList parseUrls(const QString &urlsParam) - { - // Empty lines are preserved because they indicate new tracker tier and will be ignored in url seeds. - const QStringList encodedUrls = urlsParam.split(u'|'); - QStringList urls; - urls.reserve(encodedUrls.size()); - for (const QString &urlStr : encodedUrls) - urls << QUrl::fromPercentEncoding(urlStr.toLatin1()); - return urls; - } - QString taskStatusString(const std::shared_ptr task) { if (task->isFailed()) @@ -142,8 +130,8 @@ void TorrentCreatorController::addTaskAction() .torrentFilePath = Path(params()[KEY_TORRENT_FILE_PATH]), .comment = params()[KEY_COMMENT], .source = params()[KEY_SOURCE], - .trackers = parseUrls(params()[KEY_TRACKERS]), - .urlSeeds = parseUrls(params()[KEY_URL_SEEDS]) + .trackers = params()[KEY_TRACKERS].split(u'|'), + .urlSeeds = params()[KEY_URL_SEEDS].split(u'|') }; bool const startSeeding = parseBool(params()[u"startSeeding"_s]).value_or(createTorrentParams.torrentFilePath.isEmpty()); @@ -256,6 +244,4 @@ void TorrentCreatorController::deleteTaskAction() if (!m_torrentCreationManager->deleteTask(id)) throw APIError(APIErrorType::NotFound); - - setResult(QString()); } diff --git a/src/webui/api/torrentscontroller.cpp b/src/webui/api/torrentscontroller.cpp index bb3e98a31..39e536867 100644 --- a/src/webui/api/torrentscontroller.cpp +++ b/src/webui/api/torrentscontroller.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2018-2025 Vladimir Golovnev + * Copyright (C) 2018-2023 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -32,7 +32,6 @@ #include #include -#include #include #include #include @@ -54,20 +53,16 @@ #include "base/interfaces/iapplication.h" #include "base/global.h" #include "base/logger.h" -#include "base/net/downloadmanager.h" -#include "base/preferences.h" #include "base/torrentfilter.h" #include "base/utils/datetime.h" #include "base/utils/fs.h" #include "base/utils/sslkey.h" #include "base/utils/string.h" #include "apierror.h" -#include "apistatus.h" #include "serialize/serialize_torrent.h" // Tracker keys const QString KEY_TRACKER_URL = u"url"_s; -const QString KEY_TRACKER_UPDATING = u"updating"_s; const QString KEY_TRACKER_STATUS = u"status"_s; const QString KEY_TRACKER_TIER = u"tier"_s; const QString KEY_TRACKER_MSG = u"msg"_s; @@ -122,7 +117,6 @@ const QString KEY_PROP_SSL_PRIVATEKEY = u"ssl_private_key"_s; const QString KEY_PROP_SSL_DHPARAMS = u"ssl_dh_params"_s; const QString KEY_PROP_HAS_METADATA = u"has_metadata"_s; const QString KEY_PROP_PROGRESS = u"progress"_s; -const QString KEY_PROP_FILES = u"files"_s; const QString KEY_PROP_TRACKERS = u"trackers"_s; @@ -136,16 +130,6 @@ const QString KEY_FILE_IS_SEED = u"is_seed"_s; const QString KEY_FILE_PIECE_RANGE = u"piece_range"_s; const QString KEY_FILE_AVAILABILITY = u"availability"_s; -// Torrent info -const QString KEY_TORRENTINFO_FILE_LENGTH = u"length"_s; -const QString KEY_TORRENTINFO_FILE_PATH = u"path"_s; -const QString KEY_TORRENTINFO_FILES = u"files"_s; -const QString KEY_TORRENTINFO_INFO = u"info"_s; -const QString KEY_TORRENTINFO_LENGTH = u"length"_s; -const QString KEY_TORRENTINFO_PIECE_LENGTH = u"piece_length"_s; -const QString KEY_TORRENTINFO_TRACKERS = u"trackers"_s; -const QString KEY_TORRENTINFO_WEBSEEDS = u"webseeds"_s; - namespace { using Utils::String::parseBool; @@ -196,11 +180,9 @@ namespace QJsonArray getStickyTrackers(const BitTorrent::Torrent *const torrent) { int seedsDHT = 0, seedsPeX = 0, seedsLSD = 0, leechesDHT = 0, leechesPeX = 0, leechesLSD = 0; - const QList peersList = torrent->fetchPeerInfo().takeResult(); - for (const BitTorrent::PeerInfo &peer : peersList) + for (const BitTorrent::PeerInfo &peer : asConst(torrent->peers())) { - if (peer.isConnecting()) - continue; + if (peer.isConnecting()) continue; if (peer.isSeed()) { @@ -280,7 +262,6 @@ namespace { {KEY_TRACKER_URL, tracker.url}, {KEY_TRACKER_TIER, tracker.tier}, - {KEY_TRACKER_UPDATING, tracker.isUpdating}, {KEY_TRACKER_STATUS, static_cast((isNotWorking ? BitTorrent::TrackerEndpointState::NotWorking : tracker.state))}, {KEY_TRACKER_MSG, tracker.message}, {KEY_TRACKER_PEERS_COUNT, tracker.numPeers}, @@ -293,47 +274,6 @@ namespace return trackerList; } - QJsonArray getFiles(const BitTorrent::Torrent *const torrent, QList fileIndexes = {}) - { - Q_ASSERT(torrent->hasMetadata()); - if (!torrent->hasMetadata()) [[unlikely]] - return {}; - - if (fileIndexes.isEmpty()) - { - const int filesCount = torrent->filesCount(); - fileIndexes.reserve(filesCount); - for (int i = 0; i < filesCount; ++i) - fileIndexes.append(i); - } - - QJsonArray fileList; - const QList priorities = torrent->filePriorities(); - const QList fp = torrent->filesProgress(); - const QList fileAvailability = torrent->fetchAvailableFileFractions().takeResult(); - const BitTorrent::TorrentInfo info = torrent->info(); - for (const int index : asConst(fileIndexes)) - { - const BitTorrent::TorrentInfo::PieceRange idx = info.filePieces(index); - - const QJsonObject fileDict = - { - {KEY_FILE_INDEX, index}, - {KEY_FILE_PROGRESS, fp[index]}, - {KEY_FILE_PRIORITY, static_cast(priorities[index])}, - {KEY_FILE_SIZE, torrent->fileSize(index)}, - {KEY_FILE_AVAILABILITY, fileAvailability[index]}, - // need to provide paths using a platform-independent separator format - {KEY_FILE_NAME, torrent->filePath(index).data()}, - {KEY_FILE_PIECE_RANGE, QJsonArray {idx.first(), idx.last()}} - }; - - fileList.append(fileDict); - } - - return fileList; - } - QList toTorrentIDs(const QStringList &idStrings) { QList idList; @@ -356,123 +296,6 @@ namespace return url; } - - QJsonObject serializeInfoHash(const BitTorrent::InfoHash &infoHash) - { - return { - {KEY_TORRENT_INFOHASHV1, infoHash.v1().toString()}, - {KEY_TORRENT_INFOHASHV2, infoHash.v2().toString()}, - {KEY_TORRENT_ID, infoHash.toTorrentID().toString()}, - }; - } - - QJsonObject serializeTorrentInfo(const BitTorrent::TorrentInfo &info) - { - qlonglong torrentSize = 0; - QJsonArray files; - for (int fileIndex = 0; fileIndex < info.filesCount(); ++fileIndex) - { - const qlonglong fileSize = info.fileSize(fileIndex); - torrentSize += fileSize; - files << QJsonObject - { - // use platform-independent separators - {KEY_TORRENTINFO_FILE_PATH, info.filePath(fileIndex).data()}, - {KEY_TORRENTINFO_FILE_LENGTH, fileSize} - }; - } - - const BitTorrent::InfoHash infoHash = info.infoHash(); - - return { - {KEY_TORRENT_INFOHASHV1, infoHash.v1().toString()}, - {KEY_TORRENT_INFOHASHV2, infoHash.v2().toString()}, - {KEY_TORRENT_ID, infoHash.toTorrentID().toString()}, - {KEY_TORRENTINFO_INFO, QJsonObject { - {KEY_TORRENTINFO_FILES, files}, - {KEY_TORRENTINFO_LENGTH, torrentSize}, - {KEY_TORRENT_NAME, info.name()}, - {KEY_TORRENTINFO_PIECE_LENGTH, info.pieceLength()}, - {KEY_PROP_PIECES_NUM, info.piecesCount()}, - {KEY_PROP_PRIVATE, info.isPrivate()}, - }}, - }; - } - - QJsonObject serializeTorrentInfo(const BitTorrent::TorrentDescriptor &torrentDescr) - { - QJsonObject info = serializeTorrentInfo(torrentDescr.info().value()); - - QJsonArray trackers; - for (const BitTorrent::TrackerEntry &tracker : asConst(torrentDescr.trackers())) - { - trackers << QJsonObject - { - {KEY_TRACKER_URL, tracker.url}, - {KEY_TRACKER_TIER, tracker.tier} - }; - } - info.insert(KEY_TORRENTINFO_TRACKERS, trackers); - - QJsonArray webseeds; - for (const QUrl &webseed : asConst(torrentDescr.urlSeeds())) - { - webseeds << webseed.toString(); - } - info.insert(KEY_TORRENTINFO_WEBSEEDS, webseeds); - - info.insert(KEY_PROP_CREATED_BY, torrentDescr.creator()); - info.insert(KEY_PROP_CREATION_DATE, Utils::DateTime::toSecsSinceEpoch(torrentDescr.creationDate())); - info.insert(KEY_PROP_COMMENT, torrentDescr.comment()); - - return info; - } - - QJsonObject serializeTorrentInfo(const BitTorrent::Torrent &torrent) - { - QJsonObject info = serializeTorrentInfo(torrent.info()); - - QJsonArray trackers; - for (const BitTorrent::TrackerEntryStatus &tracker : asConst(torrent.trackers())) - { - trackers << QJsonObject - { - {KEY_TRACKER_URL, tracker.url}, - {KEY_TRACKER_TIER, tracker.tier} - }; - } - info.insert(KEY_TORRENTINFO_TRACKERS, trackers); - - QJsonArray webseeds; - for (const QUrl &webseed : asConst(torrent.urlSeeds())) - { - webseeds << webseed.toString(); - } - info.insert(KEY_TORRENTINFO_WEBSEEDS, webseeds); - - info.insert(KEY_PROP_CREATED_BY, torrent.creator()); - info.insert(KEY_PROP_CREATION_DATE, Utils::DateTime::toSecsSinceEpoch(torrent.creationDate())); - info.insert(KEY_PROP_COMMENT, torrent.comment()); - - return info; - } - - nonstd::expected parseDownloadPriority(const QString &priorityStr) - { - bool ok = false; - const auto priority = static_cast(priorityStr.toInt(&ok)); - if (!ok) - return nonstd::make_unexpected(TorrentsController::tr("Priority must be an integer")); - if (!isValidDownloadPriority(priority)) - return nonstd::make_unexpected(TorrentsController::tr("Priority is not valid")); - return priority; - } -} - -TorrentsController::TorrentsController(IApplication *app, QObject *parent) - : APIController(app, parent) -{ - connect(BitTorrent::Session::instance(), &BitTorrent::Session::metadataDownloaded, this, &TorrentsController::onMetadataDownloaded); } void TorrentsController::countAction() @@ -507,7 +330,6 @@ void TorrentsController::countAction() // - tag (string): torrent tag for filtering by it (empty string means "untagged"; no "tag" param presented means "any tag") // - hashes (string): filter by hashes, can contain multiple hashes separated by | // - private (bool): filter torrents that are from private trackers (true) or not (false). Empty means any torrent (no filtering) -// - includeFiles (bool): include files in list output (true) or not (false). Empty means not included // - includeTrackers (bool): include trackers in list output (true) or not (false). Empty means not included // - sort (string): name of column for sorting by its value // - reverse (bool): enable reverse sorting @@ -524,7 +346,6 @@ void TorrentsController::infoAction() int offset {params()[u"offset"_s].toInt()}; const QStringList hashes {params()[u"hashes"_s].split(u'|', Qt::SkipEmptyParts)}; const std::optional isPrivate = parseBool(params()[u"private"_s]); - const bool includeFiles = parseBool(params()[u"includeFiles"_s]).value_or(false); const bool includeTrackers = parseBool(params()[u"includeTrackers"_s]).value_or(false); std::optional idSet; @@ -544,8 +365,6 @@ void TorrentsController::infoAction() QVariantMap serializedTorrent = serialize(*torrent); - if (includeFiles && torrent->hasMetadata()) - serializedTorrent.insert(KEY_PROP_FILES, getFiles(torrent)); if (includeTrackers) serializedTorrent.insert(KEY_PROP_TRACKERS, getTrackers(torrent)); @@ -602,6 +421,8 @@ void TorrentsController::infoAction() // normalize offset if (offset < 0) offset = size + offset; + if ((offset >= size) || (offset < 0)) + offset = 0; // normalize limit if (limit <= 0) limit = -1; // unlimited @@ -800,8 +621,6 @@ void TorrentsController::addWebSeedsAction() } torrent->addUrlSeeds(urls); - - setResult(QString()); } void TorrentsController::editWebSeedAction() @@ -834,8 +653,6 @@ void TorrentsController::editWebSeedAction() torrent->removeUrlSeeds({origUrl}); torrent->addUrlSeeds({newUrl}); } - - setResult(QString()); } void TorrentsController::removeWebSeedsAction() @@ -859,8 +676,6 @@ void TorrentsController::removeWebSeedsAction() } torrent->removeUrlSeeds(urls); - - setResult(QString()); } // Returns the files in a torrent in JSON format. @@ -882,14 +697,12 @@ void TorrentsController::filesAction() const BitTorrent::Torrent *const torrent = BitTorrent::Session::instance()->getTorrent(id); if (!torrent) throw APIError(APIErrorType::NotFound); - if (!torrent->hasMetadata()) - return setResult(QJsonArray{}); + const int filesCount = torrent->filesCount(); QList fileIndexes; const auto idxIt = params().constFind(u"indexes"_s); if (idxIt != params().cend()) { - const int filesCount = torrent->filesCount(); const QStringList indexStrings = idxIt.value().split(u'|'); fileIndexes.reserve(indexStrings.size()); std::transform(indexStrings.cbegin(), indexStrings.cend(), std::back_inserter(fileIndexes) @@ -904,13 +717,41 @@ void TorrentsController::filesAction() return index; }); } - - QJsonArray fileList = getFiles(torrent, fileIndexes); - if (!fileList.isEmpty()) + else { - QJsonObject firstFile = fileList[0].toObject(); - firstFile[KEY_FILE_IS_SEED] = torrent->isFinished(); - fileList[0] = firstFile; + fileIndexes.reserve(filesCount); + for (int i = 0; i < filesCount; ++i) + fileIndexes.append(i); + } + + QJsonArray fileList; + if (torrent->hasMetadata()) + { + const QList priorities = torrent->filePriorities(); + const QList fp = torrent->filesProgress(); + const QList fileAvailability = torrent->availableFileFractions(); + const BitTorrent::TorrentInfo info = torrent->info(); + for (const int index : asConst(fileIndexes)) + { + QJsonObject fileDict = + { + {KEY_FILE_INDEX, index}, + {KEY_FILE_PROGRESS, fp[index]}, + {KEY_FILE_PRIORITY, static_cast(priorities[index])}, + {KEY_FILE_SIZE, torrent->fileSize(index)}, + {KEY_FILE_AVAILABILITY, fileAvailability[index]}, + // need to provide paths using a platform-independent separator format + {KEY_FILE_NAME, torrent->filePath(index).data()} + }; + + const BitTorrent::TorrentInfo::PieceRange idx = info.filePieces(index); + fileDict[KEY_FILE_PIECE_RANGE] = QJsonArray {idx.first(), idx.last()}; + + if (index == 0) + fileDict[KEY_FILE_IS_SEED] = torrent->isFinished(); + + fileList.append(fileDict); + } } setResult(fileList); @@ -957,7 +798,7 @@ void TorrentsController::pieceStatesAction() for (int i = 0; i < states.size(); ++i) pieceStates.append(static_cast(states[i]) * 2); - const QBitArray dlstates = torrent->fetchDownloadingPieces().takeResult(); + const QBitArray dlstates = torrent->downloadingPieces(); for (int i = 0; i < states.size(); ++i) { if (dlstates[i]) @@ -969,7 +810,7 @@ void TorrentsController::pieceStatesAction() void TorrentsController::addAction() { - const QStringList urls = params()[u"urls"_s].split(u'\n', Qt::SkipEmptyParts); + const QString urls = params()[u"urls"_s]; const bool skipChecking = parseBool(params()[u"skip_checking"_s]).value_or(false); const bool seqDownload = parseBool(params()[u"sequentialDownload"_s]).value_or(false); @@ -1001,28 +842,7 @@ void TorrentsController::addAction() ? Utils::String::toEnum(contentLayoutParam, BitTorrent::TorrentContentLayout::Original) : std::optional {}); - const DataMap &torrents = data(); - - QList filePriorities; - const QStringList filePrioritiesParam = params()[u"filePriorities"_s].split(u',', Qt::SkipEmptyParts); - if (!filePrioritiesParam.isEmpty()) - { - if (urls.size() > 1) - throw APIError(APIErrorType::BadParams, tr("Cannot specify filePriorities when adding multiple torrents")); - if (!torrents.isEmpty()) - throw APIError(APIErrorType::BadParams, tr("Cannot specify filePriorities when uploading torrent files")); - - filePriorities.reserve(filePrioritiesParam.size()); - for (const QString &priorityStr : filePrioritiesParam) - { - const nonstd::expected result = parseDownloadPriority(priorityStr); - if (!result) - throw APIError(APIErrorType::BadParams, result.error()); - filePriorities << result.value(); - } - } - - BitTorrent::AddTorrentParams addTorrentParams + const BitTorrent::AddTorrentParams addTorrentParams { // TODO: Check if destination actually exists .name = torrentName, @@ -1056,46 +876,17 @@ void TorrentsController::addAction() } }; - bool partialSuccess = false; - for (QString url : urls) + for (QString url : asConst(urls.split(u'\n'))) { url = url.trimmed(); - if (url.isEmpty()) - continue; - - BitTorrent::InfoHash infoHash; - if (const auto iter = m_torrentSourceCache.constFind(url); iter != m_torrentSourceCache.constEnd()) - infoHash = iter.value(); - else if (const auto sourceTorrentDescr = BitTorrent::TorrentDescriptor::parse(url)) - infoHash = sourceTorrentDescr.value().infoHash(); - - const BitTorrent::TorrentID torrentID = infoHash.toTorrentID(); - if (const BitTorrent::TorrentDescriptor &torrentDescr = m_torrentMetadataCache.value(torrentID); torrentDescr.info().has_value()) + if (!url.isEmpty()) { - if (!filePriorities.isEmpty()) - { - const BitTorrent::TorrentInfo &info = torrentDescr.info().value(); - if (filePriorities.size() != info.filesCount()) - throw APIError(APIErrorType::BadParams, tr("Length of filePriorities must equal number of files in torrent")); - - addTorrentParams.filePriorities = filePriorities; - } - - partialSuccess |= BitTorrent::Session::instance()->addTorrent(torrentDescr, addTorrentParams); - } - else - { - if (!filePriorities.isEmpty()) - throw APIError(APIErrorType::BadParams, tr("filePriorities may only be specified when metadata has already been fetched")); - partialSuccess |= app()->addTorrentManager()->addTorrent(url, addTorrentParams); } - m_torrentSourceCache.remove(url); - m_torrentMetadataCache.remove(torrentID); } - // process uploaded .torrent files + const DataMap &torrents = data(); for (auto it = torrents.constBegin(); it != torrents.constEnd(); ++it) { if (const auto loadResult = BitTorrent::TorrentDescriptor::load(it.value())) @@ -1117,10 +908,14 @@ void TorrentsController::addAction() void TorrentsController::addTrackersAction() { requireParams({u"hash"_s, u"urls"_s}); - const QList trackers = BitTorrent::parseTrackerEntries(params()[u"urls"_s]); - const QStringList idStrings = params()[u"hash"_s].split(u'|'); - applyToTorrents(idStrings, [&trackers](BitTorrent::Torrent *const torrent) { torrent->addTrackers(trackers); }); + const auto id = BitTorrent::TorrentID::fromString(params()[u"hash"_s]); + BitTorrent::Torrent *const torrent = BitTorrent::Session::instance()->getTorrent(id); + if (!torrent) + throw APIError(APIErrorType::NotFound); + + const QList entries = BitTorrent::parseTrackerEntries(params()[u"urls"_s]); + torrent->addTrackers(entries); } void TorrentsController::editTrackerAction() @@ -1171,19 +966,16 @@ void TorrentsController::editTrackerAction() throw APIError(APIErrorType::Conflict, u"Tracker not found"_s); torrent->replaceTrackers(entries); - torrent->forceReannounce(); - setResult(QString()); + if (!torrent->isStopped()) + torrent->forceReannounce(); } void TorrentsController::removeTrackersAction() { requireParams({u"hash"_s, u"urls"_s}); - QString hash = params()[u"hash"_s]; - if (hash == u"*"_s) - hash = u"all"_s; - const QStringList idStrings = hash.split(u'|', Qt::SkipEmptyParts); + const QString hashParam = params()[u"hash"_s]; const QStringList urlsParam = params()[u"urls"_s].split(u'|', Qt::SkipEmptyParts); QStringList urls; @@ -1191,7 +983,26 @@ void TorrentsController::removeTrackersAction() for (const QString &urlStr : urlsParam) urls << QUrl::fromPercentEncoding(urlStr.toLatin1()); - applyToTorrents(idStrings, [&urls](BitTorrent::Torrent *const torrent) { torrent->removeTrackers(urls); }); + QList torrents; + + if (hashParam == u"*"_s) + { + // remove trackers from all torrents + torrents = BitTorrent::Session::instance()->torrents(); + } + else + { + // remove trackers from specified torrent + const auto id = BitTorrent::TorrentID::fromString(hashParam); + BitTorrent::Torrent *const torrent = BitTorrent::Session::instance()->getTorrent(id); + if (!torrent) + throw APIError(APIErrorType::NotFound); + + torrents.append(torrent); + } + + for (BitTorrent::Torrent *const torrent : asConst(torrents)) + torrent->removeTrackers(urls); } void TorrentsController::addPeersAction() @@ -1238,8 +1049,6 @@ void TorrentsController::stopAction() const QStringList hashes = params()[u"hashes"_s].split(u'|'); applyToTorrents(hashes, [](BitTorrent::Torrent *const torrent) { torrent->stop(); }); - - setResult(QString()); } void TorrentsController::startAction() @@ -1248,8 +1057,6 @@ void TorrentsController::startAction() const QStringList idStrings = params()[u"hashes"_s].split(u'|'); applyToTorrents(idStrings, [](BitTorrent::Torrent *const torrent) { torrent->start(); }); - - setResult(QString()); } void TorrentsController::filePrioAction() @@ -1257,11 +1064,13 @@ void TorrentsController::filePrioAction() requireParams({u"hash"_s, u"id"_s, u"priority"_s}); const auto id = BitTorrent::TorrentID::fromString(params()[u"hash"_s]); - const nonstd::expected result = parseDownloadPriority(params()[u"priority"_s]); - if (!result) - throw APIError(APIErrorType::BadParams, result.error()); + bool ok = false; + const auto priority = static_cast(params()[u"priority"_s].toInt(&ok)); + if (!ok) + throw APIError(APIErrorType::BadParams, tr("Priority must be an integer")); - const BitTorrent::DownloadPriority priority = result.value(); + if (!BitTorrent::isValidDownloadPriority(priority)) + throw APIError(APIErrorType::BadParams, tr("Priority is not valid")); BitTorrent::Torrent *const torrent = BitTorrent::Session::instance()->getTorrent(id); if (!torrent) @@ -1274,7 +1083,6 @@ void TorrentsController::filePrioAction() bool priorityChanged = false; for (const QString &fileID : params()[u"id"_s].split(u'|')) { - bool ok = false; const int id = fileID.toInt(&ok); if (!ok) throw APIError(APIErrorType::BadParams, tr("File IDs must be integers")); @@ -1290,8 +1098,6 @@ void TorrentsController::filePrioAction() if (priorityChanged) torrent->prioritizeFiles(priorities); - - setResult(QString()); } void TorrentsController::uploadLimitAction() @@ -1340,8 +1146,6 @@ void TorrentsController::setUploadLimitAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; applyToTorrents(hashes, [limit](BitTorrent::Torrent *const torrent) { torrent->setUploadLimit(limit); }); - - setResult(QString()); } void TorrentsController::setDownloadLimitAction() @@ -1354,8 +1158,6 @@ void TorrentsController::setDownloadLimitAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; applyToTorrents(hashes, [limit](BitTorrent::Torrent *const torrent) { torrent->setDownloadLimit(limit); }); - - setResult(QString()); } void TorrentsController::setShareLimitsAction() @@ -1373,8 +1175,6 @@ void TorrentsController::setShareLimitsAction() torrent->setSeedingTimeLimit(seedingTimeLimit); torrent->setInactiveSeedingTimeLimit(inactiveSeedingTimeLimit); }); - - setResult(QString()); } void TorrentsController::toggleSequentialDownloadAction() @@ -1383,8 +1183,6 @@ void TorrentsController::toggleSequentialDownloadAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; applyToTorrents(hashes, [](BitTorrent::Torrent *const torrent) { torrent->toggleSequentialDownload(); }); - - setResult(QString()); } void TorrentsController::toggleFirstLastPiecePrioAction() @@ -1393,8 +1191,6 @@ void TorrentsController::toggleFirstLastPiecePrioAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; applyToTorrents(hashes, [](BitTorrent::Torrent *const torrent) { torrent->toggleFirstLastPiecePriority(); }); - - setResult(QString()); } void TorrentsController::setSuperSeedingAction() @@ -1404,8 +1200,6 @@ void TorrentsController::setSuperSeedingAction() const bool value {parseBool(params()[u"value"_s]).value_or(false)}; const QStringList hashes {params()[u"hashes"_s].split(u'|')}; applyToTorrents(hashes, [value](BitTorrent::Torrent *const torrent) { torrent->setSuperSeeding(value); }); - - setResult(QString()); } void TorrentsController::setForceStartAction() @@ -1418,8 +1212,6 @@ void TorrentsController::setForceStartAction() { torrent->start(value ? BitTorrent::TorrentOperatingMode::Forced : BitTorrent::TorrentOperatingMode::AutoManaged); }); - - setResult(QString()); } void TorrentsController::deleteAction() @@ -1433,8 +1225,6 @@ void TorrentsController::deleteAction() { BitTorrent::Session::instance()->removeTorrent(torrent->id(), deleteOption); }); - - setResult(QString()); } void TorrentsController::increasePrioAction() @@ -1446,8 +1236,6 @@ void TorrentsController::increasePrioAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; BitTorrent::Session::instance()->increaseTorrentsQueuePos(toTorrentIDs(hashes)); - - setResult(QString()); } void TorrentsController::decreasePrioAction() @@ -1459,8 +1247,6 @@ void TorrentsController::decreasePrioAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; BitTorrent::Session::instance()->decreaseTorrentsQueuePos(toTorrentIDs(hashes)); - - setResult(QString()); } void TorrentsController::topPrioAction() @@ -1472,8 +1258,6 @@ void TorrentsController::topPrioAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; BitTorrent::Session::instance()->topTorrentsQueuePos(toTorrentIDs(hashes)); - - setResult(QString()); } void TorrentsController::bottomPrioAction() @@ -1485,8 +1269,6 @@ void TorrentsController::bottomPrioAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; BitTorrent::Session::instance()->bottomTorrentsQueuePos(toTorrentIDs(hashes)); - - setResult(QString()); } void TorrentsController::setLocationAction() @@ -1510,8 +1292,6 @@ void TorrentsController::setLocationAction() torrent->setAutoTMMEnabled(false); torrent->setSavePath(newLocation); }); - - setResult(QString()); } void TorrentsController::setSavePathAction() @@ -1537,8 +1317,6 @@ void TorrentsController::setSavePathAction() if (!torrent->isAutoTMMEnabled()) torrent->setSavePath(newPath); }); - - setResult(QString()); } void TorrentsController::setDownloadPathAction() @@ -1564,8 +1342,6 @@ void TorrentsController::setDownloadPathAction() if (!torrent->isAutoTMMEnabled()) torrent->setDownloadPath(newPath); }); - - setResult(QString()); } void TorrentsController::renameAction() @@ -1584,8 +1360,6 @@ void TorrentsController::renameAction() name.replace(QRegularExpression(u"\r?\n|\r"_s), u" "_s); torrent->setName(name); - - setResult(QString()); } void TorrentsController::setAutoManagementAction() @@ -1599,8 +1373,6 @@ void TorrentsController::setAutoManagementAction() { torrent->setAutoTMMEnabled(isEnabled); }); - - setResult(QString()); } void TorrentsController::recheckAction() @@ -1609,8 +1381,6 @@ void TorrentsController::recheckAction() const QStringList hashes {params()[u"hashes"_s].split(u'|')}; applyToTorrents(hashes, [](BitTorrent::Torrent *const torrent) { torrent->forceRecheck(); }); - - setResult(QString()); } void TorrentsController::reannounceAction() @@ -1618,13 +1388,7 @@ void TorrentsController::reannounceAction() requireParams({u"hashes"_s}); const QStringList hashes {params()[u"hashes"_s].split(u'|')}; - applyToTorrents(hashes, [](BitTorrent::Torrent *const torrent) - { - torrent->forceReannounce(); - torrent->forceDHTAnnounce(); - }); - - setResult(QString()); + applyToTorrents(hashes, [](BitTorrent::Torrent *const torrent) { torrent->forceReannounce(); }); } void TorrentsController::setCategoryAction() @@ -1639,8 +1403,6 @@ void TorrentsController::setCategoryAction() if (!torrent->setCategory(category)) throw APIError(APIErrorType::Conflict, tr("Incorrect category name")); }); - - setResult(QString()); } void TorrentsController::createCategoryAction() @@ -1666,8 +1428,6 @@ void TorrentsController::createCategoryAction() if (!BitTorrent::Session::instance()->addCategory(category, categoryOptions)) throw APIError(APIErrorType::Conflict, tr("Unable to create category")); - - setResult(QString()); } void TorrentsController::editCategoryAction() @@ -1690,8 +1450,6 @@ void TorrentsController::editCategoryAction() if (!BitTorrent::Session::instance()->editCategory(category, categoryOptions)) throw APIError(APIErrorType::Conflict, tr("Unable to edit category")); - - setResult(QString()); } void TorrentsController::removeCategoriesAction() @@ -1701,8 +1459,6 @@ void TorrentsController::removeCategoriesAction() const QStringList categories {params()[u"categories"_s].split(u'\n')}; for (const QString &category : categories) BitTorrent::Session::instance()->removeCategory(category); - - setResult(QString()); } void TorrentsController::categoriesAction() @@ -1738,8 +1494,6 @@ void TorrentsController::addTagsAction() torrent->addTag(Tag(tagStr)); }); } - - setResult(QString()); } void TorrentsController::setTagsAction() @@ -1785,8 +1539,6 @@ void TorrentsController::removeTagsAction() torrent->removeAllTags(); }); } - - setResult(QString()); } void TorrentsController::createTagsAction() @@ -1797,8 +1549,6 @@ void TorrentsController::createTagsAction() for (const QString &tagStr : tags) BitTorrent::Session::instance()->addTag(Tag(tagStr)); - - setResult(QString()); } void TorrentsController::deleteTagsAction() @@ -1808,8 +1558,6 @@ void TorrentsController::deleteTagsAction() const QStringList tags {params()[u"tags"_s].split(u',', Qt::SkipEmptyParts)}; for (const QString &tagStr : tags) BitTorrent::Session::instance()->removeTag(Tag(tagStr)); - - setResult(QString()); } void TorrentsController::tagsAction() @@ -1840,8 +1588,6 @@ void TorrentsController::renameFileAction() { throw APIError(APIErrorType::Conflict, error.message()); } - - setResult(QString()); } void TorrentsController::renameFolderAction() @@ -1864,8 +1610,6 @@ void TorrentsController::renameFolderAction() { throw APIError(APIErrorType::Conflict, error.message()); } - - setResult(QString()); } void TorrentsController::exportAction() @@ -1922,201 +1666,4 @@ void TorrentsController::setSSLParametersAction() throw APIError(APIErrorType::BadData); torrent->setSSLParameters(sslParams); - - setResult(QString()); -} - -void TorrentsController::fetchMetadataAction() -{ - requireParams({u"source"_s}); - - const QString sourceParam = params()[u"source"_s].trimmed(); - // must provide some value to parse - if (sourceParam.isEmpty()) - throw APIError(APIErrorType::BadParams, tr("Must specify URI or hash")); - - const QString source = QUrl::fromPercentEncoding(sourceParam.toLatin1()); - const auto sourceTorrentDescr = BitTorrent::TorrentDescriptor::parse(source); - - const BitTorrent::InfoHash infoHash = sourceTorrentDescr ? sourceTorrentDescr.value().infoHash() : m_torrentSourceCache.value(source); - const BitTorrent::TorrentID torrentID = infoHash.toTorrentID(); - if (infoHash.isValid()) - { - // check metadata cache - if (const BitTorrent::TorrentDescriptor &torrentDescr = m_torrentMetadataCache.value(torrentID); - torrentDescr.info().has_value()) - { - setResult(serializeTorrentInfo(torrentDescr)); - } - // check transfer list - else if (const BitTorrent::Torrent *const torrent = BitTorrent::Session::instance()->findTorrent(infoHash); - torrent && torrent->info().isValid()) - { - setResult(serializeTorrentInfo(*torrent)); - } - // check request cache - else if (BitTorrent::Session::instance()->isKnownTorrent(infoHash)) - { - setResult(serializeInfoHash(infoHash)); - setStatus(APIStatus::Async); - } - // request torrent's metadata - else - { - if (!BitTorrent::Session::instance()->downloadMetadata(sourceTorrentDescr.value())) [[unlikely]] - throw APIError(APIErrorType::BadParams, tr("Unable to download metadata for '%1'").arg(torrentID.toString())); - - m_torrentMetadataCache.insert(torrentID, sourceTorrentDescr.value()); - - setResult(serializeInfoHash(infoHash)); - setStatus(APIStatus::Async); - } - } - // http(s) url - else if (Net::DownloadManager::hasSupportedScheme(source)) - { - if (!m_requestedTorrentSource.contains(source)) - { - const auto *pref = Preferences::instance(); - - Net::DownloadManager::instance()->download(Net::DownloadRequest(source).limit(pref->getTorrentFileSizeLimit()) - , pref->useProxyForGeneralPurposes(), this, &TorrentsController::onDownloadFinished); - - m_requestedTorrentSource.insert(source); - } - - setResult(QJsonObject {}); - setStatus(APIStatus::Async); - } - else - { - throw APIError(APIErrorType::BadParams, tr("Unable to parse '%1'").arg(source)); - } -} - -void TorrentsController::parseMetadataAction() -{ - const DataMap &uploadedTorrents = data(); - // must provide some value to parse - if (uploadedTorrents.isEmpty()) - throw APIError(APIErrorType::BadParams, tr("Must specify torrent file(s)")); - - QJsonObject result; - for (auto it = uploadedTorrents.constBegin(); it != uploadedTorrents.constEnd(); ++it) - { - if (const auto loadResult = BitTorrent::TorrentDescriptor::load(it.value())) - { - const BitTorrent::TorrentDescriptor &torrentDescr = loadResult.value(); - m_torrentMetadataCache.insert(torrentDescr.infoHash().toTorrentID(), torrentDescr); - - const QString &fileName = it.key(); - result.insert(fileName, serializeTorrentInfo(torrentDescr)); - } - else - { - throw APIError(APIErrorType::BadData, tr("'%1' is not a valid torrent file.").arg(it.key())); - } - } - - setResult(result); -} - -void TorrentsController::saveMetadataAction() -{ - requireParams({u"source"_s}); - - const QString sourceParam = params()[u"source"_s].trimmed(); - if (sourceParam.isEmpty()) - throw APIError(APIErrorType::BadParams, tr("Must specify URI or hash")); - - const QString source = QUrl::fromPercentEncoding(sourceParam.toLatin1()); - - BitTorrent::InfoHash infoHash; - if (const auto iter = m_torrentSourceCache.constFind(source); iter != m_torrentSourceCache.constEnd()) - infoHash = iter.value(); - else if (const auto sourceTorrentDescr = BitTorrent::TorrentDescriptor::parse(source)) - infoHash = sourceTorrentDescr.value().infoHash(); - - if (!infoHash.isValid()) - throw APIError(APIErrorType::NotFound); - - const BitTorrent::TorrentID torrentID = infoHash.toTorrentID(); - const BitTorrent::TorrentDescriptor &torrentDescr = m_torrentMetadataCache.value(torrentID); - if (!torrentDescr.info().has_value()) - throw APIError(APIErrorType::Conflict, tr("Metadata is not yet available")); - - const nonstd::expected result = torrentDescr.saveToBuffer(); - if (!result) - throw APIError(APIErrorType::Conflict, tr("Unable to export torrent metadata. Error: %1").arg(result.error())); - - setResult(result.value(), u"application/x-bittorrent"_s, (torrentID.toString() + u".torrent")); -} - -void TorrentsController::onDownloadFinished(const Net::DownloadResult &result) -{ - const QString source = result.url; - m_requestedTorrentSource.remove(source); - - switch (result.status) - { - case Net::DownloadStatus::Success: - // use the info directly from the .torrent file - if (const auto loadResult = BitTorrent::TorrentDescriptor::load(result.data)) - { - const BitTorrent::TorrentDescriptor &torrentDescr = loadResult.value(); - const BitTorrent::InfoHash infoHash = torrentDescr.infoHash(); - m_torrentSourceCache.insert(source, infoHash); - m_torrentMetadataCache.insert(infoHash.toTorrentID(), torrentDescr); - } - else - { - LogMsg(tr("Parse torrent failed. URL: \"%1\". Error: \"%2\".").arg(source, loadResult.error()), Log::WARNING); - m_torrentSourceCache.remove(source); - } - break; - - case Net::DownloadStatus::RedirectedToMagnet: - if (const auto parseResult = BitTorrent::TorrentDescriptor::parse(result.magnetURI)) - { - const BitTorrent::TorrentDescriptor &torrentDescr = parseResult.value(); - const BitTorrent::InfoHash infoHash = torrentDescr.infoHash(); - const BitTorrent::TorrentID torrentID = infoHash.toTorrentID(); - m_torrentSourceCache.insert(source, infoHash); - - if (!m_torrentMetadataCache.contains(torrentID) && !BitTorrent::Session::instance()->isKnownTorrent(infoHash)) - { - if (BitTorrent::Session::instance()->downloadMetadata(torrentDescr)) - m_torrentMetadataCache.insert(torrentID, torrentDescr); - } - } - else - { - LogMsg(tr("Parse magnet URI failed. URI: \"%1\". Error: \"%2\".").arg(result.magnetURI, parseResult.error()), Log::WARNING); - m_torrentSourceCache.remove(source); - } - break; - - default: - break; - } -} - -void TorrentsController::onMetadataDownloaded(const BitTorrent::TorrentInfo &info) -{ - Q_ASSERT(info.isValid()); - if (!info.isValid()) [[unlikely]] - return; - - if (auto iter = m_torrentMetadataCache.find(info.infoHash().toTorrentID()); iter != m_torrentMetadataCache.end()) - { - iter.value().setTorrentInfo(info); - } - else if (info.infoHash().isHybrid()) - { - // hybrid torrents use the v2 hash for their torrentID, but the torrent may have previously been stored - // in m_torrentMetadataCache using the v1 hash, before the v2 hash was known/available - const BitTorrent::TorrentID v1TorrentID = BitTorrent::TorrentID::fromSHA1Hash(info.infoHash().v1()); - if (auto iter = m_torrentMetadataCache.find(v1TorrentID); iter != m_torrentMetadataCache.end()) - iter.value().setTorrentInfo(info); - } } diff --git a/src/webui/api/torrentscontroller.h b/src/webui/api/torrentscontroller.h index 2792c835c..a233048ac 100644 --- a/src/webui/api/torrentscontroller.h +++ b/src/webui/api/torrentscontroller.h @@ -28,31 +28,15 @@ #pragma once -#include -#include - -#include "base/bittorrent/torrentdescriptor.h" #include "apicontroller.h" -namespace BitTorrent -{ - class InfoHash; - class TorrentID; - class TorrentInfo; -} - -namespace Net -{ - struct DownloadResult; -} - class TorrentsController : public APIController { Q_OBJECT Q_DISABLE_COPY_MOVE(TorrentsController) public: - explicit TorrentsController(IApplication *app, QObject *parent = nullptr); + using APIController::APIController; private slots: void countAction(); @@ -111,15 +95,4 @@ private slots: void exportAction(); void SSLParametersAction(); void setSSLParametersAction(); - void fetchMetadataAction(); - void parseMetadataAction(); - void saveMetadataAction(); - -private: - void onDownloadFinished(const Net::DownloadResult &result); - void onMetadataDownloaded(const BitTorrent::TorrentInfo &info); - - QHash m_torrentSourceCache; - QHash m_torrentMetadataCache; - QSet m_requestedTorrentSource; }; diff --git a/src/webui/api/transfercontroller.cpp b/src/webui/api/transfercontroller.cpp index 8ef1c5803..66ecb2747 100644 --- a/src/webui/api/transfercontroller.cpp +++ b/src/webui/api/transfercontroller.cpp @@ -104,8 +104,6 @@ void TransferController::setUploadLimitAction() if (limit == 0) limit = -1; BitTorrent::Session::instance()->setUploadSpeedLimit(limit); - - setResult(QString()); } void TransferController::setDownloadLimitAction() @@ -115,16 +113,12 @@ void TransferController::setDownloadLimitAction() if (limit == 0) limit = -1; BitTorrent::Session::instance()->setDownloadSpeedLimit(limit); - - setResult(QString()); } void TransferController::toggleSpeedLimitsModeAction() { BitTorrent::Session *const session = BitTorrent::Session::instance(); session->setAltGlobalSpeedLimitEnabled(!session->isAltGlobalSpeedLimitEnabled()); - - setResult(QString()); } void TransferController::speedLimitsModeAction() @@ -142,8 +136,6 @@ void TransferController::setSpeedLimitsModeAction() // Any non-zero values are considered as alternative mode BitTorrent::Session::instance()->setAltGlobalSpeedLimitEnabled(mode != 0); - - setResult(QString()); } void TransferController::banPeersAction() @@ -157,6 +149,4 @@ void TransferController::banPeersAction() if (!addr.ip.isNull()) BitTorrent::Session::instance()->banIP(addr.ip.toString()); } - - setResult(QString()); } diff --git a/src/base/freediskspacechecker.cpp b/src/webui/freediskspacechecker.cpp similarity index 78% rename from src/base/freediskspacechecker.cpp rename to src/webui/freediskspacechecker.cpp index ace9dcf96..23939fc97 100644 --- a/src/base/freediskspacechecker.cpp +++ b/src/webui/freediskspacechecker.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2023-2025 Vladimir Golovnev + * Copyright (C) 2023 Vladimir Golovnev * Copyright (C) 2018 Thomas Piccirello * * This program is free software; you can redistribute it and/or @@ -29,24 +29,16 @@ #include "freediskspacechecker.h" +#include "base/bittorrent/session.h" #include "base/utils/fs.h" -FreeDiskSpaceChecker::FreeDiskSpaceChecker(const Path &pathToCheck) - : m_pathToCheck {pathToCheck} +qint64 FreeDiskSpaceChecker::lastResult() const { -} - -Path FreeDiskSpaceChecker::pathToCheck() const -{ - return m_pathToCheck; -} - -void FreeDiskSpaceChecker::setPathToCheck(const Path &newPathToCheck) -{ - m_pathToCheck = newPathToCheck; + return m_lastResult; } void FreeDiskSpaceChecker::check() { - emit checked(Utils::Fs::freeDiskSpaceOnPath(m_pathToCheck)); + m_lastResult = Utils::Fs::freeDiskSpaceOnPath(BitTorrent::Session::instance()->savePath()); + emit checked(m_lastResult); } diff --git a/src/base/freediskspacechecker.h b/src/webui/freediskspacechecker.h similarity index 87% rename from src/base/freediskspacechecker.h rename to src/webui/freediskspacechecker.h index 950ffc026..31be38b34 100644 --- a/src/base/freediskspacechecker.h +++ b/src/webui/freediskspacechecker.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2023-2025 Vladimir Golovnev + * Copyright (C) 2023 Vladimir Golovnev * Copyright (C) 2018 Thomas Piccirello * * This program is free software; you can redistribute it and/or @@ -31,18 +31,15 @@ #include -#include "base/path.h" - class FreeDiskSpaceChecker final : public QObject { Q_OBJECT Q_DISABLE_COPY_MOVE(FreeDiskSpaceChecker) public: - FreeDiskSpaceChecker(const Path &pathToCheck); + using QObject::QObject; - Path pathToCheck() const; - void setPathToCheck(const Path &newPathToCheck); + qint64 lastResult() const; public slots: void check(); @@ -51,5 +48,5 @@ signals: void checked(qint64 freeSpaceSize); private: - Path m_pathToCheck; + qint64 m_lastResult = 0; }; diff --git a/src/webui/webapplication.cpp b/src/webui/webapplication.cpp index a28e002b5..74f582f4a 100644 --- a/src/webui/webapplication.cpp +++ b/src/webui/webapplication.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2014-2025 Vladimir Golovnev + * Copyright (C) 2014-2024 Vladimir Golovnev * Copyright (C) 2024 Radu Carpa * * This program is free software; you can redistribute it and/or @@ -43,10 +43,10 @@ #include #include #include +#include #include #include "base/algorithm.h" -#include "base/bittorrent/session.h" #include "base/bittorrent/torrentcreationmanager.h" #include "base/http/httperror.h" #include "base/logger.h" @@ -67,6 +67,7 @@ #include "api/torrentcreatorcontroller.h" #include "api/torrentscontroller.h" #include "api/transfercontroller.h" +#include "freediskspacechecker.h" const int MAX_ALLOWED_FILESIZE = 10 * 1024 * 1024; const QString DEFAULT_SESSION_COOKIE_NAME = u"SID"_s; @@ -74,7 +75,10 @@ const QString DEFAULT_SESSION_COOKIE_NAME = u"SID"_s; const QString WWW_FOLDER = u":/www"_s; const QString PUBLIC_FOLDER = u"/public"_s; const QString PRIVATE_FOLDER = u"/private"_s; -const QString INDEX_HTML = u"/index.html"_s; + +using namespace std::chrono_literals; + +const std::chrono::seconds FREEDISKSPACE_CHECK_TIMEOUT = 30s; namespace { @@ -90,8 +94,8 @@ namespace if (idx < 0) continue; - const QString name = cookie.first(idx).trimmed().toString(); - const QString value = Utils::String::unquote(cookie.sliced(idx + 1).trimmed()).toString(); + const QString name = cookie.left(idx).trimmed().toString(); + const QString value = Utils::String::unquote(cookie.mid(idx + 1).trimmed()).toString(); ret.insert(name, value); } return ret; @@ -157,6 +161,9 @@ WebApplication::WebApplication(IApplication *app, QObject *parent) : ApplicationComponent(app, parent) , m_cacheID {QString::number(Utils::Random::rand(), 36)} , m_authController {new AuthController(this, app, this)} + , m_workerThread {new QThread} + , m_freeDiskSpaceChecker {new FreeDiskSpaceChecker} + , m_freeDiskSpaceCheckingTimer {new QTimer(this)} , m_torrentCreationManager {new BitTorrent::TorrentCreationManager(app, this)} { declarePublicAPI(u"auth/login"_s); @@ -174,6 +181,17 @@ WebApplication::WebApplication(IApplication *app, QObject *parent) } m_sessionCookieName = DEFAULT_SESSION_COOKIE_NAME; } + + m_freeDiskSpaceChecker->moveToThread(m_workerThread.get()); + connect(m_workerThread.get(), &QThread::finished, m_freeDiskSpaceChecker, &QObject::deleteLater); + m_workerThread->setObjectName("WebApplication m_workerThread"); + m_workerThread->start(); + + m_freeDiskSpaceCheckingTimer->setInterval(FREEDISKSPACE_CHECK_TIMEOUT); + m_freeDiskSpaceCheckingTimer->setSingleShot(true); + connect(m_freeDiskSpaceCheckingTimer, &QTimer::timeout, m_freeDiskSpaceChecker, &FreeDiskSpaceChecker::check); + connect(m_freeDiskSpaceChecker, &FreeDiskSpaceChecker::checked, m_freeDiskSpaceCheckingTimer, qOverload<>(&QTimer::start)); + QMetaObject::invokeMethod(m_freeDiskSpaceChecker, &FreeDiskSpaceChecker::check); } WebApplication::~WebApplication() @@ -195,7 +213,7 @@ void WebApplication::sendWebUIFile() const QString path = (request().path != u"/") ? request().path - : INDEX_HTML; + : u"/index.html"_s; Path localPath = m_rootFolder / Path(session() ? PRIVATE_FOLDER : PUBLIC_FOLDER) @@ -209,17 +227,7 @@ void WebApplication::sendWebUIFile() if (m_isAltUIUsed) { if (!Utils::Fs::isRegularFile(localPath)) - { -#ifdef DISABLE_GUI - if (path == INDEX_HTML) - { - auto *preferences = Preferences::instance(); - preferences->setAltWebUIEnabled(false); - preferences->apply(); - } -#endif throw InternalServerErrorHTTPError(tr("Unacceptable file type, only regular file is allowed.")); - } const QString rootFolder = m_rootFolder.data(); @@ -227,17 +235,7 @@ void WebApplication::sendWebUIFile() while (fileInfo.path() != rootFolder) { if (fileInfo.isSymLink()) - { -#ifdef DISABLE_GUI - if (path == INDEX_HTML) - { - auto *preferences = Preferences::instance(); - preferences->setAltWebUIEnabled(false); - preferences->apply(); - } -#endif throw InternalServerErrorHTTPError(tr("Symlinks inside alternative UI folder are forbidden.")); - } fileInfo.setFile(fileInfo.path()); } @@ -258,15 +256,15 @@ void WebApplication::translateDocument(QString &data) const i = data.indexOf(regex, i, ®exMatch); if (i >= 0) { - const QStringView sourceText = regexMatch.capturedView(1); - const QStringView context = regexMatch.capturedView(3); + const QString sourceText = regexMatch.captured(1); + const QString context = regexMatch.captured(3); const QString loadedText = m_translationFileLoaded ? m_translator.translate(context.toUtf8().constData(), sourceText.toUtf8().constData()) : QString(); // `loadedText` is empty when translation is not provided // it should fallback to `sourceText` - QString translation = loadedText.isEmpty() ? sourceText.toString() : loadedText; + QString translation = loadedText.isEmpty() ? sourceText : loadedText; // Escape quotes to workaround issues with HTML attributes // FIXME: this is a dirty workaround to deal with broken translation strings: @@ -341,8 +339,8 @@ void WebApplication::doProcessRequest() } // Filter HTTP methods - const auto allowedMethodIter = m_allowedMethod.constFind({scope, action}); - if (allowedMethodIter == m_allowedMethod.cend()) + const auto allowedMethodIter = m_allowedMethod.find({scope, action}); + if (allowedMethodIter == m_allowedMethod.end()) { // by default allow both GET, POST methods if ((m_request.method != Http::METHOD_GET) && (m_request.method != Http::METHOD_POST)) @@ -361,43 +359,25 @@ void WebApplication::doProcessRequest() try { const APIResult result = controller->run(action, m_params, data); - if (result.data.isNull()) + switch (result.data.userType()) { - status(204); - } - else - { - switch (result.data.userType()) + case QMetaType::QJsonDocument: + print(result.data.toJsonDocument().toJson(QJsonDocument::Compact), Http::CONTENT_TYPE_JSON); + break; + case QMetaType::QByteArray: { - case QMetaType::QJsonDocument: - print(result.data.toJsonDocument().toJson(QJsonDocument::Compact), Http::CONTENT_TYPE_JSON); - break; - case QMetaType::QByteArray: + const auto resultData = result.data.toByteArray(); + print(resultData, (!result.mimeType.isEmpty() ? result.mimeType : Http::CONTENT_TYPE_TXT)); + if (!result.filename.isEmpty()) { - const auto resultData = result.data.toByteArray(); - print(resultData, (!result.mimeType.isEmpty() ? result.mimeType : Http::CONTENT_TYPE_TXT)); - if (!result.filename.isEmpty()) - { - setHeader({u"Content-Disposition"_s, u"attachment; filename=\"%1\""_s.arg(result.filename)}); - } + setHeader({u"Content-Disposition"_s, u"attachment; filename=\"%1\""_s.arg(result.filename)}); } - break; - case QMetaType::QString: - default: - print(result.data.toString(), Http::CONTENT_TYPE_TXT); - break; - } - - switch (result.status) - { - case APIStatus::Async: - status(202); - break; - case APIStatus::Ok: - default: - status(200); - break; } + break; + case QMetaType::QString: + default: + print(result.data.toString(), Http::CONTENT_TYPE_TXT); + break; } } catch (const APIError &error) @@ -508,8 +488,8 @@ void WebApplication::configure() continue; } - const QString header = line.first(idx).trimmed().toString(); - const QString value = line.sliced(idx + 1).trimmed().toString(); + const QString header = line.left(idx).trimmed().toString(); + const QString value = line.mid(idx + 1).trimmed().toString(); m_prebuiltHeaders.push_back({header, value}); } } @@ -756,10 +736,9 @@ void WebApplication::sessionStart() m_currentSession->registerAPIController(u"torrents"_s, new TorrentsController(app(), m_currentSession)); m_currentSession->registerAPIController(u"transfer"_s, new TransferController(app(), m_currentSession)); - const auto *btSession = BitTorrent::Session::instance(); auto *syncController = new SyncController(app(), m_currentSession); - syncController->updateFreeDiskSpace(btSession->freeDiskSpace()); - connect(btSession, &BitTorrent::Session::freeDiskSpaceChecked, syncController, &SyncController::updateFreeDiskSpace); + syncController->updateFreeDiskSpace(m_freeDiskSpaceChecker->lastResult()); + connect(m_freeDiskSpaceChecker, &FreeDiskSpaceChecker::checked, syncController, &SyncController::updateFreeDiskSpace); m_currentSession->registerAPIController(u"sync"_s, syncController); QNetworkCookie cookie {m_sessionCookieName.toLatin1(), m_currentSession->id().toLatin1()}; diff --git a/src/webui/webapplication.h b/src/webui/webapplication.h index 2098e3635..e30d5f349 100644 --- a/src/webui/webapplication.h +++ b/src/webui/webapplication.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2014-2025 Vladimir Golovnev + * Copyright (C) 2014-2024 Vladimir Golovnev * Copyright (C) 2024 Radu Carpa * * This program is free software; you can redistribute it and/or @@ -50,13 +50,17 @@ #include "base/http/types.h" #include "base/path.h" #include "base/utils/net.h" +#include "base/utils/thread.h" #include "base/utils/version.h" #include "api/isessionmanager.h" -inline const Utils::Version<3, 2> API_VERSION {2, 11, 10}; +inline const Utils::Version<3, 2> API_VERSION {2, 11, 4}; + +class QTimer; class APIController; class AuthController; +class FreeDiskSpaceChecker; class WebApplication; namespace BitTorrent @@ -255,5 +259,8 @@ private: QList m_prebuiltHeaders; + Utils::Thread::UniquePtr m_workerThread; + FreeDiskSpaceChecker *m_freeDiskSpaceChecker = nullptr; + QTimer *m_freeDiskSpaceCheckingTimer = nullptr; BitTorrent::TorrentCreationManager *m_torrentCreationManager = nullptr; }; diff --git a/src/webui/www/.htmlvalidate.json b/src/webui/www/.htmlvalidate.json new file mode 100644 index 000000000..5dae7718d --- /dev/null +++ b/src/webui/www/.htmlvalidate.json @@ -0,0 +1,12 @@ +{ + "extends": [ + "html-validate:recommended" + ], + "rules": { + "input-missing-label": "error", + "long-title": "off", + "no-inline-style": "off", + "no-missing-references": "error", + "prefer-button": "off" + } +} diff --git a/src/webui/www/.htmlvalidate.mjs b/src/webui/www/.htmlvalidate.mjs deleted file mode 100644 index b39ef1db3..000000000 --- a/src/webui/www/.htmlvalidate.mjs +++ /dev/null @@ -1,20 +0,0 @@ -import { defineConfig } from "html-validate"; - -export default defineConfig({ - extends: [ - "html-validate:recommended" - ], - rules: { - "input-missing-label": "error", - "long-title": "off", - "no-inline-style": "off", - "no-missing-references": "error", - "prefer-button": "off", - "require-sri": [ - "error", - { - target: "crossorigin" - } - ] - } -}); diff --git a/src/webui/www/eslint.config.mjs b/src/webui/www/eslint.config.mjs index ed4f3ab22..6aafb8d64 100644 --- a/src/webui/www/eslint.config.mjs +++ b/src/webui/www/eslint.config.mjs @@ -34,15 +34,12 @@ export default [ "no-undef": "off", "no-unused-vars": "off", "no-var": "error", - "object-shorthand": ["error", "consistent"], "operator-assignment": "error", "prefer-arrow-callback": "error", "prefer-const": "error", "prefer-template": "error", "radix": "error", - "require-await": "error", "PreferArrowFunctions/prefer-arrow-functions": "error", - "Stylistic/no-extra-semi": "error", "Stylistic/no-mixed-operators": [ "error", { diff --git a/src/webui/www/package.json b/src/webui/www/package.json index 2e0a23b4b..7149a8628 100644 --- a/src/webui/www/package.json +++ b/src/webui/www/package.json @@ -6,9 +6,8 @@ "url": "https://github.com/qbittorrent/qBittorrent.git" }, "scripts": { - "format": "js-beautify -r *.mjs private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js test/*/*.js && prettier --write **.css", - "lint": "eslint --cache *.mjs private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js test/*/*.js && stylelint --cache **/*.css && html-validate private public", - "test": "vitest run --dom" + "format": "js-beautify -r *.mjs private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && prettier --write **.css", + "lint": "eslint --cache *.mjs private/*.html private/scripts/*.js private/views/*.html public/*.html public/scripts/*.js && stylelint --cache **/*.css && html-validate private public" }, "devDependencies": { "@stylistic/eslint-plugin": "*", @@ -16,13 +15,11 @@ "eslint-plugin-html": "*", "eslint-plugin-prefer-arrow-functions": "*", "eslint-plugin-regexp": "*", - "happy-dom": "*", "html-validate": "*", "js-beautify": "*", "prettier": "*", "stylelint": "*", "stylelint-config-standard": "*", - "stylelint-order": "*", - "vitest": "*" + "stylelint-order": "*" } } diff --git a/src/webui/www/private/addpeers.html b/src/webui/www/private/addpeers.html index 39510862f..ad645b3d9 100644 --- a/src/webui/www/private/addpeers.html +++ b/src/webui/www/private/addpeers.html @@ -5,12 +5,14 @@ QBT_TR(Add Peers)QBT_TR[CONTEXT=PeersAdditionDialog] - - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - - - - + + + + + + + @@ -187,6 +159,36 @@
+ + diff --git a/src/webui/www/private/downloadlimit.html b/src/webui/www/private/downloadlimit.html new file mode 100644 index 000000000..d703cf79e --- /dev/null +++ b/src/webui/www/private/downloadlimit.html @@ -0,0 +1,90 @@ + + + + + + QBT_TR(Torrent Download Speed Limiting)QBT_TR[CONTEXT=TransferListWidget] + + + + + + + + + + +
+
+
+ + + QBT_TR(KiB/s)QBT_TR[CONTEXT=SpeedLimitDialog] +
+
+
+
+
+
+
+ +
+ + + + + diff --git a/src/webui/www/private/editfeedurl.html b/src/webui/www/private/editfeedurl.html index c1bd69c9a..83618a0b5 100644 --- a/src/webui/www/private/editfeedurl.html +++ b/src/webui/www/private/editfeedurl.html @@ -5,17 +5,20 @@ QBT_TR(Please type a RSS feed URL)QBT_TR[CONTEXT=RSSWidget] - - + + + + + - + + + + - + + + + - + @@ -42,7 +42,6 @@ - @@ -95,10 +94,9 @@
  • QBT_TR(Tools)QBT_TR[CONTEXT=MainWindow]
  • @@ -113,8 +111,8 @@
       - QBT_TR(Add Torrent File...)QBT_TR[CONTEXT=MainWindow] QBT_TR(Add Torrent Link...)QBT_TR[CONTEXT=MainWindow] + QBT_TR(Add Torrent File...)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] @@ -276,9 +274,9 @@
  • QBT_TR(Toggle Selection)QBT_TR[CONTEXT=PropertiesWidget] QBT_TR(Toggle Selection)QBT_TR[CONTEXT=PropertiesWidget]
  • -
    +
    - +
    diff --git a/src/webui/www/private/newcategory.html b/src/webui/www/private/newcategory.html index 3abdc6f2a..6e36e26d5 100644 --- a/src/webui/www/private/newcategory.html +++ b/src/webui/www/private/newcategory.html @@ -5,19 +5,21 @@ QBT_TR(New Category)QBT_TR[CONTEXT=TransferListWidget] - - - - + + + + + + - + + + + + - + + + + + - + + + + + - - + + + + + - + + + + + - + + + + + - - + + + + + + - - - - + + + + + + + - + + + + + - - + + + + + + - + + + + diff --git a/src/webui/www/private/speedlimit.html b/src/webui/www/private/speedlimit.html deleted file mode 100644 index 95434e188..000000000 --- a/src/webui/www/private/speedlimit.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - QBT_TR(Speed limit)QBT_TR[CONTEXT=SpeedLimit] - - - - - - - -
    -
    -
    - - - QBT_TR(KiB/s)QBT_TR[CONTEXT=SpeedLimit] -
    - -
    - -
    - - - diff --git a/src/webui/www/private/upload.html b/src/webui/www/private/upload.html index 1a89cffe1..d7a065a26 100644 --- a/src/webui/www/private/upload.html +++ b/src/webui/www/private/upload.html @@ -6,38 +6,11 @@ QBT_TR(Upload local torrent)QBT_TR[CONTEXT=HttpServer] - - - - - + + + + + @@ -181,6 +154,32 @@
    + + diff --git a/src/webui/www/private/uploadlimit.html b/src/webui/www/private/uploadlimit.html new file mode 100644 index 000000000..ed672cd47 --- /dev/null +++ b/src/webui/www/private/uploadlimit.html @@ -0,0 +1,90 @@ + + + + + + QBT_TR(Torrent Upload Speed Limiting)QBT_TR[CONTEXT=TransferListWidget] + + + + + + + + + + +
    +
    +
    + + + QBT_TR(KiB/s)QBT_TR[CONTEXT=SpeedLimitDialog] +
    +
    +
    +
    +
    +
    +
    + +
    + + + + + diff --git a/src/webui/www/private/views/about.html b/src/webui/www/private/views/about.html index c5a67ed83..cf265f585 100644 --- a/src/webui/www/private/views/about.html +++ b/src/webui/www/private/views/about.html @@ -855,12 +855,12 @@ const qbtVersion = window.parent.qBittorrent.Cache.qbtVersion.get(); const buildInfo = window.parent.qBittorrent.Cache.buildInfo.get(); - document.getElementById("qbittorrentVersion").textContent = `qBittorrent ${qbtVersion} QBT_TR(WebUI)QBT_TR[CONTEXT=OptionsDialog]`; - document.getElementById("qtVersion").textContent = buildInfo.qt; - document.getElementById("libtorrentVersion").textContent = buildInfo.libtorrent; - document.getElementById("boostVersion").textContent = buildInfo.boost; - document.getElementById("opensslVersion").textContent = buildInfo.openssl; - document.getElementById("zlibVersion").textContent = buildInfo.zlib; - document.getElementById("qbittorrentVersion").textContent += ` (${buildInfo.bitness}-bit)`; + $("qbittorrentVersion").textContent = `qBittorrent ${qbtVersion} QBT_TR(WebUI)QBT_TR[CONTEXT=OptionsDialog]`; + $("qtVersion").textContent = buildInfo.qt; + $("libtorrentVersion").textContent = buildInfo.libtorrent; + $("boostVersion").textContent = buildInfo.boost; + $("opensslVersion").textContent = buildInfo.openssl; + $("zlibVersion").textContent = buildInfo.zlib; + $("qbittorrentVersion").textContent += ` (${buildInfo.bitness}-bit)`; })(); diff --git a/src/webui/www/private/views/aboutToolbar.html b/src/webui/www/private/views/aboutToolbar.html index b097c6c3f..3557a11e5 100644 --- a/src/webui/www/private/views/aboutToolbar.html +++ b/src/webui/www/private/views/aboutToolbar.html @@ -16,34 +16,34 @@ (() => { MochaUI.initializeTabs("aboutTabs"); - document.getElementById("aboutAboutLink").addEventListener("click", (event) => { + $("aboutAboutLink").addEventListener("click", () => { Array.prototype.forEach.call(document.querySelectorAll(".aboutTabContent"), (tab => tab.classList.add("invisible"))); - document.getElementById("aboutAboutContent").classList.remove("invisible"); + $("aboutAboutContent").classList.remove("invisible"); }); - document.getElementById("aboutAuthorLink").addEventListener("click", (event) => { + $("aboutAuthorLink").addEventListener("click", () => { Array.prototype.forEach.call(document.querySelectorAll(".aboutTabContent"), (tab => tab.classList.add("invisible"))); - document.getElementById("aboutAuthorContent").classList.remove("invisible"); + $("aboutAuthorContent").classList.remove("invisible"); }); - document.getElementById("aboutSpecialThanksLink").addEventListener("click", (event) => { + $("aboutSpecialThanksLink").addEventListener("click", () => { Array.prototype.forEach.call(document.querySelectorAll(".aboutTabContent"), (tab => tab.classList.add("invisible"))); - document.getElementById("aboutSpecialThanksContent").classList.remove("invisible"); + $("aboutSpecialThanksContent").classList.remove("invisible"); }); - document.getElementById("aboutTranslatorsLink").addEventListener("click", (event) => { + $("aboutTranslatorsLink").addEventListener("click", () => { Array.prototype.forEach.call(document.querySelectorAll(".aboutTabContent"), (tab => tab.classList.add("invisible"))); - document.getElementById("aboutTranslatorsContent").classList.remove("invisible"); + $("aboutTranslatorsContent").classList.remove("invisible"); }); - document.getElementById("aboutLicenseLink").addEventListener("click", (event) => { + $("aboutLicenseLink").addEventListener("click", () => { Array.prototype.forEach.call(document.querySelectorAll(".aboutTabContent"), (tab => tab.classList.add("invisible"))); - document.getElementById("aboutLicenseContent").classList.remove("invisible"); + $("aboutLicenseContent").classList.remove("invisible"); }); - document.getElementById("aboutSoftwareUsedLink").addEventListener("click", (event) => { + $("aboutSoftwareUsedLink").addEventListener("click", () => { Array.prototype.forEach.call(document.querySelectorAll(".aboutTabContent"), (tab => tab.classList.add("invisible"))); - document.getElementById("aboutSoftwareUsedContent").classList.remove("invisible"); + $("aboutSoftwareUsedContent").classList.remove("invisible"); }); })(); diff --git a/src/webui/www/private/views/createtorrent.html b/src/webui/www/private/views/createtorrent.html deleted file mode 100644 index a85e5a57d..000000000 --- a/src/webui/www/private/views/createtorrent.html +++ /dev/null @@ -1,233 +0,0 @@ - - -
    - QBT_TR(Select file/folder to share:)QBT_TR[CONTEXT=TorrentCreator] -
    - - -
    -
    -
    - QBT_TR(Settings)QBT_TR[CONTEXT=TorrentCreator] -
    - - -
    -
    - - -
    -
    - - -
    -
    - - -
    -
    - - - QBT_TR(KiB)QBT_TR[CONTEXT=OptionsDialog] -
    -
    -
    - QBT_TR(Fields)QBT_TR[CONTEXT=TorrentCreator] -
    - - - - - - - - - - - - - - - - - - - -
    - - - -
    - - - -
    - - - -
    - - - -
    - - - -
    - - diff --git a/src/webui/www/private/views/filters.html b/src/webui/www/private/views/filters.html index 623990c1a..ef7bc88dc 100644 --- a/src/webui/www/private/views/filters.html +++ b/src/webui/www/private/views/filters.html @@ -74,11 +74,7 @@ return { categoriesFilterContextMenu: categoriesFilterContextMenu, tagsFilterContextMenu: tagsFilterContextMenu, - trackersFilterContextMenu: trackersFilterContextMenu, - clearStatusFilter: clearStatusFilter, - clearCategoryFilter: clearCategoryFilter, - clearTagFilter: clearTagFilter, - clearTrackerFilter: clearTrackerFilter + trackersFilterContextMenu: trackersFilterContextMenu }; }; @@ -260,42 +256,6 @@ } }); - document.getElementById("Filters_pad").addEventListener("dblclick", (event) => { - if (LocalPreferences.get("dblclick_filter", "1") !== "1") - return; - - const filterItem = event.target.closest("li"); - if (filterItem === null) - return; - - const { id: filterListID } = filterItem.closest("ul[id]"); - switch (filterListID) { - case "statusFilterList": - clearCategoryFilter(); - clearTagFilter(); - clearTrackerFilter(); - break; - case "categoryFilterList": - clearStatusFilter(); - clearTagFilter(); - clearTrackerFilter(); - break; - case "tagFilterList": - clearStatusFilter(); - clearCategoryFilter(); - clearTrackerFilter(); - break; - case "trackerFilterList": - clearStatusFilter(); - clearCategoryFilter(); - clearTagFilter(); - break; - default: - console.error(`Unexpected filterListID: ${filterListID}`); - break; - } - }); - document.getElementById("Filters_pad").addEventListener("click", (event) => { const filterTitle = event.target.closest(".filterTitle"); if (!filterTitle) @@ -321,11 +281,6 @@ toggleCategoryDisplay(filterItem.id); }); - const clearStatusFilter = () => { setStatusFilter("all"); }; - const clearCategoryFilter = () => { setCategoryFilter(CATEGORIES_ALL); }; - const clearTagFilter = () => { setTagFilter(TAGS_ALL); }; - const clearTrackerFilter = () => { setTrackerFilter(TRACKERS_ALL); }; - return exports(); })(); Object.freeze(window.qBittorrent.Filters); diff --git a/src/webui/www/private/views/installsearchplugin.html b/src/webui/www/private/views/installsearchplugin.html index 74e1b7aaa..de77a46e1 100644 --- a/src/webui/www/private/views/installsearchplugin.html +++ b/src/webui/www/private/views/installsearchplugin.html @@ -61,11 +61,11 @@ } }); - document.getElementById("newPluginPath").select(); + $("newPluginPath").select(); }; const newPluginOk = () => { - const path = document.getElementById("newPluginPath").value.trim(); + const path = $("newPluginPath").value.trim(); if (path) { fetch("api/v2/search/installPlugin", { method: "POST", diff --git a/src/webui/www/private/views/log.html b/src/webui/www/private/views/log.html index a1fc55472..0790bc0bb 100644 --- a/src/webui/www/private/views/log.html +++ b/src/webui/www/private/views/log.html @@ -144,7 +144,7 @@
    @@ -188,7 +188,7 @@ let selectedLogLevels = JSON.parse(LocalPreferences.get("qbt_selected_log_levels")) || ["1", "2", "4", "8"]; const init = () => { - for (const option of document.getElementById("logLevelSelect").options) + for (const option of $("logLevelSelect").options) option.toggleAttribute("selected", selectedLogLevels.includes(option.value)); selectBox = new vanillaSelectBox("#logLevelSelect", { @@ -223,8 +223,8 @@ } }); - tableInfo["main"].instance.setup("logMessageTableDiv", "logMessageTableFixedHeaderDiv", logTableContextMenu, true); - tableInfo["peer"].instance.setup("logPeerTableDiv", "logPeerTableFixedHeaderDiv", logTableContextMenu, true); + tableInfo["main"].instance.setup("logMessageTableDiv", "logMessageTableFixedHeaderDiv", logTableContextMenu); + tableInfo["peer"].instance.setup("logPeerTableDiv", "logPeerTableFixedHeaderDiv", logTableContextMenu); MUI.Panels.instances.LogPanel.contentEl.style.height = "100%"; @@ -282,7 +282,7 @@ }; const filterTextChanged = () => { - const value = document.getElementById("filterTextInput").value.trim(); + const value = $("filterTextInput").value.trim(); if (inputtedFilterText !== value) { inputtedFilterText = value; logFilterChanged(); @@ -306,14 +306,14 @@ currentSelectedTab = tab; if (currentSelectedTab === "main") { selectBox.enable(); - document.getElementById("logMessageView").classList.remove("invisible"); - document.getElementById("logPeerView").classList.add("invisible"); + $("logMessageView").classList.remove("invisible"); + $("logPeerView").classList.add("invisible"); resetTableTimer("peer"); } else { selectBox.disable(); - document.getElementById("logMessageView").classList.add("invisible"); - document.getElementById("logPeerView").classList.remove("invisible"); + $("logMessageView").classList.add("invisible"); + $("logPeerView").classList.remove("invisible"); resetTableTimer("main"); } @@ -331,14 +331,11 @@ if (curTab === undefined) curTab = currentSelectedTab; - document.getElementById("numFilteredLogs").textContent = tableInfo[curTab].instance.filteredLength; - document.getElementById("numTotalLogs").textContent = tableInfo[curTab].instance.getRowSize(); + $("numFilteredLogs").textContent = tableInfo[curTab].instance.filteredLength(); + $("numTotalLogs").textContent = tableInfo[curTab].instance.getRowSize(); }; const syncLogData = (curTab) => { - if (document.hidden) - return; - if (curTab === undefined) curTab = currentSelectedTab; @@ -368,7 +365,7 @@ }) .then(async (response) => { if (!response.ok) { - const errorDiv = document.getElementById("error_div"); + const errorDiv = $("error_div"); if (errorDiv) errorDiv.textContent = "QBT_TR(qBittorrent client is not reachable)QBT_TR[CONTEXT=HttpServer]"; tableInfo[curTab].progress = false; @@ -376,9 +373,9 @@ return; } - document.getElementById("error_div").textContent = ""; + $("error_div").textContent = ""; - if (document.getElementById("logTabColumn").classList.contains("invisible")) + if ($("logTabColumn").classList.contains("invisible")) return; const responseJSON = await response.json(); @@ -418,11 +415,15 @@ }); }; - document.getElementById("copyLogDataToClipboard").addEventListener("click", async (event) => { - const instance = tableInfo[currentSelectedTab].instance; - const type = (currentSelectedTab === "main") ? "message" : "ip"; - const msg = instance.selectedRowsIds().map((rowId) => instance.getRow(rowId).full_data[type]); - await clipboardCopy(msg.join("\n")); + new ClipboardJS(".copyLogDataToClipboard", { + text: () => { + const msg = []; + tableInfo[currentSelectedTab].instance.selectedRowsIds().forEach((rowId) => { + msg.push(tableInfo[currentSelectedTab].instance.getRow(rowId).full_data[(currentSelectedTab === "main") ? "message" : "ip"]); + }); + + return msg.join("\n"); + } }); return exports(); diff --git a/src/webui/www/private/views/preferences.html b/src/webui/www/private/views/preferences.html index cc416ec51..13fcc2947 100644 --- a/src/webui/www/private/views/preferences.html +++ b/src/webui/www/private/views/preferences.html @@ -49,15 +49,6 @@ - - - - - - @@ -115,10 +106,6 @@
    -
    - - -
    @@ -150,7 +137,7 @@
    - QBT_TR(When adding a duplicate torrent)QBT_TR[CONTEXT=OptionsDialog] + QBT_TR(When duplicate torrent is being added)QBT_TR[CONTEXT=OptionsDialog]
    @@ -394,7 +381,6 @@
  • QBT_TR(%I: Info hash v1)QBT_TR[CONTEXT=OptionsDialog]
  • QBT_TR(%J: Info hash v2)QBT_TR[CONTEXT=OptionsDialog]
  • QBT_TR(%K: Torrent ID)QBT_TR[CONTEXT=OptionsDialog]
  • -
  • QBT_TR(%M: Comment)QBT_TR[CONTEXT=OptionsDialog]
  • QBT_TR(Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N"))QBT_TR[CONTEXT=OptionsDialog]
    @@ -413,13 +399,13 @@
    QBT_TR(Listening Port)QBT_TR[CONTEXT=OptionsDialog]
    - - + +
    - - + +
    @@ -429,31 +415,31 @@ - - + + - + - - + + - + - - + + - - + + - + @@ -551,7 +537,7 @@
    - QBT_TR(Note: The password is saved unencrypted)QBT_TR[CONTEXT=OptionsDialog] + QBT_TR(Info: The password is saved unencrypted)QBT_TR[CONTEXT=OptionsDialog]
    @@ -606,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] @@ -626,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] @@ -719,66 +705,66 @@
    - - + +
    - + - +
    - + - +
    - + - +
    - - + + @@ -792,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]
    - @@ -923,19 +909,19 @@
    - + - - - + + +
    - - + +
    @@ -1006,7 +992,7 @@ - QBT_TR(sec)QBT_TR[CONTEXT=OptionsDialog] + QBT_TR(seconds)QBT_TR[CONTEXT=OptionsDialog] @@ -1014,7 +1000,7 @@ -   QBT_TR(sec)QBT_TR[CONTEXT=OptionsDialog] +   QBT_TR(seconds)QBT_TR[CONTEXT=OptionsDialog] @@ -1057,10 +1043,10 @@ - + -