mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-03-05 13:40:08 -05:00
Compare commits
28 Commits
v2.0.3.513
...
v2.1.1.518
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8da493dbaf | ||
|
|
f17cf6144f | ||
|
|
1b3adc4529 | ||
|
|
389f049a8b | ||
|
|
99b0fcd750 | ||
|
|
516b09ca91 | ||
|
|
770fd64013 | ||
|
|
f67c672ec7 | ||
|
|
80425f5ea4 | ||
|
|
758cae3f40 | ||
|
|
fbf4ff6777 | ||
|
|
98ee9c1703 | ||
|
|
c537e94f0f | ||
|
|
9e5dd2a2e6 | ||
|
|
f601ff98a2 | ||
|
|
540fafdebf | ||
|
|
532bffe772 | ||
|
|
bf80f7916c | ||
|
|
2f6a9dfffb | ||
|
|
94477e9cf9 | ||
|
|
52e21b3dfc | ||
|
|
cb4cc81ad0 | ||
|
|
7ada036480 | ||
|
|
f1c9ba40c4 | ||
|
|
8664fc095d | ||
|
|
23b9973ef7 | ||
|
|
d9f1d96e00 | ||
|
|
d9d045a548 |
13
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
13
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@@ -4,11 +4,18 @@ labels: ['Type: Bug', 'Status: Needs Triage']
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Is there an existing issue for this?
|
||||
label: I attest that there is not an existing issue for this?
|
||||
description: Please search to see if an open or closed issue already exists for the bug you encountered. If a bug exists and is closed note that it may only be fixed in an unstable branch.
|
||||
options:
|
||||
- label: I have searched the existing open and closed issues
|
||||
required: true
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: I attest this is not related to a Cardigann YML Indexer.
|
||||
description: Please search to see if this is for a tracker [that is yml-based (Cardigann)](https://github.com/Prowlarr/indexers) these are synced to Prowlarr/Indexers from Jackett/Jackett.
|
||||
options:
|
||||
- label: I confirm this is not related to a Cardigann YML Indexer
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Current Behavior
|
||||
@@ -73,8 +80,8 @@ body:
|
||||
required: true
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Trace Logs have been provided as applicable. Reports may be closed if the required logs are not provided.
|
||||
label: I attest that Trace Logs have been provided as applicable. Reports will be closed if the required logs are not provided.
|
||||
description: Trace logs are generally required for all bug reports and contain `trace`. Info logs are invalid for bug reports and do not contain `debug` nor `trace`
|
||||
options:
|
||||
- label: I have read and followed the steps in the wiki link above and provided the required trace logs - the logs contain `trace` - that are relevant and show this issue.
|
||||
- label: I attest that I have read and followed the steps in the wiki link above and provided the required trace logs - the logs contain `trace` - that are relevant and show this issue.
|
||||
required: true
|
||||
|
||||
@@ -9,7 +9,7 @@ variables:
|
||||
testsFolder: './_tests'
|
||||
yarnCacheFolder: $(Pipeline.Workspace)/.yarn
|
||||
nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages
|
||||
majorVersion: '2.0.3'
|
||||
majorVersion: '2.1.1'
|
||||
minorVersion: $[counter('minorVersion', 1)]
|
||||
prowlarrVersion: '$(majorVersion).$(minorVersion)'
|
||||
buildName: '$(Build.SourceBranchName).$(prowlarrVersion)'
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
|
||||
.scroller {
|
||||
flex: 1 1 auto;
|
||||
min-height: 400px;
|
||||
}
|
||||
|
||||
.filterRow {
|
||||
@@ -57,29 +58,68 @@
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.filtersToggle {
|
||||
display: none;
|
||||
align-items: center;
|
||||
margin-bottom: 10px;
|
||||
padding: 8px 12px;
|
||||
border: 1px solid var(--borderColor);
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
color: var(--textColor);
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.filtersToggle:hover {
|
||||
background-color: var(--hoverBackgroundColor);
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $breakpointSmall) {
|
||||
.filterInput {
|
||||
margin-bottom: 5px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.alert {
|
||||
.notice {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.filtersToggle {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.filterRow {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
padding: 10px;
|
||||
border: 1px solid var(--borderColor);
|
||||
border-radius: 4px;
|
||||
background-color: var(--cardBackgroundColor);
|
||||
}
|
||||
|
||||
.filterRowCollapsed {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.filterContainer {
|
||||
margin-right: 0;
|
||||
margin-bottom: 5px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.filterContainer:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.scroller {
|
||||
margin-right: -30px;
|
||||
margin-bottom: -30px;
|
||||
margin-left: -30px;
|
||||
margin-right: -15px;
|
||||
margin-bottom: -15px;
|
||||
margin-left: -15px;
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
.modalBody {
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -7,6 +7,8 @@ interface CssExports {
|
||||
'filterInput': string;
|
||||
'filterLabel': string;
|
||||
'filterRow': string;
|
||||
'filterRowCollapsed': string;
|
||||
'filtersToggle': string;
|
||||
'indexers': string;
|
||||
'modalBody': string;
|
||||
'modalFooter': string;
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import classNames from 'classnames';
|
||||
import { some } from 'lodash';
|
||||
import React, { useCallback, useEffect, useMemo, useState } from 'react';
|
||||
import { useDispatch, useSelector } from 'react-redux';
|
||||
@@ -7,6 +8,7 @@ import Alert from 'Components/Alert';
|
||||
import EnhancedSelectInput from 'Components/Form/EnhancedSelectInput';
|
||||
import NewznabCategorySelectInputConnector from 'Components/Form/NewznabCategorySelectInputConnector';
|
||||
import TextInput from 'Components/Form/TextInput';
|
||||
import Icon from 'Components/Icon';
|
||||
import Button from 'Components/Link/Button';
|
||||
import LoadingIndicator from 'Components/Loading/LoadingIndicator';
|
||||
import ModalBody from 'Components/Modal/ModalBody';
|
||||
@@ -16,7 +18,7 @@ import ModalHeader from 'Components/Modal/ModalHeader';
|
||||
import Scroller from 'Components/Scroller/Scroller';
|
||||
import Table from 'Components/Table/Table';
|
||||
import TableBody from 'Components/Table/TableBody';
|
||||
import { kinds, scrollDirections } from 'Helpers/Props';
|
||||
import { icons, kinds, scrollDirections } from 'Helpers/Props';
|
||||
import Indexer, { IndexerCategory } from 'Indexer/Indexer';
|
||||
import {
|
||||
fetchIndexerSchema,
|
||||
@@ -152,6 +154,7 @@ function AddIndexerModalContent(props: AddIndexerModalContentProps) {
|
||||
const [filterLanguages, setFilterLanguages] = useState<string[]>([]);
|
||||
const [filterPrivacyLevels, setFilterPrivacyLevels] = useState<string[]>([]);
|
||||
const [filterCategories, setFilterCategories] = useState<number[]>([]);
|
||||
const [isFiltersCollapsed, setIsFiltersCollapsed] = useState(true);
|
||||
|
||||
useEffect(
|
||||
() => {
|
||||
@@ -196,6 +199,10 @@ function AddIndexerModalContent(props: AddIndexerModalContentProps) {
|
||||
[setFilterCategories]
|
||||
);
|
||||
|
||||
const handleToggleFilters = useCallback(() => {
|
||||
setIsFiltersCollapsed(!isFiltersCollapsed);
|
||||
}, [isFiltersCollapsed]);
|
||||
|
||||
const onIndexerSelect = useCallback(
|
||||
({
|
||||
implementation,
|
||||
@@ -322,7 +329,17 @@ function AddIndexerModalContent(props: AddIndexerModalContentProps) {
|
||||
onChange={onFilterChange}
|
||||
/>
|
||||
|
||||
<div className={styles.filterRow}>
|
||||
<Button className={styles.filtersToggle} onPress={handleToggleFilters}>
|
||||
<Icon name={isFiltersCollapsed ? icons.EXPAND : icons.COLLAPSE} />
|
||||
{translate('Filters')}
|
||||
</Button>
|
||||
|
||||
<div
|
||||
className={classNames(
|
||||
styles.filterRow,
|
||||
isFiltersCollapsed && styles.filterRowCollapsed
|
||||
)}
|
||||
>
|
||||
<div className={styles.filterContainer}>
|
||||
<label className={styles.filterLabel}>
|
||||
{translate('Protocol')}
|
||||
|
||||
@@ -202,6 +202,7 @@ namespace NzbDrone.Common.Instrumentation
|
||||
c.ForLogger("Microsoft.*").WriteToNil(LogLevel.Warn);
|
||||
c.ForLogger("Microsoft.Hosting.Lifetime*").WriteToNil(LogLevel.Info);
|
||||
c.ForLogger("Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware").WriteToNil(LogLevel.Fatal);
|
||||
c.ForLogger("Prowlarr.Http.Authentication.ApiKeyAuthenticationHandler").WriteToNil(LogLevel.Info);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@ namespace NzbDrone.Core.Test.IndexerTests.BroadcastheNetTests
|
||||
query.Tvrage.Should().BeNull();
|
||||
query.Search.Should().BeNull();
|
||||
query.Category.Should().Be("Episode");
|
||||
query.Name.Should().Be("2023.01.03");
|
||||
query.Name.Should().Be("2023.01.03%");
|
||||
}
|
||||
|
||||
[Test]
|
||||
@@ -275,7 +275,7 @@ namespace NzbDrone.Core.Test.IndexerTests.BroadcastheNetTests
|
||||
query.Tvrage.Should().BeNull();
|
||||
query.Search.Should().Be("The%Late%Show%with%Stephen%Colbert");
|
||||
query.Category.Should().Be("Episode");
|
||||
query.Name.Should().Be("2023.01.03");
|
||||
query.Name.Should().Be("2023.01.03%");
|
||||
}
|
||||
|
||||
private static BroadcastheNetTorrentQuery ParseTorrentQueryFromRequest(HttpRequest httpRequest)
|
||||
|
||||
@@ -74,7 +74,7 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
|
||||
else if (DateTime.TryParseExact($"{searchCriteria.Season} {searchCriteria.Episode}", "yyyy MM/dd", CultureInfo.InvariantCulture, DateTimeStyles.None, out var showDate))
|
||||
{
|
||||
// Daily Episode
|
||||
parameters.Name = showDate.ToString("yyyy.MM.dd", CultureInfo.InvariantCulture);
|
||||
parameters.Name = showDate.ToString("yyyy.MM.dd", CultureInfo.InvariantCulture) + "%";
|
||||
parameters.Category = "Episode";
|
||||
pageableRequests.Add(GetPagedRequests(parameters, btnResults, btnOffset));
|
||||
}
|
||||
|
||||
@@ -426,6 +426,12 @@ namespace NzbDrone.Core.Indexers.Definitions.Cardigann
|
||||
{
|
||||
((TorrentInfo)c).InfoHash = MagnetLinkBuilder.GetInfoHashFromMagnet(((TorrentInfo)c).MagnetUrl);
|
||||
}
|
||||
|
||||
// Add Internal flag if description starts with Internal
|
||||
if (c.Description.IsNotNullOrWhiteSpace() && c.Description.StartsWith("Internal"))
|
||||
{
|
||||
c.IndexerFlags.Add(IndexerFlag.Internal);
|
||||
}
|
||||
});
|
||||
|
||||
_logger.Trace("Cardigann ({0}): Got {1} releases", _definition.Id, releases.Count);
|
||||
|
||||
@@ -11,10 +11,17 @@ namespace NzbDrone.Core.Indexers.Definitions.FileList;
|
||||
public class FileList : TorrentIndexerBase<FileListSettings>
|
||||
{
|
||||
public override string Name => "FileList.io";
|
||||
public override string[] IndexerUrls => new[] { "https://filelist.io/" };
|
||||
public override string[] IndexerUrls => new[]
|
||||
{
|
||||
"https://filelist.io/",
|
||||
"https://thefl.org/",
|
||||
};
|
||||
public override string[] LegacyUrls => new[]
|
||||
{
|
||||
"https://filelist.io",
|
||||
"https://filelist.ro/",
|
||||
"http://filelist.ro/",
|
||||
"http://flro.org/",
|
||||
"https://flro.org/"
|
||||
};
|
||||
public override string Description => "FileList (FL) is a ROMANIAN Private Torrent Tracker for 0DAY / GENERAL";
|
||||
@@ -105,6 +112,7 @@ public class FileList : TorrentIndexerBase<FileListSettings>
|
||||
caps.Categories.AddCategoryMapping(27, NewznabStandardCategory.TVUHD, "Seriale 4K");
|
||||
caps.Categories.AddCategoryMapping(28, NewznabStandardCategory.MoviesForeign, "RO Dubbed");
|
||||
caps.Categories.AddCategoryMapping(28, NewznabStandardCategory.TVForeign, "RO Dubbed");
|
||||
caps.Categories.AddCategoryMapping(31, NewznabStandardCategory.TVForeign, "K-Drama");
|
||||
|
||||
return caps;
|
||||
}
|
||||
|
||||
@@ -100,7 +100,7 @@ namespace NzbDrone.Core.Indexers.Newznab
|
||||
yield return GetDefinition("Miatrix", GetSettings("https://www.miatrix.com"), categories: new[] { 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000 });
|
||||
yield return GetDefinition("Newz69", GetSettings("https://newz69.keagaming.com"), categories: new[] { 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000 });
|
||||
yield return GetDefinition("NinjaCentral", GetSettings("https://ninjacentral.co.za"), categories: new[] { 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000 });
|
||||
yield return GetDefinition("Nzb.su", GetSettings("https://api.nzb.su"), categories: new[] { 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000 });
|
||||
yield return GetDefinition("Nzb.life", GetSettings("https://api.nzb.life"), categories: new[] { 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000 });
|
||||
yield return GetDefinition("NZBCat", GetSettings("https://nzb.cat"), categories: new[] { 1000, 2000, 3000, 4000, 5000, 6000, 7000 });
|
||||
yield return GetDefinition("NZBFinder", GetSettings("https://nzbfinder.ws"), categories: new[] { 2000, 3000, 5000, 6000, 7000 });
|
||||
yield return GetDefinition("NZBgeek", GetSettings("https://api.nzbgeek.info"), categories: new[] { 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000 });
|
||||
|
||||
@@ -9,10 +9,10 @@ namespace NzbDrone.Core.Indexers.Newznab
|
||||
{
|
||||
public class NewznabSettingsValidator : AbstractValidator<NewznabSettings>
|
||||
{
|
||||
private static readonly string[] ApiKeyWhiteList =
|
||||
private static readonly string[] ApiKeyAllowList =
|
||||
{
|
||||
"nzbs.org",
|
||||
"nzb.su",
|
||||
"nzb.life",
|
||||
"dognzb.cr",
|
||||
"nzbplanet.net",
|
||||
"nzbid.org",
|
||||
@@ -22,7 +22,7 @@ namespace NzbDrone.Core.Indexers.Newznab
|
||||
|
||||
private static bool ShouldHaveApiKey(NewznabSettings settings)
|
||||
{
|
||||
return settings.BaseUrl != null && ApiKeyWhiteList.Any(c => settings.BaseUrl.ToLowerInvariant().Contains(c));
|
||||
return settings.BaseUrl != null && ApiKeyAllowList.Any(c => settings.BaseUrl.ToLowerInvariant().Contains(c));
|
||||
}
|
||||
|
||||
private static readonly Regex AdditionalParametersRegex = new Regex(@"(&.+?\=.+?)+", RegexOptions.Compiled);
|
||||
|
||||
@@ -1749,7 +1749,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
// rutracker movies titles look like: russian name / english name (russian director / english director) other stuff
|
||||
// Ирландец / The Irishman (Мартин Скорсезе / Martin Scorsese) [2019, США, криминал, драма, биография, WEB-DL 1080p] Dub (Пифагор) + MVO (Jaskier) + AVO (Юрий Сербин) + Sub Rus, Eng + Original Eng
|
||||
// this part should be removed: (Мартин Скорсезе / Martin Scorsese)
|
||||
title = Regex.Replace(title, @"(\([\p{IsCyrillic}\W]+)\s/\s(.+?)\)", string.Empty, RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
title = Regex.Replace(title, @"(\([\p{IsCyrillic}\W]+)(?:\s/\s(.+?))?\)", string.Empty, RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
|
||||
// Remove VO, MVO and DVO from titles
|
||||
var vo = new Regex(@"((?:\dx\s)?(?:[A-Z])?VO\s\(.+?\))");
|
||||
|
||||
@@ -448,11 +448,11 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
|
||||
private readonly Regex _tvTitleMultipleSeasonsRegex = new(@"(?:Сезон|Seasons?)\s*[:]*\s+(\d+-\d+)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
|
||||
private readonly Regex _tvTitleUkrSeasonEpisodeOfRegex = new(@"Сезон\s*[:]*\s+(\d+).+(?:Серії|Серія|Серій|Епізод)+\s*[:]*\s+(\d+(?:-\d+)?)\s*з\s*([\w?])", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleUkrSeasonEpisodeRegex = new(@"Сезон\s*[:]*\s+(\d+).+(?:Серії|Серія|Серій|Епізод)+\s*[:]*\s+(\d+(?:-\d+)?)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleUkrSeasonEpisodeOfRegex = new(@"Сезон\s*[:]*\s+(\d+).+(?:Серії|Серія|Серій|Епізоди?)+\s*[:]*\s+(\d+(?:-\d+)?)\s*з\s*([\w?])", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleUkrSeasonEpisodeRegex = new(@"Сезон\s*[:]*\s+(\d+).+(?:Серії|Серія|Серій|Епізоди?)+\s*[:]*\s+(\d+(?:-\d+)?)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleUkrSeasonRegex = new(@"Сезон\s*[:]*\s+(\d+)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleUkrEpisodeOfRegex = new(@"(?:Серії|Серія|Серій|Епізод)+\s*[:]*\s+(\d+(?:-\d+)?)\s*з\s*([\w?])", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleUkrEpisodeRegex = new(@"(?:Серії|Серія|Серій|Епізод)+\s*[:]*\s+(\d+(?:-\d+)?)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleUkrEpisodeOfRegex = new(@"(?:Серії|Серія|Серій|Епізоди?)+\s*[:]*\s+(\d+(?:-\d+)?)\s*з\s*([\w?])", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleUkrEpisodeRegex = new(@"(?:Серії|Серія|Серій|Епізоди?)+\s*[:]*\s+(\d+(?:-\d+)?)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
|
||||
private readonly Regex _tvTitleEngSeasonEpisodeOfRegex = new(@"Season\s*[:]*\s+(\d+).+(?:Episodes?)+\s*[:]*\s+(\d+(?:-\d+)?)\s*of\s*([\w?])", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
private readonly Regex _tvTitleEngSeasonEpisodeRegex = new(@"Season\s*[:]*\s+(\d+).+(?:Episodes?)+\s*[:]*\s+(\d+(?:-\d+)?)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
||||
@@ -506,7 +506,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
|
||||
title = Regex.Replace(title, @"[\[\(]\s*[\)\]]", "", RegexOptions.Compiled);
|
||||
|
||||
title = title.Trim(' ', '&', ',', '.', '!', '?', '+', '-', '_', '|', '/', '\\', ':');
|
||||
title = title.Trim(' ', '&', ',', '.', '!', '?', '+', '-', '_', '|', '/', '\\', ':', ';', 'ʼ', '`');
|
||||
|
||||
// replace multiple spaces with a single space
|
||||
title = Regex.Replace(title, @"\s+", " ");
|
||||
@@ -521,7 +521,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
||||
|
||||
private static string MoveFirstTagsToEndOfReleaseTitle(string input)
|
||||
{
|
||||
var output = input;
|
||||
var output = input.Trim(' ', '&', ',', '.', '!', '?', '+', '-', '_', '|', '/', '\\', ':', ';', 'ʼ', '`');
|
||||
foreach (var findTagsRegex in FindTagsInTitlesRegexList)
|
||||
{
|
||||
var expectedIndex = 0;
|
||||
|
||||
@@ -11,11 +11,11 @@ namespace NzbDrone.Core.Indexers.Torznab
|
||||
{
|
||||
public class TorznabSettingsValidator : AbstractValidator<TorznabSettings>
|
||||
{
|
||||
private static readonly string[] ApiKeyWhiteList = Array.Empty<string>();
|
||||
private static readonly string[] ApiKeyAllowList = Array.Empty<string>();
|
||||
|
||||
private static bool ShouldHaveApiKey(TorznabSettings settings)
|
||||
{
|
||||
return settings.BaseUrl != null && ApiKeyWhiteList.Any(c => settings.BaseUrl.ToLowerInvariant().Contains(c));
|
||||
return settings.BaseUrl != null && ApiKeyAllowList.Any(c => settings.BaseUrl.ToLowerInvariant().Contains(c));
|
||||
}
|
||||
|
||||
private static readonly Regex AdditionalParametersRegex = new Regex(@"(&.+?\=.+?)+", RegexOptions.Compiled);
|
||||
|
||||
@@ -503,14 +503,14 @@ namespace NzbDrone.Core.Indexers
|
||||
catch (IndexerAuthException ex)
|
||||
{
|
||||
_indexerStatusService.RecordFailure(Definition.Id);
|
||||
_logger.Warn(ex, "Invalid Credentials for {0} {1}", this, url);
|
||||
_logger.Warn(ex, "Invalid Credentials for {0} [{1}]", this, url);
|
||||
}
|
||||
catch (CloudFlareProtectionException ex)
|
||||
{
|
||||
result.Queries.Add(new IndexerQueryResult { Response = ex.Response });
|
||||
_indexerStatusService.RecordFailure(Definition.Id);
|
||||
ex.WithData("FeedUrl", url);
|
||||
_logger.Error(ex, "Cloudflare protection detected for {0}, Flaresolverr may be required.", this);
|
||||
_logger.Error(ex, "Cloudflare protection detected for [{0}], Flaresolverr may be required.", this);
|
||||
}
|
||||
catch (IndexerException ex)
|
||||
{
|
||||
@@ -521,18 +521,18 @@ namespace NzbDrone.Core.Indexers
|
||||
catch (HttpRequestException ex)
|
||||
{
|
||||
_indexerStatusService.RecordFailure(Definition.Id);
|
||||
_logger.Warn(ex, "Unable to connect to indexer, please check your DNS settings and ensure IPv6 is working or disabled. {0}", url);
|
||||
_logger.Warn(ex, "Unable to connect to indexer [{0}]. This is typically caused by DNS/SSL issues. Check DNS settings, ensure IPv6 is working or disabled, and consider using different DNS servers or a VPN. See: 'https://wiki.servarr.com/prowlarr/troubleshooting#dns-ssl-connection-issues'", url);
|
||||
}
|
||||
catch (TaskCanceledException ex)
|
||||
{
|
||||
_indexerStatusService.RecordFailure(Definition.Id);
|
||||
_logger.Warn(ex, "Unable to connect to indexer, possibly due to a timeout. {0}", url);
|
||||
_logger.Warn(ex, "Unable to connect to indexer, possibly due to a timeout. [{0}]", url);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_indexerStatusService.RecordFailure(Definition.Id);
|
||||
ex.WithData("FeedUrl", url);
|
||||
_logger.Error(ex, "An error occurred while processing indexer feed. {0}", url);
|
||||
_logger.Error(ex, "An error occurred while processing indexer feed. [{0}]", url);
|
||||
}
|
||||
|
||||
result.Releases = CleanupReleases(releases, searchCriteria);
|
||||
@@ -816,7 +816,7 @@ namespace NzbDrone.Core.Indexers
|
||||
{
|
||||
_logger.Warn(ex, "Unable to connect to indexer");
|
||||
|
||||
return new NzbDroneValidationFailure(string.Empty, "Unable to connect to indexer, please check your DNS settings and ensure IPv6 is working or disabled. " + ex.Message)
|
||||
return new NzbDroneValidationFailure(string.Empty, "Unable to connect to indexer. This is typically caused by DNS/SSL issues. Check DNS settings, ensure IPv6 is working or disabled, consider using different DNS servers, or try a VPN/proxy if needed. See: 'https://wiki.servarr.com/prowlarr/troubleshooting#dns-ssl-connection-issues' " + ex.Message)
|
||||
{
|
||||
DetailedDescription = ex.InnerException?.Message
|
||||
};
|
||||
|
||||
@@ -491,7 +491,7 @@
|
||||
"EnableRssHelpText": "Povolit kanál RSS pro indexer",
|
||||
"DeleteApplication": "Odstranit aplikaci",
|
||||
"DeleteSelectedApplications": "Odstranit vybrané aplikace",
|
||||
"DeleteSelectedIndexers": "Odstranit vybrané indexery",
|
||||
"DeleteSelectedIndexers": "Smazat vybrané indexery",
|
||||
"DevelopmentSettings": "Nastavení pro vývoj",
|
||||
"DisabledUntil": "Zakázáno do",
|
||||
"DownloadClientCategory": "Kategorie klienta pro stahování",
|
||||
@@ -639,5 +639,10 @@
|
||||
"DownloadClientUTorrentProviderMessage": "uTorrent má historii zahrnování kryptoměnových těžařů, malwaru a reklam, důrazně vám doporučujeme zvolit jiného klienta.",
|
||||
"IndexerSettingsBaseUrlHelpText": "Vyberte, jakou základní URL bude {appName} používat pro požadavky na web",
|
||||
"IndexerSettingsPackSeedTimeIndexerHelpText": "Doba, po kterou by měl být balíček (sezóna nebo diskografie) torrentu seedován před zastavením, prázdné pole znamená výchozí nastavení aplikace",
|
||||
"PackSeedTimeHelpText": "Doba, po kterou by měl být balíček (sezóna nebo diskografie) torrentu seedován před zastavením, prázdné pole znamená výchozí nastavení aplikace"
|
||||
"PackSeedTimeHelpText": "Doba, po kterou by měl být balíček (sezóna nebo diskografie) torrentu seedován před zastavením, prázdné pole znamená výchozí nastavení aplikace",
|
||||
"OnApplicationUpdateHelpText": "Při aktualizaci aplikace",
|
||||
"SeedTime": "Doba sdílení",
|
||||
"OnHealthRestoredHelpText": "Při obnovení zdraví",
|
||||
"SeedRatio": "Poměr sdílení",
|
||||
"ThemeHelpText": "Změnit motiv UI, možnost „Auto“ kopíruje nastavení OS pro výběr tmavého nebo světlého režimu. Inspirováno {inspiredBy}."
|
||||
}
|
||||
|
||||
@@ -88,13 +88,13 @@
|
||||
"Delete": "Verwijder",
|
||||
"DeleteAppProfile": "App-profiel verwijderen",
|
||||
"DeleteApplication": "Applicatie verwijderen",
|
||||
"DeleteApplicationMessageText": "Weet u zeker dat u de applicatie '{0}' wilt verwijderen?",
|
||||
"DeleteApplicationMessageText": "Weet u zeker dat u de applicatie '{name}' wilt verwijderen?",
|
||||
"DeleteBackup": "Verwijder Backup",
|
||||
"DeleteBackupMessageText": "Bent u zeker dat u de veiligheidskopie '{name}' wilt verwijderen?",
|
||||
"DeleteDownloadClient": "Verwijder Downloader",
|
||||
"DeleteDownloadClientMessageText": "Bent u zeker dat u de downloader '{name}' wilt verwijderen?",
|
||||
"DeleteIndexerProxy": "Indexeerproxy verwijderen",
|
||||
"DeleteIndexerProxyMessageText": "Weet u zeker dat u de proxy '{0}' wilt verwijderen?",
|
||||
"DeleteIndexerProxyMessageText": "Weet u zeker dat u de proxy '{name}' wilt verwijderen?",
|
||||
"DeleteNotification": "Verwijder Notificatie",
|
||||
"DeleteNotificationMessageText": "Weet je zeker dat je de notificatie ‘{name}’ wil verwijderen?",
|
||||
"DeleteTag": "Verwijder Tag",
|
||||
@@ -123,7 +123,7 @@
|
||||
"EnableInteractiveSearch": "Schakel interactief zoeken in",
|
||||
"EnableInteractiveSearchHelpText": "Zal worden gebruikt wanneer interactief zoeken wordt gebruikt",
|
||||
"EnableRss": "RSS inschakelen",
|
||||
"EnableRssHelpText": "Rss-feed voor Indexer inschakelen",
|
||||
"EnableRssHelpText": "RSS-feed voor Indexeerder inschakelen",
|
||||
"EnableSSL": "Activeer SSL",
|
||||
"EnableSslHelpText": " Vereist herstart als administrator om in werking te treden",
|
||||
"Enabled": "Ingeschakeld",
|
||||
@@ -149,7 +149,7 @@
|
||||
"FullSync": "Volledige synchronisatie",
|
||||
"General": "Algemeen",
|
||||
"GeneralSettings": "Algemene Instellingen",
|
||||
"GeneralSettingsSummary": "Poort, SSL, gebruikersnaam/wachtwoord, proxy, statistieken en updates",
|
||||
"GeneralSettingsSummary": "Poort, SSL, gebruikersnaam/wachtwoord, proxy, analytics en updates",
|
||||
"GrabReleases": "Uitgave Ophalen",
|
||||
"Grabbed": "Opgehaalde",
|
||||
"Grabs": "Gegrepen",
|
||||
@@ -162,7 +162,7 @@
|
||||
"HomePage": "Startpagina",
|
||||
"Host": "Host",
|
||||
"Hostname": "Hostnaam",
|
||||
"Id": "Id",
|
||||
"Id": "ID",
|
||||
"IgnoredAddresses": "Genegeerde Adressen",
|
||||
"IllRestartLater": "Ik zal later herstarten",
|
||||
"IncludeHealthWarningsHelpText": "Voeg Gezondheidswaarschuwingen Toe",
|
||||
@@ -180,7 +180,7 @@
|
||||
"IndexerProxyStatusAllUnavailableHealthCheckMessage": "Alle proxy's zijn niet beschikbaar vanwege storingen",
|
||||
"IndexerProxyStatusUnavailableHealthCheckMessage": "Proxy's niet beschikbaar vanwege storingen: {indexerProxyNames}",
|
||||
"IndexerQuery": "Indexeer zoekopdracht",
|
||||
"IndexerRss": "Indexeer RSS",
|
||||
"IndexerRss": "Indexeerder RSS",
|
||||
"IndexerSettingsSummary": "Configureer verschillende globale Indexer-instellingen, waaronder proxy's.",
|
||||
"IndexerStatusAllUnavailableHealthCheckMessage": "Alle indexeerders zijn onbeschikbaar wegens fouten",
|
||||
"IndexerStatusUnavailableHealthCheckMessage": "Indexeerders onbeschikbaar wegens fouten: {indexerNames}",
|
||||
@@ -426,15 +426,15 @@
|
||||
"ApplyTagsHelpTextRemove": "Verwijderen: Verwijder de ingevoerde tags",
|
||||
"ApplyTagsHelpTextReplace": "Vervangen: Vervang de tags met de ingevoerde tags (vul geen tags in om alle tags te wissen)",
|
||||
"CountIndexersSelected": "{count} Indexer(s) Geselecteerd",
|
||||
"DeleteSelectedApplicationsMessageText": "Bent u zeker dat u de indexeerder '{0}' wilt verwijderen?",
|
||||
"DeleteSelectedApplicationsMessageText": "Bent u zeker dat u de indexeerder '{count}' wilt verwijderen?",
|
||||
"DeleteSelectedDownloadClients": "Verwijder Downloader",
|
||||
"DeleteSelectedDownloadClientsMessageText": "Bent u zeker dat u de indexeerder '{0}' wilt verwijderen?",
|
||||
"DeleteSelectedDownloadClientsMessageText": "Bent u zeker dat u de indexeerder '{count}' wilt verwijderen?",
|
||||
"Season": "Seizoen",
|
||||
"SelectIndexers": "Zoek indexeerders",
|
||||
"More": "Meer",
|
||||
"Theme": "Thema",
|
||||
"Track": "Spoor",
|
||||
"DeleteSelectedIndexersMessageText": "Bent u zeker dat u de indexeerder '{0}' wilt verwijderen?",
|
||||
"DeleteSelectedIndexersMessageText": "Bent u zeker dat u de indexeerder '{count}' wilt verwijderen?",
|
||||
"DownloadClientPriorityHelpText": "Geef prioriteit aan meerdere downloaders. Round-Robin wordt gebruikt voor downloaders met dezelfde prioriteit.",
|
||||
"Genre": "Genres",
|
||||
"Year": "Jaar",
|
||||
@@ -512,5 +512,155 @@
|
||||
"Download": "Downloaden",
|
||||
"InstallLatest": "Installeer Nieuwste Versie",
|
||||
"CurrentlyInstalled": "Momenteel Geïnstalleerd",
|
||||
"Mixed": "Opgelost"
|
||||
"Mixed": "Opgelost",
|
||||
"AverageQueries": "Gemiddelde Queries",
|
||||
"AverageGrabs": "Gemiddeld aantal downloads",
|
||||
"AverageResponseTimesMs": "Gemiddelde Indexer Responsetijden (ms)",
|
||||
"Book": "Boek",
|
||||
"CountIndexersAvailable": "{count} indexer(s) beschikbaar",
|
||||
"Donate": "Doneer",
|
||||
"DownloadClientFreeboxSettingsHostHelpText": "Hostnaam of IP-adres van de Freebox, standaard '{url}' (werkt alleen als je op hetzelfde netwerk zit)",
|
||||
"DownloadClientFreeboxSettingsPortHelpText": "Poort die wordt gebruikt om toegang te krijgen tot de Freebox-interface, standaard '{port}'",
|
||||
"DefaultCategory": "Standaardcategorie",
|
||||
"DownloadClientRTorrentSettingsUrlPathHelpText": "Pad naar het XMLRPC-eindpunt, zie {url}. Dit is meestal RPC2 of [pad naar ruTorrent]{url2} bij gebruik van ruTorrent.",
|
||||
"DownloadClientSettingsAddPaused": "Toevoegen gepauzeerd",
|
||||
"IndexerPassThePopcornSettingsFreeleechOnlyHelpText": "Doorzoek freeleech releases",
|
||||
"IndexerId": "Indexeerder ID",
|
||||
"EditCategory": "Categorie bewerken",
|
||||
"ApplicationsLoadError": "Kan de applicatielijst niet laden",
|
||||
"DownloadClientAriaSettingsDirectoryHelpText": "Optionele locatie om downloads op te slaan, leeg laten om de standaardlocatie van Aria2 te gebruiken",
|
||||
"DownloadClientDelugeSettingsUrlBaseHelpText": "Voegt een voorvoegsel toe aan de Deluge JSON-URL, zie {url}",
|
||||
"FailedToFetchSettings": "Instellingen ophalen mislukt",
|
||||
"HistoryCleanup": "Geschiedenis opschonen",
|
||||
"Implementation": "Implementatie",
|
||||
"IndexerHDBitsSettingsOrigins": "Herkomst",
|
||||
"IndexerMTeamTpSettingsApiKeyHelpText": "API-sleutel van de site (te vinden in Gebruikerspaneel => Beveiliging => Laboratorium)",
|
||||
"IndexerFileListSettingsFreeleechOnlyHelpText": "Alleen freeleech-releases doorzoeken",
|
||||
"Default": "Standaard",
|
||||
"DownloadClientFloodSettingsUrlBaseHelpText": "Voegt een voorvoegsel toe aan de Flood API, zoals {url}",
|
||||
"DownloadClientRTorrentSettingsAddStoppedHelpText": "Als je dit inschakelt, worden torrents en magnet-links in rTorrent in een gestopte staat toegevoegd. Dit kan magnet-bestanden laten mislukken.",
|
||||
"IndexerNoDefinitionCheckHealthCheckMessage": "Indexeerders hebben geen definitie en zullen niet werken: {indexerNames}. Verwijder ze alstublieft en voeg ze opnieuw toe aan {appName}.",
|
||||
"AppsMinimumSeedersHelpText": "Minimum aantal vereiste seeders door de applicaties voordat de indexer iets ophaalt. Leeg laten gebruikt de standaardwaarde van het synchronisatieprofiel",
|
||||
"Author": "Auteur",
|
||||
"BookSearch": "Boek zoeken",
|
||||
"IndexerSettingsCookieHelpText": "Site Cookie",
|
||||
"DownloadClientTransmissionSettingsDirectoryHelpText": "Optionele locatie om downloads op te slaan, laat leeg om de standaardlocatie van Transmission te gebruiken",
|
||||
"DeleteSelectedIndexers": "Verwijder geselecteerde indexeerders",
|
||||
"Destination": "Bestemming",
|
||||
"DownloadClientDownloadStationSettingsDirectoryHelpText": "Optionele gedeelde map om downloads in te plaatsen, leeg laten om de standaardlocatie van Download Station te gebruiken",
|
||||
"DownloadClientFloodSettingsAdditionalTags": "Additionele Tags",
|
||||
"DownloadClientFreeboxSettingsApiUrl": "API URL",
|
||||
"DownloadClientFreeboxSettingsApiUrlHelpText": "Stel de basis-URL van de Freebox API in met API-versie, bijvoorbeeld '{url}', standaard is '{defaultApiUrl}'",
|
||||
"DownloadClientFreeboxSettingsAppId": "App ID",
|
||||
"DownloadClientFreeboxSettingsAppToken": "App Token",
|
||||
"DownloadClientNzbgetSettingsAddPausedHelpText": "Deze optie vereist minimaal NzbGet versie 16.0",
|
||||
"DownloadClientPneumaticSettingsNzbFolder": "Nzb map",
|
||||
"DownloadClientPneumaticSettingsNzbFolderHelpText": "Deze map moet bereikbaar zijn vanuit XBMC",
|
||||
"DownloadClientQbittorrentSettingsContentLayout": "Inhoudsindeling",
|
||||
"DownloadClientQbittorrentSettingsFirstAndLastFirstHelpText": "Download eerste en laatste stukjes eerst (qBittorrent 4.1.0+)",
|
||||
"DownloadClientQbittorrentSettingsSequentialOrderHelpText": "Download in opeenvolgende volgorde (qBittorrent 4.1.0+)",
|
||||
"DownloadClientRTorrentSettingsAddStopped": "Toevoegen gestopt",
|
||||
"DownloadClientRTorrentSettingsDirectoryHelpText": "Optionele locatie om downloads op te slaan, leeg laten om de standaardlocatie van rTorrent te gebruiken",
|
||||
"DownloadClientRTorrentSettingsUrlPath": "Url pad",
|
||||
"ElapsedTime": "Verstreken tijd",
|
||||
"External": "Extern",
|
||||
"FailedToFetchUpdates": "Updates ophalen mislukt",
|
||||
"FoundCountReleases": "{itemCount} releases gevonden",
|
||||
"IndexerAlphaRatioSettingsExcludeSceneHelpText": "SCENE-releases uitsluiten van resultaten",
|
||||
"IndexerBeyondHDSettingsApiKeyHelpText": "API-sleutel van de site (te vinden onder Mijn Beveiliging => API-sleutel)",
|
||||
"IndexerBeyondHDSettingsLimitedOnly": "Alleen beperkt",
|
||||
"IndexerBeyondHDSettingsSearchTypesHelpText": "Selecteer de soorten releases waarin je geïnteresseerd bent. Als er geen selectie is gemaakt, worden alle opties gebruikt.",
|
||||
"IndexerFileListSettingsPasskeyHelpText": "Site Passkey (Dit is de alfanumerieke reeks in de tracker-URL die in je downloadclient wordt weergegeven)",
|
||||
"IndexerGazelleGamesSettingsSearchGroupNames": "Zoek groepnamen",
|
||||
"IndexerIPTorrentsSettingsCookieUserAgent": "Cookie User-Agent",
|
||||
"IndexerIPTorrentsSettingsFreeleechOnlyHelpText": "Doorzoek alleen freeleech releases",
|
||||
"IndexerMTeamTpSettingsFreeleechOnlyHelpText": "Doorzoek alleen freeleech releases",
|
||||
"IndexerNewznabSettingsApiKeyHelpText": "Site API-sleutel",
|
||||
"IndexerRedactedSettingsApiKeyHelpText": "API-sleutel van de site (te vinden onder Instellingen => Toegangsinstellingen)",
|
||||
"IndexerSettingsFreeleechOnly": "Alleen Freeleech",
|
||||
"DownloadClientQbittorrentSettingsFirstAndLastFirst": "Eerste en laatste eerst",
|
||||
"DownloadClientTransmissionSettingsUrlBaseHelpText": "Voegt een voorvoegsel toe aan de {clientName} RPC-URL, bijvoorbeeld {url}, standaard is '{defaultUrl}'",
|
||||
"AreYouSureYouWantToDeleteCategory": "Weet je zeker dat je de gekoppelde categorie wilt verwijderen?",
|
||||
"DownloadClientCategory": "Downloadclientcategorie",
|
||||
"DeleteSelectedIndexer": "Verwijder geselecteerde indexeerder",
|
||||
"EditSelectedDownloadClients": "Geselecteerde downloadclients bewerken",
|
||||
"IndexerDownloadClientHelpText": "Geef aan welke downloadclient wordt gebruikt voor downloads die binnen {appName} van deze indexer worden opgehaald",
|
||||
"GoToApplication": "Ga naar applicatie",
|
||||
"IndexerName": "Indexeerdernaam",
|
||||
"AreYouSureYouWantToDeleteIndexer": "Weet je zeker dat je '{name}' uit {appName} wilt verwijderen?",
|
||||
"AuthQueries": "Autorisatiequeries",
|
||||
"IndexerAlreadySetup": "Tenminste één instantie van de indexeerder is al ingesteld",
|
||||
"IndexerCategories": "Indexeerdercategorieën",
|
||||
"ApplicationTagsHelpText": "Sync indexers met deze applicatie die één of meer overeenkomende tags hebben. Als er hier geen tags worden opgegeven, worden er geen indexers van synchronisatie uitgesloten op basis van hun tags.",
|
||||
"DownloadClientQbittorrentSettingsContentLayoutHelpText": "Of de ingestelde inhoudsindeling van qBittorrent gebruikt moet worden, de originele indeling van de torrent, of altijd een submap moet worden aangemaakt (qBittorrent 4.3.2+)",
|
||||
"DownloadClientQbittorrentSettingsInitialStateHelpText": "Begintoestand voor torrents die aan qBittorrent worden toegevoegd. Let op: Gedwongen torrents houden zich niet aan seeding-beperkingen",
|
||||
"DownloadClientQbittorrentSettingsSequentialOrder": "Opeenvolgende volgorde",
|
||||
"DownloadClientSettingsDestinationHelpText": "Geef handmatig de downloadbestemming op, laat leeg om de standaardlocatie te gebruiken",
|
||||
"DownloadClientSettingsInitialState": "Initiële staat",
|
||||
"DownloadClientSettingsUseSslHelpText": "Gebruik een beveiligde verbinding bij het verbinden met {clientName}",
|
||||
"EnabledRedirected": "Ingeschakeld, Omgeleid",
|
||||
"HistoryDetails": "Geschiedenis details",
|
||||
"IndexerHDBitsSettingsUsernameHelpText": "Site Gebruikersnaam",
|
||||
"IndexerDetails": "Indexeerder details",
|
||||
"ApplicationSettingsSyncRejectBlocklistedTorrentHashesHelpText": "Als een torrent wordt geblokkeerd op basis van de hash, kan het zijn dat deze niet correct wordt geweigerd tijdens RSS/Search bij sommige indexers. Als je deze optie inschakelt, wordt de torrent alsnog geweigerd nadat hij is opgehaald, maar voordat hij naar de client wordt gestuurd.",
|
||||
"BasicSearch": "Basiszoekopdracht",
|
||||
"DefaultNameCopiedProfile": "{name} - Kopie",
|
||||
"DeleteClientCategory": "Categorie van downloadclient verwijderen",
|
||||
"DisabledUntil": "Uitgeschakeld tot",
|
||||
"DownloadClientFreeboxSettingsAppIdHelpText": "App ID die wordt gegeven bij het aanmaken van toegang tot de Freebox API (bijv. 'app_id')",
|
||||
"DownloadClientPneumaticSettingsStrmFolder": "Strm Map",
|
||||
"EditSelectedIndexers": "Geselecteerde indexeerders bewerken",
|
||||
"GrabTitle": "Grijp Titel",
|
||||
"IndexerHDBitsSettingsMediumsHelpText": "Als niet gespecificeerd, worden alle opties gebruikt.",
|
||||
"IndexerHDBitsSettingsUseFilenames": "Gebruik bestandsnamen",
|
||||
"IndexerHDBitsSettingsPasskeyHelpText": "Passkey vanuit gebruikerdetails",
|
||||
"ClickToChangeQueryOptions": "Klik om zoekopties te wijzigen",
|
||||
"DownloadClientFreeboxSettingsAppTokenHelpText": "App token dat wordt verkregen bij het aanmaken van toegang tot de Freebox API (bijv. 'app_token')",
|
||||
"DownloadClientSettingsInitialStateHelpText": "Begintoestand voor torrents die aan {clientName} worden toegevoegd",
|
||||
"DownloadClientSettingsPriorityItemHelpText": "Prioriteit om te gebruiken bij het ophalen van items",
|
||||
"IncludeManualGrabsHelpText": "Handmatige downloads uitgevoerd binnen {appName} meenemen",
|
||||
"IndexerDisabled": "Indexeerder Uitgeschakeld",
|
||||
"IndexerDownloadClientHealthCheckMessage": "Indexeerders met ongeldige downloadclients: {indexerNames}.",
|
||||
"IndexerFailureRate": "Faalpercentage van de indexeerder",
|
||||
"IndexerFileListSettingsUsernameHelpText": "Site Gebruikersnaam",
|
||||
"IndexerHDBitsSettingsUseFilenamesHelpText": "Vink deze optie aan als je torrentbestandsnamen als releasetitels wilt gebruiken",
|
||||
"IndexerHistoryLoadError": "Fout bij het laden van de indexeerder-geschiedenis",
|
||||
"IndexerInfo": "Indexeerder info",
|
||||
"IndexerAlphaRatioSettingsExcludeScene": "SCENE uitsluiten",
|
||||
"IndexerBeyondHDSettingsSearchTypes": "Zoek types",
|
||||
"IndexerGazelleGamesSettingsApiKeyHelpText": "API-sleutel van de site (te vinden onder Instellingen => Toegangsinstellingen)",
|
||||
"IndexerGazelleGamesSettingsApiKeyHelpTextWarning": "Moet over Gebruikers- en Torrents-machtigingen beschikken",
|
||||
"IndexerHDBitsSettingsCodecsHelpText": "Als niet gespecificeerd, worden alle opties gebruikt.",
|
||||
"IndexerIPTorrentsSettingsCookieUserAgentHelpText": "User-Agent die gekoppeld is aan de cookie gebruikt vanuit de browser",
|
||||
"IndexerNewznabSettingsAdditionalParametersHelpText": "Aanvullende Newznab-parameters",
|
||||
"IndexerNzbIndexSettingsApiKeyHelpText": "Site API-sleutel",
|
||||
"IndexerPassThePopcornSettingsApiKeyHelpText": "Site API-sleutel",
|
||||
"IndexerOrpheusSettingsApiKeyHelpText": "API-sleutel van de site (te vinden onder Instellingen => Toegangsinstellingen)",
|
||||
"IndexerSettingsBaseUrlHelpText": "Selecteer welke basis-URL {appName} gebruikt voor verzoeken aan de site",
|
||||
"IndexerSettingsApiPathHelpText": "Pad naar de API, meestal {url}",
|
||||
"IndexerSettingsApiUser": "API Gebruiker",
|
||||
"IndexerSettingsBaseUrl": "Basisurl",
|
||||
"IndexerSettingsCookie": "Cookie",
|
||||
"IndexerSettingsAdditionalParameters": "Aanvullende parameters",
|
||||
"IndexerSettingsApiPath": "API pad",
|
||||
"IndexerAvistazSettingsPidHelpText": "PID van de pagina Mijn Account of Mijn Profiel",
|
||||
"IndexerAvistazSettingsUsernameHelpText": "Site Gebruikersnaam",
|
||||
"IndexerAvistazSettingsUsernameHelpTextWarning": "Alleen leden met de rang 'member' of hoger kunnen de API van deze indexeerder gebruiken.",
|
||||
"IndexerBeyondHDSettingsRssKeyHelpText": "RSS-sleutel van de site (te vinden onder Mijn Beveiliging => RSS-sleutel)",
|
||||
"IndexerGazelleGamesSettingsSearchGroupNamesHelpText": "Zoek releases op groepsnaam",
|
||||
"IndexerAvistazSettingsPasswordHelpText": "Site Wachtwoord",
|
||||
"IndexerHDBitsSettingsOriginsHelpText": "Als niet gespecificeerd, worden alle opties gebruikt.",
|
||||
"ApplicationTagsHelpTextWarning": "Gebruik tags met voorzichtigheid, ze kunnen onbedoelde effecten hebben. Een app met een tag zal alleen synchroniseren met indexers die dezelfde tag hebben.",
|
||||
"DownloadClientQbittorrentSettingsUseSslHelpText": "Gebruik een beveiligde verbinding. Zie Opties -> Web UI -> 'Gebruik HTTPS in plaats van HTTP' in qBittorrent.",
|
||||
"DeleteSelectedApplications": "Verwijder geselecteerde applicaties",
|
||||
"DownloadClientUTorrentProviderMessage": "uTorrent heeft een geschiedenis van het bevatten van cryptominers, malware en advertenties. We raden je sterk aan om een andere client te kiezen.",
|
||||
"HealthMessagesInfoBox": "Je kunt meer informatie over de oorzaak van deze gezondheidscontroleberichten vinden door op de wiki-link (boekicoon) aan het einde van de rij te klikken, of door je [logboeken]({link}) te bekijken. Als je moeite hebt met het interpreteren van deze berichten, kun je contact opnemen met onze ondersteuning via de onderstaande links",
|
||||
"IndexerNebulanceSettingsApiKeyHelpText": "API-sleutel te vinden onder Gebruikersinstellingen > API-sleutels. De sleutel moet de machtigingen Lijst en Download hebben",
|
||||
"DownloadClientFloodSettingsAdditionalTagsHelpText": "Voegt eigenschappen van media toe als tags. Hints zijn voorbeelden.",
|
||||
"DownloadClientPneumaticSettingsStrmFolderHelpText": ".strm-bestanden in deze map worden geïmporteerd door Drone",
|
||||
"DownloadClientSettingsDefaultCategoryHelpText": "Standaard fallback-categorie als er geen gekoppelde categorie bestaat voor een release. Het toevoegen van een categorie specifiek voor {appName} voorkomt conflicten met niet-gerelateerde downloads van andere applicaties dan {appName}. Het gebruik van een categorie is optioneel, maar wordt sterk aanbevolen.",
|
||||
"DownloadClientFloodSettingsTagsHelpText": "Initiële tags van een download. Om herkend te worden, moet een download alle initiële tags hebben. Dit voorkomt conflicten met niet-gerelateerde downloads.",
|
||||
"IndexerNewznabSettingsVipExpirationHelpText": "Voer de datum in (jjjj-mm-dd) voor VIP-vervaldatum of laat leeg. {appName} zal 1 week voor het verstrijken van de VIP-periode een melding geven",
|
||||
"DownloadClientSettingsDefaultCategorySubFolderHelpText": "Standaard fallback-categorie als er geen gekoppelde categorie bestaat voor een release. Het toevoegen van een categorie specifiek voor {appName} voorkomt conflicten met niet-gerelateerde downloads die niet van {appName} zijn. Het gebruik van een categorie is optioneel, maar wordt sterk aanbevolen. Er wordt een [categorie]-submap aangemaakt in de uitvoermap.",
|
||||
"IndexerPassThePopcornSettingsApiUserHelpText": "Deze instellingen vind je in je PassThePopcorn beveiligingsinstellingen (Profiel bewerken > Beveiliging)."
|
||||
}
|
||||
|
||||
@@ -17,15 +17,15 @@
|
||||
"TableOptionsColumnsMessage": "Wybierz, które kolumny są widoczne i w jakiej kolejności się pojawiają",
|
||||
"BeforeUpdate": "Przed aktualizacją",
|
||||
"BindAddress": "Adres powiązania",
|
||||
"BranchUpdate": "Oddział do użycia do aktualizacji {appName}",
|
||||
"BranchUpdate": "Gałąź do wykorzystania w aktualizacji {appName}",
|
||||
"Cancel": "Anuluj",
|
||||
"Automatic": "Automatyczny",
|
||||
"ApplyTags": "Zastosuj tagi",
|
||||
"BackupIntervalHelpText": "Odstęp czasu między automatycznymi kopiami zapasowymi",
|
||||
"Close": "Zamknij",
|
||||
"CloseCurrentModal": "Zamknij bieżący tryb",
|
||||
"Delete": "Usunąć",
|
||||
"Discord": "Niezgoda",
|
||||
"Delete": "Usuń",
|
||||
"Discord": "Discord",
|
||||
"Edit": "Edytować",
|
||||
"EnableAutomaticSearchHelpText": "Będzie używany, gdy automatyczne wyszukiwania są wykonywane przez interfejs użytkownika lub przez {appName}",
|
||||
"KeyboardShortcuts": "Skróty klawiszowe",
|
||||
@@ -50,14 +50,14 @@
|
||||
"TagCannotBeDeletedWhileInUse": "Nie można usunąć, gdy jest używany",
|
||||
"UnselectAll": "Odznacz wszystko",
|
||||
"Usenet": "Usenet",
|
||||
"AllIndexersHiddenDueToFilter": "Wszystkie filmy są ukryte ze względu na zastosowany filtr.",
|
||||
"AllIndexersHiddenDueToFilter": "Wszystkie indeksery są ukryte ze względu na zastosowany filtr.",
|
||||
"ApiKey": "Klucz API",
|
||||
"UI": "UI",
|
||||
"AcceptConfirmationModal": "Zaakceptuj tryb potwierdzenia",
|
||||
"AddIndexer": "Dodaj indekser",
|
||||
"AddingTag": "Dodawanie tagu",
|
||||
"Age": "Wiek",
|
||||
"CertificateValidationHelpText": "Zmień ścisłą walidację certyfikatu HTTPS",
|
||||
"CertificateValidationHelpText": "Zmień jak rygorystyczna jest walidacja certyfikatu HTTPS",
|
||||
"ChangeHasNotBeenSavedYet": "Zmiana nie została jeszcze zapisana",
|
||||
"DownloadClient": "Pobierz klienta",
|
||||
"Exception": "Wyjątek",
|
||||
@@ -68,7 +68,7 @@
|
||||
"AppDataDirectory": "Katalog AppData",
|
||||
"AutomaticSearch": "Automatyczne wyszukiwanie",
|
||||
"Branch": "Gałąź",
|
||||
"Connections": "Znajomości",
|
||||
"Connections": "Połączenia",
|
||||
"ConnectSettings": "Ustawienia połączenia",
|
||||
"CouldNotConnectSignalR": "Nie można połączyć się z SignalR, interfejs użytkownika nie zostanie zaktualizowany",
|
||||
"EnableInteractiveSearchHelpText": "Będzie używany, gdy używane jest wyszukiwanie interaktywne",
|
||||
@@ -94,16 +94,16 @@
|
||||
"UnableToLoadNotifications": "Nie można załadować powiadomień",
|
||||
"UpdateUiNotWritableHealthCheckMessage": "Nie można zainstalować aktualizacji, ponieważ użytkownik „{userName}” nie ma prawa zapisu w folderze interfejsu użytkownika „{uiFolder}”.",
|
||||
"UseProxy": "Użyj proxy",
|
||||
"DeleteIndexerProxyMessageText": "Czy na pewno chcesz usunąć tag „{0}”?",
|
||||
"DeleteNotificationMessageText": "Czy na pewno chcesz usunąć powiadomienie „{0}”?",
|
||||
"DeleteIndexerProxyMessageText": "Czy na pewno chcesz usunąć proxy indeksera '{name}'?",
|
||||
"DeleteNotificationMessageText": "Czy na pewno chcesz usunąć powiadomienie '{name}'?",
|
||||
"EnableSSL": "Włącz SSL",
|
||||
"Error": "Błąd",
|
||||
"ErrorLoadingContents": "Błąd podczas ładowania treści",
|
||||
"Events": "Wydarzenia",
|
||||
"SettingsLongDateFormat": "Format długiej daty",
|
||||
"AnalyticsEnabledHelpText": "Wysyłaj anonimowe informacje o użytkowaniu i błędach do serwerów {appName}. Obejmuje to informacje o Twojej przeglądarce, z których stron {appName} WebUI używasz, raportowanie błędów, a także wersję systemu operacyjnego i środowiska wykonawczego. Wykorzystamy te informacje, aby nadać priorytet funkcjom i poprawkom błędów.",
|
||||
"ApplicationStatusCheckAllClientMessage": "Wszystkie listy są niedostępne z powodu błędów",
|
||||
"ApplicationStatusCheckSingleClientMessage": "Listy niedostępne z powodu błędów: {0}",
|
||||
"AnalyticsEnabledHelpText": "Wysyłaj anonimowe informacje o użytkowaniu i błędach do serwerów {appName}. Obejmuje to informacje o Twojej przeglądarce, których stron interfejsu webowego {appName} używasz, raportowanie błędów, a także wersję systemu operacyjnego i środowiska wykonawczego. Wykorzystamy te informacje, aby nadać priorytet funkcjom i poprawkom błędów.",
|
||||
"ApplicationStatusCheckAllClientMessage": "Wszystkie aplikacje są niedostępne z powodu błędów",
|
||||
"ApplicationStatusCheckSingleClientMessage": "Aplikacje niedostępne z powodu błędów: {0}",
|
||||
"Apply": "Zastosuj",
|
||||
"Authentication": "Autoryzacja",
|
||||
"AuthenticationMethodHelpText": "Wymagaj nazwy użytkownika i hasła, aby uzyskać dostęp do {appName}",
|
||||
@@ -118,18 +118,18 @@
|
||||
"CloneProfile": "Klonuj profil",
|
||||
"Component": "Składnik",
|
||||
"ConnectionLost": "Utracono połączenie",
|
||||
"Custom": "Zwyczaj",
|
||||
"Custom": "Niestandardowe",
|
||||
"Date": "Data",
|
||||
"Dates": "Daktyle",
|
||||
"Dates": "Daty",
|
||||
"DatabaseMigration": "Migracja bazy danych",
|
||||
"DeleteApplicationMessageText": "Czy na pewno chcesz usunąć powiadomienie „{0}”?",
|
||||
"DeleteApplicationMessageText": "Czy na pewno chcesz usunąć aplikację '{name}'?",
|
||||
"DeleteBackup": "Usuń kopię zapasową",
|
||||
"DeleteBackupMessageText": "Czy na pewno chcesz usunąć kopię zapasową „{name}”?",
|
||||
"DeleteBackupMessageText": "Czy na pewno chcesz usunąć kopię zapasową '{name}'?",
|
||||
"DeleteDownloadClient": "Usuń klienta pobierania",
|
||||
"DeleteDownloadClientMessageText": "Czy na pewno chcesz usunąć klienta pobierania „{name}”?",
|
||||
"DeleteDownloadClientMessageText": "Czy na pewno chcesz usunąć klienta pobierania '{name}'?",
|
||||
"DeleteNotification": "Usuń powiadomienie",
|
||||
"Disabled": "Wyłączone",
|
||||
"Docker": "Doker",
|
||||
"Docker": "Docker",
|
||||
"DownloadClientStatusSingleClientHealthCheckMessage": "Klienci pobierania niedostępni z powodu błędów: {downloadClientNames}",
|
||||
"EditIndexer": "Edytuj indeksator",
|
||||
"Enable": "Włączyć",
|
||||
@@ -146,7 +146,7 @@
|
||||
"FocusSearchBox": "Zaznacz pole wyszukiwania",
|
||||
"Folder": "Teczka",
|
||||
"ForMoreInformationOnTheIndividualDownloadClients": "Aby uzyskać więcej informacji na temat poszczególnych klientów pobierania, kliknij przyciski informacyjne.",
|
||||
"General": "Generał",
|
||||
"General": "Ogólne",
|
||||
"GeneralSettings": "Ustawienia główne",
|
||||
"GeneralSettingsSummary": "Port, SSL, nazwa użytkownika / hasło, proxy, analizy i aktualizacje",
|
||||
"Grabbed": "Złapał",
|
||||
@@ -250,7 +250,7 @@
|
||||
"Title": "Tytuł",
|
||||
"Today": "Dzisiaj",
|
||||
"Tomorrow": "Jutro",
|
||||
"Torrent": "Torrenty",
|
||||
"Torrent": "Torrent",
|
||||
"Torrents": "Torrenty",
|
||||
"Type": "Rodzaj",
|
||||
"UILanguageHelpText": "Język, którego {appName} będzie używać w interfejsie użytkownika",
|
||||
@@ -276,10 +276,10 @@
|
||||
"UrlBaseHelpText": "W przypadku obsługi zwrotnego proxy wartość domyślna jest pusta",
|
||||
"Username": "Nazwa Użytkownika",
|
||||
"DeleteTag": "Usuń tag",
|
||||
"DeleteTagMessageText": "Czy na pewno chcesz usunąć tag „{0}”?",
|
||||
"Details": "Detale",
|
||||
"DeleteTagMessageText": "Czy na pewno chcesz usunąć tag '{label}'?",
|
||||
"Details": "Szczegóły",
|
||||
"Donations": "Darowizny",
|
||||
"DownloadClients": "Pobierz klientów",
|
||||
"DownloadClients": "Klienci pobierania",
|
||||
"DownloadClientSettings": "Pobierz ustawienia klienta",
|
||||
"IncludeHealthWarningsHelpText": "Uwzględnij ostrzeżenia zdrowotne",
|
||||
"Indexer": "Indeksator",
|
||||
@@ -290,7 +290,7 @@
|
||||
"Health": "Zdrowie",
|
||||
"InteractiveSearch": "Wyszukiwanie interaktywne",
|
||||
"Version": "Wersja",
|
||||
"Warn": "Ostrzec",
|
||||
"Warn": "Ostrzeż",
|
||||
"Wiki": "Wiki",
|
||||
"YesCancel": "Tak, anuluj",
|
||||
"Yesterday": "Wczoraj",
|
||||
@@ -310,7 +310,7 @@
|
||||
"HistoryCleanupDaysHelpTextWarning": "Pliki w koszu starsze niż wybrana liczba dni zostaną automatycznie wyczyszczone",
|
||||
"Filters": "Filtr",
|
||||
"HistoryCleanupDaysHelpText": "Ustaw na 0, aby wyłączyć automatyczne czyszczenie",
|
||||
"OnGrab": "Na Grab",
|
||||
"OnGrab": "Zgarnięcie na premierę",
|
||||
"OnHealthIssue": "W kwestii zdrowia",
|
||||
"TestAllIndexers": "Przetestuj wszystkie indeksatory",
|
||||
"GrabReleases": "Grab Release",
|
||||
@@ -327,7 +327,7 @@
|
||||
"OnApplicationUpdateHelpText": "Przy aktualizacji aplikacji",
|
||||
"Database": "Baza danych",
|
||||
"NotificationTriggersHelpText": "Wybierz zdarzenia, które mają uruchamiać to powiadomienie",
|
||||
"ApplicationLongTermStatusCheckSingleClientMessage": "Indeksatory niedostępne z powodu błędów przez ponad 6 godzin: {0}",
|
||||
"ApplicationLongTermStatusCheckSingleClientMessage": "Aplikacje niedostępne z powodu błędów przez ponad 6 godzin: {0}",
|
||||
"Duration": "Czas trwania",
|
||||
"Ended": "Zakończone",
|
||||
"LastDuration": "Ostatni czas trwania",
|
||||
@@ -336,39 +336,39 @@
|
||||
"Queued": "W kolejce",
|
||||
"Started": "Rozpoczęto",
|
||||
"Encoding": "Kodowanie",
|
||||
"Application": "Aplikacje",
|
||||
"Application": "Aplikacja",
|
||||
"Applications": "Aplikacje",
|
||||
"ApplicationLongTermStatusCheckAllClientMessage": "Wszystkie indeksatory są niedostępne z powodu awarii przez ponad 6 godzin",
|
||||
"ApplicationLongTermStatusCheckAllClientMessage": "Wszystkie aplikacje są niedostępne z powodu awarii przez ponad 6 godzin",
|
||||
"Remove": "Usunąć",
|
||||
"Replace": "Zastąpić",
|
||||
"OnLatestVersion": "Najnowsza wersja {appName} jest już zainstalowana",
|
||||
"ApplicationURL": "Link do aplikacji",
|
||||
"ApplicationUrlHelpText": "Zewnętrzny URL tej aplikacji zawierający http(s)://, port i adres URL",
|
||||
"ApplicationUrlHelpText": "Zewnętrzny link tej aplikacji zawierający http(s)://, port i adres URL",
|
||||
"ApplyTagsHelpTextAdd": "Dodaj: dodaj tagi do istniejącej listy tagów",
|
||||
"ApplyTagsHelpTextHowToApplyApplications": "Jak zastosować tagi do wybranych filmów",
|
||||
"ApplyTagsHelpTextHowToApplyIndexers": "Jak zastosować tagi do wybranych indeksatorów",
|
||||
"DeleteSelectedApplicationsMessageText": "Czy na pewno chcesz usunąć indeksator „{0}”?",
|
||||
"DeleteSelectedDownloadClients": "Usuń klienta pobierania",
|
||||
"DeleteSelectedDownloadClientsMessageText": "Czy na pewno chcesz usunąć indeksator „{0}”?",
|
||||
"ApplyTagsHelpTextHowToApplyApplications": "Jak zastosować tagi do wybranych aplikacji",
|
||||
"ApplyTagsHelpTextHowToApplyIndexers": "Jak zastosować tagi do wybranych indekserów",
|
||||
"DeleteSelectedApplicationsMessageText": "Czy na pewno chcesz usunąć {count} wybranych aplikacji?",
|
||||
"DeleteSelectedDownloadClients": "Usuń klienta/ów pobierania",
|
||||
"DeleteSelectedDownloadClientsMessageText": "Czy na pewno chcesz usunąć {count} wybranych klientów pobierania?",
|
||||
"Year": "Rok",
|
||||
"More": "Jeszcze",
|
||||
"ApplyTagsHelpTextRemove": "Usuń: usuń wprowadzone tagi",
|
||||
"ApplyTagsHelpTextReplace": "Zastąp: Zastąp tagi wprowadzonymi tagami (nie wprowadzaj tagów, aby usunąć wszystkie tagi)",
|
||||
"DeleteSelectedIndexersMessageText": "Czy na pewno chcesz usunąć indeksator „{0}”?",
|
||||
"DownloadClientPriorityHelpText": "Nadaj priorytet wielu klientom pobierania. W przypadku klientów o tym samym priorytecie używane jest działanie okrężne.",
|
||||
"DeleteSelectedIndexersMessageText": "Czy na pewno chcesz usunąć {count} wybranych indekserów?",
|
||||
"DownloadClientPriorityHelpText": "Nadaj priorytet wielu klientom pobierania. W przypadku klientów o tym samym priorytecie używany jest system kołowy (\"każdy na każdego\").",
|
||||
"Track": "Ślad",
|
||||
"UpdateAvailableHealthCheckMessage": "Dostępna jest aktualizacja: {version}",
|
||||
"Genre": "Gatunki",
|
||||
"ApplyChanges": "Zastosuj zmiany",
|
||||
"ApiKeyValidationHealthCheckMessage": "Zaktualizuj swój klucz API aby był długi na co najmniej {length} znaków. Możesz to zrobić poprzez ustawienia lub plik konfiguracyjny",
|
||||
"DeleteAppProfileMessageText": "Czy na pewno chcesz usunąć profil jakości '{0}'?",
|
||||
"ConnectionLostReconnect": "Radarr spróbuje połączyć się automatycznie lub możesz kliknąć przycisk przeładuj poniżej.",
|
||||
"DeleteAppProfileMessageText": "Czy na pewno chcesz usunąć profil aplikacji '{name}'?",
|
||||
"ConnectionLostReconnect": "{appName} spróbuje połączyć się automatycznie, możesz też kliknąć przycisk przeładuj poniżej.",
|
||||
"RecentChanges": "Ostatnie zmiany",
|
||||
"WhatsNew": "Co nowego?",
|
||||
"ConnectionLostToBackend": "Radarr utracił połączenie z silnikiem programu, aby przywrócić funkcjonalność musi zostać zrestartowany.",
|
||||
"ConnectionLostToBackend": "{appName} utracił połączenie z silnikiem programu, aby przywrócić funkcjonalność musi zostać zrestartowany.",
|
||||
"minutes": "Minuty",
|
||||
"NotificationStatusSingleClientHealthCheckMessage": "Listy niedostępne z powodu błędów: {notificationNames}",
|
||||
"AddConnection": "Edytuj kolekcję",
|
||||
"AddConnection": "Edytuj połączenie",
|
||||
"NotificationStatusAllClientHealthCheckMessage": "Wszystkie listy są niedostępne z powodu błędów",
|
||||
"AuthForm": "Formularze (strona logowania)",
|
||||
"DisabledForLocalAddresses": "Wyłączone dla adresów lokalnych",
|
||||
@@ -376,14 +376,14 @@
|
||||
"AuthBasic": "Podstawowe (wyskakujące okienko przeglądarki)",
|
||||
"ResetAPIKeyMessageText": "Czy na pewno chcesz zresetować swój klucz API?",
|
||||
"RestartProwlarr": "Zrestartuj {appName}",
|
||||
"AddConnectionImplementation": "Dodaj Connection - {implementationName}",
|
||||
"AddConnectionImplementation": "Dodaj połączenie - {implementationName}",
|
||||
"AddDownloadClientImplementation": "Dodaj klienta pobierania - {implementationName}",
|
||||
"CountApplicationsSelected": "Wybrane kolekcje: {0}",
|
||||
"CountApplicationsSelected": "Wybrane aplikacje: {count}",
|
||||
"EditDownloadClientImplementation": "Dodaj klienta pobierania - {implementationName}",
|
||||
"Id": "Identyfikator",
|
||||
"AddApplicationImplementation": "Dodaj Connection - {implementationName}",
|
||||
"AddIndexerImplementation": "Dodaj indeks - {implementationName}",
|
||||
"AddIndexerProxyImplementation": "Dodaj condition - {implementationName}",
|
||||
"AddApplicationImplementation": "Dodaj aplikację - {implementationName}",
|
||||
"AddIndexerImplementation": "Dodaj indekser - {implementationName}",
|
||||
"AddIndexerProxyImplementation": "Dodaj proxy indeksera - {implementationName}",
|
||||
"EditConnectionImplementation": "Dodaj Connection - {implementationName}",
|
||||
"EditApplicationImplementation": "Dodaj Connection - {implementationName}",
|
||||
"EditIndexerImplementation": "Dodaj condition - {implementationName}",
|
||||
@@ -392,26 +392,26 @@
|
||||
"Directory": "Folder",
|
||||
"IndexerHDBitsSettingsCodecs": "Kodek",
|
||||
"ProxyValidationBadRequest": "Nie udało się przetestować serwera proxy. StatusCode: {statusCode}",
|
||||
"CustomFilter": "Filtry niestandardowe",
|
||||
"CustomFilter": "Filtr niestandardowy",
|
||||
"GrabRelease": "Pobierz Wydanie",
|
||||
"Script": "Scenariusz",
|
||||
"BuiltIn": "Wbudowany",
|
||||
"PublishedDate": "Data publikacji",
|
||||
"AllSearchResultsHiddenByFilter": "Wszystkie wyniki są ukrywane przez zastosowany filtr",
|
||||
"AllSearchResultsHiddenByFilter": "Wszystkie wyniki są ukryte przez zastosowany filtr.",
|
||||
"AppUpdated": "{appName} Zaktualizowany",
|
||||
"AppUpdatedVersion": "{appName} został zaktualizowany do wersji `{version}`, by uzyskać nowe zmiany należy przeładować {appName}",
|
||||
"AddCustomFilter": "Dodaj niestandardowy filtr",
|
||||
"AuthenticationMethodHelpTextWarning": "Wybierz prawidłową metodę autoryzacji",
|
||||
"Any": "Dowolny",
|
||||
"AuthenticationMethod": "Metoda Autoryzacji",
|
||||
"AuthenticationRequired": "Wymagana Autoryzacja",
|
||||
"AuthenticationMethod": "Metoda autoryzacji",
|
||||
"AuthenticationRequired": "Wymagana autoryzacja",
|
||||
"Categories": "Kategorie",
|
||||
"Label": "Etykieta",
|
||||
"Notification": "Powiadomienia",
|
||||
"Season": "Sezon",
|
||||
"Theme": "Motyw",
|
||||
"Artist": "artysta",
|
||||
"Album": "album",
|
||||
"Artist": "Artysta",
|
||||
"Album": "Album",
|
||||
"Connect": "Powiadomienia",
|
||||
"Episode": "odcinek",
|
||||
"Notifications": "Powiadomienia",
|
||||
@@ -423,10 +423,389 @@
|
||||
"RestartReloadNote": "Uwaga: {appName} automatycznie uruchomi się ponownie i przeładuje interfejs użytkownika podczas procesu przywracania.",
|
||||
"UpdateAppDirectlyLoadError": "Nie można bezpośrednio zaktualizować {appName},",
|
||||
"AptUpdater": "Użyj apt, aby zainstalować aktualizację",
|
||||
"DockerUpdater": "zaktualizuj kontener Dockera, aby otrzymać aktualizację",
|
||||
"DockerUpdater": "Zaktualizuj kontener Dockera, aby otrzymać aktualizację",
|
||||
"InstallLatest": "Zainstaluj najnowsze",
|
||||
"Clone": "Zamknij",
|
||||
"Clone": "Sklonuj",
|
||||
"Stats": "Status",
|
||||
"CurrentlyInstalled": "Aktualnie zainstalowane",
|
||||
"Mixed": "Naprawiony"
|
||||
"Mixed": "Naprawiony",
|
||||
"IndexerRss": "RSS indeksera",
|
||||
"AuthenticationRequiredPasswordConfirmationHelpTextWarning": "Potwierdź nowe hasło",
|
||||
"AuthenticationRequiredUsernameHelpTextWarning": "Wprowadź nową nazwę użytkownika",
|
||||
"AverageQueries": "Średnie wyszukiwania",
|
||||
"BasicSearch": "Podstawowe wyszukiwanie",
|
||||
"BookSearchTypes": "Typy wyszukiwania książek",
|
||||
"DeleteAppProfile": "Usuń profil aplikacji",
|
||||
"DeleteApplication": "Usuń aplikację",
|
||||
"DeleteSelectedIndexers": "Usuń wybrane indeksery",
|
||||
"DownloadClientRTorrentSettingsUrlPath": "Ścieżka URL",
|
||||
"HistoryCleanup": "Czyszczenie historii",
|
||||
"NoIndexerCategories": "Nie znaleziono kategorii dla tego indeksera",
|
||||
"Open": "Otwarty",
|
||||
"PrioritySettings": "Priorytet: {priority}",
|
||||
"SemiPrivate": "Półprywatny",
|
||||
"MinimumSeeders": "Minimalni seederzy",
|
||||
"IndexerVipExpiredHealthCheckMessage": "Przywileje indeksera VIP się wyczerpały: {indexerNames}",
|
||||
"IndexerVipExpiringHealthCheckMessage": "Przywileje indeksera VIP wkrótce się wyczerpią: {indexerNames}",
|
||||
"BlackholeFolderHelpText": "Folder, w którym {appName} będzie przechowywać plik {extension}",
|
||||
"DefaultCategory": "Domyślna kategoria",
|
||||
"DefaultNameCopiedProfile": "{name} - Kopia",
|
||||
"DownloadClientDelugeSettingsUrlBaseHelpText": "Dodaj prefiks do url json deluge, sprawdź {url}",
|
||||
"Destination": "Lokalizacja docelowa",
|
||||
"DownloadClientFreeboxSettingsAppTokenHelpText": "Token aplikacji otrzymany podczas tworzenia dostępu do Freebox API ('app_token')",
|
||||
"DownloadClientPneumaticSettingsStrmFolder": "Folder Strm",
|
||||
"DownloadClientSettingsAddPaused": "Dodaj zapauzowany",
|
||||
"DownloadClientSettingsDestinationHelpText": "Ręczne precyzowanie lokalizacji docelowej pobierań, zostaw puste aby korzystać z domyślnej",
|
||||
"DownloadClientSettingsInitialStateHelpText": "Stan początkowy torrentów dodanych do {clientName}",
|
||||
"DownloadClientSettingsPriorityItemHelpText": "Priorytet podczas zgarniania pozycji",
|
||||
"IndexerBeyondHDSettingsLimitedOnly": "Tylko limitowany",
|
||||
"IndexerPassThePopcornSettingsFreeleechOnlyHelpText": "Szukaj tylko premier freeleech",
|
||||
"IndexerBeyondHDSettingsFreeleechOnlyHelpText": "Szukaj tylko premier freeleech",
|
||||
"IndexerSettingsGrabLimit": "Limit zgarnięć",
|
||||
"IndexerSettingsQueryLimit": "Limit wyszukiwania",
|
||||
"IndexerSettingsPasskey": "Sekretny klucz",
|
||||
"TotalHostQueries": "Całkowite wyszukiwania hosta",
|
||||
"Query": "Wyszukiwanie",
|
||||
"TotalIndexerQueries": "Całkowite wyszukiwania indeksera",
|
||||
"UnableToLoadAppProfiles": "Nie można załadować profili aplikacji",
|
||||
"ActiveApps": "Aktywne aplikacje",
|
||||
"ActiveIndexers": "Aktywne indeksery",
|
||||
"AdvancedSettingsShownClickToHide": "Zaawansowane ustawienia widoczne, kliknij aby ukryć",
|
||||
"AppSettingsSummary": "Aplikacje i ustawienia do konfiguracji jak {appName} współpracuje z Twoimi programami PVR",
|
||||
"Author": "Autor",
|
||||
"ApplicationsLoadError": "Nie można załadować listy aplikacji",
|
||||
"DownloadClientAriaSettingsDirectoryHelpText": "Opcjonalna lokalizacja dla pobrań, pozostaw puste jeżeli chcesz używać domyślnej lokalizacji Aria2",
|
||||
"EditSyncProfile": "Edytuj profil synchronizacji",
|
||||
"ManageClients": "Zarządzaj klientami",
|
||||
"PreferMagnetUrl": "Preferuj linki magnet",
|
||||
"InstallMajorVersionUpdate": "Instaluj aktualizację",
|
||||
"VipExpiration": "Wygaśnięcie VIPa",
|
||||
"days": "dni",
|
||||
"QueryOptions": "Opcje wyszukiwania",
|
||||
"DownloadClientFloodSettingsUrlBaseHelpText": "Dodaj prefiks do Flood API, taki jak {url}",
|
||||
"DownloadClientQbittorrentSettingsFirstAndLastFirstHelpText": "Pobierz pierwszy i ostatni fragment pierwszymi (qBittorrent 4.1.0+)",
|
||||
"DownloadClientQbittorrentSettingsUseSslHelpText": "Używaj bezpiecznego połączenia. Sprawdź Opcje -> Interfejs webowy -> 'Używaj HTTPS zamiast HTTP' w qBittorrent.",
|
||||
"DownloadClientRTorrentSettingsAddStopped": "Dodaj zatrzymany",
|
||||
"IndexerNzbIndexSettingsApiKeyHelpText": "Klucz API strony",
|
||||
"Redirected": "Przekierowany",
|
||||
"SeedTime": "Czas seedowania",
|
||||
"FailedToFetchSettings": "Nie udało się uzyskać ustawień",
|
||||
"IndexerBeyondHDSettingsSearchTypes": "Rodzaje wyszukiwania",
|
||||
"IndexerBeyondHDSettingsApiKeyHelpText": "Klucz API ze strony (do znalezienia w Moje Bezpieczeństwo => Klucz API)",
|
||||
"IndexerSettingsAdditionalParameters": "Dodatkowe parametry",
|
||||
"IndexerRedactedSettingsApiKeyHelpText": "Klucz API ze strony (do znalezienia w Ustawienia => Ustawienia Dostępu)",
|
||||
"IndexerSettingsGrabLimitHelpText": "Maksymalna liczba zgarnięć zdefiniowana przez odpowiadającą jednostkę, którą {appName} dopuści do strony",
|
||||
"Logout": "Wyloguj się",
|
||||
"LogFilesLocation": "Logi znajdują się w: {location}",
|
||||
"InstallMajorVersionUpdateMessageLink": "Więcej informacji: [{domain}]({url}).",
|
||||
"LabelIsRequired": "Etykieta jest wymagana",
|
||||
"NotificationsEmailSettingsUseEncryptionHelpText": "Czy: preferować korzystanie z szyfrowania jeśli jest skonfigurowane na serwerze; zawsze używać szyfrowanie przez SSL (tylko port 465) lub StartTLS (każdy inny port); nigdy nie korzystać z szyfrowania",
|
||||
"OverrideGrabModalTitle": "Nadpisz i zgarnij - {title}",
|
||||
"OverrideAndAddToDownloadClient": "Nadpisz i dodaj do klienta pobierania",
|
||||
"Proxies": "Proxy",
|
||||
"RawSearchSupported": "Wspieranie surowych wyszukiwań",
|
||||
"TorznabUrl": "Link Torznab",
|
||||
"TotalGrabs": "Całkowite zgarnięcia",
|
||||
"TorrentBlackholeTorrentFolder": "Folder torrenta",
|
||||
"TorrentBlackholeSaveMagnetFilesExtension": "Zapisz rozszerzenie plików magnet",
|
||||
"UpdaterLogFiles": "Pliki logów aktualizatora",
|
||||
"WouldYouLikeToRestoreBackup": "Czy chcesz przywrócić kopię zapasową '{name}'?",
|
||||
"Default": "Domyślne",
|
||||
"ManualGrab": "Ręczne zgarnięcie",
|
||||
"IndexerNoDefinitionCheckHealthCheckMessage": "Indeksery są niezdefiniowane i nie będą działać: {indexerNames}. Usuń i/lub dodaj je ponownie do {appName}.",
|
||||
"AppsMinimumSeeders": "Minimum seederów dla aplikacji",
|
||||
"HistoryDetails": "Szczegóły historii",
|
||||
"InfoUrl": "Info URL",
|
||||
"InvalidUILanguage": "Twój interfejs użytkownika ma ustawiony nieprawidłowy język, popraw go i zapisz swoje ustawienia",
|
||||
"LastFailure": "Ostatni błąd",
|
||||
"AverageGrabs": "Średnie zgarnięcia",
|
||||
"IndexerSettingsFreeleechOnly": "Tylko freeleech",
|
||||
"UseSsl": "Używaj SSL",
|
||||
"DeleteSelectedApplications": "Usuń wybrane aplikacje",
|
||||
"DownloadClientDownloadStationSettingsDirectoryHelpText": "Opcjonalny udostępniony folder dla pobrań, pozostaw puste aby korzystać z domyślnej lokalizacji stacji pobierań",
|
||||
"DownloadClientFloodSettingsAdditionalTags": "Dodatkowe tagi",
|
||||
"DownloadClientFloodSettingsAdditionalTagsHelpText": "Dodaje atrybuty mediów jako tagi. Podpowiedzi są przykładami.",
|
||||
"DownloadClientFreeboxSettingsApiUrl": "Link API",
|
||||
"DownloadClientFreeboxSettingsAppIdHelpText": "ID aplikacji przypisane podczas tworzenia dostępu do Freebox API ('app_id')",
|
||||
"DownloadClientFreeboxSettingsAppToken": "Token aplikacji",
|
||||
"DownloadClientPneumaticSettingsNzbFolderHelpText": "Ten folder musi być dostępny z XBMC",
|
||||
"DownloadClientPneumaticSettingsStrmFolderHelpText": "Pliki .strm w tym folderze będą importowane przez drone",
|
||||
"DownloadClientQbittorrentSettingsContentLayout": "Układ zawartości",
|
||||
"DownloadClientRTorrentSettingsDirectoryHelpText": "Opcjonalna lokalizacja do umieszczenia pobierań, pozostaw puste aby używać domyślnej lokalizacji rTorrenta",
|
||||
"DownloadClientSettingsUseSslHelpText": "Użyj bezpiecznego połączenia podczas łączenia się z {clientName}",
|
||||
"DownloadClientSettingsUrlBaseHelpText": "Dodaje prefiks to linka {clientName}, np. {url}",
|
||||
"FullSync": "Pełna synchronizacja",
|
||||
"IndexerProxies": "Proxy indeksera",
|
||||
"ManageApplications": "Zarządzaj aplikacjami",
|
||||
"IndexerSettingsApiUser": "Użytkonik API",
|
||||
"IndexerSettingsCookieHelpText": "Ciasteczko na stronie",
|
||||
"IndexerSettingsRssKey": "Klucz RSS",
|
||||
"IndexerSettingsLimitsUnit": "Jednostka limitów",
|
||||
"IndexerNewznabSettingsAdditionalParametersHelpText": "Dodatkowe parametry Newznab",
|
||||
"IndexerPassThePopcornSettingsApiKeyHelpText": "Klucz API strony",
|
||||
"IndexerSettingsPackSeedTime": "Czas seedowania paczki",
|
||||
"IndexerTorrentSyndikatSettingsApiKeyHelpText": "Klucz API strony",
|
||||
"IndexerHistoryLoadError": "Błąd podczas ładowania historii indekserów",
|
||||
"IndexerMTeamTpSettingsFreeleechOnlyHelpText": "Szukaj tylko premier freeleech",
|
||||
"IndexerGazelleGamesSettingsSearchGroupNamesHelpText": "Szukaj premier wg nazw grup",
|
||||
"IndexerGazelleGamesSettingsApiKeyHelpTextWarning": "Musisz mieć pozwolenia użytkownika i torrentów",
|
||||
"IndexerHDBitsSettingsOriginsHelpText": "Jeżeli nie sprecyzowano, wszystkie opcje są wykorzystywane.",
|
||||
"IndexerIPTorrentsSettingsCookieUserAgentHelpText": "User-Agent powiązany z ciasteczkiem z przeglądarki",
|
||||
"IndexerPassThePopcornSettingsApiUserHelpText": "Te ustawienia znajdują się w ustawieniach bezpieczeństwa PassThePopcorn (Edit Profile => Security).",
|
||||
"IndexerBeyondHDSettingsSearchTypesHelpText": "Wybierz rodzaje premier, które Cię interesują. Jeżeli żadne nie są wybrane, wszystkie opcje będą użyte.",
|
||||
"IndexerSettingsPackSeedTimeIndexerHelpText": "Czas przez jaki paczka (sezon lub dyskografia) powinna być seedowana przed zatrzymaniem, puste = wartość domyślna aplikacji",
|
||||
"InstallMajorVersionUpdateMessage": "Ta aktualizacja zainstaluje nową dużą wersję i może nie być kompatybilna z Twoim systemem. Jesteś pewien, że chcesz ją kontynuować?",
|
||||
"NoHistoryFound": "Nie znaleziono historii",
|
||||
"NoApplicationsFound": "Nie znaleziono aplikacji",
|
||||
"StopSelecting": "Przestań wybierać",
|
||||
"SeedRatio": "Stosunek seedów",
|
||||
"SettingsIndexerLogging": "Rozszerzone logi indeksera",
|
||||
"SyncAppIndexers": "Synchronizuj indeksery aplikacji",
|
||||
"SettingsLogSql": "SQL logów",
|
||||
"PackSeedTime": "Czas seedowania paczki",
|
||||
"PackageVersionInfo": "{packageVersion} od {packageAuthor}",
|
||||
"SettingsIndexerLoggingHelpText": "Zapisuj dodatkowe logi danych indekserów zawierające odpowiedzi",
|
||||
"RedirectHelpText": "Przekieruj przychodzące żądania pobierania dla indeksera i przekaż zgarnięcie bezpośrednio zamiast proxowania żądania przez {appName}",
|
||||
"ProwlarrDownloadClientsAlert": "Jeżeli planujesz wyszukiwać bezpośrednio w {appName}, potrzebujesz dodać klientów pobierania. W innym przypadku nie musisz tego robić. Dla wyszukiwań w Twoich aplikacjach, klienci pobierania tam skonfigurowani będą użytkowani.",
|
||||
"TestAllApps": "Testuj wszystkie aplikacje",
|
||||
"TorrentBlackholeSaveMagnetFilesExtensionHelpText": "Jakiego rozszerzenia używać do linków magnet, domyślnie '.magnet'",
|
||||
"TorrentBlackholeSaveMagnetFilesHelpText": "Zapisz link magnet jeśli plik .torrent nie jest dostępny (przydatne tylko, jeżeli klient pobierania oferuje zapisywanie magnetów jako pliku)",
|
||||
"SyncLevelFull": "Pełna synchronizacja: będzie utrzymwać indeksery tej aplikacji w pełni zsynchronizowane. Zmiany na indekserach w {appName} są potem synchronizowane do tej aplikacji. Każda zmiana dokonywana zdalnie w tej aplikacji będzie nadpisana przez {appName} przy następnej synchronizacji.",
|
||||
"LogSizeLimit": "Limit rozmiaru logów",
|
||||
"DownloadClientSettingsDefaultCategorySubFolderHelpText": "Domyślna kategoria zapasowa jeżeli nie ma zmapowanej kategorii dla premiery. Dodawanie kategorii wyjątkowej dla {appName} pomaga uniknąć konfliktów z niezwiązanymi pobraniami spoza {appName}. Korzystanie z kategorii jest opcjonalne, ale mocno rekomendowane.",
|
||||
"AverageResponseTimesMs": "Średni czas reakcji indeksera (ms)",
|
||||
"Book": "Książka",
|
||||
"EnableRssHelpText": "Włącz",
|
||||
"FoundCountReleases": "Znaleziono {itemCount} premier",
|
||||
"AudioSearch": "Wyszukiwanie audio",
|
||||
"AreYouSureYouWantToDeleteCategory": "Czy na pewno chcesz usunąć zmapowaną kategorię?",
|
||||
"Category": "Kategoria",
|
||||
"ClearHistory": "Wyczyść historię",
|
||||
"Apps": "Aplikacje",
|
||||
"AddRemoveOnly": "Tylko dodawanie i usuwanie",
|
||||
"IndexerProxy": "Proxy indeksera",
|
||||
"IndexerQuery": "Wyszukiwanie indekserów",
|
||||
"Redirect": "Przekieruj",
|
||||
"InitialFailure": "Początkowy błąd",
|
||||
"AddNewIndexer": "Dodaj nowy indekser",
|
||||
"AddToDownloadClient": "Dodaj premierę do klienta pobrań",
|
||||
"Public": "Publiczny",
|
||||
"ElapsedTime": "Upłynęło czasu",
|
||||
"EnabledRedirected": "Włączony, Przekierowany",
|
||||
"SyncLevel": "Poziom synchronizacji",
|
||||
"DeleteIndexerProxy": "Usuń proxy indeksera",
|
||||
"AdvancedSettingsHiddenClickToShow": "Zaawansowane ustawienia ukryte, kliknij aby pokazać",
|
||||
"CountIndexersSelected": "Wybrane indeksery: {count}",
|
||||
"DeleteSelectedIndexer": "Usuń wybrany indekser",
|
||||
"FilterPlaceHolder": "Szukaj indekserów",
|
||||
"ManageDownloadClients": "Zarządzaj klientami pobierania",
|
||||
"NewznabUrl": "Link Newznab",
|
||||
"QueryType": "Rodzaj wyszukiwania",
|
||||
"SearchTypes": "Rodzaje wyszukiwania",
|
||||
"SeedRatioHelpText": "Stosunek jaki torrent powinien osiągnąć przed zatrzymaniem, puste to wartość domyślna aplikacji",
|
||||
"SelectedCountOfCountReleases": "Wybrano {selectedCount} z {itemCount} premier",
|
||||
"IndexerSite": "Strona indeksera",
|
||||
"EnableIndexer": "Włącz indekser",
|
||||
"IndexerFailureRate": "Częstotliwość awarii indeksera",
|
||||
"MovieSearchTypes": "Rodzaje wyszukiwań filmów",
|
||||
"MovieSearch": "Wyszukiwanie filmów",
|
||||
"OnHealthRestored": "Na przywrócone zdrowie",
|
||||
"RssFeed": "Kanał RSS",
|
||||
"SettingsConsoleLogLevel": "Poziom logów konsoli",
|
||||
"AddIndexerProxy": "Dodaj proxy indeksera",
|
||||
"GrabTitle": "Zgarnij tytuł",
|
||||
"GoToApplication": "Idź do aplikacji",
|
||||
"Implementation": "Wdrożenie",
|
||||
"NoDownloadClientsFound": "Nie znaleziono klientów pobierania",
|
||||
"SearchAllIndexers": "Przeszukaj wszystkie indeksery",
|
||||
"MusicSearchTypes": "Rodzaje wyszukiwań muzyki",
|
||||
"SettingsFilterSentryEventsHelpText": "Odfiltrowuj znane zdarzenia błędów użytkownika przed wysłaniem jako danych analitycznych",
|
||||
"IndexerCategories": "Kategorie indeksera",
|
||||
"SettingsLogRotate": "Rotacja logów",
|
||||
"UISettingsSummary": "Data, język i opcje dla osób z zaburzeniami widzenia",
|
||||
"Website": "Strona internetowa",
|
||||
"AreYouSureYouWantToDeleteIndexer": "Czy na pewno chcesz usunąć '{name}' z {appName}?",
|
||||
"AuthQueries": "Kwerendy autentykacji",
|
||||
"RssQueries": "Wyszukiwania RSS",
|
||||
"SearchQueries": "Szukaj w wyszukiwaniach",
|
||||
"NotificationsTelegramSettingsIncludeAppName": "Umieść {appName} w tytule",
|
||||
"SettingsSqlLoggingHelpText": "Zapisuj logi wszystkich kwerend SQL z {appName}",
|
||||
"DownloadClientsSettingsSummary": "Konfiguracja klientów pobierania dla integracji z interfejsem wyszukiwania {appName}",
|
||||
"IndexerInfo": "Informacje o indekserze",
|
||||
"IndexerObsoleteCheckMessage": "Indeksery są przestarzałe albo zostały zaktualizowane: {0}. Usuń lub dodaj je ponownie do {appName}",
|
||||
"IndexerAlreadySetup": "Co najmniej jedna instancja indeksera już działa",
|
||||
"IndexerDisabled": "Indekser wyłączony",
|
||||
"NoIndexersFound": "Nie znaleziono indekserów",
|
||||
"TotalHostGrabs": "Całkowite zgarnięcia hosta",
|
||||
"ProwlarrDownloadClientsInAppOnlyAlert": "Klienci pobierania są tylko dla wyszukiwań wewnątrz {appName} i nie synchronizują się z aplikacjami. Nie ma planów, aby dodać taką funkcjonalność.",
|
||||
"QueryResults": "Wyniki wyszukiwania",
|
||||
"SecretToken": "Sekretny token",
|
||||
"Url": "URL",
|
||||
"AddSyncProfile": "Dodaj profil synchronizacji",
|
||||
"DevelopmentSettings": "Ustawienia programistyczne",
|
||||
"TVSearchTypes": "Rodzaje wyszukiwań seriali",
|
||||
"NotificationsEmailSettingsUseEncryption": "Używaj szyfrowania",
|
||||
"OnGrabHelpText": "Zgarnij na premierę",
|
||||
"SearchCapabilities": "Możliwości wyszukiwania",
|
||||
"SettingsLogRotateHelpText": "Maksymalna liczba plików logów do zachowania w folderze",
|
||||
"SearchCountIndexers": "Przeszukaj {count} indekserów",
|
||||
"SyncLevelAddRemove": "Tylko dodawanie i usuwanie: kiedy indeksery są dodawane lub usuwane z {appName}, zaktualizuje ona tą zdalną aplikację.",
|
||||
"TotalUserAgentGrabs": "Całkowite zgarnięcia User Agenta",
|
||||
"SyncProfile": "Synchronizuj profil",
|
||||
"IndexerDownloadClientHealthCheckMessage": "Indeksery z nieprawidłowymi klientami pobierania: {indexerNames}.",
|
||||
"AuthenticationRequiredPasswordHelpTextWarning": "Wprowadź nowe hasło",
|
||||
"ApplicationTagsHelpText": "Synchronizuj indeksery mające jeden lub więcej pasujących tagów do tej aplikacji. Jeżeli nie ma tu wypisanych tagów, wtedy żaden indekser nie będzie blokowany przed synchronizacją.",
|
||||
"External": "Zewnętrzny",
|
||||
"DownloadClientFreeboxSettingsApiUrlHelpText": "Zdefiniuj bazowy link API Freebox z wersją API, np. '{url}, domyślna wartość to '{defaultApiUrl}'",
|
||||
"DownloadClientFreeboxSettingsAppId": "ID aplikacji",
|
||||
"DownloadClientFreeboxSettingsPortHelpText": "Port używany przez interfejs Freeboxa, domyślnie '{port}'",
|
||||
"DownloadClientNzbgetSettingsAddPausedHelpText": "Ta opcja wymaga NzbGet w wersji minimum 16.0",
|
||||
"DownloadClientPneumaticSettingsNzbFolder": "Folder Nzb",
|
||||
"DownloadClientQbittorrentSettingsSequentialOrder": "Porządek sekwencyjny",
|
||||
"DownloadClientQbittorrentSettingsSequentialOrderHelpText": "Pobieraj w porządku sekwencyjnym (qBittorrent 4.1.0+)",
|
||||
"DownloadClientTransmissionSettingsUrlBaseHelpText": "Dodaje prefiks przed url RPC {clientName}, np. {url} domyślnie zmienia się na '{defaultUrl}'",
|
||||
"SettingsFilterSentryEvents": "Filtruj zdarzenia analityczne",
|
||||
"IncludeManualGrabsHelpText": "Dołącz ręczne zgarnięcia z {appName}",
|
||||
"IndexerBeyondHDSettingsRewindOnly": "Tylko przewinięcia",
|
||||
"IndexerFileListSettingsUsernameHelpText": "Nazwa użytkownika na stronie",
|
||||
"IndexerGazelleGamesSettingsSearchGroupNames": "Szukaj nazw grup",
|
||||
"IndexerIPTorrentsSettingsFreeleechOnlyHelpText": "Szukaj tylko premier freeleech",
|
||||
"TotalQueries": "Całkowite wyszukiwania",
|
||||
"IndexerNewznabSettingsVipExpirationHelpText": "Wprowadź datę (RRRR-MM-DD) wygaśnięcia VIPa lub puste, {appName} poinformuje Cię tydzień przed jego wyczerpaniem",
|
||||
"Menu": "Menu",
|
||||
"MassEditor": "Masowe edytowanie",
|
||||
"IndexerStatus": "Status indeksera",
|
||||
"NoIndexerHistory": "Nie znaleziono historii dla tego indeksera",
|
||||
"NoSearchResultsFound": "Brak wyników wyszukiwania, spróbuj wykonać nowe wyszukiwanie poniżej.",
|
||||
"PackSeedTimeHelpText": "Czas przez jaki paczka (sezon lub dyskografia) powinna być seedowana przed zatrzymaniem, puste = wartość domyślna aplikacji",
|
||||
"Parameters": "Parametry",
|
||||
"SelectIndexers": "Wybierz indeksery",
|
||||
"TotalUserAgentQueries": "Całkowite wyszukiwania User Agenta",
|
||||
"AddApplication": "Dodaj aplikację",
|
||||
"Privacy": "Prywatność",
|
||||
"Private": "Prywatny",
|
||||
"AddedToDownloadClient": "Premiera dodana do klienta",
|
||||
"SyncProfiles": "Synchronizuj profile",
|
||||
"DisabledUntil": "Wyłączone do",
|
||||
"TorrentBlackholeSaveMagnetFiles": "Zapisz pliki magnet",
|
||||
"UnableToLoadDevelopmentSettings": "Nie można załadować ustawień programistycznych",
|
||||
"ApplicationSettingsSyncRejectBlocklistedTorrentHashes": "Odrzucaj synchronizację zablokowanych hashów torrenta podczas zgarniania",
|
||||
"Auth": "Autentykacja",
|
||||
"BookSearch": "Wyszukiwanie książek",
|
||||
"ClearHistoryMessageText": "Czy na pewno chcesz wyczyścić całą historię {appName}?",
|
||||
"DownloadClientFreeboxSettingsHostHelpText": "Nazwa lub IP hosta Freeboxa, domyślnie '{url}' (zadziała tylko w tej samej sieci)",
|
||||
"EditSelectedIndexers": "Edytuj wybrane indeksery",
|
||||
"IndexerAlphaRatioSettingsFreeleechOnlyHelpText": "Szukaj tylko premier freeleech",
|
||||
"IndexerDetails": "Szczegóły indeksera",
|
||||
"IndexerGazelleGamesSettingsApiKeyHelpText": "Klucz API ze strony (do znalezienia w Ustawienia => Ustawienia Dostępu)",
|
||||
"OnHealthRestoredHelpText": "Na przywrócone zdrowie",
|
||||
"TvSearch": "Wyszukiwanie seriali",
|
||||
"AuthenticationRequiredHelpText": "Wymagana jest zmiana, która żąda autoryzacji. Nie zatwierdzaj jej jeśli nie jesteś świadomy ryzyka.",
|
||||
"AppProfileInUse": "Używany profil aplikacji",
|
||||
"ProwlarrSupportsAnyDownloadClient": "{appName} wspiera każdy z poniższych klientów pobierania.",
|
||||
"AddCategory": "Dodaj kategorię",
|
||||
"ClickToChangeQueryOptions": "Kliknij aby zmienić opcje wyszukiwania",
|
||||
"CountDownloadClientsSelected": "Wybrani klienci pobierania: {count}",
|
||||
"CountIndexersAvailable": "Dostępne indeksery: {count}",
|
||||
"Description": "Opis",
|
||||
"Donate": "Wesprzyj finansowo",
|
||||
"DownloadClientCategory": "Kategoria klienta pobierania",
|
||||
"EditCategory": "Edytuj kategorię",
|
||||
"EditSelectedDownloadClients": "Edytuj wybranych klientów pobierania",
|
||||
"DownloadClientTransmissionSettingsDirectoryHelpText": "Opcjonalna lokalizacja pobierań, zostaw puste aby użyć domyślnej lokalizacji Transmission",
|
||||
"IndexerBeyondHDSettingsRefundOnly": "Tylko zwroty",
|
||||
"IndexerBeyondHDSettingsRssKeyHelpText": "Klucz RSS ze strony (do znalezienia w Moje Bezpieczeństwo => Klucz RSS)",
|
||||
"IndexerBeyondHDSettingsRewindOnlyHelpText": "Szukaj tylko przewinięć",
|
||||
"IndexerFileListSettingsPasskeyHelpText": "Sekretny klucz strony (alfanumeryczny ciąg w URL trackera w kliencie pobierań)",
|
||||
"IndexerDownloadClientHelpText": "Sprecyzuj jaki klient pobierania jest używany do zgarnięć wewnątrz {appName} z tego indeksera",
|
||||
"IndexerHDBitsSettingsCodecsHelpText": "Jeżeli niesprecyzowano wszystkie opcje są wykorzystywane.",
|
||||
"IndexerHDBitsSettingsUseFilenamesHelpText": "Zaznacz tą opcję jeżeli chcesz używać nazwy plików torrenta jako nazwy premier",
|
||||
"IndexerHDBitsSettingsUsernameHelpText": "Nazwa użytkownika na stronie",
|
||||
"IndexerAlphaRatioSettingsExcludeSceneHelpText": "Wyklucz premiery SCENE z wyników",
|
||||
"IndexerIPTorrentsSettingsCookieUserAgent": "User-Agent ciasteczka",
|
||||
"IndexerBeyondHDSettingsRefundOnlyHelpText": "Szukaj tylko zwrotów",
|
||||
"IndexerAlphaRatioSettingsExcludeScene": "Wyklucz SCENE",
|
||||
"IndexerHDBitsSettingsMediumsHelpText": "Jeżeli nie sprecyzowano, wszystkie opcje są wykorzystywane.",
|
||||
"IndexerHDBitsSettingsOrigins": "Pochodzenie",
|
||||
"IndexerSettingsApiPath": "Ścieżka API",
|
||||
"IndexerSettingsSeedTime": "Czas seedowania",
|
||||
"IndexerSettingsSummary": "Skonfiguruj różne ustawienia globalne indeksera włączając proxy.",
|
||||
"IndexerTagsHelpText": "Użyj tagów to sprecyzowania proxy indeksera lub z jakimi aplikacjami indekser się synchronizuje.",
|
||||
"IndexerSettingsPreferMagnetUrl": "Preferuj linki magnet",
|
||||
"IndexerSettingsPreferMagnetUrlHelpText": "Kiedy włączone, ten indekser będzie preferował wykorzystanie linków magnet dla zgarnięć, z bezpiecznikiem linków torrent",
|
||||
"IndexerSettingsVipExpiration": "Wygaśnięcie VIPa",
|
||||
"IndexerSettingsAppsMinimumSeedersHelpText": "Minimalna liczba seederów wymagana przez aplikacje, żeby indekser zgarnął premierę, puste oznacza domyślną wartość profilu synchronizacji",
|
||||
"IndexerSettingsApiPathHelpText": "Ścieżka do API, zwykle {url}",
|
||||
"IndexerSettingsBaseUrlHelpText": "Wybierz jaki podstawowy URL {appName} będzie wykorzystywać dla żądań do strony",
|
||||
"IndexerPassThePopcornSettingsGoldenPopcornOnlyHelpText": "Szukaj tylko premier Złotego Popcornu",
|
||||
"IndexerPassThePopcornSettingsGoldenPopcornOnly": "Tylko Złoty Popcorn",
|
||||
"IndexerSettingsCookie": "Ciasteczko",
|
||||
"IndexerSettingsBaseUrl": "Podstawowy URL",
|
||||
"IndexerSettingsLimitsUnitHelpText": "Jednostka czasu do obliczania limitów na indekser",
|
||||
"PasswordConfirmation": "Potwierdzenie hasła",
|
||||
"IndexerSettingsSeedRatio": "Stosunek seedów",
|
||||
"IndexerAvistazSettingsUsernameHelpText": "Nazwa użytkownika",
|
||||
"IndexerOrpheusSettingsApiKeyHelpText": "Klucz API ze strony (do znalezienia w Ustawienia => Ustawienia Dostępu)",
|
||||
"IndexerNewznabSettingsApiKeyHelpText": "Klucz API strony",
|
||||
"IndexerAvistazSettingsPasswordHelpText": "Hasło na stronie",
|
||||
"IndexerAvistazSettingsPidHelpText": "PID ze strony Moje Konto lub Mój Profil",
|
||||
"IndexerAvistazSettingsFreeleechOnlyHelpText": "Szukaj tylko premier freeleech",
|
||||
"IndexerAvistazSettingsUsernameHelpTextWarning": "Tylko ranga członka lub wyższa może używać API z tym indekserem",
|
||||
"SearchType": "Rodzaj wyszukiwania",
|
||||
"ProxyValidationUnableToConnect": "Nie można połączyć się z proxy: {exceptionMessage}. Sprawdź logi tego błędu by poznać więcej szczegółów",
|
||||
"UsenetBlackholeNzbFolder": "Folder Nzb",
|
||||
"XmlRpcPath": "Ścieżka RPC XML",
|
||||
"AddDownloadClientToProwlarr": "Dodanie klienta pobierania pozwoli {appName} wysyłać premiery bezpośrednio z interfejsu użytkownika podczas ręcznego wyszukiwania.",
|
||||
"DownloadClientQbittorrentSettingsFirstAndLastFirst": "Pierwszy i ostatni pierwszym",
|
||||
"FailedToFetchUpdates": "Nie udało się uzyskać aktualizacji",
|
||||
"SeedTimeHelpText": "Jak długo torrent powinien być seedowany przed zatrzymaniem, puste to wartość domyślna aplikacji",
|
||||
"TheLogLevelDefault": "Wartość domyślna poziomu logów to 'Debug' i może być zmieniona w [Ogólnych ustawieniach](/settings/general)",
|
||||
"AppProfileSelectHelpText": "Profile aplikacji są wykorzystywane do kontroli RSS oraz ustawień automatycznego i interaktywnego wyszukiwania podczas synchronizacji",
|
||||
"IndexerMTeamTpSettingsApiKeyHelpText": "Klucz API ze strony (do znalezienia w Panel kontrolny użytkownika => Bezpieczeństwo => Laboratorium)",
|
||||
"IndexerNebulanceSettingsApiKeyHelpText": "Klucz API z Ustawień użytkownika => Kluczy API. Klucz musi mieć pozwolenia listowania i pobierania",
|
||||
"DownloadClientRTorrentSettingsAddStoppedHelpText": "Włączenie doda torrenty i magnety do rTorrenta w zatrzymanym stanie. To może uszkodzić pliki magnet.",
|
||||
"DownloadClientRTorrentSettingsUrlPathHelpText": "Ścieżka do punktu końcowego XMLRPC, sprawdź {url}. Zwykle jest to RPC2 lub [ścieżka do ruTorrenta]{url2} podczas korzystania z ruTorrenta.",
|
||||
"IndexerAuth": "Autoryzacja indeksera",
|
||||
"ApplicationSettingsSyncRejectBlocklistedTorrentHashesHelpText": "Jeżeli torrent jest zablokowany przez hasha może zostać nieprawidłowo odrzucony podczas RSS/Szukania przez niektóre indeksery, włączenie tej opcji pozwoli na jego odrzucenie po zgarnięciu, ale przed wysłaniem do klienta.",
|
||||
"ApplicationTagsHelpTextWarning": "Tagi powinny być używane ostrożnie, ponieważ mogą powodować niezamierzone efekty. Aplikacja z tagiem będzie synchronizowała się tylko z indekserem posiadającym taki sam tag.",
|
||||
"IndexerId": "ID indeksera",
|
||||
"IndexerHDBitsSettingsUseFilenames": "Używaj nazw plików",
|
||||
"SelectDownloadClientModalTitle": "{modalTitle} - wybierz klienta pobierania",
|
||||
"ProwlarrSupportsAnyIndexer": "{appName} wspiera wiele indekserów oprócz każdego indeksera, który używa standardu Newznab/Torznab korzystając z 'Generycznego Newznaba' (dla usenetu) lub 'Generycznego Torznaba' (dla torrentów). Znajdź i wybierz swój indexer poniżej.",
|
||||
"DeleteClientCategory": "Usuń kategorię klienta pobierania",
|
||||
"IndexerName": "Nazwa indeksera",
|
||||
"RepeatSearch": "Powtórz wyszukiwanie",
|
||||
"AppsMinimumSeedersHelpText": "Minimum seederów wymaganych przez Aplikacje, żeby indekser zgarnął pobieranie, puste pole oznacza domyślną wartość z profilu synchronizacji",
|
||||
"ConnectSettingsSummary": "Powiadomienia i dodatkowe skrypty",
|
||||
"IndexerBeyondHDSettingsLimitedOnlyHelpText": "Szukaj tylko freeleech (limitowany UL)",
|
||||
"NotificationsTelegramSettingsIncludeAppNameHelpText": "Opcjonalny tytuł wiadomości poprzedzającej z {appName} by rozróżnić powiadomienia z różnych aplikacji",
|
||||
"DownloadClientFloodSettingsTagsHelpText": "Początkowe tagi pobierania. Aby zostać rozpoznanym, pobieranie musi mieć wszystkie początkowe tagi. To pozwala na uniknięcie konfliktów z niepowiązanymi pobraniami.",
|
||||
"Install": "Instaluj",
|
||||
"PreviouslyInstalled": "Poprzednio zainstalowany",
|
||||
"IndexerHDBitsSettingsFreeleechOnlyHelpText": "Pokaż tylko premiery freeleech",
|
||||
"UnableToLoadIndexerProxies": "Nie można załadować proxy indekserów",
|
||||
"IndexerHealthCheckNoIndexers": "Nie włączono indekserów, {appName} nie zwróci wyników wyszukiwania.",
|
||||
"IndexerTagsHelpTextWarning": "Tagi powinny być używane ostrożni, ponieważ mogą powodować nieplanowane efekty. Indekser z tagiem będzie synchronizował się tylko z aplikacjami z tym samym tagiem.",
|
||||
"AuthenticationRequiredWarning": "Aby zapobiec nieautoryzowanemu dostępowi zdalnemu, {appName} wymaga, aby autoryzacja była włączona. Możesz ją opcjonalnie wyłączyć dla lokalnych adresów.",
|
||||
"NotSupported": "Nie wspierany",
|
||||
"IndexerHDBitsSettingsPasskeyHelpText": "Tajny klucz ze szczegółów użytkownika",
|
||||
"IndexerFileListSettingsFreeleechOnlyHelpText": "Szukaj tylko premier freeleech",
|
||||
"IndexerGazelleGamesSettingsFreeleechOnlyHelpText": "Szukaj tylko premier freeleech",
|
||||
"LogSizeLimitHelpText": "Maksymalny rozmiar pliku logów (MB) przed archiwizacją. Domyślnie 1 MB.",
|
||||
"IndexerSettingsQueryLimitHelpText": "Maksymalna liczba wyszukiwań zdefiniowana przez odpowiadającą jednostkę, którą {appName} dopuści do strony",
|
||||
"PreferMagnetUrlHelpText": "Kiedy włączone, ten indekser będzie preferował wykorzystanie linków magnet dla zgarnięć, z bezpiecznikiem linków torrent",
|
||||
"DownloadClientQbittorrentSettingsInitialStateHelpText": "Początkowy stan torrentów dodanych do qBittorrent. Zwróć uwagę, że wymuszone torrenty nie podlegają ograniczeniom seedowania",
|
||||
"MappedCategories": "Zmapowane kategorie",
|
||||
"DownloadClientQbittorrentSettingsContentLayoutHelpText": "Czy używać skonfigurowanego układu zawartości qBittorrent, oryginalnego układu z torrenta czy zawsze tworzyć podfolder (qBittorrent 4.3.2+)",
|
||||
"IndexerSettingsAppsMinimumSeeders": "Minimum seederów aplikacji",
|
||||
"TotalIndexerSuccessfulGrabs": "Całkowite udane zgarnięcia indeksera",
|
||||
"MinimumSeedersHelpText": "Minimalni seederzy wymagani przez aplikację, żeby indekser zgarnął",
|
||||
"SearchIndexers": "Szukaj indekserów",
|
||||
"DownloadClientSettingsInitialState": "Podstawowy stan",
|
||||
"IndexerSettingsSeedRatioHelpText": "Stosunek jaki torrent powinien osiągnać przed zatrzymaniem, puste = wartość domyślna klienta pobierania. Stosunek powinien wynosić co najmniej 1.0 i podlegać zasadom indeksera",
|
||||
"IndexerSettingsSeedTimeHelpText": "Czas przez jaki torrent powinien być seedowany przed zatrzymaniem, zostaw puste by używać domyślnej wartości klienta pobierania",
|
||||
"DownloadClientUTorrentProviderMessage": "uTorrent ma długą historię z kopaczami krypto, malware i reklamami, bardzo mocno zachęcamy do korzystania z innego klienta.",
|
||||
"ThemeHelpText": "Zmień motyw interfejsu użytkownika aplikacji, 'Auto' motyw będzie używał motywu Twojego systemu operacyjnego aby ustawić tryb Jasny lub Ciemny. Zainspirowane przez {inspiredBy}.",
|
||||
"DownloadClientSettingsDefaultCategoryHelpText": "Domyślna kategoria zapasowa jeżeli nie ma zmapowanej kategorii dla premiery. Dodawanie kategorii wyjątkowej dla {appName} pomaga uniknąć konfliktów z niezwiązanymi pobraniami spoza {appName}. Korzystanie z kategorii jest opcjonalne, ale mocno rekomendowane.",
|
||||
"HealthMessagesInfoBox": "Więcej informacji o tych komunikatach sprawdzania żywotności znajdziesz klikając w ikonkę książki (link do wiki) na końcu wiersza lub sprawdzając [logi]({link}). Jeżeli masz problem z interpretacją tych komunikatów, możesz zgłosić się do naszego wsparcie, pod linkami poniżej."
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ namespace NzbDrone.Host
|
||||
b.ClearProviders();
|
||||
b.SetMinimumLevel(LogLevel.Trace);
|
||||
b.AddFilter("Microsoft.AspNetCore", LogLevel.Warning);
|
||||
b.AddFilter("Prowlarr.Http.Authentication", LogLevel.Information);
|
||||
b.AddFilter("Prowlarr.Http.Authentication.ApiKeyAuthenticationHandler", LogLevel.Information);
|
||||
b.AddFilter("Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager", LogLevel.Error);
|
||||
b.AddNLog();
|
||||
});
|
||||
|
||||
@@ -77,7 +77,7 @@ namespace Prowlarr.Http.Authentication
|
||||
|
||||
private void LogSuccess(HttpRequest context, string username)
|
||||
{
|
||||
_authLogger.Info("Auth-Success ip {0} username '{1}'", context.GetRemoteIP(), username);
|
||||
_authLogger.Debug("Auth-Success ip {0} username '{1}'", context.GetRemoteIP(), username);
|
||||
}
|
||||
|
||||
private void LogLogout(HttpRequest context, string username)
|
||||
|
||||
Reference in New Issue
Block a user