1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Mark McDowall c2989ced7f Fixed integration test's path to Sonarr executable
(cherry picked from commit 652027821d140c4f04fc7ca5883043bad25d89bb)
2022-08-19 06:31:39 +00:00
73 changed files with 316 additions and 1473 deletions
+2 -4
View File
@@ -5,9 +5,9 @@ body:
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Is there an existing issue for this? label: Is there an existing issue for this?
description: Please search to see if an open or closed issue already exists for the bug you encountered. If a bug exists and is closed note that it may only be fixed in an unstable branch. description: Please search to see if an issue already exists for the bug you encountered.
options: options:
- label: I have searched the existing open and closed issues - label: I have searched the existing issues
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
@@ -42,14 +42,12 @@ body:
- **Docker Install**: Yes - **Docker Install**: Yes
- **Using Reverse Proxy**: No - **Using Reverse Proxy**: No
- **Browser**: Firefox 90 (If UI related) - **Browser**: Firefox 90 (If UI related)
- **Database**: Sqlite 3.36.0
value: | value: |
- OS: - OS:
- Radarr: - Radarr:
- Docker Install: - Docker Install:
- Using Reverse Proxy: - Using Reverse Proxy:
- Browser: - Browser:
- Database:
render: markdown render: markdown
validations: validations:
required: true required: true
+1 -1
View File
@@ -9,7 +9,7 @@ variables:
testsFolder: './_tests' testsFolder: './_tests'
yarnCacheFolder: $(Pipeline.Workspace)/.yarn yarnCacheFolder: $(Pipeline.Workspace)/.yarn
nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages nugetCacheFolder: $(Pipeline.Workspace)/.nuget/packages
majorVersion: '4.2.4' majorVersion: '4.2.2'
minorVersion: $[counter('minorVersion', 2000)] minorVersion: $[counter('minorVersion', 2000)]
radarrVersion: '$(majorVersion).$(minorVersion)' radarrVersion: '$(majorVersion).$(minorVersion)'
buildName: '$(Build.SourceBranchName).$(radarrVersion)' buildName: '$(Build.SourceBranchName).$(radarrVersion)'
+3 -1
View File
@@ -223,6 +223,7 @@ module.exports = (env) => {
{ {
loader: 'url-loader', loader: 'url-loader',
options: { options: {
limit: 24096,
mimetype: 'application/font-woff', mimetype: 'application/font-woff',
emitFile: false, emitFile: false,
name: 'Content/Fonts/[name].[ext]' name: 'Content/Fonts/[name].[ext]'
@@ -232,11 +233,12 @@ module.exports = (env) => {
}, },
{ {
test: /\.(ttf|eot|eot?#iefix|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, test: /\.(ttf|eot|eot?#iefix|gif|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [ use: [
{ {
loader: 'file-loader', loader: 'file-loader',
options: { options: {
limit: 24096,
emitFile: false, emitFile: false,
name: 'Content/Fonts/[name].[ext]' name: 'Content/Fonts/[name].[ext]'
} }
@@ -115,7 +115,7 @@ class EditCollectionModalContent extends Component {
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<FormLabel>{translate('RootFolder')}</FormLabel> <FormLabel>{translate('Folder')}</FormLabel>
<FormInputGroup <FormInputGroup
type={inputTypes.ROOT_FOLDER_SELECT} type={inputTypes.ROOT_FOLDER_SELECT}
@@ -1,8 +1,7 @@
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import React, { Component } from 'react'; import React, { Component } from 'react';
import Slider from 'react-slick';
import TextTruncate from 'react-text-truncate'; import TextTruncate from 'react-text-truncate';
import { Navigation } from 'swiper';
import { Swiper, SwiperSlide } from 'swiper/react';
import EditCollectionModalConnector from 'Collection/Edit/EditCollectionModalConnector'; import EditCollectionModalConnector from 'Collection/Edit/EditCollectionModalConnector';
import CheckInput from 'Components/Form/CheckInput'; import CheckInput from 'Components/Form/CheckInput';
import Icon from 'Components/Icon'; import Icon from 'Components/Icon';
@@ -18,9 +17,8 @@ import CollectionMovieConnector from './CollectionMovieConnector';
import CollectionMovieLabelConnector from './CollectionMovieLabelConnector'; import CollectionMovieLabelConnector from './CollectionMovieLabelConnector';
import styles from './CollectionOverview.css'; import styles from './CollectionOverview.css';
// Import Swiper styles import 'slick-carousel/slick/slick.css';
import 'swiper/css'; import 'slick-carousel/slick/slick-theme.css';
import 'swiper/css/navigation';
const columnPadding = parseInt(dimensions.movieIndexColumnPadding); const columnPadding = parseInt(dimensions.movieIndexColumnPadding);
const columnPaddingSmallScreen = parseInt(dimensions.movieIndexColumnPaddingSmallScreen); const columnPaddingSmallScreen = parseInt(dimensions.movieIndexColumnPaddingSmallScreen);
@@ -54,12 +52,8 @@ class CollectionOverview extends Component {
// //
// Control // Control
setSliderPrevRef = (ref) => { setSliderRef = (ref) => {
this._swiperPrevRef = ref; this.setState({ slider: ref });
};
setSliderNextRef = (ref) => {
this._swiperNextRef = ref;
}; };
// //
@@ -126,6 +120,15 @@ class CollectionOverview extends Component {
const contentHeight = getContentHeight(rowHeight, isSmallScreen); const contentHeight = getContentHeight(rowHeight, isSmallScreen);
const overviewHeight = contentHeight - titleRowHeight - posterHeight; const overviewHeight = contentHeight - titleRowHeight - posterHeight;
const sliderSettings = {
arrows: false,
dots: false,
infinite: false,
slidesToShow: 1,
slidesToScroll: 1,
variableWidth: true
};
return ( return (
<div className={styles.container}> <div className={styles.container}>
<div className={styles.content}> <div className={styles.content}>
@@ -163,21 +166,19 @@ class CollectionOverview extends Component {
{ {
showPosters && showPosters &&
<div className={styles.navigationButtons}> <div className={styles.navigationButtons}>
<span ref={this.setSliderPrevRef}> <IconButton
<IconButton name={icons.ARROW_LEFT}
name={icons.ARROW_LEFT} title={translate('ScrollMovies')}
title={translate('ScrollMovies')} onPress={this.state.slider?.slickPrev}
size={20} size={20}
/> />
</span>
<span ref={this.setSliderNextRef}> <IconButton
<IconButton name={icons.ARROW_RIGHT}
name={icons.ARROW_RIGHT} title={translate('ScrollMovies')}
title={translate('ScrollMovies')} onPress={this.state.slider?.slickNext}
size={20} size={20}
/> />
</span>
</div> </div>
} }
@@ -269,23 +270,9 @@ class CollectionOverview extends Component {
{ {
showPosters ? showPosters ?
<div className={styles.sliderContainer}> <div className={styles.sliderContainer}>
<Swiper <Slider ref={this.setSliderRef} {...sliderSettings}>
slidesPerView='auto'
spaceBetween={10}
slidesPerGroup={3}
loop={false}
loopFillGroupWithBlank={true}
className="mySwiper"
modules={[Navigation]}
onInit={(swiper) => {
swiper.params.navigation.prevEl = this._swiperPrevRef;
swiper.params.navigation.nextEl = this._swiperNextRef;
swiper.navigation.init();
swiper.navigation.update();
}}
>
{movies.map((movie) => ( {movies.map((movie) => (
<SwiperSlide key={movie.tmdbId} style={{ width: posterWidth }}> <div className={styles.movie} key={movie.tmdbId}>
<CollectionMovieConnector <CollectionMovieConnector
key={movie.tmdbId} key={movie.tmdbId}
posterWidth={posterWidth} posterWidth={posterWidth}
@@ -294,9 +281,9 @@ class CollectionOverview extends Component {
collectionId={id} collectionId={id}
{...movie} {...movie}
/> />
</SwiperSlide> </div>
))} ))}
</Swiper> </Slider>
</div> : </div> :
<div className={styles.labelsContainer}> <div className={styles.labelsContainer}>
{movies.map((movie) => ( {movies.map((movie) => (
@@ -1,5 +1,4 @@
.jumpBar { .jumpBar {
z-index: $pageJumpBarZIndex;
display: flex; display: flex;
align-content: stretch; align-content: stretch;
align-items: stretch; align-items: stretch;
@@ -2,8 +2,7 @@
composes: link from '~Components/Link/Link.css'; composes: link from '~Components/Link/Link.css';
padding-top: 4px; padding-top: 4px;
min-width: $toolbarButtonWidth; width: $toolbarButtonWidth;
width: min-content;
text-align: center; text-align: center;
&:hover { &:hover {
@@ -21,7 +21,6 @@ function HostSettings(props) {
port, port,
urlBase, urlBase,
instanceName, instanceName,
applicationUrl,
enableSsl, enableSsl,
sslPort, sslPort,
sslCertPath, sslCertPath,
@@ -91,21 +90,6 @@ function HostSettings(props) {
/> />
</FormGroup> </FormGroup>
<FormGroup
advancedSettings={advancedSettings}
isAdvanced={true}
>
<FormLabel>{translate('ApplicationURL')}</FormLabel>
<FormInputGroup
type={inputTypes.TEXT}
name="applicationUrl"
helpText={translate('ApplicationUrlHelpText')}
onChange={onInputChange}
{...applicationUrl}
/>
</FormGroup>
<FormGroup <FormGroup
advancedSettings={advancedSettings} advancedSettings={advancedSettings}
isAdvanced={true} isAdvanced={true}
@@ -166,7 +166,7 @@ function EditImportListModalContent(props) {
</FormGroup> </FormGroup>
<FormGroup> <FormGroup>
<FormLabel>{translate('RootFolder')}</FormLabel> <FormLabel>{translate('Folder')}</FormLabel>
<FormInputGroup <FormInputGroup
type={inputTypes.ROOT_FOLDER_SELECT} type={inputTypes.ROOT_FOLDER_SELECT}
@@ -262,10 +262,10 @@ export const defaultState = {
type: filterBuilderTypes.ARRAY, type: filterBuilderTypes.ARRAY,
optionsSelector: function(items) { optionsSelector: function(items) {
const collectionList = items.reduce((acc, movie) => { const collectionList = items.reduce((acc, movie) => {
if (movie.collection && movie.collection.title) { if (movie.collection) {
acc.push({ acc.push({
id: movie.collection.title, id: movie.collection.name,
name: movie.collection.title name: movie.collection.name
}); });
} }
+1 -1
View File
@@ -116,7 +116,7 @@ export const filterPredicates = {
const predicate = filterTypePredicates[type]; const predicate = filterTypePredicates[type];
const { collection } = item; const { collection } = item;
return predicate(collection && collection.title ? collection.title : '', filterValue); return predicate(collection ? collection.title : '', filterValue);
}, },
originalLanguage: function(item, filterValue, type) { originalLanguage: function(item, filterValue, type) {
@@ -227,7 +227,7 @@ export const defaultState = {
collection: function(item) { collection: function(item) {
const { collection ={} } = item; const { collection ={} } = item;
return collection.title; return collection.name;
}, },
originalLanguage: function(item) { originalLanguage: function(item) {
@@ -339,7 +339,7 @@ export const defaultState = {
type: filterBuilderTypes.ARRAY, type: filterBuilderTypes.ARRAY,
optionsSelector: function(items) { optionsSelector: function(items) {
const collectionList = items.reduce((acc, movie) => { const collectionList = items.reduce((acc, movie) => {
if (movie.collection && movie.collection.title) { if (movie.collection) {
acc.push({ acc.push({
id: movie.collection.title, id: movie.collection.title,
name: movie.collection.title name: movie.collection.title
@@ -1,5 +1,4 @@
module.exports = { module.exports = {
pageJumpBarZIndex: 10,
modalZIndex: 1000, modalZIndex: 1000,
popperZIndex: 2000 popperZIndex: 2000
}; };
+2 -1
View File
@@ -62,7 +62,8 @@
"react-document-title": "2.0.3", "react-document-title": "2.0.3",
"react-dom": "17.0.2", "react-dom": "17.0.2",
"react-focus-lock": "2.5.0", "react-focus-lock": "2.5.0",
"swiper": "8.3.2", "react-slick": "0.28.1",
"slick-carousel": "1.8.1",
"react-google-recaptcha": "2.1.0", "react-google-recaptcha": "2.1.0",
"react-lazyload": "3.2.0", "react-lazyload": "3.2.0",
"react-measure": "1.4.7", "react-measure": "1.4.7",
@@ -64,7 +64,6 @@ namespace NzbDrone.Common.Test.InstrumentationTests
[TestCase("https://notifiarr.com/notifier.php: api=1234530f-422f-4aac-b6b3-01233210aaaa&radarr_health_issue_message=Download")] [TestCase("https://notifiarr.com/notifier.php: api=1234530f-422f-4aac-b6b3-01233210aaaa&radarr_health_issue_message=Download")]
[TestCase("/readarr/signalr/messages/negotiate?access_token=1234530f422f4aacb6b301233210aaaa&negotiateVersion=1")] [TestCase("/readarr/signalr/messages/negotiate?access_token=1234530f422f4aacb6b301233210aaaa&negotiateVersion=1")]
[TestCase(@"[Info] MigrationController: *** Migrating Database=radarr-main;Host=postgres14;Username=mySecret;Password=mySecret;Port=5432;Enlist=False ***")] [TestCase(@"[Info] MigrationController: *** Migrating Database=radarr-main;Host=postgres14;Username=mySecret;Password=mySecret;Port=5432;Enlist=False ***")]
[TestCase(@"[Info] MigrationController: *** Migrating Database=radarr-main;Host=postgres14;Username=mySecret;Password=mySecret;Port=5432;token=mySecret;Enlist=False&username=mySecret;mypassword=mySecret;mypass=shouldkeep1;test_token=mySecret;password=123%@%_@!#^#@;use_password=mySecret;get_token=shouldkeep2;usetoken=shouldkeep3;passwrd=mySecret;")]
// Announce URLs (passkeys) Magnet & Tracker // Announce URLs (passkeys) Magnet & Tracker
[TestCase(@"magnet_uri"":""magnet:?xt=urn:btih:9pr04sgkillroyimaveql2tyu8xyui&dn=&tr=https%3a%2f%2fxxx.yyy%2f9pr04sg601233210imaveql2tyu8xyui%2fannounce""}")] [TestCase(@"magnet_uri"":""magnet:?xt=urn:btih:9pr04sgkillroyimaveql2tyu8xyui&dn=&tr=https%3a%2f%2fxxx.yyy%2f9pr04sg601233210imaveql2tyu8xyui%2fannounce""}")]
@@ -85,24 +84,9 @@ namespace NzbDrone.Common.Test.InstrumentationTests
var cleansedMessage = CleanseLogMessage.Cleanse(message); var cleansedMessage = CleanseLogMessage.Cleanse(message);
cleansedMessage.Should().NotContain("mySecret"); cleansedMessage.Should().NotContain("mySecret");
cleansedMessage.Should().NotContain("123%@%_@!#^#@");
cleansedMessage.Should().NotContain("01233210"); cleansedMessage.Should().NotContain("01233210");
} }
[TestCase(@"[Info] MigrationController: *** Migrating Database=radarr-main;Host=postgres14;Username=mySecret;Password=mySecret;Port=5432;token=mySecret;Enlist=False&username=mySecret;mypassword=mySecret;mypass=shouldkeep1;test_token=mySecret;password=123%@%_@!#^#@;use_password=mySecret;get_token=shouldkeep2;usetoken=shouldkeep3;passwrd=mySecret;")]
public void should_keep_message(string message)
{
var cleansedMessage = CleanseLogMessage.Cleanse(message);
cleansedMessage.Should().NotContain("mySecret");
cleansedMessage.Should().NotContain("123%@%_@!#^#@");
cleansedMessage.Should().NotContain("01233210");
cleansedMessage.Should().Contain("shouldkeep1");
cleansedMessage.Should().Contain("shouldkeep2");
cleansedMessage.Should().Contain("shouldkeep3");
}
[TestCase(@"Some message (from 32.2.3.5 user agent)")] [TestCase(@"Some message (from 32.2.3.5 user agent)")]
[TestCase(@"Auth-Invalidated ip 32.2.3.5")] [TestCase(@"Auth-Invalidated ip 32.2.3.5")]
[TestCase(@"Auth-Success ip 32.2.3.5")] [TestCase(@"Auth-Success ip 32.2.3.5")]
@@ -18,10 +18,8 @@ namespace NzbDrone.Common.Test.InstrumentationTests
private static LogLevel[] SentryLevels = LogLevel.AllLevels.Where(x => x >= LogLevel.Error).ToArray(); private static LogLevel[] SentryLevels = LogLevel.AllLevels.Where(x => x >= LogLevel.Error).ToArray();
private static LogLevel[] OtherLevels = AllLevels.Except(SentryLevels).ToArray(); private static LogLevel[] OtherLevels = AllLevels.Except(SentryLevels).ToArray();
// TODO: SQLiteException filtering tests don't work on linux-86 and alpine customer Azure agents due to sqlite library not being loaded up, pass local
private static Exception[] FilteredExceptions = new Exception[] private static Exception[] FilteredExceptions = new Exception[]
{ {
// new SQLiteException(SQLiteErrorCode.Locked, "database is locked"),
new UnauthorizedAccessException(), new UnauthorizedAccessException(),
new AggregateException(new Exception[] new AggregateException(new Exception[]
{ {
@@ -32,7 +30,6 @@ namespace NzbDrone.Common.Test.InstrumentationTests
private static Exception[] NonFilteredExceptions = new Exception[] private static Exception[] NonFilteredExceptions = new Exception[]
{ {
// new SQLiteException(SQLiteErrorCode.Error, "it's borked"),
new AggregateException(new Exception[] new AggregateException(new Exception[]
{ {
new UnauthorizedAccessException(), new UnauthorizedAccessException(),
+1 -2
View File
@@ -55,8 +55,7 @@ namespace NzbDrone.Common.Http
StatusCode == HttpStatusCode.Found || StatusCode == HttpStatusCode.Found ||
StatusCode == HttpStatusCode.TemporaryRedirect || StatusCode == HttpStatusCode.TemporaryRedirect ||
StatusCode == HttpStatusCode.RedirectMethod || StatusCode == HttpStatusCode.RedirectMethod ||
StatusCode == HttpStatusCode.SeeOther || StatusCode == HttpStatusCode.SeeOther;
StatusCode == HttpStatusCode.PermanentRedirect;
public string[] GetCookieHeaders() public string[] GetCookieHeaders()
{ {
@@ -18,7 +18,7 @@ namespace NzbDrone.Common.Instrumentation
new Regex(@"iptorrents\.com/[/a-z0-9?&;]*?(?:[?&;](u|tp)=(?<secret>[^&=;]+?))+(?= |;|&|$)", RegexOptions.Compiled | RegexOptions.IgnoreCase), new Regex(@"iptorrents\.com/[/a-z0-9?&;]*?(?:[?&;](u|tp)=(?<secret>[^&=;]+?))+(?= |;|&|$)", RegexOptions.Compiled | RegexOptions.IgnoreCase),
new Regex(@"/fetch/[a-z0-9]{32}/(?<secret>[a-z0-9]{32})", RegexOptions.Compiled), new Regex(@"/fetch/[a-z0-9]{32}/(?<secret>[a-z0-9]{32})", RegexOptions.Compiled),
new Regex(@"getnzb.*?(?<=\?|&)(r)=(?<secret>[^&=]+?)(?= |&|$)", RegexOptions.Compiled | RegexOptions.IgnoreCase), new Regex(@"getnzb.*?(?<=\?|&)(r)=(?<secret>[^&=]+?)(?= |&|$)", RegexOptions.Compiled | RegexOptions.IgnoreCase),
new Regex(@"\b(\w*)?(_?(?<!use|get_)token|username|passwo?rd)=(?<secret>[^&=]+?)(?= |&|$|;)", RegexOptions.Compiled | RegexOptions.IgnoreCase), new Regex(@"\b[^;=]*?(_?(?<!use|get_)token|username|passwo?rd)=(?<secret>[^&=]+?)(?= |&|$|;)", RegexOptions.Compiled | RegexOptions.IgnoreCase),
// Trackers Announce Keys; Designed for Qbit Json; should work for all in theory // Trackers Announce Keys; Designed for Qbit Json; should work for all in theory
new Regex(@"announce(\.php)?(/|%2f|%3fpasskey%3d)(?<secret>[a-z0-9]{16,})|(?<secret>[a-z0-9]{16,})(/|%2f)announce"), new Regex(@"announce(\.php)?(/|%2f|%3fpasskey%3d)(?<secret>[a-z0-9]{16,})|(?<secret>[a-z0-9]{16,})(/|%2f)announce"),
@@ -248,7 +248,7 @@ namespace NzbDrone.Common.Instrumentation.Sentry
var isSentry = true; var isSentry = true;
var sqlEx = ex as SQLiteException; var sqlEx = ex as SQLiteException;
if (sqlEx != null && FilteredSQLiteErrors.Contains(sqlEx.ResultCode)) if (sqlEx != null && !FilteredSQLiteErrors.Contains(sqlEx.ResultCode))
{ {
isSentry = false; isSentry = false;
} }
@@ -1,8 +1,6 @@
using System; using FizzWare.NBuilder;
using FizzWare.NBuilder;
using FluentAssertions; using FluentAssertions;
using NUnit.Framework; using NUnit.Framework;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.DecisionEngine.Specifications; using NzbDrone.Core.DecisionEngine.Specifications;
using NzbDrone.Core.MediaFiles; using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Movies; using NzbDrone.Core.Movies;
@@ -170,80 +168,5 @@ namespace NzbDrone.Core.Test.DecisionEngineTests
.Should() .Should()
.BeFalse(); .BeFalse();
} }
[Test]
public void should_return_false_when_repack_but_auto_download_repack_is_false()
{
Mocker.GetMock<IConfigService>()
.Setup(s => s.DownloadPropersAndRepacks)
.Returns(ProperDownloadTypes.DoNotUpgrade);
_parsedMovieInfo.Quality.Revision.IsRepack = true;
_movie.MovieFileId = 1;
_movie.MovieFile = Builder<MovieFile>.CreateNew()
.With(e => e.Quality = new QualityModel(Quality.SDTV))
.With(e => e.ReleaseGroup = "Radarr")
.Build();
var remoteMovie = Builder<RemoteMovie>.CreateNew()
.With(e => e.ParsedMovieInfo = _parsedMovieInfo)
.With(e => e.Movie = _movie)
.Build();
Subject.IsSatisfiedBy(remoteMovie, null)
.Accepted
.Should()
.BeFalse();
}
[Test]
public void should_return_true_when_repack_but_auto_download_repack_is_true()
{
Mocker.GetMock<IConfigService>()
.Setup(s => s.DownloadPropersAndRepacks)
.Returns(ProperDownloadTypes.PreferAndUpgrade);
_parsedMovieInfo.Quality.Revision.IsRepack = true;
_movie.MovieFileId = 1;
_movie.MovieFile = Builder<MovieFile>.CreateNew()
.With(e => e.Quality = new QualityModel(Quality.SDTV))
.With(e => e.ReleaseGroup = "Radarr")
.Build();
var remoteMovie = Builder<RemoteMovie>.CreateNew()
.With(e => e.ParsedMovieInfo = _parsedMovieInfo)
.With(e => e.Movie = _movie)
.Build();
Subject.IsSatisfiedBy(remoteMovie, null)
.Accepted
.Should()
.BeTrue();
}
[Test]
public void should_return_true_when_repacks_are_not_preferred()
{
Mocker.GetMock<IConfigService>()
.Setup(s => s.DownloadPropersAndRepacks)
.Returns(ProperDownloadTypes.DoNotPrefer);
_parsedMovieInfo.Quality.Revision.IsRepack = true;
_movie.MovieFileId = 1;
_movie.MovieFile = Builder<MovieFile>.CreateNew()
.With(e => e.Quality = new QualityModel(Quality.SDTV))
.With(e => e.ReleaseGroup = "Radarr")
.Build();
var remoteMovie = Builder<RemoteMovie>.CreateNew()
.With(e => e.ParsedMovieInfo = _parsedMovieInfo)
.With(e => e.Movie = _movie)
.Build();
Subject.IsSatisfiedBy(remoteMovie, null)
.Accepted
.Should()
.BeTrue();
}
} }
} }
@@ -1,245 +0,0 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using FizzWare.NBuilder;
using Moq;
using NUnit.Framework;
using NzbDrone.Common.Disk;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Extras;
using NzbDrone.Core.Extras.Files;
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Movies;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common;
namespace NzbDrone.Core.Test.Extras
{
[TestFixture]
public class ExtraServiceFixture : CoreTest<ExtraService>
{
private Movie _movie;
private MovieFile _movieFile;
private LocalMovie _localMovie;
private string _movieFolder;
private string _releaseFolder;
private Mock<IManageExtraFiles> _subtitleService;
private Mock<IManageExtraFiles> _otherExtraService;
[SetUp]
public void Setup()
{
_movieFolder = @"C:\Test\Movies\Movie Title".AsOsAgnostic();
_releaseFolder = @"C:\Test\Unsorted TV\Movie.Title.2022".AsOsAgnostic();
_movie = Builder<Movie>.CreateNew()
.With(s => s.Path = _movieFolder)
.Build();
_movieFile = Builder<MovieFile>.CreateNew()
.With(f => f.Path = Path.Combine(_movie.Path, "Movie Title - 2022.mkv").AsOsAgnostic())
.With(f => f.RelativePath = @"Movie Title - 2022.mkv".AsOsAgnostic())
.Build();
_localMovie = Builder<LocalMovie>.CreateNew()
.With(l => l.Movie = _movie)
.With(l => l.Path = Path.Combine(_releaseFolder, "Movie.Title.2022.mkv").AsOsAgnostic())
.Build();
_subtitleService = new Mock<IManageExtraFiles>();
_subtitleService.SetupGet(s => s.Order).Returns(0);
_subtitleService.Setup(s => s.CanImportFile(It.IsAny<LocalMovie>(), It.IsAny<MovieFile>(), It.IsAny<string>(), It.IsAny<string>(), It.IsAny<bool>()))
.Returns(false);
_subtitleService.Setup(s => s.CanImportFile(It.IsAny<LocalMovie>(), It.IsAny<MovieFile>(), It.IsAny<string>(), ".srt", It.IsAny<bool>()))
.Returns(true);
_otherExtraService = new Mock<IManageExtraFiles>();
_otherExtraService.SetupGet(s => s.Order).Returns(1);
_otherExtraService.Setup(s => s.CanImportFile(It.IsAny<LocalMovie>(), It.IsAny<MovieFile>(), It.IsAny<string>(), It.IsAny<string>(), It.IsAny<bool>()))
.Returns(true);
Mocker.SetConstant<IEnumerable<IManageExtraFiles>>(new[]
{
_subtitleService.Object,
_otherExtraService.Object
});
Mocker.GetMock<IDiskProvider>().Setup(s => s.FolderExists(It.IsAny<string>()))
.Returns(false);
Mocker.GetMock<IDiskProvider>().Setup(s => s.GetParentFolder(It.IsAny<string>()))
.Returns((string path) => Directory.GetParent(path).FullName);
WithExistingFolder(_movie.Path);
WithExistingFile(_movieFile.Path);
WithExistingFile(_localMovie.Path);
Mocker.GetMock<IConfigService>().Setup(v => v.ImportExtraFiles).Returns(true);
Mocker.GetMock<IConfigService>().Setup(v => v.ExtraFileExtensions).Returns("nfo,srt");
}
private void WithExistingFolder(string path, bool exists = true)
{
var dir = Path.GetDirectoryName(path);
if (exists && dir.IsNotNullOrWhiteSpace())
{
WithExistingFolder(dir);
}
Mocker.GetMock<IDiskProvider>().Setup(v => v.FolderExists(path)).Returns(exists);
}
private void WithExistingFile(string path, bool exists = true, int size = 1000)
{
var dir = Path.GetDirectoryName(path);
if (exists && dir.IsNotNullOrWhiteSpace())
{
WithExistingFolder(dir);
}
Mocker.GetMock<IDiskProvider>().Setup(v => v.FileExists(path)).Returns(exists);
Mocker.GetMock<IDiskProvider>().Setup(v => v.GetFileSize(path)).Returns(size);
}
private void WithExistingFiles(List<string> files)
{
foreach (string file in files)
{
WithExistingFile(file);
}
Mocker.GetMock<IDiskProvider>().Setup(s => s.GetFiles(_releaseFolder, It.IsAny<SearchOption>()))
.Returns(files.ToArray());
}
[Test]
public void should_not_pass_file_if_import_disabled()
{
Mocker.GetMock<IConfigService>().Setup(v => v.ImportExtraFiles).Returns(false);
var nfofile = Path.Combine(_releaseFolder, "Movie.Title.2022.nfo").AsOsAgnostic();
var files = new List<string>
{
_localMovie.Path,
nfofile
};
WithExistingFiles(files);
Subject.ImportMovie(_localMovie, _movieFile, true);
_subtitleService.Verify(v => v.CanImportFile(_localMovie, _movieFile, It.IsAny<string>(), It.IsAny<string>(), true), Times.Never());
_otherExtraService.Verify(v => v.CanImportFile(_localMovie, _movieFile, It.IsAny<string>(), It.IsAny<string>(), true), Times.Never());
}
[Test]
[TestCase("Movie Title - 2022.sub")]
[TestCase("Movie Title - 2022.ass")]
public void should_not_pass_unwanted_file(string filePath)
{
Mocker.GetMock<IConfigService>().Setup(v => v.ImportExtraFiles).Returns(false);
var nfofile = Path.Combine(_releaseFolder, filePath).AsOsAgnostic();
var files = new List<string>
{
_localMovie.Path,
nfofile
};
WithExistingFiles(files);
Subject.ImportMovie(_localMovie, _movieFile, true);
_subtitleService.Verify(v => v.CanImportFile(_localMovie, _movieFile, It.IsAny<string>(), It.IsAny<string>(), true), Times.Never());
_otherExtraService.Verify(v => v.CanImportFile(_localMovie, _movieFile, It.IsAny<string>(), It.IsAny<string>(), true), Times.Never());
}
[Test]
public void should_pass_subtitle_file_to_subtitle_service()
{
var subtitleFile = Path.Combine(_releaseFolder, "Movie.Title.2022.en.srt").AsOsAgnostic();
var files = new List<string>
{
_localMovie.Path,
subtitleFile
};
WithExistingFiles(files);
Subject.ImportMovie(_localMovie, _movieFile, true);
_subtitleService.Verify(v => v.ImportFiles(_localMovie, _movieFile, new List<string> { subtitleFile }, true), Times.Once());
_otherExtraService.Verify(v => v.ImportFiles(_localMovie, _movieFile, new List<string> { subtitleFile }, true), Times.Never());
}
[Test]
public void should_pass_nfo_file_to_other_service()
{
var nfofile = Path.Combine(_releaseFolder, "Movie.Title.2022.nfo").AsOsAgnostic();
var files = new List<string>
{
_localMovie.Path,
nfofile
};
WithExistingFiles(files);
Subject.ImportMovie(_localMovie, _movieFile, true);
_subtitleService.Verify(v => v.ImportFiles(_localMovie, _movieFile, new List<string> { nfofile }, true), Times.Never());
_otherExtraService.Verify(v => v.ImportFiles(_localMovie, _movieFile, new List<string> { nfofile }, true), Times.Once());
}
[Test]
public void should_search_subtitles_when_importing_from_job_folder()
{
_localMovie.FolderMovieInfo = new ParsedMovieInfo();
var subtitleFile = Path.Combine(_releaseFolder, "Movie.Title.2022.en.srt").AsOsAgnostic();
var files = new List<string>
{
_localMovie.Path,
subtitleFile
};
WithExistingFiles(files);
Subject.ImportMovie(_localMovie, _movieFile, true);
Mocker.GetMock<IDiskProvider>().Verify(v => v.GetFiles(_releaseFolder, SearchOption.AllDirectories), Times.Once);
Mocker.GetMock<IDiskProvider>().Verify(v => v.GetFiles(_releaseFolder, SearchOption.TopDirectoryOnly), Times.Never);
}
[Test]
public void should_not_search_subtitles_when_not_importing_from_job_folder()
{
_localMovie.FolderMovieInfo = null;
var subtitleFile = Path.Combine(_releaseFolder, "Movie.Title.2022.en.srt").AsOsAgnostic();
var files = new List<string>
{
_localMovie.Path,
subtitleFile
};
WithExistingFiles(files);
Subject.ImportMovie(_localMovie, _movieFile, true);
Mocker.GetMock<IDiskProvider>().Verify(v => v.GetFiles(_releaseFolder, SearchOption.AllDirectories), Times.Never);
Mocker.GetMock<IDiskProvider>().Verify(v => v.GetFiles(_releaseFolder, SearchOption.TopDirectoryOnly), Times.Once);
}
}
}
@@ -1,84 +0,0 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using FizzWare.NBuilder;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Extras.Others;
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Movies;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common;
namespace NzbDrone.Core.Test.Extras.Others
{
[TestFixture]
public class OtherExtraServiceFixture : CoreTest<OtherExtraService>
{
private Movie _movie;
private MovieFile _movieFile;
private LocalMovie _localMovie;
private string _movieFolder;
private string _releaseFolder;
[SetUp]
public void Setup()
{
_movieFolder = @"C:\Test\Movies\Movie Title".AsOsAgnostic();
_releaseFolder = @"C:\Test\Unsorted Movies\Movie.Title.2022".AsOsAgnostic();
_movie = Builder<Movie>.CreateNew()
.With(s => s.Path = _movieFolder)
.Build();
_movieFile = Builder<MovieFile>.CreateNew()
.With(f => f.Path = Path.Combine(_movie.Path, "Movie Title - 2022.mkv").AsOsAgnostic())
.With(f => f.RelativePath = @"Movie Title - 2022.mkv")
.Build();
_localMovie = Builder<LocalMovie>.CreateNew()
.With(l => l.Movie = _movie)
.With(l => l.Path = Path.Combine(_releaseFolder, "Movie.Title.2022.mkv").AsOsAgnostic())
.With(l => l.FileMovieInfo = new ParsedMovieInfo
{
MovieTitles = new List<string> { "Movie Title" },
Year = 2022
})
.Build();
}
[Test]
[TestCase("Movie Title - 2022.nfo", "Movie Title - 2022.nfo")]
[TestCase("Movie.Title.2022.nfo", "Movie Title - 2022.nfo")]
[TestCase("Movie Title 2022.nfo", "Movie Title - 2022.nfo")]
[TestCase("Movie_Title_2022.nfo", "Movie Title - 2022.nfo")]
[TestCase(@"Movie.Title.2022\thumb.jpg", "Movie Title - 2022.jpg")]
public void should_import_matching_file(string filePath, string expectedOutputPath)
{
var files = new List<string> { Path.Combine(_releaseFolder, filePath).AsOsAgnostic() };
var results = Subject.ImportFiles(_localMovie, _movieFile, files, true).ToList();
results.Count().Should().Be(1);
results[0].RelativePath.AsOsAgnostic().PathEquals(expectedOutputPath.AsOsAgnostic()).Should().Be(true);
}
[Test]
public void should_not_import_multiple_nfo_files()
{
var files = new List<string>
{
Path.Combine(_releaseFolder, "Movie.Title.2022.nfo").AsOsAgnostic(),
Path.Combine(_releaseFolder, "Movie_Title_2022.nfo").AsOsAgnostic(),
};
var results = Subject.ImportFiles(_localMovie, _movieFile, files, true).ToList();
results.Count().Should().Be(1);
}
}
}
@@ -1,179 +0,0 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using FizzWare.NBuilder;
using FluentAssertions;
using Moq;
using NUnit.Framework;
using NzbDrone.Common.Disk;
using NzbDrone.Common.Extensions;
using NzbDrone.Core.Extras.Subtitles;
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.MediaFiles.MovieImport;
using NzbDrone.Core.Movies;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Test.Framework;
using NzbDrone.Test.Common;
namespace NzbDrone.Core.Test.Extras.Subtitles
{
[TestFixture]
public class SubtitleServiceFixture : CoreTest<SubtitleService>
{
private Movie _movie;
private MovieFile _movieFile;
private LocalMovie _localMovie;
private string _MovieFolder;
private string _releaseFolder;
[SetUp]
public void Setup()
{
_MovieFolder = @"C:\Test\Movies\Movie Title".AsOsAgnostic();
_releaseFolder = @"C:\Test\Unsorted Movies\Movie.Title.2022".AsOsAgnostic();
_movie = Builder<Movie>.CreateNew()
.With(s => s.Path = _MovieFolder)
.Build();
_movieFile = Builder<MovieFile>.CreateNew()
.With(f => f.Path = Path.Combine(_movie.Path, "Movie Title - 2022.mkv").AsOsAgnostic())
.With(f => f.RelativePath = @"Movie Title - 2022.mkv".AsOsAgnostic())
.Build();
_localMovie = Builder<LocalMovie>.CreateNew()
.With(l => l.Movie = _movie)
.With(l => l.Path = Path.Combine(_releaseFolder, "Movie.Title.2022.mkv").AsOsAgnostic())
.With(l => l.FileMovieInfo = new ParsedMovieInfo
{
MovieTitles = new List<string> { "Movie Title" },
Year = 2022
})
.Build();
Mocker.GetMock<IDiskProvider>().Setup(s => s.GetParentFolder(It.IsAny<string>()))
.Returns((string path) => Directory.GetParent(path).FullName);
Mocker.GetMock<IDetectSample>().Setup(s => s.IsSample(It.IsAny<MovieMetadata>(), It.IsAny<string>()))
.Returns(DetectSampleResult.NotSample);
}
[Test]
[TestCase("Movie.Title.2022.en.nfo")]
public void should_not_import_non_subtitle_file(string filePath)
{
var files = new List<string> { Path.Combine(_releaseFolder, filePath).AsOsAgnostic() };
var results = Subject.ImportFiles(_localMovie, _movieFile, files, true).ToList();
results.Count().Should().Be(0);
}
[Test]
[TestCase("Movie Title - 2022.srt", "Movie Title - 2022.srt")]
[TestCase("Movie.Title.2022.en.srt", "Movie Title - 2022.en.srt")]
[TestCase("Movie.Title.2022.english.srt", "Movie Title - 2022.en.srt")]
[TestCase("Movie Title 2022_en_sdh_forced.srt", "Movie Title - 2022.en.sdh.forced.srt")]
[TestCase("Movie_Title_2022 en.srt", "Movie Title - 2022.en.srt")]
[TestCase(@"Subs\Movie.Title.2022\2_en.srt", "Movie Title - 2022.en.srt")]
[TestCase("sub.srt", "Movie Title - 2022.srt")]
public void should_import_matching_subtitle_file(string filePath, string expectedOutputPath)
{
var files = new List<string> { Path.Combine(_releaseFolder, filePath).AsOsAgnostic() };
var results = Subject.ImportFiles(_localMovie, _movieFile, files, true).ToList();
results.Count().Should().Be(1);
results[0].RelativePath.AsOsAgnostic().PathEquals(expectedOutputPath.AsOsAgnostic()).Should().Be(true);
}
[Test]
public void should_import_multiple_subtitle_files_per_language()
{
var files = new List<string>
{
Path.Combine(_releaseFolder, "Movie.Title.2022.en.srt").AsOsAgnostic(),
Path.Combine(_releaseFolder, "Movie.Title.2022.eng.srt").AsOsAgnostic(),
Path.Combine(_releaseFolder, "Subs", "Movie_Title_2022_en_forced.srt").AsOsAgnostic(),
Path.Combine(_releaseFolder, "Subs", "Movie.Title.2022", "2_fr.srt").AsOsAgnostic()
};
var expectedOutputs = new string[]
{
"Movie Title - 2022.1.en.srt",
"Movie Title - 2022.2.en.srt",
"Movie Title - 2022.en.forced.srt",
"Movie Title - 2022.fr.srt",
};
var results = Subject.ImportFiles(_localMovie, _movieFile, files, true).ToList();
results.Count().Should().Be(expectedOutputs.Length);
for (int i = 0; i < expectedOutputs.Length; i++)
{
results[i].RelativePath.AsOsAgnostic().PathEquals(expectedOutputs[i].AsOsAgnostic()).Should().Be(true);
}
}
[Test]
public void should_import_multiple_subtitle_files_per_language_with_tags()
{
var files = new List<string>
{
Path.Combine(_releaseFolder, "Movie.Title.2022.en.forced.cc.srt").AsOsAgnostic(),
Path.Combine(_releaseFolder, "Movie.Title.2022.other.en.forced.cc.srt").AsOsAgnostic(),
Path.Combine(_releaseFolder, "Movie.Title.2022.en.forced.sdh.srt").AsOsAgnostic(),
Path.Combine(_releaseFolder, "Movie.Title.2022.en.forced.default.srt").AsOsAgnostic(),
};
var expectedOutputs = new[]
{
"Movie Title - 2022.1.en.forced.cc.srt",
"Movie Title - 2022.2.en.forced.cc.srt",
"Movie Title - 2022.en.forced.sdh.srt",
"Movie Title - 2022.en.forced.default.srt"
};
var results = Subject.ImportFiles(_localMovie, _movieFile, files, true).ToList();
results.Count().Should().Be(expectedOutputs.Length);
for (int i = 0; i < expectedOutputs.Length; i++)
{
results[i].RelativePath.AsOsAgnostic().PathEquals(expectedOutputs[i].AsOsAgnostic()).Should().Be(true);
}
}
[Test]
[TestCase(@"Subs\2_en.srt", "Movie Title - 2022.en.srt")]
public void should_import_unmatching_subtitle_file_if_only_episode(string filePath, string expectedOutputPath)
{
var subtitleFile = Path.Combine(_releaseFolder, filePath).AsOsAgnostic();
var sampleFile = Path.Combine(_movie.Path, "Movie Title - 2022.sample.mkv").AsOsAgnostic();
var videoFiles = new string[]
{
_localMovie.Path,
sampleFile
};
Mocker.GetMock<IDiskProvider>().Setup(s => s.GetFiles(It.IsAny<string>(), SearchOption.AllDirectories))
.Returns(videoFiles);
Mocker.GetMock<IDetectSample>().Setup(s => s.IsSample(It.IsAny<MovieMetadata>(), sampleFile))
.Returns(DetectSampleResult.Sample);
var results = Subject.ImportFiles(_localMovie, _movieFile, new List<string> { subtitleFile }, true).ToList();
results.Count().Should().Be(1);
results[0].RelativePath.AsOsAgnostic().PathEquals(expectedOutputPath.AsOsAgnostic()).Should().Be(true);
ExceptionVerification.ExpectedWarns(1);
}
}
}
@@ -47,8 +47,6 @@ namespace NzbDrone.Core.Test.Languages
new object[] { 32, Language.Ukrainian }, new object[] { 32, Language.Ukrainian },
new object[] { 33, Language.Persian }, new object[] { 33, Language.Persian },
new object[] { 34, Language.Bengali }, new object[] { 34, Language.Bengali },
new object[] { 35, Language.Slovak },
new object[] { 36, Language.Latvian },
}; };
public static object[] ToIntCases = public static object[] ToIntCases =
@@ -90,8 +88,6 @@ namespace NzbDrone.Core.Test.Languages
new object[] { Language.Ukrainian, 32 }, new object[] { Language.Ukrainian, 32 },
new object[] { Language.Persian, 33 }, new object[] { Language.Persian, 33 },
new object[] { Language.Bengali, 34 }, new object[] { Language.Bengali, 34 },
new object[] { Language.Slovak, 35 },
new object[] { Language.Latvian, 36 },
}; };
[Test] [Test]
@@ -20,7 +20,9 @@ using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test.OrganizerTests.FileNameBuilderTests namespace NzbDrone.Core.Test.OrganizerTests.FileNameBuilderTests
{ {
[Platform(Exclude = "Win")]
[TestFixture] [TestFixture]
public class FileNameBuilderFixture : CoreTest<FileNameBuilder> public class FileNameBuilderFixture : CoreTest<FileNameBuilder>
{ {
private Movie _movie; private Movie _movie;
@@ -27,22 +27,6 @@ namespace NzbDrone.Core.Test.ParserTests
result.Languages.Should().BeEquivalentTo(Language.Unknown); result.Languages.Should().BeEquivalentTo(Language.Unknown);
} }
[TestCase("Movie Title - 2022.en.sub")]
[TestCase("Movie Title - 2022.EN.sub")]
[TestCase("Movie Title - 2022.eng.sub")]
[TestCase("Movie Title - 2022.ENG.sub")]
[TestCase("Movie Title - 2022.English.sub")]
[TestCase("Movie Title - 2022.english.sub")]
[TestCase("Movie Title - 2022.en.cc.sub")]
[TestCase("Movie Title - 2022.en.sdh.sub")]
[TestCase("Movie Title - 2022.en.forced.sub")]
[TestCase("Movie Title - 2022.en.sdh.forced.sub")]
public void should_parse_subtitle_language_english(string fileName)
{
var result = LanguageParser.ParseSubtitleLanguage(fileName);
result.Should().Be(Language.English);
}
[TestCase("Movie.Title.1994.French.1080p.XviD-LOL")] [TestCase("Movie.Title.1994.French.1080p.XviD-LOL")]
[TestCase("Movie Title : Other Title 2011 AVC.1080p.Blu-ray HD.VOSTFR.VFF")] [TestCase("Movie Title : Other Title 2011 AVC.1080p.Blu-ray HD.VOSTFR.VFF")]
[TestCase("Movie Title - Other Title 2011 Bluray 4k HDR HEVC AC3 VFF")] [TestCase("Movie Title - Other Title 2011 Bluray 4k HDR HEVC AC3 VFF")]
@@ -368,16 +352,6 @@ namespace NzbDrone.Core.Test.ParserTests
result.Languages.Should().BeEquivalentTo(Language.Slovak); result.Languages.Should().BeEquivalentTo(Language.Slovak);
} }
[TestCase("Movie.Title.2022.LV.WEBRip.XviD-LOL")]
[TestCase("Movie.Title.2022.lv.WEBRip.XviD-LOL")]
[TestCase("Movie.Title.2022.LATVIAN.WEBRip.XviD-LOL")]
[TestCase("Movie.Title.2022.Latvian.WEBRip.XviD-LOL")]
public void should_parse_language_latvian(string postTitle)
{
var result = Parser.Parser.ParseMovieTitle(postTitle);
result.Languages.Should().BeEquivalentTo(Language.Latvian);
}
[TestCase("Movie.Title.en.sub")] [TestCase("Movie.Title.en.sub")]
[TestCase("Movie Title.eng.sub")] [TestCase("Movie Title.eng.sub")]
[TestCase("Movie.Title.eng.forced.sub")] [TestCase("Movie.Title.eng.forced.sub")]
@@ -46,7 +46,6 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("A.I.Artificial.Movie.(2001)", "A.I. Artificial Movie")] [TestCase("A.I.Artificial.Movie.(2001)", "A.I. Artificial Movie")]
[TestCase("A.Movie.Name.(1998)", "A Movie Name")] [TestCase("A.Movie.Name.(1998)", "A Movie Name")]
[TestCase("www.Torrenting.com - Movie.2008.720p.X264-DIMENSION", "Movie")] [TestCase("www.Torrenting.com - Movie.2008.720p.X264-DIMENSION", "Movie")]
[TestCase("www.5MovieRulz.tc - Movie (2000) Malayalam HQ HDRip - x264 - AAC - 700MB.mkv", "Movie")]
[TestCase("Movie: The Movie World 2013", "Movie: The Movie World")] [TestCase("Movie: The Movie World 2013", "Movie: The Movie World")]
[TestCase("Movie.The.Final.Chapter.2016", "Movie The Final Chapter")] [TestCase("Movie.The.Final.Chapter.2016", "Movie The Final Chapter")]
[TestCase("Der.Movie.James.German.Bluray.FuckYou.Pso.Why.cant.you.follow.scene.rules.1998", "Der Movie James")] [TestCase("Der.Movie.James.German.Bluray.FuckYou.Pso.Why.cant.you.follow.scene.rules.1998", "Der Movie James")]
@@ -50,7 +50,6 @@ namespace NzbDrone.Core.Test.ParserTests
[TestCase("The.Movie.Title.2013.720p.BluRay.x264-ROUGH [PublicHD]", "ROUGH")] [TestCase("The.Movie.Title.2013.720p.BluRay.x264-ROUGH [PublicHD]", "ROUGH")]
[TestCase("Some.Really.Bad.Movie.Title.[2021].1080p.WEB-HDRip.Dual.Audio.[Hindi.[Clean]. .English].x264.AAC.DD.2.0.By.Full4Movies.mkv-xpost", null)] [TestCase("Some.Really.Bad.Movie.Title.[2021].1080p.WEB-HDRip.Dual.Audio.[Hindi.[Clean]. .English].x264.AAC.DD.2.0.By.Full4Movies.mkv-xpost", null)]
[TestCase("The.Movie.Title.2013.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros", "Vyndros")] [TestCase("The.Movie.Title.2013.1080p.10bit.AMZN.WEB-DL.DDP5.1.HEVC-Vyndros", "Vyndros")]
[TestCase("Movie.Name.2022.1080p.BluRay.x264-[YTS.AG]", "YTS.AG")]
public void should_parse_expected_release_group(string title, string expected) public void should_parse_expected_release_group(string title, string expected)
{ {
Parser.Parser.ParseReleaseGroup(title).Should().Be(expected); Parser.Parser.ParseReleaseGroup(title).Should().Be(expected);
@@ -428,8 +428,6 @@ namespace NzbDrone.Core.Configuration
public CertificateValidationType CertificateValidation => public CertificateValidationType CertificateValidation =>
GetValueEnum("CertificateValidation", CertificateValidationType.Enabled); GetValueEnum("CertificateValidation", CertificateValidationType.Enabled);
public string ApplicationUrl => GetValue("ApplicationUrl", string.Empty);
private string GetValue(string key) private string GetValue(string key)
{ {
return GetValue(key, string.Empty); return GetValue(key, string.Empty);
@@ -104,6 +104,5 @@ namespace NzbDrone.Core.Configuration
int BackupRetention { get; } int BackupRetention { get; }
CertificateValidationType CertificateValidation { get; } CertificateValidationType CertificateValidation { get; }
string ApplicationUrl { get; }
} }
} }
@@ -21,7 +21,7 @@ namespace NzbDrone.Core.CustomFormats
protected Regex _regex; protected Regex _regex;
protected string _raw; protected string _raw;
[FieldDefinition(1, Label = "Regular Expression", HelpText = "Custom Format RegEx is Case Insensitive")] [FieldDefinition(1, Label = "Regular Expression")]
public string Value public string Value
{ {
get => _raw; get => _raw;
@@ -1,14 +0,0 @@
using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(214)]
public class add_language_tags_to_subtitle_files : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Alter.Table("SubtitleFiles").AddColumn("LanguageTags").AsString().Nullable();
}
}
}
@@ -1,23 +1,19 @@
using System; using System;
using NLog; using NLog;
using NzbDrone.Common.Extensions; using NzbDrone.Common.Extensions;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.IndexerSearch.Definitions; using NzbDrone.Core.IndexerSearch.Definitions;
using NzbDrone.Core.Parser.Model; using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Qualities;
namespace NzbDrone.Core.DecisionEngine.Specifications namespace NzbDrone.Core.DecisionEngine.Specifications
{ {
public class RepackSpecification : IDecisionEngineSpecification public class RepackSpecification : IDecisionEngineSpecification
{ {
private readonly UpgradableSpecification _upgradableSpecification; private readonly UpgradableSpecification _upgradableSpecification;
private readonly IConfigService _configService;
private readonly Logger _logger; private readonly Logger _logger;
public RepackSpecification(UpgradableSpecification upgradableSpecification, IConfigService configService, Logger logger) public RepackSpecification(UpgradableSpecification upgradableSpecification, Logger logger)
{ {
_upgradableSpecification = upgradableSpecification; _upgradableSpecification = upgradableSpecification;
_configService = configService;
_logger = logger; _logger = logger;
} }
@@ -26,19 +22,11 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
public Decision IsSatisfiedBy(RemoteMovie subject, SearchCriteriaBase searchCriteria) public Decision IsSatisfiedBy(RemoteMovie subject, SearchCriteriaBase searchCriteria)
{ {
var downloadPropersAndRepacks = _configService.DownloadPropersAndRepacks;
if (!subject.ParsedMovieInfo.Quality.Revision.IsRepack) if (!subject.ParsedMovieInfo.Quality.Revision.IsRepack)
{ {
return Decision.Accept(); return Decision.Accept();
} }
if (downloadPropersAndRepacks == ProperDownloadTypes.DoNotPrefer)
{
_logger.Debug("Repacks are not preferred, skipping check");
return Decision.Accept();
}
if (subject.Movie.MovieFileId != 0) if (subject.Movie.MovieFileId != 0)
{ {
var file = subject.Movie.MovieFile; var file = subject.Movie.MovieFile;
@@ -48,12 +36,6 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
var releaseGroup = subject.ParsedMovieInfo.ReleaseGroup; var releaseGroup = subject.ParsedMovieInfo.ReleaseGroup;
var fileReleaseGroup = file.ReleaseGroup; var fileReleaseGroup = file.ReleaseGroup;
if (downloadPropersAndRepacks == ProperDownloadTypes.DoNotUpgrade)
{
_logger.Debug("Auto downloading of repacks is disabled");
return Decision.Reject("Repack downloading is disabled");
}
if (fileReleaseGroup.IsNullOrWhiteSpace()) if (fileReleaseGroup.IsNullOrWhiteSpace())
{ {
return Decision.Reject("Unable to determine release group for the existing file"); return Decision.Reject("Unable to determine release group for the existing file");
@@ -3,6 +3,7 @@ using System.IO;
using System.Linq; using System.Linq;
using NLog; using NLog;
using NzbDrone.Common.Disk; using NzbDrone.Common.Disk;
using NzbDrone.Core.Extras.Files;
using NzbDrone.Core.MediaFiles; using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.MediaFiles.Events; using NzbDrone.Core.MediaFiles.Events;
using NzbDrone.Core.Messaging.Events; using NzbDrone.Core.Messaging.Events;
@@ -30,6 +31,7 @@ namespace NzbDrone.Core.Extras
public void Handle(MovieScannedEvent message) public void Handle(MovieScannedEvent message)
{ {
var movie = message.Movie; var movie = message.Movie;
var extraFiles = new List<ExtraFile>();
if (!_diskProvider.FolderExists(movie.Path)) if (!_diskProvider.FolderExists(movie.Path))
{ {
@@ -41,16 +43,17 @@ namespace NzbDrone.Core.Extras
var filesOnDisk = _diskScanService.GetNonVideoFiles(movie.Path); var filesOnDisk = _diskScanService.GetNonVideoFiles(movie.Path);
var possibleExtraFiles = _diskScanService.FilterPaths(movie.Path, filesOnDisk, false); var possibleExtraFiles = _diskScanService.FilterPaths(movie.Path, filesOnDisk, false);
var filteredFiles = possibleExtraFiles;
var importedFiles = new List<string>(); var importedFiles = new List<string>();
foreach (var existingExtraFileImporter in _existingExtraFileImporters) foreach (var existingExtraFileImporter in _existingExtraFileImporters)
{ {
var imported = existingExtraFileImporter.ProcessFiles(movie, possibleExtraFiles, importedFiles); var imported = existingExtraFileImporter.ProcessFiles(movie, filteredFiles, importedFiles);
importedFiles.AddRange(imported.Select(f => Path.Combine(movie.Path, f.RelativePath))); importedFiles.AddRange(imported.Select(f => Path.Combine(movie.Path, f.RelativePath)));
} }
_logger.Info("Found {0} possible extra files, imported {1} files.", possibleExtraFiles.Count, importedFiles.Count); _logger.Info("Found {0} extra files", extraFiles.Count);
} }
} }
} }
+41 -20
View File
@@ -31,6 +31,7 @@ namespace NzbDrone.Core.Extras
private readonly IDiskProvider _diskProvider; private readonly IDiskProvider _diskProvider;
private readonly IConfigService _configService; private readonly IConfigService _configService;
private readonly List<IManageExtraFiles> _extraFileManagers; private readonly List<IManageExtraFiles> _extraFileManagers;
private readonly Logger _logger;
public ExtraService(IMediaFileService mediaFileService, public ExtraService(IMediaFileService mediaFileService,
IMovieService movieService, IMovieService movieService,
@@ -44,6 +45,7 @@ namespace NzbDrone.Core.Extras
_diskProvider = diskProvider; _diskProvider = diskProvider;
_configService = configService; _configService = configService;
_extraFileManagers = extraFileManagers.OrderBy(e => e.Order).ToList(); _extraFileManagers = extraFileManagers.OrderBy(e => e.Order).ToList();
_logger = logger;
} }
public void ImportMovie(LocalMovie localMovie, MovieFile movieFile, bool isReadOnly) public void ImportMovie(LocalMovie localMovie, MovieFile movieFile, bool isReadOnly)
@@ -60,42 +62,61 @@ namespace NzbDrone.Core.Extras
return; return;
} }
var folderSearchOption = localMovie.FolderMovieInfo == null var sourcePath = localMovie.Path;
? SearchOption.TopDirectoryOnly var sourceFolder = _diskProvider.GetParentFolder(sourcePath);
: SearchOption.AllDirectories; var sourceFileName = Path.GetFileNameWithoutExtension(sourcePath);
var files = _diskProvider.GetFiles(sourceFolder, SearchOption.AllDirectories).Where(f => f != localMovie.Path);
var wantedExtensions = _configService.ExtraFileExtensions.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries) var wantedExtensions = _configService.ExtraFileExtensions.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries)
.Select(e => e.Trim(' ', '.') .Select(e => e.Trim(' ', '.'))
.Insert(0, "."))
.ToList(); .ToList();
var sourceFolder = _diskProvider.GetParentFolder(localMovie.Path); var matchingFilenames = files.Where(f => Path.GetFileNameWithoutExtension(f).StartsWith(sourceFileName, StringComparison.InvariantCultureIgnoreCase)).ToList();
var files = _diskProvider.GetFiles(sourceFolder, folderSearchOption); var filteredFilenames = new List<string>();
var managedFiles = _extraFileManagers.Select((i) => new List<string>()).ToArray(); var hasNfo = false;
foreach (var file in files) foreach (var matchingFilename in matchingFilenames)
{ {
var extension = Path.GetExtension(file); // Filter out duplicate NFO files
var matchingExtension = wantedExtensions.FirstOrDefault(e => e.Equals(extension)); if (matchingFilename.EndsWith(".nfo", StringComparison.InvariantCultureIgnoreCase))
{
if (hasNfo)
{
continue;
}
hasNfo = true;
}
filteredFilenames.Add(matchingFilename);
}
foreach (var matchingFilename in filteredFilenames)
{
var matchingExtension = wantedExtensions.FirstOrDefault(e => matchingFilename.EndsWith(e));
if (matchingExtension == null) if (matchingExtension == null)
{ {
continue; continue;
} }
for (int i = 0; i < _extraFileManagers.Count; i++) try
{ {
if (_extraFileManagers[i].CanImportFile(localMovie, movieFile, file, extension, isReadOnly)) foreach (var extraFileManager in _extraFileManagers)
{ {
managedFiles[i].Add(file); var extension = Path.GetExtension(matchingFilename);
break; var extraFile = extraFileManager.Import(localMovie.Movie, movieFile, matchingFilename, extension, isReadOnly);
if (extraFile != null)
{
break;
}
} }
} }
} catch (Exception ex)
{
for (int i = 0; i < _extraFileManagers.Count; i++) _logger.Warn(ex, "Failed to import extra file: {0}", matchingFilename);
{ }
_extraFileManagers[i].ImportFiles(localMovie, movieFile, managedFiles[i], isReadOnly);
} }
} }
@@ -8,7 +8,6 @@ using NzbDrone.Common.Extensions;
using NzbDrone.Core.Configuration; using NzbDrone.Core.Configuration;
using NzbDrone.Core.MediaFiles; using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Movies; using NzbDrone.Core.Movies;
using NzbDrone.Core.Parser.Model;
namespace NzbDrone.Core.Extras.Files namespace NzbDrone.Core.Extras.Files
{ {
@@ -20,8 +19,7 @@ namespace NzbDrone.Core.Extras.Files
IEnumerable<ExtraFile> CreateAfterMovieImport(Movie movie, MovieFile movieFile); IEnumerable<ExtraFile> CreateAfterMovieImport(Movie movie, MovieFile movieFile);
IEnumerable<ExtraFile> CreateAfterMovieFolder(Movie movie, string movieFolder); IEnumerable<ExtraFile> CreateAfterMovieFolder(Movie movie, string movieFolder);
IEnumerable<ExtraFile> MoveFilesAfterRename(Movie movie, List<MovieFile> movieFiles); IEnumerable<ExtraFile> MoveFilesAfterRename(Movie movie, List<MovieFile> movieFiles);
bool CanImportFile(LocalMovie localMovie, MovieFile movieFile, string path, string extension, bool readOnly); ExtraFile Import(Movie movie, MovieFile movieFile, string path, string extension, bool readOnly);
IEnumerable<ExtraFile> ImportFiles(LocalMovie localMovie, MovieFile movieFile, List<string> files, bool isReadOnly);
} }
public abstract class ExtraFileManager<TExtraFile> : IManageExtraFiles public abstract class ExtraFileManager<TExtraFile> : IManageExtraFiles
@@ -49,8 +47,7 @@ namespace NzbDrone.Core.Extras.Files
public abstract IEnumerable<ExtraFile> CreateAfterMovieImport(Movie movie, MovieFile movieFile); public abstract IEnumerable<ExtraFile> CreateAfterMovieImport(Movie movie, MovieFile movieFile);
public abstract IEnumerable<ExtraFile> CreateAfterMovieFolder(Movie movie, string movieFolder); public abstract IEnumerable<ExtraFile> CreateAfterMovieFolder(Movie movie, string movieFolder);
public abstract IEnumerable<ExtraFile> MoveFilesAfterRename(Movie movie, List<MovieFile> movieFiles); public abstract IEnumerable<ExtraFile> MoveFilesAfterRename(Movie movie, List<MovieFile> movieFiles);
public abstract bool CanImportFile(LocalMovie localMovie, MovieFile movieFile, string path, string extension, bool readOnly); public abstract ExtraFile Import(Movie movie, MovieFile movieFile, string path, string extension, bool readOnly);
public abstract IEnumerable<ExtraFile> ImportFiles(LocalMovie localMovie, MovieFile movieFile, List<string> files, bool isReadOnly);
protected TExtraFile ImportFile(Movie movie, MovieFile movieFile, string path, bool readOnly, string extension, string fileNameSuffix = null) protected TExtraFile ImportFile(Movie movie, MovieFile movieFile, string path, bool readOnly, string extension, string fileNameSuffix = null)
{ {
@@ -148,13 +148,11 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Xbmc
var details = new XElement("movie"); var details = new XElement("movie");
var metadataTitle = movieTranslation?.Title ?? movie.Title; details.Add(new XElement("title", movieTranslation?.Title ?? movie.Title));
details.Add(new XElement("title", metadataTitle));
details.Add(new XElement("originaltitle", movie.MovieMetadata.Value.OriginalTitle)); details.Add(new XElement("originaltitle", movie.MovieMetadata.Value.OriginalTitle));
details.Add(new XElement("sorttitle", Parser.Parser.NormalizeTitle(metadataTitle))); details.Add(new XElement("sorttitle", movie.MovieMetadata.Value.SortTitle));
if (movie.MovieMetadata.Value.Ratings.Tmdb?.Votes > 0 || movie.MovieMetadata.Value.Ratings.Imdb?.Votes > 0) if (movie.MovieMetadata.Value.Ratings.Tmdb?.Votes > 0 || movie.MovieMetadata.Value.Ratings.Imdb?.Votes > 0)
{ {
@@ -263,7 +261,7 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Xbmc
details.Add(new XElement("country")); details.Add(new XElement("country"));
if (Settings.AddCollectionName && movie.MovieMetadata.Value.CollectionTitle != null) if (movie.MovieMetadata.Value.CollectionTitle != null)
{ {
var setElement = new XElement("set"); var setElement = new XElement("set");
@@ -24,7 +24,6 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Xbmc
MovieMetadataLanguage = (int)Language.English; MovieMetadataLanguage = (int)Language.English;
MovieImages = true; MovieImages = true;
UseMovieNfo = false; UseMovieNfo = false;
AddCollectionName = true;
} }
[FieldDefinition(0, Label = "Movie Metadata", Type = FieldType.Checkbox)] [FieldDefinition(0, Label = "Movie Metadata", Type = FieldType.Checkbox)]
@@ -42,9 +41,6 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Xbmc
[FieldDefinition(4, Label = "Use Movie.nfo", Type = FieldType.Checkbox, HelpText = "Radarr will write metadata to movie.nfo instead of the default <movie-filename>.nfo")] [FieldDefinition(4, Label = "Use Movie.nfo", Type = FieldType.Checkbox, HelpText = "Radarr will write metadata to movie.nfo instead of the default <movie-filename>.nfo")]
public bool UseMovieNfo { get; set; } public bool UseMovieNfo { get; set; }
[FieldDefinition(5, Label = "Collection Name", Type = FieldType.Checkbox, HelpText = "Radarr will write the collection name to the .nfo file", Advanced = true)]
public bool AddCollectionName { get; set; }
public bool IsValid => true; public bool IsValid => true;
public NzbDroneValidationResult Validate() public NzbDroneValidationResult Validate()
@@ -13,7 +13,6 @@ using NzbDrone.Core.Extras.Metadata.Files;
using NzbDrone.Core.Extras.Others; using NzbDrone.Core.Extras.Others;
using NzbDrone.Core.MediaFiles; using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Movies; using NzbDrone.Core.Movies;
using NzbDrone.Core.Parser.Model;
namespace NzbDrone.Core.Extras.Metadata namespace NzbDrone.Core.Extras.Metadata
{ {
@@ -192,14 +191,9 @@ namespace NzbDrone.Core.Extras.Metadata
return movedFiles; return movedFiles;
} }
public override bool CanImportFile(LocalMovie localMovie, MovieFile movieFile, string path, string extension, bool readOnly) public override ExtraFile Import(Movie movie, MovieFile movieFile, string path, string extension, bool readOnly)
{ {
return false; return null;
}
public override IEnumerable<ExtraFile> ImportFiles(LocalMovie localMovie, MovieFile movieFile, List<string> files, bool isReadOnly)
{
return Enumerable.Empty<ExtraFile>();
} }
private List<MetadataFile> GetMetadataFilesForConsumer(IMetadata consumer, List<MetadataFile> movieMetadata) private List<MetadataFile> GetMetadataFilesForConsumer(IMetadata consumer, List<MetadataFile> movieMetadata)
@@ -1,6 +1,4 @@
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO;
using System.Linq; using System.Linq;
using NLog; using NLog;
using NzbDrone.Common.Disk; using NzbDrone.Common.Disk;
@@ -9,16 +7,13 @@ using NzbDrone.Core.Configuration;
using NzbDrone.Core.Extras.Files; using NzbDrone.Core.Extras.Files;
using NzbDrone.Core.MediaFiles; using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Movies; using NzbDrone.Core.Movies;
using NzbDrone.Core.Parser.Model;
namespace NzbDrone.Core.Extras.Others namespace NzbDrone.Core.Extras.Others
{ {
public class OtherExtraService : ExtraFileManager<OtherExtraFile> public class OtherExtraService : ExtraFileManager<OtherExtraFile>
{ {
private readonly IDiskProvider _diskProvider;
private readonly IOtherExtraFileService _otherExtraFileService; private readonly IOtherExtraFileService _otherExtraFileService;
private readonly IMediaFileAttributeService _mediaFileAttributeService; private readonly IMediaFileAttributeService _mediaFileAttributeService;
private readonly Logger _logger;
public OtherExtraService(IConfigService configService, public OtherExtraService(IConfigService configService,
IDiskProvider diskProvider, IDiskProvider diskProvider,
@@ -28,10 +23,8 @@ namespace NzbDrone.Core.Extras.Others
Logger logger) Logger logger)
: base(configService, diskProvider, diskTransferService, logger) : base(configService, diskProvider, diskTransferService, logger)
{ {
_diskProvider = diskProvider;
_otherExtraFileService = otherExtraFileService; _otherExtraFileService = otherExtraFileService;
_mediaFileAttributeService = mediaFileAttributeService; _mediaFileAttributeService = mediaFileAttributeService;
_logger = logger;
} }
public override int Order => 2; public override int Order => 2;
@@ -76,79 +69,17 @@ namespace NzbDrone.Core.Extras.Others
return movedFiles; return movedFiles;
} }
public override bool CanImportFile(LocalMovie localMovie, MovieFile movieFile, string path, string extension, bool readOnly) public override ExtraFile Import(Movie movie, MovieFile movieFile, string path, string extension, bool readOnly)
{ {
return true; var extraFile = ImportFile(movie, movieFile, path, readOnly, extension, null);
}
public override IEnumerable<ExtraFile> ImportFiles(LocalMovie localMovie, MovieFile movieFile, List<string> files, bool isReadOnly) if (extraFile != null)
{
var importedFiles = new List<ExtraFile>();
var filteredFiles = files.Where(f => CanImportFile(localMovie, movieFile, f, Path.GetExtension(f), isReadOnly)).ToList();
var sourcePath = localMovie.Path;
var sourceFolder = _diskProvider.GetParentFolder(sourcePath);
var sourceFileName = Path.GetFileNameWithoutExtension(sourcePath);
var matchingFiles = new List<string>();
var hasNfo = false;
foreach (var file in filteredFiles)
{ {
try _mediaFileAttributeService.SetFilePermissions(path);
{ _otherExtraFileService.Upsert(extraFile);
// Filter out duplicate NFO files
if (file.EndsWith(".nfo", StringComparison.InvariantCultureIgnoreCase))
{
if (hasNfo)
{
continue;
}
hasNfo = true;
}
// Filename match
if (Path.GetFileNameWithoutExtension(file).StartsWith(sourceFileName, StringComparison.InvariantCultureIgnoreCase))
{
matchingFiles.Add(file);
continue;
}
// Movie match
var fileMovieInfo = Parser.Parser.ParseMoviePath(file) ?? new ParsedMovieInfo();
if (fileMovieInfo.MovieTitle == null)
{
continue;
}
if (fileMovieInfo.MovieTitle == localMovie.FileMovieInfo.MovieTitle &&
fileMovieInfo.Year.Equals(localMovie.FileMovieInfo.Year))
{
matchingFiles.Add(file);
}
}
catch (Exception ex)
{
_logger.Warn(ex, "Failed to import extra file: {0}", file);
}
} }
foreach (string file in matchingFiles) return extraFile;
{
try
{
var extraFile = ImportFile(localMovie.Movie, movieFile, file, isReadOnly, Path.GetExtension(file), null);
_mediaFileAttributeService.SetFilePermissions(file);
_otherExtraFileService.Upsert(extraFile);
importedFiles.Add(extraFile);
}
catch (Exception ex)
{
_logger.Warn(ex, "Failed to import extra file: {0}", file);
}
}
return importedFiles;
} }
} }
} }
@@ -1,4 +1,3 @@
using System.Collections.Generic;
using NzbDrone.Core.Extras.Files; using NzbDrone.Core.Extras.Files;
using NzbDrone.Core.Languages; using NzbDrone.Core.Languages;
@@ -6,17 +5,6 @@ namespace NzbDrone.Core.Extras.Subtitles
{ {
public class SubtitleFile : ExtraFile public class SubtitleFile : ExtraFile
{ {
public SubtitleFile()
{
LanguageTags = new List<string>();
}
public Language Language { get; set; } public Language Language { get; set; }
public string AggregateString => Language + LanguageTagsAsString + Extension;
public List<string> LanguageTags { get; set; }
private string LanguageTagsAsString => string.Join(".", LanguageTags);
} }
} }
@@ -1,4 +1,3 @@
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
@@ -10,17 +9,13 @@ using NzbDrone.Core.Configuration;
using NzbDrone.Core.Extras.Files; using NzbDrone.Core.Extras.Files;
using NzbDrone.Core.Languages; using NzbDrone.Core.Languages;
using NzbDrone.Core.MediaFiles; using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.MediaFiles.MovieImport;
using NzbDrone.Core.Movies; using NzbDrone.Core.Movies;
using NzbDrone.Core.Parser; using NzbDrone.Core.Parser;
using NzbDrone.Core.Parser.Model;
namespace NzbDrone.Core.Extras.Subtitles namespace NzbDrone.Core.Extras.Subtitles
{ {
public class SubtitleService : ExtraFileManager<SubtitleFile> public class SubtitleService : ExtraFileManager<SubtitleFile>
{ {
private readonly IDiskProvider _diskProvider;
private readonly IDetectSample _detectSample;
private readonly ISubtitleFileService _subtitleFileService; private readonly ISubtitleFileService _subtitleFileService;
private readonly IMediaFileAttributeService _mediaFileAttributeService; private readonly IMediaFileAttributeService _mediaFileAttributeService;
private readonly Logger _logger; private readonly Logger _logger;
@@ -28,14 +23,11 @@ namespace NzbDrone.Core.Extras.Subtitles
public SubtitleService(IConfigService configService, public SubtitleService(IConfigService configService,
IDiskProvider diskProvider, IDiskProvider diskProvider,
IDiskTransferService diskTransferService, IDiskTransferService diskTransferService,
IDetectSample detectSample,
ISubtitleFileService subtitleFileService, ISubtitleFileService subtitleFileService,
IMediaFileAttributeService mediaFileAttributeService, IMediaFileAttributeService mediaFileAttributeService,
Logger logger) Logger logger)
: base(configService, diskProvider, diskTransferService, logger) : base(configService, diskProvider, diskTransferService, logger)
{ {
_diskProvider = diskProvider;
_detectSample = detectSample;
_subtitleFileService = subtitleFileService; _subtitleFileService = subtitleFileService;
_mediaFileAttributeService = mediaFileAttributeService; _mediaFileAttributeService = mediaFileAttributeService;
_logger = logger; _logger = logger;
@@ -72,16 +64,21 @@ namespace NzbDrone.Core.Extras.Subtitles
foreach (var movieFile in movieFiles) foreach (var movieFile in movieFiles)
{ {
var groupedExtraFilesForMovieFile = subtitleFiles.Where(m => m.MovieFileId == movieFile.Id) var groupedExtraFilesForMovieFile = subtitleFiles.Where(m => m.MovieFileId == movieFile.Id)
.GroupBy(s => s.AggregateString).ToList(); .GroupBy(s => s.Language + s.Extension).ToList();
foreach (var group in groupedExtraFilesForMovieFile) foreach (var group in groupedExtraFilesForMovieFile)
{ {
var groupCount = group.Count(); var groupCount = group.Count();
var copy = 1; var copy = 1;
if (groupCount > 1)
{
_logger.Warn("Multiple subtitle files found with the same language and extension for {0}", Path.Combine(movie.Path, movieFile.RelativePath));
}
foreach (var subtitleFile in group) foreach (var subtitleFile in group)
{ {
var suffix = GetSuffix(subtitleFile.Language, copy, subtitleFile.LanguageTags, groupCount > 1); var suffix = GetSuffix(subtitleFile.Language, copy, groupCount > 1);
movedFiles.AddIfNotNull(MoveFile(movie, movieFile, subtitleFile, suffix)); movedFiles.AddIfNotNull(MoveFile(movie, movieFile, subtitleFile, suffix));
copy++; copy++;
@@ -94,141 +91,25 @@ namespace NzbDrone.Core.Extras.Subtitles
return movedFiles; return movedFiles;
} }
public override bool CanImportFile(LocalMovie localEpisode, MovieFile movieFile, string path, string extension, bool readOnly) public override ExtraFile Import(Movie movie, MovieFile movieFile, string path, string extension, bool readOnly)
{ {
return SubtitleFileExtensions.Extensions.Contains(extension.ToLowerInvariant()); if (SubtitleFileExtensions.Extensions.Contains(Path.GetExtension(path)))
{
var language = LanguageParser.ParseSubtitleLanguage(path);
var suffix = GetSuffix(language, 1, false);
var subtitleFile = ImportFile(movie, movieFile, path, readOnly, extension, suffix);
subtitleFile.Language = language;
_mediaFileAttributeService.SetFilePermissions(path);
_subtitleFileService.Upsert(subtitleFile);
return subtitleFile;
}
return null;
} }
public override IEnumerable<ExtraFile> ImportFiles(LocalMovie localMovie, MovieFile movieFile, List<string> files, bool isReadOnly) private string GetSuffix(Language language, int copy, bool multipleCopies = false)
{
var importedFiles = new List<SubtitleFile>();
var filteredFiles = files.Where(f => CanImportFile(localMovie, movieFile, f, Path.GetExtension(f), isReadOnly)).ToList();
var sourcePath = localMovie.Path;
var sourceFolder = _diskProvider.GetParentFolder(sourcePath);
var sourceFileName = Path.GetFileNameWithoutExtension(sourcePath);
var matchingFiles = new List<string>();
foreach (var file in filteredFiles)
{
try
{
// Filename match
if (Path.GetFileNameWithoutExtension(file).StartsWithIgnoreCase(sourceFileName))
{
matchingFiles.Add(file);
continue;
}
// Movie match
var fileMovieInfo = Parser.Parser.ParseMoviePath(file) ?? new ParsedMovieInfo();
if (fileMovieInfo.MovieTitle == null)
{
continue;
}
if (fileMovieInfo.MovieTitle == localMovie.FileMovieInfo.MovieTitle &&
fileMovieInfo.Year.Equals(localMovie.FileMovieInfo.Year))
{
matchingFiles.Add(file);
}
}
catch (Exception ex)
{
_logger.Warn(ex, "Failed to import subtitle file: {0}", file);
}
}
// Use any sub if only episode in folder
if (matchingFiles.Count == 0 && filteredFiles.Count > 0)
{
var videoFiles = _diskProvider.GetFiles(sourceFolder, SearchOption.AllDirectories)
.Where(file => MediaFileExtensions.Extensions.Contains(Path.GetExtension(file)))
.ToList();
if (videoFiles.Count() > 2)
{
return importedFiles;
}
// Filter out samples
videoFiles = videoFiles.Where(file =>
{
var sample = _detectSample.IsSample(localMovie.Movie.MovieMetadata, file);
if (sample == DetectSampleResult.Sample)
{
return false;
}
return true;
}).ToList();
if (videoFiles.Count == 1)
{
matchingFiles.AddRange(filteredFiles);
_logger.Warn("Imported any available subtitle file for movie: {0}", localMovie);
}
}
var subtitleFiles = new List<SubtitleFile>();
foreach (string file in matchingFiles)
{
var language = LanguageParser.ParseSubtitleLanguage(file);
var extension = Path.GetExtension(file);
var languageTags = LanguageParser.ParseLanguageTags(file);
var subFile = new SubtitleFile
{
Language = language,
Extension = extension
};
subFile.LanguageTags = languageTags.ToList();
subFile.RelativePath = PathExtensions.GetRelativePath(sourceFolder, file);
subtitleFiles.Add(subFile);
}
var groupedSubtitleFiles = subtitleFiles.GroupBy(s => s.AggregateString).ToList();
foreach (var group in groupedSubtitleFiles)
{
var groupCount = group.Count();
var copy = 1;
foreach (var file in group)
{
var path = Path.Combine(sourceFolder, file.RelativePath);
var language = file.Language;
var extension = file.Extension;
var suffix = GetSuffix(language, copy, file.LanguageTags, groupCount > 1);
try
{
var subtitleFile = ImportFile(localMovie.Movie, movieFile, path, isReadOnly, extension, suffix);
subtitleFile.Language = language;
subtitleFile.LanguageTags = file.LanguageTags;
_mediaFileAttributeService.SetFilePermissions(path);
_subtitleFileService.Upsert(subtitleFile);
importedFiles.Add(subtitleFile);
copy++;
}
catch (Exception ex)
{
_logger.Warn(ex, "Failed to import subtitle file: {0}", path);
}
}
}
return importedFiles;
}
private string GetSuffix(Language language, int copy, List<string> languageTags, bool multipleCopies = false)
{ {
var suffixBuilder = new StringBuilder(); var suffixBuilder = new StringBuilder();
@@ -244,12 +125,6 @@ namespace NzbDrone.Core.Extras.Subtitles
suffixBuilder.Append(IsoLanguages.Get(language).TwoLetterCode); suffixBuilder.Append(IsoLanguages.Get(language).TwoLetterCode);
} }
if (languageTags.Any())
{
suffixBuilder.Append(".");
suffixBuilder.Append(string.Join(".", languageTags));
}
return suffixBuilder.ToString(); return suffixBuilder.ToString();
} }
} }
@@ -28,10 +28,10 @@ namespace NzbDrone.Core.ImportLists.Radarr
TagIds = Array.Empty<int>(); TagIds = Array.Empty<int>();
} }
[FieldDefinition(0, Label = "Full URL", HelpText = "URL, including port, of the Radarr instance to import from (Radarr 3.0 or higher)")] [FieldDefinition(0, Label = "Full URL", HelpText = "URL, including port, of the Radarr V3 instance to import from")]
public string BaseUrl { get; set; } public string BaseUrl { get; set; }
[FieldDefinition(1, Label = "API Key", Privacy = PrivacyLevel.ApiKey, HelpText = "Apikey of the Radarr instance to import from (Radarr 3.0 or higher)")] [FieldDefinition(1, Label = "API Key", Privacy = PrivacyLevel.ApiKey, HelpText = "Apikey of the Radarr V3 instance to import from")]
public string ApiKey { get; set; } public string ApiKey { get; set; }
[FieldDefinition(2, Type = FieldType.Select, SelectOptionsProviderAction = "getProfiles", Label = "Profiles", HelpText = "Profiles from the source instance to import from")] [FieldDefinition(2, Type = FieldType.Select, SelectOptionsProviderAction = "getProfiles", Label = "Profiles", HelpText = "Profiles from the source instance to import from")]
@@ -39,10 +39,6 @@ namespace NzbDrone.Core.ImportLists.Trakt.Popular
public TraktPopularSettings() public TraktPopularSettings()
{ {
TraktListType = (int)TraktPopularListType.Popular; TraktListType = (int)TraktPopularListType.Popular;
Rating = "0-100";
Certification = "NR,G,PG,PG-13,R,NC-17";
Genres = "";
Years = "";
} }
[FieldDefinition(1, Label = "List Type", Type = FieldType.Select, SelectOptions = typeof(TraktPopularListType), HelpText = "Type of list you're seeking to import from")] [FieldDefinition(1, Label = "List Type", Type = FieldType.Select, SelectOptions = typeof(TraktPopularListType), HelpText = "Type of list you're seeking to import from")]
@@ -31,12 +31,10 @@ namespace NzbDrone.Core.Indexers.Rarbg
if (jsonResponse.Resource.error_code.HasValue) if (jsonResponse.Resource.error_code.HasValue)
{ {
if (jsonResponse.Resource.error_code == 5 || jsonResponse.Resource.error_code == 8 if (jsonResponse.Resource.error_code == 20 || jsonResponse.Resource.error_code == 8
|| jsonResponse.Resource.error_code == 9 || jsonResponse.Resource.error_code == 10 || jsonResponse.Resource.error_code == 9 || jsonResponse.Resource.error_code == 10)
|| jsonResponse.Resource.error_code == 13 || jsonResponse.Resource.error_code == 14
|| jsonResponse.Resource.error_code == 20)
{ {
// No results, rate limit, tmdbid not found/invalid, or imdbid not found/invalid // No results or imdbid not found
return results; return results;
} }
@@ -38,7 +38,7 @@ namespace NzbDrone.Core.Indexers
{ {
private static readonly SeedCriteriaSettingsValidator Validator = new SeedCriteriaSettingsValidator(); private static readonly SeedCriteriaSettingsValidator Validator = new SeedCriteriaSettingsValidator();
[FieldDefinition(0, Type = FieldType.Textbox, Label = "Seed Ratio", HelpText = "The ratio a torrent should reach before stopping, empty is download client's default. Ratio should be at least 1.0 and follow the indexers rules")] [FieldDefinition(0, Type = FieldType.Textbox, Label = "Seed Ratio", HelpText = "The ratio a torrent should reach before stopping, empty is download client's default", Advanced = true)]
public double? SeedRatio { get; set; } public double? SeedRatio { get; set; }
[FieldDefinition(1, Type = FieldType.Number, Label = "Seed Time", Unit = "minutes", HelpText = "The time a torrent should be seeded before stopping, empty is download client's default", Advanced = true)] [FieldDefinition(1, Type = FieldType.Number, Label = "Seed Time", Unit = "minutes", HelpText = "The time a torrent should be seeded before stopping, empty is download client's default", Advanced = true)]
-2
View File
@@ -106,7 +106,6 @@ namespace NzbDrone.Core.Languages
public static Language Persian => new Language(33, "Persian"); public static Language Persian => new Language(33, "Persian");
public static Language Bengali => new Language(34, "Bengali"); public static Language Bengali => new Language(34, "Bengali");
public static Language Slovak => new Language(35, "Slovak"); public static Language Slovak => new Language(35, "Slovak");
public static Language Latvian => new Language(36, "Latvian");
public static Language Any => new Language(-1, "Any"); public static Language Any => new Language(-1, "Any");
public static Language Original => new Language(-2, "Original"); public static Language Original => new Language(-2, "Original");
@@ -152,7 +151,6 @@ namespace NzbDrone.Core.Languages
Persian, Persian,
Bengali, Bengali,
Slovak, Slovak,
Latvian,
Any, Any,
Original Original
}; };
+1 -3
View File
@@ -1143,7 +1143,5 @@
"ApiKey": "Clau API", "ApiKey": "Clau API",
"AppDataDirectory": "Directori AppData", "AppDataDirectory": "Directori AppData",
"AppDataLocationHealthCheckMessage": "No es podrà actualitzar per evitar que s'eliminin AppData a l'actualització", "AppDataLocationHealthCheckMessage": "No es podrà actualitzar per evitar que s'eliminin AppData a l'actualització",
"Info": "Informació", "Info": "Informació"
"ApplicationURL": "URL de l'aplicació",
"ApplicationUrlHelpText": "URL extern d'aquesta aplicació, inclòs http(s)://, port i URL base"
} }
+3 -6
View File
@@ -639,7 +639,7 @@
"RetryingDownloadInterp": "Herunterladen nochmal versuchen {0} um {1}", "RetryingDownloadInterp": "Herunterladen nochmal versuchen {0} um {1}",
"RemovingTag": "Tag entfernen", "RemovingTag": "Tag entfernen",
"ReleaseWillBeProcessedInterp": "Release wird verarbeitet {0}", "ReleaseWillBeProcessedInterp": "Release wird verarbeitet {0}",
"Queued": "In der Warteschlange", "Queued": "Eingereiht",
"QualityProfileDeleteConfirm": "Qualitätsprofil '{0}' wirklich löschen", "QualityProfileDeleteConfirm": "Qualitätsprofil '{0}' wirklich löschen",
"Pending": "Ausstehend", "Pending": "Ausstehend",
"Paused": "Pausiert", "Paused": "Pausiert",
@@ -653,7 +653,7 @@
"MarkAsFailedMessageText": "'{0}' wirklich als fehlgeschlagen markieren?", "MarkAsFailedMessageText": "'{0}' wirklich als fehlgeschlagen markieren?",
"Manual": "Manuell", "Manual": "Manuell",
"LogLevelTraceHelpTextWarning": "Trace logging sollte nur kurzzeitig aktiviert werden", "LogLevelTraceHelpTextWarning": "Trace logging sollte nur kurzzeitig aktiviert werden",
"LastDuration": "Letzte Dauer", "LastDuration": "Letzte Laufzeit",
"IncludeRecommendationsHelpText": "Radarrs Empfehlungen in der Entdeckungsansicht mit einbeziehen", "IncludeRecommendationsHelpText": "Radarrs Empfehlungen in der Entdeckungsansicht mit einbeziehen",
"IncludeRadarrRecommendations": "Radarr Empfehlungen einbeziehen", "IncludeRadarrRecommendations": "Radarr Empfehlungen einbeziehen",
"ImportFailedInterp": "Import fehlgeschlagen: {0}", "ImportFailedInterp": "Import fehlgeschlagen: {0}",
@@ -1142,8 +1142,5 @@
"UnableToLoadCollections": "Sammlungen können nicht geladen werden", "UnableToLoadCollections": "Sammlungen können nicht geladen werden",
"InstanceName": "Instanzname", "InstanceName": "Instanzname",
"InstanceNameHelpText": "Instanzname im Browser-Tab und für Syslog-Anwendungsname", "InstanceNameHelpText": "Instanzname im Browser-Tab und für Syslog-Anwendungsname",
"RottenTomatoesRating": "Tomato Bewertung", "RottenTomatoesRating": "Tomato Bewertung"
"TotalMovies": "Filme insgesamt",
"ApplicationURL": "Anwendungs-URL",
"ApplicationUrlHelpText": "Die externe URL der Anwendung inklusive http(s)://, Port und URL-Basis"
} }
+1 -3
View File
@@ -50,8 +50,6 @@
"ApiKey": "API Key", "ApiKey": "API Key",
"AppDataDirectory": "AppData directory", "AppDataDirectory": "AppData directory",
"AppDataLocationHealthCheckMessage": "Updating will not be possible to prevent deleting AppData on Update", "AppDataLocationHealthCheckMessage": "Updating will not be possible to prevent deleting AppData on Update",
"ApplicationURL": "Application URL",
"ApplicationUrlHelpText": "This application's external URL including http(s)://, port and URL base",
"Apply": "Apply", "Apply": "Apply",
"ApplyTags": "Apply Tags", "ApplyTags": "Apply Tags",
"ApplyTagsHelpTexts1": "How to apply tags to the selected movies", "ApplyTagsHelpTexts1": "How to apply tags to the selected movies",
@@ -737,7 +735,7 @@
"QualityOrLangCutoffHasNotBeenMet": "Quality or Language cutoff has not been met", "QualityOrLangCutoffHasNotBeenMet": "Quality or Language cutoff has not been met",
"QualityProfile": "Quality Profile", "QualityProfile": "Quality Profile",
"QualityProfileDeleteConfirm": "Are you sure you want to delete the quality profile {0}", "QualityProfileDeleteConfirm": "Are you sure you want to delete the quality profile {0}",
"QualityProfileInUse": "Can't delete a quality profile that is attached to a movie, list, or collection", "QualityProfileInUse": "Can't delete a quality profile that is attached to a movie",
"QualityProfiles": "Quality Profiles", "QualityProfiles": "Quality Profiles",
"QualitySettings": "Quality Settings", "QualitySettings": "Quality Settings",
"QualitySettingsSummary": "Quality sizes and naming", "QualitySettingsSummary": "Quality sizes and naming",
+24 -46
View File
@@ -91,7 +91,7 @@
"Search": "Buscar", "Search": "Buscar",
"Scheduled": "Programado", "Scheduled": "Programado",
"SaveChanges": "Guardar Cambios", "SaveChanges": "Guardar Cambios",
"RSSSync": "Sincronizar RSS", "RSSSync": "Sincronización RSS",
"RootFolders": "Carpetas de Origen", "RootFolders": "Carpetas de Origen",
"RootFolderCheckSingleMessage": "La carpeta de origen no existe: {0}", "RootFolderCheckSingleMessage": "La carpeta de origen no existe: {0}",
"RootFolderCheckMultipleMessage": "Varias carpetas de origen no existen: {0}", "RootFolderCheckMultipleMessage": "Varias carpetas de origen no existen: {0}",
@@ -232,7 +232,7 @@
"OAuthPopupMessage": "Pop-ups bloqueados por su navegador", "OAuthPopupMessage": "Pop-ups bloqueados por su navegador",
"Name": "Nombre", "Name": "Nombre",
"MoveFiles": "Mover Archivos", "MoveFiles": "Mover Archivos",
"Monitored": "Monitoreada", "Monitored": "Monitoreadas",
"Message": "Mensaje", "Message": "Mensaje",
"Location": "Localización", "Location": "Localización",
"Level": "Nivel", "Level": "Nivel",
@@ -461,7 +461,7 @@
"ShowMonitoredHelpText": "Mostrar el estado de monitoreo debajo del poster", "ShowMonitoredHelpText": "Mostrar el estado de monitoreo debajo del poster",
"ShowCutoffUnmetIconHelpText": "Mostrar el icono para los ficheros cuando no se ha alcanzado el corte", "ShowCutoffUnmetIconHelpText": "Mostrar el icono para los ficheros cuando no se ha alcanzado el corte",
"ShowAsAllDayEvents": "Mostrar como Eventos de Todo el Día", "ShowAsAllDayEvents": "Mostrar como Eventos de Todo el Día",
"ShouldMonitorHelpText": "Si las películas o colecciones en esta lista deberían ser agregadas como monitoreadas", "ShouldMonitorHelpText": "Si se habilita, las películas añadidas desde esta lista serán también monitoreadas",
"SetPermissionsLinuxHelpTextWarning": "Si no estas seguro de lo que hacen estos ajustes, no los modifiques.", "SetPermissionsLinuxHelpTextWarning": "Si no estas seguro de lo que hacen estos ajustes, no los modifiques.",
"SetPermissionsLinuxHelpText": "Debe chmod ser ejecutado una vez los archivos hayan sido importados/renombrados?", "SetPermissionsLinuxHelpText": "Debe chmod ser ejecutado una vez los archivos hayan sido importados/renombrados?",
"SetPermissions": "Ajustar Permisos", "SetPermissions": "Ajustar Permisos",
@@ -614,8 +614,8 @@
"CleanLibraryLevel": "Limpiar el Nivel de la Librería", "CleanLibraryLevel": "Limpiar el Nivel de la Librería",
"BindAddress": "Dirección de Ligado", "BindAddress": "Dirección de Ligado",
"OpenBrowserOnStart": "Abrir navegador al arrancar", "OpenBrowserOnStart": "Abrir navegador al arrancar",
"OnUpgradeHelpText": "Al Mejorar La Calidad", "OnUpgradeHelpText": "Al Actualizar",
"OnRenameHelpText": "Al Renombrar", "OnRenameHelpText": "En Renombrado",
"OnHealthIssueHelpText": "En Problema de Salud", "OnHealthIssueHelpText": "En Problema de Salud",
"OnGrabHelpText": "Al Capturar", "OnGrabHelpText": "Al Capturar",
"SettingsRuntimeFormat": "Formato de Tiempo de ejecución", "SettingsRuntimeFormat": "Formato de Tiempo de ejecución",
@@ -633,7 +633,7 @@
"ShownClickToHide": "Mostrado, clic para ocultar", "ShownClickToHide": "Mostrado, clic para ocultar",
"ShowGenres": "Mostrar Géneros", "ShowGenres": "Mostrar Géneros",
"ShowCertification": "Mostrar Certificación", "ShowCertification": "Mostrar Certificación",
"SearchOnAddHelpText": "Buscar películas en esta lista cuando se añada a la biblioteca", "SearchOnAddHelpText": "Buscar películas en esta lista cuando se añadan a Radarr",
"RSSSyncIntervalHelpTextWarning": "Se aplicará a todos los indexers, por favor sigue las reglas de los mismos", "RSSSyncIntervalHelpTextWarning": "Se aplicará a todos los indexers, por favor sigue las reglas de los mismos",
"RSSIsNotSupportedWithThisIndexer": "RSS no son soportadas por este indexer", "RSSIsNotSupportedWithThisIndexer": "RSS no son soportadas por este indexer",
"RetryingDownloadInterp": "Re-intentando descarga {0} en {1}", "RetryingDownloadInterp": "Re-intentando descarga {0} en {1}",
@@ -874,11 +874,11 @@
"MovieFilesTotaling": "Totalización de archivos de película", "MovieFilesTotaling": "Totalización de archivos de película",
"OnGrab": "Al Capturar", "OnGrab": "Al Capturar",
"OnHealthIssue": "En Problema de Salud", "OnHealthIssue": "En Problema de Salud",
"OnImport": "Al Importar", "OnImport": "Al importar",
"OnLatestVersion": "La última versión de Radarr ya está instalada", "OnLatestVersion": "La última versión de Radarr ya está instalada",
"OnlyTorrent": "Solo Torrent", "OnlyTorrent": "Solo Torrent",
"OnlyUsenet": "Solo Usenet", "OnlyUsenet": "Solo Usenet",
"OnRename": "Al Renombrar", "OnRename": "En Renombrado",
"PreferTorrent": "Prefiero Torrent", "PreferTorrent": "Prefiero Torrent",
"PreferUsenet": "Prefiero Usenet", "PreferUsenet": "Prefiero Usenet",
"Presets": "Preajustes", "Presets": "Preajustes",
@@ -988,12 +988,12 @@
"Score": "Puntuación", "Score": "Puntuación",
"Script": "Guión", "Script": "Guión",
"SearchCutoffUnmet": "Corte de búsqueda no alcanzado", "SearchCutoffUnmet": "Corte de búsqueda no alcanzado",
"SearchMissing": "Buscar Faltantes", "SearchMissing": "Búsqueda que falta",
"Seconds": "Segundos", "Seconds": "Segundos",
"SelectDotDot": "Seleccione...", "SelectDotDot": "Seleccione...",
"SelectLanguage": "Seleccionar Idioma", "SelectLanguage": "Seleccione el idioma",
"SelectMovie": "Seleccionar Película", "SelectMovie": "Seleccionar película",
"SelectQuality": "Seleccionar Calidad", "SelectQuality": "Seleccionar calidad",
"Small": "Pequeña", "Small": "Pequeña",
"Socks4": "Calcetines4", "Socks4": "Calcetines4",
"Socks5": "Socks5 (soporte TOR)", "Socks5": "Socks5 (soporte TOR)",
@@ -1031,13 +1031,13 @@
"showCinemaReleaseHelpText": "Mostrar la fecha de estreno en el cine debajo del cartel", "showCinemaReleaseHelpText": "Mostrar la fecha de estreno en el cine debajo del cartel",
"ShowReleaseDate": "Mostrar fecha de lanzamiento", "ShowReleaseDate": "Mostrar fecha de lanzamiento",
"ShowReleaseDateHelpText": "Mostrar la fecha de lanzamiento debajo del cartel", "ShowReleaseDateHelpText": "Mostrar la fecha de lanzamiento debajo del cartel",
"OnMovieDelete": "Al Eliminar Película", "OnMovieDelete": "Al eliminar la película",
"OnMovieDeleteHelpText": "Al Eliminar Película", "OnMovieDeleteHelpText": "Al eliminar la película",
"OnMovieFileDelete": "Al Eliminar Archivo De Película", "OnMovieFileDelete": "Al eliminar archivo de película",
"OnMovieFileDeleteHelpText": "Al Eliminar Archivo De Película", "OnMovieFileDeleteHelpText": "Al eliminar archivo de película",
"OnMovieFileDeleteForUpgrade": "Al Eliminar Archivo De Pelicula Para Mejorar La Calidad", "OnMovieFileDeleteForUpgrade": "En archivo de película Eliminar para actualizar",
"OnMovieFileDeleteForUpgradeHelpText": "Al Eliminar Archivo De Pelicula Para Mejorar La Calidad", "OnMovieFileDeleteForUpgradeHelpText": "En archivo de película Eliminar para actualizar",
"OnUpgrade": "Al Mejorar La Calidad", "OnUpgrade": "Al Actualizar",
"Reddit": "Reddit", "Reddit": "Reddit",
"More": "Más", "More": "Más",
"Download": "Descargar", "Download": "Descargar",
@@ -1064,7 +1064,7 @@
"List": "Lista", "List": "Lista",
"ManualImportSetReleaseGroup": "Importación manual - Configurar el grupo de lanzamiento", "ManualImportSetReleaseGroup": "Importación manual - Configurar el grupo de lanzamiento",
"NotificationTriggersHelpText": "Seleccione qué eventos deben activar esta notificación", "NotificationTriggersHelpText": "Seleccione qué eventos deben activar esta notificación",
"OnApplicationUpdate": "Al Actualizar La Aplicación", "OnApplicationUpdate": "Al actualizar la aplicación",
"RemotePathMappingCheckFileRemoved": "El archivo {0} fue eliminado a mitad del proceso.", "RemotePathMappingCheckFileRemoved": "El archivo {0} fue eliminado a mitad del proceso.",
"RemotePath": "Ruta remota", "RemotePath": "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.", "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.",
@@ -1072,7 +1072,7 @@
"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.", "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.",
"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.", "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.", "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.",
"SelectLanguages": "Seleccionar Idiomas", "SelectLanguages": "Seleccionar idiomas",
"IndexerDownloadClientHelpText": "Especifica qué cliente de descargas se utiliza para las descargas de este indexador", "IndexerDownloadClientHelpText": "Especifica qué cliente de descargas se utiliza para las descargas de este indexador",
"AnnouncedMsg": "Película anunciada", "AnnouncedMsg": "Película anunciada",
"Auto": "Auto", "Auto": "Auto",
@@ -1097,7 +1097,7 @@
"TmdbRating": "TMDb valoración", "TmdbRating": "TMDb valoración",
"TmdbVotes": "Votos en TMDb", "TmdbVotes": "Votos en TMDb",
"Filters": "Filtros", "Filters": "Filtros",
"OnApplicationUpdateHelpText": "Al Actualizar La Aplicación", "OnApplicationUpdateHelpText": "Al actualizar la aplicación",
"OriginalTitle": "Título original", "OriginalTitle": "Título original",
"OriginalLanguage": "Idioma original", "OriginalLanguage": "Idioma original",
"Rating": "Puntuación", "Rating": "Puntuación",
@@ -1108,7 +1108,7 @@
"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.", "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.",
"RemoveSelectedItem": "Eliminar el elemento seleccionado", "RemoveSelectedItem": "Eliminar el elemento seleccionado",
"RemoveSelectedItems": "Eliminar los elementos seleccionados", "RemoveSelectedItems": "Eliminar los elementos seleccionados",
"SelectReleaseGroup": "Seleccionar Grupo De Lanzamiento", "SelectReleaseGroup": "Seleccionar el grupo de lanzamiento",
"SetReleaseGroup": "Configurar el grupo de lanzamiento", "SetReleaseGroup": "Configurar el grupo de lanzamiento",
"TaskUserAgentTooltip": "User-Agent proporcionado por la aplicación llamó a la API", "TaskUserAgentTooltip": "User-Agent proporcionado por la aplicación llamó a la API",
"RssSyncHelpText": "Intervalo en minutos. Ajustar a cero para inhabilitar (esto dentendrá toda captura de estrenos automática)", "RssSyncHelpText": "Intervalo en minutos. Ajustar a cero para inhabilitar (esto dentendrá toda captura de estrenos automática)",
@@ -1120,27 +1120,5 @@
"CollectionOptions": "Opciones de la Colección", "CollectionOptions": "Opciones de la Colección",
"CollectionShowDetailsHelpText": "Mostrar el estado y propiedades de la colección", "CollectionShowDetailsHelpText": "Mostrar el estado y propiedades de la colección",
"CollectionShowOverviewsHelpText": "Mostrar resumenes de la colección", "CollectionShowOverviewsHelpText": "Mostrar resumenes de la colección",
"CollectionShowPostersHelpText": "Mostrar póster de artículos de colección", "CollectionShowPostersHelpText": "Mostrar póster de artículos de colección"
"RefreshMonitoredIntervalHelpText": "Cada cuánto actualizar las descargas monitoreadeas desde los clientes de descarga, mínimo 1 minuto",
"SearchOnAddCollectionHelpText": "Buscar películas en esta colección cuando se añada a la biblioteca",
"TotalMovies": "Películas Totales",
"CollectionsSelectedInterp": "{0} Colecciones Seleccionadas",
"EditCollection": "Editar Colección",
"MonitorCollection": "Monitorear Colección",
"MonitoredCollectionHelpText": "Monitorear para que las películas de esta colección se añadan automáticamente a la biblioteca",
"MovieAndCollection": "Película y Colección",
"MovieCollectionMultipleMissingRoots": "Múltiples carpetas raices faltantes para colecciones de películas: {0}",
"OnMovieAdded": "Al Agregar Pelicula",
"OnMovieAddedHelpText": "Al Agregar Película",
"RefreshCollections": "Actualizar Colecciones",
"ShowCollectionDetails": "Mostrar Estado De Colección",
"InstanceName": "Nombre de Instancia",
"InstanceNameHelpText": "Nombre de instancia en pestaña y para nombre de aplicación en Syslog",
"RottenTomatoesRating": "Tomato Rating",
"ScrollMovies": "Desplazar Películas",
"ShowPosters": "Mostrar Posters",
"UnableToLoadCollections": "No se han podido cargar las colecciones",
"MovieCollectionMissingRoot": "Carpeta raíz faltante para colección de películas: {0}",
"MovieOnly": "Solo Película",
"Database": "Base de Datos"
} }
+18 -20
View File
@@ -14,7 +14,7 @@
"RadarrSupportsAnyDownloadClient": "Radarr tukee kaikkien Newznab-yhteensopivien lataustyökalujen ohella myös monia muita alla listattuja torrent- ja Usenet-lataustyökaluja.", "RadarrSupportsAnyDownloadClient": "Radarr tukee kaikkien Newznab-yhteensopivien lataustyökalujen ohella myös monia muita alla listattuja torrent- ja Usenet-lataustyökaluja.",
"Timeleft": "Aikaa jäljellä", "Timeleft": "Aikaa jäljellä",
"UpdateCheckStartupNotWritableMessage": "Päivitystä ei voi asentaa, koska käyttäjällä '{1}' ei ole kirjoitusoikeutta käynnistyskansioon '{0}'.", "UpdateCheckStartupNotWritableMessage": "Päivitystä ei voi asentaa, koska käyttäjällä '{1}' ei ole kirjoitusoikeutta käynnistyskansioon '{0}'.",
"ApplyTagsHelpTexts4": "- \"Korvaa\" nykyiset tunnisteet syötetyillä tai tyhjennä kaikki tunnisteet jättämällä tyhjäksi.", "ApplyTagsHelpTexts4": " 'Korvaa' kaikki aiemmat tunnisteet tai poista kaikki tunnisteet jättämällä tyhjäksi",
"UnableToLoadUISettings": "Käyttöliittymän asetuksien lataus epäonnistui.", "UnableToLoadUISettings": "Käyttöliittymän asetuksien lataus epäonnistui.",
"NotAvailable": "Ei saatavilla", "NotAvailable": "Ei saatavilla",
"AddingTag": "Tunniste lisätään", "AddingTag": "Tunniste lisätään",
@@ -92,9 +92,9 @@
"DBMigration": "Tietokannan siirto", "DBMigration": "Tietokannan siirto",
"ApiKey": "API-avain", "ApiKey": "API-avain",
"AcceptConfirmationModal": "Hyväksy vahvistus", "AcceptConfirmationModal": "Hyväksy vahvistus",
"ApplyTagsHelpTexts1": "Tunnistetoimenpiteiden selitykset:", "ApplyTagsHelpTexts1": "Miten tunnisteita sovelletaan valittuihin elokuviin",
"ApplyTagsHelpTexts2": "- \"Lisää\" syötetyt tunnisteet aiempiin tunnisteisiin.", "ApplyTagsHelpTexts2": " 'Lisää' syötetyt tunnisteet aiempiin tunnisteisiin",
"ApplyTagsHelpTexts3": "- \"Poista\" tyhjentää syötetyt tunnisteet.", "ApplyTagsHelpTexts3": " 'Poista' ainoastaan syötetyt tunnisteet",
"AvailabilityDelay": "Saatavuusviive", "AvailabilityDelay": "Saatavuusviive",
"AvailabilityDelayHelpText": "Aika ennen käytettävissä olevaa päivämäärää tai sen jälkeen elokuvan etsimiseen", "AvailabilityDelayHelpText": "Aika ennen käytettävissä olevaa päivämäärää tai sen jälkeen elokuvan etsimiseen",
"BackupIntervalHelpText": "Prowlarrin tietokannan ja asetusten automaattisen varmuuskopioinnin suoritusaikaväli.", "BackupIntervalHelpText": "Prowlarrin tietokannan ja asetusten automaattisen varmuuskopioinnin suoritusaikaväli.",
@@ -160,16 +160,16 @@
"AddToDownloadQueue": "Lisää latausjonoon", "AddToDownloadQueue": "Lisää latausjonoon",
"AfterManualRefresh": "Manuaalisen päivityksen jälkeen", "AfterManualRefresh": "Manuaalisen päivityksen jälkeen",
"AllFiles": "Kaikki tiedostot", "AllFiles": "Kaikki tiedostot",
"AllMoviesInPathHaveBeenImported": "Kaikki kansion {0} elokuvat on tuotu", "AllMoviesInPathHaveBeenImported": "Kaikki kansion '{0}' elokuvat on tuotu",
"AllResultsHiddenFilter": "Kaikki tulokset on piilotettu aktiivisen suodattimen johdosta.", "AllResultsHiddenFilter": "Aktiivinen suodatin on piilottanut kaikki tulokset",
"Always": "Aina", "Always": "Aina",
"AnalyseVideoFiles": "Analysoi videotiedostot", "AnalyseVideoFiles": "Analysoi videotiedostot",
"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.", "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.",
"AptUpdater": "Käytä APT:ta päivityksen asennukseen", "AptUpdater": "Käytä APT:ta päivityksen asennukseen",
"AreYouSureYouWantToDeleteFormat": "Haluatko varmasti poistaa muotoilutunnisteen \"{0}\"?", "AreYouSureYouWantToDeleteFormat": "Haluatko varmasti poistaa muotoilutagin '{0}'?",
"AreYouSureYouWantToDeleteThisImportListExclusion": "Haluatko varmasti poistaa tämän poikkeussäännön?", "AreYouSureYouWantToDeleteThisImportListExclusion": "Haluatko varmasti poistaa poikkeussäännön?",
"AreYouSureYouWantToRemoveSelectedItemsFromQueue": "Haluatko varmasti poistaa jonosta {0} kohdetta?", "AreYouSureYouWantToRemoveSelectedItemsFromQueue": "Haluatko varmasti poistaa jonosta {0} kohdetta?",
"ApplyTags": "Tunnistetoimenpide", "ApplyTags": "Toimenpide tunnisteille",
"AuthBasic": "Perus (selaimen ponnahdus)", "AuthBasic": "Perus (selaimen ponnahdus)",
"AuthenticationMethodHelpText": "Vaadi käyttäjätunnus ja salasana.", "AuthenticationMethodHelpText": "Vaadi käyttäjätunnus ja salasana.",
"AuthForm": "Lomake (kirjautumissivu)", "AuthForm": "Lomake (kirjautumissivu)",
@@ -253,7 +253,7 @@
"ProxyType": "Välityspalvelimen tyyppi", "ProxyType": "Välityspalvelimen tyyppi",
"PtpOldSettingsCheckMessage": "Seuraavat PassThePopcorn-tietolähteet sisältävät vanhentuneita asetuksia, jotka olisi syytä päivittää: {0}", "PtpOldSettingsCheckMessage": "Seuraavat PassThePopcorn-tietolähteet sisältävät vanhentuneita asetuksia, jotka olisi syytä päivittää: {0}",
"QualitiesHelpText": "Listalla ylempänä olevia laatuja painotetaan. Saman ryhmän laadut ovat tasaveroisia. Valitse vain haluamasi laadut.", "QualitiesHelpText": "Listalla ylempänä olevia laatuja painotetaan. Saman ryhmän laadut ovat tasaveroisia. Valitse vain haluamasi laadut.",
"QualityProfileInUse": "Elokuvaan, listaan tai kokelmaan liitettyä laatuprofiilia ei voida poistaa.", "QualityProfileInUse": "Elokuvaan liitettyä laatuprofiilia ei voi poistaa.",
"QueueIsEmpty": "Jono on tyhjä", "QueueIsEmpty": "Jono on tyhjä",
"RadarrCalendarFeed": "Radarr-kalenterisyöte", "RadarrCalendarFeed": "Radarr-kalenterisyöte",
"RadarrUpdated": "Radarr Päivitetty", "RadarrUpdated": "Radarr Päivitetty",
@@ -397,7 +397,7 @@
"Path": "Sijainti", "Path": "Sijainti",
"Paused": "Keskeytetty", "Paused": "Keskeytetty",
"Permissions": "Käyttöoikeudet", "Permissions": "Käyttöoikeudet",
"AllMoviesHiddenDueToFilter": "Kaikki elokuvat on piilotettu aktiivisen suodattimen johdosta.", "AllMoviesHiddenDueToFilter": "Käytössä oleva suodatin on piilottanut kaikki elokuvat.",
"AllowHardcodedSubs": "Salli poltetut tekstitykset", "AllowHardcodedSubs": "Salli poltetut tekstitykset",
"PhysicalRelease": "Fyysinen julkaisu", "PhysicalRelease": "Fyysinen julkaisu",
"Port": "Portti", "Port": "Portti",
@@ -409,7 +409,7 @@
"ProtocolHelpText": "Valitse käytettävä (t) protokolla (t) ja mikä on suositeltava, kun valitset muuten yhtä suurten julkaisujen välillä", "ProtocolHelpText": "Valitse käytettävä (t) protokolla (t) ja mikä on suositeltava, kun valitset muuten yhtä suurten julkaisujen välillä",
"EditDelayProfile": "Muokkaa viiveprofiilia", "EditDelayProfile": "Muokkaa viiveprofiilia",
"ProxyBypassFilterHelpText": "Käytä erottimena ',' ja '*.' jokerimerkkinä aliverkkotunnuksille (esim. www.esimerkki.fi,*.esimerkki.fi)", "ProxyBypassFilterHelpText": "Käytä erottimena ',' ja '*.' jokerimerkkinä aliverkkotunnuksille (esim. www.esimerkki.fi,*.esimerkki.fi)",
"AllowHardcodedSubsHelpText": "Havaitut poltetut tekstitykset ladataan automaattisesti.", "AllowHardcodedSubsHelpText": "Havaitut poltetut tekstitykset ladataan automaattisesti",
"QualityProfile": "Laatuprofiili", "QualityProfile": "Laatuprofiili",
"QualityProfiles": "Laatuprofiilit", "QualityProfiles": "Laatuprofiilit",
"QuickImport": "Siirrä automaattisesti", "QuickImport": "Siirrä automaattisesti",
@@ -443,7 +443,7 @@
"TotalFileSize": "Tiedoston koko", "TotalFileSize": "Tiedoston koko",
"TotalSpace": "Kokonaistila", "TotalSpace": "Kokonaistila",
"UpgradeAllowedHelpText": "Jos käytöstä poistettuja laatuja ei päivitetä.", "UpgradeAllowedHelpText": "Jos käytöstä poistettuja laatuja ei päivitetä.",
"AreYouSureYouWantToDeleteThisDelayProfile": "Haluatko varmasti poistaa tämän viiveprofiilin?", "AreYouSureYouWantToDeleteThisDelayProfile": "Haluatko varmasti poistaa viiveprofiilin?",
"Username": "Käyttäjätunnus", "Username": "Käyttäjätunnus",
"WaitingToImport": "Odottaa tuontia", "WaitingToImport": "Odottaa tuontia",
"DigitalRelease": "Digitaalinen julkaisu", "DigitalRelease": "Digitaalinen julkaisu",
@@ -473,8 +473,8 @@
"ConnectionLost": "Yhteys on katkennut", "ConnectionLost": "Yhteys on katkennut",
"Backup": "Varmuuskopio", "Backup": "Varmuuskopio",
"ConnectionLostAutomaticMessage": "Radarr pyrkii muodostamaan yhteyden automaattisesti tai voit painaa alta \"Lataa uudelleen\".", "ConnectionLostAutomaticMessage": "Radarr pyrkii muodostamaan yhteyden automaattisesti tai voit painaa alta \"Lataa uudelleen\".",
"AddNewMessage": "Uuden elokuvan lisäys on helppoa. Aloita vain haluamasi elokuvan nimen kirjoitus.", "AddNewMessage": "On helppoa lisätä uusi elokuva: ala vain kirjoittamaan haluamasi elokuvan nimeä.",
"AddNewTmdbIdMessage": "Voit etsiä myös elokuvan TMDb-tunnisteella (esim. 'tmdb:71663').", "AddNewTmdbIdMessage": "Voit tehdä hakuja myös elokuvan TMDb-tunnuksella (esim. 'tmdb:71663').",
"BackupFolderHelpText": "Suhteelliset polut kohdistuvat sovelluksen AppData-kansioon.", "BackupFolderHelpText": "Suhteelliset polut kohdistuvat sovelluksen AppData-kansioon.",
"Connections": "Kytkennät", "Connections": "Kytkennät",
"ConnectSettings": "Kytkentöjen asetukset", "ConnectSettings": "Kytkentöjen asetukset",
@@ -787,7 +787,7 @@
"RenameMovies": "Uudelleennimeä elokuvat", "RenameMovies": "Uudelleennimeä elokuvat",
"RenameMoviesHelpText": "Jos uudelleennimeäminen ei ole käytössä, käytetään olemassa olevaa tiedostonimeä.", "RenameMoviesHelpText": "Jos uudelleennimeäminen ei ole käytössä, käytetään olemassa olevaa tiedostonimeä.",
"Reorder": "Järjestä uudelleen", "Reorder": "Järjestä uudelleen",
"Replace": "Korvaa", "Replace": "Korvata",
"ReplaceIllegalCharacters": "Korvaa kielletyt merkit", "ReplaceIllegalCharacters": "Korvaa kielletyt merkit",
"ReplaceIllegalCharactersHelpText": "Korvaa laittomat merkit. Jos ei käytössä, laittomat merkit poistetaan.", "ReplaceIllegalCharactersHelpText": "Korvaa laittomat merkit. Jos ei käytössä, laittomat merkit poistetaan.",
"ReplaceWithSpaceDashSpace": "Korvus: välilyönti-väliviiva-välilyönti", "ReplaceWithSpaceDashSpace": "Korvus: välilyönti-väliviiva-välilyönti",
@@ -1116,7 +1116,7 @@
"RssSyncHelpText": "Aikaväli minuutteina. Arvo nolla kytkee toiminnon pois käytöstä ja lopettaen samalla automaattisen julkaisujen kaappauksen täysin.", "RssSyncHelpText": "Aikaväli minuutteina. Arvo nolla kytkee toiminnon pois käytöstä ja lopettaen samalla automaattisen julkaisujen kaappauksen täysin.",
"InstanceName": "Instanssin nimi", "InstanceName": "Instanssin nimi",
"InstanceNameHelpText": "Instanssin nimi välilehdellä ja järjestelmälokissa", "InstanceNameHelpText": "Instanssin nimi välilehdellä ja järjestelmälokissa",
"AllCollectionsHiddenDueToFilter": "Kaikki kokoelmat on piilotettu aktiivisen suodattimen johdosta.", "AllCollectionsHiddenDueToFilter": "Käytössä oleva suodatin on piilottanut kaikki kokoelmat.",
"Collections": "Kokoelmat", "Collections": "Kokoelmat",
"MonitorMovies": "Valvo elokuvia", "MonitorMovies": "Valvo elokuvia",
"NoCollections": "Kokoelmia ei löytynyt. Aloita lisäämällä uusi elokuva tai tuo joitakin olemassa olevia.", "NoCollections": "Kokoelmia ei löytynyt. Aloita lisäämällä uusi elokuva tai tuo joitakin olemassa olevia.",
@@ -1143,7 +1143,5 @@
"CollectionShowDetailsHelpText": "Näytä kokoelmien tila ja ominaisuudet", "CollectionShowDetailsHelpText": "Näytä kokoelmien tila ja ominaisuudet",
"CollectionShowPostersHelpText": "Näytä kokoelmien julisteet", "CollectionShowPostersHelpText": "Näytä kokoelmien julisteet",
"RottenTomatoesRating": "Tomaattiarvio", "RottenTomatoesRating": "Tomaattiarvio",
"TotalMovies": "Elokuvia yhteensä", "TotalMovies": "Elokuvia yhteensä"
"ApplicationURL": "Sovelluksen URL-osoite",
"ApplicationUrlHelpText": "Sovelluksen ulkoinen URL-osoite, johon sisältyy http(s)://, portti ja URL-perusta."
} }
+1 -6
View File
@@ -1137,10 +1137,5 @@
"UnableToLoadCollections": "Impossible de charger les collections", "UnableToLoadCollections": "Impossible de charger les collections",
"RottenTomatoesRating": "Classement Rotten Tomatoes", "RottenTomatoesRating": "Classement Rotten Tomatoes",
"ShowCollectionDetails": "Afficher l'état de la collection", "ShowCollectionDetails": "Afficher l'état de la collection",
"EditCollection": "Modifier la collection", "EditCollection": "Modifier la collection"
"ApplicationURL": "URL de l'application",
"ApplicationUrlHelpText": "URL externe de cette application, y compris http(s)://, le port et l'URL de base",
"InstanceName": "Nom de l'instance",
"InstanceNameHelpText": "Nom de l'instance dans l'onglet du navigateur et pour le nom d'application dans Syslog",
"CollectionShowPostersHelpText": "Afficher les affiches des éléments de la collection"
} }
+2 -4
View File
@@ -963,7 +963,7 @@
"RadarrUpdated": "A Radarr frissítve", "RadarrUpdated": "A Radarr frissítve",
"RadarrCalendarFeed": "Radarr Naptár Feed", "RadarrCalendarFeed": "Radarr Naptár Feed",
"QueueIsEmpty": "A várakozási sor üres", "QueueIsEmpty": "A várakozási sor üres",
"QualityProfileInUse": "A filmhez, listához vagy gyűjteményhez csatolt minőségi profil nem törölhető", "QualityProfileInUse": "A minőség profil ami már filmhez van rendelve, nem törölhető",
"QualityLimitsHelpText": "A korlátozások automatikusan beállítódnak a film hossza szerint.", "QualityLimitsHelpText": "A korlátozások automatikusan beállítódnak a film hossza szerint.",
"QualitiesHelpText": "A nagyobb minőség a listában jobban preferált. Ugyenazon minőségek a csoportban egyenlőek. Csak a bejelölt minőségek a kívánt minőségek", "QualitiesHelpText": "A nagyobb minőség a listában jobban preferált. Ugyenazon minőségek a csoportban egyenlőek. Csak a bejelölt minőségek a kívánt minőségek",
"Qualities": "Minőségek", "Qualities": "Minőségek",
@@ -1143,7 +1143,5 @@
"ShowPosters": "Poszterek megjelenítése", "ShowPosters": "Poszterek megjelenítése",
"InstanceNameHelpText": "Példánynév a böngésző lapon és a syslog alkalmazás neve", "InstanceNameHelpText": "Példánynév a böngésző lapon és a syslog alkalmazás neve",
"RottenTomatoesRating": "Tomato Értékelés", "RottenTomatoesRating": "Tomato Értékelés",
"TotalMovies": "Összes film", "TotalMovies": "Összes film"
"ApplicationUrlHelpText": "Az alkalmazás külső URL-címe, beleértve a \"http(s)://\"-t, a \"Portot\" és az \"URL-alapot\" is",
"ApplicationURL": "Alkalmazás URL-je"
} }
@@ -1 +0,0 @@
{}
+1 -3
View File
@@ -1105,7 +1105,5 @@
"RssSyncHelpText": "Tussentijd in minuten. Schakel uit met 0 (dit stopt het automatisch ophalen van uitgaves)", "RssSyncHelpText": "Tussentijd in minuten. Schakel uit met 0 (dit stopt het automatisch ophalen van uitgaves)",
"NoCollections": "Geen films gevonden, om te beginnen, voeg een nieuwe film toe of importeer bestaande films.", "NoCollections": "Geen films gevonden, om te beginnen, voeg een nieuwe film toe of importeer bestaande films.",
"Collections": "Collectie", "Collections": "Collectie",
"MonitorMovies": "Bewaak Film", "MonitorMovies": "Bewaak Film"
"ApplicationURL": "Applicatie URL",
"ApplicationUrlHelpText": "De externe URL van deze applicatie inclusief http(s)://,Port en URL base"
} }
+4 -6
View File
@@ -289,7 +289,7 @@
"Presets": "Presety", "Presets": "Presety",
"ProxyType": "Typ proxy", "ProxyType": "Typ proxy",
"PtpOldSettingsCheckMessage": "Następujące indeksatory PassThePopcorn mają przestarzałe ustawienia i należy je zaktualizować: {0}", "PtpOldSettingsCheckMessage": "Następujące indeksatory PassThePopcorn mają przestarzałe ustawienia i należy je zaktualizować: {0}",
"QualityProfileInUse": "Nie można usunąć profilu jakości przypisanego do filmu, listy bądź kolekcji", "QualityProfileInUse": "Nie można usunąć profilu jakości dołączonego do filmu",
"QueueIsEmpty": "Kolejka jest pusta", "QueueIsEmpty": "Kolejka jest pusta",
"RadarrCalendarFeed": "Kanał kalendarza radarowego", "RadarrCalendarFeed": "Kanał kalendarza radarowego",
"RadarrUpdated": "Radarr zaktualizowany", "RadarrUpdated": "Radarr zaktualizowany",
@@ -1060,7 +1060,7 @@
"SelectLanguages": "Wybierz język", "SelectLanguages": "Wybierz język",
"AllCollectionsHiddenDueToFilter": "Wszystkie kolekcje są ukryte ze względu na zastosowany filtr.", "AllCollectionsHiddenDueToFilter": "Wszystkie kolekcje są ukryte ze względu na zastosowany filtr.",
"Collections": "Kolekcje", "Collections": "Kolekcje",
"RssSyncHelpText": "Odstęp w minutach. Ustaw na zero, aby wyłączyć (zatrzyma to wszystkie automatyczne przechwytywanie)", "RssSyncHelpText": "Odstęp w minutach. Ustaw na zero, aby wyłączyć (zatrzyma to wszystkie automatyczne przechwytywanie zwolnień)",
"NoCollections": "Nie znaleziono żadnych filmów. Aby rozpocząć, musisz dodać nowy film lub zaimportować istniejące", "NoCollections": "Nie znaleziono żadnych filmów. Aby rozpocząć, musisz dodać nowy film lub zaimportować istniejące",
"MonitorMovies": "Monitoruj filmy", "MonitorMovies": "Monitoruj filmy",
"ClickToChangeReleaseGroup": "Kliknij, by zmienić grupę wydającą", "ClickToChangeReleaseGroup": "Kliknij, by zmienić grupę wydającą",
@@ -1078,7 +1078,7 @@
"ManualImportSetReleaseGroup": "Import ręczny - podaj nazwę grupy", "ManualImportSetReleaseGroup": "Import ręczny - podaj nazwę grupy",
"Never": "Nigdy", "Never": "Nigdy",
"RemotePathMappingCheckFilesWrongOSPath": "Zdalny klient pobierania {0} zgłosił pliki w {1}, lecz nie jest to poprawna ścieżka {2}. Zmień ustawienia zdalnego mapowania ścieżek i klienta pobierania.", "RemotePathMappingCheckFilesWrongOSPath": "Zdalny klient pobierania {0} zgłosił pliki w {1}, lecz nie jest to poprawna ścieżka {2}. Zmień ustawienia zdalnego mapowania ścieżek i klienta pobierania.",
"RemotePathMappingCheckGenericPermissions": "Klient pobierania {0} umieszcza pobrane pliki w {1}, ale Radarr nie widzi tego folderu. Prawdopodobnie należy zmienić uprawnienia dostępu do folderu.", "RemotePathMappingCheckGenericPermissions": "Klient pobierania {0} umieszcza pobrane pliki w {1}, ale Radarr nie widzi tego folderu. Być może należy zmienić uprawnienia dostępu do folderu/ścieżkę dostępu.",
"RemoveFailed": "Usuń nieudane", "RemoveFailed": "Usuń nieudane",
"RemoveDownloadsAlert": "Ustawienia usuwania zostały przeniesione do ustawień poszczególnych klientów pobierania powyżej.", "RemoveDownloadsAlert": "Ustawienia usuwania zostały przeniesione do ustawień poszczególnych klientów pobierania powyżej.",
"ShowCollectionDetails": "Pokaż stan kolekcji", "ShowCollectionDetails": "Pokaż stan kolekcji",
@@ -1143,7 +1143,5 @@
"CollectionShowDetailsHelpText": "Pokaż status i właściwości kolekcji", "CollectionShowDetailsHelpText": "Pokaż status i właściwości kolekcji",
"CollectionShowOverviewsHelpText": "Pokaż przegląd kolekcji", "CollectionShowOverviewsHelpText": "Pokaż przegląd kolekcji",
"TotalMovies": "Filmów całkowicie", "TotalMovies": "Filmów całkowicie",
"RottenTomatoesRating": "Ocena Tomato", "RottenTomatoesRating": "Ocena Tomato"
"ApplicationUrlHelpText": "Zewnętrzny URL tej aplikacji zawiera http(s)://, port i adres URL",
"ApplicationURL": "Link do aplikacji"
} }
+14 -36
View File
@@ -194,7 +194,7 @@
"IndexerStatusCheckSingleClientMessage": "Indexadores indisponíveis devido a falhas: {0}", "IndexerStatusCheckSingleClientMessage": "Indexadores indisponíveis devido a falhas: {0}",
"IndexerStatusCheckAllClientMessage": "Todos os indexadores estão indisponíveis devido a falhas", "IndexerStatusCheckAllClientMessage": "Todos os indexadores estão indisponíveis devido a falhas",
"IndexersSettingsSummary": "Restrições de versões e de indexadores", "IndexersSettingsSummary": "Restrições de versões e de indexadores",
"IndexerSearchCheckNoInteractiveMessage": "Nenhum indexador disponível com a Pesquisa Interativa ativada, o Radarr não fornecerá nenhum resultado nas Pesquisas Interativas", "IndexerSearchCheckNoInteractiveMessage": "Nenhum indexador disponível com a Pesquisa Interativa ativada, o Radarr não fornecerá nenhum resultado das Pesquisas Interativas",
"IndexerSearchCheckNoAutomaticMessage": "Não há indexadores disponíveis com Pesquisa automática ativada, o Radarr não fornecerá nenhum resultado de pesquisa automática", "IndexerSearchCheckNoAutomaticMessage": "Não há indexadores disponíveis com Pesquisa automática ativada, o Radarr não fornecerá nenhum resultado de pesquisa automática",
"IndexerSearchCheckNoAvailableIndexersMessage": "Todos os indexadores com funcionalidade de pesquisa estão indisponíveis devido a erros recentes do indexador", "IndexerSearchCheckNoAvailableIndexersMessage": "Todos os indexadores com funcionalidade de pesquisa estão indisponíveis devido a erros recentes do indexador",
"Indexers": "Indexadores", "Indexers": "Indexadores",
@@ -378,7 +378,7 @@
"MaximumSizeHelpText": "Tamanho máximo de uma versão a capturar, em MB. Defina como zero para Ilimitado", "MaximumSizeHelpText": "Tamanho máximo de uma versão a capturar, em MB. Defina como zero para Ilimitado",
"MaximumSize": "Tamanho máximo", "MaximumSize": "Tamanho máximo",
"MaximumLimits": "Limites máximos", "MaximumLimits": "Limites máximos",
"Logs": "Registos", "Logs": "Logs",
"LogLevel": "Nível de log", "LogLevel": "Nível de log",
"Local": "Local", "Local": "Local",
"ListUpdateInterval": "Intervalo de atualização da lista", "ListUpdateInterval": "Intervalo de atualização da lista",
@@ -650,7 +650,7 @@
"UpgradeUntilThisQualityIsMetOrExceeded": "Atualizar até que esta qualidade seja alcançada ou superada", "UpgradeUntilThisQualityIsMetOrExceeded": "Atualizar até que esta qualidade seja alcançada ou superada",
"UpgradeAllowedHelpText": "Se desativada, as qualidades não serão atualizadas", "UpgradeAllowedHelpText": "Se desativada, as qualidades não serão atualizadas",
"UpdateScriptPathHelpText": "Caminho para um script personalizado que toma um pacote de atualização extraído e lida com o restante do processo da atualização", "UpdateScriptPathHelpText": "Caminho para um script personalizado que toma um pacote de atualização extraído e lida com o restante do processo da atualização",
"UpdateMechanismHelpText": "Usar o atualizador interno do Radarr ou um script", "UpdateMechanismHelpText": "Usar o atualizador do Radarr ou um script",
"UpdateAutomaticallyHelpText": "Transferir e instalar automaticamente as atualizações. Ainda é possível instalar a partir de Sistema: Atualizações", "UpdateAutomaticallyHelpText": "Transferir e instalar automaticamente as atualizações. Ainda é possível instalar a partir de Sistema: Atualizações",
"UnmonitoredHelpText": "Incluir filmes não monitorados no feed do iCal", "UnmonitoredHelpText": "Incluir filmes não monitorados no feed do iCal",
"TMDBId": "ID do TMDb", "TMDBId": "ID do TMDb",
@@ -684,12 +684,12 @@
"ShowGenres": "Mostrar géneros", "ShowGenres": "Mostrar géneros",
"ShowCertification": "Mostrar certificação", "ShowCertification": "Mostrar certificação",
"ShowAsAllDayEvents": "Mostrar como eventos de dia inteiro", "ShowAsAllDayEvents": "Mostrar como eventos de dia inteiro",
"ShouldMonitorHelpText": "Se filmes ou coleções adicionados por esta lista são adicionados como monitorados", "ShouldMonitorHelpText": "Se ativada, os filmes desta lista serão adicionados e monitorados",
"SettingsRuntimeFormat": "Formato do tempo de execução", "SettingsRuntimeFormat": "Formato do tempo de execução",
"SetPermissionsLinuxHelpTextWarning": "Se você não conhece essa definição, não a altere.", "SetPermissionsLinuxHelpTextWarning": "Se você não conhece essa definição, não a altere.",
"SetPermissionsLinuxHelpText": "Deve-se executar chmod ao importar/renomear ficheiros?", "SetPermissionsLinuxHelpText": "Deve-se executar chmod ao importar/renomear ficheiros?",
"SendAnonymousUsageData": "Enviar dados anônimos de uso", "SendAnonymousUsageData": "Enviar dados anônimos de uso",
"SearchOnAddHelpText": "Pesquisar os filmes desta lista ao adicionar à biblioteca", "SearchOnAddHelpText": "Pesquisar os filmes desta lista ao adicionar ao Radarr",
"RSSSyncInterval": "Intervalo de sincronização RSS", "RSSSyncInterval": "Intervalo de sincronização RSS",
"RetryingDownloadInterp": "Nova tentativa de transferência {0} em {1}", "RetryingDownloadInterp": "Nova tentativa de transferência {0} em {1}",
"RetentionHelpText": "Somente Usenet: defina como zero para retenção ilimitada", "RetentionHelpText": "Somente Usenet: defina como zero para retenção ilimitada",
@@ -706,11 +706,11 @@
"RadarrSupportsCustomConditionsAgainstTheReleasePropertiesBelow": "O Radar suporta condições personalizadas em relação às propriedades das versões abaixo.", "RadarrSupportsCustomConditionsAgainstTheReleasePropertiesBelow": "O Radar suporta condições personalizadas em relação às propriedades das versões abaixo.",
"RadarrSupportsAnyRSSMovieListsAsWellAsTheOneStatedBelow": "O Radarr suporta qualquer lista de filmes em RSS, bem como as demais listadas abaixo.", "RadarrSupportsAnyRSSMovieListsAsWellAsTheOneStatedBelow": "O Radarr suporta qualquer lista de filmes em RSS, bem como as demais listadas abaixo.",
"RadarrSupportsAnyDownloadClient": "O Radarr suporta muitos dos clientes de transferências torrent e usenet mais populares.", "RadarrSupportsAnyDownloadClient": "O Radarr suporta muitos dos clientes de transferências torrent e usenet mais populares.",
"QualityProfileDeleteConfirm": "Tem a certeza que pretende eliminar o perfil de qualidade {0}", "QualityProfileDeleteConfirm": "Tem a certeza que quer eliminar o perfil de qualidade {0}?",
"ProxyUsernameHelpText": "Apenas insira o utilizador e a palavra-passe caso seja requerido. Caso contrário, deixe em branco.", "ProxyUsernameHelpText": "Apenas insira o utilizador e a palavra-passe caso seja requerido. Caso contrário, deixe em branco.",
"ProxyPasswordHelpText": "Apenas insira o utilizador e a palavra-passe caso seja requerido. Caso contrário, deixe em branco.", "ProxyPasswordHelpText": "Apenas insira o utilizador e a palavra-passe caso seja requerido. Caso contrário, deixe em branco.",
"ProxyBypassFilterHelpText": "Utilizar \",\" como separador e \"*.\" como caráter universal para subdomínios", "ProxyBypassFilterHelpText": "Utilizar \",\" como separador e \"*.\" como caráter universal para subdomínios",
"Proper": "Correta", "Proper": "Proper",
"MovieInfoLanguage": "Idioma das informações do filme", "MovieInfoLanguage": "Idioma das informações do filme",
"MaintenanceRelease": "Versão de manutenção: correção de bugs e outras melhorias. Veja o Github Commit History para obter mais detalhes", "MaintenanceRelease": "Versão de manutenção: correção de bugs e outras melhorias. Veja o Github Commit History para obter mais detalhes",
"TorrentDelay": "Atraso para torrents", "TorrentDelay": "Atraso para torrents",
@@ -898,7 +898,7 @@
"PreferTorrent": "Preferir torrent", "PreferTorrent": "Preferir torrent",
"PreferUsenet": "Preferir Usenet", "PreferUsenet": "Preferir Usenet",
"QualitiesHelpText": "Qualidades mais acima na lista têm maior prioridade, as que estão no mesmo grupo têm prioridade igual. Apenas qualidades verificadas são desejadas", "QualitiesHelpText": "Qualidades mais acima na lista têm maior prioridade, as que estão no mesmo grupo têm prioridade igual. Apenas qualidades verificadas são desejadas",
"QualityProfileInUse": "Não é possível eliminar um perfil de qualidade quando associado a um filme, lista ou coleção", "QualityProfileInUse": "Não é possível eliminar um perfil de qualidade anexado a um filme",
"QueueIsEmpty": "A fila está vazia", "QueueIsEmpty": "A fila está vazia",
"RadarrCalendarFeed": "Feed de calendário do Radarr", "RadarrCalendarFeed": "Feed de calendário do Radarr",
"ReleasedMsg": "Filme lançado", "ReleasedMsg": "Filme lançado",
@@ -996,7 +996,7 @@
"SelectMovie": "Selecionar filme", "SelectMovie": "Selecionar filme",
"SelectQuality": "Selecionar qualidade", "SelectQuality": "Selecionar qualidade",
"Small": "Pequeno", "Small": "Pequeno",
"Socks4": "SOCKS4", "Socks4": "Socks4",
"Socks5": "Socks5 (suporte a TOR)", "Socks5": "Socks5 (suporte a TOR)",
"SomeResultsHiddenFilter": "Alguns resultados estão ocultos pelo filtro aplicado", "SomeResultsHiddenFilter": "Alguns resultados estão ocultos pelo filtro aplicado",
"Sunday": "Domingo", "Sunday": "Domingo",
@@ -1050,7 +1050,7 @@
"RemotePathMappingCheckLocalWrongOSPath": "O cliente local {0} coloca as transferências em {1}, mas esse não é um caminho {2} válido. Revise as definições do cliente de transferências.", "RemotePathMappingCheckLocalWrongOSPath": "O cliente local {0} coloca as transferências em {1}, mas esse não é um caminho {2} válido. Revise as definições do cliente de transferências.",
"RemotePathMappingCheckLocalFolderMissing": "O cliente remoto {0} coloca as transferências em {1}, mas esse diretório parece não existir. O mapeamento de caminho remoto está provavelmente ausente ou incorreto.", "RemotePathMappingCheckLocalFolderMissing": "O cliente remoto {0} coloca as transferências em {1}, mas esse diretório parece não existir. O mapeamento de caminho remoto está provavelmente ausente ou incorreto.",
"RemotePathMappingCheckImportFailed": "O Radarr não conseguiu importar um filme. Verifique os ficheiros de log para obter mais informações.", "RemotePathMappingCheckImportFailed": "O Radarr não conseguiu importar um filme. Verifique os ficheiros de log para obter mais informações.",
"RemotePathMappingCheckGenericPermissions": "O cliente de download {0} coloca as transferências em {1}, mas o Radarr não consegue ver essa pasta. Pode ser necessário ajustar as permissões da pasta.", "RemotePathMappingCheckGenericPermissions": "O cliente {0} coloca as transferências em {1}, mas o Radarr não pode ver esse diretório. Pode ser necessário ajustar as permissões da pasta.",
"RemotePathMappingCheckFolderPermissions": "O Radarr pode ver, mas não pode acessar ao diretório de transferências {0}. Provável erro de permissões.", "RemotePathMappingCheckFolderPermissions": "O Radarr pode ver, mas não pode acessar ao diretório de transferências {0}. Provável erro de permissões.",
"RemotePathMappingCheckFilesWrongOSPath": "O cliente de transferências remoto {0} relatou ficheiros em {1}, mas este não é um caminho {2} válido. Revise os mapeamentos de caminho remoto e as definições do cliente de transferências.", "RemotePathMappingCheckFilesWrongOSPath": "O cliente de transferências remoto {0} relatou ficheiros em {1}, mas este não é um caminho {2} válido. Revise os mapeamentos de caminho remoto e as definições do cliente de transferências.",
"RemotePathMappingCheckFilesLocalWrongOSPath": "O cliente de transferências local {0} relatou ficheiros em {1}, mas este não é um caminho {2} válido. Revise as definições do cliente de transferências.", "RemotePathMappingCheckFilesLocalWrongOSPath": "O cliente de transferências local {0} relatou ficheiros em {1}, mas este não é um caminho {2} válido. Revise as definições do cliente de transferências.",
@@ -1111,39 +1111,17 @@
"SetReleaseGroup": "Definir Grupo de Lançamento", "SetReleaseGroup": "Definir Grupo de Lançamento",
"Started": "Começado", "Started": "Começado",
"Waiting": "À espera", "Waiting": "À espera",
"Database": "Base de dados", "Database": "base de dados",
"AllCollectionsHiddenDueToFilter": "Todos os filmes estão ocultos devido ao filtro aplicado.", "AllCollectionsHiddenDueToFilter": "Todos os filmes estão ocultos devido ao filtro aplicado.",
"Collections": "Coleção", "Collections": "Coleção",
"RssSyncHelpText": "Intervalo em minutos. Defina como zero para desativar (isso parará toda a captura automática)", "RssSyncHelpText": "Intervalo em minutos. Defina como zero para desativar (isso parará toda a captura automática)",
"MonitorMovies": "Monitorizar filmes", "MonitorMovies": "Monitorar filme",
"NoCollections": "Nenhuma coleção encontrada. Para iniciar, poderás adicionar um novo filme ou importar alguns já existentes", "NoCollections": "Nenhum filme encontrado. Para começar, adiciona um novo filme ou importa alguns já existentes.",
"MovieAndCollection": "Filme e Coleção", "MovieAndCollection": "Filme e Coleção",
"CollectionsSelectedInterp": "{0} Coleções Selecionadas", "CollectionsSelectedInterp": "{0} Coleções Selecionadas",
"EditCollection": "Editar Coleção", "EditCollection": "Editar Coleção",
"ChooseImportMode": "Selecionar Modo de Importação", "ChooseImportMode": "Selecionar Modo de Importação",
"InstanceName": "Nome da Instancia", "InstanceName": "Nome da Instancia",
"CollectionOptions": "Opções de Coleção", "CollectionOptions": "Opções de Coleção",
"CollectionShowDetailsHelpText": "Mostrar estado da coleção e proprieades", "CollectionShowDetailsHelpText": "Mostrar estado da coleção e proprieades"
"RottenTomatoesRating": "Avaliação Tomato",
"SearchOnAddCollectionHelpText": "Procurar por filmes nesta coleção quando adicionado a uma biblioteca",
"OnMovieAdded": "Quando adicionado filme",
"OnMovieAddedHelpText": "Acção a aplicar quando o filme for adicionado",
"RefreshCollections": "Refrescar coleções",
"RefreshMonitoredIntervalHelpText": "Frequência de atualização da monitorização de downloads dos clientes de download, mínimo 1 minuto",
"ScrollMovies": "Rolar filmes",
"ShowOverview": "Mostrar visão global",
"ShowPosters": "Mostrar posteres",
"UnableToLoadCollections": "Impossível carregar coleções",
"TotalMovies": "Total de filmes",
"MonitorCollection": "Monitorizar coleção",
"MonitoredCollectionHelpText": "Monitorizar para automaticamente adicionar filmes desta coleção à biblioteca",
"InstanceNameHelpText": "Nome da instância na aba e nome da aplicação para Syslog",
"ApplicationURL": "URL da aplicação",
"ApplicationUrlHelpText": "O URL desta aplicação externa, incluindo http(s)://, porta e URL base",
"CollectionShowOverviewsHelpText": "Mostrar visão global da coleção",
"CollectionShowPostersHelpText": "Mostrar os posteres da coleção",
"MovieCollectionMissingRoot": "Falta a pasta base para a coleção de filmes: {0}",
"MovieCollectionMultipleMissingRoots": "Faltam várias pastas base para as coleções de filmes: {0}",
"MovieOnly": "Apenas filme",
"ShowCollectionDetails": "Mostrar estado da coleção"
} }
@@ -19,7 +19,7 @@
"IndexerStatusCheckAllClientMessage": "Todos os indexadores estão indisponíveis devido a falhas", "IndexerStatusCheckAllClientMessage": "Todos os indexadores estão indisponíveis devido a falhas",
"IndexersSettingsSummary": "Indexadores e restrições de lançamento", "IndexersSettingsSummary": "Indexadores e restrições de lançamento",
"IndexerSettings": "Configurações do indexador", "IndexerSettings": "Configurações do indexador",
"IndexerSearchCheckNoInteractiveMessage": "Nenhum indexador disponível com a Pesquisa interativa ativada, o Radarr não fornecerá nenhum resultado de pesquisa interativa", "IndexerSearchCheckNoInteractiveMessage": "Nenhum indexador disponível com a Pesquisa interativa ativada, o Radarr não fornecerá nenhum resultado de pesquisa interativo",
"IndexerSearchCheckNoAvailableIndexersMessage": "Todos os indexadores com capacidade de pesquisa 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",
"IndexerSearchCheckNoAutomaticMessage": "Nenhum indexador disponível com a Pesquisa automática habilitada, o Radarr não fornecerá nenhum resultado de pesquisa automática", "IndexerSearchCheckNoAutomaticMessage": "Nenhum indexador disponível com a Pesquisa automática habilitada, o Radarr não fornecerá nenhum resultado de pesquisa automática",
"Indexers": "Indexadores", "Indexers": "Indexadores",
@@ -846,7 +846,7 @@
"QualitySettingsSummary": "Tamanhos de qualidade e nomenclatura", "QualitySettingsSummary": "Tamanhos de qualidade e nomenclatura",
"QualitySettings": "Configurações de qualidade", "QualitySettings": "Configurações de qualidade",
"QualityProfiles": "Perfis de qualidade", "QualityProfiles": "Perfis de qualidade",
"QualityProfileInUse": "Não é possível excluir um perfil de qualidade anexado a um filme, lista ou coleção", "QualityProfileInUse": "Não é possível excluir um perfil de qualidade que está vinculado a um filme",
"QualityProfileDeleteConfirm": "Tem certeza que deseja excluir o perfil de qualidade {0}", "QualityProfileDeleteConfirm": "Tem certeza que deseja excluir o perfil de qualidade {0}",
"QualityProfile": "Perfil de qualidade", "QualityProfile": "Perfil de qualidade",
"QualityOrLangCutoffHasNotBeenMet": "Limite de qualidade ou de idioma não atingido", "QualityOrLangCutoffHasNotBeenMet": "Limite de qualidade ou de idioma não atingido",
@@ -928,8 +928,8 @@
"OnImport": "Ao importar", "OnImport": "Ao importar",
"OnHealthIssueHelpText": "Ao ter problema de integridade", "OnHealthIssueHelpText": "Ao ter problema de integridade",
"OnHealthIssue": "Em Problema de Saúde", "OnHealthIssue": "Em Problema de Saúde",
"OnGrabHelpText": "Em Espera", "OnGrabHelpText": "Ao obter",
"OnGrab": "Em Espera", "OnGrab": "Ao Baixar",
"OnDownloadHelpText": "Ao importar", "OnDownloadHelpText": "Ao importar",
"Ok": "Ok", "Ok": "Ok",
"OAuthPopupMessage": "Os pop-ups estão bloqueados em seu navegador", "OAuthPopupMessage": "Os pop-ups estão bloqueados em seu navegador",
@@ -1117,8 +1117,8 @@
"InstanceName": "Nome da instância", "InstanceName": "Nome da instância",
"InstanceNameHelpText": "Nome da instância na guia e para o nome do aplicativo Syslog", "InstanceNameHelpText": "Nome da instância na guia e para o nome do aplicativo Syslog",
"AllCollectionsHiddenDueToFilter": "Todos os filmes estão ocultos devido ao filtro aplicado.", "AllCollectionsHiddenDueToFilter": "Todos os filmes estão ocultos devido ao filtro aplicado.",
"Collections": "Coleções", "Collections": "Coleção",
"MonitorMovies": "Monitorar Filmes", "MonitorMovies": "Monitorar filme",
"NoCollections": "Nenhum filme encontrado. Para começar, adicione um novo filme ou importe alguns existentes", "NoCollections": "Nenhum filme encontrado. Para começar, adicione um novo filme ou importe alguns existentes",
"MovieOnly": "Somente Filme", "MovieOnly": "Somente Filme",
"UnableToLoadCollections": "Não foi possível carregar as coleções", "UnableToLoadCollections": "Não foi possível carregar as coleções",
@@ -1143,7 +1143,5 @@
"CollectionShowOverviewsHelpText": "Mostrar visão geral da coleção", "CollectionShowOverviewsHelpText": "Mostrar visão geral da coleção",
"CollectionShowPostersHelpText": "Mostrar pôsteres de itens da coleção", "CollectionShowPostersHelpText": "Mostrar pôsteres de itens da coleção",
"RottenTomatoesRating": "Avaliação Tomato", "RottenTomatoesRating": "Avaliação Tomato",
"TotalMovies": "Total de Filmes", "TotalMovies": "Total de Filmes"
"ApplicationURL": "URL da Aplicação",
"ApplicationUrlHelpText": "O URL externa deste aplicativo, incluindo http(s)://, porta e base de URL"
} }
+35 -35
View File
@@ -44,7 +44,7 @@
"Activity": "Activitate", "Activity": "Activitate",
"Actions": "Acțiuni", "Actions": "Acțiuni",
"About": "Despre", "About": "Despre",
"IndexerStatusCheckAllClientMessage": "Niciun indexator nu este disponibil datorită erorilor", "IndexerStatusCheckAllClientMessage": "Niciun indexator nu este disponibil datorită eșuărilor",
"IndexersSettingsSummary": "Restricții pentru indexatori și apariții", "IndexersSettingsSummary": "Restricții pentru indexatori și apariții",
"IndexerSearchCheckNoInteractiveMessage": "Niciun indexator cu Căutare interactivă nu este activ, Radarr nu va afișa niciun rezultat de căutare interactivă", "IndexerSearchCheckNoInteractiveMessage": "Niciun indexator cu Căutare interactivă nu este activ, Radarr nu va afișa niciun rezultat de căutare interactivă",
"IndexerSearchCheckNoAvailableIndexersMessage": "Toți indexatorii ce suportă căutare sunt indisponibili temporar datorită erorilor", "IndexerSearchCheckNoAvailableIndexersMessage": "Toți indexatorii ce suportă căutare sunt indisponibili temporar datorită erorilor",
@@ -62,11 +62,11 @@
"Ignored": "Ignorat", "Ignored": "Ignorat",
"iCalLink": "Legătură iCal", "iCalLink": "Legătură iCal",
"Host": "Gazdă", "Host": "Gazdă",
"History": "Istoric", "History": "Istorie",
"HideAdvanced": "Ascunde Avansat", "HideAdvanced": "Ascunde Avansat",
"Health": "Sănătate", "Health": "Sănătate",
"GrabSelected": "Prinderea selectată", "GrabSelected": "Prinderea selectată",
"Grabbed": "În curs de descărcare", "Grabbed": "Prins",
"Genres": "Genuri", "Genres": "Genuri",
"GeneralSettingsSummary": "Port, SSL, utilizator/parolă, proxy, statistici și actualizări", "GeneralSettingsSummary": "Port, SSL, utilizator/parolă, proxy, statistici și actualizări",
"General": "General", "General": "General",
@@ -76,7 +76,7 @@
"Folder": "Dosar", "Folder": "Dosar",
"Filter": "Filtru", "Filter": "Filtru",
"Files": "Fișiere", "Files": "Fișiere",
"Filename": "Numele fișierului", "Filename": "Numele Fișierului",
"FileManagement": "Administrarea de fișiere", "FileManagement": "Administrarea de fișiere",
"FailedDownloadHandling": "Procesarea descărcării a eșuat", "FailedDownloadHandling": "Procesarea descărcării a eșuat",
"Failed": "Eșuat", "Failed": "Eșuat",
@@ -84,7 +84,7 @@
"Events": "Evenimente", "Events": "Evenimente",
"Edit": "Editează", "Edit": "Editează",
"Downloaded": "Descărcat", "Downloaded": "Descărcat",
"DownloadClientStatusCheckSingleClientMessage": "Clienții de descărcare sunt indisponibili datorită erorilor: {0}", "DownloadClientStatusCheckSingleClientMessage": "Clienții de descărcare sunt indisponibili datorită erorii: {0}",
"DownloadClientStatusCheckAllClientMessage": "Toți clienții de descărcare sunt indisponibili datorită erorilor", "DownloadClientStatusCheckAllClientMessage": "Toți clienții de descărcare sunt indisponibili datorită erorilor",
"ProfilesSettingsSummary": "Calitate, Limbă și Profile de Întârziere", "ProfilesSettingsSummary": "Calitate, Limbă și Profile de Întârziere",
"Profiles": "Profile", "Profiles": "Profile",
@@ -143,9 +143,9 @@
"Language": "Limbă", "Language": "Limbă",
"KeyboardShortcuts": "Scurtături din tastatură", "KeyboardShortcuts": "Scurtături din tastatură",
"Info": "Info", "Info": "Info",
"IndexerStatusCheckSingleClientMessage": "Indexatoare indisponibile datorită erorilor: {0}", "IndexerStatusCheckSingleClientMessage": "Indexator indisponibil datorită erorilor: {0}",
"ImportExistingMovies": "Importă Filme Existente", "ImportExistingMovies": "Importă Filme Existente",
"HealthNoIssues": "Nicio problemă de configurare", "HealthNoIssues": "Nicio problemă în configurare",
"HardlinkCopyFiles": "Hardlink/Copiază Fișiere", "HardlinkCopyFiles": "Hardlink/Copiază Fișiere",
"Extension": "Extensie", "Extension": "Extensie",
"Error": "Eroare", "Error": "Eroare",
@@ -168,7 +168,7 @@
"QualityProfile": "Profil de Calitate", "QualityProfile": "Profil de Calitate",
"QualityDefinitions": "Definiții de calitate", "QualityDefinitions": "Definiții de calitate",
"Quality": "Calitate", "Quality": "Calitate",
"PtpOldSettingsCheckMessage": "Următoarele indexatoare PassThePopcorn au setări depreciate și ar trebui actualizate: {0}", "PtpOldSettingsCheckMessage": "Următorul indexer PassThePopcorn are setări depreciate și ar trebui actualizate: {0}",
"ProxyCheckResolveIpMessage": "Nu am putut găsi adresa IP pentru Hostul Proxy Configurat {0}", "ProxyCheckResolveIpMessage": "Nu am putut găsi adresa IP pentru Hostul Proxy Configurat {0}",
"ProxyCheckFailedToTestMessage": "Nu am putut testa proxy: {0}", "ProxyCheckFailedToTestMessage": "Nu am putut testa proxy: {0}",
"ProxyCheckBadRequestMessage": "Testul proxy a eșuat. StatusCode: {0}", "ProxyCheckBadRequestMessage": "Testul proxy a eșuat. StatusCode: {0}",
@@ -260,7 +260,7 @@
"Queue": "Coadă", "Queue": "Coadă",
"QualitySettingsSummary": "Calitate - mărimi și denumiri", "QualitySettingsSummary": "Calitate - mărimi și denumiri",
"AutoRedownloadFailedHelpText": "Căutați automat și încercați să descărcați o versiune diferită", "AutoRedownloadFailedHelpText": "Căutați automat și încercați să descărcați o versiune diferită",
"BackupIntervalHelpText": "Interval între crearea copiile de siguranță automate", "BackupIntervalHelpText": "Interval între copiile de rezervă automate",
"ApplyTagsHelpTexts1": "Cum se aplică etichete filmelor selectate", "ApplyTagsHelpTexts1": "Cum se aplică etichete filmelor selectate",
"CustomFormatUnknownCondition": "Stare necunoscută pentru formatul personalizat „{0}”", "CustomFormatUnknownCondition": "Stare necunoscută pentru formatul personalizat „{0}”",
"QualitySettings": "Setări de calitate", "QualitySettings": "Setări de calitate",
@@ -337,7 +337,7 @@
"ThisCannotBeCancelled": "Acest lucru nu poate fi anulat odată pornit fără a reporni Radarr.", "ThisCannotBeCancelled": "Acest lucru nu poate fi anulat odată pornit fără a reporni Radarr.",
"TorrentDelayHelpText": "Întârziați în câteva minute pentru a aștepta înainte de a apuca un torent", "TorrentDelayHelpText": "Întârziați în câteva minute pentru a aștepta înainte de a apuca un torent",
"Trigger": "Declanșator", "Trigger": "Declanșator",
"UnableToAddANewIndexerPleaseTryAgain": "Nu se poate adăuga un nou indexator, vă rugăm să încercați din nou.", "UnableToAddANewIndexerPleaseTryAgain": "Imposibil de adăugat un nou indexer, încercați din nou.",
"UnableToAddANewNotificationPleaseTryAgain": "Imposibil de adăugat o nouă notificare, încercați din nou.", "UnableToAddANewNotificationPleaseTryAgain": "Imposibil de adăugat o nouă notificare, încercați din nou.",
"UnableToAddANewRemotePathMappingPleaseTryAgain": "Imposibil de adăugat o nouă mapare a căilor la distanță, încercați din nou.", "UnableToAddANewRemotePathMappingPleaseTryAgain": "Imposibil de adăugat o nouă mapare a căilor la distanță, încercați din nou.",
"UnableToImportCheckLogs": "Descărcat - Imposibil de importat: verificați jurnalele pentru detalii", "UnableToImportCheckLogs": "Descărcat - Imposibil de importat: verificați jurnalele pentru detalii",
@@ -369,7 +369,7 @@
"Importing": "Importând", "Importing": "Importând",
"AcceptConfirmationModal": "Acceptați Modul de confirmare", "AcceptConfirmationModal": "Acceptați Modul de confirmare",
"LastExecution": "Ultima executare", "LastExecution": "Ultima executare",
"DBMigration": "Migrarea BD", "DBMigration": "Migrarea DB",
"Manual": "Manual", "Manual": "Manual",
"OnHealthIssue": "Cu privire la problema sănătății", "OnHealthIssue": "Cu privire la problema sănătății",
"OnImport": "La import", "OnImport": "La import",
@@ -388,8 +388,8 @@
"AvailabilityDelayHelpText": "Suma de timp înainte sau după data disponibilă pentru căutarea filmului", "AvailabilityDelayHelpText": "Suma de timp înainte sau după data disponibilă pentru căutarea filmului",
"Announced": "Anunțat", "Announced": "Anunțat",
"AddRemotePathMapping": "Adăugați maparea căilor la distanță", "AddRemotePathMapping": "Adăugați maparea căilor la distanță",
"BackupRetentionHelpText": "Copiile de siguranță automate mai vechi decât perioada de păstrare vor fi curățate automat", "BackupRetentionHelpText": "Copiile de rezervă automate mai vechi de perioada de păstrare vor fi curățate automat",
"Backups": "Copii de siguranță", "Backups": "Copii de rezervă",
"BeforeUpdate": "Înainte de actualizare", "BeforeUpdate": "Înainte de actualizare",
"BindAddress": "Adresa de legare", "BindAddress": "Adresa de legare",
"CancelProcessing": "Anulați procesarea", "CancelProcessing": "Anulați procesarea",
@@ -404,7 +404,7 @@
"DeleteMovieFolderLabel": "Ștergeți dosarul filmului", "DeleteMovieFolderLabel": "Ștergeți dosarul filmului",
"DockerUpdater": "actualizați containerul de andocare pentru a primi actualizarea", "DockerUpdater": "actualizați containerul de andocare pentru a primi actualizarea",
"EditGroups": "Editați grupurile", "EditGroups": "Editați grupurile",
"EditIndexer": "Editați indexator", "EditIndexer": "Editați Indexer",
"Enabled": "Activat", "Enabled": "Activat",
"ExcludeMovie": "Excludeți filmul", "ExcludeMovie": "Excludeți filmul",
"ExcludeTitle": "Excludeți {0}? Acest lucru îl va împiedica pe Radarr să adauge automat prin sincronizarea listei.", "ExcludeTitle": "Excludeți {0}? Acest lucru îl va împiedica pe Radarr să adauge automat prin sincronizarea listei.",
@@ -413,7 +413,7 @@
"HttpHttps": "HTTP (S)", "HttpHttps": "HTTP (S)",
"ICalFeed": "Feed iCal", "ICalFeed": "Feed iCal",
"ICalHttpUrlHelpText": "Copiați această adresă URL către clienții dvs. sau faceți clic pentru a vă abona dacă browserul dvs. acceptă webcal", "ICalHttpUrlHelpText": "Copiați această adresă URL către clienții dvs. sau faceți clic pentru a vă abona dacă browserul dvs. acceptă webcal",
"Add": "Adaugă", "Add": "Adăuga",
"AddCustomFormat": "Adăugați format personalizat", "AddCustomFormat": "Adăugați format personalizat",
"AddDelayProfile": "Adăugați un profil de întârziere", "AddDelayProfile": "Adăugați un profil de întârziere",
"AddDownloadClient": "Adăugați client de descărcare", "AddDownloadClient": "Adăugați client de descărcare",
@@ -440,7 +440,7 @@
"ChmodFolderHelpTextWarning": "Acest lucru funcționează numai dacă utilizatorul care rulează Radarr este proprietarul fișierului. Este mai bine să vă asigurați că clientul de descărcare setează corect permisiunile.", "ChmodFolderHelpTextWarning": "Acest lucru funcționează numai dacă utilizatorul care rulează Radarr este proprietarul fișierului. Este mai bine să vă asigurați că clientul de descărcare setează corect permisiunile.",
"ChmodGroup": "chmod Group", "ChmodGroup": "chmod Group",
"ChmodGroupHelpText": "Numele grupului sau gid. Utilizați gid pentru sistemele de fișiere la distanță.", "ChmodGroupHelpText": "Numele grupului sau gid. Utilizați gid pentru sistemele de fișiere la distanță.",
"DeleteBackup": "Ștergeți copie de siguranță", "DeleteBackup": "Ștergeți Backup",
"DeleteCustomFormat": "Ștergeți formatul personalizat", "DeleteCustomFormat": "Ștergeți formatul personalizat",
"DeletedMsg": "Filmul a fost șters din TMDb", "DeletedMsg": "Filmul a fost șters din TMDb",
"DeleteDownloadClient": "Ștergeți clientul de descărcare", "DeleteDownloadClient": "Ștergeți clientul de descărcare",
@@ -448,12 +448,12 @@
"Connection": "Conexiuni", "Connection": "Conexiuni",
"CantFindMovie": "De ce nu-mi găsesc filmul?", "CantFindMovie": "De ce nu-mi găsesc filmul?",
"CertificateValidationHelpText": "Modificați cât de strictă este validarea certificării HTTPS", "CertificateValidationHelpText": "Modificați cât de strictă este validarea certificării HTTPS",
"AddIndexer": "Adăugați Indexator", "AddIndexer": "Adăugați Indexer",
"AutomaticSearch": "Căutare automată", "AutomaticSearch": "Căutare automată",
"ClientPriority": "Prioritatea clientului", "ClientPriority": "Prioritatea clientului",
"CertificationCountry": "Țara certificării", "CertificationCountry": "Țara certificării",
"CertificationCountryHelpText": "Selectați Țara pentru certificări de film", "CertificationCountryHelpText": "Selectați Țara pentru certificări de film",
"HomePage": "Pagina principală", "HomePage": "Pagina principala",
"IncludeHealthWarningsHelpText": "Includeți avertismente de sănătate", "IncludeHealthWarningsHelpText": "Includeți avertismente de sănătate",
"InvalidFormat": "Format invalid", "InvalidFormat": "Format invalid",
"LastDuration": "lastDuration", "LastDuration": "lastDuration",
@@ -508,7 +508,7 @@
"ShowGenres": "Afișați genurile", "ShowGenres": "Afișați genurile",
"SuggestTranslationChange": "Sugerează modificarea traducerii", "SuggestTranslationChange": "Sugerează modificarea traducerii",
"TestAllClients": "Testați toți clienții", "TestAllClients": "Testați toți clienții",
"TestAllIndexers": "Testați toate indexatoarele", "TestAllIndexers": "Testați toți indexatorii",
"TestAllLists": "Testați toate listele", "TestAllLists": "Testați toate listele",
"Queued": "În așteptare", "Queued": "În așteptare",
"TMDb": "TMDb", "TMDb": "TMDb",
@@ -524,8 +524,8 @@
"DetailedProgressBarHelpText": "Afișați textul pe bara de progres", "DetailedProgressBarHelpText": "Afișați textul pe bara de progres",
"EnableSSL": "Activați SSL", "EnableSSL": "Activați SSL",
"IncludeCustomFormatWhenRenaming": "Includeți format personalizat la redenumire", "IncludeCustomFormatWhenRenaming": "Includeți format personalizat la redenumire",
"IndexerLongTermStatusCheckAllClientMessage": "Toți indexatorii sunt indisponibili datorită erorilor de mai mult de 6 ore", "IndexerLongTermStatusCheckAllClientMessage": "Toți indexatorii nu sunt disponibili din cauza unor eșecuri de mai mult de 6 ore",
"IndexerLongTermStatusCheckSingleClientMessage": "Indexatori indisponibili datorită erorilor de mai mult de 6 ore: {0}", "IndexerLongTermStatusCheckSingleClientMessage": "Indexatori indisponibili din cauza unor eșecuri de mai mult de 6 ore: {0}",
"LoadingMovieCreditsFailed": "Încărcarea creditelor filmului nu a reușit", "LoadingMovieCreditsFailed": "Încărcarea creditelor filmului nu a reușit",
"LoadingMovieExtraFilesFailed": "Încărcarea fișierelor suplimentare ale filmului nu a reușit", "LoadingMovieExtraFilesFailed": "Încărcarea fișierelor suplimentare ale filmului nu a reușit",
"LoadingMovieFilesFailed": "Încărcarea fișierelor film a eșuat", "LoadingMovieFilesFailed": "Încărcarea fișierelor film a eșuat",
@@ -559,7 +559,7 @@
"CleanLibraryLevel": "Nivel de bibliotecă curat", "CleanLibraryLevel": "Nivel de bibliotecă curat",
"BranchUpdate": "Sucursală de utilizat pentru actualizarea Radarr", "BranchUpdate": "Sucursală de utilizat pentru actualizarea Radarr",
"BranchUpdateMechanism": "Ramură utilizată de mecanismul extern de actualizare", "BranchUpdateMechanism": "Ramură utilizată de mecanismul extern de actualizare",
"BypassProxyForLocalAddresses": "Nu folosiți Proxy pentru adrese locale", "BypassProxyForLocalAddresses": "Bypass Proxy pentru adrese locale",
"MovieTitleHelpText": "Titlul filmului de exclus (poate avea orice sens)", "MovieTitleHelpText": "Titlul filmului de exclus (poate avea orice sens)",
"Local": "Local", "Local": "Local",
"MovieYear": "Anul filmului", "MovieYear": "Anul filmului",
@@ -641,7 +641,7 @@
"ClickToChangeQuality": "Faceți clic pentru a schimba calitatea", "ClickToChangeQuality": "Faceți clic pentru a schimba calitatea",
"CloneFormatTag": "Etichetă de format clonare", "CloneFormatTag": "Etichetă de format clonare",
"CloneIndexer": "Clonă Indexer", "CloneIndexer": "Clonă Indexer",
"CloneProfile": "Clonați profil", "CloneProfile": "Profil de clonare",
"CloseCurrentModal": "Închideți modul curent", "CloseCurrentModal": "Închideți modul curent",
"ColonReplacement": "Înlocuirea colonului", "ColonReplacement": "Înlocuirea colonului",
"ColonReplacementFormatHelpText": "Schimbați modul în care Radarr gestionează înlocuirea colonului", "ColonReplacementFormatHelpText": "Schimbați modul în care Radarr gestionează înlocuirea colonului",
@@ -666,7 +666,7 @@
"DefaultDelayProfile": "Acesta este profilul implicit. Se aplică tuturor filmelor care nu au un profil explicit.", "DefaultDelayProfile": "Acesta este profilul implicit. Se aplică tuturor filmelor care nu au un profil explicit.",
"DelayingDownloadUntilInterp": "Întârzierea descărcării până la {0} la {1}", "DelayingDownloadUntilInterp": "Întârzierea descărcării până la {0} la {1}",
"DelayProfile": "Profile de întârziere", "DelayProfile": "Profile de întârziere",
"DeleteBackupMessageText": "Sigur doriți să ștergeți copia de siguranță „{0}”?", "DeleteBackupMessageText": "Sigur doriți să ștergeți copia de rezervă „{0}”?",
"DeleteDelayProfile": "Ștergeți profilul de întârziere", "DeleteDelayProfile": "Ștergeți profilul de întârziere",
"DeleteDownloadClientMessageText": "Sigur doriți să ștergeți clientul de descărcare „{0}”?", "DeleteDownloadClientMessageText": "Sigur doriți să ștergeți clientul de descărcare „{0}”?",
"DeleteEmptyFolders": "Ștergeți folderele goale", "DeleteEmptyFolders": "Ștergeți folderele goale",
@@ -686,13 +686,13 @@
"DestinationPath": "Calea de destinație", "DestinationPath": "Calea de destinație",
"DestinationRelativePath": "Calea relativă a destinației", "DestinationRelativePath": "Calea relativă a destinației",
"DetailedProgressBar": "Bara de progres detaliată", "DetailedProgressBar": "Bara de progres detaliată",
"Discord": "Discord", "Discord": "Discordie",
"Docker": "Docker", "Docker": "Docher",
"Donations": "Donații", "Donations": "Donații",
"DoneEditingGroups": "Efectuat editarea grupurilor", "DoneEditingGroups": "Efectuat editarea grupurilor",
"DoNotPrefer": "Nu preferați", "DoNotPrefer": "Nu preferați",
"DoNotUpgradeAutomatically": "Nu faceți upgrade automat", "DoNotUpgradeAutomatically": "Nu faceți upgrade automat",
"DownloadClientSettings": "Setări client de descărcare", "DownloadClientSettings": "Descărcați setările clientului",
"DownloadClientUnavailable": "Clientul de descărcare nu este disponibil", "DownloadClientUnavailable": "Clientul de descărcare nu este disponibil",
"DownloadedAndMonitored": "Descărcat (monitorizat)", "DownloadedAndMonitored": "Descărcat (monitorizat)",
"DownloadedButNotMonitored": "Descărcat (fără monitorizare)", "DownloadedButNotMonitored": "Descărcat (fără monitorizare)",
@@ -708,10 +708,10 @@
"EditPerson": "Editați persoana", "EditPerson": "Editați persoana",
"EditQualityProfile": "Editați profilul de calitate", "EditQualityProfile": "Editați profilul de calitate",
"EditRestriction": "Editați restricția", "EditRestriction": "Editați restricția",
"Enable": "Activați", "Enable": "Permite",
"EnableAutoHelpText": "Dacă este activată, Filme vor fi adăugate automat la Radarr din această listă", "EnableAutoHelpText": "Dacă este activată, Filme vor fi adăugate automat la Radarr din această listă",
"EnableAutomaticAdd": "Activați adăugarea automată", "EnableAutomaticAdd": "Activați adăugarea automată",
"EnableAutomaticSearch": "Activați căutarea automată", "EnableAutomaticSearch": "Activați Căutarea automată",
"EnableAutomaticSearchHelpText": "Va fi utilizat atunci când căutările automate sunt efectuate prin interfața de utilizare sau de către Radarr", "EnableAutomaticSearchHelpText": "Va fi utilizat atunci când căutările automate sunt efectuate prin interfața de utilizare sau de către Radarr",
"EnableColorImpairedMode": "Activați modul afectat de culoare", "EnableColorImpairedMode": "Activați modul afectat de culoare",
"EnableColorImpairedModeHelpText": "Stil modificat pentru a permite utilizatorilor cu deficiențe de culoare să distingă mai bine informațiile codificate prin culoare", "EnableColorImpairedModeHelpText": "Stil modificat pentru a permite utilizatorilor cu deficiențe de culoare să distingă mai bine informațiile codificate prin culoare",
@@ -722,7 +722,7 @@
"EnableMediaInfoHelpText": "Extrageți informații video, cum ar fi rezoluția, runtime și informații despre codec din fișiere. Acest lucru necesită ca Radarr să citească părți ale fișierului care pot provoca activitate ridicată pe disc sau rețea în timpul scanărilor.", "EnableMediaInfoHelpText": "Extrageți informații video, cum ar fi rezoluția, runtime și informații despre codec din fișiere. Acest lucru necesită ca Radarr să citească părți ale fișierului care pot provoca activitate ridicată pe disc sau rețea în timpul scanărilor.",
"EnableRSS": "Activați RSS", "EnableRSS": "Activați RSS",
"EnableSslHelpText": " Necesită repornirea în funcție de administrator pentru a intra în vigoare", "EnableSslHelpText": " Necesită repornirea în funcție de administrator pentru a intra în vigoare",
"Ended": "Finalizat", "Ended": "Încheiat",
"ErrorLoadingContents": "Eroare la încărcarea conținutului", "ErrorLoadingContents": "Eroare la încărcarea conținutului",
"ErrorLoadingPreviews": "Eroare la încărcarea previzualizărilor", "ErrorLoadingPreviews": "Eroare la încărcarea previzualizărilor",
"ErrorRestoringBackup": "Eroare la restaurarea copiei de rezervă", "ErrorRestoringBackup": "Eroare la restaurarea copiei de rezervă",
@@ -751,7 +751,7 @@
"FollowPerson": "Urmărește persoana", "FollowPerson": "Urmărește persoana",
"ForMoreInformationOnTheIndividualDownloadClients": "Pentru mai multe informații despre clienții individuali de descărcare, faceți clic pe butoanele de informații.", "ForMoreInformationOnTheIndividualDownloadClients": "Pentru mai multe informații despre clienții individuali de descărcare, faceți clic pe butoanele de informații.",
"ForMoreInformationOnTheIndividualIndexers": "Pentru mai multe informații despre indexatorii individuali, faceți clic pe butoanele de informații.", "ForMoreInformationOnTheIndividualIndexers": "Pentru mai multe informații despre indexatorii individuali, faceți clic pe butoanele de informații.",
"GeneralSettings": "Setări generale", "GeneralSettings": "setari generale",
"Global": "Global", "Global": "Global",
"GoToInterp": "Accesați {0}", "GoToInterp": "Accesați {0}",
"Grab": "Apuca", "Grab": "Apuca",
@@ -776,7 +776,7 @@
"IncludeRecommendationsHelpText": "Includeți filmele recomandate de Radarr în vizualizarea descoperire", "IncludeRecommendationsHelpText": "Includeți filmele recomandate de Radarr în vizualizarea descoperire",
"IncludeUnmonitored": "Includeți Unmonitored", "IncludeUnmonitored": "Includeți Unmonitored",
"ImportMovies": "Importați filme", "ImportMovies": "Importați filme",
"IndexerPriority": "Prioritatea indexatorului", "IndexerPriority": "Prioritatea indexerului",
"IndexerPriorityHelpText": "Prioritatea indexerului de la 1 (cea mai mare) la 50 (cea mai mică). Implicit: 25.", "IndexerPriorityHelpText": "Prioritatea indexerului de la 1 (cea mai mare) la 50 (cea mai mică). Implicit: 25.",
"IndexerSettings": "Setări Indexer", "IndexerSettings": "Setări Indexer",
"InstallLatest": "Instalați cele mai recente", "InstallLatest": "Instalați cele mai recente",
@@ -875,7 +875,7 @@
"Retention": "Retenţie", "Retention": "Retenţie",
"RetentionHelpText": "Numai Usenet: Setați la zero pentru a seta pentru păstrarea nelimitată", "RetentionHelpText": "Numai Usenet: Setați la zero pentru a seta pentru păstrarea nelimitată",
"RSS": "RSS", "RSS": "RSS",
"RSSIsNotSupportedWithThisIndexer": "RSS nu este suportat de acest indexator", "RSSIsNotSupportedWithThisIndexer": "RSS nu este acceptat cu acest indexer",
"RSSSyncInterval": "Interval de sincronizare RSS", "RSSSyncInterval": "Interval de sincronizare RSS",
"RSSSyncIntervalHelpTextWarning": "Acest lucru se va aplica tuturor indexatorilor, vă rugăm să urmați regulile stabilite de aceștia", "RSSSyncIntervalHelpTextWarning": "Acest lucru se va aplica tuturor indexatorilor, vă rugăm să urmați regulile stabilite de aceștia",
"SaveSettings": "Salvează setările", "SaveSettings": "Salvează setările",
@@ -974,7 +974,7 @@
"UnableToLoadGeneralSettings": "Nu se pot încărca setările generale", "UnableToLoadGeneralSettings": "Nu se pot încărca setările generale",
"UnableToLoadHistory": "Istoricul nu poate fi încărcat", "UnableToLoadHistory": "Istoricul nu poate fi încărcat",
"UnableToLoadIndexerOptions": "Nu se pot încărca opțiunile indexerului", "UnableToLoadIndexerOptions": "Nu se pot încărca opțiunile indexerului",
"UnableToLoadIndexers": "Nu se pot încărca indexatoarele", "UnableToLoadIndexers": "Imposibil de încărcat indexatori",
"UnableToLoadLanguages": "Nu se pot încărca limbile", "UnableToLoadLanguages": "Nu se pot încărca limbile",
"UnableToLoadListExclusions": "Imposibil de încărcat excluderile din listă", "UnableToLoadListExclusions": "Imposibil de încărcat excluderile din listă",
"UnableToLoadManualImportItems": "Imposibil de încărcat articole de import manual", "UnableToLoadManualImportItems": "Imposibil de încărcat articole de import manual",
@@ -1052,7 +1052,7 @@
"Blocklisted": "Listă Neagră", "Blocklisted": "Listă Neagră",
"AreYouSureYouWantToRemoveSelectedItemFromQueue": "Sigur doriți să eliminați {0} elementul {1} din coadă?", "AreYouSureYouWantToRemoveSelectedItemFromQueue": "Sigur doriți să eliminați {0} elementul {1} din coadă?",
"BlocklistReleases": "Lansare pe lista neagră", "BlocklistReleases": "Lansare pe lista neagră",
"Filters": "Filtre", "Filters": "Filtru",
"List": "Liste", "List": "Liste",
"LocalPath": "Calea locală", "LocalPath": "Calea locală",
"RemotePath": "Calea la distanță", "RemotePath": "Calea la distanță",
+12 -46
View File
@@ -170,7 +170,7 @@
"ExcludeTitle": "Исключить {0}? Radarr не будет автоматически добавлять сканируя лист.", "ExcludeTitle": "Исключить {0}? Radarr не будет автоматически добавлять сканируя лист.",
"InCinemasMsg": "Фильмы в кинотеатрах", "InCinemasMsg": "Фильмы в кинотеатрах",
"IncludeRecommendationsHelpText": "Включить в отображении найденного фильмы рекомендованные Radar", "IncludeRecommendationsHelpText": "Включить в отображении найденного фильмы рекомендованные Radar",
"IndexerPriorityHelpText": "Приоритет индексатора от 1 (самый высокий) до 50 (самый низкий). По умолчанию: 25. Используется при захвате выпусков в качестве средства разрешения конфликтов для равных в остальном выпусков, Radarr по-прежнему будет использовать все включенные индексаторы для синхронизации и поиска RSS.", "IndexerPriorityHelpText": "Приоритет индексаторов от 1 (наивысший) до 50 (низший). По-умолчанию: 25.",
"IndexerSearchCheckNoAvailableIndexersMessage": "Все индексаторы с возможностью поиска временно выключены из-за ошибок", "IndexerSearchCheckNoAvailableIndexersMessage": "Все индексаторы с возможностью поиска временно выключены из-за ошибок",
"KeyboardShortcuts": "Горячие клавиши", "KeyboardShortcuts": "Горячие клавиши",
"CantFindMovie": "Почему я не могу найти фильм?", "CantFindMovie": "Почему я не могу найти фильм?",
@@ -244,7 +244,7 @@
"ApplyTagsHelpTexts2": "Добавить: добавить ярлыки к существующему списку", "ApplyTagsHelpTexts2": "Добавить: добавить ярлыки к существующему списку",
"AptUpdater": "Используйте apt для установки обновления", "AptUpdater": "Используйте apt для установки обновления",
"AuthForm": "Формы (Страница авторизации)", "AuthForm": "Формы (Страница авторизации)",
"AreYouSureYouWantToRemoveSelectedItemsFromQueue": "Вы уверены, что хотите удалить {0} элемент из очереди?", "AreYouSureYouWantToRemoveSelectedItemsFromQueue": "Вы уверены, что хотите удалить {0} элемент{1} из очереди?",
"BeforeUpdate": "До обновления", "BeforeUpdate": "До обновления",
"BuiltIn": "Встроено", "BuiltIn": "Встроено",
"CalendarOptions": "Настройки календаря", "CalendarOptions": "Настройки календаря",
@@ -742,12 +742,12 @@
"ChmodFolderHelpText": "Восьмеричный, применяется при импорте / переименовании к медиа-папкам и файлам (без битов выполнения)", "ChmodFolderHelpText": "Восьмеричный, применяется при импорте / переименовании к медиа-папкам и файлам (без битов выполнения)",
"CheckDownloadClientForDetails": "проверьте клиент загрузки для более подробной информации", "CheckDownloadClientForDetails": "проверьте клиент загрузки для более подробной информации",
"CertValidationNoLocal": "Отключено для локальных адресов", "CertValidationNoLocal": "Отключено для локальных адресов",
"CertificateValidationHelpText": "Измените строгую проверку сертификации HTTPS. Не меняйте, если вы не понимаете риски.", "CertificateValidationHelpText": "Изменить строгое подтверждение сертификации НТТР",
"BypassProxyForLocalAddresses": "Обход прокси для локальных адресов", "BypassProxyForLocalAddresses": "Обход прокси для локальных адресов",
"BranchUpdateMechanism": "Ветвь, используемая внешним механизмом обновления", "BranchUpdateMechanism": "Ветвь, используемая внешним механизмом обновления",
"BranchUpdate": "Ветвь для обновления Radarr", "BranchUpdate": "Ветвь для обновления Radarr",
"Branch": "Ветка", "Branch": "Ветка",
"BindAddressHelpText": "Действительный IPv4-адрес или '*' для всех интерфейсов", "BindAddressHelpText": "Действительный IP4-адрес или '*' для всех интерфейсов",
"BackupFolderHelpText": "Относительные пути будут в каталоге AppData Radarr", "BackupFolderHelpText": "Относительные пути будут в каталоге AppData Radarr",
"AvailabilityDelayHelpText": "Время до или после доступной даты для поиска фильма", "AvailabilityDelayHelpText": "Время до или после доступной даты для поиска фильма",
"AvailabilityDelay": "Задержка доступности", "AvailabilityDelay": "Задержка доступности",
@@ -908,7 +908,7 @@
"TimeFormat": "Формат времени", "TimeFormat": "Формат времени",
"Time": "Время", "Time": "Время",
"ThisConditionMatchesUsingRegularExpressions": "Это условие соответствует использованию регулярных выражений. Обратите внимание, что символы {0} имеют особое значение и требуют экранирования с помощью {1}", "ThisConditionMatchesUsingRegularExpressions": "Это условие соответствует использованию регулярных выражений. Обратите внимание, что символы {0} имеют особое значение и требуют экранирования с помощью {1}",
"ThisCannotBeCancelled": "Это действие нельзя отменить после запуска без отключения всех ваших индексаторов.", "ThisCannotBeCancelled": "Нельзя отменить после запуска без перезапуска Radarr.",
"TheLogLevelDefault": "Уровень журнала по умолчанию - «Информация» и может быть изменен в", "TheLogLevelDefault": "Уровень журнала по умолчанию - «Информация» и может быть изменен в",
"TestAllLists": "Тестировать все листы", "TestAllLists": "Тестировать все листы",
"TestAllIndexers": "Тестировать все индексаторы", "TestAllIndexers": "Тестировать все индексаторы",
@@ -982,7 +982,7 @@
"ShowCertification": "Показать сертификаты", "ShowCertification": "Показать сертификаты",
"ShowAsAllDayEvents": "Показывать как мероприятия на весь день", "ShowAsAllDayEvents": "Показывать как мероприятия на весь день",
"ShowAdvanced": "Показать расширенные", "ShowAdvanced": "Показать расширенные",
"ShouldMonitorHelpText": "Если включено, фильмы или коллекции, добавленные в этот список, будут добавлены, как отслеживаемые", "ShouldMonitorHelpText": "Если включено, фильмы, добавленные в этот список, добавляются и отслеживаются",
"SettingsWeekColumnHeaderHelpText": "Отображается над каждым столбцом, когда неделя активна", "SettingsWeekColumnHeaderHelpText": "Отображается над каждым столбцом, когда неделя активна",
"SettingsWeekColumnHeader": "Заголовок столбца недели", "SettingsWeekColumnHeader": "Заголовок столбца недели",
"SettingsTimeFormat": "Формат времени", "SettingsTimeFormat": "Формат времени",
@@ -1015,7 +1015,7 @@
"Security": "Безопасность", "Security": "Безопасность",
"Seconds": "Секунды", "Seconds": "Секунды",
"SearchSelected": "Искать выделенные", "SearchSelected": "Искать выделенные",
"SearchOnAddHelpText": "Искать фильмы в этом списке при добавлении в библиотеку", "SearchOnAddHelpText": "Искать фильмы в этом списке при добавлении в Radarr",
"SearchOnAdd": "Искать при добавлении", "SearchOnAdd": "Искать при добавлении",
"SearchMovie": "Поиск фильма", "SearchMovie": "Поиск фильма",
"SearchMissing": "Поиск пропавших", "SearchMissing": "Поиск пропавших",
@@ -1103,44 +1103,10 @@
"ImdbVotes": "IMDb оценок", "ImdbVotes": "IMDb оценок",
"Duration": "Длительность", "Duration": "Длительность",
"Rating": "Рейтинг", "Rating": "Рейтинг",
"List": "Список", "List": "Списки",
"RssSyncHelpText": "Интервал в минутах. Установите 0, чтобы выключить (остановит все автоматические захваты релизов)", "RssSyncHelpText": "Интервал в минутах. Установите 0 чтобы выключить (остановит все автоматические захваты релизов)",
"AllCollectionsHiddenDueToFilter": "Все фильмы скрыты в соответствии с фильтром.", "AllCollectionsHiddenDueToFilter": "Все фильмы спрятаны в соответствии с фильтром.",
"Collections": "Коллекции", "Collections": "Коллекция",
"MonitorMovies": "Отслеживать фильм", "MonitorMovies": "Отслеживать фильм",
"NoCollections": "Коллекции не найдены. Для начала вам нужно добавить новый фильм или импортировать несколько существующих.", "NoCollections": "Фильмов не найдено. Для начала вам нужно добавить новый фильм или импортировать уже существующие."
"CollectionOptions": "Параметры коллекции",
"CollectionShowDetailsHelpText": "Показать статус и свойства коллекции",
"CollectionShowOverviewsHelpText": "Показать обзоры коллекций",
"CollectionShowPostersHelpText": "Показать постеры предметов коллекции",
"EditCollection": "Редактировать коллекцию",
"Auto": "Авто",
"MonitorCollection": "Отслеживание коллекции",
"MonitoredCollectionHelpText": "Контролировать, чтобы фильмы из этой коллекции автоматически добавлялись в библиотеку",
"MovieAndCollection": "Фильм и коллекция",
"MovieCollectionMissingRoot": "Отсутствует корневая папка для коллекции фильмов: {0}",
"MovieCollectionMultipleMissingRoots": "Для коллекций фильмов отсутствуют несколько корневых папок: {0}",
"MovieOnly": "Только фильм",
"ShowCollectionDetails": "Показать статус коллекции",
"OnMovieAddedHelpText": "Добавлено в фильм",
"RefreshCollections": "Обновить коллекции",
"RefreshMonitoredIntervalHelpText": "Как часто обновлять отслеживаемые загрузки с клиентов загрузки, минимум 1 минута",
"Never": "Никогда",
"OriginalTitle": "Оригинальное название",
"CollectionsSelectedInterp": "{0} коллекций выбрано",
"UnableToLoadCollections": "Не удалось загрузить коллекции",
"OnMovieAdded": "Добавлено в фильм",
"OriginalLanguage": "Язык оригинала",
"SearchOnAddCollectionHelpText": "Поиск фильмов в этой коллекции при добавлении в библиотеку",
"ShowOverview": "Показать обзор",
"ShowPosters": "Показать постеры",
"TotalMovies": "Всего фильмов",
"Waiting": "Ожидание",
"ChooseImportMode": "Выберите режим импорта",
"InstanceName": "Имя экземпляра",
"InstanceNameHelpText": "Имя экземпляра на вкладке и для имени приложения системного журнала",
"RottenTomatoesRating": "Tomato рейтинг",
"Started": "Запущено",
"Database": "База данных",
"From": "из"
} }
+1 -60
View File
@@ -111,64 +111,5 @@
"AreYouSureYouWantToRemoveSelectedItemFromQueue": "Naozaj chcete odobrať {0} položku {1} z fronty?", "AreYouSureYouWantToRemoveSelectedItemFromQueue": "Naozaj chcete odobrať {0} položku {1} z fronty?",
"ImportCustomFormat": "Pridať vlastný formát", "ImportCustomFormat": "Pridať vlastný formát",
"DeleteRestrictionHelpText": "Naozaj chcete zmazať tento profil oneskorenia?", "DeleteRestrictionHelpText": "Naozaj chcete zmazať tento profil oneskorenia?",
"AllCollectionsHiddenDueToFilter": "Všetky filmy sú skryté kvôli použitému filtru.", "AllCollectionsHiddenDueToFilter": "Všetky filmy sú skryté kvôli použitému filtru."
"CollectionShowOverviewsHelpText": "Zobraziť prehľady kolekcií",
"CollectionShowPostersHelpText": "Zobraziť plagáty kolekcií",
"CollectionOptions": "Možnosti kolekcie",
"ChmodGroup": "chmod Skupina",
"ColonReplacement": "Nahrádzanie bodkočiarky",
"CompletedDownloadHandling": "Zaobchádzanie s dokončenými sťahovaniami",
"Component": "Komponent",
"Conditions": "Podmienky",
"Connection": "Spojenie",
"ConnectionLost": "Spojenie prerušené",
"CertificateValidationHelpText": "Zmeňte, aké prísne je overenie certifikácie HTTPS. Nemeňte, pokiaľ nerozumiete rizikám.",
"Connect": "Pripojiť",
"AllowHardcodedSubs": "Povoliť pevne zakódované titulky",
"ApplicationUrlHelpText": "Externá URL tejto aplikácie vrátane http(s)://, portu a URL základu",
"CantFindMovie": "Prečo nemôžem nájsť môj film?",
"Cast": "Obsadenie",
"Certification": "Certifikácia",
"CertificationCountry": "Krajina certifikácie",
"ChangeHasNotBeenSavedYet": "Zmena ešte nebola uložená",
"ChmodGroupHelpTextWarning": "Toto funguje iba ak použivateľ bežiaci Radarr je vlastníkom súboru. Je to lepšie zaistite, že klient na sťahovanie používa tú istú skupinu ako Radarr.",
"ChmodFolderHelpTextWarning": "Toto funguje iba ak používateľ bežiaci Radarr je vlastníkom súboru. Je lepšie zaistiť, že klient na sťahovanie správne nastaví oprávnenia.",
"ChooseAnotherFolder": "Vybrať ďalší priečinok",
"ClickToChangeReleaseGroup": "Kliknutím zmeníte skupinu vydania",
"Collection": "Kolekcia",
"CollectionShowDetailsHelpText": "Zobraziť stav kolekcie a vlastnosti",
"ColonReplacementFormatHelpText": "Zmeňte spôsob, akým Radarr rieši nahradzovanie bodkočiarky",
"Columns": "Stĺpce",
"CheckDownloadClientForDetails": "ďalšie podrobnosti nájdete v klientovi na sťahovanie",
"Collections": "Kolekcie",
"CollectionsSelectedInterp": "{0} Označených kolekcií",
"AnnouncedMsg": "Film je ohlásený",
"AreYouSureYouWantToRemoveTheSelectedItemsFromBlocklist": "Naozaj si prajete odstrániť označené položky z blocklistu?",
"ChooseImportMode": "Zvoliť Import mód",
"ApplicationURL": "URL aplikácie",
"Auto": "Automaticky",
"BindAddress": "Viazať adresu",
"Blocklist": "Blocklist",
"Blocklisted": "V blockliste",
"BlocklistHelpText": "Zabráni Radarru, aby znova automaticky grabol toto vydanie",
"BlocklistRelease": "Blocklistnúť vydanie",
"CancelPendingTask": "Naozaj chcete zrušiť túto prebiehajúcu úlohu?",
"CancelProcessing": "Zrušiť spracovanie",
"CertificateValidation": "Overenie certifikátu",
"CertificationCountryHelpText": "Vyberte krajinu pre filmové certifikácie",
"CertValidationNoLocal": "Zakázané pre miestne adresy",
"ChangeFileDate": "Zmeniť dátum súboru",
"CheckForFinishedDownloadsInterval": "Interval kontroly dokončených sťahovaní",
"ChmodFolder": "chmod Priečinok",
"ChmodGroupHelpText": "Názov skupiny alebo gid. Použite gid pre vzdialené súborové systémy.",
"Clear": "Vymazať",
"ClickToChangeLanguage": "Kliknutím zmeníte jazyk",
"ClickToChangeQuality": "Kliknutím zmeníte kvalitu",
"ClientPriority": "Priorita klienta",
"CloneCustomFormat": "Klonovať vlastný formát",
"CloneFormatTag": "Klonovať značku formátu",
"CloneIndexer": "Klonovať indexer",
"CloneProfile": "Klonovať profil",
"Close": "Zatvoriť",
"CloseCurrentModal": "Zatvoriť aktuálne okno"
} }
@@ -637,7 +637,7 @@
"InstallLatest": "安装最新版", "InstallLatest": "安装最新版",
"IndexerStatusCheckSingleClientMessage": "搜刮器因错误不可用:{0}", "IndexerStatusCheckSingleClientMessage": "搜刮器因错误不可用:{0}",
"IndexerStatusCheckAllClientMessage": "所有搜刮器都因错误不可用", "IndexerStatusCheckAllClientMessage": "所有搜刮器都因错误不可用",
"IndexerSearchCheckNoInteractiveMessage": "没有任何索引器开启了手动搜索,因此Radarr 不会提供任何手动搜索的结果", "IndexerSearchCheckNoInteractiveMessage": "没有任何索引器开启了手动搜索,Radarr 不会提供任何手动搜索的结果",
"IndexerRssHealthCheckNoIndexers": "没有任何索引器开启了RSS同步,Radarr不会自动抓取新发布的影片", "IndexerRssHealthCheckNoIndexers": "没有任何索引器开启了RSS同步,Radarr不会自动抓取新发布的影片",
"IndexerLongTermStatusCheckSingleClientMessage": "由于故障6小时,下列索引器都已不可用:{0}", "IndexerLongTermStatusCheckSingleClientMessage": "由于故障6小时,下列索引器都已不可用:{0}",
"IndexerLongTermStatusCheckAllClientMessage": "由于故障超过6小时,所有索引器均不可用", "IndexerLongTermStatusCheckAllClientMessage": "由于故障超过6小时,所有索引器均不可用",
@@ -1142,6 +1142,5 @@
"RottenTomatoesRating": "烂番茄指数", "RottenTomatoesRating": "烂番茄指数",
"ShowPosters": "显示海报", "ShowPosters": "显示海报",
"OnMovieAdded": "电影添加时", "OnMovieAdded": "电影添加时",
"OnMovieAddedHelpText": "电影添加时", "OnMovieAddedHelpText": "电影添加时"
"TotalMovies": "电影总数"
} }
@@ -7,12 +7,8 @@
"AddIndexer": "新增索引", "AddIndexer": "新增索引",
"AddingTag": "新增標籤", "AddingTag": "新增標籤",
"AddDownloadClient": "新增下載器", "AddDownloadClient": "新增下載器",
"Added": "新增", "Added": "新增",
"Age": "年齡", "Age": "年齡",
"All": "全部", "All": "全部",
"Analytics": "分析", "Analytics": "分析"
"AddCustomFormat": "新增自定義格式",
"AddList": "新增列表",
"AddDelayProfile": "新增延時配置",
"AddedToDownloadQueue": "已添加到下載隊列"
} }
+1 -1
View File
@@ -311,7 +311,7 @@ namespace NzbDrone.Core.Movies
{ {
using (var conn = _database.OpenConnection()) using (var conn = _database.OpenConnection())
{ {
var strSql = "SELECT \"Id\" AS \"Key\", \"Tags\" AS \"Value\" FROM \"Movies\" WHERE \"Tags\" IS NOT NULL"; var strSql = "SELECT \"Id\" AS \"Key\", \"Tags\" AS \"Value\" FROM \"Movies\"";
return conn.Query<KeyValuePair<int, List<int>>>(strSql).ToDictionary(x => x.Key, x => x.Value); return conn.Query<KeyValuePair<int, List<int>>>(strSql).ToDictionary(x => x.Key, x => x.Value);
} }
} }
+1 -2
View File
@@ -43,8 +43,7 @@ namespace NzbDrone.Core.Parser
new IsoLanguage("fa", "", "fas", "Persian", Language.Persian), new IsoLanguage("fa", "", "fas", "Persian", Language.Persian),
new IsoLanguage("be", "", "ben", "Bengali", Language.Bengali), new IsoLanguage("be", "", "ben", "Bengali", Language.Bengali),
new IsoLanguage("lt", "", "lit", "Lithuanian", Language.Lithuanian), new IsoLanguage("lt", "", "lit", "Lithuanian", Language.Lithuanian),
new IsoLanguage("sk", "", "slk", "Slovak", Language.Slovak), new IsoLanguage("sk", "", "slk", "Slovak", Language.Slovak)
new IsoLanguage("lv", "", "lav", "Latvian", Language.Latvian)
}; };
public static IsoLanguage Find(string isoCode) public static IsoLanguage Find(string isoCode)
+3 -42
View File
@@ -4,7 +4,6 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using NLog; using NLog;
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Instrumentation; using NzbDrone.Common.Instrumentation;
using NzbDrone.Core.Languages; using NzbDrone.Core.Languages;
@@ -27,8 +26,7 @@ namespace NzbDrone.Core.Parser
(?<hebrew>\bHebDub\b)| (?<hebrew>\bHebDub\b)|
(?<polish>\b(?:PL\W?DUB|DUB\W?PL|LEK\W?PL|PL\W?LEK)\b)| (?<polish>\b(?:PL\W?DUB|DUB\W?PL|LEK\W?PL|PL\W?LEK)\b)|
(?<chinese>\[(?:CH[ST]|BIG5|GB)\]|||)| (?<chinese>\[(?:CH[ST]|BIG5|GB)\]|||)|
(?<ukrainian>(?:(?:\dx)?UKR))| (?<ukrainian>(?:(?:\dx)?UKR))",
(?<latvian>\bLV\b)",
RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.IgnorePatternWhitespace); RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.IgnorePatternWhitespace);
private static readonly Regex CaseSensitiveLanguageRegex = new Regex(@"(?:(?i)(?<!SUB[\W|_|^]))(?:(?<lithuanian>\bLT\b)| private static readonly Regex CaseSensitiveLanguageRegex = new Regex(@"(?:(?i)(?<!SUB[\W|_|^]))(?:(?<lithuanian>\bLT\b)|
@@ -38,7 +36,7 @@ namespace NzbDrone.Core.Parser
(?<slovak>\bSK\b)", (?<slovak>\bSK\b)",
RegexOptions.Compiled | RegexOptions.IgnorePatternWhitespace); RegexOptions.Compiled | RegexOptions.IgnorePatternWhitespace);
private static readonly Regex SubtitleLanguageRegex = new Regex(".+?[-_. ](?<iso_code>[a-z]{2,3})([-_. ](?<tags>full|forced|foreign|default|cc|psdh|sdh))*$", RegexOptions.Compiled | RegexOptions.IgnoreCase); private static readonly Regex SubtitleLanguageRegex = new Regex(".+?[-_. ](?<iso_code>[a-z]{2,3})(?:[-_. ]forced)?$", RegexOptions.Compiled | RegexOptions.IgnoreCase);
public static List<Language> ParseLanguages(string title) public static List<Language> ParseLanguages(string title)
{ {
@@ -190,11 +188,6 @@ namespace NzbDrone.Core.Parser
languages.Add(Language.Slovak); languages.Add(Language.Slovak);
} }
if (lowerTitle.Contains("latvian"))
{
languages.Add(Language.Latvian);
}
// Case sensitive // Case sensitive
var caseSensitiveMatch = CaseSensitiveLanguageRegex.Match(title); var caseSensitiveMatch = CaseSensitiveLanguageRegex.Match(title);
@@ -301,11 +294,6 @@ namespace NzbDrone.Core.Parser
{ {
languages.Add(Language.Ukrainian); languages.Add(Language.Ukrainian);
} }
if (match.Groups["latvian"].Success)
{
languages.Add(Language.Latvian);
}
} }
if (!languages.Any()) if (!languages.Any())
@@ -316,25 +304,6 @@ namespace NzbDrone.Core.Parser
return languages.DistinctBy(l => (int)l).ToList(); return languages.DistinctBy(l => (int)l).ToList();
} }
public static IEnumerable<string> ParseLanguageTags(string fileName)
{
try
{
var simpleFilename = Path.GetFileNameWithoutExtension(fileName);
var match = SubtitleLanguageRegex.Match(simpleFilename);
var languageTags = match.Groups["tags"].Captures.Cast<Capture>()
.Where(tag => !tag.Value.Empty())
.Select(tag => tag.Value.ToLower());
return languageTags;
}
catch (Exception ex)
{
Logger.Debug(ex, "Failed parsing language tags from subtitle file: {0}", fileName);
}
return Enumerable.Empty<string>();
}
public static Language ParseSubtitleLanguage(string fileName) public static Language ParseSubtitleLanguage(string fileName)
{ {
try try
@@ -347,19 +316,11 @@ namespace NzbDrone.Core.Parser
if (languageMatch.Success) if (languageMatch.Success)
{ {
var isoCode = languageMatch.Groups["iso_code"].Value; var isoCode = languageMatch.Groups["iso_code"].Value;
var isoLanguage = IsoLanguages.Find(isoCode.ToLower()); var isoLanguage = IsoLanguages.Find(isoCode);
return isoLanguage?.Language ?? Language.Unknown; return isoLanguage?.Language ?? Language.Unknown;
} }
foreach (Language language in Language.All)
{
if (simpleFilename.EndsWith(language.ToString(), StringComparison.OrdinalIgnoreCase))
{
return language;
}
}
Logger.Debug("Unable to parse langauge from subtitle file: {0}", fileName); Logger.Debug("Unable to parse langauge from subtitle file: {0}", fileName);
} }
catch (Exception) catch (Exception)
+2 -2
View File
@@ -115,7 +115,7 @@ namespace NzbDrone.Core.Parser
private static readonly Regex SimpleReleaseTitleRegex = new Regex(@"\s*(?:[<>?*:|])", RegexOptions.Compiled | RegexOptions.IgnoreCase); private static readonly Regex SimpleReleaseTitleRegex = new Regex(@"\s*(?:[<>?*:|])", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly RegexReplace WebsitePrefixRegex = new RegexReplace(@"^\[\s*[-a-z]+(\.[a-z]+)+\s*\][- ]*|^www\.[a-z0-9]+\.(?:com|net|org|casa|pics|tc)[ -]*", private static readonly RegexReplace WebsitePrefixRegex = new RegexReplace(@"^\[\s*[-a-z]+(\.[a-z]+)+\s*\][- ]*|^www\.[a-z]+\.(?:com|net|org)[ -]*",
string.Empty, string.Empty,
RegexOptions.IgnoreCase | RegexOptions.Compiled); RegexOptions.IgnoreCase | RegexOptions.Compiled);
@@ -147,7 +147,7 @@ namespace NzbDrone.Core.Parser
//Handle Exception Release Groups that don't follow -RlsGrp; Manual List //Handle Exception Release Groups that don't follow -RlsGrp; Manual List
//groups whose releases end with RlsGroup) or RlsGroup] //groups whose releases end with RlsGroup) or RlsGroup]
private static readonly Regex ExceptionReleaseGroupRegex = new Regex(@"(?<releasegroup>(Joy|YIFY|YTS.(MX|LT|AG)|FreetheFish|afm72|Anna|Bandi|Ghost|Kappa|MONOLITH|Qman|RZeroX|SAMPA|Silence|theincognito|t3nzin|Vyndros|HDO|DusIctv|DHD|SEV|CtrlHD|-ZR-|ADC|XZVN|RH|Kametsu|r00t|HONE)(?=\]|\)))", RegexOptions.IgnoreCase | RegexOptions.Compiled); private static readonly Regex ExceptionReleaseGroupRegex = new Regex(@"(?<releasegroup>(Joy|YIFY|YTS.MX|YTS.LT|FreetheFish|afm72|Anna|Bandi|Ghost|Kappa|MONOLITH|Qman|RZeroX|SAMPA|Silence|theincognito|t3nzin|Vyndros|HDO|DusIctv|DHD|SEV|CtrlHD|-ZR-|ADC|XZVN|RH|Kametsu|r00t|HONE)(?=\]|\)))", RegexOptions.IgnoreCase | RegexOptions.Compiled);
//Handle Exception Release Groups that don't follow -RlsGrp; Manual List //Handle Exception Release Groups that don't follow -RlsGrp; Manual List
// name only...BE VERY CAREFUL WITH THIS, HIGH CHANCE OF FALSE POSITIVES // name only...BE VERY CAREFUL WITH THIS, HIGH CHANCE OF FALSE POSITIVES
@@ -1,53 +0,0 @@
using System.Linq;
using FluentAssertions;
using NUnit.Framework;
using Radarr.Api.V3.Tags;
namespace NzbDrone.Integration.Test.ApiTests
{
[TestFixture]
public class TagFixture : IntegrationTest
{
[Test]
[Order(0)]
public void should_not_have_tags_initially()
{
EnsureNoTag("test");
var items = Tags.All().Should().BeEmpty();
}
[Test]
[Order(2)]
public void should_be_able_to_add_tag()
{
var item = Tags.Post(new TagResource { Label = "test" });
item.Id.Should().NotBe(0);
}
[Test]
[Order(2)]
public void get_all_tags()
{
EnsureTag("test");
var clients = Tags.All();
clients.Should().NotBeNullOrEmpty();
}
[Test]
[Order(4)]
public void delete_tag()
{
var client = EnsureTag("test");
Tags.Get(client.Id).Should().NotBeNull();
Tags.Delete(client.Id);
Tags.All().Should().NotContain(v => v.Id == client.Id);
}
}
}
+1 -1
View File
@@ -60,7 +60,7 @@ namespace NzbDrone.Test.Common
} }
else else
{ {
Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "..", "bin", consoleExe)); Start(Path.Combine(TestContext.CurrentContext.TestDirectory, "bin", consoleExe));
} }
while (true) while (true)
@@ -26,7 +26,6 @@ namespace Radarr.Api.V3.Config
public string SslCertPassword { get; set; } public string SslCertPassword { get; set; }
public string UrlBase { get; set; } public string UrlBase { get; set; }
public string InstanceName { get; set; } public string InstanceName { get; set; }
public string ApplicationUrl { get; set; }
public bool UpdateAutomatically { get; set; } public bool UpdateAutomatically { get; set; }
public UpdateMechanism UpdateMechanism { get; set; } public UpdateMechanism UpdateMechanism { get; set; }
public string UpdateScriptPath { get; set; } public string UpdateScriptPath { get; set; }
@@ -83,8 +82,7 @@ namespace Radarr.Api.V3.Config
CertificateValidation = configService.CertificateValidation, CertificateValidation = configService.CertificateValidation,
BackupFolder = configService.BackupFolder, BackupFolder = configService.BackupFolder,
BackupInterval = configService.BackupInterval, BackupInterval = configService.BackupInterval,
BackupRetention = configService.BackupRetention, BackupRetention = configService.BackupRetention
ApplicationUrl = configService.ApplicationUrl
}; };
} }
} }
-4
View File
@@ -9594,10 +9594,6 @@
"type": "string", "type": "string",
"nullable": true "nullable": true
}, },
"applicationUrl": {
"type": "string",
"nullable": true
},
"updateAutomatically": { "updateAutomatically": {
"type": "boolean" "type": "boolean"
}, },
+35 -22
View File
@@ -2221,7 +2221,7 @@ class-utils@^0.3.5:
isobject "^3.0.0" isobject "^3.0.0"
static-extend "^0.1.1" static-extend "^0.1.1"
classnames@2.3.1: classnames@2.3.1, classnames@^2.2.5:
version "2.3.1" version "2.3.1"
resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e"
integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==
@@ -2756,13 +2756,6 @@ dom-serializer@^1.0.1:
domhandler "^4.2.0" domhandler "^4.2.0"
entities "^2.0.0" entities "^2.0.0"
dom7@^4.0.4:
version "4.0.4"
resolved "https://registry.yarnpkg.com/dom7/-/dom7-4.0.4.tgz#8b68c5d8e5e2ed0fddb1cb93e433bc9060c8f3fb"
integrity sha512-DSSgBzQ4rJWQp1u6o+3FVwMNnT5bzQbMb+o31TjYYeRi05uAcpF8koxdfzeoe5ElzPmua7W7N28YJhF7iEKqIw==
dependencies:
ssr-window "^4.0.0"
domelementtype@^2.0.1, domelementtype@^2.2.0: domelementtype@^2.0.1, domelementtype@^2.2.0:
version "2.3.0" version "2.3.0"
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
@@ -2827,6 +2820,11 @@ enhanced-resolve@^5.8.3:
graceful-fs "^4.2.4" graceful-fs "^4.2.4"
tapable "^2.2.0" tapable "^2.2.0"
enquire.js@^2.1.6:
version "2.1.6"
resolved "https://registry.yarnpkg.com/enquire.js/-/enquire.js-2.1.6.tgz#3e8780c9b8b835084c3f60e166dbc3c2a3c89814"
integrity sha512-/KujNpO+PT63F7Hlpu4h3pE3TokKRHN26JYmQpPyjkRD/N57R7bPDNojMXdi7uveAKjYB7yQnartCxZnFWr0Xw==
entities@^2.0.0: entities@^2.0.0:
version "2.2.0" version "2.2.0"
resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
@@ -4296,6 +4294,13 @@ json-stringify-safe@^5.0.1:
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
json2mq@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/json2mq/-/json2mq-0.2.0.tgz#b637bd3ba9eabe122c83e9720483aeb10d2c904a"
integrity sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==
dependencies:
string-convert "^0.2.0"
json5@^1.0.1: json5@^1.0.1:
version "1.0.1" version "1.0.1"
resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
@@ -5695,6 +5700,17 @@ react-side-effect@^1.0.2:
dependencies: dependencies:
shallowequal "^1.0.1" shallowequal "^1.0.1"
react-slick@0.28.1:
version "0.28.1"
resolved "https://registry.yarnpkg.com/react-slick/-/react-slick-0.28.1.tgz#12c18d991b59432df9c3757ba540a227b3fb85b9"
integrity sha512-JwRQXoWGJRbUTE7eZI1rGIHaXX/4YuwX6gn7ulfvUZ4vFDVQAA25HcsHSYaUiRCduTr6rskyIuyPMpuG6bbluw==
dependencies:
classnames "^2.2.5"
enquire.js "^2.1.6"
json2mq "^0.2.0"
lodash.debounce "^4.0.8"
resize-observer-polyfill "^1.5.0"
react-slider@1.1.4: react-slider@1.1.4:
version "1.1.4" version "1.1.4"
resolved "https://registry.yarnpkg.com/react-slider/-/react-slider-1.1.4.tgz#08b55f9be3e04cc10ae00cc3aedb6891dffe9bf3" resolved "https://registry.yarnpkg.com/react-slider/-/react-slider-1.1.4.tgz#08b55f9be3e04cc10ae00cc3aedb6891dffe9bf3"
@@ -5972,7 +5988,7 @@ reselect@4.0.0:
resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7" resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.0.0.tgz#f2529830e5d3d0e021408b246a206ef4ea4437f7"
integrity sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA== integrity sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==
resize-observer-polyfill@^1.4.1: resize-observer-polyfill@^1.4.1, resize-observer-polyfill@^1.5.0:
version "1.5.1" version "1.5.1"
resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
@@ -6254,6 +6270,11 @@ slice-ansi@^4.0.0:
astral-regex "^2.0.0" astral-regex "^2.0.0"
is-fullwidth-code-point "^3.0.0" is-fullwidth-code-point "^3.0.0"
slick-carousel@1.8.1:
version "1.8.1"
resolved "https://registry.yarnpkg.com/slick-carousel/-/slick-carousel-1.8.1.tgz#a4bfb29014887bb66ce528b90bd0cda262cc8f8d"
integrity sha512-XB9Ftrf2EEKfzoQXt3Nitrt/IPbT+f1fgqBdoxO3W/+JYvtEOW6EgxnWfr9GH6nmULv7Y2tPmEX3koxThVmebA==
snapdragon-node@^2.0.1: snapdragon-node@^2.0.1:
version "2.1.1" version "2.1.1"
resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
@@ -6366,11 +6387,6 @@ split-string@^3.0.1, split-string@^3.0.2:
dependencies: dependencies:
extend-shallow "^3.0.0" extend-shallow "^3.0.0"
ssr-window@^4.0.0, ssr-window@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/ssr-window/-/ssr-window-4.0.2.tgz#dc6b3ee37be86ac0e3ddc60030f7b3bc9b8553be"
integrity sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ==
static-extend@^0.1.1: static-extend@^0.1.1:
version "0.1.2" version "0.1.2"
resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
@@ -6387,6 +6403,11 @@ streamqueue@1.1.2:
isstream "^0.1.2" isstream "^0.1.2"
readable-stream "^2.3.3" readable-stream "^2.3.3"
string-convert@^0.2.0:
version "0.2.1"
resolved "https://registry.yarnpkg.com/string-convert/-/string-convert-0.2.1.tgz#6982cc3049fbb4cd85f8b24568b9d9bf39eeff97"
integrity sha512-u/1tdPl4yQnPBjnVrmdLo9gtuLvELKsAoRapekWggdiQNvvvum+jYF329d84NAa660KQw7pB2n36KrIKVoXa3A==
string-template@~0.2.1: string-template@~0.2.1:
version "0.2.1" version "0.2.1"
resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add"
@@ -6604,14 +6625,6 @@ svg-tags@^1.0.0:
resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==
swiper@8.3.2:
version "8.3.2"
resolved "https://registry.yarnpkg.com/swiper/-/swiper-8.3.2.tgz#55a2637125b0514e58715aa51e040dc070203b47"
integrity sha512-8wsC7ORYvVSnLUoxs2+xmfLrDPNjBVQXMCFbOlqtHeON6wtu/blOyySDr8TCBCdse1bdcIbn7m8xJNxVFL8o4Q==
dependencies:
dom7 "^4.0.4"
ssr-window "^4.0.2"
table@^6.8.0: table@^6.8.0:
version "6.8.0" version "6.8.0"
resolved "https://registry.yarnpkg.com/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" resolved "https://registry.yarnpkg.com/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca"