mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-24 17:24:30 -04:00
Compare commits
34 Commits
v0.1.0.124
...
lidarr-pul
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dddcb89c5b | ||
|
|
a1d4b3a0cf | ||
|
|
28f055e838 | ||
|
|
8d91fb81bd | ||
|
|
085913a852 | ||
|
|
8599fc4ee6 | ||
|
|
68f017cd84 | ||
|
|
f34171444e | ||
|
|
10760471e0 | ||
|
|
4ecabcd3d6 | ||
|
|
1af2e14474 | ||
|
|
fe836c56ee | ||
|
|
ae611cca74 | ||
|
|
c446f9835e | ||
|
|
2ff8bf204f | ||
|
|
5aa17e7a67 | ||
|
|
312cf2d364 | ||
|
|
a9852ded2f | ||
|
|
4286f546e9 | ||
|
|
482fe04161 | ||
|
|
cbdc2c51c4 | ||
|
|
f55fda9bac | ||
|
|
3841f7708e | ||
|
|
f2bfed0252 | ||
|
|
bc7e4ea622 | ||
|
|
38f16e6b85 | ||
|
|
af57024c63 | ||
|
|
54faa58a4d | ||
|
|
8ca35a709c | ||
|
|
72a0e38b36 | ||
|
|
b25f8449a2 | ||
|
|
cf0a15a308 | ||
|
|
a677098f0f | ||
|
|
a40cce9c71 |
@@ -19,10 +19,10 @@ indent_size = 4
|
||||
dotnet_sort_system_directives_first = true
|
||||
|
||||
# Avoid "this." and "Me." if not necessary
|
||||
dotnet_style_qualification_for_field = false:refactoring
|
||||
dotnet_style_qualification_for_property = false:refactoring
|
||||
dotnet_style_qualification_for_method = false:refactoring
|
||||
dotnet_style_qualification_for_event = false:refactoring
|
||||
dotnet_style_qualification_for_field = false:warning
|
||||
dotnet_style_qualification_for_property = false:warning
|
||||
dotnet_style_qualification_for_method = false:warning
|
||||
dotnet_style_qualification_for_event = false:warning
|
||||
|
||||
# Indentation preferences
|
||||
csharp_indent_block_contents = true
|
||||
@@ -32,10 +32,6 @@ csharp_indent_case_contents_when_block = true
|
||||
csharp_indent_switch_labels = true
|
||||
csharp_indent_labels = flush_left
|
||||
|
||||
dotnet_style_qualification_for_field = false:suggestion
|
||||
dotnet_style_qualification_for_property = false:suggestion
|
||||
dotnet_style_qualification_for_method = false:suggestion
|
||||
dotnet_style_qualification_for_event = false:suggestion
|
||||
dotnet_naming_style.instance_field_style.capitalization = camel_case
|
||||
dotnet_naming_style.instance_field_style.required_prefix = _
|
||||
|
||||
|
||||
@@ -9,13 +9,13 @@ variables:
|
||||
testsFolder: './_tests'
|
||||
yarnCacheFolder: $(Pipeline.Workspace)/.yarn
|
||||
nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages
|
||||
majorVersion: '0.1.0'
|
||||
majorVersion: '0.1.1'
|
||||
minorVersion: $[counter('minorVersion', 1)]
|
||||
readarrVersion: '$(majorVersion).$(minorVersion)'
|
||||
buildName: '$(Build.SourceBranchName).$(readarrVersion)'
|
||||
sentryOrg: 'servarr'
|
||||
sentryUrl: 'https://sentry.servarr.com'
|
||||
dotnetVersion: '6.0.102'
|
||||
dotnetVersion: '6.0.201'
|
||||
innoVersion: '6.2.0'
|
||||
windowsImage: 'windows-2022'
|
||||
linuxImage: 'ubuntu-20.04'
|
||||
|
||||
5
build.sh
5
build.sh
@@ -198,7 +198,10 @@ PackageWindows()
|
||||
local folder=$artifactsFolder/$runtime/$framework/Readarr
|
||||
|
||||
PackageFiles "$folder" "$framework" "$runtime"
|
||||
cp -r $outputFolder/$framework-windows/$runtime/publish/* $folder
|
||||
|
||||
if [ "$os" = "windows" ]; then
|
||||
cp -r $outputFolder/$framework-windows/$runtime/publish/* $folder
|
||||
fi
|
||||
|
||||
echo "Removing Readarr.Mono"
|
||||
rm -f $folder/Readarr.Mono.*
|
||||
|
||||
@@ -160,6 +160,7 @@ class DateFilterBuilderRowValue extends Component {
|
||||
<TextInput
|
||||
name={NAME}
|
||||
value={filterValue}
|
||||
type="date"
|
||||
placeholder="yyyy-mm-dd"
|
||||
onChange={this.onValueChange}
|
||||
/>
|
||||
|
||||
@@ -138,7 +138,7 @@ function InteractiveSearch(props) {
|
||||
items.map((item) => {
|
||||
return (
|
||||
<InteractiveSearchRow
|
||||
key={item.guid}
|
||||
key={`${item.indexerId}-${item.guid}`}
|
||||
{...item}
|
||||
searchPayload={searchPayload}
|
||||
longDateFormat={longDateFormat}
|
||||
|
||||
@@ -44,7 +44,14 @@ function filter(items, state) {
|
||||
const predicate = filterPredicates[key];
|
||||
|
||||
if (Array.isArray(value)) {
|
||||
accepted = value.some((v) => predicate(item, v, type));
|
||||
if (
|
||||
type === filterTypes.NOT_CONTAINS ||
|
||||
type === filterTypes.NOT_EQUAL
|
||||
) {
|
||||
accepted = value.every((v) => predicate(item, v, type));
|
||||
} else {
|
||||
accepted = value.some((v) => predicate(item, v, type));
|
||||
}
|
||||
} else {
|
||||
accepted = predicate(item, value, type);
|
||||
}
|
||||
|
||||
@@ -33,9 +33,9 @@
|
||||
"@fortawesome/free-regular-svg-icons": "5.15.3",
|
||||
"@fortawesome/free-solid-svg-icons": "5.15.3",
|
||||
"@fortawesome/react-fontawesome": "0.1.14",
|
||||
"@microsoft/signalr": "6.0.1",
|
||||
"@sentry/browser": "6.10.0",
|
||||
"@sentry/integrations": "6.10.0",
|
||||
"@microsoft/signalr": "6.0.3",
|
||||
"@sentry/browser": "6.18.2",
|
||||
"@sentry/integrations": "6.18.2",
|
||||
"ansi-colors": "4.1.1",
|
||||
"classnames": "2.3.1",
|
||||
"clipboard": "2.0.8",
|
||||
|
||||
@@ -44,7 +44,7 @@ Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||
|
||||
[Tasks]
|
||||
Name: "desktopIcon"; Description: "{cm:CreateDesktopIcon}"
|
||||
Name: "windowsService"; Description: "Install Windows Service (Starts when the computer starts)"; GroupDescription: "Start automatically"; Flags: exclusive unchecked
|
||||
Name: "windowsService"; Description: "Install Windows Service (Starts when the computer starts as the LocalService user, you will need to change the user to access network shares)"; GroupDescription: "Start automatically"; Flags: exclusive unchecked
|
||||
Name: "startupShortcut"; Description: "Create shortcut in Startup folder (Starts when you log into Windows)"; GroupDescription: "Start automatically"; Flags: exclusive
|
||||
Name: "none"; Description: "Do not start automatically"; GroupDescription: "Start automatically"; Flags: exclusive unchecked
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<PackageVersion Include="AutoFixture" Version="4.17.0" />
|
||||
<PackageVersion Include="coverlet.collector" Version="3.0.4-preview.27.ge7cb7c3b40" PrivateAssets="all" />
|
||||
<PackageVersion Include="Dapper" Version="2.0.123" />
|
||||
<PackageVersion Include="DryIoc.dll" Version="4.8.6" />
|
||||
<PackageVersion Include="DryIoc.dll" Version="4.8.7" />
|
||||
<PackageVersion Include="DryIoc.Microsoft.DependencyInjection" Version="5.1.0" />
|
||||
<PackageVersion Include="Equ" Version="2.3.0" />
|
||||
<PackageVersion Include="FluentAssertions" Version="5.10.3" />
|
||||
@@ -15,38 +15,38 @@
|
||||
<PackageVersion Include="ImpromptuInterface" Version="7.0.1" />
|
||||
<PackageVersion Include="LazyCache" Version="2.4.0" />
|
||||
<PackageVersion Include="Mailkit" Version="3.1.1" />
|
||||
<PackageVersion Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.2" />
|
||||
<PackageVersion Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.3" />
|
||||
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="6.0.1" />
|
||||
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
|
||||
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
|
||||
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
|
||||
<PackageVersion Include="Microsoft.Extensions.Hosting.WindowsServices" Version="6.0.0" />
|
||||
<PackageVersion Include="Microsoft.Extensions.Logging" Version="6.0.0" />
|
||||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
||||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
||||
<PackageVersion Include="Microsoft.Win32.Registry" Version="5.0.0" />
|
||||
<PackageVersion Include="Mono.Posix.NETStandard" Version="5.20.1.34-servarr18" />
|
||||
<PackageVersion Include="MonoTorrent" Version="2.0.4" />
|
||||
<PackageVersion Include="Moq" Version="4.16.1" />
|
||||
<PackageVersion Include="Moq" Version="4.17.2" />
|
||||
<PackageVersion Include="NBuilder" Version="6.1.0" />
|
||||
<PackageVersion Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
<PackageVersion Include="NLog.Extensions.Logging" Version="1.7.4" />
|
||||
<PackageVersion Include="NLog" Version="4.7.13" />
|
||||
<PackageVersion Include="NLog" Version="4.7.14" />
|
||||
<PackageVersion Include="NUnit3TestAdapter" Version="4.2.1" />
|
||||
<PackageVersion Include="NUnit" Version="3.13.2" />
|
||||
<PackageVersion Include="NunitXml.TestLogger" Version="3.0.117" />
|
||||
<PackageVersion Include="PdfSharpCore" Version="1.3.12" />
|
||||
<PackageVersion Include="PdfSharpCore" Version="1.3.13" />
|
||||
<PackageVersion Include="RestSharp.Serializers.SystemTextJson" Version="106.15.0" />
|
||||
<PackageVersion Include="RestSharp" Version="106.15.0" />
|
||||
<PackageVersion Include="Selenium.Support" Version="3.141.0" />
|
||||
<PackageVersion Include="Selenium.WebDriver.ChromeDriver" Version="91.0.4472.10100" />
|
||||
<PackageVersion Include="Sentry" Version="3.13.0" />
|
||||
<PackageVersion Include="Sentry" Version="3.14.1" />
|
||||
<PackageVersion Include="SharpZipLib" Version="1.3.3" />
|
||||
<PackageVersion Include="SixLabors.ImageSharp" Version="1.0.4" />
|
||||
<PackageVersion Include="StyleCop.Analyzers" Version="1.1.118" />
|
||||
<PackageVersion Include="System.Buffers" Version="4.5.1" />
|
||||
<PackageVersion Include="System.Configuration.ConfigurationManager" Version="6.0.0" />
|
||||
<PackageVersion Include="System.Data.SQLite.Core.Servarr" Version="1.0.115.5-18" />
|
||||
<PackageVersion Include="System.IO.Abstractions.TestingHelpers" Version="16.1.10" />
|
||||
<PackageVersion Include="System.IO.Abstractions" Version="16.1.10" />
|
||||
<PackageVersion Include="System.IO.Abstractions.TestingHelpers" Version="16.1.20" />
|
||||
<PackageVersion Include="System.IO.Abstractions" Version="16.1.20" />
|
||||
<PackageVersion Include="System.IO.FileSystem.AccessControl" Version="5.0.0" />
|
||||
<PackageVersion Include="System.Memory" Version="4.5.4" />
|
||||
<PackageVersion Include="System.Reflection.TypeExtensions" Version="4.7.0" />
|
||||
|
||||
@@ -81,7 +81,7 @@ namespace NzbDrone.Common.Http
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
var result = string.Format("Res: [{0}] {1}: {2}.{3}", Request.Method, Request.Url, (int)StatusCode, StatusCode);
|
||||
var result = string.Format("Res: [{0}] {1}: {2}.{3} ({4} bytes)", Request.Method, Request.Url, (int)StatusCode, StatusCode, ResponseData?.Length ?? 0);
|
||||
|
||||
if (HasHttpError && Headers.ContentType.IsNotNullOrWhiteSpace() && !Headers.ContentType.Equals("text/html", StringComparison.InvariantCultureIgnoreCase))
|
||||
{
|
||||
|
||||
@@ -90,6 +90,8 @@ namespace NzbDrone.Core.Backup
|
||||
|
||||
_archiveService.CreateZip(backupPath, _diskProvider.GetFiles(_backupTempFolder, SearchOption.TopDirectoryOnly));
|
||||
|
||||
Cleanup();
|
||||
|
||||
_logger.ProgressDebug("Backup zip created");
|
||||
}
|
||||
|
||||
|
||||
@@ -13,6 +13,7 @@ namespace NzbDrone.Core.Books
|
||||
public class AddAuthorValidator : AbstractValidator<Author>, IAddAuthorValidator
|
||||
{
|
||||
public AddAuthorValidator(RootFolderValidator rootFolderValidator,
|
||||
RecycleBinValidator recycleBinValidator,
|
||||
AuthorPathValidator authorPathValidator,
|
||||
AuthorAncestorValidator authorAncestorValidator,
|
||||
QualityProfileExistsValidator qualityProfileExistsValidator,
|
||||
@@ -21,6 +22,7 @@ namespace NzbDrone.Core.Books
|
||||
RuleFor(c => c.Path).Cascade(CascadeMode.StopOnFirstFailure)
|
||||
.IsValidPath()
|
||||
.SetValidator(rootFolderValidator)
|
||||
.SetValidator(recycleBinValidator)
|
||||
.SetValidator(authorPathValidator)
|
||||
.SetValidator(authorAncestorValidator);
|
||||
|
||||
|
||||
19
src/NzbDrone.Core/Datastore/Converters/TimeSpanConverter.cs
Normal file
19
src/NzbDrone.Core/Datastore/Converters/TimeSpanConverter.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Data;
|
||||
using Dapper;
|
||||
|
||||
namespace NzbDrone.Core.Datastore.Converters
|
||||
{
|
||||
public class DapperTimeSpanConverter : SqlMapper.TypeHandler<TimeSpan>
|
||||
{
|
||||
public override void SetValue(IDbDataParameter parameter, TimeSpan value)
|
||||
{
|
||||
parameter.Value = value.ToString();
|
||||
}
|
||||
|
||||
public override TimeSpan Parse(object value)
|
||||
{
|
||||
return TimeSpan.Parse((string)value);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -212,6 +212,7 @@ namespace NzbDrone.Core.Datastore
|
||||
|
||||
SqlMapper.RemoveTypeMap(typeof(DateTime));
|
||||
SqlMapper.AddTypeHandler(new DapperUtcConverter());
|
||||
SqlMapper.AddTypeHandler(new DapperTimeSpanConverter());
|
||||
SqlMapper.AddTypeHandler(new DapperQualityIntConverter());
|
||||
SqlMapper.AddTypeHandler(new EmbeddedDocumentConverter<List<QualityProfileQualityItem>>(new QualityIntConverter()));
|
||||
SqlMapper.AddTypeHandler(new EmbeddedDocumentConverter<QualityModel>(new QualityIntConverter()));
|
||||
|
||||
@@ -44,7 +44,7 @@ namespace NzbDrone.Core.Download.Clients.Deluge
|
||||
[FieldDefinition(3, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)]
|
||||
public string Password { get; set; }
|
||||
|
||||
[FieldDefinition(5, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional")]
|
||||
[FieldDefinition(5, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(6, Label = "Post-Import Category", Type = FieldType.Textbox, Advanced = true, HelpText = "Category for Readarr to set after it has imported the download. Readarr will not remove torrents in that category even if seeding finished. Leave blank to keep same category.")]
|
||||
|
||||
@@ -45,7 +45,7 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation
|
||||
[FieldDefinition(4, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)]
|
||||
public string Password { get; set; }
|
||||
|
||||
[FieldDefinition(5, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional. Creates a [category] subdirectory in the output directory.")]
|
||||
[FieldDefinition(5, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended. Creates a [category] subdirectory in the output directory.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(6, Label = "Directory", Type = FieldType.Textbox, HelpText = "Optional shared folder to put downloads into, leave blank to use the default Download Station location")]
|
||||
|
||||
@@ -20,16 +20,22 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation.Responses
|
||||
{ 104, "The requested version does not support the functionality" },
|
||||
{ 105, "The logged in session does not have permission" },
|
||||
{ 106, "Session timeout" },
|
||||
{ 107, "Session interrupted by duplicate login" }
|
||||
{ 107, "Session interrupted by duplicate login" },
|
||||
{ 119, "SID not found" }
|
||||
};
|
||||
|
||||
AuthMessages = new Dictionary<int, string>
|
||||
{
|
||||
{ 400, "No such account or incorrect password" },
|
||||
{ 401, "Account disabled" },
|
||||
{ 402, "Permission denied" },
|
||||
{ 403, "2-step verification code required" },
|
||||
{ 404, "Failed to authenticate 2-step verification code" }
|
||||
{ 401, "Disabled account" },
|
||||
{ 402, "Denied permission" },
|
||||
{ 403, "2-step authentication code required" },
|
||||
{ 404, "Failed to authenticate 2-step authentication code" },
|
||||
{ 406, "Enforce to authenticate with 2-factor authentication code" },
|
||||
{ 407, "Blocked IP source" },
|
||||
{ 408, "Expired password cannot change" },
|
||||
{ 409, "Expired password" },
|
||||
{ 410, "Password must be changed" }
|
||||
};
|
||||
|
||||
DownloadStationTaskMessages = new Dictionary<int, string>
|
||||
@@ -76,7 +82,7 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation.Responses
|
||||
|
||||
public int Code { get; set; }
|
||||
|
||||
public bool SessionError => Code == 105 || Code == 106 || Code == 107;
|
||||
public bool SessionError => Code == 105 || Code == 106 || Code == 107 || Code == 119;
|
||||
|
||||
public string GetMessage(DiskStationApi api)
|
||||
{
|
||||
|
||||
@@ -48,7 +48,7 @@ namespace NzbDrone.Core.Download.Clients.NzbVortex
|
||||
[FieldDefinition(3, Label = "API Key", Type = FieldType.Textbox, Privacy = PrivacyLevel.ApiKey)]
|
||||
public string ApiKey { get; set; }
|
||||
|
||||
[FieldDefinition(4, Label = "Group", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional")]
|
||||
[FieldDefinition(4, Label = "Group", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(5, Label = "Recent Priority", Type = FieldType.Select, SelectOptions = typeof(NzbVortexPriority), HelpText = "Priority to use when grabbing books released within the last 14 days")]
|
||||
|
||||
@@ -54,7 +54,7 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
|
||||
[FieldDefinition(5, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)]
|
||||
public string Password { get; set; }
|
||||
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional")]
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(7, Label = "Recent Priority", Type = FieldType.Select, SelectOptions = typeof(NzbgetPriority), HelpText = "Priority to use when grabbing books released within the last 14 days")]
|
||||
|
||||
@@ -308,7 +308,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
|
||||
else if (item.Status == DownloadItemStatus.Completed)
|
||||
{
|
||||
item.Status = DownloadItemStatus.Warning;
|
||||
item.Message = "Unable to import since content path is equal to root download directory, perhaps Keep top-level folder was disabled for this torrent?";
|
||||
item.Message = "Unable to Import. Path matches client base download directory, it's possible 'Keep top-level folder' is disabled for this torrent or 'Torrent Content Layout' is NOT set to 'Original' or 'Create Subfolder'?";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
|
||||
[FieldDefinition(5, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)]
|
||||
public string Password { get; set; }
|
||||
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional")]
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(7, Label = "Post-Import Category", Type = FieldType.Textbox, Advanced = true, HelpText = "Category for Readarr to set after it has imported the download. Readarr will not remove the torrent if seeding has finished. Leave blank to keep same category.")]
|
||||
@@ -60,7 +60,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
|
||||
[FieldDefinition(9, Label = "Older Priority", Type = FieldType.Select, SelectOptions = typeof(QBittorrentPriority), HelpText = "Priority to use when grabbing books released over 14 days ago")]
|
||||
public int OlderTvPriority { get; set; }
|
||||
|
||||
[FieldDefinition(10, Label = "Initial State", Type = FieldType.Select, SelectOptions = typeof(QBittorrentState), HelpText = "Initial state for torrents added to qBittorrent")]
|
||||
[FieldDefinition(10, Label = "Initial State", Type = FieldType.Select, SelectOptions = typeof(QBittorrentState), HelpText = "Initial state for torrents added to qBittorrent. Note that Forced Torrents do not abide by seed restrictions")]
|
||||
public int InitialState { get; set; }
|
||||
|
||||
public NzbDroneValidationResult Validate()
|
||||
|
||||
@@ -340,8 +340,8 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||
return null;
|
||||
}
|
||||
|
||||
major = 1;
|
||||
minor = 1;
|
||||
major = 3;
|
||||
minor = 0;
|
||||
patch = 0;
|
||||
}
|
||||
|
||||
@@ -362,7 +362,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||
|
||||
if (rawVersion.Equals("develop", StringComparison.InvariantCultureIgnoreCase))
|
||||
{
|
||||
return new NzbDroneValidationFailure("Version", "Sabnzbd develop version, assuming version 1.1.0 or higher.")
|
||||
return new NzbDroneValidationFailure("Version", "Sabnzbd develop version, assuming version 3.0.0 or higher.")
|
||||
{
|
||||
IsWarning = true,
|
||||
DetailedDescription = "Readarr may not be able to support new features added to SABnzbd when running develop versions."
|
||||
|
||||
@@ -57,7 +57,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||
[FieldDefinition(3, Label = "Url Base", Type = FieldType.Textbox, Advanced = true, HelpText = "Adds a prefix to the Sabnzbd url, e.g. http://[host]:[port]/[urlBase]/api")]
|
||||
public string UrlBase { get; set; }
|
||||
|
||||
[FieldDefinition(3, Label = "API Key", Type = FieldType.Textbox, Privacy = PrivacyLevel.ApiKey)]
|
||||
[FieldDefinition(4, Label = "API Key", Type = FieldType.Textbox, Privacy = PrivacyLevel.ApiKey)]
|
||||
public string ApiKey { get; set; }
|
||||
|
||||
[FieldDefinition(5, Label = "Username", Type = FieldType.Textbox, Privacy = PrivacyLevel.UserName)]
|
||||
@@ -66,7 +66,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||
[FieldDefinition(6, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)]
|
||||
public string Password { get; set; }
|
||||
|
||||
[FieldDefinition(7, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional")]
|
||||
[FieldDefinition(7, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(8, Label = "Recent Priority", Type = FieldType.Select, SelectOptions = typeof(SabnzbdPriority), HelpText = "Priority to use when grabbing books released within the last 14 days")]
|
||||
|
||||
@@ -53,7 +53,7 @@ namespace NzbDrone.Core.Download.Clients.Transmission
|
||||
[FieldDefinition(5, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)]
|
||||
public string Password { get; set; }
|
||||
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional. Creates a [category] subdirectory in the output directory.")]
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended.. Creates a [category] subdirectory in the output directory.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(7, Label = "Directory", Type = FieldType.Textbox, Advanced = true, HelpText = "Optional location to put downloads in, leave blank to use the default Transmission location")]
|
||||
|
||||
@@ -49,7 +49,7 @@ namespace NzbDrone.Core.Download.Clients.RTorrent
|
||||
[FieldDefinition(5, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)]
|
||||
public string Password { get; set; }
|
||||
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional.")]
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(7, Label = "Post-Import Category", Type = FieldType.Textbox, Advanced = true, HelpText = "Category for Readarr to set after it has imported the download. Readarr will not remove torrents in that category even if seeding finished. Leave blank to keep same category.")]
|
||||
|
||||
@@ -46,7 +46,7 @@ namespace NzbDrone.Core.Download.Clients.UTorrent
|
||||
[FieldDefinition(5, Label = "Password", Type = FieldType.Password, Privacy = PrivacyLevel.Password)]
|
||||
public string Password { get; set; }
|
||||
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated downloads, but it's optional")]
|
||||
[FieldDefinition(6, Label = "Category", Type = FieldType.Textbox, HelpText = "Adding a category specific to Readarr avoids conflicts with unrelated non-Readarr downloads. Using a category is optional, but strongly recommended.")]
|
||||
public string MusicCategory { get; set; }
|
||||
|
||||
[FieldDefinition(7, Label = "Post-Import Category", Type = FieldType.Textbox, Advanced = true, HelpText = "Category for Readarr to set after it has imported the download. Readarr will not remove the torrent if seeding has finished. Leave blank to keep same category.")]
|
||||
|
||||
@@ -160,14 +160,11 @@
|
||||
"RemoveCompletedDownloadsHelpText": "قم بإزالة التنزيلات المستوردة من سجل عميل التنزيل",
|
||||
"Remove": "إزالة",
|
||||
"RemotePathMappings": "تعيينات المسار البعيد",
|
||||
"RemotePathHelpText": "مسار الجذر إلى الدليل الذي يصل إليه Download Client",
|
||||
"RemotePath": "مسار بعيد",
|
||||
"Reload": "إعادة تحميل",
|
||||
"ReleaseWillBeProcessedInterp": "ستتم معالجة الإصدار {0}",
|
||||
"ReleaseRejected": "تحرير مرفوض",
|
||||
"ReleaseGroup": "مجموعة الإصدار",
|
||||
"ReleaseDate": "يوم الاصدار",
|
||||
"RefreshScan": "التحديث والمسح الضوئي",
|
||||
"RefreshInformationAndScanDisk": "تحديث المعلومات ومسح القرص",
|
||||
"Refresh": "تحديث",
|
||||
"Redownload": "إعادة التنزيل",
|
||||
@@ -180,7 +177,6 @@
|
||||
"Real": "حقيقة",
|
||||
"ReadarrTags": "العلامات الرادار",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "يدعم Radarr أي مفهرس يستخدم معيار Newznab ، بالإضافة إلى مفهرسات أخرى مذكورة أدناه.",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "يدعم Radarr أي عميل تنزيل يستخدم معيار Newznab ، بالإضافة إلى عملاء التنزيل الآخرين المدرجة أدناه.",
|
||||
"ReadTheWikiForMoreInformation": "اقرأ Wiki لمزيد من المعلومات",
|
||||
"RSSSyncInterval": "الفاصل الزمني لمزامنة RSS",
|
||||
"RSSSync": "مزامنة RSS",
|
||||
@@ -200,7 +196,6 @@
|
||||
"PropersAndRepacks": "المناسبين و Repacks",
|
||||
"Proper": "لائق",
|
||||
"Profiles": "مظهر",
|
||||
"PriorityHelpText": "أولوية المفهرس من 1 (الأعلى) إلى 50 (الأدنى). الافتراضي: 25.",
|
||||
"PreviewRename": "معاينة إعادة تسمية",
|
||||
"Preferred": "يفضل",
|
||||
"PosterSize": "حجم الملصق",
|
||||
@@ -411,8 +406,6 @@
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "يجب تمكين تسجيل التتبع مؤقتًا فقط",
|
||||
"LogLevel": "تسجيل مستوى",
|
||||
"LogFiles": "ملفات الدخول",
|
||||
"LocalPathHelpText": "المسار الذي يجب أن يستخدمه Radarr للوصول إلى المسار البعيد محليًا",
|
||||
"LocalPath": "مسار محلي",
|
||||
"Local": "محلي",
|
||||
"LoadingBookFilesFailed": "فشل تحميل ملفات الفيلم",
|
||||
"LaunchBrowserHelpText": " افتح مستعرض ويب وانتقل إلى صفحة Radarr الرئيسية عند بدء التطبيق.",
|
||||
|
||||
@@ -186,8 +186,6 @@
|
||||
"LaunchBrowserHelpText": " Отворете уеб браузър и отворете началната страница на Radarr при стартиране на приложението.",
|
||||
"LoadingBookFilesFailed": "Зареждането на филмови файлове не бе успешно",
|
||||
"Local": "Местен",
|
||||
"LocalPath": "Местен път",
|
||||
"LocalPathHelpText": "Път, който Radarr трябва да използва за локален достъп до отдалечения път",
|
||||
"LogFiles": "Лог файлове",
|
||||
"LogLevel": "Log Level",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Регистрацията на проследяване трябва да бъде разрешена само временно",
|
||||
@@ -249,7 +247,6 @@
|
||||
"PosterSize": "Размер на плаката",
|
||||
"Preferred": "Предпочитан",
|
||||
"PreviewRename": "Визуализация Преименуване",
|
||||
"PriorityHelpText": "Приоритет на индексатора от 1 (най-висок) до 50 (най-нисък). По подразбиране: 25.",
|
||||
"Profiles": "Профили",
|
||||
"Proper": "Правилно",
|
||||
"PropersAndRepacks": "Propers и Repacks",
|
||||
@@ -269,7 +266,6 @@
|
||||
"RSSSync": "RSS синхронизиране",
|
||||
"RSSSyncInterval": "RSS интервал за синхронизиране",
|
||||
"ReadTheWikiForMoreInformation": "Прочетете Wiki за повече информация",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr поддържа всеки клиент за изтегляне, който използва стандарта Newznab, както и други клиенти за изтегляне, изброени по-долу.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr поддържа всеки индексатор, който използва стандарта Newznab, както и други индексатори, изброени по-долу.",
|
||||
"ReadarrTags": "Радарни маркери",
|
||||
"Real": "Истински",
|
||||
@@ -282,14 +278,11 @@
|
||||
"Redownload": "Презареждане",
|
||||
"Refresh": "Обнови",
|
||||
"RefreshInformationAndScanDisk": "Опреснете информацията и сканирайте диска",
|
||||
"RefreshScan": "Опресняване и сканиране",
|
||||
"ReleaseDate": "Дати на издаване",
|
||||
"ReleaseGroup": "Група за освобождаване",
|
||||
"ReleaseRejected": "Пускането отхвърлено",
|
||||
"ReleaseWillBeProcessedInterp": "Версията ще бъде обработена {0}",
|
||||
"Reload": "Презаредете",
|
||||
"RemotePath": "Отдалечен път",
|
||||
"RemotePathHelpText": "Основен път към директорията, до която клиентът за изтегляне има достъп",
|
||||
"RemotePathMappings": "Съпоставяне на отдалечен път",
|
||||
"Remove": "Премахване",
|
||||
"RemoveCompletedDownloadsHelpText": "Премахнете импортираните изтегляния от историята на клиента за изтегляне",
|
||||
|
||||
@@ -191,8 +191,6 @@
|
||||
"LaunchBrowserHelpText": " Otevřete webový prohlížeč a při spuštění aplikace přejděte na domovskou stránku Radarr.",
|
||||
"LoadingBookFilesFailed": "Načítání filmových souborů se nezdařilo",
|
||||
"Local": "Místní",
|
||||
"LocalPath": "Místní cesta",
|
||||
"LocalPathHelpText": "Cesta, kterou by Radarr měl použít pro místní přístup ke vzdálené cestě",
|
||||
"LogFiles": "Záznam souborů",
|
||||
"LogLevel": "Úroveň protokolu",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Trasování protokolování by mělo být povoleno pouze dočasně",
|
||||
@@ -254,7 +252,6 @@
|
||||
"PosterSize": "Velikost plakátu",
|
||||
"Preferred": "Upřednostňováno",
|
||||
"PreviewRename": "Náhled Přejmenovat",
|
||||
"PriorityHelpText": "Priorita indexování od 1 (nejvyšší) do 50 (nejnižší). Výchozí: 25.",
|
||||
"Profiles": "Profily",
|
||||
"Proper": "Správně",
|
||||
"PropersAndRepacks": "Sponzoři a přebalení",
|
||||
@@ -274,7 +271,6 @@
|
||||
"RSSSync": "RSS synchronizace",
|
||||
"RSSSyncInterval": "Interval synchronizace RSS",
|
||||
"ReadTheWikiForMoreInformation": "Další informace najdete na Wiki",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr podporuje libovolného klienta pro stahování, který používá standard Newznab, stejně jako další klienty pro stahování uvedené níže.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr podporuje jakýkoli indexer, který používá standard Newznab, stejně jako další indexery uvedené níže.",
|
||||
"ReadarrTags": "Radarr tagy",
|
||||
"Real": "Nemovitý",
|
||||
@@ -287,14 +283,11 @@
|
||||
"Redownload": "Znovu stáhnout",
|
||||
"Refresh": "Obnovit",
|
||||
"RefreshInformationAndScanDisk": "Obnovte informace a prohledejte disk",
|
||||
"RefreshScan": "Obnovit a skenovat",
|
||||
"ReleaseDate": "Datum vydání",
|
||||
"ReleaseGroup": "Uvolňovací skupina",
|
||||
"ReleaseRejected": "Uvolnění odmítnuto",
|
||||
"ReleaseWillBeProcessedInterp": "Vydání bude zpracováno {0}",
|
||||
"Reload": "Znovu načíst",
|
||||
"RemotePath": "Vzdálená cesta",
|
||||
"RemotePathHelpText": "Kořenová cesta k adresáři, do kterého stahovací klient přistupuje",
|
||||
"RemotePathMappings": "Vzdálené mapování cest",
|
||||
"Remove": "Odstranit",
|
||||
"RemoveCompletedDownloadsHelpText": "Odeberte importované soubory ke stažení z historie klienta stahování",
|
||||
|
||||
@@ -187,8 +187,6 @@
|
||||
"LaunchBrowserHelpText": " Åbn en webbrowser, og naviger til Radarr-hjemmesiden ved start af appen.",
|
||||
"LoadingBookFilesFailed": "Indlæsning af filmfiler mislykkedes",
|
||||
"Local": "Lokal",
|
||||
"LocalPath": "Lokal sti",
|
||||
"LocalPathHelpText": "Sti, som Radarr skal bruge for at få adgang til den eksterne sti lokalt",
|
||||
"LogFiles": "Logfiler",
|
||||
"LogLevel": "Logniveau",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Sporlogning bør kun aktiveres midlertidigt",
|
||||
@@ -251,7 +249,6 @@
|
||||
"PosterSize": "Plakatstørrelse",
|
||||
"Preferred": "Foretrukket",
|
||||
"PreviewRename": "Vis eksempel Omdøb",
|
||||
"PriorityHelpText": "Indekseringsprioritet fra 1 (højest) til 50 (lavest). Standard: 25.",
|
||||
"Profiles": "Profiler",
|
||||
"Proper": "Passende",
|
||||
"PropersAndRepacks": "Propers og Repacks",
|
||||
@@ -271,7 +268,6 @@
|
||||
"RSSSync": "RSS-synkronisering",
|
||||
"RSSSyncInterval": "RSS-synkroniseringsinterval",
|
||||
"ReadTheWikiForMoreInformation": "Læs Wiki for mere information",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr understøtter enhver downloadklient, der bruger Newznab-standarden, samt andre downloadklienter, der er anført nedenfor.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr understøtter enhver indekserer, der bruger Newznab-standarden såvel som andre indeksatorer, der er anført nedenfor.",
|
||||
"ReadarrTags": "Radarr tags",
|
||||
"Real": "Ægte",
|
||||
@@ -284,14 +280,11 @@
|
||||
"Redownload": "Genindlæs",
|
||||
"Refresh": "Opdater",
|
||||
"RefreshInformationAndScanDisk": "Opdater oplysninger og scan disk",
|
||||
"RefreshScan": "Opdater & Scan",
|
||||
"ReleaseDate": "Slip datoer",
|
||||
"ReleaseGroup": "Slip gruppe",
|
||||
"ReleaseRejected": "Udgivelse afvist",
|
||||
"ReleaseWillBeProcessedInterp": "Udgivelsen behandles {0}",
|
||||
"Reload": "Genindlæs",
|
||||
"RemotePath": "Fjern sti",
|
||||
"RemotePathHelpText": "Sti til den mappe, som Download-klienten har adgang til",
|
||||
"RemotePathMappings": "Remote Path Mappings",
|
||||
"Remove": "Fjerne",
|
||||
"RemoveCompletedDownloadsHelpText": "Fjern importerede downloads fra downloadklienthistorik",
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
"PreviewRename": "Umbenennen",
|
||||
"RecyclingBin": "Papierkorb",
|
||||
"Usenet": "Usenet",
|
||||
"20MinutesTwenty": "90 Minuten: {0}",
|
||||
"45MinutesFourtyFive": "90 Minuten: {0}",
|
||||
"20MinutesTwenty": "20 Minuten: {0}",
|
||||
"45MinutesFourtyFive": "45 Minuten: {0}",
|
||||
"60MinutesSixty": "60 Minuten: {0}",
|
||||
"APIKey": "API-Schlüssel",
|
||||
"About": "Über",
|
||||
@@ -53,7 +53,7 @@
|
||||
"ChownGroupHelpText": "Gruppenname oder gid. Verwenden Sie gid für entfernte Dateisysteme.",
|
||||
"ChownGroupHelpTextWarning": "Dies funktioniert nur, wenn der Benutzer, der Radarr ausführt, der Eigentümer der Datei ist. Es ist besser, sicherzustellen, dass der Download-Client die gleiche Gruppe wie Radarr verwendet.",
|
||||
"Clear": "Leeren",
|
||||
"ClickToChangeQuality": "Qualität ändern...",
|
||||
"ClickToChangeQuality": "Hier klicken um die Qualität zu ändern",
|
||||
"ClientPriority": "Priorität",
|
||||
"CloneIndexer": "Indexer kopieren",
|
||||
"CloneProfile": "Profil kopieren",
|
||||
@@ -186,8 +186,6 @@
|
||||
"LaunchBrowserHelpText": " Öffne die Startseite von Radarr im Webbrowser nach dem Start.",
|
||||
"LoadingBookFilesFailed": "Laden der Film-Dateien fehlgeschlagen",
|
||||
"Local": "Lokal",
|
||||
"LocalPath": "Lokaler Pfad",
|
||||
"LocalPathHelpText": "Pfad, den Radarr verwenden sollte, um lokal auf den Entfernten-Pfad zuzugreifen",
|
||||
"LogFiles": "Protokolldateien",
|
||||
"LogLevel": "Log Level",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Trace logging sollte nur kurzzeitig aktiviert werden",
|
||||
@@ -200,7 +198,7 @@
|
||||
"MarkAsFailedMessageText": "'{0}' wirklich als fehlgeschlagen markieren?",
|
||||
"MaximumLimits": "Maximale Grenzen",
|
||||
"MaximumSize": "Maximale Größe",
|
||||
"MaximumSizeHelpText": "Maximale Größe für ein zu erfassendes Release in MB. 0 bedeutet unbegrenzt",
|
||||
"MaximumSizeHelpText": "Maximale Größe für ein zu erfassendes Release in MB. 0 bedeutet unbegrenzt.",
|
||||
"Mechanism": "Verfahren",
|
||||
"MediaInfo": "Medien Information",
|
||||
"MediaManagementSettings": "Medienverwaltungs Einstellungen",
|
||||
@@ -222,7 +220,7 @@
|
||||
"NamingSettings": "Bennenungs Einstellungen",
|
||||
"New": "Neu",
|
||||
"NoBackupsAreAvailable": "Es sind keine Backups vorhanden",
|
||||
"NoHistory": "Kein Verlauf",
|
||||
"NoHistory": "Kein Verlauf.",
|
||||
"NoLeaveIt": "Nein, nicht ändern",
|
||||
"NoLimitForAnyRuntime": "Keine Begrenzung der Laufzeiten",
|
||||
"NoLogFiles": "Keine Log-Dateien",
|
||||
@@ -249,7 +247,6 @@
|
||||
"PortNumber": "Port Nummer",
|
||||
"PosterSize": "Plakatgröße",
|
||||
"Preferred": "Bevorzugt",
|
||||
"PriorityHelpText": "Indexer Priorität von 1 (höchste) bis 50 (niedrigste). Standart: 25.",
|
||||
"Profiles": "Profile",
|
||||
"Proper": "Proper",
|
||||
"PropersAndRepacks": "Propers und Repacks",
|
||||
@@ -266,10 +263,9 @@
|
||||
"QualityProfiles": "Qualitätsprofile",
|
||||
"QualitySettings": "Qualitäts Einstellungen",
|
||||
"Queue": "Warteschlange",
|
||||
"RSSSync": "RSS Sync.",
|
||||
"RSSSync": "RSS Sync",
|
||||
"RSSSyncInterval": "RSS Synchronisierungs Intervall",
|
||||
"ReadTheWikiForMoreInformation": "Lese das Wiki für mehr Informationen",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Jeder Downloader der den Newznab-Standard verwendet oder unten aufgelistet ist wird untertützt.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Jeder Indexer der den Newznab-Standard verwendet oder unten aufgelistet ist wird untertützt.",
|
||||
"ReadarrTags": "Radarr Tags",
|
||||
"Real": "Echt",
|
||||
@@ -281,14 +277,11 @@
|
||||
"Redownload": "Nochmal herunterladen",
|
||||
"Refresh": "Aktualisieren",
|
||||
"RefreshInformationAndScanDisk": "Metadaten aktualisieren und Festplatte scannen",
|
||||
"RefreshScan": "Aktualisieren",
|
||||
"ReleaseDate": "VÖ Termine",
|
||||
"ReleaseGroup": "Release-Gruppe",
|
||||
"ReleaseRejected": "Release abgelehnt",
|
||||
"ReleaseWillBeProcessedInterp": "Release wird verarbeitet {0}",
|
||||
"Reload": "Neuladen",
|
||||
"RemotePath": "Entfernter Pfad",
|
||||
"RemotePathHelpText": "Root-Pfad zum Verzeichnis, auf das der Download-Client zugreift",
|
||||
"RemotePathMappings": "Remote-Pfadzuordnungen",
|
||||
"Remove": "Entfernen",
|
||||
"RemoveCompletedDownloadsHelpText": "Importierte Downloads aus dem Downloader Verlauf entfernen",
|
||||
@@ -373,7 +366,7 @@
|
||||
"Style": "Stil",
|
||||
"SuccessMyWorkIsDoneNoFilesToRename": "Fertig! Keine weiteren Dateien zum umbennenen.",
|
||||
"SuccessMyWorkIsDoneNoFilesToRetag": "Fertig! Keine weiteren Dateien zum umbennenen.",
|
||||
"SupportsRssvalueRSSIsNotSupportedWithThisIndexer": "Der Indexer unterstützt kein RSS Sync.",
|
||||
"SupportsRssvalueRSSIsNotSupportedWithThisIndexer": "Der Indexer unterstützt kein RSS",
|
||||
"SupportsSearchvalueSearchIsNotSupportedWithThisIndexer": "Der Indexer unterstützt keine Suchen",
|
||||
"SupportsSearchvalueWillBeUsedWhenAutomaticSearchesArePerformedViaTheUIOrByReadarr": "Wird für automatische Suchen genutzt die vom Benutzer oder von Radarr gestartet werden",
|
||||
"SupportsSearchvalueWillBeUsedWhenInteractiveSearchIsUsed": "Wird für die manuelle Suche benutzt",
|
||||
@@ -395,7 +388,7 @@
|
||||
"UILanguageHelpText": "Sprache für die gesamte Oberfläche",
|
||||
"UILanguageHelpTextWarning": "Seite muss neugeladen werden",
|
||||
"UISettings": "Benutzeroberflächen Einstellungen",
|
||||
"URLBase": "URL Base",
|
||||
"URLBase": "URL-Basis",
|
||||
"UnableToAddANewDownloadClientPleaseTryAgain": "Der neue Downloader konnte nicht hinzugefügt werden, bitte erneut probieren.",
|
||||
"UnableToAddANewImportListExclusionPleaseTryAgain": "Der neue Listenausschluss konnte nicht hinzugefügt werden, bitte erneut probieren.",
|
||||
"UnableToAddANewIndexerPleaseTryAgain": "Der neue Indexer konnte nicht hinzugefügt werden, bitte erneut probieren.",
|
||||
@@ -410,7 +403,7 @@
|
||||
"UnableToLoadDownloadClientOptions": "Downloader Einstellungen konnten nicht geladen werden",
|
||||
"UnableToLoadDownloadClients": "Downloader konnten nicht geladen werden",
|
||||
"UnableToLoadGeneralSettings": "Allgemeine Einstellungen konnten nicht geladen werden",
|
||||
"UnableToLoadHistory": "Verlauf konnte nicht geladen werden",
|
||||
"UnableToLoadHistory": "Verlauf konnte nicht geladen werden.",
|
||||
"UnableToLoadImportListExclusions": "Listenausschlüsse konnten nicht geladen werden",
|
||||
"UnableToLoadIndexerOptions": "Indexer Einstellungen konnten nicht geladen werden",
|
||||
"UnableToLoadIndexers": "Indexer konnten nicht geladen werden",
|
||||
@@ -494,13 +487,12 @@
|
||||
"DownloadClientCheckDownloadingToRoot": "Download-Client {0} legt Downloads im Stammordner {1} ab. Sie sollten nicht in einen Stammordner herunterladen.",
|
||||
"Series": "Serien",
|
||||
"Publisher": "Herausgeber",
|
||||
"MaintenanceRelease": "Wartungsupdate",
|
||||
"MaintenanceRelease": "Wartung: Fehlerbehebung und andere Verbesserungen. Siehe Github Commit History für weitere Details",
|
||||
"LogRotation": "Logrotation",
|
||||
"LogRotateHelpText": "Max. Anzahl der zu behaltenden Logdateien",
|
||||
"Label": "Label",
|
||||
"FilterSentryEventsHelpText": "Sende keine bekannten Benutzerfehler Ereignisse an Analystics",
|
||||
"FilterAnalyticsEvents": "Analystische Ergeinisse filtern",
|
||||
"Timeleft": "Restzeit",
|
||||
"ReplaceIllegalCharactersHelpText": "Wenn nicht aktiviert, werden Sonderzeichen ganz entfernt",
|
||||
"LogSqlHelpText": "Log alle SQL Abfragen von Prowlarr",
|
||||
"OutputPath": "Ausgabe-Pfad",
|
||||
@@ -535,12 +527,185 @@
|
||||
"ShowUnknownAuthorItems": "Unzugeordente Filmeinträge anzeigen",
|
||||
"SelectAll": "Alle wählen",
|
||||
"SelectedCountBooksSelectedInterp": "{0} Film(e) ausgewählt",
|
||||
"ThisCannotBeCancelled": "Nach dem Start kann dies nicht mehr abgebrochen werden ohne Radarr neuzustarten.",
|
||||
"ThisCannotBeCancelled": "Nach dem Start kann dies nicht mehr abgebrochen werden ohne alle Indexer zu deaktivieren.",
|
||||
"UnselectAll": "Keine wählen",
|
||||
"UpdateSelected": "Auswahl aktualisieren",
|
||||
"Wanted": "› Gesuchte",
|
||||
"CreateEmptyAuthorFolders": "Leere Filmordner erstellen",
|
||||
"All": "Alle",
|
||||
"Country": "Land",
|
||||
"DeleteImportList": "Importliste löschen"
|
||||
"DeleteImportList": "Importliste löschen",
|
||||
"CouldntFindAnyResultsForTerm": "Keine Ergebnisse für '{0}' gefunden",
|
||||
"ImportListStatusCheckAllClientMessage": "Alle Listen sind aufgrund von Fehlern nicht verfügbar",
|
||||
"BookEditor": "Buch-Editor",
|
||||
"CatalogNumber": "Katalog Nummer",
|
||||
"ContinuingAllBooksDownloaded": "Fortfahren (Alle Bücher heruntergeladen)",
|
||||
"DeleteMetadataProfile": "Metadaten Profil löschen",
|
||||
"ImportListExclusions": "Ausschlüsse der Importliste",
|
||||
"ImportLists": "Importlisten",
|
||||
"ImportListSettings": "Allgemeine Einstellungen der Importliste",
|
||||
"ImportListSpecificSettings": "Listenspezifische Einstellungen importieren",
|
||||
"IndexerLongTermStatusCheckSingleClientMessage": "Indexer wegen über 6 Stunden langen bestehenden Fehlern nicht verfügbar: {0}",
|
||||
"IndexerPriorityHelpText": "Indexer Priorität von 1 (höchste) bis 50 (niedrigste). Standard: 25.",
|
||||
"IndexerRssHealthCheckNoAvailableIndexers": "Alle RSS-fähigen Indexer sind aufgrund der kürzlichen Indexerfehler vorübergehend nicht verfügbar",
|
||||
"DiscNumber": "Plattennummer",
|
||||
"Lists": "Listen",
|
||||
"IndexerSearchCheckNoAutomaticMessage": "Keine Indexer mit aktivierter automatischer Suche aktiviert. Readarr liefert keine automatischen Suchergebnisse",
|
||||
"IndexerSearchCheckNoAvailableIndexersMessage": "Alle suchfähigen Indexer sind aufgrund der kürzlichen Indexerfehler vorübergehend nicht verfügbar",
|
||||
"LibraryHelpText": "Name der Calibre Content Server Bibliothek. Leer lassen für Standardwert.",
|
||||
"ManualDownload": "Manueller Download",
|
||||
"MetadataConsumers": "Metadaten Konsumenten",
|
||||
"MetadataProfile": "Metadaten Profil",
|
||||
"MetadataProfileIdHelpText": "Metadaten Profil Listenelemente sollten hinzugefügt werden mit",
|
||||
"MetadataProfiles": "Metadaten Profile",
|
||||
"MonitoringOptions": "Beobachtungsoptionen",
|
||||
"MusicbrainzId": "MusicBrainz Id",
|
||||
"WatchRootFoldersForFileChanges": "Beobachte Stammverzeichnis auf Dateiänderungen",
|
||||
"OnDownloadFailure": "Bei fehlgeschlagenem Download",
|
||||
"OnDownloadFailureHelpText": "Bei fehlgeschlagenem Download",
|
||||
"OnImportFailure": "Bei fehlgeschlagenem Import",
|
||||
"Other": "Andere",
|
||||
"PastDays": "Vergangene Tage",
|
||||
"General": "Allgemein",
|
||||
"WatchLibraryForChangesHelpText": "Automatisch neu scannen, wenn sich Dateien im Stammverzeichnis ändern",
|
||||
"CalibreContentServerText": "Mit einem Calibre Content Server (nicht Calibre Web) kann Readarr Bücher zu Ihrer Calibre Bibliothek hinzufügen und Konvertierungen zwischen Formaten auslösen",
|
||||
"CalibreSettings": "Calibre Einstellungen",
|
||||
"DeleteRootFolder": "Stammordner löschen",
|
||||
"EnableProfile": "Profil aktivieren",
|
||||
"ExistingTagsScrubbed": "Vorhandene Tags wurden gelöscht",
|
||||
"FailedToLoadQueue": "Warteschlange konnte nicht geladen werden",
|
||||
"FileDetails": "Datei-Details",
|
||||
"FileWasDeletedByViaUI": "Datei wurde via UI gelöscht",
|
||||
"FilesTotal": "Dateien ({0})",
|
||||
"FileWasDeletedByUpgrade": "Datei wurde gelöscht um ein Upgrade zu importieren",
|
||||
"FilterAuthor": "Autor filtern",
|
||||
"Filters": "Filter",
|
||||
"FutureDays": "Zukünftige Tage",
|
||||
"FutureDaysHelpText": "Tage die iCal-Feed in die Zukunft schauen soll",
|
||||
"FutureBooks": "Zukünftige Bücher",
|
||||
"GeneralSettingsSummary": "Port, SSL, Benutzername/Passwort, Proxy, Analytik und Updates",
|
||||
"IndexerIdvalue0OnlySupportedWhenIndexerIsSetToAll": "Wird nur untersützt wenn Indexer auf (Alle) gestellt ist",
|
||||
"IndexerIdvalue0IncludeInPreferredWordsRenamingFormat": "In das Umbenennungsformat {Preferred Word} einbeziehen",
|
||||
"IndexerJackettAll": "Indexer, welche den nicht unterstützten 'all'-Endpoint von Jackett verwenden: {0}",
|
||||
"IndexerLongTermStatusCheckAllClientMessage": "Alle Indexer sind wegen über 6 Stunden langen bestehender Fehler nicht verfügbar",
|
||||
"IsExpandedShowFileInfo": "Dateiinformationen anzeigen",
|
||||
"IndexerStatusCheckAllClientMessage": "Alle Indexer sind aufgrund von Fehlern nicht verfügbar",
|
||||
"IsExpandedShowBooks": "Bücher anzeigen",
|
||||
"IsInUseCantDeleteAMetadataProfileThatIsAttachedToAnAuthorOrImportList": "Ein Metadatenprofil, das mit einem Autor oder einer Importliste verknüpft ist, kann nicht gelöscht werden",
|
||||
"IsInUseCantDeleteAQualityProfileThatIsAttachedToAnAuthorOrImportList": "Ein Qualitätsprofil, dass mit einem Autor oder einer Importliste verknüpft ist, kann nicht gelöscht werden",
|
||||
"TrackNumber": "Titelnummer",
|
||||
"ExistingBooks": "Existierende Bücher",
|
||||
"BookList": "Buchliste",
|
||||
"Continuing": "Fortsetzen",
|
||||
"ExistingItems": "Existierende Artikel",
|
||||
"ForeignIdHelpText": "Die Musicbrainz Id des Autors/Buches die ausgeschlossen werden soll",
|
||||
"IndexersSettingsSummary": "Indexer- und Releasebeschränkungen",
|
||||
"ISBN": "ISBN",
|
||||
"IsExpandedHideFileInfo": "Dateiinformationen verstecken",
|
||||
"IsCalibreLibraryHelpText": "Calibre Content Server zur Verwaltung der Bibliothek verwenden",
|
||||
"IsExpandedHideBooks": "Bücher verstecken",
|
||||
"DiscCount": "Anzahl der Platten",
|
||||
"IsShowingMonitoredMonitorSelected": "Beobachte ausgewählte",
|
||||
"IsShowingMonitoredUnmonitorSelected": "Ausgewählte nicht mehr beobachten",
|
||||
"ItsEasyToAddANewAuthorOrBookJustStartTypingTheNameOfTheItemYouWantToAdd": "Es ist ganz einfach, einen neuen Autor oder ein neues Buch hinzuzufügen: einfach den Namen des Artikels eingeben, der hinzugefügt werden soll",
|
||||
"ListsSettingsSummary": "Importlisten",
|
||||
"LogSQL": "SQL protokollieren",
|
||||
"DownloadPropersAndRepacksHelpTexts2": "Verwende 'Nicht bevorzugen', um nach der bevorzugten Wortbewertung über Proper/Repacks zu sortieren",
|
||||
"OnUpgrade": "Bei Aktualisierung",
|
||||
"Iso639-3": "ISO 639-3 Sprachcodes oder \"null\", durch Komma getrennt",
|
||||
"Duration": "Dauer",
|
||||
"PreferredHelpTexts3": "Eine negative Wertung wird weniger bevorzugt",
|
||||
"PreviewRetag": "Retag Vorschau",
|
||||
"EnabledHelpText": "Anhaken um Veröffentlichungsprofile zu aktivieren",
|
||||
"EntityName": "Objekt Name",
|
||||
"ShowBanners": "Zeige Banner",
|
||||
"ShowBannersHelpText": "Zeige Banner anstatt Namen",
|
||||
"ImportFailures": "Importfehler",
|
||||
"IndexerIdHelpText": "Angabe, welcher Indexer für das Profil gilt",
|
||||
"IndexerIdHelpTextWarning": "Die Verwendung eines bestimmten Indexers mit bevorzugten Wörtern kann dazu führen, dass Veröffentlichungen mehrfach erfasst werden",
|
||||
"LatestBook": "Neuestes Buch",
|
||||
"MetadataProviderSource": "Metadaten Anbieter Quelle",
|
||||
"MetadataSource": "Metadaten Quelle",
|
||||
"MetadataSourceHelpText": "Alternative Metadaten Quelle (Leer lassen für Standard)",
|
||||
"MusicBrainzRecordingID": "MusicBrainz Aufnahme Id",
|
||||
"MusicBrainzReleaseID": "MusicBrainz Veröffentlichung Id",
|
||||
"MusicBrainzTrackID": "MusicBrainz Titel Id",
|
||||
"OnGrab": "Bei Erfassung",
|
||||
"OnImportFailureHelpText": "Bei fehlgeschlagenem Import",
|
||||
"OnReleaseImport": "Bei Veröffentlichungsimport",
|
||||
"OnReleaseImportHelpText": "Bei Veröffentlichungsimport",
|
||||
"OnRename": "Bei Umbennenung",
|
||||
"PastDaysHelpText": "Tage für iCal-Feed, um in die Vergangenheit zu schauen",
|
||||
"PathHelpTextWarning": "Dies muss ein anderes Verzeichnis sein als das, in dem der Download Client die Dateien ablegt",
|
||||
"PreferredHelpTexts1": "Diese Veröffentlichung wird aufgrund der Wertung aller Begriffe bevorzugt (Groß- und Kleinschreibung wird nicht berücksichtigt)",
|
||||
"PreferredHelpTexts2": "Eine positive Wertung wird bevorzugt",
|
||||
"ReleaseProfiles": "Veröffentlichungsprofile",
|
||||
"RootFolderPathHelpText": "Die Elemente im Stammverzeichnis werden hinzugefügt zu",
|
||||
"SearchMonitored": "Suche beobachtete",
|
||||
"ShowName": "Zeige Name",
|
||||
"SkipRedownload": "Überspringe erneuten Download",
|
||||
"StatusEndedContinuing": "Fortfahren",
|
||||
"Term": "Begriff",
|
||||
"UnableToLoadMetadataProviderSettings": "Einstellungen für Metadata Provider konnten nicht geladen werden",
|
||||
"UpdatingIsDisabledInsideADockerContainerUpdateTheContainerImageInstead": "Aktualisierung innerhalb des Docker Containers ist deaktiviert. Aktualisieren Sie stattdessen das Container Image.",
|
||||
"Started": "gestartet",
|
||||
"ContinuingNoAdditionalBooksAreExpected": "Keine weiteren Bücher werden erwartet",
|
||||
"DefaultMetadataProfileIdHelpText": "Standard Metadaten Profil für in diesem Ordner erkannte Autoren",
|
||||
"DefaultMonitorOptionHelpText": "Welche Bücher sollen beim erstmaligen Hinzufügen von Autoren, die in diesem Ordner gefunden wurden beobachtet werden",
|
||||
"DefaultQualityProfileIdHelpText": "Standard Qualitätsprofil für Autoren, die in diesem Ordner gefunden werden",
|
||||
"DefaultReadarrTags": "Standard Readarr Tags",
|
||||
"DeleteBookFile": "Buchdatei löschen",
|
||||
"OnHealthIssue": "Bei Zustandsproblem",
|
||||
"QualityProfileIdHelpText": "Qualitätsprofil mit dem Listemelemente hinzugefügt werden sollen",
|
||||
"UnmappedFiles": "Nicht zugewiesene Dateien",
|
||||
"AppDataLocationHealthCheckMessage": "Ein Update ist nicht möglich, um das Löschen von AppData beim Update zu verhindern",
|
||||
"UserAgentProvidedByTheAppThatCalledTheAPI": "UserAgent von der App welcher die API aufgerufen hat",
|
||||
"BookIndex": "Buch-Index",
|
||||
"BookMonitoring": "Buch-Beobachtung",
|
||||
"BooksTotal": "Bücher ({0})",
|
||||
"BookStudio": "Buchstudio",
|
||||
"BookTitle": "Buchtitel",
|
||||
"CalibreNotCalibreWeb": "Readarr kann mit Calibre's Content Server zusammenarbeiten. Es kann Calibre-Web, welches eine unabhängige Software ist, nicht verwenden.",
|
||||
"CalibreUrlBase": "Calibre Url-Basis",
|
||||
"CollapseMultipleBooks": "Mehrere Bücher einklappen",
|
||||
"CollapseMultipleBooksHelpText": "Mehrere Bücher mit demselben Erscheinungsdatum zusammenklappen",
|
||||
"Connect": "Verbinden",
|
||||
"ConnectSettingsSummary": "Benachrichtigungen, Verbindungen zu Medien Servern/Playern und eigene Skripte",
|
||||
"ContinuingMoreBooksAreExpected": "Weitere Bücher werden erwartet",
|
||||
"DefaultTagsHelpText": "Standard Readarr Tags für Autoren, die in diesem Ordner gefunden werden",
|
||||
"Development": "Entwicklung",
|
||||
"Disabled": "Deaktiviert",
|
||||
"DownloadClientCheckNoneAvailableMessage": "Kein Download Client verfügbar",
|
||||
"DownloadClientCheckUnableToCommunicateMessage": "Kommunikation mit {0} nicht möglich.",
|
||||
"DownloadClientsSettingsSummary": "Download Clients, Downloadverarbeitung und Remote-Pfadzuordnungen",
|
||||
"DownloadClientStatusCheckAllClientMessage": "Alle Download Clients sind aufgrund von Fehlern nicht verfügbar",
|
||||
"DownloadClientStatusCheckSingleClientMessage": "Download Clients aufgrund von Fehlern nicht verfügbar: {0}",
|
||||
"EditAuthor": "Autor bearbeiten",
|
||||
"EditBook": "Buch bearbeiten",
|
||||
"EditionsHelpText": "Ausgabe für dieses Buch ändern",
|
||||
"EmbedMetadataHelpText": "Calibre anweisen, Metadaten in die eigentliche Buchdatei zu schreiben",
|
||||
"EmbedMetadataInBookFiles": "Metadaten in Buchdatei einbetten",
|
||||
"EnableAutomaticAddHelpText": "Autor/Buch zu Readarr hinzufügen, wenn Synchronisierung via UI Oberfläche oder durch Readarr durchgeführt wird",
|
||||
"EndedAllBooksDownloaded": "Beendet (Alle Bücher heruntergeladen)",
|
||||
"AuthorIndex": "Autor Index",
|
||||
"AddedAuthorSettings": "Autor Einstellungen hinzugefügt",
|
||||
"IncludePreferredWhenRenaming": "Bevorzugungen bei Umbennenung beachten",
|
||||
"FilterPlaceHolder": "Buch filtern",
|
||||
"FirstBook": "Erstes Buch",
|
||||
"ForeignId": "Fremd-Id",
|
||||
"GoToAuthorListing": "Zu Autorenliste gehen",
|
||||
"HasMonitoredBooksNoMonitoredBooksForThisAuthor": "Keine beobachteten Bücher für diesen Autor",
|
||||
"HealthNoIssues": "Keine Probleme mit deiner Konfiguration",
|
||||
"HideBooks": "Bücher verstecken",
|
||||
"IgnoreDeletedBooks": "Ignoriere gelöschte Bücher",
|
||||
"IgnoredMetaHelpText": "Bücher werden ignoriert, wenn sie einen oder mehr dieser Begriffe enthalten (Groß- und Kleinschreibung wird nicht berücksichtigt)",
|
||||
"ImportListStatusCheckSingleClientMessage": "Listen aufgrund von Fehlern nicht verfügbar: {0}",
|
||||
"ImportMechanismHealthCheckMessage": "Aktiviere die Verarbeitung der abgeschlossenen Downloads",
|
||||
"IndexerRssHealthCheckNoIndexers": "Da keine Indexer mit aktivierter RSS-Synchronisierung aktiviert sind, erfasst Readarr neue Erscheinungen nicht automatisch",
|
||||
"IndexerSearchCheckNoInteractiveMessage": "Keine Indexer mit interaktiver Suche aktiviert, Readarr liefert keine interaktiven Suchergebnisse",
|
||||
"IndexerStatusCheckSingleClientMessage": "Indexer aufgrund von Fehlern nicht verfügbar: {0}",
|
||||
"ChownGroup": "chown Gruppe",
|
||||
"AllowFingerprintingHelpText": "Benutze Fingerabdrücke um die Genauigkeit der Buch Übereinstimmungen zu verbessern",
|
||||
"AllowFingerprintingHelpTextWarning": "Dies erfordert, dass Readarr Teile der Datei ließt, was dazu führt, dass Scans verlangsamt werden und eventuell hohe Schreib-/Netzwerkaktivitäten entstehen.",
|
||||
"AddImportListExclusionHelpText": "Verhindern, dass ein Buch zu Readarr durch Importlisten oder Aktualisierung des Autors hinzugefügt wird"
|
||||
}
|
||||
|
||||
@@ -188,8 +188,6 @@
|
||||
"LaunchBrowserHelpText": " Ανοίξτε ένα πρόγραμμα περιήγησης ιστού και μεταβείτε στην αρχική σελίδα του Radarr κατά την έναρξη της εφαρμογής.",
|
||||
"LoadingBookFilesFailed": "Η φόρτωση αρχείων ταινίας απέτυχε",
|
||||
"Local": "Τοπικός",
|
||||
"LocalPath": "Τοπικό μονοπάτι",
|
||||
"LocalPathHelpText": "Διαδρομή που πρέπει να χρησιμοποιήσει ο Radarr για πρόσβαση τοπικά στην απομακρυσμένη διαδρομή",
|
||||
"LogFiles": "Αρχεία καταγραφής",
|
||||
"LogLevel": "Επίπεδο καταγραφής",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Η καταγραφή ιχνών πρέπει να ενεργοποιηθεί προσωρινά",
|
||||
@@ -252,7 +250,6 @@
|
||||
"PosterSize": "Μέγεθος αφίσας",
|
||||
"Preferred": "Προνομιούχος",
|
||||
"PreviewRename": "Μετονομασία προεπισκόπησης",
|
||||
"PriorityHelpText": "Προτεραιότητα ευρετηρίου από 1 (Υψηλότερη) έως 50 (Χαμηλότερη). Προεπιλογή: 25.",
|
||||
"Profiles": "Προφίλ",
|
||||
"Proper": "Κατάλληλος",
|
||||
"PropersAndRepacks": "Propers και Repacks",
|
||||
@@ -271,7 +268,6 @@
|
||||
"RSSSync": "Συγχρονισμός RSS",
|
||||
"RSSSyncInterval": "Διάστημα συγχρονισμού RSS",
|
||||
"ReadTheWikiForMoreInformation": "Διαβάστε το Wiki για περισσότερες πληροφορίες",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Το Radarr υποστηρίζει οποιονδήποτε πελάτη λήψης που χρησιμοποιεί το πρότυπο Newznab, καθώς και άλλους πελάτες λήψης που αναφέρονται παρακάτω.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Το Radarr υποστηρίζει οποιοδήποτε ευρετήριο που χρησιμοποιεί το πρότυπο Newznab, καθώς και άλλους δείκτες που αναφέρονται παρακάτω.",
|
||||
"ReadarrTags": "Ετικέτες Radarr",
|
||||
"Real": "Πραγματικός",
|
||||
@@ -284,14 +280,11 @@
|
||||
"Redownload": "Κατεβάστε ξανά",
|
||||
"Refresh": "Φρεσκάρω",
|
||||
"RefreshInformationAndScanDisk": "Ανανέωση πληροφοριών και σάρωση δίσκου",
|
||||
"RefreshScan": "Ανανέωση & σάρωση",
|
||||
"ReleaseDate": "Ημερομηνίες κυκλοφορίας",
|
||||
"ReleaseGroup": "Ομάδα απελευθέρωσης",
|
||||
"ReleaseRejected": "Η απελευθέρωση απορρίφθηκε",
|
||||
"ReleaseWillBeProcessedInterp": "Η κυκλοφορία θα υποβληθεί σε επεξεργασία {0}",
|
||||
"Reload": "Φορτώνω πάλι",
|
||||
"RemotePath": "Απομακρυσμένη διαδρομή",
|
||||
"RemotePathHelpText": "Διαδρομή ρίζας στον κατάλογο στον οποίο έχει πρόσβαση το πρόγραμμα λήψης πελάτη",
|
||||
"RemotePathMappings": "Αντιστοιχίσεις απομακρυσμένης διαδρομής",
|
||||
"Remove": "Αφαιρώ",
|
||||
"RemoveCompletedDownloadsHelpText": "Κατάργηση εισαγόμενων λήψεων από το ιστορικό πελάτη λήψης",
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
"BackupRetentionHelpText": "Automatic backups older than the retention period will be cleaned up automatically",
|
||||
"Backups": "Backups",
|
||||
"BindAddress": "Bind Address",
|
||||
"BindAddressHelpText": "Valid IP4 address or '*' for all interfaces",
|
||||
"BindAddressHelpText": "Valid IPv4 address or '*' for all interfaces",
|
||||
"BindAddressHelpTextWarning": "Requires restart to take effect",
|
||||
"Blocklist": "Blocklist",
|
||||
"BlocklistHelpText": "Prevents Readarr from automatically grabbing these files again",
|
||||
@@ -101,7 +101,7 @@
|
||||
"CancelMessageText": "Are you sure you want to cancel this pending task?",
|
||||
"CatalogNumber": "Catalog Number",
|
||||
"CertificateValidation": "Certificate Validation",
|
||||
"CertificateValidationHelpText": "Change how strict HTTPS certification validation is",
|
||||
"CertificateValidationHelpText": "Change how strict HTTPS certification validation is. Do not change unless you understand the risks.",
|
||||
"ChangeFileDate": "Change File Date",
|
||||
"ChangeHasNotBeenSavedYet": "Change has not been saved yet",
|
||||
"ChmodFolder": "chmod Folder",
|
||||
@@ -173,8 +173,8 @@
|
||||
"DeleteNotificationMessageText": "Are you sure you want to delete the notification '{0}'?",
|
||||
"DeleteQualityProfile": "Delete Quality Profile",
|
||||
"DeleteQualityProfileMessageText": "Are you sure you want to delete the quality profile '{0}'?",
|
||||
"DeleteReleaseProfile": "Delete ReleaseProfile",
|
||||
"DeleteReleaseProfileMessageText": "Are you sure you want to delete this releaseProfile?",
|
||||
"DeleteReleaseProfile": "Delete Release Profile",
|
||||
"DeleteReleaseProfileMessageText": "Are you sure you want to delete this Release Profile?",
|
||||
"DeleteRootFolder": "Delete Root Folder",
|
||||
"DeleteRootFolderMessageText": "Are you sure you want to delete the root folder '{0}'?",
|
||||
"DeleteSelectedBookFiles": "Delete Selected Book Files",
|
||||
@@ -325,7 +325,7 @@
|
||||
"IndexerLongTermStatusCheckAllClientMessage": "All indexers are unavailable due to failures for more than 6 hours",
|
||||
"IndexerLongTermStatusCheckSingleClientMessage": "Indexers unavailable due to failures for more than 6 hours: {0}",
|
||||
"IndexerPriority": "Indexer Priority",
|
||||
"IndexerPriorityHelpText": "Indexer Priority from 1 (Highest) to 50 (Lowest). Default: 25.",
|
||||
"IndexerPriorityHelpText": "Indexer Priority from 1 (Highest) to 50 (Lowest). Default: 25. Used when grabbing releases as a tiebreaker for otherwise equal releases, Readarr will still use all enabled indexers for RSS Sync and Searching.",
|
||||
"IndexerRssHealthCheckNoAvailableIndexers": "All rss-capable indexers are temporarily unavailable due to recent indexer errors",
|
||||
"IndexerRssHealthCheckNoIndexers": "No indexers available with RSS sync enabled, Readarr will not grab new releases automatically",
|
||||
"Indexers": "Indexers",
|
||||
@@ -576,7 +576,7 @@
|
||||
"RemotePathMappingCheckFilesGenericPermissions": "Download client {0} reported files in {1} but Readarr cannot see this directory. You may need to adjust the folder's permissions.",
|
||||
"RemotePathMappingCheckFilesLocalWrongOSPath": "Local download client {0} reported files in {1} but this is not a valid {2} path. Review your download client settings.",
|
||||
"RemotePathMappingCheckFilesWrongOSPath": "Remote download client {0} reported files in {1} but this is not a valid {2} path. Review your remote path mappings and download client settings.",
|
||||
"RemotePathMappingCheckFolderPermissions": "Readarr can see but not access download directory {0}. Likely permissions error.",
|
||||
"RemotePathMappingCheckFolderPermissions": "Readarr can see but not access download directory {1}. Likely permissions error.",
|
||||
"RemotePathMappingCheckGenericPermissions": "Download client {0} places downloads in {1} but Readarr cannot see this directory. You may need to adjust the folder's permissions.",
|
||||
"RemotePathMappingCheckImportFailed": "Readarr failed to import a book. Check your logs for details.",
|
||||
"RemotePathMappingCheckLocalFolderMissing": "Remote download client {0} places downloads in {1} but this directory does not appear to exist. Likely missing or incorrect remote path mapping.",
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"BackupFolderHelpText": "Las rutas relativas estarán en el directorio AppData de Radarr",
|
||||
"BackupNow": "Backup Ahora",
|
||||
"BackupRetentionHelpText": "Backups automáticos anteriores al período de retención serán borrados automáticamente",
|
||||
"Backups": "Backups",
|
||||
"Backups": "Copias de seguridad",
|
||||
"BindAddress": "Dirección de Ligado",
|
||||
"BindAddressHelpText": "Dirección IP4 válida o '*' para todas las interfaces",
|
||||
"BindAddressHelpTextWarning": "Requiere reiniciar para que surta efecto",
|
||||
@@ -180,10 +180,10 @@
|
||||
"IncludeHealthWarningsHelpText": "Incluir Alertas de Salud",
|
||||
"IncludeUnknownAuthorItemsHelpText": "Mostrar items sin ninguna película en la cola, esto incluye películas renombradas o cualquier otra cosa en la categoría de Radarr",
|
||||
"IncludeUnmonitored": "Icluir No Monitoreados",
|
||||
"Indexer": "Indexer",
|
||||
"Indexer": "Indexador",
|
||||
"IndexerPriority": "Prioridad del Indexer",
|
||||
"IndexerSettings": "Ajustes de Indexer",
|
||||
"Indexers": "Indexers",
|
||||
"Indexers": "Indexadores",
|
||||
"Interval": "Intervalo",
|
||||
"IsCutoffCutoff": "Corte",
|
||||
"IsCutoffUpgradeUntilThisQualityIsMetOrExceeded": "Actualizar hasta que se alcance o supere esta calidad",
|
||||
@@ -192,8 +192,6 @@
|
||||
"LaunchBrowserHelpText": " Abrir un navegador web e ir a la página de inicio de Radarr al arrancar la app.",
|
||||
"LoadingBookFilesFailed": "La carga de los archivos ha fallado",
|
||||
"Local": "Local",
|
||||
"LocalPath": "Ruta Local",
|
||||
"LocalPathHelpText": "La ruta que Radarr tiene que usar para acceder a la ruta remota localmente",
|
||||
"LogFiles": "Archivos de Registro",
|
||||
"LogLevel": "Nivel de Registro",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "El registro de seguimiento se ha de habilitar solo temporalmente",
|
||||
@@ -255,7 +253,6 @@
|
||||
"PosterSize": "Tamaño del Poster",
|
||||
"Preferred": "Privilegiado",
|
||||
"PreviewRename": "Previsualizar Renombrado",
|
||||
"PriorityHelpText": "Prioridad del Indexer de 1 (La más alta) a 50 (La más baja). Por defecto: 25.",
|
||||
"Profiles": "Perfiles",
|
||||
"Proper": "Apropiado",
|
||||
"PropersAndRepacks": "Propers y Repacks",
|
||||
@@ -275,7 +272,6 @@
|
||||
"RSSSync": "Sincronización RSS",
|
||||
"RSSSyncInterval": "Intervalo de Sincronización de RSS",
|
||||
"ReadTheWikiForMoreInformation": "Lee la Wiki para más información",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Raddar soporta cualquier gestor de descargas que utilice el estandar Newznab, como también los clientes indicados debajo.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr soporta cualquier indexer que utilice el estandar Newznab, como también cualquiera de los indexers listados debajo.",
|
||||
"ReadarrTags": "Etiquetas de Radarr",
|
||||
"Real": "Real",
|
||||
@@ -288,14 +284,11 @@
|
||||
"Redownload": "Volver a descargar",
|
||||
"Refresh": "Actualizar",
|
||||
"RefreshInformationAndScanDisk": "Actualizar la información al escanear el disco",
|
||||
"RefreshScan": "Actualizar y Escanear",
|
||||
"ReleaseDate": "Fechas de Estreno",
|
||||
"ReleaseGroup": "Grupo de Estreno",
|
||||
"ReleaseRejected": "Lanzamiento Rechazado",
|
||||
"ReleaseWillBeProcessedInterp": "El lanzamiento será procesado {0}",
|
||||
"Reload": "Recargar",
|
||||
"RemotePath": "Ruta Remota",
|
||||
"RemotePathHelpText": "Ruta de origen al directorio al que accede el Gestor de Descargas",
|
||||
"RemotePathMappings": "Mapeados de Rutas Remotas",
|
||||
"Remove": "Eliminar",
|
||||
"RemoveCompletedDownloadsHelpText": "Eliminar las descargas ya importadas del historial del gestor de descargas",
|
||||
@@ -454,7 +447,7 @@
|
||||
"Version": "Versión",
|
||||
"WeekColumnHeader": "Encabezado de la columna semanal",
|
||||
"Year": "Año",
|
||||
"YesCancel": "Si, Cancela",
|
||||
"YesCancel": "Si, cancelar",
|
||||
"20MinutesTwenty": "20 Minutos: {0}",
|
||||
"DownloadClientCheckDownloadingToRoot": "El cliente de descargas {0} coloca las descargas en la carpeta raíz {1}. No debe descargar a una carpeta raíz.",
|
||||
"MaintenanceRelease": "Lanzamiento de mantenimiento",
|
||||
@@ -485,11 +478,41 @@
|
||||
"CreateEmptyAuthorFolders": "Crear carpetas de películas vacías",
|
||||
"SelectAll": "Seleccionar Todas",
|
||||
"SelectedCountBooksSelectedInterp": "{0} Película(s) Seleccionada(s)",
|
||||
"ThisCannotBeCancelled": "Esto no se puede cancelar una vez iniciado sin reiniciar Radarr.",
|
||||
"ThisCannotBeCancelled": "Esto no puede ser cancelado una vez iniciado sin deshabilitar todos sus indexadores.",
|
||||
"All": "Todas",
|
||||
"RescanAfterRefreshHelpText": "Reescanear la carpeta de películas después de actualizar la película",
|
||||
"ShowUnknownAuthorItems": "Mostrar Elementos Desconocidos",
|
||||
"UnselectAll": "Deseleccionar Todo",
|
||||
"UpdateSelected": "Actualizar Seleccionadas",
|
||||
"Wanted": "Buscado"
|
||||
"Wanted": "Buscado",
|
||||
"AllAuthorBooks": "Todos los libros del autor",
|
||||
"AllExpandedCollapseAll": "Cerrar todo",
|
||||
"AllowAuthorChangeClickToChangeAuthor": "Click para cambiar el autor",
|
||||
"AddedAuthorSettings": "Añadidas las opciones de Autor",
|
||||
"AddImportListExclusionHelpText": "Evitar que el libro se añada a Readarr mediante listas de importación o la actualización del autor",
|
||||
"AddMissing": "Añadir los que faltan",
|
||||
"AllBooks": "Todos los libros",
|
||||
"AddNewItem": "Añadir nuevo item",
|
||||
"AllExpandedExpandAll": "Expandir todo",
|
||||
"AllowedLanguages": "Idiomas permitidos",
|
||||
"RemotePathMappingCheckFileRemoved": "El archivo {0} fue eliminado a mitad del proceso.",
|
||||
"RemotePathMappingCheckFilesBadDockerPath": "Está utilizando docker; el cliente de descarga {0} informó de archivos en {1} pero esta no es una ruta válida {2}. Revise sus mapeos de rutas remotas y la configuración del cliente de descarga.",
|
||||
"RemotePathMappingCheckFilesLocalWrongOSPath": "El cliente de descarga local {0} informó de la existencia de archivos en {1}, pero no es una ruta válida {2}. Revise la configuración de su cliente de descarga.",
|
||||
"RemotePathMappingCheckFilesWrongOSPath": "El cliente de descarga remota {0} informó de la existencia de archivos en {1}, pero ésta no es una ruta válida de {2}. Revise los mapeos de la ruta remota y la configuración del cliente de descarga.",
|
||||
"RemotePathMappingCheckWrongOSPath": "El cliente de descarga remota {0} coloca las descargas en {1} pero esta no es una ruta válida {2}. Revise los mapeos de las rutas remotas y la configuración del cliente de descarga.",
|
||||
"Started": "Iniciado",
|
||||
"Yesterday": "Ayer",
|
||||
"UpdateAvailable": "La nueva actualización está disponible",
|
||||
"Duration": "Duración",
|
||||
"AppDataLocationHealthCheckMessage": "La actualización no será posible para evitar que se elimine AppData durante la actualización",
|
||||
"Lists": "Listas",
|
||||
"SizeLimit": "Tamaño límite",
|
||||
"IndexerJackettAll": "Indexadores que utilizan el Endpoint Jackett 'all' no están soportados: {0}",
|
||||
"RemotePathMappingCheckLocalFolderMissing": "El cliente de descarga remota {0} coloca las descargas en {1} pero este directorio no parece existir. Probablemente falta o el mapeo de la ruta remota es incorrecto.",
|
||||
"RemotePathMappingCheckLocalWrongOSPath": "El cliente de descarga local {0} coloca las descargas en {1} pero ésta no es una ruta válida {2}. Revise la configuración de su cliente de descarga.",
|
||||
"RemotePathMappingCheckRemoteDownloadClient": "El cliente de descarga remota {0} informó de la existencia de archivos en {1} pero este directorio no parece existir. Probablemente falta mapear la ruta remota.",
|
||||
"RemotePathMappingCheckBadDockerPath": "Está utilizando docker; el cliente de descarga {0} coloca las descargas en {1} pero esta no es una ruta válida {2}. Revisa tus mapeos de rutas remotas y la configuración del cliente de descarga.",
|
||||
"RemotePathMappingCheckDockerFolderMissing": "Está utilizando docker; el cliente de descarga {0} coloca las descargas en {1} pero este directorio no parece existir dentro del contenedor. Revisa tus mapeos de rutas remotas y la configuración del volumen del contenedor.",
|
||||
"Filters": "Filtros",
|
||||
"FileWasDeletedByViaUI": "El archivo se eliminó a través de la interfaz de usuario"
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"AnalyticsEnabledHelpTextWarning": "Käyttöönotto vaatii uudelleenkäynnistyksen.",
|
||||
"Delete": "Poista",
|
||||
"None": "Ei mitään",
|
||||
"RootFolder": "Juurikansio",
|
||||
"RootFolder": "Pääkansio",
|
||||
"ShowPath": "Näytä sijainti",
|
||||
"SslCertPasswordHelpTextWarning": "Käyttöönotto vaatii uudelleenkäynnistyksen.",
|
||||
"20MinutesTwenty": "20 minuuttia: {0}",
|
||||
@@ -18,7 +18,7 @@
|
||||
"AlreadyInYourLibrary": "Elokuva on jo kirjastossasi",
|
||||
"AlternateTitles": "Vaihtoehtoiset nimet",
|
||||
"Analytics": "Analytiikka",
|
||||
"AnalyticsEnabledHelpText": "Lähetä nimettömiä käyttö- ja virhetietoja Readarrin palvelimille. Tämä sisältää tietoja selaimestasi, verkkokäyttöliittymän sivujen käytöstä, virheraportoinnista sekä käyttöjärjestelmästäsi ja versiosta. Käytämme näitä tietoja ominaisuuksien ja virhekorjauksien painotukseen.",
|
||||
"AnalyticsEnabledHelpText": "Lähetä nimettömiä käyttö- ja virhetietoja sovelluksen palvelimille. Tämä sisältää tietoja selaimestasi, verkkokäyttöliittymän sivujen käytöstä, virheraportoinnista sekä käyttöjärjestelmästäsi ja versiosta. Käytämme näitä tietoja ominaisuuksien ja virhekorjauksien painotukseen.",
|
||||
"AppDataDirectory": "AppData-kansio",
|
||||
"ApplyTags": "Toimenpide tunnisteille",
|
||||
"ApplyTagsHelpTexts1": "Tunnisteisiin kohdistettavat toimenpiteet:",
|
||||
@@ -26,12 +26,12 @@
|
||||
"ApplyTagsHelpTexts3": "– 'Poista' ainoastaan syötetyt tunnisteet",
|
||||
"ApplyTagsHelpTexts4": "– 'Korvaa' kaikki aiemmat tunnisteet tai poista kaikki tunnisteet jättämällä tyhjäksi",
|
||||
"Authentication": "Todennus",
|
||||
"AuthenticationMethodHelpText": "Vaadi Readarrin käyttöön käyttäjätunnus ja salasana",
|
||||
"AuthenticationMethodHelpText": "Vaadi käyttäjätunnus ja salasana.",
|
||||
"AuthorClickToChangeBook": "Vaihda kirjaa painamalla",
|
||||
"AutoRedownloadFailedHelpText": "Etsi ja yritä ladata toinen julkaisu automaattisesti",
|
||||
"AutoUnmonitorPreviouslyDownloadedBooksHelpText": "Levyltä poistettuja kirjoja ei poisteta Radarrin seurannasta automaattisesti",
|
||||
"Automatic": "Automaattinen",
|
||||
"BackupFolderHelpText": "Suhteelliset polut kohdistuvat Readarrin AppData-kansioon.",
|
||||
"BackupFolderHelpText": "Suhteelliset polut kohdistuvat sovelluksen AppData-kansioon.",
|
||||
"BackupNow": "Varmuuskopioi nyt",
|
||||
"BackupRetentionHelpText": "Säilytysjaksoa vanhemmat, automaattiset varmuuskopiot poistetaan automaattisesti.",
|
||||
"Backups": "Varmuuskopiointi",
|
||||
@@ -47,7 +47,7 @@
|
||||
"Cancel": "Peruuta",
|
||||
"CancelMessageText": "Haluatko varmasti perua tämän odottavan tehtävän?",
|
||||
"CertificateValidation": "Varmenteen vahvistus",
|
||||
"CertificateValidationHelpText": "Määritä HTTPS-varmenteen käyttölaajuus.",
|
||||
"CertificateValidationHelpText": "Valitse HTTPS-varmenteen vahvistuksen tarkkuus. Älä muuta, jollet ymmärrä tähän liittyviä riskejä.",
|
||||
"ChangeFileDate": "Muuta tiedoston päiväys",
|
||||
"ChangeHasNotBeenSavedYet": "Muutosta ei ole vielä tallennettu",
|
||||
"ChmodFolder": "chmod-kansio",
|
||||
@@ -124,7 +124,7 @@
|
||||
"EnableInteractiveSearch": "Vuorovaikutteinen haku",
|
||||
"EnableRSS": "RSS-syöte",
|
||||
"EnableSSL": "SSL-salaus",
|
||||
"EnableSslHelpText": " Käyttöönotto vaatii uudelleenkäynnistyksen järjestelmänvalvojan oikeuksilla.",
|
||||
"EnableSslHelpText": " Käyttöönotto edellyttää uudelleenkäynnistystä järjestelmänvalvojan oikeuksilla.",
|
||||
"Ended": "Päättynyt",
|
||||
"ErrorLoadingContents": "Sisällönlatauksen virhe",
|
||||
"ErrorLoadingPreviews": "Esikatselujen latauksen virhe",
|
||||
@@ -187,8 +187,6 @@
|
||||
"LaunchBrowserHelpText": " Avaa readarrin verkkokäyttöliittymä verkkoselaimeen sovelluksen käynnistyksen yhteydessä.",
|
||||
"LoadingBookFilesFailed": "Elokuvatiedostojen lataaminen epäonnistui",
|
||||
"Local": "Paikalliset",
|
||||
"LocalPath": "Paikallinen sijainti",
|
||||
"LocalPathHelpText": "Polku, jota Radarrin tulisi käyttää päästäksesi etäpolulle paikallisesti",
|
||||
"LogFiles": "Lokitiedostot",
|
||||
"LogLevel": "Kirjauksen taso",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Jäljityksen kirjaaminen tulisi ottaa käyttöön vain väliaikaisesti",
|
||||
@@ -229,7 +227,7 @@
|
||||
"NoLogFiles": "Ei lokitiedostoja",
|
||||
"NoMinimumForAnyRuntime": "Ei toistoajan vähimmäiskestoa",
|
||||
"NoUpdatesAreAvailable": "Päivityksiä ei ole saatavilla",
|
||||
"NotificationTriggers": "Laukaisimet",
|
||||
"NotificationTriggers": "Laukaisijat",
|
||||
"OnGrabHelpText": "Kun elokuva siepataan",
|
||||
"OnHealthIssueHelpText": "Kun havaitaan kuntoon liittyvä ongelma",
|
||||
"OnRenameHelpText": "Kun elokuva nimetään uudelleen",
|
||||
@@ -250,7 +248,6 @@
|
||||
"PosterSize": "Julisteen koko",
|
||||
"Preferred": "Ensisijainen",
|
||||
"PreviewRename": "Esikatselu Nimeä uudelleen",
|
||||
"PriorityHelpText": "Tietolähteen painotus: 1 (korkein) - 50 (matalin). Oletusarvo on 25.",
|
||||
"Profiles": "Profiilit",
|
||||
"Proper": "Kunnollinen",
|
||||
"PropersAndRepacks": "Proper- ja repack-julkaisut",
|
||||
@@ -270,7 +267,6 @@
|
||||
"RSSSync": "RSS-synkronointi",
|
||||
"RSSSyncInterval": "RSS-synkronointiväli",
|
||||
"ReadTheWikiForMoreInformation": "Lue lisätietoja Wikistä",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Readarr tukee kaikkien Newznab-yhteensopivien lataustyökalujen ohella myös monia muita alla listattuja torrent- ja Usenet-lataustyökaluja.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Readarr tukee Newznab- ja Torznab-yhteensopivien tietolähteiden ohella myös monia muita alla lueteltuja tietolähteitä.",
|
||||
"ReadarrTags": "Radarr-tunnisteet",
|
||||
"Real": "Todellinen",
|
||||
@@ -283,14 +279,11 @@
|
||||
"Redownload": "Lataa uudelleen",
|
||||
"Refresh": "Päivitä",
|
||||
"RefreshInformationAndScanDisk": "Päivitä tiedot ja tarkista levy",
|
||||
"RefreshScan": "Päivitä ja skannaa",
|
||||
"ReleaseDate": "Julkaisupäivät",
|
||||
"ReleaseGroup": "Julkaisuryhmä",
|
||||
"ReleaseRejected": "Vapautus hylätty",
|
||||
"ReleaseWillBeProcessedInterp": "Julkaisu käsitellään {0}",
|
||||
"Reload": "Lataa uudelleen",
|
||||
"RemotePath": "Etäsijainti",
|
||||
"RemotePathHelpText": "Lataustyökalun käyttämän hakemiston juurisijainti",
|
||||
"RemotePathMappings": "Etäreittien kartoitukset",
|
||||
"Remove": "Poista",
|
||||
"RemoveCompletedDownloadsHelpText": "Poista tuodut lataukset asiakasasiakashistoriasta",
|
||||
@@ -304,7 +297,7 @@
|
||||
"RemoveTagExistingTag": "Olemassa oleva tunniste",
|
||||
"RemoveTagRemovingTag": "Tunniste poistetaan",
|
||||
"RemovedFromTaskQueue": "Poistettu tehtäväjonosta",
|
||||
"RenameBooksHelpText": "Radarr käyttää olemassa olevaa tiedostonimeä, jos uudelleennimeäminen on poistettu käytöstä",
|
||||
"RenameBooksHelpText": "Jos uudelleennimeäminen ei ole käytössä, käytetään olemassa olevaa tiedostonimeä.",
|
||||
"Reorder": "Järjestä uudelleen",
|
||||
"ReplaceIllegalCharacters": "Korvaa kielletyt merkit",
|
||||
"RequiredHelpText": "Julkaisun tulee sisältää ainakin yksi näistä termeistä (kirjainkokoa ei huomioida).",
|
||||
@@ -313,7 +306,7 @@
|
||||
"RescanAuthorFolderAfterRefresh": "Tarkista kirjailijakansio päivityksen jälkeen uudelleen",
|
||||
"Reset": "Uudista",
|
||||
"ResetAPIKey": "Uudista API-avain",
|
||||
"ResetAPIKeyMessageText": "Haluatko varmasti nollata API-avaimesi?",
|
||||
"ResetAPIKeyMessageText": "Haluatko varmasti uudistaa API-avaimesi?",
|
||||
"Restart": "Käynnistä uudelleen",
|
||||
"RestartNow": "Käynnistä uudelleen nyt",
|
||||
"RestartReadarr": "Käynnistä Radarr uudelleen",
|
||||
@@ -323,7 +316,7 @@
|
||||
"Retention": "Säilytys",
|
||||
"RetentionHelpText": "Vain Usenet: Aseta nollaan asettamaan rajoittamaton säilytys",
|
||||
"RetryingDownloadInterp": "Yritetään ladata uudelleen {0} osoitteessa {1}",
|
||||
"RootFolders": "Juurikansiot",
|
||||
"RootFolders": "Pääkansiot",
|
||||
"RssSyncIntervalHelpText": "Aikaväli minuutteina. Poista käytöstä asettamalla arvoksi '0' (tämä lopettaa julkaisujen automaattisen sieppauksen).",
|
||||
"SSLCertPassword": "SSL-varmenteen salasana",
|
||||
"SSLCertPath": "SSL-varmenteen sijainti",
|
||||
@@ -349,14 +342,14 @@
|
||||
"ShowQualityProfile": "Näytä laatuprofiili",
|
||||
"ShowQualityProfileHelpText": "Näytä laatuprofiili julisteen alla.",
|
||||
"ShowRelativeDates": "Näytä suhteutetut päiväykset",
|
||||
"ShowRelativeDatesHelpText": "Käytä näyttääksesi suhteelliset päiväykset (tänään/eilen/yms.) tai käytä absoluuttisia päiväyksiä.",
|
||||
"ShowRelativeDatesHelpText": "Näytä suhteutetut (tänään/eilen/yms.) tai absoluuttiset päiväykset.",
|
||||
"ShowSearch": "Näytä haku",
|
||||
"ShowSearchActionHelpText": "Näytä hakupainike osoitettaessa.",
|
||||
"ShowSizeOnDisk": "Näytä tiedostokoko",
|
||||
"ShownAboveEachColumnWhenWeekIsTheActiveView": "Näkyy jokaisen sarakkeen yläpuolella käytettäessä viikkonäkymää.",
|
||||
"Size": " Koko",
|
||||
"SkipFreeSpaceCheck": "Ohita vapaan levytilan tarkistus",
|
||||
"SkipFreeSpaceCheckWhenImportingHelpText": "Käytä, kun Readarr ei tunnista vaapaata tilaa kirjailijoidesi juurikansiosta",
|
||||
"SkipFreeSpaceCheckWhenImportingHelpText": "Käytä, kun vaapaata tilaa ei tunnisteta kirjailijoidesi pääkansiosta",
|
||||
"SorryThatAuthorCannotBeFound": "Valitettavasti kirjailijaa ei löydy.",
|
||||
"SorryThatBookCannotBeFound": "Valitettavasti elokuvaa ei löydy.",
|
||||
"Source": "Lähdekoodi",
|
||||
@@ -382,7 +375,7 @@
|
||||
"TestAll": "Testaa kaikki",
|
||||
"TestAllClients": "Testaa kaikki lataustyökalut",
|
||||
"TestAllIndexers": "Testaa tietolähteet",
|
||||
"TestAllLists": "Testaa kaikki luettelot",
|
||||
"TestAllLists": "Testaa listat",
|
||||
"ThisWillApplyToAllIndexersPleaseFollowTheRulesSetForthByThem": "Tämä koskee kaikkia tietolähteitä. Noudata niiden asettamia sääntöjä.",
|
||||
"TimeFormat": "Kellonajan esitystapa",
|
||||
"Title": "Nimike",
|
||||
@@ -391,7 +384,7 @@
|
||||
"Torrents": "Torrentit",
|
||||
"TotalFileSize": "Tiedoston koko",
|
||||
"UILanguage": "Käyttöliittymän kieli",
|
||||
"UILanguageHelpText": "Kieli, jota Radarr käyttää käyttöliittymään",
|
||||
"UILanguageHelpText": "Käyttöliittymä näytetään tällä kielellä.",
|
||||
"UILanguageHelpTextWarning": "Käyttöönotto vaatii selaimen sivupäivityksen.",
|
||||
"UISettings": "Käyttöliittymän asetukset",
|
||||
"URLBase": "URL-perusta",
|
||||
@@ -423,7 +416,7 @@
|
||||
"UnableToLoadQualityProfiles": "Laatuprofiilien lataus epäonnistui.",
|
||||
"UnableToLoadReleaseProfiles": "Viiveprofiileja ei voi ladata",
|
||||
"UnableToLoadRemotePathMappings": "Etäsijaintien kartoitusten lataus epäonnistui.",
|
||||
"UnableToLoadRootFolders": "Juurikansioiden lataus epäonnistui.",
|
||||
"UnableToLoadRootFolders": "Pääkansioiden lataus epäonnistui.",
|
||||
"UnableToLoadTags": "Tunnisteiden lataus epäonnistui.",
|
||||
"UnableToLoadTheCalendar": "Kalenterin lataus epäonnistui.",
|
||||
"UnableToLoadUISettings": "Käyttöliittymän asetuksien lataus epäonnistui.",
|
||||
@@ -431,7 +424,7 @@
|
||||
"Unmonitored": "Ei valvottu",
|
||||
"UnmonitoredHelpText": "Sisällytä ei-valvotut kirjat iCal-syötteeseen.",
|
||||
"UpdateAll": "Päivitä kaikki",
|
||||
"UpdateAutomaticallyHelpText": "Lataa ja asenna päivitykset automaattisesti. Voit silti asentaa ne myös lähteestä System:Updates.",
|
||||
"UpdateAutomaticallyHelpText": "Lataa ja asenna päivitykset automaattisesti. Voit edelleen asentaa ne myös lähteestä System:Updates.",
|
||||
"UpdateMechanismHelpText": "Käytä Readarrin sisäänrakennettua päivitystoimintoa tai omaa komentosarjaasi.",
|
||||
"UpdateScriptPathHelpText": "Polku komentosarjaan, joka käsittelee puretun päivitystiedoston ja hoitaa asennuksen loppuosuuden.",
|
||||
"Updates": "Päivitykset",
|
||||
@@ -444,19 +437,19 @@
|
||||
"UsenetDelay": "Usenet-viive",
|
||||
"UsenetDelayHelpText": "Viivästy muutamassa minuutissa odottaaksesi, ennen kuin tartut julkaisun Usenetiin",
|
||||
"Username": "Käyttäjätunnus",
|
||||
"UsingExternalUpdateMechanismBranchToUseToUpdateReadarr": "Haara, jota käytetään Radarrin päivittämiseen",
|
||||
"UsingExternalUpdateMechanismBranchUsedByExternalUpdateMechanism": "Ulkoisen päivittysmekanismin käyttämä kehityshaara",
|
||||
"UsingExternalUpdateMechanismBranchToUseToUpdateReadarr": "Sovelluksen versiopäivityksiin käytettävä kehityshaara.",
|
||||
"UsingExternalUpdateMechanismBranchUsedByExternalUpdateMechanism": "Ulkoisen päivitysratkaisun käyttämä kehityshaara.",
|
||||
"Version": "Versio",
|
||||
"WeekColumnHeader": "Viikkosarakkeen otsikko",
|
||||
"Year": "Vuosi",
|
||||
"YesCancel": "Kyllä, peruuta",
|
||||
"ApiKeyHelpTextWarning": "Käyttöönotto vaatii uudelleenkäynnistyksen.",
|
||||
"DeleteRootFolderMessageText": "Haluatko varmasti poistaa juurikansion '{0}'?",
|
||||
"DeleteRootFolderMessageText": "Haluatko varmasti poistaa pääkansion '{0}'?",
|
||||
"LoadingBooksFailed": "Elokuvatiedostojen lataaminen epäonnistui",
|
||||
"ProxyPasswordHelpText": "Käyttäjätunnus ja salasana tulee syöttää vain tarvittaessa. Muussa tapauksessa jätä kentät tyhjiksi.",
|
||||
"SslCertPathHelpTextWarning": "Käyttöönotto vaatii uudelleenkäynnistyksen.",
|
||||
"UnableToLoadMetadataProfiles": "Viiveprofiileja ei voi ladata",
|
||||
"DownloadClientCheckDownloadingToRoot": "Lataustyökalu '{0}' sijoittaa lataukset juurikansioon '{1}' ja näin ei pitäisi tehdä, vaan lataukset tulee tallentaa erilliseen sijaintiin.",
|
||||
"UnableToLoadMetadataProfiles": "Metatietoprofiilien lataus epäonnistui.",
|
||||
"DownloadClientCheckDownloadingToRoot": "Lataustyökalu '{0}' sijoittaa lataukset pääkansioon '{1}' ja näin ei pitäisi tehdä, vaan lataukset tulee tallentaa erilliseen sijaintiin.",
|
||||
"ReplaceIllegalCharactersHelpText": "Korvaa laittomat merkit. Jos ei käytössä, laittomat merkit poistetaan.",
|
||||
"OutputPath": "Tallennussijainti",
|
||||
"Progress": "Edistyminen",
|
||||
@@ -475,11 +468,11 @@
|
||||
"Level": "Taso",
|
||||
"RemoveFromBlocklist": "Poista estolistalta",
|
||||
"UnableToLoadBlocklist": "Estonlistan lataus epäonnistui.",
|
||||
"ReleaseBranchCheckOfficialBranchMessage": "Branch {0} ei ole kelvollinen Radarr-julkaisuhakemisto, et saa päivityksiä",
|
||||
"ReleaseBranchCheckOfficialBranchMessage": "Haara {0} ei ole kelvollinen sovelluksen julkaisuhaara, etkä sen vuoksi vastaanota päivityksiä.",
|
||||
"Time": "Aika",
|
||||
"Blocklist": "Estolista",
|
||||
"BlocklistRelease": "Lisää julkaisu estolistalle",
|
||||
"MaintenanceRelease": "Huoltojulkaisu: Virhekorjauksia ja muita parannuksia. Lue lisää Githubin historiasta muutoshistoriasta.",
|
||||
"MaintenanceRelease": "Huoltojulkaisu: Korjauksia ja muita parannuksia. Lue lisää Githubin historiasta muutoshistoriasta.",
|
||||
"DeleteImportList": "Poista tuontilista",
|
||||
"SkipBooksWithNoISBNOrASIN": "Ohita kirjat, joilta puuttuu ISBN- tai ASIN-tunniste",
|
||||
"ImportListExclusions": "Tuotilistojen poikkeukset",
|
||||
@@ -487,15 +480,14 @@
|
||||
"ShowTitleHelpText": "Näytä kirjailijan nimi julisteen alla",
|
||||
"ShowUnknownAuthorItems": "Näytä 'Tuntemattomat kirjailijat' -kohde",
|
||||
"SkipBooksWithMissingReleaseDate": "Ohita kirjat, joilta puuttuu julkaisupäivä",
|
||||
"Timeleft": "Aikaa jäljellä",
|
||||
"UrlBaseHelpText": "Käänteisen välityspalvelimen tuki (esim. 'http://[host]:[port]/[urlBase]'). Oletus on tyhjä.",
|
||||
"UrlBaseHelpText": "Lisää Calibren URL-osoitteeseen etuliitteen, (esim. 'http://[host]:[port]/[urlBase]').",
|
||||
"Author": "Kirjailija",
|
||||
"BackupIntervalHelpText": "Readarrin tietokannan ja asetusten automaattisen varmuuskopioinnin suoritusaikaväli.",
|
||||
"BlocklistHelpText": "Estää Readarria sieppaamasta tätä julkaisua automaattisesti uudelleen.",
|
||||
"BlocklistHelpText": "Estää julkaisun automaattisen uudelleensieppauksen.",
|
||||
"TagsHelpText": "Käytetään vähintään yhdellä täsmäävällä tunnisteella merkityille kirjailijoille. Käytä kaikille jättämällä tyhjäksi.",
|
||||
"WriteAudioTagsScrubHelp": "Poista olemassa olevat tagit tiedostoista säilyttäen vain Readarrin lisäämät tagit.",
|
||||
"DefaultTagsHelpText": "Oletustustunnisteet tästä kansiosta löydetyille kirjailijoille.",
|
||||
"DefaultReadarrTags": "Readarrin oletustunnisteet",
|
||||
"DefaultTagsHelpText": "Kansiosta löydetyille kirjailijoille oletusarvoisesti määritettävät tunnisteet.",
|
||||
"DefaultReadarrTags": "Oletustunnisteet",
|
||||
"ExistingTagsScrubbed": "Olemassa olevat tunnisteet on poistettu",
|
||||
"WriteAudioTagsScrub": "Tyhjennä tagit",
|
||||
"WriteBookTagsHelpTextWarning": "'Kaikki tiedostot' -valinnat käsittelevät myös olemassa olevien tiedostojen tagit tuonnin yhteydessä.",
|
||||
@@ -504,11 +496,11 @@
|
||||
"WriteTagsNo": "Ei koskaan",
|
||||
"WriteTagsSync": "Kaikki tiedostot, Goodreads-synkronoinnilla",
|
||||
"WriteTagsAll": "Kaikki tiedostot, alkuperäisen tuonnin yhteydessä",
|
||||
"NoTagsHaveBeenAddedYet": "Tunnisteita ei ole vielä lisätty. Lisää tunnisteita määrittääksesi kirjailijoille viiveprofiileja, rajoituksia tai ilmoituksia. Paina '{0}' lukeaksesi lisää tunnisteista Readarrissa.",
|
||||
"NoTagsHaveBeenAddedYet": "Tunnisteita ei ole vielä lisätty. Lisää tunnisteita määrittääksesi kirjailijoille viiveprofiileja, rajoituksia tai ilmoituksia. Paina '{0}' lukeaksesi lisää tunnisteista.",
|
||||
"EnabledHelpText": "Käytä tätä julkaisuprofiilia.",
|
||||
"CreateEmptyAuthorFolders": "Luo kirjailijoille tyhjät kansiot",
|
||||
"RescanAfterRefreshHelpText": "Tarkista kirjailijakansion sisältö uudelleen elokuvan päivityksen jälkeen.",
|
||||
"ThisCannotBeCancelled": "Tämän peruminen ei ole aloituksen jälkeen mahdollista käynnistämättä Readarria uudelleen.",
|
||||
"ThisCannotBeCancelled": "Tämän peruminen on aloituksen jälkeen mahdollista vain poistamalla kaikki tietolähteet käytöstä.",
|
||||
"UnselectAll": "Poista kaikkien valinta",
|
||||
"DeleteFilesHelpText": "Poista kirjatiedostot ja kirjailijakansio",
|
||||
"MonitoredHelpText": "Kirjailijan kirjoja etsitään ja ne ladataan, jos ne ovat saatavilla.",
|
||||
@@ -517,7 +509,7 @@
|
||||
"BookEditor": "Kirjaeditori",
|
||||
"BookIndex": "Kirjahakemisto",
|
||||
"Book": "Kirja",
|
||||
"AddedAuthorSettings": "Lisätyn kirjailijan asetukset",
|
||||
"AddedAuthorSettings": "Uuden kirjailijan oletusasetukset",
|
||||
"AddImportListExclusionHelpText": "Estä kirjan lisäys Readarriin tuontilistoilta tai päivitettäessä kirjailijaa",
|
||||
"AddMissing": "Lisää puuttuvat",
|
||||
"AddNewItem": "Lisää uusi kohde",
|
||||
@@ -534,7 +526,7 @@
|
||||
"AuthorNameHelpText": "Poissuljettavan kirjailijan/kirjan nimi (voi olla mitä tahansa merkityksellistä)",
|
||||
"Authors": "Kirjailijat",
|
||||
"AutomaticallySwitchEdition": "Automaattinen version vaihto",
|
||||
"DefaultQualityProfileIdHelpText": "Oletustusarvoinen laatuprofiili tästä kansiosta löydetyille kirjailijoille.",
|
||||
"DefaultQualityProfileIdHelpText": "Kansiosta löydetyille kirjailijoille oletustusarvoisesti asetettava laatuprofiili.",
|
||||
"ConsoleLogLevel": "Valvontalokin taso",
|
||||
"FilterSentryEventsHelpText": "Suodata tunnetut käyttäjävirheet pois analytiikkalähetyksistä",
|
||||
"Label": "Tunniste",
|
||||
@@ -549,10 +541,76 @@
|
||||
"TheAuthorFolderAndAllOfItsContentWillBeDeleted": "Elokuvakansio '{0}' ja kaikki sen sisältö poistetaan.",
|
||||
"UpdateSelected": "Päivitä valittu",
|
||||
"Wanted": "Halutut",
|
||||
"DefaultMetadataProfileIdHelpText": "Oletustusarvoinen metatietoprofiili tästä kansiosta löydetyille kirjailijoille.",
|
||||
"DefaultMetadataProfileIdHelpText": "Kansiosta löytyville kirjailijoille oletusarvoisesti asetettava metatietoprofiili.",
|
||||
"DeleteBookFileMessageText": "Haluatko varmasti poistaa sovellusprofiilin {0}?",
|
||||
"FilterAnalyticsEvents": "Suodata analytiikan tapahtumia",
|
||||
"All": "Kaikki",
|
||||
"Books": "Kirja",
|
||||
"Disabled": "Ei käytössä"
|
||||
"Disabled": "Ei käytössä",
|
||||
"FutureBooks": "Tulevat kirjat",
|
||||
"BookMonitoring": "Kirjojen valvonta",
|
||||
"CalibreNotCalibreWeb": "Readarr voi käyttää Calibren omaa sisältöpalvelinta, muttei täysin erillistä Calibre-Web-sovellusta.",
|
||||
"CalibreContentServer": "Calibre-sisältöpalvelin",
|
||||
"CalibreLibrary": "Calibre-kirjasto",
|
||||
"CalibreHost": "Calibren isäntä",
|
||||
"CalibreMetadata": "Calibren metatiedot",
|
||||
"CalibreOutputFormat": "Calibren kohdemuoto",
|
||||
"CalibreOutputProfile": "Calibren kohdeprofiili",
|
||||
"CalibrePassword": "Calibren salasana",
|
||||
"CalibreUrlBase": "Calibren URL-perusta",
|
||||
"CalibrePort": "Calibren portti",
|
||||
"CalibreUsername": "Calibren käyttäjätunnus",
|
||||
"MetadataProfiles": "Metatietoprofiilit",
|
||||
"AppDataLocationHealthCheckMessage": "Päivitystä ei sallita, jotta AppData-kansion poisto päivityksen yhteydessä voidaan estää.",
|
||||
"CalibreSettings": "Calibren asetukset",
|
||||
"CalibreContentServerText": "Calibre-sisältöpalvelinta käyttämällä Readarr voi lisätä kirjoja Calibre-kirjastoosi ja käynnistää muunnon eri muotojen välillä.",
|
||||
"EmbedMetadataHelpText": "Ohjeista Calibrea tallentamaan metatiedot varsinaiseen kirjatiedostoon.",
|
||||
"DeleteMetadataProfile": "Poista metatietoprofiili",
|
||||
"Duration": "Kesto",
|
||||
"ExistingBooks": "Olemassa olevat kirjat",
|
||||
"FileWasDeletedByViaUI": "Tiedosto poistettiin käyttöliittymän kautta.",
|
||||
"FilterPlaceHolder": "Suodata kirjoja",
|
||||
"HostHelpText": "Calibre-sisältöpalvelimen osoite.",
|
||||
"ImportListStatusCheckAllClientMessage": "Mitkään listat eivät ole virheiden vuoksi käytettävissä",
|
||||
"ImportListStatusCheckSingleClientMessage": "Listat eivät ole virheiden vuoksi käytettävissä: {0}",
|
||||
"IndexerPriorityHelpText": "Tietolähteen painotus: 1 (korkein) - 50 (matalin). Oletusarvo on 25. Käytetään muutoin tasaveroisten julkaisujen sieppauspäätökseen. Kaikkia käytössä olevia tietolähteitä käytetään edelleen RSS-synkronointiin ja hakuun.",
|
||||
"IndexerLongTermStatusCheckSingleClientMessage": "Tietolähteet eivät ole käytettävissä yli 6 tuntia kestäneiden virheiden vuoksi: {0}",
|
||||
"IndexerLongTermStatusCheckAllClientMessage": "Mikään tietolähde ei ole käytettävissä yli 6 tuntia kestäneiden virheiden vuoksi.",
|
||||
"IndexerSearchCheckNoInteractiveMessage": "Tietolähteitä ei ole määritetty vuorovaikutteiselle haulle, eikä sillä tämän vuoksi löydy tuloksia.",
|
||||
"IsCalibreLibraryHelpText": "Hallinnoi kirjastoa Calibren sisältöpalvelimen avulla.",
|
||||
"IsInUseCantDeleteAMetadataProfileThatIsAttachedToAnAuthorOrImportList": "Kirjailijaan tai tuontilistaan liitettyä metatietoprofiilia ei voi poistaa.",
|
||||
"IsInUseCantDeleteAQualityProfileThatIsAttachedToAnAuthorOrImportList": "Kirjailijaan tai tuontilistaan liitettyä laatuprofiilia ei voi poistaa.",
|
||||
"Lists": "Listat",
|
||||
"LibraryHelpText": "Calibre-sisältöpalvelimen kirjaston nimi. Käytä oletusta jättämällä tyhjäksi.",
|
||||
"MetadataProfile": "Metatietoprofiili",
|
||||
"MetadataProfileIdHelpText": "Metatietoprofiili, joka listalta lisätyille kohteille tulee asettaa.",
|
||||
"MetadataSourceHelpText": "Vaihtoehtoinen metatietolähde. Käytä oletusta jättämällä tyhjäksi.",
|
||||
"MissingBooks": "Puuttuvat kirjat",
|
||||
"MissingBooksAuthorMonitored": "Puuttuvat kirjat (kirjailijaa valvotaan)",
|
||||
"MissingBooksAuthorNotMonitored": "Puuttuvat kirjat (kirjailijaa ei valvota)",
|
||||
"MonitorBookExistingOnlyWarning": "Tämä on kirjakohtaisen valvonnan kertaluontoinen määritys. Käytä Kirjailija/Muokkaa-valintaa hallinnoidaksesi mitä uusille kirjalisäyksille tehdään.",
|
||||
"MonitorNewItems": "Uusien kirjojen valvonta",
|
||||
"MonitorNewItemsHelpText": "Uusien kirjojen valvontatapa.",
|
||||
"MonitoringOptionsHelpText": "Kansiosta löydetyille kirjailijoille oletusarvoisesti asetettava kirjojen valvontataso (kertaluontoinen määritys).",
|
||||
"OutputFormatHelpText": "Voit halutessasi pyytää Calibrea muuntamaan kirjat eri muotoihin tuonnin yhteydessä. Pilkulla eroteltu lista.",
|
||||
"PasswordHelpText": "Calibre-sisältöpalvelimen salasana.",
|
||||
"PortHelpText": "Calibre-sisältöpalvelimen portti.",
|
||||
"ProxyCheckBadRequestMessage": "Välityspalvelintesti epäonnistui. Tilakoodi: {0}",
|
||||
"ProfilesSettingsSummary": "Laatu-, metatieto-, viive- ja julkaisuprofiilit.",
|
||||
"QualityProfileIdHelpText": "Laatuprofiili, joka listalta lisätyille kohteille tulee asettaa.",
|
||||
"SendMetadataToCalibre": "Lähetä metatiedot Calibrelle",
|
||||
"ShouldMonitorExisting": "Valvo olemassa olevia kirjoja",
|
||||
"ShouldMonitorExistingHelpText": "Valvo automaattisesti tällä listalla olevia kirjoja, jotka ovat jo kirjastossasi.",
|
||||
"Started": "Alkoi",
|
||||
"TooManyBooks": "Puuttuuko kirjoja tai onko niitä liikaa? Muokkaa tai luo uusi.",
|
||||
"UseCalibreContentServer": "Käytä Calibren sisältöpalvelinta",
|
||||
"UpdateCoversHelpText": "Määritä kirjojen kansikuvat Calibressa vastaamaan Readarrin kuvia.",
|
||||
"UsernameHelpText": "Calibre-sisältöpalvelimen käyttäjätunnus.",
|
||||
"UseSslHelpText": "Muodosta yhteys Calibre-sisältöpalvelimeen SSL-protokollan välityksellä.",
|
||||
"UseSSL": "SSL-salaus",
|
||||
"SearchForAllMissingBooks": "Etsi kaikkia puuttuvia kirjoja",
|
||||
"GeneralSettingsSummary": "Portti, SSL-salaus, käyttäjänimi ja salasana, välityspalvelin, analytiikka ja päivitykset.",
|
||||
"PathHelpText": "Kirjakokoelmasi pääkansio.",
|
||||
"PathHelpTextWarning": "Tämä ei voi olla sama kansio, johon lataustyökalusi tallentaa tiedostot.",
|
||||
"DefaultMonitorOptionHelpText": "Kansiosta löydetyille kirjailijoille oletusarvoisesti asetettava kirjojen valvontataso."
|
||||
}
|
||||
|
||||
@@ -101,11 +101,11 @@
|
||||
"DeleteImportListMessageText": "Voulez-vous vraiment supprimer la liste '{0}' ?",
|
||||
"DeleteIndexer": "Supprimer l'indexeur",
|
||||
"DeleteIndexerMessageText": "Voulez-vous vraiment supprimer l'indexeur '{0}' ?",
|
||||
"DeleteMetadataProfileMessageText": "Voulez-vous vraiment supprimer le profil de qualité {0}",
|
||||
"DeleteMetadataProfileMessageText": "Voulez-vous vraiment supprimer le profil de qualité {0} ?",
|
||||
"DeleteNotification": "Supprimer la notification",
|
||||
"DeleteNotificationMessageText": "Êtes-vous sûr de vouloir supprimer la notification '{0}' ?",
|
||||
"DeleteQualityProfile": "Supprimer le profil qualité",
|
||||
"DeleteQualityProfileMessageText": "Voulez-vous vraiment supprimer le profil de qualité {0}",
|
||||
"DeleteQualityProfileMessageText": "Voulez-vous vraiment supprimer le profil de qualité {0} ?",
|
||||
"DeleteReleaseProfile": "Supprimer le profil de délai",
|
||||
"DeleteReleaseProfileMessageText": "Êtes vous sûr de vouloir effacer ce profil de délai ?",
|
||||
"DeleteSelectedBookFiles": "Supprimer les fichiers film sélectionnés",
|
||||
@@ -194,8 +194,6 @@
|
||||
"LaunchBrowserHelpText": " Ouvrer un navigateur Web et accéder à la page d'accueil de Radarr au démarrage de l'application.",
|
||||
"LoadingBookFilesFailed": "Le chargement des fichiers vidéo a échoué",
|
||||
"Local": "Local",
|
||||
"LocalPath": "Chemin local",
|
||||
"LocalPathHelpText": "Chemin local que Radarr doit utiliser pour accéder au chemin distant",
|
||||
"LogFiles": "Fichiers Log",
|
||||
"LogLevel": "Niveau du journal",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "La journalisation des traces ne doit être activée que temporairement",
|
||||
@@ -256,7 +254,6 @@
|
||||
"PosterSize": "Taille des posters",
|
||||
"Preferred": "Préféré",
|
||||
"PreviewRename": "Aperçu Renommage",
|
||||
"PriorityHelpText": "Priorité de l'indexeur de 1 (la plus élevée) à 50 (la plus basse). Par défaut: 25.",
|
||||
"Profiles": "Profils",
|
||||
"Proper": "Proper",
|
||||
"PropersAndRepacks": "Propres et Repacks",
|
||||
@@ -275,7 +272,6 @@
|
||||
"RSSSync": "Synchro RSS",
|
||||
"RSSSyncInterval": "Intervalle de synchronisation RSS",
|
||||
"ReadTheWikiForMoreInformation": "Consultez le Wiki pour plus d'informations",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr prend en charge tout client de téléchargement qui utilise le standard Newznab, ainsi que d'autres clients de téléchargement répertoriés ci-dessous.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr prend en charge tout indexeur qui utilise le standard Newznab, ainsi que d'autres indexeurs répertoriés ci-dessous.",
|
||||
"ReadarrTags": "Radarr Tags",
|
||||
"Real": "Réel",
|
||||
@@ -288,14 +284,11 @@
|
||||
"Redownload": "Télécharger à nouveau",
|
||||
"Refresh": "Rafraîchir",
|
||||
"RefreshInformationAndScanDisk": "Actualiser les informations et analyser le disque",
|
||||
"RefreshScan": "Actualiser et analyser",
|
||||
"ReleaseDate": "Date de sortie",
|
||||
"ReleaseGroup": "Groupe de versions",
|
||||
"ReleaseRejected": "Version rejetée",
|
||||
"ReleaseWillBeProcessedInterp": "La Version sera traitée {0}",
|
||||
"Reload": "Recharger",
|
||||
"RemotePath": "Chemin distant",
|
||||
"RemotePathHelpText": "Chemin racine du dossier auquel le client de téléchargement accède",
|
||||
"RemotePathMappings": "Mappages de chemins distants",
|
||||
"Remove": "Retirer",
|
||||
"RemoveCompletedDownloadsHelpText": "Supprimer les téléchargements importés de l'historique du client de téléchargement",
|
||||
@@ -458,7 +451,7 @@
|
||||
"YesCancel": "Oui, annuler",
|
||||
"DownloadClientCheckDownloadingToRoot": "Le client de téléchargement {0} place les téléchargements dans le dossier racine {1}. Vous ne devez pas télécharger dans un dossier racine.",
|
||||
"Series": "Séries",
|
||||
"MaintenanceRelease": "Version de maintenance",
|
||||
"MaintenanceRelease": "Version de maintenance : corrections de bugs et autres améliorations. Voir historique des changements Github pour plus d'informations",
|
||||
"LogRotation": "Rotation du journal",
|
||||
"LogRotateHelpText": "Nombre maximum de fichiers journaux à conserver dans le dossier des journaux",
|
||||
"FilterSentryEventsHelpText": "Filtrer les événements d'erreur utilisateur connus pour qu'ils ne soient pas envoyés en tant qu'Analytics",
|
||||
@@ -501,5 +494,15 @@
|
||||
"UpdateSelected": "Mettre à jour la sélection",
|
||||
"All": "Tout",
|
||||
"Wanted": "Recherché",
|
||||
"CreateEmptyAuthorFolders": "Créer des dossiers films vides"
|
||||
"CreateEmptyAuthorFolders": "Créer des dossiers films vides",
|
||||
"AppDataLocationHealthCheckMessage": "Mettre à jour ne sera pas possible pour éviter la suppression AppData lors de la mise à jour",
|
||||
"IndexerPriorityHelpText": "Priorité de l'indexeur de 1 (la plus élevée) à 50 (la plus basse). Par défaut : 25.",
|
||||
"Duration": "Durée",
|
||||
"RemotePathMappingCheckBadDockerPath": "Vous utilisez docker; {0} enregistre les téléchargements dans {1} mais ce n'est pas un dossier valide. Vérifiez vos paramètres de dossier distant et les paramètres de votre client de téléchargement.",
|
||||
"RemotePathMappingCheckDockerFolderMissing": "Vous utilisez docker; {0} enregistre les téléchargements dans {1} mais ce dossier n'est pas présent dans ce conteneur. Vérifiez vos paramètres de dossier distant et les paramètres de votre conteneur docker.",
|
||||
"RemotePathMappingCheckFilesBadDockerPath": "Vous utilisez docker; {0} signifie les téléchargement dans {1} mais ce n'est pas un dossier valide. Vérifiez vos paramètres de dossier distant et les paramètres de votre client de téléchargement.",
|
||||
"RemotePathMappingCheckFilesWrongOSPath": "Le client de téléchargement distant {0} met les téléchargements dans {1} mais il ne s'agit pas d'un chemin {2} valide. Vérifiez les paramètres de votre client de téléchargement.",
|
||||
"RemotePathMappingCheckLocalFolderMissing": "Le client de téléchargement distant {0} met les téléchargements dans {1} mais ce chemin ne semble pas exister. Vérifiez vos paramètres de chemins distants.",
|
||||
"RemotePathMappingCheckRemoteDownloadClient": "Le client de téléchargement distant {0} met les téléchargements dans {1} mais ce chemin ne semble pas exister. Vérifiez vos paramètres de chemins distants.",
|
||||
"RemotePathMappingCheckWrongOSPath": "Le client de téléchargement distant {0} met les téléchargements dans {1} mais ce chemin {2} est invalide. Vérifiez vos paramètres de chemins distants et les paramètres de votre client de téléchargement."
|
||||
}
|
||||
|
||||
@@ -172,8 +172,6 @@
|
||||
"LaunchBrowserHelpText": " פתח דפדפן אינטרנט ונווט אל דף הבית של Radarr בהתחלת האפליקציה.",
|
||||
"LoadingBookFilesFailed": "טעינת קבצי הסרט נכשלה",
|
||||
"Local": "מְקוֹמִי",
|
||||
"LocalPath": "נתיב מקומי",
|
||||
"LocalPathHelpText": "נתיב שבו Radarr אמור להשתמש כדי לגשת לנתיב המרוחק באופן מקומי",
|
||||
"LogFiles": "קבצי יומן",
|
||||
"LogLevel": "רמת יומן",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "יש להפעיל רישום מעקב באופן זמני בלבד",
|
||||
@@ -235,7 +233,6 @@
|
||||
"PosterSize": "גודל פוסטר",
|
||||
"Preferred": "מועדף",
|
||||
"PreviewRename": "תצוגה מקדימה של שינוי שם",
|
||||
"PriorityHelpText": "עדיפות אינדקס מ -1 (הגבוה ביותר) ל -50 (הנמוך ביותר). ברירת מחדל: 25.",
|
||||
"Profiles": "פרופילים",
|
||||
"Proper": "תָקִין",
|
||||
"PropersAndRepacks": "Propers ו Repacks",
|
||||
@@ -255,7 +252,6 @@
|
||||
"RSSSync": "סנכרון RSS",
|
||||
"RSSSyncInterval": "מרווח סינכרון RSS",
|
||||
"ReadTheWikiForMoreInformation": "קרא את הוויקי למידע נוסף",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr תומך בכל לקוח הורדות המשתמש בתקן Newznab, כמו גם בלקוחות הורדה אחרים המפורטים להלן.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr תומך בכל אינדקס שמשתמש בתקן Newznab, כמו גם באינדקסים אחרים המפורטים להלן.",
|
||||
"ReadarrTags": "תגיות רדאר",
|
||||
"Real": "אמיתי",
|
||||
@@ -268,14 +264,11 @@
|
||||
"Redownload": "הורד מחדש",
|
||||
"Refresh": "לְרַעֲנֵן",
|
||||
"RefreshInformationAndScanDisk": "רענן מידע וסריקת הדיסק",
|
||||
"RefreshScan": "רענון וסריקה",
|
||||
"ReleaseDate": "תאריכי שחרור",
|
||||
"ReleaseGroup": "קבוצת שחרור",
|
||||
"ReleaseRejected": "שחרור נדחה",
|
||||
"ReleaseWillBeProcessedInterp": "השחרור יעובד {0}",
|
||||
"Reload": "לִטעוֹן מִחָדָשׁ",
|
||||
"RemotePath": "נתיב מרוחק",
|
||||
"RemotePathHelpText": "נתיב שורש לספריה אליה ניגש לקוח ההורדה",
|
||||
"RemotePathMappings": "מיפוי נתיבים מרוחק",
|
||||
"Remove": "לְהַסִיר",
|
||||
"RemoveCompletedDownloadsHelpText": "הסר הורדות מיובאות מהיסטוריית הלקוחות להורדה",
|
||||
|
||||
@@ -178,8 +178,6 @@
|
||||
"LaunchBrowserHelpText": " एक वेब ब्राउज़र खोलें और ऐप स्टार्ट पर रेडर होमपेज पर नेविगेट करें।",
|
||||
"LoadingBookFilesFailed": "फिल्म फ़ाइलें लोड करना विफल रहा",
|
||||
"Local": "स्थानीय",
|
||||
"LocalPath": "स्थानीय पथ",
|
||||
"LocalPathHelpText": "वह पथ जिसका उपयोग रेडर को स्थानीय रूप से दूरस्थ पथ तक पहुँचने के लिए करना चाहिए",
|
||||
"LogFiles": "फाइल्स लॉग करें # लॉग फाइलें",
|
||||
"LogLevel": "छांटने का स्तर",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "ट्रेस लॉगिंग को केवल अस्थायी रूप से सक्षम किया जाना चाहिए",
|
||||
@@ -242,7 +240,6 @@
|
||||
"PosterSize": "पोस्टर का आकार",
|
||||
"Preferred": "पसंदीदा",
|
||||
"PreviewRename": "नाम बदलें",
|
||||
"PriorityHelpText": "इंडेक्सर प्राथमिकता 1 (उच्चतम) से 50 (सबसे कम)। डिफ़ॉल्ट: 25",
|
||||
"Profiles": "प्रोफाइल",
|
||||
"Proper": "उचित",
|
||||
"PropersAndRepacks": "प्रोपर्स और रिपैक",
|
||||
@@ -262,7 +259,6 @@
|
||||
"RSSSync": "आरएसएस सिंक",
|
||||
"RSSSyncInterval": "RSS सिंक अंतराल",
|
||||
"ReadTheWikiForMoreInformation": "अधिक जानकारी के लिए विकी पढ़ें",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "रेडियर किसी भी डाउनलोड क्लाइंट का समर्थन करता है जो न्यूज़ानब मानक का उपयोग करता है, साथ ही नीचे सूचीबद्ध अन्य डाउनलोड क्लाइंट भी।",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "रेडियर न्यूज़नाब मानक का उपयोग करने वाले किसी भी सूचकांक का समर्थन करता है, साथ ही साथ नीचे सूचीबद्ध अन्य सूचकांक भी।",
|
||||
"ReadarrTags": "रेडर टैग",
|
||||
"Real": "असली",
|
||||
@@ -275,14 +271,11 @@
|
||||
"Redownload": "redownload",
|
||||
"Refresh": "ताज़ा करना",
|
||||
"RefreshInformationAndScanDisk": "जानकारी को ताज़ा करें और डिस्क को स्कैन करें",
|
||||
"RefreshScan": "ताज़ा करें और स्कैन करें",
|
||||
"ReleaseDate": "रिलीज़ करने की तिथि",
|
||||
"ReleaseGroup": "रिलीज समूह",
|
||||
"ReleaseRejected": "रिजेक्ट कर दिया",
|
||||
"ReleaseWillBeProcessedInterp": "रिलीज़ को संसाधित किया जाएगा {0}",
|
||||
"Reload": "पुनः लोड करें",
|
||||
"RemotePath": "दूरस्थ पथ",
|
||||
"RemotePathHelpText": "निर्देशिका का रूट पथ डाउनलोड क्लाइंट तक पहुँचता है",
|
||||
"RemotePathMappings": "रिमोट पाथ मैपिंग",
|
||||
"Remove": "हटाना",
|
||||
"RemoveCompletedDownloadsHelpText": "डाउनलोड क्लाइंट इतिहास से आयातित डाउनलोड निकालें",
|
||||
|
||||
@@ -171,8 +171,6 @@
|
||||
"LaunchBrowserHelpText": " Nyisson meg egy böngészőt, és az alkalmazás indításakor lépjen a Readarr kezdőlapjára.",
|
||||
"LoadingBookFilesFailed": "A film fájljainak betöltése sikertelen",
|
||||
"Local": "Helyi",
|
||||
"LocalPath": "Helyi útvonal",
|
||||
"LocalPathHelpText": "Elérési út, amelyet a Readarr használhat a távoli elérési út, helyi eléréséhez",
|
||||
"LogFiles": "Log Fájlok",
|
||||
"LogLevel": "Log Szint",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "A nyomkövetést csak ideiglenesen szabad engedélyezni",
|
||||
@@ -234,7 +232,6 @@
|
||||
"PosterSize": "Poszter mérete",
|
||||
"Preferred": "Preferált",
|
||||
"PreviewRename": "Előnézet átnevezése",
|
||||
"PriorityHelpText": "Indexelő prioritás 1-től (legmagasabb) 50-ig (legalacsonyabb). Alapértelmezés: 25.",
|
||||
"Profiles": "Profil(ok)",
|
||||
"Proper": "Proper",
|
||||
"PropersAndRepacks": "Properek és Repackok",
|
||||
@@ -254,7 +251,6 @@
|
||||
"RSSSync": "RSS Szinkronizálás",
|
||||
"RSSSyncInterval": "RSS Szikronizálás Intervalluma",
|
||||
"ReadTheWikiForMoreInformation": "Olvasd el a Wiki-t további információkért",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "A Radarr minden olyan letöltési klienst támogat, amely a Newznab szabványt használja, valamint az alább felsorolt letöltési klienseket.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "A Radarr minden indexert támogat, amely a Newznab szabványt használja, valamint az alább felsorolt egyéb indexereket.",
|
||||
"ReadarrTags": "Radarr Címkék",
|
||||
"Real": "Valódi",
|
||||
@@ -267,14 +263,11 @@
|
||||
"Redownload": "Letöltés újra",
|
||||
"Refresh": "Frissítés",
|
||||
"RefreshInformationAndScanDisk": "Információk frissítése és lemez átvizsgálása",
|
||||
"RefreshScan": "Frissítés & Keresés",
|
||||
"ReleaseDate": "Megjelenés Dátuma",
|
||||
"ReleaseGroup": "Kiadási Csoport",
|
||||
"ReleaseRejected": "Kiadás elutasítva",
|
||||
"ReleaseWillBeProcessedInterp": "A kiadás feldolgozása {0}",
|
||||
"Reload": "Újratöltés",
|
||||
"RemotePath": "Távoli elérési útvonal",
|
||||
"RemotePathHelpText": "Gyökérútvonal a könyvtárhoz, amelyhez a letöltőkliens hozzáfér",
|
||||
"RemotePathMappings": "Távoli Elérési Útvonal",
|
||||
"Remove": "Eltávolítás",
|
||||
"RemoveCompletedDownloadsHelpText": "Távolítsa el az importált letöltéseket a letöltési kliens előzményeiből",
|
||||
@@ -685,7 +678,6 @@
|
||||
"UI": "Felület",
|
||||
"Tomorrow": "Holnap",
|
||||
"Today": "Ma",
|
||||
"Timeleft": "Hátralévő idő",
|
||||
"ReleaseTitle": "Kiadás címe",
|
||||
"Progress": "Folyamat",
|
||||
"OutputPath": "Kimeneti út",
|
||||
@@ -789,5 +781,73 @@
|
||||
"TagsSettingsSummary": "Tekintse meg az összes címkét és azok használatát. A használatlan címkék eltávolíthatók",
|
||||
"UISettingsSummary": "A naptár, a dátum és a színtévesztő mód beállításai",
|
||||
"UserAgentProvidedByTheAppThatCalledTheAPI": "Az API-t hívó alkalmazás biztosítja a User-Agent szolgáltatást",
|
||||
"Yesterday": "Tegnap"
|
||||
"Yesterday": "Tegnap",
|
||||
"IndexerJackettAll": "A nem támogatott Jackett „összes” végpontot használó indexelők: {0}",
|
||||
"DownloadClientsSettingsSummary": "Letöltőkliensek, letöltések kezelése, és távoli elérési útvonalak",
|
||||
"Duration": "Időtartam",
|
||||
"ForeignId": "Külföldi azonosító",
|
||||
"ProxyCheckBadRequestMessage": "Proxy tesztelése sikertelen. Állapotkód: {0}",
|
||||
"ReadarrSupportsAnyDownloadClient": "A Readarr számos népszerű Torrent és Usenet letöltő klienst támogat.",
|
||||
"RemotePathMappingCheckBadDockerPath": "Dockert használsz; a letöltő kliens {0} a letöltéseket a (z) {1} helyre helyezi, de ez nem érvényes {2} útvonal. Ellenőrizze a távoli elérési utak hozzárendelését és töltse le a kliens beállításait.",
|
||||
"RemotePathMappingCheckDockerFolderMissing": "Dockert használsz; a letöltő kliens {0} letölti a letöltéseket a(z) {1} fájlban, de úgy tűnik, hogy ez a könyvtár nem létezik a tárolóban. Tekintse át a távoli elérési utak hozzárendelését és a tároló kötetbeállításait.",
|
||||
"RemotePathMappingCheckGenericPermissions": "A letöltőkliens {0} a letöltéseket a(z) {1} helyre helyezi, de a Readarr nem látja ezt a könyvtárat. Lehet, hogy módosítania kell a mappa engedélyeit.",
|
||||
"RemotePathMappingCheckLocalWrongOSPath": "A helyi letöltőkliens {0} letölti a letöltéseket a(z) {1} könyvtárba, de ez nem érvényes {2} útvonal. Ellenőrizze a letöltőkliens beállításait.",
|
||||
"AppDataLocationHealthCheckMessage": "A frissítés nem lehetséges anélkül hogy az AppData ne törlődjön",
|
||||
"IndexerSearchCheckNoAutomaticMessage": "Nincs elérhető indexelő Automatikus kereséssel engedélyezve. A Readarr nem nyújt automatikus keresési eredményt",
|
||||
"ProxyCheckResolveIpMessage": "Nem sikerült megoldani a konfigurált proxykiszolgáló IP-címét {0}",
|
||||
"RootFolderCheckSingleMessage": "Hiányzó gyökérmappa: {0}",
|
||||
"DownloadClientStatusCheckAllClientMessage": "Az összes letöltőkliens elérhetetlen, hiba miatt",
|
||||
"DownloadClientStatusCheckSingleClientMessage": "Letöltőkliens hiba miatt nem elérhető: {0}",
|
||||
"ImportMechanismHealthCheckMessage": "Engedélyezd a befejezett letöltés(ek) kezelését",
|
||||
"IndexerLongTermStatusCheckAllClientMessage": "Az összes indexer elérhetetlen több mint 6 órája, meghibásodás miatt",
|
||||
"IndexerPriorityHelpText": "Indexelő prioritás 1-től (legmagasabb) 50-ig (legalacsonyabb). Alapértelmezés: 25.",
|
||||
"IndexerRssHealthCheckNoIndexers": "Nincs elérhető indexer RSS szinkronizálással, így a Readarr nem fogja automatikusan megragadni az új kiadásokat",
|
||||
"IndexerSearchCheckNoAvailableIndexersMessage": "Az összes keresésre képes indexer átmenetileg nem elérhető, a legutóbbi indexelő hibák miatt",
|
||||
"Lists": "Listák",
|
||||
"Metadata": "Metaadat(ok)",
|
||||
"Monitor": "Monitorozni",
|
||||
"MountCheckMessage": "A szerzőt tartalmazó mappa csak olvasható: ",
|
||||
"Queued": "Sorban",
|
||||
"RemotePathMappingCheckFileRemoved": "A(z) {0} fájlt a feldolgozás során eltávolították.",
|
||||
"RemotePathMappingCheckFilesGenericPermissions": "A letöltőkliens {0} jelentett fájljait a(z) {1} fájlba, de a Readarr nem látja ezt a könyvtárat. Lehet, hogy módosítania kell a mappa engedélyeit.",
|
||||
"RemotePathMappingCheckFilesWrongOSPath": "A távoli letöltőkliens {0} fájlokat jelentett a(z) {1} fájlban, de ez nem érvényes {2} elérési út. Ellenőrizze a távoli elérési utak hozzárendelését és a letöltőkliens beállításait.",
|
||||
"RemotePathMappingCheckFolderPermissions": "A Readarr láthatja, de nem fér hozzá a (z) {1} letöltési könyvtárhoz. Valószínűleg engedélyezési hiba.",
|
||||
"RemotePathMappingCheckImportFailed": "A Readarr nem tudta importálni a filmet. A részletekért ellenőrizze a lognaplóit.",
|
||||
"RemotePathMappingCheckRemoteDownloadClient": "A távoli letöltőkliens {0} fájlokat jelentett a(z) {1} fájlban, de úgy tűnik, hogy ez a könyvtár nem létezik. Valószínűleg hiányzik a távoli útvonal-hozzárendelés.",
|
||||
"RestartReloadNote": "Megjegyzés: A Readarr automatikusan újraindul, és újratölti a felhasználói felületet a visszaállítási folyamat során.",
|
||||
"Save": "Mentés",
|
||||
"SettingsRemotePathMappingLocalPathHelpText": "Elérési út, amelyet a Readarr használhat a távoli elérési út, helyi eléréséhez",
|
||||
"SettingsRemotePathMappingRemotePath": "Távoli elérési útvonal",
|
||||
"SettingsRemotePathMappingRemotePathHelpText": "Gyökérútvonal a könyvtárhoz, amelyhez a letöltőkliens hozzáfér",
|
||||
"UpdateCheckUINotWritableMessage": "Nem lehet telepíteni a frissítést, mert a(z) „{0}” felhasználói felület mappát nem írhatja a „{1}” felhasználó.",
|
||||
"DownloadClientCheckUnableToCommunicateMessage": "Nem lehet kommunikálni a következővel: {0}.",
|
||||
"ImportListStatusCheckSingleClientMessage": "A listák nem érhetőek el a következő hiba miatt: {0}",
|
||||
"IndexerLongTermStatusCheckSingleClientMessage": "Az összes indexer elérhetetlen több mint 6 órája, meghibásodás miatt: {0}",
|
||||
"IndexerRssHealthCheckNoAvailableIndexers": "Az összes rss-képes indexer átmenetileg nem érhető el a legújabb indexelő hibák miatt",
|
||||
"IndexerSearchCheckNoInteractiveMessage": "Nincs elérhető indexer, interaktív keresővel engedélyezve. A Readarr nem nyújt interaktív keresési eredményeket",
|
||||
"IndexerStatusCheckAllClientMessage": "Az összes indexer elérhetetlen hiba miatt",
|
||||
"RemotePathMappingCheckFilesBadDockerPath": "Dockert használsz; letöltőkliens {0} jelentett fájljait a(z) {1} domainben, de ez nem érvényes {2} elérési út. Ellenőrizze a távoli elérési utak hozzárendelését és a letöltőkliens beállításait.",
|
||||
"RemotePathMappingCheckFilesLocalWrongOSPath": "A helyi letöltőkliens {0} fájlokat jelentett a (z) {1} fájlban, de ez nem érvényes {2} elérési út. Ellenőrizze a letöltési kliens beállításait.",
|
||||
"RemotePathMappingCheckLocalFolderMissing": "A távoli letöltési ügyfél {0} letölti a letöltéseket a(z) {1} könyvtárba, de úgy tűnik, hogy ez a könyvtár nem létezik. Valószínűleg hiányzik vagy helytelen a távoli elérési út feltérképezése.",
|
||||
"RemotePathMappingCheckWrongOSPath": "A távoli letöltőkliens {0} letölti a letöltéseket a(z) {1} könyvtárba, de ez nem érvényes {2} útvonal. Ellenőrizze a távoli elérési utak hozzárendelését és a letöltőkliens beállításait.",
|
||||
"SystemTimeCheckMessage": "A rendszeridő több mint 1 napja nem frissült. Előfordulhat, hogy az ütemezett feladatok az idő kijavításáig nem futnak megfelelően",
|
||||
"Connect": "Csatlakozás",
|
||||
"DownloadClientCheckNoneAvailableMessage": "Nem található letöltési kliens",
|
||||
"EditBook": "Könyv szerkesztése",
|
||||
"General": "Általános",
|
||||
"HealthNoIssues": "Nincs hiba a konfigurációval",
|
||||
"ImportListStatusCheckAllClientMessage": "Az összes lista elérhetetlen, hiba miatt",
|
||||
"IndexerStatusCheckSingleClientMessage": "Indexerek elérhetetlenek a következő hiba miatt: {0}",
|
||||
"MediaManagement": "Média Kezelés",
|
||||
"ProxyCheckFailedToTestMessage": "Proxy tesztelése sikertelen: {0}",
|
||||
"RefreshAndScan": "Frissítés & Keresés",
|
||||
"RemotePathMappingCheckDownloadPermissions": "A Readarr láthatja, de nem fér hozzá a letöltött filmhez {0}. Valószínűleg engedélyezési hiba.",
|
||||
"RootFolderCheckMultipleMessage": "Több gyökérmappa hiányzik: {0}",
|
||||
"SettingsRemotePathMappingLocalPath": "Helyi útvonal",
|
||||
"SizeLimit": "Méretkorlát",
|
||||
"Started": "Elindult",
|
||||
"TimeLeft": "Hátralévő idő",
|
||||
"UpdateCheckStartupNotWritableMessage": "A frissítés nem telepíthető, mert a (z) „{0}” indítási mappát a „{1}” felhasználó nem írhatja.",
|
||||
"UpdateCheckStartupTranslocationMessage": "Nem lehet telepíteni a frissítést, mert a (z) „{0}” indítási mappa az Alkalmazások Transzlokációs mappájában található.",
|
||||
"UpdateAvailable": "Új frissítés elérhető"
|
||||
}
|
||||
|
||||
@@ -193,8 +193,6 @@
|
||||
"LaunchBrowserHelpText": " Opnaðu vafra og farðu á Radarr heimasíðuna þegar forritið byrjar.",
|
||||
"LoadingBookFilesFailed": "Ekki tókst að hlaða kvikmyndaskrár",
|
||||
"Local": "Staðbundin",
|
||||
"LocalPath": "Local Path",
|
||||
"LocalPathHelpText": "Leið sem Radarr ætti að nota til að komast á fjarstíginn á staðnum",
|
||||
"LogFiles": "Log skrár",
|
||||
"LogLevel": "Log Level",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Aðeins ætti að virkja rakningaskráningu tímabundið",
|
||||
@@ -256,7 +254,6 @@
|
||||
"PosterSize": "Veggspjaldastærð",
|
||||
"Preferred": "Æskilegt",
|
||||
"PreviewRename": "Forskoða Endurnefna",
|
||||
"PriorityHelpText": "Forgangur flokkara frá 1 (Hæstur) til 50 (Lægstur). Sjálfgefið: 25.",
|
||||
"Profiles": "Snið",
|
||||
"Proper": "Rétt",
|
||||
"PropersAndRepacks": "Propers og Repacks",
|
||||
@@ -276,7 +273,6 @@
|
||||
"RSSSync": "RSS samstilling",
|
||||
"RSSSyncInterval": "RSS Sync bil",
|
||||
"ReadTheWikiForMoreInformation": "Lestu Wiki fyrir frekari upplýsingar",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr styður hvaða niðurhals viðskiptavinur sem notar Newznab staðalinn, auk annarra niðurhals viðskiptavina sem taldir eru upp hér að neðan.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr styður alla vísitölufyrirtæki sem nota Newznab staðalinn, svo og aðrir verðtryggingaraðilar sem taldir eru upp hér að neðan.",
|
||||
"ReadarrTags": "Radarr merkimiðar",
|
||||
"Real": "Alvöru",
|
||||
@@ -289,14 +285,11 @@
|
||||
"Redownload": "Endurhlaða",
|
||||
"Refresh": "Hressa",
|
||||
"RefreshInformationAndScanDisk": "Endurnýjaðu upplýsingar og skannaðu diskinn",
|
||||
"RefreshScan": "Hressa & skanna",
|
||||
"ReleaseDate": "Slepptu dagsetningum",
|
||||
"ReleaseGroup": "Sleppihópur",
|
||||
"ReleaseRejected": "Losun hafnað",
|
||||
"ReleaseWillBeProcessedInterp": "Útgáfa verður afgreidd {0}",
|
||||
"Reload": "Endurhlaða",
|
||||
"RemotePath": "Fjarstígur",
|
||||
"RemotePathHelpText": "Rótarslóð að skráasafninu sem Download viðskiptavinurinn hefur aðgang að",
|
||||
"RemotePathMappings": "Remote Path Mappings",
|
||||
"Remove": "Fjarlægðu",
|
||||
"RemoveCompletedDownloadsHelpText": "Fjarlægðu innflutt niðurhal frá niðurhalsferli viðskiptavinar",
|
||||
|
||||
@@ -196,8 +196,6 @@
|
||||
"Language": "Lingua",
|
||||
"LaunchBrowserHelpText": " Apri un browser e vai all'homepage di Radarr all'avvio dell'app.",
|
||||
"LoadingBookFilesFailed": "Caricamento dei file del Film fallito",
|
||||
"LocalPath": "Percorso locale",
|
||||
"LocalPathHelpText": "Percorso che Radarr dovrebbe usare per accedere localmente al percorso remoto",
|
||||
"LogFiles": "File di Log",
|
||||
"LogLevel": "Livello di Log",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Il Trace Log dovrebbe essere abilitato solo temporaneamente",
|
||||
@@ -260,7 +258,6 @@
|
||||
"PosterSize": "Dimensione del poster",
|
||||
"Preferred": "Preferito",
|
||||
"PreviewRename": "Anteprima Rinomina",
|
||||
"PriorityHelpText": "Priorità dell'indexer da 1 (più alto) a 50 (più basso). Default: 25.",
|
||||
"Profiles": "Profili",
|
||||
"Proper": "Proper",
|
||||
"PropersAndRepacks": "Propers e Repack",
|
||||
@@ -280,7 +277,6 @@
|
||||
"RSSSync": "Sync RSS",
|
||||
"RSSSyncInterval": "Intervallo di Sync RSS",
|
||||
"ReadTheWikiForMoreInformation": "Leggi le Wiki per maggiori informazioni",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr supporta qualunque client di download che usi gli standard Newznab, cosi come gli altri client sotto.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr supporta qualunque indexer che usi gli standard Newznab, cosi come gli altri Indexer sotto.",
|
||||
"ReadarrTags": "Tag di Radarr",
|
||||
"Real": "Reale",
|
||||
@@ -293,14 +289,11 @@
|
||||
"Redownload": "Riscarica",
|
||||
"Refresh": "Aggiorna",
|
||||
"RefreshInformationAndScanDisk": "Aggiorna le informazioni e scansiona il disco",
|
||||
"RefreshScan": "Aggiorna e Scansiona",
|
||||
"ReleaseDate": "Date di rilascio",
|
||||
"ReleaseGroup": "Gruppo Release",
|
||||
"ReleaseRejected": "Release rifiutata",
|
||||
"ReleaseWillBeProcessedInterp": "La release sarà processata {0}",
|
||||
"Reload": "Ricarica",
|
||||
"RemotePath": "Percorso remoto",
|
||||
"RemotePathHelpText": "Percorso root alla cartella a cui accede il client di download",
|
||||
"RemotePathMappings": "Collegamento Percorsi Remoti",
|
||||
"RemoveCompletedDownloadsHelpText": "Rimuovi i download importati dalla storia del client di download",
|
||||
"RemoveFailedDownloadsHelpText": "Rimuovi i download falliti dalla storia del client di download",
|
||||
|
||||
@@ -129,8 +129,6 @@
|
||||
"LaunchBrowserHelpText": " Webブラウザーを開き、アプリの起動時にRadarrホームページに移動します。",
|
||||
"LoadingBookFilesFailed": "動画ファイルの読み込みに失敗しました",
|
||||
"Local": "地元",
|
||||
"LocalPath": "ローカルパス",
|
||||
"LocalPathHelpText": "Radarrがリモートパスにローカルにアクセスするために使用する必要があるパス",
|
||||
"LogFiles": "ログファイル",
|
||||
"LogLevel": "ログレベル",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "トレースログは一時的にのみ有効にする必要があります",
|
||||
@@ -222,7 +220,6 @@
|
||||
"StatusEndedEnded": "終了しました",
|
||||
"Style": "スタイル",
|
||||
"SuccessMyWorkIsDoneNoFilesToRename": "成功!私の仕事は終わりました。名前を変更するファイルはありません。",
|
||||
"PriorityHelpText": "インデクサーの優先度は1(最高)から50(最低)です。デフォルト:25。",
|
||||
"Profiles": "プロファイル",
|
||||
"Proper": "適切な",
|
||||
"PropersAndRepacks": "適切なものと再梱包",
|
||||
@@ -242,7 +239,6 @@
|
||||
"RSSSync": "RSS同期",
|
||||
"RSSSyncInterval": "RSS同期間隔",
|
||||
"ReadTheWikiForMoreInformation": "詳細については、Wikiをお読みください",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarrは、Newznab標準を使用するすべてのダウンロードクライアント、および以下にリストされている他のダウンロードクライアントをサポートします。",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarrは、Newznab標準を使用するすべてのインデクサー、および以下にリストされている他のインデクサーをサポートします。",
|
||||
"ReadarrTags": "Radarrタグ",
|
||||
"Real": "リアル",
|
||||
@@ -259,14 +255,11 @@
|
||||
"Redownload": "再ダウンロード",
|
||||
"Refresh": "更新",
|
||||
"RefreshInformationAndScanDisk": "情報を更新してディスクをスキャンする",
|
||||
"RefreshScan": "更新とスキャン",
|
||||
"ReleaseDate": "リリース日",
|
||||
"ReleaseGroup": "リリースグループ",
|
||||
"ReleaseRejected": "リリースが拒否されました",
|
||||
"ReleaseWillBeProcessedInterp": "リリースは処理されます{0}",
|
||||
"Reload": "リロード",
|
||||
"RemotePath": "リモートパス",
|
||||
"RemotePathHelpText": "ダウンロードクライアントがアクセスするディレクトリへのルートパス",
|
||||
"RemotePathMappings": "リモートパスマッピング",
|
||||
"Remove": "削除する",
|
||||
"UnableToLoadIndexers": "インデクサーを読み込めません",
|
||||
|
||||
@@ -213,8 +213,6 @@
|
||||
"LaunchBrowserHelpText": " 웹 브라우저를 열고 앱 시작시 Radarr 홈페이지로 이동합니다.",
|
||||
"LoadingBookFilesFailed": "영화 파일을로드하지 못했습니다.",
|
||||
"Local": "현지",
|
||||
"LocalPath": "로컬 경로",
|
||||
"LocalPathHelpText": "Radarr가 원격 경로에 로컬로 액세스하는 데 사용해야하는 경로",
|
||||
"LogFiles": "로그 파일",
|
||||
"LogLevel": "로그 수준",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "추적 로깅은 일시적으로 만 활성화해야합니다.",
|
||||
@@ -271,7 +269,6 @@
|
||||
"PosterSize": "포스터 크기",
|
||||
"Preferred": "선호",
|
||||
"PreviewRename": "이름 변경 미리보기",
|
||||
"PriorityHelpText": "인덱서 우선 순위는 1 (가장 높음)에서 50 (가장 낮음)까지입니다. 기본값 : 25.",
|
||||
"Profiles": "프로필",
|
||||
"Proper": "적절한",
|
||||
"PropersAndRepacks": "적절하고 재 포장",
|
||||
@@ -291,7 +288,6 @@
|
||||
"RSSSync": "RSS 동기화",
|
||||
"RSSSyncInterval": "RSS 동기화 간격",
|
||||
"ReadTheWikiForMoreInformation": "자세한 내용은 Wiki를 참조하십시오.",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr는 Newznab 표준을 사용하는 모든 다운로드 클라이언트와 아래 나열된 다른 다운로드 클라이언트를 지원합니다.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr는 Newznab 표준을 사용하는 모든 인덱서와 아래 나열된 다른 인덱서를 지원합니다.",
|
||||
"ReadarrTags": "Radarr 태그",
|
||||
"Real": "레알",
|
||||
@@ -304,14 +300,11 @@
|
||||
"Redownload": "다시 다운로드",
|
||||
"Refresh": "새롭게 하다",
|
||||
"RefreshInformationAndScanDisk": "정보 새로 고침 및 디스크 스캔",
|
||||
"RefreshScan": "새로 고침 및 스캔",
|
||||
"ReleaseDate": "출시일",
|
||||
"ReleaseGroup": "릴리스 그룹",
|
||||
"ReleaseRejected": "릴리스 거부",
|
||||
"ReleaseWillBeProcessedInterp": "릴리스가 {0} 처리됩니다.",
|
||||
"Reload": "새로 고침",
|
||||
"RemotePath": "원격 경로",
|
||||
"RemotePathHelpText": "다운로드 클라이언트가 액세스하는 디렉토리의 루트 경로",
|
||||
"RemotePathMappings": "원격 경로 매핑",
|
||||
"Remove": "없애다",
|
||||
"RemoveCompletedDownloadsHelpText": "다운로드 클라이언트 기록에서 가져온 다운로드 제거",
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
"UpdateScriptPathHelpText": "Pad naar een aangepast script dat een uitgepakt updatepakket accepteert en de rest van het updateproces afhandelt",
|
||||
"Updates": "Updates",
|
||||
"Uptime": "Bedrijfstijd",
|
||||
"20MinutesTwenty": "60 Minuten: {0}",
|
||||
"45MinutesFourtyFive": "60 Minuten: {0}",
|
||||
"20MinutesTwenty": "20 Minuten: {0}",
|
||||
"45MinutesFourtyFive": "45 Minuten: {0}",
|
||||
"60MinutesSixty": "60 Minuten: {0}",
|
||||
"APIKey": "API-sleutel",
|
||||
"About": "Over",
|
||||
@@ -194,8 +194,6 @@
|
||||
"LaunchBrowserHelpText": " Open een web browser en navigeer naar de Radarr startpagina bij het starten van de app.",
|
||||
"LoadingBookFilesFailed": "Laden van filmbestanden is mislukt",
|
||||
"Local": "Lokaal",
|
||||
"LocalPath": "Lokaal Pad",
|
||||
"LocalPathHelpText": "Het pad dat Radarr lokaal moet gebruiken om toegang te krijgen tot het externe pad",
|
||||
"LogFiles": "Logbestanden",
|
||||
"LogLevel": "Log Niveau",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Trace log niveau moet enkel tijdelijk worden gebruikt",
|
||||
@@ -258,7 +256,6 @@
|
||||
"PosterSize": "Affiche Grootte",
|
||||
"Preferred": "Voorkeur gegeven",
|
||||
"PreviewRename": "Voorbeeldweergave Naamswijziging",
|
||||
"PriorityHelpText": "Indexeerder Prioriteit van 1 (Hoogste) tot 50 (Laagste). Standaard: 25.",
|
||||
"Profiles": "Profielen",
|
||||
"Proper": "PROPER",
|
||||
"PropersAndRepacks": "PROPERS en REPACKS",
|
||||
@@ -278,7 +275,6 @@
|
||||
"RSSSync": "RSS Sync.",
|
||||
"RSSSyncInterval": "RSS Sync. Tussentijd",
|
||||
"ReadTheWikiForMoreInformation": "Lees de Wiki voor meer informatie",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr ondersteund elke downloader die gebruik maakt van de Newznab standaard, tevens ook de ander hieronder weergegeven downloaders.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr ondersteund elke indexeerder die gebruik maakt van de Newznab standaard, tevens ook de ander hieronder weergegeven indexeerders.",
|
||||
"ReadarrTags": "Radarr Tags",
|
||||
"Real": "REAL",
|
||||
@@ -291,14 +287,11 @@
|
||||
"Redownload": "Opnieuw downloaden",
|
||||
"Refresh": "Vernieuw",
|
||||
"RefreshInformationAndScanDisk": "Informatie vernieuwen en schijf herscannen",
|
||||
"RefreshScan": "Vernieuw & Scan",
|
||||
"ReleaseDate": "Uitgave Datums",
|
||||
"ReleaseGroup": "Uitgave Groep",
|
||||
"ReleaseRejected": "Uitgave Afgekeurd",
|
||||
"ReleaseWillBeProcessedInterp": "Uitgave zal worden verwerkt {0}",
|
||||
"Reload": "Herlaad",
|
||||
"RemotePath": "Extern Pad",
|
||||
"RemotePathHelpText": "Map dat de Downloader gebruikt",
|
||||
"RemotePathMappings": "Externe Pad Verwijzing",
|
||||
"Remove": "Verwijder",
|
||||
"RemoveCompletedDownloadsHelpText": "Verwijder geïmporteerde downloads uit de downloader geschiedenis",
|
||||
@@ -498,5 +491,9 @@
|
||||
"Time": "Tijd",
|
||||
"Label": "Label",
|
||||
"Wanted": "Gezocht",
|
||||
"BlocklistHelpText": "Voorkom dat Radarr deze release nogmaals automatisch ophaalt"
|
||||
"BlocklistHelpText": "Voorkom dat Radarr deze release nogmaals automatisch ophaalt",
|
||||
"AppDataLocationHealthCheckMessage": "Updaten zal niet mogelijk zijn om het verwijderen van AppData te voorkomen",
|
||||
"AddedAuthorSettings": "Auteur instellingen toegevoegd",
|
||||
"AddMissing": "Voeg ontbrekende toe",
|
||||
"AllBooks": "Alle Boeken"
|
||||
}
|
||||
|
||||
@@ -205,8 +205,6 @@
|
||||
"LaunchBrowserHelpText": " Otwórz przeglądarkę internetową i przejdź do strony głównej Radarr po uruchomieniu aplikacji.",
|
||||
"LoadingBookFilesFailed": "Ładowanie plików filmowych nie powiodło się",
|
||||
"Local": "Lokalny",
|
||||
"LocalPath": "Ścieżka lokalna",
|
||||
"LocalPathHelpText": "Ścieżka, której Radarr powinien używać, aby uzyskać lokalny dostęp do ścieżki zdalnej",
|
||||
"LogFiles": "Pliki dziennika",
|
||||
"LogLevel": "Poziom dziennika",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Rejestrowanie śledzenia powinno być włączone tylko tymczasowo",
|
||||
@@ -260,7 +258,6 @@
|
||||
"PosterSize": "Rozmiar plakatu",
|
||||
"Preferred": "Preferowane",
|
||||
"PreviewRename": "Podgląd Zmień nazwę",
|
||||
"PriorityHelpText": "Priorytet indeksatora od 1 (najwyższy) do 50 (najniższy). Domyślnie: 25.",
|
||||
"Profiles": "Profile",
|
||||
"Proper": "Właściwy",
|
||||
"PropersAndRepacks": "Propers and Repacks",
|
||||
@@ -280,7 +277,6 @@
|
||||
"RSSSync": "Synchronizacja RSS",
|
||||
"RSSSyncInterval": "Częstotliwość synchronizacji RSS",
|
||||
"ReadTheWikiForMoreInformation": "Przeczytaj Wiki, aby uzyskać więcej informacji",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr obsługuje każdego klienta pobierania, który używa standardu Newznab, a także innych klientów pobierania wymienionych poniżej.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr obsługuje każdy indeksator, który używa standardu Newznab, a także inne indeksatory wymienione poniżej.",
|
||||
"ReadarrTags": "Tagi radarowe",
|
||||
"Real": "Real",
|
||||
@@ -293,14 +289,11 @@
|
||||
"Redownload": "Pobierz ponownie",
|
||||
"Refresh": "Odświeżać",
|
||||
"RefreshInformationAndScanDisk": "Odśwież informacje i przeskanuj dysk",
|
||||
"RefreshScan": "Odśwież i skanuj",
|
||||
"ReleaseDate": "Daty wydania",
|
||||
"ReleaseGroup": "Grupa wersji",
|
||||
"ReleaseRejected": "Wersja odrzucona",
|
||||
"ReleaseWillBeProcessedInterp": "Wersja zostanie przetworzona {0}",
|
||||
"Reload": "Przeładować",
|
||||
"RemotePath": "Zdalna ścieżka",
|
||||
"RemotePathHelpText": "Ścieżka główna do katalogu, do którego klient pobiera dostęp",
|
||||
"RemotePathMappings": "Zdalne mapowanie ścieżki",
|
||||
"Remove": "Usunąć",
|
||||
"RemoveCompletedDownloadsHelpText": "Usuń zaimportowane pliki do pobrania z historii klienta pobierania",
|
||||
|
||||
@@ -84,7 +84,6 @@
|
||||
"Options": "Opções",
|
||||
"Original": "Original",
|
||||
"RefreshInformationAndScanDisk": "Atualizar informações e analisar o disco",
|
||||
"RefreshScan": "Atualizar e analisar",
|
||||
"ReleaseDate": "Data de lançamento",
|
||||
"Reason": "Razão",
|
||||
"RecycleBinCleanupDaysHelpText": "Defina como 0 para desativar a limpeza automática",
|
||||
@@ -98,8 +97,6 @@
|
||||
"ReleaseRejected": "Versão rejeitada",
|
||||
"ReleaseWillBeProcessedInterp": "A versão será processada {0}",
|
||||
"Reload": "Recarregar",
|
||||
"RemotePath": "Caminho remoto",
|
||||
"RemotePathHelpText": "Caminho raiz para o diretório que o cliente de transferências acessa",
|
||||
"RemotePathMappings": "Mapeamentos de caminho remoto",
|
||||
"Remove": "Remover",
|
||||
"RemoveCompletedDownloadsHelpText": "Remover transferências importadas do histórico do cliente de transferências",
|
||||
@@ -305,12 +302,10 @@
|
||||
"LaunchBrowserHelpText": " Abrir o browser e a home page do Readarr ao iniciar a aplicação.",
|
||||
"LoadingBookFilesFailed": "Falha no carregamento dos ficheiros do livro",
|
||||
"Local": "Local",
|
||||
"LocalPath": "Caminho local",
|
||||
"LocalPathHelpText": "Caminho que o Radarr deve usar para acessar localmente ao caminho remoto",
|
||||
"LogFiles": "Ficheiros de log",
|
||||
"LogLevel": "Nível de log",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "O registo de rastreio somente deve ser ativado temporariamente",
|
||||
"Logging": "Registo em log",
|
||||
"Logging": "guardar nos registos",
|
||||
"Logs": "Logs",
|
||||
"LongDateFormat": "Formato longo de data",
|
||||
"MIA": "Desaparecidos",
|
||||
@@ -320,7 +315,7 @@
|
||||
"MaximumLimits": "Limites máximos",
|
||||
"MetadataSettings": "Definições de metadados",
|
||||
"MinimumAge": "Tempo de vida mínimo",
|
||||
"MinimumAgeHelpText": "Somente Usenet: tempo de vida mínimo, em minutos, dos NZBs, para que sejam capturados. Use isto para dar às novas versões tempo de propagar-se em seu fornecedor de Usenet.",
|
||||
"MinimumAgeHelpText": "Somente Usenet: Tempo de vida mínimo em minutos, dos NZBs, para que sejam capturados. Use isto para dar às novas versões tempo de propagar-se no seu fornecedor de Usenet.",
|
||||
"MinimumFreeSpace": "Espaço livre mínimo",
|
||||
"MinimumFreeSpaceWhenImportingHelpText": "Evitar a importação caso deixe menos espaço livre em disco que esta quantidade",
|
||||
"MinimumLimits": "Limites mínimos",
|
||||
@@ -359,7 +354,6 @@
|
||||
"PosterSize": "Tamanho do cartaz",
|
||||
"Preferred": "Preferido",
|
||||
"PreviewRename": "Pré-visualizar renomeação",
|
||||
"PriorityHelpText": "Prioridade do indexador de 1 (mais alta) a 50 (mais baixa). Padrão: 25.",
|
||||
"Profiles": "Perfis",
|
||||
"Proper": "Proper",
|
||||
"PropersAndRepacks": "Propers e Repacks",
|
||||
@@ -379,7 +373,6 @@
|
||||
"RSSSync": "Sincronização RSS",
|
||||
"RSSSyncInterval": "Intervalo de sincronização RSS",
|
||||
"ReadTheWikiForMoreInformation": "Leia a Wiki para obter mais informações",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "O Readarr suporta qualquer cliente de transferências que utilize o padrão Newznab, bem como os demais listados abaixo.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "O Readarr suporta qualquer indexador que usa o padrão Newznab, bem como os outros listados abaixo.",
|
||||
"ReadarrTags": "Etiquetas do Radarr",
|
||||
"Real": "Real",
|
||||
@@ -673,7 +666,6 @@
|
||||
"ReleaseTitle": "Título da versão",
|
||||
"OutputPath": "Caminho de saída",
|
||||
"Actions": "Ações",
|
||||
"Timeleft": "Tempo restante",
|
||||
"BookTitle": "Título do livro",
|
||||
"IndexerIdHelpTextWarning": "Usar um indexador específico com as palavras preferidas pode acarretar na captura de versões duplicadas",
|
||||
"UpdatingIsDisabledInsideADockerContainerUpdateTheContainerImageInstead": "A atualização está desativada em um contentor do Docker. Atualizar a imagem do contentor em vez disso.",
|
||||
@@ -703,7 +695,7 @@
|
||||
"ReleaseBranchCheckOfficialBranchMessage": "A ramificação {0} não é uma ramificação de versões válida do Radarr, você não receberá atualizações",
|
||||
"SelectAll": "Selecionar todos",
|
||||
"SelectedCountBooksSelectedInterp": "{0} filme(s) selecionado(s)",
|
||||
"ThisCannotBeCancelled": "Isso não pode ser cancelado uma vez iniciado sem reiniciar o Radarr.",
|
||||
"ThisCannotBeCancelled": "Isso não pode ser cancelado uma vez iniciado sem desabilitar todos os seus indexadores.",
|
||||
"Time": "Hora",
|
||||
"UnselectAll": "Desmarcar todos",
|
||||
"UpdateSelected": "Atualizar selecionado(s)",
|
||||
@@ -714,5 +706,14 @@
|
||||
"Wanted": "Desejado",
|
||||
"Blocklist": "Lista de bloqueio",
|
||||
"BlocklistHelpText": "Impede o Readarr de capturar automaticamente estes ficheiros novamente",
|
||||
"BlocklistRelease": "Bloquear versão"
|
||||
"BlocklistRelease": "Bloquear versão",
|
||||
"IndexerJackettAll": "Indexadores que usam o ponto de extremidade não suportado do Jackett 'all (tudo)' : {0}",
|
||||
"Duration": "Duração",
|
||||
"Filters": "Filtros",
|
||||
"AppDataLocationHealthCheckMessage": "Não será possível atualizar para evitar a exclusão da pasta AppData durante a atualização",
|
||||
"FileWasDeletedByViaUI": "O ficheiro foi eliminado por meio da IU",
|
||||
"SizeLimit": "Tamanho Limite",
|
||||
"Started": "Começado",
|
||||
"UpdateAvailable": "Nova atualização disponível",
|
||||
"Yesterday": "Ontem"
|
||||
}
|
||||
|
||||
@@ -139,7 +139,7 @@
|
||||
"DeleteTag": "Excluir tag",
|
||||
"DeleteTagMessageText": "Tem certeza de que deseja excluir a tag \"{0}\"?",
|
||||
"DestinationPath": "Caminho de destino",
|
||||
"DetailedProgressBarHelpText": "Mostrar texto na barra de progresso",
|
||||
"DetailedProgressBarHelpText": "Mostrar texto em barra de progresso",
|
||||
"EnableAutomaticAdd": "Habilitar adição automática",
|
||||
"EnableAutomaticSearch": "Habilitar pesquisa automática",
|
||||
"EnableColorImpairedMode": "Habilitar modo para daltonismo",
|
||||
@@ -202,8 +202,6 @@
|
||||
"LaunchBrowserHelpText": " Abrir o navegador Web e navegar até a página inicial do Readarr ao iniciar o aplicativo.",
|
||||
"LoadingBookFilesFailed": "Falha ao carregar arquivos do livro",
|
||||
"Local": "Local",
|
||||
"LocalPath": "Caminho Local",
|
||||
"LocalPathHelpText": "Caminho que o Readarr deve usar para acessar o caminho remoto localmente",
|
||||
"LogFiles": "Arquivos de log",
|
||||
"LogLevel": "Nível do log",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "O registro de rastreamento deve ser ativado apenas temporariamente",
|
||||
@@ -261,7 +259,6 @@
|
||||
"PosterSize": "Tamanho do pôster",
|
||||
"Preferred": "Preferido",
|
||||
"PreviewRename": "Visualizar renomeação",
|
||||
"PriorityHelpText": "Prioridade do indexador de 1 (mais alta) a 50 (mais baixa). Padrão: 25.",
|
||||
"Profiles": "Perfis",
|
||||
"Proper": "Proper",
|
||||
"PropersAndRepacks": "Propers e repacks",
|
||||
@@ -281,7 +278,6 @@
|
||||
"RSSSync": "Sincronização RSS",
|
||||
"RSSSyncInterval": "Intervalo da sincronização RSS",
|
||||
"ReadTheWikiForMoreInformation": "Leia a Wiki para saber mais",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "O Readarr oferece suporte a qualquer cliente de download que usa o padrão Newznab, além de outros clientes de download, listados abaixo.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "O Readarr oferece suporte a qualquer indexador que usa o padrão Newznab, além de outros indexadores, listados abaixo.",
|
||||
"ReadarrTags": "Tags do Readarr",
|
||||
"Real": "Real",
|
||||
@@ -294,14 +290,11 @@
|
||||
"Redownload": "Baixar novamente",
|
||||
"Refresh": "Atualizar",
|
||||
"RefreshInformationAndScanDisk": "Atualizar as informações e verificar o disco",
|
||||
"RefreshScan": "Atualizar e verificar",
|
||||
"ReleaseDate": "Data de lançamento",
|
||||
"ReleaseGroup": "Grupo da versão",
|
||||
"ReleaseRejected": "Versão rejeitada",
|
||||
"ReleaseWillBeProcessedInterp": "A versão será processada {0}",
|
||||
"Reload": "Recarregar",
|
||||
"RemotePath": "Caminho Remoto",
|
||||
"RemotePathHelpText": "Caminho raiz para o diretório que o cliente de download acessa",
|
||||
"RemotePathMappings": "Mapeamentos de caminho remoto",
|
||||
"Remove": "Remover",
|
||||
"RemoveCompletedDownloadsHelpText": "Remover downloads importados do histórico do cliente de download",
|
||||
@@ -606,7 +599,7 @@
|
||||
"EmbedMetadataInBookFiles": "Incorporar metadados nos arquivos do livro",
|
||||
"EmbedMetadataHelpText": "Pedir ao Calibre para gravar metadados no arquivo do livro",
|
||||
"EditionsHelpText": "Alterar edição para este livro",
|
||||
"MaintenanceRelease": "Versão de manutenção",
|
||||
"MaintenanceRelease": "Lançamento de manutenção: correções de bugs e outras melhorias. Veja o histórico de mudanças no github para mais detalhes",
|
||||
"EditAuthor": "Editar autor",
|
||||
"DownloadPropersAndRepacksHelpTexts2": "Use \"Não preferir\" para classificar por pontuação de palavra preferida em relação a Propers/Repacks",
|
||||
"DownloadClientCheckDownloadingToRoot": "O cliente de download {0} coloca downloads na pasta raiz {1}. Não baixe para a pasta raiz.",
|
||||
@@ -668,7 +661,7 @@
|
||||
"AllExpandedCollapseAll": "Recolher tudo",
|
||||
"AllBooks": "Todos os livros",
|
||||
"AllAuthorBooks": "Todos os livros do autor",
|
||||
"AddNewItem": "Adicionar novo item",
|
||||
"AddNewItem": "Adicionar Novo Item",
|
||||
"AddMissing": "Adicionar ausentes",
|
||||
"AddImportListExclusionHelpText": "Impedir que o livro seja adicionado ao Readarr por listas de importação ou atualização do autor",
|
||||
"ASIN": "ASIN",
|
||||
@@ -682,7 +675,6 @@
|
||||
"WriteAudioTagsScrub": "Limpar tags existentes",
|
||||
"WriteAudioTags": "Marcar arquivos de áudio com metadados",
|
||||
"AudioFileMetadata": "Gravar metadados em arquivos de áudio",
|
||||
"Timeleft": "Tempo restante",
|
||||
"IndexerIdHelpTextWarning": "Usar um indexador específico com as palavras preferidas pode acarretar na obtenção de lançamentos duplicados",
|
||||
"Today": "Hoje",
|
||||
"Tomorrow": "Amanhã",
|
||||
@@ -736,7 +728,7 @@
|
||||
"UnselectAll": "Deselecionar Todos",
|
||||
"BookEditor": "Editor de Livro",
|
||||
"BookList": "Lista de Livros",
|
||||
"ThisCannotBeCancelled": "Isso não pode ser cancelado após iniciado sem reiniciar o Readarr.",
|
||||
"ThisCannotBeCancelled": "Isso não pode ser cancelado uma vez iniciado sem desabilitar todos os seus indexadores.",
|
||||
"UpdateSelected": "Atualizar selecionado",
|
||||
"CalibreSettings": "Configurações do Calibre",
|
||||
"CalibreContentServerText": "Usando um Servidor de Conteúdo do Calibre (não o Calibre Web) permite ao Readarr adicione livros a sua biblioteca Calibre e ativar conversões entre formatos",
|
||||
@@ -767,5 +759,55 @@
|
||||
"OnImportFailure": "Em uma Falha de Importação",
|
||||
"OnReleaseImport": "Ao Importar Lançamento",
|
||||
"OnRename": "Ao Renomear",
|
||||
"OnUpgrade": "Ao Atualizar"
|
||||
"OnUpgrade": "Ao Atualizar",
|
||||
"AppDataLocationHealthCheckMessage": "A atualização não será possível para evitar a exclusão de AppData na atualização",
|
||||
"IndexerSearchCheckNoInteractiveMessage": "Nenhum indexador disponível com Pesquisa Interativa habilitada, Readarr não irá prover nenhum resultado para pesquisa interativa.",
|
||||
"ConnectSettingsSummary": "Notificações, conexões com servidores/tocadores de mídia e scripts personalizados",
|
||||
"DownloadClientStatusCheckAllClientMessage": "Todos os clientes download não estão disponíveis devido a falhas",
|
||||
"DownloadClientsSettingsSummary": "Clientes de download, gerenciamento do download e mapeamento remoto de caminhos",
|
||||
"Yesterday": "Ontem",
|
||||
"Connect": "Conectar",
|
||||
"CouldntFindAnyResultsForTerm": "Não foi possível encontrar nenhum resultado para '{0}'",
|
||||
"DownloadClientCheckNoneAvailableMessage": "Nenhum cliente download está disponível",
|
||||
"DownloadClientCheckUnableToCommunicateMessage": "Não é possível se comunicar com {0}.",
|
||||
"Duration": "Duração",
|
||||
"Started": "Iniciado",
|
||||
"FileWasDeletedByViaUI": "Arquivo foi excluído através da interface do usuário",
|
||||
"UpdateAvailable": "Nova atualização está disponível",
|
||||
"UserAgentProvidedByTheAppThatCalledTheAPI": "User-Agent fornecido pelo aplicativo que chamou a API",
|
||||
"UpdateCheckUINotWritableMessage": "Não é possível instalar a atualização porque a pasta de interface do usuário '{0}' não é gravável pelo usuário '{1}'.",
|
||||
"FailedToLoadQueue": "Falha ao carregar fila",
|
||||
"DownloadClientStatusCheckSingleClientMessage": "Clientes de download indisponíveis por falhas: {0}",
|
||||
"EditBook": "Editar Livro",
|
||||
"FileWasDeletedByUpgrade": "Arquivo foi excluído para importar uma atualização",
|
||||
"Filters": "Filtros",
|
||||
"ForeignId": "ID Estrangeiro",
|
||||
"General": "Geral",
|
||||
"GeneralSettingsSummary": "Porta, SSL, nome de usuário/senha, proxy, análises e atualizações",
|
||||
"HealthNoIssues": "Nenhum problema com sua configuração",
|
||||
"ImportListStatusCheckAllClientMessage": "Todas as listas estão indisponíveis por falhas",
|
||||
"IndexerRssHealthCheckNoAvailableIndexers": "Todos os indexadores compatíveis com RSS estão temporariamente indisponíveis devido a erros recentes do indexador",
|
||||
"IndexerSearchCheckNoAvailableIndexersMessage": "Todos os indexadores com capacidade de pesquisa estão temporariamente indisponíveis devido a erros recentes do indexador",
|
||||
"ItsEasyToAddANewAuthorOrBookJustStartTypingTheNameOfTheItemYouWantToAdd": "É fácil adicionar um novo autor ou livro, basta começar a digitar o nome do item que deseja adicionar",
|
||||
"MetadataSettingsSummary": "Criar arquivos de metadados quando os livros forem importados ou o autor for atualizado",
|
||||
"ListsSettingsSummary": "Importar Listas",
|
||||
"ImportListStatusCheckSingleClientMessage": "Listas indisponíveis devido a falhas: {0}",
|
||||
"ImportMechanismHealthCheckMessage": "Habilitar Processamento de Download Concluído",
|
||||
"IndexerJackettAll": "Indexadores que usam o endpoint 'all' Jackett não suportado: {0}",
|
||||
"IndexerLongTermStatusCheckAllClientMessage": "Todos os indexadores estão indisponíveis devido a falhas por mais de 6 horas",
|
||||
"IndexerLongTermStatusCheckSingleClientMessage": "Indexadores indisponíveis devido a falhas por mais de 6 horas: {0}",
|
||||
"IndexerPriorityHelpText": "Prioridade do Indexador de 1 (Mais Alta) a 50 (Mais Baixa). Padrão: 25.",
|
||||
"IndexerRssHealthCheckNoIndexers": "Nenhum indexador disponível com sincronização RSS habilitada, Readarr não pegará novos lançamentos automaticamente",
|
||||
"IndexerSearchCheckNoAutomaticMessage": "Nenhum indexador disponível com a pesquisa automática habilitada, o Readarr não fornecerá nenhum resultado de pesquisa automática",
|
||||
"IndexersSettingsSummary": "Indexadores e restrições de lançamento",
|
||||
"IndexerStatusCheckAllClientMessage": "Todos os indexadores estão indisponíveis devido a falhas",
|
||||
"IndexerStatusCheckSingleClientMessage": "Indexadores indisponíveis devido a falhas: {0}",
|
||||
"Lists": "Listas",
|
||||
"MediaManagement": "Gerenciamento de Mídia",
|
||||
"MediaManagementSettingsSummary": "Nomeação, configurações de gerenciamento de arquivo e pastas raízes",
|
||||
"Metadata": "Metadados",
|
||||
"MissingFromDisk": "Readarr não conseguiu encontrar o arquivo no disco, então o arquivo foi desvinculado do livro no banco de dados",
|
||||
"Monitor": "Monitorar",
|
||||
"MountCheckMessage": "A montagem que contém um caminho de autor é montada como somente leitura: ",
|
||||
"ProfilesSettingsSummary": "Qualidade, Metadados, Atraso, e Perfis de Lançamentos"
|
||||
}
|
||||
|
||||
@@ -79,7 +79,6 @@
|
||||
"PosterSize": "Dimensiunea posterului",
|
||||
"Preferred": "Preferat",
|
||||
"PreviewRename": "Previzualizare Redenumire",
|
||||
"PriorityHelpText": "Prioritatea indexerului de la 1 (cea mai mare) la 50 (cea mai mică). Implicit: 25.",
|
||||
"Profiles": "Profile",
|
||||
"Proper": "Corect",
|
||||
"PropersAndRepacks": "Propers și Repacks",
|
||||
@@ -251,8 +250,6 @@
|
||||
"Language": "Limbă",
|
||||
"LaunchBrowserHelpText": " Deschideți un browser web și navigați la pagina de pornire Radarr la pornirea aplicației.",
|
||||
"Local": "Local",
|
||||
"LocalPath": "Calea locală",
|
||||
"LocalPathHelpText": "Calea pe care Radarr ar trebui să o folosească pentru a accesa calea la distanță local",
|
||||
"LogFiles": "Fișiere de loguri",
|
||||
"LogLevel": "Nivel jurnal",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Înregistrarea urmăririi trebuie activată doar temporar",
|
||||
@@ -274,7 +271,6 @@
|
||||
"RSSSync": "Sincronizare RSS",
|
||||
"RSSSyncInterval": "Interval de sincronizare RSS",
|
||||
"ReadTheWikiForMoreInformation": "Citiți Wiki pentru mai multe informații",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr acceptă orice client de descărcare care utilizează standardul Newznab, precum și alți clienți de descărcare enumerați mai jos.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr acceptă orice indexer care utilizează standardul Newznab, precum și alți indexatori enumerați mai jos.",
|
||||
"ReadarrTags": "Etichete Radarr",
|
||||
"Real": "Real",
|
||||
@@ -287,14 +283,11 @@
|
||||
"Redownload": "Redescărcați",
|
||||
"Refresh": "Reîmprospătează",
|
||||
"RefreshInformationAndScanDisk": "Actualizați informațiile și discul de scanare",
|
||||
"RefreshScan": "Reîmprospătează și scanează",
|
||||
"ReleaseDate": "Date de lansare",
|
||||
"ReleaseGroup": "Grup de apariție",
|
||||
"ReleaseRejected": "Eliberare respinsă",
|
||||
"ReleaseWillBeProcessedInterp": "Eliberarea va fi procesată {0}",
|
||||
"Reload": "Reîncarcă",
|
||||
"RemotePath": "Calea la distanță",
|
||||
"RemotePathHelpText": "Calea de rădăcină către directorul la care accesează Clientul de descărcare",
|
||||
"RemotePathMappings": "Mapări pentru căi externe",
|
||||
"Remove": "Elimina",
|
||||
"RemoveCompletedDownloadsHelpText": "Eliminați descărcările importate din istoricul clientului de descărcări",
|
||||
|
||||
@@ -196,8 +196,6 @@
|
||||
"LaunchBrowserHelpText": " Открывать браузер и переходить на страницу Radarr при запуске программы.",
|
||||
"LoadingBookFilesFailed": "Неудачная загрузка файлов фильма",
|
||||
"Local": "Местный",
|
||||
"LocalPath": "Локальный путь",
|
||||
"LocalPathHelpText": "Путь, который Radarr должен использовать для локального доступа к удаленному пути",
|
||||
"LogFiles": "Файлы журнала",
|
||||
"LogLevel": "Уровень журнала",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Отслеживание журнала желательно включать только на короткое время",
|
||||
@@ -260,7 +258,6 @@
|
||||
"PosterSize": "Размер постера",
|
||||
"Preferred": "Предпочитаемый",
|
||||
"PreviewRename": "Предпросмотр переименований",
|
||||
"PriorityHelpText": "Приоритет индексаторов от 1 (наивысший) до 50 (низший). По-умолчанию: 25.",
|
||||
"Profiles": "Профили",
|
||||
"Proper": "Правильный",
|
||||
"PropersAndRepacks": "Проперы и репаки",
|
||||
@@ -279,7 +276,6 @@
|
||||
"RSSSync": "Синхронизация RSS",
|
||||
"RSSSyncInterval": "Интервал синхронизации RSS",
|
||||
"ReadTheWikiForMoreInformation": "Прочтите Wiki для получения дополнительной информации",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr поддерживает любой клиент загрузки использующий стандарт Newznab, а также другие клиенты загрузки перечисленные ниже.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr поддерживает любой индексатор, использующий стандарт Newznab, а также другие индексаторы, перечисленные ниже.",
|
||||
"ReadarrTags": "Теги Radarr-а",
|
||||
"Real": "Настоящий",
|
||||
@@ -292,14 +288,11 @@
|
||||
"Redownload": "Перезакачать",
|
||||
"Refresh": "Обновить",
|
||||
"RefreshInformationAndScanDisk": "Обновить информацию и просканировать диск",
|
||||
"RefreshScan": "Обновить & сканировать",
|
||||
"ReleaseDate": "Дата выпуска",
|
||||
"ReleaseGroup": "Релиз группа",
|
||||
"ReleaseRejected": "Релиз отклонен",
|
||||
"ReleaseWillBeProcessedInterp": "Выпуск будет обработан {0}",
|
||||
"Reload": "Перезагрузить",
|
||||
"RemotePath": "Удалённый путь",
|
||||
"RemotePathHelpText": "Корневой путь к каталогу, к которому имеет доступ клиент загрузки",
|
||||
"RemotePathMappings": "Сопоставления удаленного пути",
|
||||
"Remove": "Удалить",
|
||||
"RemoveCompletedDownloadsHelpText": "Удалить импортированные загрузки из истории загрузок клиента",
|
||||
@@ -471,7 +464,6 @@
|
||||
"Actions": "Действия",
|
||||
"Progress": "Прогресс",
|
||||
"ReleaseTitle": "Название релиза",
|
||||
"Timeleft": "Оставшееся время",
|
||||
"RemoveFromBlocklist": "Удалить из черного списка",
|
||||
"All": "Все",
|
||||
"Component": "Компонент",
|
||||
@@ -489,5 +481,6 @@
|
||||
"Blocklist": "Черный список",
|
||||
"BlocklistHelpText": "Запрещает Radarr автоматически получать этот релиз повторно",
|
||||
"BlocklistRelease": "Релиз из черного списка",
|
||||
"Disabled": "Выключено"
|
||||
"Disabled": "Выключено",
|
||||
"Duration": "Длительность"
|
||||
}
|
||||
|
||||
@@ -198,8 +198,6 @@
|
||||
"Language": "Språk",
|
||||
"LaunchBrowserHelpText": " Öppna en webbläsare och navigera till Radarr-hemsidan vid appstart.",
|
||||
"LoadingBookFilesFailed": "Det gick inte att ladda filmfiler",
|
||||
"LocalPath": "Lokal sökväg",
|
||||
"LocalPathHelpText": "Sökväg som Radarr ska använda för att komma åt fjärrvägen lokalt",
|
||||
"LogFiles": "Loggfiler",
|
||||
"LogLevel": "Loggnivå",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Spårloggning bör endast aktiveras tillfälligt",
|
||||
@@ -262,7 +260,6 @@
|
||||
"PosterSize": "Affisch storlek",
|
||||
"Preferred": "Föredraget",
|
||||
"PreviewRename": "Förhandsvisa namnbyte",
|
||||
"PriorityHelpText": "Indexeringsprioritet från 1 (högst) till 50 (lägst). Standard: 25.",
|
||||
"Profiles": "Profiler",
|
||||
"Proper": "Rätt",
|
||||
"PropersAndRepacks": "Propers och Repacks",
|
||||
@@ -282,7 +279,6 @@
|
||||
"RSSSync": "RSS-synk",
|
||||
"RSSSyncInterval": "RSS-synkroniseringsintervall",
|
||||
"ReadTheWikiForMoreInformation": "Läs Wiki för mer information",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr stöder alla nedladdningsklienter som använder Newznab-standarden samt andra nedladdningsklienter som anges nedan.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr stöder alla indexerare som använder Newznab-standarden, liksom andra indexerare som anges nedan.",
|
||||
"ReadarrTags": "Radarr taggar",
|
||||
"Real": "Verklig",
|
||||
@@ -295,14 +291,11 @@
|
||||
"Redownload": "Ladda ned igen",
|
||||
"Refresh": "Uppdatera",
|
||||
"RefreshInformationAndScanDisk": "Uppdatera information och skanna disken",
|
||||
"RefreshScan": "Uppdatera & Skanna",
|
||||
"ReleaseDate": "Lanseringsdatum",
|
||||
"ReleaseGroup": "Releasegrupp",
|
||||
"ReleaseRejected": "Utgåva avvisad",
|
||||
"ReleaseWillBeProcessedInterp": "Utgåvan behandlas {0}",
|
||||
"Reload": "Ladda om",
|
||||
"RemotePath": "Fjärrsökväg",
|
||||
"RemotePathHelpText": "Rotväg till katalogen som nedladdningsklienten har åtkomst till",
|
||||
"RemotePathMappings": "Fjärrsökvägar",
|
||||
"Remove": "Ta bort",
|
||||
"RemoveCompletedDownloadsHelpText": "Ta bort importerade nedladdningar från nedladdningsklienthistoriken",
|
||||
@@ -669,7 +662,6 @@
|
||||
"StatusEndedDeceased": "Död",
|
||||
"Term": "Krav",
|
||||
"TheBooksFilesWillBeDeleted": "Böckernas filer kommer raderas.",
|
||||
"Timeleft": "Tid Kvar",
|
||||
"TooManyBooks": "Saknar eller för många böcker? Modifiera eller skapa en ny",
|
||||
"TrackTitle": "Spår-Titel",
|
||||
"UnableToLoadBlocklist": "Kunde inte ladda blocklista",
|
||||
|
||||
@@ -198,8 +198,6 @@
|
||||
"LaunchBrowserHelpText": " เปิดเว็บเบราว์เซอร์และไปที่หน้าแรกของ Radarr เมื่อเริ่มแอป",
|
||||
"LoadingBookFilesFailed": "การโหลดไฟล์ภาพยนตร์ล้มเหลว",
|
||||
"Local": "ท้องถิ่น",
|
||||
"LocalPath": "เส้นทางท้องถิ่น",
|
||||
"LocalPathHelpText": "เส้นทางที่ Radarr ควรใช้เพื่อเข้าถึงเส้นทางระยะไกลในเครื่อง",
|
||||
"LogFiles": "ล็อกไฟล์",
|
||||
"LogLevel": "ระดับบันทึก",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "ควรเปิดใช้งานการบันทึกการติดตามชั่วคราวเท่านั้น",
|
||||
@@ -254,7 +252,6 @@
|
||||
"PosterSize": "ขนาดโปสเตอร์",
|
||||
"Preferred": "ที่ต้องการ",
|
||||
"PreviewRename": "ดูตัวอย่างการเปลี่ยนชื่อ",
|
||||
"PriorityHelpText": "ลำดับความสำคัญของดัชนีจาก 1 (สูงสุด) ถึง 50 (ต่ำสุด) ค่าเริ่มต้น: 25.",
|
||||
"Profiles": "โปรไฟล์",
|
||||
"Proper": "เหมาะสม",
|
||||
"PropersAndRepacks": "ใบพัดและ Repacks",
|
||||
@@ -274,7 +271,6 @@
|
||||
"RSSSync": "RSS Sync",
|
||||
"RSSSyncInterval": "RSS Sync Interval",
|
||||
"ReadTheWikiForMoreInformation": "อ่าน Wiki สำหรับข้อมูลเพิ่มเติม",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr รองรับไคลเอนต์ดาวน์โหลดใด ๆ ที่ใช้มาตรฐาน Newznab รวมถึงไคลเอนต์ดาวน์โหลดอื่น ๆ ตามรายการด้านล่าง",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr รองรับตัวสร้างดัชนีใด ๆ ที่ใช้มาตรฐาน Newznab รวมถึงดัชนีอื่น ๆ ที่แสดงด้านล่าง",
|
||||
"ReadarrTags": "แท็กเรดาร์",
|
||||
"Real": "จริง",
|
||||
@@ -287,14 +283,11 @@
|
||||
"Redownload": "ดาวน์โหลดอีกครั้ง",
|
||||
"Refresh": "รีเฟรช",
|
||||
"RefreshInformationAndScanDisk": "รีเฟรชข้อมูลและสแกนดิสก์",
|
||||
"RefreshScan": "รีเฟรชและสแกน",
|
||||
"ReleaseDate": "วันที่วางจำหน่าย",
|
||||
"ReleaseGroup": "กลุ่มเผยแพร่",
|
||||
"ReleaseRejected": "การเปิดตัวถูกปฏิเสธ",
|
||||
"ReleaseWillBeProcessedInterp": "การเผยแพร่จะได้รับการดำเนินการ {0}",
|
||||
"Reload": "โหลดซ้ำ",
|
||||
"RemotePath": "เส้นทางระยะไกล",
|
||||
"RemotePathHelpText": "พา ธ รูทไปยังไดเร็กทอรีที่ Download Client เข้าถึง",
|
||||
"RemotePathMappings": "การแมปเส้นทางระยะไกล",
|
||||
"Remove": "ลบ",
|
||||
"RemoveCompletedDownloadsHelpText": "ลบการดาวน์โหลดที่นำเข้าจากประวัติไคลเอนต์ดาวน์โหลด",
|
||||
|
||||
@@ -192,8 +192,6 @@
|
||||
"LaunchBrowserHelpText": " Bir web tarayıcısı açın ve uygulama başlangıcında Radarr ana sayfasına gidin.",
|
||||
"LoadingBookFilesFailed": "Film dosyaları yüklenemedi",
|
||||
"Local": "Yerel",
|
||||
"LocalPath": "Yerel Yol",
|
||||
"LocalPathHelpText": "Radarr'ın uzak yola yerel olarak erişmek için kullanması gereken yol",
|
||||
"LogFiles": "Log dosyaları",
|
||||
"LogLevel": "Günlük Düzeyi",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "İzleme günlük kaydı yalnızca geçici olarak etkinleştirilmelidir",
|
||||
@@ -254,7 +252,6 @@
|
||||
"PosterSize": "Poster Boyutu",
|
||||
"Preferred": "Tercihli",
|
||||
"PreviewRename": "Ad değiştirmeyi ön izle",
|
||||
"PriorityHelpText": "1 (En Yüksek) ila 50 (En Düşük) arasında Dizin Oluşturucu Önceliği. Varsayılan: 25.",
|
||||
"Profiles": "Profiller",
|
||||
"Proper": "Uygun",
|
||||
"PropersAndRepacks": "Propers ve Repacks",
|
||||
@@ -274,7 +271,6 @@
|
||||
"RSSSync": "RSS Senkronizasyonu",
|
||||
"RSSSyncInterval": "RSS Senkronizasyon Aralığı",
|
||||
"ReadTheWikiForMoreInformation": "Daha fazla bilgi için Wiki'yi okuyun",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr, Newznab standardını kullanan herhangi bir indirme istemcisinin yanı sıra aşağıda listelenen diğer indirme istemcilerini de destekler.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr, Newznab standardını kullanan tüm indeksleyicileri ve aşağıda listelenen diğer indeksleyicileri destekler.",
|
||||
"ReadarrTags": "Radarr Etiketleri",
|
||||
"Real": "Gerçek",
|
||||
@@ -287,14 +283,11 @@
|
||||
"Redownload": "Yeniden indir",
|
||||
"Refresh": "Yenile",
|
||||
"RefreshInformationAndScanDisk": "Bilgileri ve tarama diskini yenileyin",
|
||||
"RefreshScan": "Yenile ve Tara",
|
||||
"ReleaseDate": "Yayın tarihleri",
|
||||
"ReleaseGroup": "Yayın Grubu",
|
||||
"ReleaseRejected": "Reddedildi",
|
||||
"ReleaseWillBeProcessedInterp": "İzin işlenecek {0}",
|
||||
"Reload": "Tekrar yükle",
|
||||
"RemotePath": "Uzak Yol",
|
||||
"RemotePathHelpText": "İndirme İstemcisinin eriştiği dizinin kök yolu",
|
||||
"RemotePathMappings": "Uzak Yol Eşlemeleri",
|
||||
"Remove": "Kaldırmak",
|
||||
"RemoveCompletedDownloadsHelpText": "İçe aktarılan indirmeleri indirme istemcisi geçmişinden kaldırın",
|
||||
|
||||
@@ -195,8 +195,6 @@
|
||||
"LaunchBrowserHelpText": " Mở trình duyệt web và điều hướng đến trang chủ Radarr khi khởi động ứng dụng.",
|
||||
"LoadingBookFilesFailed": "Tải tệp phim không thành công",
|
||||
"Local": "Địa phương",
|
||||
"LocalPath": "Đường dẫn địa phương",
|
||||
"LocalPathHelpText": "Đường dẫn mà Radarr nên sử dụng để truy cập cục bộ đường dẫn từ xa",
|
||||
"LogFiles": "Tệp nhật ký",
|
||||
"LogLevel": "Mức đăng nhập",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "Ghi nhật ký theo dõi chỉ nên được bật tạm thời",
|
||||
@@ -259,7 +257,6 @@
|
||||
"PosterSize": "Kích thước áp phích",
|
||||
"Preferred": "Ưu tiên",
|
||||
"PreviewRename": "Xem trước Đổi tên",
|
||||
"PriorityHelpText": "Mức độ ưu tiên của người lập chỉ mục từ 1 (Cao nhất) đến 50 (Thấp nhất). Mặc định: 25.",
|
||||
"ProxyBypassFilterHelpText": "Sử dụng ',' làm dấu phân tách và '*.' làm ký tự đại diện cho các miền phụ",
|
||||
"ProxyType": "Loại proxy",
|
||||
"ProxyUsernameHelpText": "Bạn chỉ cần nhập tên người dùng và mật khẩu nếu được yêu cầu. Nếu không, hãy để trống chúng.",
|
||||
@@ -273,7 +270,6 @@
|
||||
"RSSSync": "Đồng bộ hóa RSS",
|
||||
"RSSSyncInterval": "Khoảng thời gian đồng bộ hóa RSS",
|
||||
"ReadTheWikiForMoreInformation": "Đọc Wiki để biết thêm thông tin",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr hỗ trợ bất kỳ ứng dụng khách tải xuống nào sử dụng tiêu chuẩn Newznab, cũng như các ứng dụng khách tải xuống khác được liệt kê bên dưới.",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr hỗ trợ bất kỳ trình chỉ mục nào sử dụng tiêu chuẩn Newznab, cũng như các trình chỉ mục khác được liệt kê bên dưới.",
|
||||
"ReadarrTags": "Thẻ Radarr",
|
||||
"Real": "Thực tế",
|
||||
@@ -286,14 +282,11 @@
|
||||
"Redownload": "Tải lại",
|
||||
"Refresh": "Làm tươi",
|
||||
"RefreshInformationAndScanDisk": "Làm mới thông tin và quét đĩa",
|
||||
"RefreshScan": "Làm mới và quét",
|
||||
"ReleaseDate": "Ngày phát hành",
|
||||
"ReleaseGroup": "Nhóm phát hành",
|
||||
"ReleaseRejected": "Bản phát hành bị từ chối",
|
||||
"ReleaseWillBeProcessedInterp": "Bản phát hành sẽ được xử lý {0}",
|
||||
"Reload": "Nạp lại",
|
||||
"RemotePath": "Đường đi từ xa",
|
||||
"RemotePathHelpText": "Đường dẫn gốc đến thư mục mà Ứng dụng khách tải xuống truy cập",
|
||||
"RemotePathMappings": "Ánh xạ đường dẫn từ xa",
|
||||
"Remove": "Tẩy",
|
||||
"RemoveCompletedDownloadsHelpText": "Xóa các bản tải xuống đã nhập khỏi lịch sử tải xuống của ứng dụng khách",
|
||||
|
||||
@@ -11,10 +11,10 @@
|
||||
"AdvancedSettingsShownClickToHide": "已显示,点击隐藏",
|
||||
"AgeWhenGrabbed": "发布时长",
|
||||
"AlreadyInYourLibrary": "已经在你的库中",
|
||||
"AlternateTitles": "其他电影名称",
|
||||
"AlternateTitles": "替代名称",
|
||||
"Analytics": "分析",
|
||||
"AnalyticsEnabledHelpText": "发送匿名使用信息和错误信息给我们,这些信息包括您的浏览器信息,使用的Web界面,错误报告,操作系统及运行版本。我们会根据这些信息来调整功能和修复问题的优先级。",
|
||||
"AnalyticsEnabledHelpTextWarning": "重启生效",
|
||||
"AnalyticsEnabledHelpTextWarning": "需要重启才能生效",
|
||||
"AppDataDirectory": "AppData目录",
|
||||
"ApplyTags": "应用标签",
|
||||
"ApplyTagsHelpTexts1": "如何给选中的电影添加标签",
|
||||
@@ -145,7 +145,7 @@
|
||||
"GrabID": "抓取ID",
|
||||
"GrabRelease": "抓取版本",
|
||||
"GrabReleaseMessageText": "Radarr无法确定这个发布版本是哪部电影,Radarr可能无法自动导入此版本,你想要获取“{0}”吗?",
|
||||
"GrabSelected": "抓取已选择的",
|
||||
"GrabSelected": "抓取已选",
|
||||
"Group": "组",
|
||||
"HasPendingChangesNoChanges": "无修改",
|
||||
"HasPendingChangesSaveChanges": "保存更改",
|
||||
@@ -179,8 +179,6 @@
|
||||
"LaunchBrowserHelpText": " 启动浏览器时导航到Radarr主页。",
|
||||
"LoadingBookFilesFailed": "读取影片文件失败",
|
||||
"Local": "本地",
|
||||
"LocalPath": "本地路径",
|
||||
"LocalPathHelpText": "Radarr在本地访问远程路径时应该使用的路径",
|
||||
"LogFiles": "日志文件",
|
||||
"LogLevel": "日志等级",
|
||||
"LogLevelvalueTraceTraceLoggingShouldOnlyBeEnabledTemporarily": "追踪日志只应该暂时启用",
|
||||
@@ -199,8 +197,8 @@
|
||||
"MediaManagementSettings": "媒体管理设置",
|
||||
"Message": "信息",
|
||||
"MetadataSettings": "元数据设置",
|
||||
"MinimumAge": "最小年龄",
|
||||
"MinimumAgeHelpText": "仅限Usenet:抓取NZB的最小年龄(分钟)。使用此功能可以使新版本有时间传播到您的Usenet提供程序。",
|
||||
"MinimumAge": "最低间隔",
|
||||
"MinimumAgeHelpText": "仅限Usenet:抓取NewzBin文件的最小时间间隔(分钟) 开启此功能会让新版本有时间传播到你的usenet提供商",
|
||||
"MinimumFreeSpace": "最小剩余空间",
|
||||
"MinimumFreeSpaceWhenImportingHelpText": "如果导入的磁盘空间不足,则禁止导入",
|
||||
"MinimumLimits": "最小限制",
|
||||
@@ -240,7 +238,6 @@
|
||||
"Port": "端口",
|
||||
"PortHelpTextWarning": "重启生效",
|
||||
"PreviewRename": "预览重命名",
|
||||
"PriorityHelpText": "搜刮器优先级从1(最高)到50(最低),默认25。",
|
||||
"Profiles": "配置",
|
||||
"Proper": "合适的",
|
||||
"PropersAndRepacks": "适合的和重封装的Propers and Repacks",
|
||||
@@ -260,7 +257,6 @@
|
||||
"RSSSync": "RSS同步",
|
||||
"RSSSyncInterval": "RSS同步间隔",
|
||||
"ReadTheWikiForMoreInformation": "查阅Wiki获得更多信息",
|
||||
"ReadarrSupportsAnyDownloadClientThatUsesTheNewznabStandardAsWellAsOtherDownloadClientsListedBelow": "Radarr支持任何使用Newznab标准的下载客户端,以及下面列出的其他下载客户端。",
|
||||
"ReadarrSupportsAnyIndexerThatUsesTheNewznabStandardAsWellAsOtherIndexersListedBelow": "Radarr支持任何使用Newznab标准的搜刮器,以及下面列出的其他搜刮器。",
|
||||
"ReadarrTags": "Radarr标签",
|
||||
"Real": "真的",
|
||||
@@ -273,14 +269,11 @@
|
||||
"Redownload": "重新下载",
|
||||
"Refresh": "刷新",
|
||||
"RefreshInformationAndScanDisk": "刷新信息并扫描磁盘",
|
||||
"RefreshScan": "刷新&扫描",
|
||||
"ReleaseDate": "发布日期",
|
||||
"ReleaseGroup": "发布组",
|
||||
"ReleaseRejected": "版本被拒绝",
|
||||
"ReleaseWillBeProcessedInterp": "发布将被处理{0}",
|
||||
"Reload": "重新加载",
|
||||
"RemotePath": "远程路径",
|
||||
"RemotePathHelpText": "下载客户端访问的目录的根路径",
|
||||
"RemotePathMappings": "远程路径映射",
|
||||
"Remove": "移除",
|
||||
"RemoveCompletedDownloadsHelpText": "从下载客户端记录中移除已导入的下载",
|
||||
@@ -453,13 +446,12 @@
|
||||
"SslPortHelpTextWarning": "重启生效",
|
||||
"SslCertPathHelpTextWarning": "重启生效",
|
||||
"ProxyUsernameHelpText": "如果需要,您只需要输入用户名和密码。否则就让它们为空。",
|
||||
"MaintenanceRelease": "维护版本",
|
||||
"MaintenanceRelease": "维护版本:修复错误及其他改进,参见Github提交 查看更多详情",
|
||||
"DeleteBookFileMessageText": "您确认您想删除吗?",
|
||||
"ApiKeyHelpTextWarning": "重启生效",
|
||||
"Actions": "操作",
|
||||
"AddMissing": "添加丢失项",
|
||||
"AddNewItem": "添加新项目",
|
||||
"Timeleft": "剩余时间",
|
||||
"DeleteRootFolderMessageText": "您确定要删除索引 '{0}'吗?",
|
||||
"Progress": "进度",
|
||||
"Publisher": "发布者",
|
||||
@@ -490,7 +482,7 @@
|
||||
"ReleaseBranchCheckOfficialBranchMessage": "分支 {0} 不是合法的Radarr发布分支,您不会收到任何更新",
|
||||
"SelectAll": "选择全部",
|
||||
"SelectedCountBooksSelectedInterp": "已选{0}部影片",
|
||||
"ThisCannotBeCancelled": "该操作不能取消,除非重新启动Radarr。",
|
||||
"ThisCannotBeCancelled": "在不禁用所有索引器的情况下,一旦启动就无法取消",
|
||||
"Time": "时间",
|
||||
"UnableToLoadBlocklist": "无法加载黑名单",
|
||||
"UnselectAll": "全不选",
|
||||
@@ -501,5 +493,15 @@
|
||||
"RemoveFromBlocklist": "从黑名单中移除",
|
||||
"Blocklist": "黑名单",
|
||||
"BlocklistHelpText": "防止Radarr再次自动抓取此版本",
|
||||
"BlocklistRelease": "黑名单版本"
|
||||
"BlocklistRelease": "黑名单版本",
|
||||
"AllowFingerprinting": "允许指纹识别",
|
||||
"AllExpandedCollapseAll": "收缩所有",
|
||||
"AllExpandedExpandAll": "展开所有",
|
||||
"Duration": "期间",
|
||||
"Filters": "过滤器",
|
||||
"AppDataLocationHealthCheckMessage": "更新将无法阻止在更新时删除应用数据",
|
||||
"FileWasDeletedByViaUI": "文件已通过 UI 删除",
|
||||
"IndexerJackettAll": "使用的Jackett端口: {0}不被索引器支持",
|
||||
"SizeLimit": "尺寸限制",
|
||||
"Started": "已开始"
|
||||
}
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
{
|
||||
"About": "关于",
|
||||
"Analytics": "分析"
|
||||
"Analytics": "分析",
|
||||
"20MinutesTwenty": "20 分钟: {0}",
|
||||
"45MinutesFourtyFive": "45 分钟: {0}",
|
||||
"60MinutesSixty": "60 分钟: {0}",
|
||||
"AddingTag": "添加标签"
|
||||
}
|
||||
|
||||
@@ -1 +1,3 @@
|
||||
{}
|
||||
{
|
||||
"About": "關於"
|
||||
}
|
||||
|
||||
@@ -90,7 +90,7 @@ namespace NzbDrone.Core.MediaFiles
|
||||
|
||||
try
|
||||
{
|
||||
_logger.Debug("Creating folder [0]", destinationFolder);
|
||||
_logger.Debug("Creating folder {0}", destinationFolder);
|
||||
_diskProvider.CreateFolder(destinationFolder);
|
||||
}
|
||||
catch (IOException e)
|
||||
|
||||
@@ -222,22 +222,33 @@ namespace NzbDrone.Core.Notifications.CustomScript
|
||||
failures.Add(new NzbDroneValidationFailure("Path", "File does not exist"));
|
||||
}
|
||||
|
||||
try
|
||||
foreach (var systemFolder in SystemFolders.GetSystemFolders())
|
||||
{
|
||||
var environmentVariables = new StringDictionary();
|
||||
environmentVariables.Add("Readarr_EventType", "Test");
|
||||
|
||||
var processOutput = ExecuteScript(environmentVariables);
|
||||
|
||||
if (processOutput.ExitCode != 0)
|
||||
if (systemFolder.IsParentPath(Settings.Path))
|
||||
{
|
||||
failures.Add(new NzbDroneValidationFailure(string.Empty, $"Script exited with code: {processOutput.ExitCode}"));
|
||||
failures.Add(new NzbDroneValidationFailure("Path", $"Must not be a descendant of '{systemFolder}'"));
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
if (failures.Empty())
|
||||
{
|
||||
_logger.Error(ex);
|
||||
failures.Add(new NzbDroneValidationFailure(string.Empty, ex.Message));
|
||||
try
|
||||
{
|
||||
var environmentVariables = new StringDictionary();
|
||||
environmentVariables.Add("Readarr_EventType", "Test");
|
||||
|
||||
var processOutput = ExecuteScript(environmentVariables);
|
||||
|
||||
if (processOutput.ExitCode != 0)
|
||||
{
|
||||
failures.Add(new NzbDroneValidationFailure(string.Empty, $"Script exited with code: {processOutput.ExitCode}"));
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.Error(ex);
|
||||
failures.Add(new NzbDroneValidationFailure(string.Empty, ex.Message));
|
||||
}
|
||||
}
|
||||
|
||||
return new ValidationResult(failures);
|
||||
|
||||
44
src/NzbDrone.Core/Validation/Paths/RecycleBinValidator.cs
Normal file
44
src/NzbDrone.Core/Validation/Paths/RecycleBinValidator.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
using FluentValidation.Validators;
|
||||
using NzbDrone.Common.Extensions;
|
||||
using NzbDrone.Core.Configuration;
|
||||
|
||||
namespace NzbDrone.Core.Validation.Paths
|
||||
{
|
||||
public class RecycleBinValidator : PropertyValidator
|
||||
{
|
||||
private readonly IConfigService _configService;
|
||||
|
||||
public RecycleBinValidator(IConfigService configService)
|
||||
: base("Path is {relationship} configured recycle bin folder")
|
||||
{
|
||||
_configService = configService;
|
||||
}
|
||||
|
||||
protected override bool IsValid(PropertyValidatorContext context)
|
||||
{
|
||||
var recycleBin = _configService.RecycleBin;
|
||||
var folder = context.PropertyValue.ToString();
|
||||
|
||||
if (context.PropertyValue == null || recycleBin.IsNullOrWhiteSpace())
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
if (recycleBin.PathEquals(folder))
|
||||
{
|
||||
context.MessageFormatter.AppendArgument("relationship", "set to");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if (recycleBin.IsParentPath(folder))
|
||||
{
|
||||
context.MessageFormatter.AppendArgument("relationship", "child of");
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using System.Linq;
|
||||
using FluentValidation.Validators;
|
||||
using NzbDrone.Common.Extensions;
|
||||
using NzbDrone.Core.RootFolders;
|
||||
|
||||
namespace NzbDrone.Core.Validation.Paths
|
||||
{
|
||||
public class RootFolderAncestorValidator : PropertyValidator
|
||||
{
|
||||
private readonly IRootFolderService _rootFolderService;
|
||||
|
||||
public RootFolderAncestorValidator(IRootFolderService rootFolderService)
|
||||
: base("Path is an ancestor of an existing root folder")
|
||||
{
|
||||
_rootFolderService = rootFolderService;
|
||||
}
|
||||
|
||||
protected override bool IsValid(PropertyValidatorContext context)
|
||||
{
|
||||
if (context.PropertyValue == null)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return !_rootFolderService.All().Any(s => context.PropertyValue.ToString().IsParentPath(s.Path));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -22,13 +22,13 @@ namespace NzbDrone.Update.UpdateEngine
|
||||
{
|
||||
try
|
||||
{
|
||||
var targetExecutable = Path.Combine(targetFolder, "Readarr.exe");
|
||||
var targetExecutable = Path.Combine(targetFolder, "Readarr.dll");
|
||||
|
||||
if (File.Exists(targetExecutable))
|
||||
{
|
||||
var versionInfo = System.Diagnostics.FileVersionInfo.GetVersionInfo(targetExecutable);
|
||||
|
||||
return versionInfo.FileVersion;
|
||||
return versionInfo.ProductVersion;
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
@@ -51,6 +51,7 @@ namespace Readarr.Api.V1.Author
|
||||
IMapCoversToLocal coverMapper,
|
||||
IManageCommandQueue commandQueueManager,
|
||||
IRootFolderService rootFolderService,
|
||||
RecycleBinValidator recycleBinValidator,
|
||||
RootFolderValidator rootFolderValidator,
|
||||
MappedNetworkDriveValidator mappedNetworkDriveValidator,
|
||||
AuthorPathValidator authorPathValidator,
|
||||
@@ -80,6 +81,7 @@ namespace Readarr.Api.V1.Author
|
||||
.SetValidator(mappedNetworkDriveValidator)
|
||||
.SetValidator(authorPathValidator)
|
||||
.SetValidator(authorAncestorValidator)
|
||||
.SetValidator(recycleBinValidator)
|
||||
.SetValidator(systemFolderValidator)
|
||||
.When(s => !s.Path.IsNullOrWhiteSpace());
|
||||
|
||||
|
||||
@@ -10,12 +10,28 @@ namespace Readarr.Api.V1.Config
|
||||
[V1ApiController("config/mediamanagement")]
|
||||
public class MediaManagementConfigController : ConfigController<MediaManagementConfigResource>
|
||||
{
|
||||
public MediaManagementConfigController(IConfigService configService, PathExistsValidator pathExistsValidator, FolderChmodValidator folderChmodValidator)
|
||||
public MediaManagementConfigController(IConfigService configService,
|
||||
PathExistsValidator pathExistsValidator,
|
||||
FolderChmodValidator folderChmodValidator,
|
||||
FolderWritableValidator folderWritableValidator,
|
||||
AuthorPathValidator authorPathValidator,
|
||||
StartupFolderValidator startupFolderValidator,
|
||||
SystemFolderValidator systemFolderValidator,
|
||||
RootFolderAncestorValidator rootFolderAncestorValidator,
|
||||
RootFolderValidator rootFolderValidator)
|
||||
: base(configService)
|
||||
{
|
||||
SharedValidator.RuleFor(c => c.RecycleBin).IsValidPath()
|
||||
.SetValidator(folderWritableValidator)
|
||||
.SetValidator(rootFolderValidator)
|
||||
.SetValidator(pathExistsValidator)
|
||||
.SetValidator(authorPathValidator)
|
||||
.SetValidator(rootFolderAncestorValidator)
|
||||
.SetValidator(startupFolderValidator)
|
||||
.SetValidator(systemFolderValidator)
|
||||
.When(c => !string.IsNullOrWhiteSpace(c.RecycleBin));
|
||||
SharedValidator.RuleFor(c => c.RecycleBinCleanupDays).GreaterThanOrEqualTo(0);
|
||||
SharedValidator.RuleFor(c => c.ChmodFolder).SetValidator(folderChmodValidator).When(c => !string.IsNullOrEmpty(c.ChmodFolder) && (OsInfo.IsLinux || OsInfo.IsOsx));
|
||||
SharedValidator.RuleFor(c => c.RecycleBin).IsValidPath().SetValidator(pathExistsValidator).When(c => !string.IsNullOrWhiteSpace(c.RecycleBin));
|
||||
SharedValidator.RuleFor(c => c.MinimumFreeSpaceWhenImporting).GreaterThanOrEqualTo(100);
|
||||
}
|
||||
|
||||
|
||||
@@ -25,6 +25,7 @@ namespace Readarr.Api.V1.RootFolders
|
||||
public RootFolderController(IRootFolderService rootFolderService,
|
||||
ICalibreProxy calibreProxy,
|
||||
IBroadcastSignalRMessage signalRBroadcaster,
|
||||
RecycleBinValidator recycleBinValidator,
|
||||
RootFolderValidator rootFolderValidator,
|
||||
PathExistsValidator pathExistsValidator,
|
||||
MappedNetworkDriveValidator mappedNetworkDriveValidator,
|
||||
@@ -43,6 +44,7 @@ namespace Readarr.Api.V1.RootFolders
|
||||
.IsValidPath()
|
||||
.SetValidator(mappedNetworkDriveValidator)
|
||||
.SetValidator(startupFolderValidator)
|
||||
.SetValidator(recycleBinValidator)
|
||||
.SetValidator(pathExistsValidator)
|
||||
.SetValidator(systemFolderValidator)
|
||||
.SetValidator(folderWritableValidator);
|
||||
|
||||
@@ -29,6 +29,7 @@ namespace Readarr.Http.Authentication
|
||||
.AddBasic(AuthenticationType.Basic.ToString())
|
||||
.AddCookie(AuthenticationType.Forms.ToString(), options =>
|
||||
{
|
||||
options.Cookie.Name = "ReadarrAuth";
|
||||
options.AccessDeniedPath = "/login?loginFailed=true";
|
||||
options.LoginPath = "/login";
|
||||
options.ExpireTimeSpan = TimeSpan.FromDays(7);
|
||||
|
||||
@@ -46,7 +46,10 @@ namespace Readarr.Http.ClientSchema
|
||||
{
|
||||
var field = fields.Find(f => f.Name == mapping.Field.Name);
|
||||
|
||||
mapping.SetterFunc(target, field.Value);
|
||||
if (field != null)
|
||||
{
|
||||
mapping.SetterFunc(target, field.Value);
|
||||
}
|
||||
}
|
||||
|
||||
return target;
|
||||
|
||||
92
yarn.lock
92
yarn.lock
@@ -1368,10 +1368,10 @@
|
||||
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf"
|
||||
integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==
|
||||
|
||||
"@microsoft/signalr@6.0.1":
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/@microsoft/signalr/-/signalr-6.0.1.tgz#89eeacabb558cfc90c546f8bf165ea34a1f91c28"
|
||||
integrity sha512-witYtScUxPxl1QA69AsuVIsn54S4Rcfym3c/ON2bsA0ZWHcvskA0dUnOX9JCxOduGMEGwkMprKFfVTxUO/inzQ==
|
||||
"@microsoft/signalr@6.0.3":
|
||||
version "6.0.3"
|
||||
resolved "https://registry.yarnpkg.com/@microsoft/signalr/-/signalr-6.0.3.tgz#9904efd48cd488e3c1c80930ff9fbb3c9f55895d"
|
||||
integrity sha512-wWGVC2xi8OxNjyir8iQWuyxWHy3Dkakk2Q3VreCE7pDzFAgZ4pId6abJlRPMVIQxkUvUGc8knMW5l3sv2bJ/yw==
|
||||
dependencies:
|
||||
abort-controller "^3.0.0"
|
||||
eventsource "^1.0.7"
|
||||
@@ -1428,66 +1428,66 @@
|
||||
resolved "https://registry.yarnpkg.com/@react-dnd/shallowequal/-/shallowequal-2.0.0.tgz#a3031eb54129f2c66b2753f8404266ec7bf67f0a"
|
||||
integrity sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg==
|
||||
|
||||
"@sentry/browser@6.10.0":
|
||||
version "6.10.0"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-6.10.0.tgz#92e72edca584d940fba80cf6477d4a54c6dea573"
|
||||
integrity sha512-H0Blgp8f8bomebkkGWIgxHVjabtQAlsKJDiFXBg7gIc75YcarRxwH0R3hMog1/h8mmv4CGGUsy5ljYW6jsNnvA==
|
||||
"@sentry/browser@6.18.2":
|
||||
version "6.18.2"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-6.18.2.tgz#f980add635c242420a7f0c4dd3ed5668f1f39513"
|
||||
integrity sha512-EsqKSNboi2gOiMuEwQranLucxrARi00y2vgUnaPXcqTKTlVlHDetoWHvq8/r29idA1JHGka5tDrwrmWccWIkrg==
|
||||
dependencies:
|
||||
"@sentry/core" "6.10.0"
|
||||
"@sentry/types" "6.10.0"
|
||||
"@sentry/utils" "6.10.0"
|
||||
"@sentry/core" "6.18.2"
|
||||
"@sentry/types" "6.18.2"
|
||||
"@sentry/utils" "6.18.2"
|
||||
tslib "^1.9.3"
|
||||
|
||||
"@sentry/core@6.10.0":
|
||||
version "6.10.0"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.10.0.tgz#70af9dc72bb6a5b59062a31b7de023f7f1878357"
|
||||
integrity sha512-5KlxHJlbD7AMo+b9pMGkjxUOfMILtsqCtGgI7DMvZNfEkdohO8QgUY+hPqr540kmwArFS91ipQYWhqzGaOhM3Q==
|
||||
"@sentry/core@6.18.2":
|
||||
version "6.18.2"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.18.2.tgz#d27619b7b4a4b90e2cfdc254d40ee9d630b251b9"
|
||||
integrity sha512-r5ad/gq5S/JHc9sd5CUhZQT9ojQ+f+thk/AoGeGawX/8HURZYAgIqD565d6FK0VsZEDkdRMl58z1Qon20h3y1g==
|
||||
dependencies:
|
||||
"@sentry/hub" "6.10.0"
|
||||
"@sentry/minimal" "6.10.0"
|
||||
"@sentry/types" "6.10.0"
|
||||
"@sentry/utils" "6.10.0"
|
||||
"@sentry/hub" "6.18.2"
|
||||
"@sentry/minimal" "6.18.2"
|
||||
"@sentry/types" "6.18.2"
|
||||
"@sentry/utils" "6.18.2"
|
||||
tslib "^1.9.3"
|
||||
|
||||
"@sentry/hub@6.10.0":
|
||||
version "6.10.0"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.10.0.tgz#d59be18016426fd3a5e8d38712c2080466aafe3c"
|
||||
integrity sha512-MV8wjhWiFAXZAhmj7Ef5QdBr2IF93u8xXiIo2J+dRZ7eVa4/ZszoUiDbhUcl/TPxczaw4oW2a6tINBNFLzXiig==
|
||||
"@sentry/hub@6.18.2":
|
||||
version "6.18.2"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.18.2.tgz#fdb8536f61899fd48f3d1b49a6957348ad729ec5"
|
||||
integrity sha512-d0AugekMkbnN12b4EXMjseJxtLPc9S20DGobCPUb4oAQT6S2oDQEj1jwP6PQ5vtgyy+GMYWxBMgqAQ4pjVYISQ==
|
||||
dependencies:
|
||||
"@sentry/types" "6.10.0"
|
||||
"@sentry/utils" "6.10.0"
|
||||
"@sentry/types" "6.18.2"
|
||||
"@sentry/utils" "6.18.2"
|
||||
tslib "^1.9.3"
|
||||
|
||||
"@sentry/integrations@6.10.0":
|
||||
version "6.10.0"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-6.10.0.tgz#f8f9e7efd55ec44d0408bd4493df1c9ceabaaa63"
|
||||
integrity sha512-NMtB0jjFYFZRxyjYu2dWLThk9YPIwqhi4hYywmWkbv4/ILzi5Rwnh+aqNW6yrj8qG4b9itNMh3YvEzmf0aqauw==
|
||||
"@sentry/integrations@6.18.2":
|
||||
version "6.18.2"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/integrations/-/integrations-6.18.2.tgz#caed0092e8a6c9fb0b8b7efd2deef946ca76e626"
|
||||
integrity sha512-jzEH15m1dewzma2Fp0ENNRUDEOI3gGPfC/+lsLAuj9AMoNZ6qykQP8cB8OPTlzIZc0oyWGAE/1LoTrndPAvoPA==
|
||||
dependencies:
|
||||
"@sentry/types" "6.10.0"
|
||||
"@sentry/utils" "6.10.0"
|
||||
"@sentry/types" "6.18.2"
|
||||
"@sentry/utils" "6.18.2"
|
||||
localforage "^1.8.1"
|
||||
tslib "^1.9.3"
|
||||
|
||||
"@sentry/minimal@6.10.0":
|
||||
version "6.10.0"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.10.0.tgz#9404b93fae649b6c48e1da8f0991b87cf9999561"
|
||||
integrity sha512-yarm046UgUFIBoxqnBan2+BEgaO9KZCrLzsIsmALiQvpfW92K1lHurSawl5W6SR7wCYBnNn7CPvPE/BHFdy4YA==
|
||||
"@sentry/minimal@6.18.2":
|
||||
version "6.18.2"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.18.2.tgz#581c2fc030b9c89f1fcdc3e4855b91ce6c95db56"
|
||||
integrity sha512-n7KYuo34W2LxE+3dnZ47of7XHuORINCnXq66XH72eoj67tf0XeWbIhEJrYGmoLRyRfoCYYrBLWiDl/uTjLzrzQ==
|
||||
dependencies:
|
||||
"@sentry/hub" "6.10.0"
|
||||
"@sentry/types" "6.10.0"
|
||||
"@sentry/hub" "6.18.2"
|
||||
"@sentry/types" "6.18.2"
|
||||
tslib "^1.9.3"
|
||||
|
||||
"@sentry/types@6.10.0":
|
||||
version "6.10.0"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.10.0.tgz#6b1f44e5ed4dbc2710bead24d1b32fb08daf04e1"
|
||||
integrity sha512-M7s0JFgG7/6/yNVYoPUbxzaXDhnzyIQYRRJJKRaTD77YO4MHvi4Ke8alBWqD5fer0cPIfcSkBqa9BLdqRqcMWw==
|
||||
"@sentry/types@6.18.2":
|
||||
version "6.18.2"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.18.2.tgz#f528fec8b75c19d5a6976004e71703184c6cf7be"
|
||||
integrity sha512-WzpJf/Q5aORTzrSwer/As1NlO90dBAQpaHV2ikDDKqOyMWEgjKb5/4gh59p9gH8JMMnLetP1AvQel0fOj5UnUw==
|
||||
|
||||
"@sentry/utils@6.10.0":
|
||||
version "6.10.0"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.10.0.tgz#839a099fa0a1f0ca0893c7ce8c55ba0608c1d80f"
|
||||
integrity sha512-F9OczOcZMFtazYVZ6LfRIe65/eOfQbiAedIKS0li4npuMz0jKYRbxrjd/U7oLiNQkPAp4/BujU4m1ZIwq6a+tg==
|
||||
"@sentry/utils@6.18.2":
|
||||
version "6.18.2"
|
||||
resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.18.2.tgz#c572a3ff49113e7dc4c97db1a18d117f199b9fff"
|
||||
integrity sha512-EC619jesknyu4xpwud5WC/5odYLz6JUy7OSFy5405PpdGeh/m8XUvuJAx4zDx0Iz/Mlk0S1Md+ZcQwqkv39dkw==
|
||||
dependencies:
|
||||
"@sentry/types" "6.10.0"
|
||||
"@sentry/types" "6.18.2"
|
||||
tslib "^1.9.3"
|
||||
|
||||
"@stylelint/postcss-css-in-js@^0.37.2":
|
||||
|
||||
Reference in New Issue
Block a user