From d1a9d42eaf486b84e7d77ace69a9607fca76c317 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 8 Apr 2014 22:12:17 -0400 Subject: [PATCH] update translations --- .../Playback/BaseStreamingService.cs | 11 +- .../Logging/NlogManager.cs | 2 +- MediaBrowser.Dlna/PlayTo/DidlBuilder.cs | 13 +- .../Profiles/WindowsMediaCenterProfile.cs | 2 +- MediaBrowser.Dlna/Profiles/Xbox360Profile.cs | 2 +- MediaBrowser.Dlna/Profiles/XboxOneProfile.cs | 210 +++++++++++++++++- MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml | 2 +- MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml | 58 ++++- .../Configuration/UserConfiguration.cs | 1 - .../TV/MissingEpisodeProvider.cs | 18 +- .../EntryPoints/AutomaticRestartEntryPoint.cs | 13 +- .../Localization/JavaScript/cs.json | 1 + .../Localization/JavaScript/el.json | 2 +- .../Localization/JavaScript/fr.json | 2 +- .../Localization/JavaScript/nl.json | 2 +- .../Localization/JavaScript/pt_PT.json | 2 +- .../Localization/LocalizationManager.cs | 2 + .../Localization/Server/ar.json | 2 +- .../Localization/Server/cs.json | 1 + .../Localization/Server/de.json | 2 +- .../Localization/Server/el.json | 2 +- .../Localization/Server/en_GB.json | 2 +- .../Localization/Server/en_US.json | 2 +- .../Localization/Server/es.json | 2 +- .../Localization/Server/es_MX.json | 2 +- .../Localization/Server/fr.json | 2 +- .../Localization/Server/he.json | 2 +- .../Localization/Server/it.json | 2 +- .../Localization/Server/nb.json | 2 +- .../Localization/Server/nl.json | 2 +- .../Localization/Server/pt_BR.json | 2 +- .../Localization/Server/pt_PT.json | 2 +- .../Localization/Server/ru.json | 2 +- .../Localization/Server/server.json | 52 ++++- .../Localization/Server/sv.json | 2 +- .../Localization/Server/zh_TW.json | 2 +- ...MediaBrowser.Server.Implementations.csproj | 2 + 37 files changed, 379 insertions(+), 53 deletions(-) create mode 100644 MediaBrowser.Server.Implementations/Localization/JavaScript/cs.json create mode 100644 MediaBrowser.Server.Implementations/Localization/Server/cs.json diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 9787a7cd04..bb55b893a2 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -919,7 +919,7 @@ namespace MediaBrowser.Api.Playback var commandLineLogMessage = process.StartInfo.FileName + " " + process.StartInfo.Arguments; Logger.Info(commandLineLogMessage); - var logFilePath = Path.Combine(ServerConfigurationManager.ApplicationPaths.LogDirectoryPath, "ffmpeg-" + Guid.NewGuid() + ".txt"); + var logFilePath = Path.Combine(ServerConfigurationManager.ApplicationPaths.LogDirectoryPath, "transcode-" + Guid.NewGuid() + ".txt"); Directory.CreateDirectory(Path.GetDirectoryName(logFilePath)); // FFMpeg writes debug/error info to stderr. This is useful when debugging so let's put it in the log directory. @@ -1485,17 +1485,14 @@ namespace MediaBrowser.Api.Playback ApplyDeviceProfileSettings(state); - if (videoRequest != null && state.VideoStream != null) + if (videoRequest != null) { - if (CanStreamCopyVideo(videoRequest, state.VideoStream, state.VideoType)) + if (state.VideoStream != null && CanStreamCopyVideo(videoRequest, state.VideoStream, state.VideoType)) { videoRequest.VideoCodec = "copy"; } - } - if (state.AudioStream != null) - { - //if (CanStreamCopyAudio(request, state.AudioStream)) + //if (state.AudioStream != null && CanStreamCopyAudio(request, state.AudioStream)) //{ // request.AudioCodec = "copy"; //} diff --git a/MediaBrowser.Common.Implementations/Logging/NlogManager.cs b/MediaBrowser.Common.Implementations/Logging/NlogManager.cs index fe530f917d..b8ee60f018 100644 --- a/MediaBrowser.Common.Implementations/Logging/NlogManager.cs +++ b/MediaBrowser.Common.Implementations/Logging/NlogManager.cs @@ -184,7 +184,7 @@ namespace MediaBrowser.Common.Implementations.Logging /// The level. public void ReloadLogger(LogSeverity level) { - LogFilePath = Path.Combine(LogDirectory, LogFilePrefix + "-" + decimal.Round(DateTime.Now.Ticks / 10000000) + ".log"); + LogFilePath = Path.Combine(LogDirectory, LogFilePrefix + "-" + decimal.Round(DateTime.Now.Ticks / 10000000) + ".txt"); Directory.CreateDirectory(Path.GetDirectoryName(LogFilePath)); diff --git a/MediaBrowser.Dlna/PlayTo/DidlBuilder.cs b/MediaBrowser.Dlna/PlayTo/DidlBuilder.cs index 95622f3f7d..853064c606 100644 --- a/MediaBrowser.Dlna/PlayTo/DidlBuilder.cs +++ b/MediaBrowser.Dlna/PlayTo/DidlBuilder.cs @@ -105,7 +105,12 @@ namespace MediaBrowser.Dlna.PlayTo return string.Empty; } - return string.Format(DIDL_VIDEO_RES, videostream.BitRate.HasValue ? videostream.BitRate.Value / 10 : 0, GetDurationString(dto), videostream.Width ?? 0, videostream.Height ?? 0, streamUrl); + return string.Format(DIDL_VIDEO_RES, + videostream.BitRate.HasValue ? videostream.BitRate.Value / 10 : 0, + GetDurationString(dto), + videostream.Width ?? 0, + videostream.Height ?? 0, + streamUrl); } private static string GetAudioDIDL(BaseItem dto, string streamUrl, IEnumerable streams) @@ -118,7 +123,11 @@ namespace MediaBrowser.Dlna.PlayTo return string.Empty; } - return string.Format(DIDL_AUDIO_RES, audiostream.BitRate.HasValue ? audiostream.BitRate.Value / 10 : 16000, GetDurationString(dto), audiostream.SampleRate ?? 0, streamUrl); + return string.Format(DIDL_AUDIO_RES, + audiostream.BitRate.HasValue ? audiostream.BitRate.Value / 10 : 16000, + GetDurationString(dto), + audiostream.SampleRate ?? 0, + streamUrl); } private static string GetImageUrl(BaseItem dto, string serverAddress) diff --git a/MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs b/MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs index fe9a7e155a..f7251ece08 100644 --- a/MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs +++ b/MediaBrowser.Dlna/Profiles/WindowsMediaCenterProfile.cs @@ -97,7 +97,7 @@ namespace MediaBrowser.Dlna.Profiles { new ProfileCondition { - Condition = ProfileConditionType.LessThanEqual, + Condition = ProfileConditionType.Equals, Property = ProfileConditionValue.Has64BitOffsets, Value = "false", IsRequired = false diff --git a/MediaBrowser.Dlna/Profiles/Xbox360Profile.cs b/MediaBrowser.Dlna/Profiles/Xbox360Profile.cs index 5045301cb2..d3e9921d70 100644 --- a/MediaBrowser.Dlna/Profiles/Xbox360Profile.cs +++ b/MediaBrowser.Dlna/Profiles/Xbox360Profile.cs @@ -126,7 +126,7 @@ namespace MediaBrowser.Dlna.Profiles { new ProfileCondition { - Condition = ProfileConditionType.LessThanEqual, + Condition = ProfileConditionType.Equals, Property = ProfileConditionValue.Has64BitOffsets, Value = "false", IsRequired = false diff --git a/MediaBrowser.Dlna/Profiles/XboxOneProfile.cs b/MediaBrowser.Dlna/Profiles/XboxOneProfile.cs index bce789f39d..d6e1a5f3be 100644 --- a/MediaBrowser.Dlna/Profiles/XboxOneProfile.cs +++ b/MediaBrowser.Dlna/Profiles/XboxOneProfile.cs @@ -9,6 +9,7 @@ namespace MediaBrowser.Dlna.Profiles public XboxOneProfile() { Name = "Xbox One"; + XDlnaDoc = "DMS-1.50"; Identification = new DeviceIdentification { @@ -28,8 +29,9 @@ namespace MediaBrowser.Dlna.Profiles { Container = "ts", VideoCodec = "h264", - AudioCodec = "aac", - Type = DlnaProfileType.Video + AudioCodec = "ac3", + Type = DlnaProfileType.Video, + EstimateContentLength = true } }; @@ -37,17 +39,217 @@ namespace MediaBrowser.Dlna.Profiles { new DirectPlayProfile { - Container = "mp3,wma", + Container = "ts", + VideoCodec = "h264", + AudioCodec = "ac3", + Type = DlnaProfileType.Video + }, + new DirectPlayProfile + { + Container = "avi", + VideoCodec = "mpeg4", + AudioCodec = "ac3,mp3", + Type = DlnaProfileType.Video + }, + new DirectPlayProfile + { + Container = "avi", + VideoCodec = "h264", + AudioCodec = "aac", + Type = DlnaProfileType.Video + }, + new DirectPlayProfile + { + Container = "mp4,mov,mkv", + VideoCodec = "h264,mpeg4", + AudioCodec = "aac,ac3", + Type = DlnaProfileType.Video + }, + new DirectPlayProfile + { + Container = "asf", + VideoCodec = "wmv2,wmv3,vc1", + AudioCodec = "wmav2,wmapro", + Type = DlnaProfileType.Video + }, + new DirectPlayProfile + { + Container = "asf", + AudioCodec = "wmav2,wmapro,wmavoice", Type = DlnaProfileType.Audio + }, + new DirectPlayProfile + { + Container = "mp3", + AudioCodec = "mp3", + Type = DlnaProfileType.Audio + }, + new DirectPlayProfile + { + Container = "jpeg", + Type = DlnaProfileType.Photo } }; + ContainerProfiles = new[] + { + new ContainerProfile + { + Type = DlnaProfileType.Video, + Container = "mp4,mov", + + Conditions = new [] + { + new ProfileCondition + { + Condition = ProfileConditionType.Equals, + Property = ProfileConditionValue.Has64BitOffsets, + Value = "false", + IsRequired = false + } + } + } + }; + + CodecProfiles = new[] + { + new CodecProfile + { + Type = CodecType.Video, + Codec = "mpeg4", + Conditions = new [] + { + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.Width, + Value = "1920" + }, + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.Height, + Value = "1080" + }, + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.VideoFramerate, + Value = "30", + IsRequired = false + }, + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.VideoBitrate, + Value = "5120000", + IsRequired = false + } + } + }, + + new CodecProfile + { + Type = CodecType.Video, + Codec = "h264", + Conditions = new [] + { + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.Width, + Value = "1920" + }, + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.Height, + Value = "1080" + } + } + }, + + new CodecProfile + { + Type = CodecType.Video, + Codec = "wmv2,wmv3,vc1", + Conditions = new [] + { + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.Width, + Value = "1920" + }, + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.Height, + Value = "1080" + }, + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.VideoFramerate, + Value = "30", + IsRequired = false + }, + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.VideoBitrate, + Value = "15360000", + IsRequired = false + } + } + }, + + new CodecProfile + { + Type = CodecType.VideoAudio, + Codec = "ac3,wmav2,wmapro", + Conditions = new [] + { + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.AudioChannels, + Value = "6", + IsRequired = false + } + } + }, + + new CodecProfile + { + Type = CodecType.VideoAudio, + Codec = "aac", + Conditions = new [] + { + new ProfileCondition + { + Condition = ProfileConditionType.LessThanEqual, + Property = ProfileConditionValue.AudioChannels, + Value = "2", + IsRequired = false + }, + new ProfileCondition + { + Condition = ProfileConditionType.Equals, + Property = ProfileConditionValue.AudioProfile, + Value = "lc", + IsRequired = false + } + } + } + }; + ResponseProfiles = new[] { new ResponseProfile { Container = "avi", - MimeType = "video/x-msvideo", + MimeType = "video/avi", Type = DlnaProfileType.Video } }; diff --git a/MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml b/MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml index ddbe7af429..a2b3a3b29e 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml @@ -40,7 +40,7 @@ - + diff --git a/MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml b/MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml index aa2081dc0d..9ceeb2c6c1 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml @@ -16,21 +16,69 @@ false false Audio,Photo,Video + DMS-1.50 DLNA 0 false false - + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/MediaBrowser.Model/Configuration/UserConfiguration.cs b/MediaBrowser.Model/Configuration/UserConfiguration.cs index 10f984f88e..068a7ad5fa 100644 --- a/MediaBrowser.Model/Configuration/UserConfiguration.cs +++ b/MediaBrowser.Model/Configuration/UserConfiguration.cs @@ -66,7 +66,6 @@ namespace MediaBrowser.Model.Configuration IsAdministrator = true; EnableRemoteControlOfOtherUsers = true; - EnableContentDeletion = true; EnableLiveTvManagement = true; EnableMediaPlayback = true; EnableLiveTvAccess = true; diff --git a/MediaBrowser.Providers/TV/MissingEpisodeProvider.cs b/MediaBrowser.Providers/TV/MissingEpisodeProvider.cs index c33b9d5496..171a5af5f4 100644 --- a/MediaBrowser.Providers/TV/MissingEpisodeProvider.cs +++ b/MediaBrowser.Providers/TV/MissingEpisodeProvider.cs @@ -91,6 +91,8 @@ namespace MediaBrowser.Providers.TV .Where(i => i.Item1 != -1 && i.Item2 != -1) .ToList(); + var hasBadData = HasInvalidContent(group); + var anySeasonsRemoved = await RemoveObsoleteOrMissingSeasons(group, episodeLookup, cancellationToken) .ConfigureAwait(false); @@ -105,7 +107,7 @@ namespace MediaBrowser.Providers.TV hasNewSeasons = await AddDummySeasonFolders(series, cancellationToken).ConfigureAwait(false); } - if (_config.Configuration.EnableInternetProviders) + if (!hasBadData && _config.Configuration.EnableInternetProviders) { var seriesConfig = _config.Configuration.MetadataOptions.FirstOrDefault(i => string.Equals(i.ItemType, typeof(Series).Name, StringComparison.OrdinalIgnoreCase)); @@ -130,6 +132,20 @@ namespace MediaBrowser.Providers.TV } } + /// + /// Returns true if a series has any seasons or episodes without season or episode numbers + /// If this data is missing no virtual items will be added in order to prevent possible duplicates + /// + /// + /// + private bool HasInvalidContent(IEnumerable group) + { + var allItems = group.ToList().SelectMany(i => i.RecursiveChildren).ToList(); + + return allItems.OfType().Any(i => !i.IndexNumber.HasValue) || + allItems.OfType().Any(i => !i.IndexNumber.HasValue || !i.ParentIndexNumber.HasValue); + } + /// /// For series with episodes directly under the series folder, this adds dummy seasons to enable regular browsing and metadata /// diff --git a/MediaBrowser.Server.Implementations/EntryPoints/AutomaticRestartEntryPoint.cs b/MediaBrowser.Server.Implementations/EntryPoints/AutomaticRestartEntryPoint.cs index 7e45716352..d147a942f2 100644 --- a/MediaBrowser.Server.Implementations/EntryPoints/AutomaticRestartEntryPoint.cs +++ b/MediaBrowser.Server.Implementations/EntryPoints/AutomaticRestartEntryPoint.cs @@ -1,5 +1,6 @@ using MediaBrowser.Common.ScheduledTasks; using MediaBrowser.Controller; +using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Plugins; using MediaBrowser.Controller.Session; using MediaBrowser.Model.Logging; @@ -16,15 +17,17 @@ namespace MediaBrowser.Server.Implementations.EntryPoints private readonly ILogger _logger; private readonly ITaskManager _iTaskManager; private readonly ISessionManager _sessionManager; + private readonly IServerConfigurationManager _config; private Timer _timer; - public AutomaticRestartEntryPoint(IServerApplicationHost appHost, ILogger logger, ITaskManager iTaskManager, ISessionManager sessionManager) + public AutomaticRestartEntryPoint(IServerApplicationHost appHost, ILogger logger, ITaskManager iTaskManager, ISessionManager sessionManager, IServerConfigurationManager config) { _appHost = appHost; _logger = logger; _iTaskManager = iTaskManager; _sessionManager = sessionManager; + _config = config; } public void Run() @@ -47,7 +50,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints private void TimerCallback(object state) { - if (IsIdle()) + if (_config.Configuration.EnableAutomaticRestart && IsIdle()) { DisposeTimer(); @@ -70,12 +73,8 @@ namespace MediaBrowser.Server.Implementations.EntryPoints } var now = DateTime.UtcNow; - if (_sessionManager.Sessions.Any(i => !string.IsNullOrEmpty(i.NowViewingItemName) || (now - i.LastActivityDate).TotalMinutes < 30)) - { - return false; - } - return true; + return !_sessionManager.Sessions.Any(i => !string.IsNullOrEmpty(i.NowViewingItemName) || (now - i.LastActivityDate).TotalMinutes < 30); } public void Dispose() diff --git a/MediaBrowser.Server.Implementations/Localization/JavaScript/cs.json b/MediaBrowser.Server.Implementations/Localization/JavaScript/cs.json new file mode 100644 index 0000000000..1afb4a9c8f --- /dev/null +++ b/MediaBrowser.Server.Implementations/Localization/JavaScript/cs.json @@ -0,0 +1 @@ +{"SettingsSaved":"Nastaven\u00ed ulo\u017eeno.","AddUser":"P\u0159idat u\u017eivatele","Users":"U\u017eivatel\u00e9","Delete":"Odstranit","Administrator":"Administr\u00e1tor","Password":"Heslo","DeleteImage":"Odstranit obr\u00e1zek","DeleteImageConfirmation":"Jste si jisti, \u017ee chcete odstranit tento obr\u00e1zek?","FileReadCancelled":"\u010cten\u00ed souboru bylo zru\u0161eno.","FileNotFound":"Soubor nebyl nalezen.","FileReadError":"Nastala chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed souboru.","DeleteUser":"Odstranit u\u017eivatele","DeleteUserConfirmation":"Jste si jisti, \u017ee chcete odstranit {0}?","PasswordResetHeader":"Obnovit heslo","PasswordResetComplete":"Heslo bylo obnoveno.","PasswordResetConfirmation":"Jste si jisti, \u017ee chcete obnovit heslo?","PasswordSaved":"Heslo ulo\u017eeno.","PasswordMatchError":"Heslo a potvrzen\u00ed hesla mus\u00ed souhlasit.","OptionOff":"Vypnout","OptionOn":"Zapnout","OptionRelease":"Ofici\u00e1ln\u00ed vyd\u00e1n\u00ed","OptionBeta":"Betaverze","OptionDev":"Dev (Nestabiln\u00ed\/V\u00fdvoj\u00e1\u0159sk\u00e1)","UninstallPluginHeader":"Odinstalovat plugin","UninstallPluginConfirmation":"Jste si jisti, \u017ee chcete odinstalovat {0}?","NoPluginConfigurationMessage":"Tento plugin nem\u00e1 nastaven\u00ed.","NoPluginsInstalledMessage":"Nem\u00e1te nainstalov\u00e1n \u017e\u00e1dn\u00fd plugin.","BrowsePluginCatalogMessage":"Prohl\u00e9dn\u011bte si n\u00e1\u0161 katalog, kde najdete dostupn\u00e9 pluginy."} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/JavaScript/el.json b/MediaBrowser.Server.Implementations/Localization/JavaScript/el.json index c0c430adc6..bb4fe18949 100644 --- a/MediaBrowser.Server.Implementations/Localization/JavaScript/el.json +++ b/MediaBrowser.Server.Implementations/Localization/JavaScript/el.json @@ -1 +1 @@ -{"SettingsSaved":"\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd","AddUser":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7","Users":"\u039f\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2","Delete":"\u0394\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5","Administrator":"\u03c4\u03bf \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2","Password":"\u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","DeleteImage":"\u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1","DeleteImageConfirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1;","FileReadCancelled":"\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b9\u03b1\u03b2\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03ba\u03c5\u03c1\u03c9\u03b8\u03b5\u03af","FileNotFound":"\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5","FileReadError":"\u03a0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5","DeleteUser":"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7","DeleteUserConfirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5","PasswordResetHeader":"\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","PasswordResetComplete":"\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac","PasswordResetConfirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2;","PasswordSaved":"\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5","PasswordMatchError":"\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03bf\u03c5\u03bd","OptionOff":"Off","OptionOn":"On","OptionRelease":"Official Release","OptionBeta":"Beta","OptionDev":"Dev (Unstable)","UninstallPluginHeader":"Uninstall Plugin","UninstallPluginConfirmation":"Are you sure you wish to uninstall {0}?","NoPluginConfigurationMessage":"This plugin has nothing to configure.","NoPluginsInstalledMessage":"You have no plugins installed.","BrowsePluginCatalogMessage":"Browse our plugin catalog to view available plugins."} \ No newline at end of file +{"SettingsSaved":"\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd","AddUser":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7","Users":"\u039f\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2","Delete":"\u0394\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5","Administrator":"\u03c4\u03bf \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2","Password":"\u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","DeleteImage":"\u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1","DeleteImageConfirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1;","FileReadCancelled":"\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b9\u03b1\u03b2\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03ba\u03c5\u03c1\u03c9\u03b8\u03b5\u03af","FileNotFound":"\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5","FileReadError":"\u03a0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5","DeleteUser":"\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7","DeleteUserConfirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5","PasswordResetHeader":"\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2","PasswordResetComplete":"\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac","PasswordResetConfirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2;","PasswordSaved":"\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5","PasswordMatchError":"\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03bf\u03c5\u03bd","OptionOff":"\u03c3\u03b2\u03b7\u03c3\u03c4\u03cc\u03c2","OptionOn":"On","OptionRelease":"\u0397 \u03b5\u03c0\u03af\u03c3\u03b7\u03bc\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7","OptionBeta":"\u03b2\u03ae\u03c4\u03b1","OptionDev":"\u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 (\u03b1\u03c3\u03c4\u03b1\u03b8\u03ae\u03c2)","UninstallPluginHeader":"Uninstall Plugin","UninstallPluginConfirmation":"\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5;","NoPluginConfigurationMessage":"This plugin has nothing to configure.","NoPluginsInstalledMessage":"You have no plugins installed.","BrowsePluginCatalogMessage":"Browse our plugin catalog to view available plugins."} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/JavaScript/fr.json b/MediaBrowser.Server.Implementations/Localization/JavaScript/fr.json index f3db8c97a7..28a38f2f6c 100644 --- a/MediaBrowser.Server.Implementations/Localization/JavaScript/fr.json +++ b/MediaBrowser.Server.Implementations/Localization/JavaScript/fr.json @@ -1 +1 @@ -{"SettingsSaved":"Param\u00e8tres sauvegard\u00e9s.","AddUser":"Ajouter utilisateur","Users":"Utilisateurs","Delete":"Supprimer","Administrator":"Administrateur","Password":"Mot de passe","DeleteImage":"Supprimer Image","DeleteImageConfirmation":"\u00cates-vous s\u00fbr de vouloir supprimer l'image?","FileReadCancelled":"La lecture du fichier a \u00e9t\u00e9 annul\u00e9e.","FileNotFound":"Fichier non trouv\u00e9","FileReadError":"Un erreur est survenue pendant la lecture du fichier.","DeleteUser":"Supprimer utilisateur","DeleteUserConfirmation":"\u00cates-vous s\u00fbr de vouloir supprimer {0}?","PasswordResetHeader":"R\u00e9initialisation du mot de passe","PasswordResetComplete":"Le mot de passe a \u00e9t\u00e9 r\u00e9initialis\u00e9.","PasswordResetConfirmation":"\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser le mot de passe?","PasswordSaved":"Mot de passe sauvegard\u00e9.","PasswordMatchError":"Le mot de passe et sa confirmation doivent correspondre.","OptionOff":"Off","OptionOn":"On","OptionRelease":"Version officielle","OptionBeta":"Beta","OptionDev":"Dev (Instable)","UninstallPluginHeader":"D\u00e9sinstaller Plug-in","UninstallPluginConfirmation":"\u00cates-vous s\u00fbr de vouloir d\u00e9sinstaller {0}?","NoPluginConfigurationMessage":"Ce module d'extension n'a rien \u00e0 configurer.","NoPluginsInstalledMessage":"Vous n'avez aucun module d'extension install\u00e9.","BrowsePluginCatalogMessage":"Explorer notre catalogue de Plug-ins disponibles."} \ No newline at end of file +{"SettingsSaved":"Param\u00e8tres sauvegard\u00e9s.","AddUser":"Ajouter utilisateur","Users":"Utilisateurs","Delete":"Supprimer","Administrator":"Administrateur","Password":"Mot de passe","DeleteImage":"Supprimer Image","DeleteImageConfirmation":"\u00cates-vous s\u00fbr de vouloir supprimer l'image?","FileReadCancelled":"La lecture du fichier a \u00e9t\u00e9 annul\u00e9e.","FileNotFound":"Fichier non trouv\u00e9","FileReadError":"Un erreur est survenue pendant la lecture du fichier.","DeleteUser":"Supprimer utilisateur","DeleteUserConfirmation":"\u00cates-vous s\u00fbr de vouloir supprimer {0}?","PasswordResetHeader":"R\u00e9initialisation du mot de passe","PasswordResetComplete":"Le mot de passe a \u00e9t\u00e9 r\u00e9initialis\u00e9.","PasswordResetConfirmation":"\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser le mot de passe?","PasswordSaved":"Mot de passe sauvegard\u00e9.","PasswordMatchError":"Le mot de passe et sa confirmation doivent correspondre.","OptionOff":"Off","OptionOn":"On","OptionRelease":"Version officielle","OptionBeta":"Beta","OptionDev":"Dev (Instable)","UninstallPluginHeader":"D\u00e9sinstaller Plug-in","UninstallPluginConfirmation":"\u00cates-vous s\u00fbr de vouloir d\u00e9sinstaller {0}?","NoPluginConfigurationMessage":"Ce module d'extension n'a rien \u00e0 configurer.","NoPluginsInstalledMessage":"Vous n'avez aucun Plugin install\u00e9.","BrowsePluginCatalogMessage":"Explorer notre catalogue de Plugins disponibles."} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/JavaScript/nl.json b/MediaBrowser.Server.Implementations/Localization/JavaScript/nl.json index da90882921..77935113cb 100644 --- a/MediaBrowser.Server.Implementations/Localization/JavaScript/nl.json +++ b/MediaBrowser.Server.Implementations/Localization/JavaScript/nl.json @@ -1 +1 @@ -{"SettingsSaved":"Instellingen opgeslagen.","AddUser":"Gebruiker toevoegen","Users":"Gebruikers","Delete":"Verwijderen","Administrator":"Beheerder","Password":"Wachtwoord","DeleteImage":"Verwijder afbeelding","DeleteImageConfirmation":"Weet je zeker dat je deze afbeelding wilt verwijderen?","FileReadCancelled":"Bestand lezen is geannuleerd.","FileNotFound":"Bestand niet gevonden.","FileReadError":"Er is een fout opgetreden bij het lezen van het bestand.","DeleteUser":"Verwijder gebruiker","DeleteUserConfirmation":"Weet je zeker dat je {0} wilt verwijderen?","PasswordResetHeader":"Wachtwoord opnieuw instellen","PasswordResetComplete":"Het wachtwoord is opnieuw ingesteld.","PasswordResetConfirmation":"Weet je zeker dat je het wachtwoord opnieuw in wilt stellen?","PasswordSaved":"Wachtwoord opgeslagen.","PasswordMatchError":"Wachtwoord en wachtwoord bevestiging moeten hetzelfde zijn.","OptionOff":"Uit","OptionOn":"Aan","OptionRelease":"Offici\u00eble Release","OptionBeta":"Beta","OptionDev":"Dev (Onstabiel)","UninstallPluginHeader":"Plug-in de\u00efnstalleren","UninstallPluginConfirmation":"Weet u zeker dat u {0} wilt de\u00efnstalleren?","NoPluginConfigurationMessage":"Deze plug-in heeft niets in te stellen","NoPluginsInstalledMessage":"U heeft geen plug-ins ge\u00efnstalleerd","BrowsePluginCatalogMessage":"Bekijk de Plug-in catalogus voor beschikbare plug-ins."} \ No newline at end of file +{"SettingsSaved":"Instellingen opgeslagen.","AddUser":"Gebruiker toevoegen","Users":"Gebruikers","Delete":"Verwijderen","Administrator":"Beheerder","Password":"Wachtwoord","DeleteImage":"Verwijder afbeelding","DeleteImageConfirmation":"Weet je zeker dat je deze afbeelding wilt verwijderen?","FileReadCancelled":"Bestand lezen is geannuleerd.","FileNotFound":"Bestand niet gevonden.","FileReadError":"Er is een fout opgetreden bij het lezen van het bestand.","DeleteUser":"Verwijder gebruiker","DeleteUserConfirmation":"Weet je zeker dat je {0} wilt verwijderen?","PasswordResetHeader":"Wachtwoord opnieuw instellen","PasswordResetComplete":"Het wachtwoord is opnieuw ingesteld.","PasswordResetConfirmation":"Weet je zeker dat je het wachtwoord opnieuw in wilt stellen?","PasswordSaved":"Wachtwoord opgeslagen.","PasswordMatchError":"Wachtwoord en wachtwoord bevestiging moeten hetzelfde zijn.","OptionOff":"Uit","OptionOn":"Aan","OptionRelease":"Offici\u00eble Release","OptionBeta":"Beta","OptionDev":"Dev (Instabiel)","UninstallPluginHeader":"Plug-in de\u00efnstalleren","UninstallPluginConfirmation":"Weet u zeker dat u {0} wilt de\u00efnstalleren?","NoPluginConfigurationMessage":"Deze plug-in heeft niets in te stellen","NoPluginsInstalledMessage":"U heeft geen plug-ins ge\u00efnstalleerd","BrowsePluginCatalogMessage":"Bekijk de Plug-in catalogus voor beschikbare plug-ins."} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/JavaScript/pt_PT.json b/MediaBrowser.Server.Implementations/Localization/JavaScript/pt_PT.json index f9b7770e50..26c1e1b732 100644 --- a/MediaBrowser.Server.Implementations/Localization/JavaScript/pt_PT.json +++ b/MediaBrowser.Server.Implementations/Localization/JavaScript/pt_PT.json @@ -1 +1 @@ -{"SettingsSaved":"Configura\u00e7\u00f5es guardadas.","AddUser":"Adicionar Utilizador","Users":"Utilizadores","Delete":"Apagar","Administrator":"Administrador","Password":"Senha","DeleteImage":"Apagar Imagem","DeleteImageConfirmation":"Tem a certeza que deseja apagar a imagem?","FileReadCancelled":"A leitura do ficheiro foi cancelada.","FileNotFound":"Ficheiro n\u00e3o encontrado.","FileReadError":"Ocorreu um erro ao ler o ficheiro.","DeleteUser":"Apagar Utilizador","DeleteUserConfirmation":"Tem a certeza que deseja apagar {0}?","PasswordResetHeader":"Redefinir Senha","PasswordResetComplete":"A senha foi redefinida.","PasswordResetConfirmation":"Tem a certeza que deseja redefinir a senha?","PasswordSaved":"Senha guardada.","PasswordMatchError":"A senha e a confirma\u00e7\u00e3o da senha devem coincidir.","OptionOff":"Desligado","OptionOn":"Ligado","OptionRelease":"Lan\u00e7amento Oficial","OptionBeta":"Beta","OptionDev":"Dev (Inst\u00e1vel)","UninstallPluginHeader":"Desinstalar extens\u00e3o","UninstallPluginConfirmation":"Tem a certeza que deseja desinstalar {0}?","NoPluginConfigurationMessage":"Esta extens\u00e3o n\u00e3o \u00e9 configur\u00e1vel.","NoPluginsInstalledMessage":"N\u00e3o tem extens\u00f5es instaladas.","BrowsePluginCatalogMessage":"Navegue o nosso cat\u00e1logo de extens\u00f5es, para ver as extens\u00f5es dispon\u00edveis."} \ No newline at end of file +{"SettingsSaved":"Configura\u00e7\u00f5es guardadas.","AddUser":"Adicionar Utilizador","Users":"Utilizadores","Delete":"Apagar","Administrator":"Administrador","Password":"Senha","DeleteImage":"Apagar Imagem","DeleteImageConfirmation":"Tem a certeza que deseja apagar a imagem?","FileReadCancelled":"A leitura do ficheiro foi cancelada.","FileNotFound":"Ficheiro n\u00e3o encontrado.","FileReadError":"Ocorreu um erro ao ler o ficheiro.","DeleteUser":"Apagar Utilizador","DeleteUserConfirmation":"Tem a certeza que deseja apagar {0}?","PasswordResetHeader":"Redefinir Senha","PasswordResetComplete":"A senha foi redefinida.","PasswordResetConfirmation":"Tem a certeza que deseja redefinir a senha?","PasswordSaved":"Senha guardada.","PasswordMatchError":"A senha e a confirma\u00e7\u00e3o da senha devem coincidir.","OptionOff":"Desligar","OptionOn":"Ligar","OptionRelease":"Lan\u00e7amento Oficial","OptionBeta":"Beta","OptionDev":"Dev (Inst\u00e1vel)","UninstallPluginHeader":"Desinstalar extens\u00e3o","UninstallPluginConfirmation":"Tem a certeza que deseja desinstalar {0}?","NoPluginConfigurationMessage":"Esta extens\u00e3o n\u00e3o \u00e9 configur\u00e1vel.","NoPluginsInstalledMessage":"N\u00e3o tem extens\u00f5es instaladas.","BrowsePluginCatalogMessage":"Navegue o nosso cat\u00e1logo de extens\u00f5es, para ver as extens\u00f5es dispon\u00edveis."} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs b/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs index f65fe0debd..1a85d91338 100644 --- a/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs +++ b/MediaBrowser.Server.Implementations/Localization/LocalizationManager.cs @@ -336,7 +336,9 @@ namespace MediaBrowser.Server.Implementations.Localization new LocalizatonOption{ Name="Arabic", Value="ar"}, new LocalizatonOption{ Name="English (United Kingdom)", Value="en-GB"}, new LocalizatonOption{ Name="English (United States)", Value="en-us"}, + new LocalizatonOption{ Name="Catalan", Value="ca"}, new LocalizatonOption{ Name="Chinese Traditional", Value="zh-TW"}, + new LocalizatonOption{ Name="Czech", Value="cs"}, new LocalizatonOption{ Name="Dutch", Value="nl"}, new LocalizatonOption{ Name="French", Value="fr"}, new LocalizatonOption{ Name="German", Value="de"}, diff --git a/MediaBrowser.Server.Implementations/Localization/Server/ar.json b/MediaBrowser.Server.Implementations/Localization/Server/ar.json index 37533faba9..0566cb1f7d 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/ar.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/ar.json @@ -1 +1 @@ -{"LabelExit":"\u062e\u0631\u0648\u062c","LabelVisitCommunity":"\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"\u0642\u064a\u0627\u0633\u0649","LabelViewApiDocumentation":"\u0645\u0634\u0627\u0647\u062f\u0629 \u0645\u0631\u0627\u062c\u0639 \u0627\u0644\u0640 Api","LabelBrowseLibrary":"\u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0643\u062a\u0628\u0629","LabelConfigureMediaBrowser":"\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631","LabelOpenLibraryViewer":"\u0641\u062a\u062d \u0645\u062a\u0635\u062d\u0641 \u0627\u0644\u0645\u0643\u062a\u0628\u0629","LabelRestartServer":"\u0627\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u0627\u062f\u0645","LabelShowLogWindow":"\u0639\u0631\u0636 \u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u0633\u062c\u0644","LabelPrevious":"\u0627\u0644\u0633\u0627\u0628\u0642","LabelFinish":"\u0627\u0646\u062a\u0647\u0627\u0621","LabelNext":"\u0627\u0644\u062a\u0627\u0644\u0649","LabelYoureDone":"\u062a\u0645 \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621!","WelcomeToMediaBrowser":"\u0645\u0631\u062d\u0628\u0627 \u0628\u0643 \u0644\u0644\u0645\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631!","TitleMediaBrowser":"\u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631","ThisWizardWillGuideYou":"\u0645\u0631\u0634\u062f \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0633\u064a\u0633\u0627\u0639\u062f\u0643 \u062e\u0644\u0627\u0644 \u062e\u0637\u0648\u0627\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.","TellUsAboutYourself":"\u0627\u062e\u0628\u0631\u0646\u0627 \u0639\u0646 \u0646\u0641\u0633\u0643","LabelYourFirstName":"\u0627\u0633\u0645\u0643 \u0627\u0644\u0627\u0648\u0644:","MoreUsersCanBeAddedLater":"\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u064a\u0645\u0643\u0646 \u0627\u0636\u0627\u0641\u062a\u0647\u0645 \u0644\u0627\u062d\u0642\u0627 \u0645\u0646 \u0644\u0648\u062d\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.","UserProfilesIntro":"\u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631 \u0645\u062f\u0645\u062c \u0628\u0647 \u062f\u0639\u0645 \u0644\u0645\u0644\u0641\u0627\u062a \u062a\u0639\u0631\u064a\u0641 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646, \u0648\u062a\u0645\u0643\u064a\u0646 \u0643\u0644 \u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0646 \u062d\u0635\u0648\u0644\u0647 \u0639\u0644\u0649 \u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u062e\u0627\u0635\u0647 \u0628\u0647\u0645, \u0648\u0627\u0644\u0640 playstate \u0648\u0627\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0627\u0628\u0648\u064a\u0629.","LabelWindowsService":"\u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632","AWindowsServiceHasBeenInstalled":"\u062a\u0645 \u062a\u062b\u0628\u064a\u062a \u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632","WindowsServiceIntro1":"\u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631 \u0639\u0627\u062f\u0629 \u064a\u0639\u0645\u0644 \u0643\u0628\u0631\u0646\u0627\u0645\u062c \u0639\u0644\u0649 \u0633\u0637\u062d \u0627\u0644\u0645\u0643\u062a\u0628 \u0645\u0639 \u0627\u064a\u0642\u0648\u0646\u0629 \u0644\u0648\u062d\u0629 \u0627\u0644\u0646\u0638\u0627\u0645, \u0648\u0644\u0643\u0646 \u0627\u0630\u0627 \u0627\u062d\u0628\u0628\u062a \u0645\u0645\u0643\u0646 \u062a\u0634\u063a\u064a\u0644\u0647 \u0643\u062e\u062f\u0645\u0629 \u062e\u0644\u0641\u064a\u0629, \u064a\u0645\u0643\u0646 \u0627\u0646 \u064a\u0628\u062f\u0623 \u0645\u0646 \u062e\u062f\u0645\u0627\u062a \u0627\u0644\u0648\u0646\u062f\u0648\u0632 \u0645\u0646 \u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645 \u0628\u062f\u0644\u0627 \u0645\u0646 \u0630\u0644\u0643.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"\u0636\u0628\u0637 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a","LabelEnableVideoImageExtraction":"\u062a\u0641\u0639\u064a\u0644 \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0635\u0648\u0631 \u0627\u0644\u0641\u064a\u062f\u064a\u0648","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"\u0645\u0648\u0627\u0641\u0642","ButtonCancel":"\u0627\u0644\u063a\u0627\u0621","HeaderSetupLibrary":"\u0627\u0639\u062f\u0627\u062f \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637","ButtonAddMediaFolder":"\u0627\u0636\u0627\u0641\u0629 \u0645\u062c\u0644\u062f \u0644\u0644\u0648\u0633\u0627\u0626\u0637","LabelFolderType":"\u0646\u0648\u0639 \u0627\u0644\u0645\u062c\u0644\u062f:","MediaFolderHelpPluginRequired":"* Requires the use of a plugin, e.g. GameBrowser or MB Bookshelf.","ReferToMediaLibraryWiki":"\u0627\u0644\u0631\u062c\u0648\u0639 \u0627\u0644\u0649 wiki \u0644\u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637","LabelCountry":"\u0627\u0644\u0628\u0644\u062f:","LabelLanguage":"\u0627\u0644\u0644\u063a\u0629:","HeaderPreferredMetadataLanguage":"\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a:","LabelSaveLocalMetadata":"\u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637","LabelSaveLocalMetadataHelp":"\u0628\u062d\u0642\u0638 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0628\u0627\u0634\u0631\u0629 \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0633\u064a\u0633\u0647\u0644 \u0639\u0644\u064a\u0643 \u0627\u0644\u0648\u0635\u0648\u0644 \u0648\u0639\u0645\u0644 \u0627\u0644\u062a\u0639\u062f\u064a\u0644\u0627\u0627\u062a \u0639\u0644\u064a\u0647\u0627.","LabelDownloadInternetMetadata":"\u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0627\u0646\u062a\u0631\u0646\u062a","LabelDownloadInternetMetadataHelp":"\u064a\u0645\u0643\u0646 \u0644\u0644\u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0639\u0646 \u0648\u0633\u0627\u0626\u0637\u0643 \u0644\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u063a\u0646\u064a\u0629.","TabPreferences":"\u062a\u0641\u0636\u064a\u0644\u0627\u062a","TabPassword":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631","TabLibraryAccess":"\u0627\u0644\u062f\u062e\u0648\u0644 \u0627\u0644\u0649 \u0627\u0644\u0645\u0643\u062a\u0628\u0629","TabImage":"\u0635\u0648\u0631\u0629","TabProfile":"\u0633\u062c\u0644","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648","LabelAudioLanguagePreference":"\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u0635\u0648\u062a:","LabelSubtitleLanguagePreference":"\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u062a\u0631\u062c\u0645\u0629:","LabelDisplayForcedSubtitlesOnly":"\u0639\u0631\u0636 \u0641\u0642\u0637 \u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u0627\u0644\u0642\u0633\u0631\u064a\u0629","TabProfiles":"\u0633\u062c\u0644 (\u0646\u0628\u0630\u0629)","TabSecurity":"\u062d\u0645\u0627\u064a\u0629","ButtonAddUser":"\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645","ButtonSave":"\u062a\u062e\u0632\u064a\u0646","ButtonResetPassword":"\u0645\u0633\u062d \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631","LabelNewPassword":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u062c\u062f\u064a\u062f\u0629:","LabelNewPasswordConfirm":"\u062a\u0627\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062c\u062f\u064a\u062f\u0629:","HeaderCreatePassword":"\u0627\u0646\u0634\u0627\u0621 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631","LabelCurrentPassword":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062d\u0627\u0644\u064a\u0629","LabelMaxParentalRating":"\u0627\u0644\u062d\u062f \u0627\u0644\u0627\u0642\u0635\u0649 \u0644\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0628\u0647 \u0644\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0627\u0628\u0648\u064a\u0629:","MaxParentalRatingHelp":"Content with a higher rating will be hidden from this user.","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"\u0627\u0632\u0627\u0644\u0629 \u0635\u0648\u0631\u0629","ButtonUpload":"\u062a\u062d\u0645\u064a\u0644","HeaderUploadNewImage":"\u062a\u062d\u0645\u064a\u0644 \u0635\u0648\u0631\u0629 \u062c\u062f\u064a\u062f\u0629","LabelDropImageHere":"\u0627\u0633\u0642\u0627\u0637 \u0627\u0644\u0635\u0648\u0631\u0629 \u0647\u0646\u0627","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"\u0644\u0627 \u0634\u0649\u0621 \u0647\u0646\u0627.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"\u0645\u0642\u062a\u0631\u062d","TabLatest":"\u0627\u0644\u0627\u062e\u064a\u0631","TabUpcoming":"\u0627\u0644\u0642\u0627\u062f\u0645","TabShows":"\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a","TabEpisodes":"\u0627\u0644\u062d\u0644\u0642\u0627\u062a","TabGenres":"\u0627\u0646\u0648\u0627\u0639","TabPeople":"\u0627\u0644\u0646\u0627\u0633","TabNetworks":"\u0627\u0644\u0634\u0628\u0643\u0627\u062a","HeaderUsers":"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646","HeaderFilters":"\u0641\u0644\u062a\u0631\u0627\u062a:","ButtonFilter":"\u0641\u0644\u062a\u0631","OptionFavorite":"\u0627\u0644\u0645\u0641\u0636\u0644\u0627\u062a","OptionLikes":"\u0645\u062d\u0628\u0628","OptionDislikes":"\u0645\u0643\u0631\u0648\u0647","OptionActors":"\u0627\u0644\u0645\u0645\u062b\u0644\u0648\u0646","OptionGuestStars":"\u0636\u064a\u0648\u0641","OptionDirectors":"\u0627\u0644\u0645\u062e\u0631\u062c\u0648\u0646","OptionWriters":"\u0645\u0624\u0644\u0641\u0648\u0646","OptionProducers":"\u0645\u0646\u062a\u062c\u0648\u0646","HeaderResume":"\u0627\u0633\u062a\u0623\u0646\u0641","HeaderNextUp":"\u0627\u0644\u062a\u0627\u0644\u0649","NoNextUpItemsMessage":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u064a\u062c\u0627\u062f \u0634\u0649\u0621, \u0627\u0628\u062f\u0627 \u0628\u0645\u0634\u0627\u0647\u062f\u0629 \u0628\u0631\u0627\u0645\u062c\u0643!","HeaderLatestEpisodes":"\u0627\u062d\u062f\u062b \u0627\u0644\u062d\u0644\u0642\u0627\u062a","HeaderPersonTypes":"\u0646\u0648\u0639\u064a\u0629 \u0627\u0644\u0634\u062e\u0635:","TabSongs":"\u0627\u0644\u0627\u063a\u0627\u0646\u0649","TabAlbums":"\u0627\u0644\u0628\u0648\u0645\u0627\u062a","TabArtists":"\u0627\u0644\u0641\u0646\u0627\u0646\u064a\u0646","TabAlbumArtists":"\u0627\u0644\u0628\u0648\u0645 \u0627\u0644\u0641\u0646\u0627\u0646\u064a\u0646","TabMusicVideos":"\u0645\u0648\u0633\u064a\u0642\u0649 \u0627\u0644\u0641\u064a\u062f\u064a\u0648","ButtonSort":"\u062a\u0631\u062a\u064a\u0628","HeaderSortBy":"\u062a\u0631\u062a\u064a\u0628 \u062d\u0633\u0628:","HeaderSortOrder":"\u0646\u0638\u0627\u0645 \u0627\u0644\u062a\u0631\u062a\u064a\u0628:","OptionPlayed":"\u0645\u0639\u0632\u0648\u0641","OptionUnplayed":"\u063a\u064a\u0631 \u0645\u0639\u0632\u0648\u0641","OptionAscending":"\u062a\u0635\u0627\u0639\u062f\u0649","OptionDescending":"\u062a\u0646\u0627\u0632\u0644\u0649","OptionRuntime":"\u0632\u0645\u0646 \u0627\u0644\u062a\u0634\u063a\u064a\u0644","OptionReleaseDate":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0635\u062f\u0627\u0631","OptionPlayCount":"\u0639\u062f\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644","OptionDatePlayed":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0634\u063a\u064a\u0644","OptionDateAdded":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0636\u0627\u0641\u0629","OptionAlbumArtist":"\u0627\u0644\u0628\u0648\u0645 \u0627\u0644\u0641\u0646\u0627\u0646","OptionArtist":"\u0641\u0646\u0627\u0646","OptionAlbum":"\u0627\u0644\u0628\u0648\u0645","OptionTrackName":"\u0627\u0633\u0645 \u0627\u0644\u0627\u063a\u0646\u064a\u0629","OptionCommunityRating":"\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u062c\u062a\u0645\u0639","OptionNameSort":"\u0627\u0633\u0645","OptionFolderSort":"Folders","OptionBudget":"\u0645\u064a\u0632\u0627\u0646\u064a\u0629","OptionRevenue":"\u0627\u064a\u0631\u0627\u062f\u0627\u062a","OptionPoster":"\u0627\u0644\u0645\u0644\u0635\u0642","OptionBackdrop":"Backdrop","OptionTimeline":"\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0646\u0627\u0642\u062f","OptionVideoBitrate":"\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0644\u0644\u0641\u064a\u062f\u064a\u0648","OptionResumable":"\u062a\u0643\u0645\u0644\u0629","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"\u0627\u0644\u0627\u0635\u062f\u0627\u0631 \u0627\u0644\u0631\u0633\u0645\u0649","OptionBeta":"\u0628\u064a\u062a\u0627","OptionDev":"\u062a\u0637\u0648\u0631\u0649 (\u063a\u064a\u0631 \u0645\u0633\u062a\u0642\u0631)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"\u062e\u0631\u0648\u062c","LabelVisitCommunity":"\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"\u0642\u064a\u0627\u0633\u0649","LabelViewApiDocumentation":"\u0645\u0634\u0627\u0647\u062f\u0629 \u0645\u0631\u0627\u062c\u0639 \u0627\u0644\u0640 Api","LabelBrowseLibrary":"\u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0643\u062a\u0628\u0629","LabelConfigureMediaBrowser":"\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631","LabelOpenLibraryViewer":"\u0641\u062a\u062d \u0645\u062a\u0635\u062d\u0641 \u0627\u0644\u0645\u0643\u062a\u0628\u0629","LabelRestartServer":"\u0627\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u0627\u062f\u0645","LabelShowLogWindow":"\u0639\u0631\u0636 \u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u0633\u062c\u0644","LabelPrevious":"\u0627\u0644\u0633\u0627\u0628\u0642","LabelFinish":"\u0627\u0646\u062a\u0647\u0627\u0621","LabelNext":"\u0627\u0644\u062a\u0627\u0644\u0649","LabelYoureDone":"\u062a\u0645 \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621!","WelcomeToMediaBrowser":"\u0645\u0631\u062d\u0628\u0627 \u0628\u0643 \u0644\u0644\u0645\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631!","TitleMediaBrowser":"\u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631","ThisWizardWillGuideYou":"\u0645\u0631\u0634\u062f \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0633\u064a\u0633\u0627\u0639\u062f\u0643 \u062e\u0644\u0627\u0644 \u062e\u0637\u0648\u0627\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.","TellUsAboutYourself":"\u0627\u062e\u0628\u0631\u0646\u0627 \u0639\u0646 \u0646\u0641\u0633\u0643","LabelYourFirstName":"\u0627\u0633\u0645\u0643 \u0627\u0644\u0627\u0648\u0644:","MoreUsersCanBeAddedLater":"\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u064a\u0645\u0643\u0646 \u0627\u0636\u0627\u0641\u062a\u0647\u0645 \u0644\u0627\u062d\u0642\u0627 \u0645\u0646 \u0644\u0648\u062d\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.","UserProfilesIntro":"\u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631 \u0645\u062f\u0645\u062c \u0628\u0647 \u062f\u0639\u0645 \u0644\u0645\u0644\u0641\u0627\u062a \u062a\u0639\u0631\u064a\u0641 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646, \u0648\u062a\u0645\u0643\u064a\u0646 \u0643\u0644 \u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0646 \u062d\u0635\u0648\u0644\u0647 \u0639\u0644\u0649 \u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u062e\u0627\u0635\u0647 \u0628\u0647\u0645, \u0648\u0627\u0644\u0640 playstate \u0648\u0627\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0627\u0628\u0648\u064a\u0629.","LabelWindowsService":"\u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632","AWindowsServiceHasBeenInstalled":"\u062a\u0645 \u062a\u062b\u0628\u064a\u062a \u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632","WindowsServiceIntro1":"\u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631 \u0639\u0627\u062f\u0629 \u064a\u0639\u0645\u0644 \u0643\u0628\u0631\u0646\u0627\u0645\u062c \u0639\u0644\u0649 \u0633\u0637\u062d \u0627\u0644\u0645\u0643\u062a\u0628 \u0645\u0639 \u0627\u064a\u0642\u0648\u0646\u0629 \u0644\u0648\u062d\u0629 \u0627\u0644\u0646\u0638\u0627\u0645, \u0648\u0644\u0643\u0646 \u0627\u0630\u0627 \u0627\u062d\u0628\u0628\u062a \u0645\u0645\u0643\u0646 \u062a\u0634\u063a\u064a\u0644\u0647 \u0643\u062e\u062f\u0645\u0629 \u062e\u0644\u0641\u064a\u0629, \u064a\u0645\u0643\u0646 \u0627\u0646 \u064a\u0628\u062f\u0623 \u0645\u0646 \u062e\u062f\u0645\u0627\u062a \u0627\u0644\u0648\u0646\u062f\u0648\u0632 \u0645\u0646 \u0644\u0648\u062d\u0629 \u0627\u0644\u062a\u062d\u0643\u0645 \u0628\u062f\u0644\u0627 \u0645\u0646 \u0630\u0644\u0643.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"\u0636\u0628\u0637 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a","LabelEnableVideoImageExtraction":"\u062a\u0641\u0639\u064a\u0644 \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0635\u0648\u0631 \u0627\u0644\u0641\u064a\u062f\u064a\u0648","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"\u0645\u0648\u0627\u0641\u0642","ButtonCancel":"\u0627\u0644\u063a\u0627\u0621","ButtonNew":"New","HeaderSetupLibrary":"\u0627\u0639\u062f\u0627\u062f \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637","ButtonAddMediaFolder":"\u0627\u0636\u0627\u0641\u0629 \u0645\u062c\u0644\u062f \u0644\u0644\u0648\u0633\u0627\u0626\u0637","LabelFolderType":"\u0646\u0648\u0639 \u0627\u0644\u0645\u062c\u0644\u062f:","MediaFolderHelpPluginRequired":"* Requires the use of a plugin, e.g. GameBrowser or MB Bookshelf.","ReferToMediaLibraryWiki":"\u0627\u0644\u0631\u062c\u0648\u0639 \u0627\u0644\u0649 wiki \u0644\u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637","LabelCountry":"\u0627\u0644\u0628\u0644\u062f:","LabelLanguage":"\u0627\u0644\u0644\u063a\u0629:","HeaderPreferredMetadataLanguage":"\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a:","LabelSaveLocalMetadata":"\u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637","LabelSaveLocalMetadataHelp":"\u0628\u062d\u0642\u0638 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0628\u0627\u0634\u0631\u0629 \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0633\u064a\u0633\u0647\u0644 \u0639\u0644\u064a\u0643 \u0627\u0644\u0648\u0635\u0648\u0644 \u0648\u0639\u0645\u0644 \u0627\u0644\u062a\u0639\u062f\u064a\u0644\u0627\u0627\u062a \u0639\u0644\u064a\u0647\u0627.","LabelDownloadInternetMetadata":"\u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0627\u0646\u062a\u0631\u0646\u062a","LabelDownloadInternetMetadataHelp":"\u064a\u0645\u0643\u0646 \u0644\u0644\u0645\u064a\u062f\u064a\u0627 \u0628\u0631\u0627\u0648\u0632\u0631 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0639\u0646 \u0648\u0633\u0627\u0626\u0637\u0643 \u0644\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u063a\u0646\u064a\u0629.","TabPreferences":"\u062a\u0641\u0636\u064a\u0644\u0627\u062a","TabPassword":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631","TabLibraryAccess":"\u0627\u0644\u062f\u062e\u0648\u0644 \u0627\u0644\u0649 \u0627\u0644\u0645\u0643\u062a\u0628\u0629","TabImage":"\u0635\u0648\u0631\u0629","TabProfile":"\u0633\u062c\u0644","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648","LabelAudioLanguagePreference":"\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u0635\u0648\u062a:","LabelSubtitleLanguagePreference":"\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u062a\u0631\u062c\u0645\u0629:","LabelDisplayForcedSubtitlesOnly":"\u0639\u0631\u0636 \u0641\u0642\u0637 \u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u0627\u0644\u0642\u0633\u0631\u064a\u0629","TabProfiles":"\u0633\u062c\u0644 (\u0646\u0628\u0630\u0629)","TabSecurity":"\u062d\u0645\u0627\u064a\u0629","ButtonAddUser":"\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645","ButtonSave":"\u062a\u062e\u0632\u064a\u0646","ButtonResetPassword":"\u0645\u0633\u062d \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631","LabelNewPassword":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u062c\u062f\u064a\u062f\u0629:","LabelNewPasswordConfirm":"\u062a\u0627\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062c\u062f\u064a\u062f\u0629:","HeaderCreatePassword":"\u0627\u0646\u0634\u0627\u0621 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631","LabelCurrentPassword":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062d\u0627\u0644\u064a\u0629","LabelMaxParentalRating":"\u0627\u0644\u062d\u062f \u0627\u0644\u0627\u0642\u0635\u0649 \u0644\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0628\u0647 \u0644\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0627\u0628\u0648\u064a\u0629:","MaxParentalRatingHelp":"Content with a higher rating will be hidden from this user.","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"\u0627\u0632\u0627\u0644\u0629 \u0635\u0648\u0631\u0629","ButtonUpload":"\u062a\u062d\u0645\u064a\u0644","HeaderUploadNewImage":"\u062a\u062d\u0645\u064a\u0644 \u0635\u0648\u0631\u0629 \u062c\u062f\u064a\u062f\u0629","LabelDropImageHere":"\u0627\u0633\u0642\u0627\u0637 \u0627\u0644\u0635\u0648\u0631\u0629 \u0647\u0646\u0627","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"\u0644\u0627 \u0634\u0649\u0621 \u0647\u0646\u0627.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"\u0645\u0642\u062a\u0631\u062d","TabLatest":"\u0627\u0644\u0627\u062e\u064a\u0631","TabUpcoming":"\u0627\u0644\u0642\u0627\u062f\u0645","TabShows":"\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a","TabEpisodes":"\u0627\u0644\u062d\u0644\u0642\u0627\u062a","TabGenres":"\u0627\u0646\u0648\u0627\u0639","TabPeople":"\u0627\u0644\u0646\u0627\u0633","TabNetworks":"\u0627\u0644\u0634\u0628\u0643\u0627\u062a","HeaderUsers":"\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646","HeaderFilters":"\u0641\u0644\u062a\u0631\u0627\u062a:","ButtonFilter":"\u0641\u0644\u062a\u0631","OptionFavorite":"\u0627\u0644\u0645\u0641\u0636\u0644\u0627\u062a","OptionLikes":"\u0645\u062d\u0628\u0628","OptionDislikes":"\u0645\u0643\u0631\u0648\u0647","OptionActors":"\u0627\u0644\u0645\u0645\u062b\u0644\u0648\u0646","OptionGuestStars":"\u0636\u064a\u0648\u0641","OptionDirectors":"\u0627\u0644\u0645\u062e\u0631\u062c\u0648\u0646","OptionWriters":"\u0645\u0624\u0644\u0641\u0648\u0646","OptionProducers":"\u0645\u0646\u062a\u062c\u0648\u0646","HeaderResume":"\u0627\u0633\u062a\u0623\u0646\u0641","HeaderNextUp":"\u0627\u0644\u062a\u0627\u0644\u0649","NoNextUpItemsMessage":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u064a\u062c\u0627\u062f \u0634\u0649\u0621, \u0627\u0628\u062f\u0627 \u0628\u0645\u0634\u0627\u0647\u062f\u0629 \u0628\u0631\u0627\u0645\u062c\u0643!","HeaderLatestEpisodes":"\u0627\u062d\u062f\u062b \u0627\u0644\u062d\u0644\u0642\u0627\u062a","HeaderPersonTypes":"\u0646\u0648\u0639\u064a\u0629 \u0627\u0644\u0634\u062e\u0635:","TabSongs":"\u0627\u0644\u0627\u063a\u0627\u0646\u0649","TabAlbums":"\u0627\u0644\u0628\u0648\u0645\u0627\u062a","TabArtists":"\u0627\u0644\u0641\u0646\u0627\u0646\u064a\u0646","TabAlbumArtists":"\u0627\u0644\u0628\u0648\u0645 \u0627\u0644\u0641\u0646\u0627\u0646\u064a\u0646","TabMusicVideos":"\u0645\u0648\u0633\u064a\u0642\u0649 \u0627\u0644\u0641\u064a\u062f\u064a\u0648","ButtonSort":"\u062a\u0631\u062a\u064a\u0628","HeaderSortBy":"\u062a\u0631\u062a\u064a\u0628 \u062d\u0633\u0628:","HeaderSortOrder":"\u0646\u0638\u0627\u0645 \u0627\u0644\u062a\u0631\u062a\u064a\u0628:","OptionPlayed":"\u0645\u0639\u0632\u0648\u0641","OptionUnplayed":"\u063a\u064a\u0631 \u0645\u0639\u0632\u0648\u0641","OptionAscending":"\u062a\u0635\u0627\u0639\u062f\u0649","OptionDescending":"\u062a\u0646\u0627\u0632\u0644\u0649","OptionRuntime":"\u0632\u0645\u0646 \u0627\u0644\u062a\u0634\u063a\u064a\u0644","OptionReleaseDate":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0635\u062f\u0627\u0631","OptionPlayCount":"\u0639\u062f\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644","OptionDatePlayed":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0634\u063a\u064a\u0644","OptionDateAdded":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0636\u0627\u0641\u0629","OptionAlbumArtist":"\u0627\u0644\u0628\u0648\u0645 \u0627\u0644\u0641\u0646\u0627\u0646","OptionArtist":"\u0641\u0646\u0627\u0646","OptionAlbum":"\u0627\u0644\u0628\u0648\u0645","OptionTrackName":"\u0627\u0633\u0645 \u0627\u0644\u0627\u063a\u0646\u064a\u0629","OptionCommunityRating":"\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u062c\u062a\u0645\u0639","OptionNameSort":"\u0627\u0633\u0645","OptionFolderSort":"Folders","OptionBudget":"\u0645\u064a\u0632\u0627\u0646\u064a\u0629","OptionRevenue":"\u0627\u064a\u0631\u0627\u062f\u0627\u062a","OptionPoster":"\u0627\u0644\u0645\u0644\u0635\u0642","OptionBackdrop":"Backdrop","OptionTimeline":"\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0646\u0627\u0642\u062f","OptionVideoBitrate":"\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0644\u0644\u0641\u064a\u062f\u064a\u0648","OptionResumable":"\u062a\u0643\u0645\u0644\u0629","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonSearch":"Search","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"\u0627\u0644\u0627\u0635\u062f\u0627\u0631 \u0627\u0644\u0631\u0633\u0645\u0649","OptionBeta":"\u0628\u064a\u062a\u0627","OptionDev":"\u062a\u0637\u0648\u0631\u0649 (\u063a\u064a\u0631 \u0645\u0633\u062a\u0642\u0631)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","ButtonRemove":"Remove","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/cs.json b/MediaBrowser.Server.Implementations/Localization/Server/cs.json new file mode 100644 index 0000000000..6ba3d149a7 --- /dev/null +++ b/MediaBrowser.Server.Implementations/Localization/Server/cs.json @@ -0,0 +1 @@ +{"LabelExit":"Zav\u0159\u00edt","LabelVisitCommunity":"Nav\u0161t\u00edvit komunitu","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standardn\u00ed","LabelViewApiDocumentation":"Zobrazit dokumentaci API","LabelBrowseLibrary":"Proch\u00e1zet knihovnu","LabelConfigureMediaBrowser":"Konfigurovat Media Browser","LabelOpenLibraryViewer":"Otev\u0159\u00edt knihovnu","LabelRestartServer":"Restartovat server","LabelShowLogWindow":"Zobrazit okno z\u00e1znam\u016f","LabelPrevious":"P\u0159edchoz\u00ed","LabelFinish":"Dokon\u010dit","LabelNext":"Dal\u0161\u00ed","LabelYoureDone":"Hotovo!","WelcomeToMediaBrowser":"V\u00edtejte v programu Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Tento pr\u016fvodce V\u00e1m pom\u016f\u017ee proj\u00edt procesem nastaven\u00ed.","TellUsAboutYourself":"\u0158ekn\u011bte n\u00e1m n\u011bco o sob\u011b","LabelYourFirstName":"Va\u0161e k\u0159estn\u00ed jm\u00e9no:","MoreUsersCanBeAddedLater":"Dal\u0161\u00ed u\u017eivatele m\u016f\u017eete p\u0159idat pozd\u011bji na n\u00e1st\u011bnce.","UserProfilesIntro":"Media Browser obsahuje zabudovanou podporu u\u017eivatelsk\u00fdch profil\u016f dovoluj\u00edc\u00ed ka\u017ed\u00e9mu u\u017eivateli konfigurovat nastaven\u00ed zobrazen\u00ed, p\u0159ehr\u00e1v\u00e1n\u00ed a rodi\u010dovskou kontrolu.","LabelWindowsService":"Slu\u017eba Windows","AWindowsServiceHasBeenInstalled":"Slu\u017eba Windows byla nainstalov\u00e1na.","WindowsServiceIntro1":"Media Browser b\u011b\u017e\u00ed standardn\u011b jako desktopov\u00e1 aplikace s ikonou v oznamovac\u00ed oblasti, pokud ov\u0161em preferujete nastaven\u00ed jako slu\u017eby na pozad\u00ed, m\u016f\u017eete tak u\u010dinit v ovl\u00e1dac\u00edch panelech Va\u0161eho syst\u00e9mu pod polo\u017ekou Slu\u017eby Windows.","WindowsServiceIntro2":"Pokud pou\u017e\u00edv\u00e1te Slu\u017ebu Windows berte na v\u011bdom\u00ed, \u017ee nem\u016f\u017ee b\u00fdt spu\u0161t\u011bna z\u00e1rove\u0148 s programem v oznamovac\u00ed oblasti. Bude nutn\u00e9 b\u011b\u017e\u00edc\u00ed aplikaci v oznamovac\u00ed oblasti ukon\u010dit. Slu\u017eba Windows mus\u00ed b\u00fdt z\u00e1rove\u0148 nakonfigurov\u00e1na s pr\u00e1vy administr\u00e1tora v ovl\u00e1dac\u00edch panelech. V tuto chv\u00edli slu\u017eba neumo\u017e\u0148uje automatickou aktualizaci, bude proto nutn\u00e9 novou verzi nainstalovat ru\u010dn\u011b.","WizardCompleted":"To je v\u0161e co prozat\u00edm pot\u0159ebujeme. Media Browser za\u010dne shroma\u017e\u010fovat informace o m\u00e9di\u00edch ve Va\u0161\u00ed knihovn\u011b. Pod\u00edvejte se na n\u011bkter\u00e9 z na\u0161ich aplikac\u00ed, a potom klepn\u011bte na tla\u010d\u00edtko Dokon\u010dit<\/b> pro zobrazen\u00ed Hlavn\u00edho panelu<\/b>","LabelConfigureSettings":"Konfigurovat nastaven\u00ed","LabelEnableVideoImageExtraction":"Povolit extrahov\u00e1n\u00ed obr\u00e1zku ze souboru","VideoImageExtractionHelp":"Pro videa, kter\u00e9 je\u0161t\u011b nemaj\u00ed obr\u00e1zky obalu, a zat\u00edm nejsme schopni je dohledat. Tato operace vy\u017eaduje n\u011bjak\u00fd ten \u010das nav\u00edc, ve v\u00fdsledku ale p\u0159isp\u011bje k hez\u010d\u00edmu zobrazen\u00ed knihovny.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Povolit automatick\u00e9 mapov\u00e1n\u00ed port\u016f","LabelEnableAutomaticPortMappingHelp":"UPnP umo\u017e\u0148uje automatick\u00e9 nastaven\u00ed routeru pro vzd\u00e1len\u00fd p\u0159\u00edstup. Nemus\u00ed fungovat s n\u011bkter\u00fdmi typy router\u016f.","ButtonOk":"Ok","ButtonCancel":"Zru\u0161it","ButtonNew":"Nov\u00e9","HeaderSetupLibrary":"Nastaven\u00ed Va\u0161i knihovny m\u00e9di\u00ed","ButtonAddMediaFolder":"P\u0159idat slo\u017eku m\u00e9di\u00ed","LabelFolderType":"Typ slo\u017eky:","MediaFolderHelpPluginRequired":"* Vy\u017eaduje pou\u017eit\u00ed pluginu, nap\u0159. GameBrowser nebo MB Bookshelf","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Zem\u011b:","LabelLanguage":"Jazyk:","HeaderPreferredMetadataLanguage":"Preferovan\u00fd jazyk metadat:","LabelSaveLocalMetadata":"Ulo\u017eit p\u0159ebaly a metadata do slo\u017eky s m\u00e9dii","LabelSaveLocalMetadataHelp":"Povol\u00edte-li ulo\u017een\u00ed p\u0159ebal\u016f a metadat do slo\u017eky s m\u00e9dii bude mo\u017en\u00e9 je jednodu\u0161e upravovat.","LabelDownloadInternetMetadata":"St\u00e1hnout p\u0159ebal a metadata z internetu","LabelDownloadInternetMetadataHelp":"Media Browser m\u016f\u017ee st\u00e1hnout informace o Va\u0161ich m\u00e9di\u00edch z internetu pro bohat\u0161\u00ed prezentaci.","TabPreferences":"P\u0159edvolby","TabPassword":"Heslo","TabLibraryAccess":"P\u0159\u00edstup ke knihovn\u011b","TabImage":"Obr\u00e1zek","TabProfile":"Profil","TabMetadata":"Metadata","TabImages":"Obr\u00e1zky","TabCollectionTitles":"N\u00e1zvy","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"Nastaven\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed videa","LabelAudioLanguagePreference":"Up\u0159ednost\u0148ovan\u00fd jazyk videa:","LabelSubtitleLanguagePreference":"Up\u0159ednost\u0148ovan\u00fd jazyk titulk\u016f:","LabelDisplayForcedSubtitlesOnly":"Zobrazit pouze vynucen\u00e9 titulky","TabProfiles":"Profily","TabSecurity":"Zabezpe\u010den\u00ed","ButtonAddUser":"P\u0159idat u\u017eivatele","ButtonSave":"Ulo\u017eit","ButtonResetPassword":"Obnovit heslo","LabelNewPassword":"Nov\u00e9 heslo:","LabelNewPasswordConfirm":"Potvrzen\u00ed nov\u00e9ho heslo:","HeaderCreatePassword":"Vytvo\u0159it heslo","LabelCurrentPassword":"Aktu\u00e1ln\u00ed heslo:","LabelMaxParentalRating":"Maxim\u00e1ln\u00ed povolen\u00e9 rodi\u010dovsk\u00e9 hodnocen\u00ed:","MaxParentalRatingHelp":"Obsah s vy\u0161\u0161\u00edm hodnocen\u00edm bude tomuto u\u017eivateli blokov\u00e1n.","LibraryAccessHelp":"Vyberte slo\u017eky m\u00e9di\u00ed pro sd\u00edlen\u00ed s t\u00edmto u\u017eivatelem. Administr\u00e1to\u0159i budou moci editovat v\u0161echny slo\u017eky pomoc\u00ed metadata mana\u017eeru.","ButtonDeleteImage":"Odstranit obr\u00e1zek","ButtonUpload":"Nahr\u00e1t","HeaderUploadNewImage":"Nahr\u00e1t nov\u00fd obr\u00e1zek","LabelDropImageHere":"P\u0159esu\u0148te obr\u00e1zek zde","ImageUploadAspectRatioHelp":"Doporu\u010den pom\u011br 1:1. Pouze JPG\/PNG.","MessageNothingHere":"Tady nic nen\u00ed.","MessagePleaseEnsureInternetMetadata":"Pros\u00edm zkontrolujte, zda m\u00e1te povoleno stahov\u00e1n\u00ed metadat z internetu.","TabSuggested":"Doporu\u010den\u00e9","TabLatest":"Posledn\u00ed","TabUpcoming":"Nadch\u00e1zej\u00edc\u00ed","TabShows":"Shows","TabEpisodes":"Epizody","TabGenres":"\u017d\u00e1nry","TabPeople":"Lid\u00e9","TabNetworks":"S\u00edt\u011b","HeaderUsers":"U\u017eivatel\u00e9","HeaderFilters":"Filtry:","ButtonFilter":"Filtr","OptionFavorite":"Obl\u00edben\u00e9","OptionLikes":"L\u00edb\u00ed se","OptionDislikes":"Nel\u00edb\u00ed se","OptionActors":"Herci","OptionGuestStars":"Host\u00e9","OptionDirectors":"Re\u017eis\u00e9\u0159i","OptionWriters":"Spisovatel\u00e9","OptionProducers":"Producenti","HeaderResume":"Pozastavit","HeaderNextUp":"Dal\u0161\u00ed nahoru","NoNextUpItemsMessage":"Nic nenalezeno. Za\u010dn\u011bte sledovat Va\u0161e obl\u00edben\u00e9 seri\u00e1ly!","HeaderLatestEpisodes":"Posledn\u00ed d\u00edly","HeaderPersonTypes":"Typy osob:","TabSongs":"Skladby","TabAlbums":"Alba","TabArtists":"Um\u011blec","TabAlbumArtists":"Um\u011blci alba","TabMusicVideos":"Hudebn\u00ed videa","ButtonSort":"Se\u0159adit","HeaderSortBy":"Se\u0159adit podle:","HeaderSortOrder":"Po\u0159ad\u00ed \u0159azen\u00ed:","OptionPlayed":"Shl\u00e9dnuto","OptionUnplayed":"Neshl\u00e9dnuto","OptionAscending":"Vzestupn\u011b","OptionDescending":"Sestupn\u011b","OptionRuntime":"D\u00e9lka","OptionReleaseDate":"Datum vyd\u00e1n\u00ed","OptionPlayCount":"Po\u010det p\u0159ehr\u00e1n\u00ed","OptionDatePlayed":"Datum p\u0159ehr\u00e1n\u00ed","OptionDateAdded":"Datum p\u0159id\u00e1n\u00ed","OptionAlbumArtist":"Um\u011blec Alba","OptionArtist":"Um\u011blec","OptionAlbum":"Album","OptionTrackName":"N\u00e1zev skladby","OptionCommunityRating":"Hodnocen\u00ed komunity","OptionNameSort":"N\u00e1zev","OptionFolderSort":"Slo\u017eky","OptionBudget":"Rozpo\u010det","OptionRevenue":"P\u0159\u00edjem","OptionPoster":"Plak\u00e1t","OptionBackdrop":"Pozad\u00ed","OptionTimeline":"\u010casov\u00e1 osa","OptionThumb":"Miniatura","OptionBanner":"Prapor","OptionCriticRating":"Hodnocen\u00ed kritik\u016f","OptionVideoBitrate":"Bitrate videa","OptionResumable":"Pozastavaviteln\u00fd","ScheduledTasksHelp":"Klikn\u011bte na \u00falohu pro zobrazen\u00ed rozvrhu.","ScheduledTasksTitle":"Rozvrh \u00faloh","TabMyPlugins":"Moje pluginy","TabCatalog":"Katalog","TabUpdates":"Aktualizace","PluginsTitle":"Pluginy","HeaderAutomaticUpdates":"Automatick\u00e9 aktualizace","HeaderUpdateLevel":"Level aktualizace","HeaderNowPlaying":"Pr\u00e1v\u011b hraje","HeaderLatestAlbums":"Posledn\u00ed alba","HeaderLatestSongs":"Posledn\u00ed skladby","HeaderRecentlyPlayed":"Naposledy p\u0159ehr\u00e1v\u00e1no","HeaderFrequentlyPlayed":"Nej\u010dast\u011bji p\u0159ehr\u00e1v\u00e1no","DevBuildWarning":"Dev (v\u00fdvoj\u00e1\u0159sk\u00e1) sestaven\u00ed jsou vyd\u00e1v\u00e1na ob\u010das a nepravideln\u011b. Tato sestaven\u00ed nejsou testov\u00e1na, aplikace mohou b\u00fdt nestabiln\u00ed a n\u011bkter\u00e9 sou\u010d\u00e1sti nemus\u00ed fungovat v\u016fbec.","LabelVideoType":"Typ vide:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Vlastnosti:","OptionHasSubtitles":"Titulky","OptionHasTrailer":"Uk\u00e1zka\/trailer","OptionHasThemeSong":"Tematick\u00e1 hudba","OptionHasThemeVideo":"Tematick\u00e9 video","TabMovies":"Filmy","TabStudios":"Studia","TabTrailers":"Uk\u00e1zky\/trailery","HeaderLatestMovies":"Posledn\u00ed filmy","HeaderLatestTrailers":"Posledn\u00ed uk\u00e1zky\/trailery","OptionHasSpecialFeatures":"Speci\u00e1ln\u00ed funkce","OptionImdbRating":"Hodnocen\u00ed IMDb","OptionParentalRating":"Rodi\u010dovsk\u00e9 hodnocen\u00ed","OptionPremiereDate":"Datum premi\u00e9ry","TabBasic":"Z\u00e1kladn\u00ed","TabAdvanced":"Pokro\u010dil\u00e9","HeaderStatus":"Stav","OptionContinuing":"Pokra\u010dov\u00e1n\u00ed","OptionEnded":"Ukon\u010deno","HeaderAirDays":"Air Days:","OptionSunday":"Ned\u011ble","OptionMonday":"Pond\u011bl\u00ed","OptionTuesday":"\u00dater\u00fd","OptionWednesday":"St\u0159eda","OptionThursday":"\u010ctvrtek","OptionFriday":"P\u00e1tek","OptionSaturday":"Sobota","HeaderManagement":"Management:","OptionMissingImdbId":"Chyb\u011bj\u00edc\u00ed IMDb Id","OptionMissingTvdbId":"Chyb\u011bj\u00edc\u00ed TheTVDB Id","OptionMissingOverview":"Chyb\u011bj\u00edc\u00ed p\u0159ehled","OptionFileMetadataYearMismatch":"Neodpov\u00edd\u00e1 rok v metadatech a v souboru.","TabGeneral":"Obecn\u00e9","TitleSupport":"Podpora","TabLog":"Log","TabAbout":"O programu","TabSupporterKey":"Kl\u00ed\u010d sponzora","TabBecomeSupporter":"Sta\u0148te se sponzorem","MediaBrowserHasCommunity":"Media Browser m\u00e1 prosp\u00edvaj\u00edc\u00ed komunitu u\u017eivatel\u016f a p\u0159isp\u011bvatel\u016f.","CheckoutKnowledgeBase":"Prohl\u00e9dn\u011bte si na\u0161\u00ed znalostn\u00ed b\u00e1zi (knowledge base) aby jste zjistili v\u00edce o programu Media Browser.","SearchKnowledgeBase":"Prohledat znalostn\u00ed b\u00e1zi.","VisitTheCommunity":"Nav\u0161t\u00edvit komunitu","VisitMediaBrowserWebsite":"Nav\u0161t\u00edvit str\u00e1nku programu Media Browser","VisitMediaBrowserWebsiteLong":"Nav\u0161tivte str\u00e1nku programu Media Browser pro zji\u0161t\u011bn\u00ed posledn\u00edch novinek a informac\u00ed od v\u00fdvoj\u00e1\u0159\u016f.","OptionHideUser":"Skr\u00fdt tohoto u\u017eivatele z p\u0159ihla\u0161ovac\u00edch obrazovek","OptionDisableUser":"Zablokovat tohoto u\u017eivatele","OptionDisableUserHelp":"Pokud je zablokov\u00e1n, server nepovol\u00ed tomuto u\u017eivateli \u017e\u00e1dn\u00e9 p\u0159ipojen\u00ed. Existuj\u00edc\u00ed p\u0159ipojen\u00ed bude okam\u017eit\u011b p\u0159eru\u0161eno.","HeaderAdvancedControl":"Pokro\u010dil\u00e9 nastaven\u00ed","LabelName":"Jm\u00e9no:","OptionAllowUserToManageServer":"Povolit tomuto u\u017eivateli spr\u00e1vu serveru","HeaderFeatureAccess":"P\u0159\u00edstup k funkc\u00edm","OptionAllowMediaPlayback":"Povolit p\u0159ehr\u00e1v\u00e1n\u00ed medi\u00ed","OptionAllowBrowsingLiveTv":"Provolit \u017eiv\u00e9 vys\u00edl\u00e1n\u00ed","OptionAllowDeleteLibraryContent":"Povolit tomuto u\u017eivateli odstra\u0148ovat obsah z knihovny m\u00e9di\u00ed","OptionAllowManageLiveTv":"Povolit spr\u00e1vu nahr\u00e1vek \u017eiv\u00e9ho vys\u00edl\u00e1n\u00ed","OptionAllowRemoteControlOthers":"Povolit tomuto u\u017eivateli vzd\u00e1lenou kontrolu ostatn\u00edch u\u017eivatel\u016f","OptionMissingTmdbId":"Chyb\u011bj\u00edc\u00ed Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Vybrat","ButtonSearch":"Hled\u00e1n\u00ed","ButtonGroupVersions":"Skupinov\u00e9 verze","PismoMessage":"Vyu\u017e\u00edv\u00e1me spr\u00e1vce soubor\u016f \"Pismo\" skrze dotovanou licenci.","PleaseSupportOtherProduces":"Pros\u00edm podpo\u0159te dal\u0161\u00ed bezplatn\u00e9 produkty, kter\u00e9 vyu\u017e\u00edv\u00e1me:","VersionNumber":"Verze {0}","TabPaths":"Cesty","TabServer":"Server","TabTranscoding":"P\u0159ek\u00f3dov\u00e1n\u00ed","TitleAdvanced":"Pokro\u010dil\u00e9","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Ofici\u00e1ln\u00ed vyd\u00e1n\u00ed","OptionBeta":"Betaverze","OptionDev":"Dev (Nestabiln\u00ed\/V\u00fdvoj\u00e1\u0159sk\u00e1)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Napl\u00e1nov\u00e1no","TabSeries":"S\u00e9rie","ButtonCancelRecording":"Zru\u0161it nahr\u00e1v\u00e1n\u00ed","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Bude v TV","TabStatus":"Stav","TabSettings":"Nastaven\u00ed","ButtonRefreshGuideData":"Obnovit data pr\u016fvodce","OptionPriority":"Priorita","OptionRecordOnAllChannels":"Nahr\u00e1vat program na v\u0161ech kan\u00e1lech","OptionRecordAnytime":"Nahr\u00e1vat program v jak\u00fdkoliv \u010das","OptionRecordOnlyNewEpisodes":"Nahr\u00e1vat pouze nov\u00e9 epizody","HeaderDays":"Dny","HeaderActiveRecordings":"Aktivn\u00ed nahr\u00e1v\u00e1n\u00ed","HeaderLatestRecordings":"Posledn\u00ed nahr\u00e1v\u00e1n\u00ed","HeaderAllRecordings":"V\u0161echna nahr\u00e1v\u00e1n\u00ed","ButtonPlay":"P\u0159ehr\u00e1t","ButtonEdit":"Upravit","ButtonRecord":"Nahr\u00e1vat","ButtonDelete":"Odstranit","ButtonRemove":"Odstranit","OptionRecordSeries":"Nahr\u00e1t s\u00e9rie","HeaderDetails":"Detaily","TitleLiveTV":"\u017div\u00e1 TV","LabelNumberOfGuideDays":"Po\u010det dn\u016f pro sta\u017een\u00ed dat pr\u016fvodce:","LabelNumberOfGuideDaysHelp":"Sta\u017een\u00edm v\u00edce dn\u016f dat pr\u016fvodce umo\u017en\u00ed v pl\u00e1nech nastavit budouc\u00ed nahr\u00e1v\u00e1n\u00ed v\u00edce do budoucna. M\u016f\u017ee v\u0161ak d\u00e9le trvat sta\u017een\u00ed t\u011bchto dat. Auto vybere mo\u017enost podle po\u010dtu kan\u00e1l\u016f.","LabelActiveService":"Aktivn\u00ed slu\u017eby:","LabelActiveServiceHelp":"M\u016f\u017ee b\u00fdt nainstalov\u00e1no v\u00edce plugin\u016f pro TV, ale jen jeden m\u016f\u017ee b\u00fdt aktivn\u00ed.","OptionAutomatic":"Auto","LiveTvPluginRequired":"P\u0159ed pokra\u010dov\u00e1n\u00edm je vy\u017eadov\u00e1n plugin TV poskytovatele.","LiveTvPluginRequiredHelp":"Pros\u00edm nainstalujte jeden z dostupn\u00fdch plugin\u016f, jako Next PVR nebo ServerWmc","HeaderCustomizeOptionsPerMediaType":"Upravit nastaven\u00ed podle typu m\u00e9dia","OptionDownloadThumbImage":"Miniatura","OptionDownloadMenuImage":"Nab\u00eddka","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disk","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Zadek","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Prim\u00e1rn\u00ed","HeaderFetchImages":"Na\u010d\u00edst obr\u00e1zky:","HeaderImageSettings":"Nastaven\u00ed obr\u00e1zk\u016f","LabelMaxBackdropsPerItem":"Maxim\u00e1ln\u00ed po\u010det obr\u00e1zk\u016f na pozad\u00ed pro polo\u017eku:","LabelMaxScreenshotsPerItem":"Maxim\u00e1ln\u00ed po\u010det screenshot\u016f:","LabelMinBackdropDownloadWidth":"Maxim\u00e1ln\u00ed \u0161\u00ed\u0159ka pozad\u00ed:","LabelMinScreenshotDownloadWidth":"Minim\u00e1ln\u00ed \u0161\u00ed\u0159ka screenshotu obrazovky:","ButtonAddScheduledTaskTrigger":"P\u0159idat polo\u017eku \u00fakolu","HeaderAddScheduledTaskTrigger":"P\u0159idat polo\u017eku \u00fakolu","ButtonAdd":"P\u0159idat","LabelTriggerType":"Typ \u00fakolu:","OptionDaily":"Denn\u00ed","OptionWeekly":"T\u00fddenn\u00ed","OptionOnInterval":"V intervalu","OptionOnAppStartup":"P\u0159i spu\u0161t\u011bn\u00ed aplikace","OptionAfterSystemEvent":"Po syst\u00e9mov\u00e9 ud\u00e1losti","LabelDay":"Den:","LabelTime":"\u010cas:","LabelEvent":"Ud\u00e1lost:","OptionWakeFromSleep":"Probuzen\u00ed ze sp\u00e1nku","LabelEveryXMinutes":"Ka\u017ed\u00fd:","HeaderTvTuners":"Tunery","HeaderGallery":"Galerie","HeaderLatestGames":"Posledn\u00ed hry","HeaderRecentlyPlayedGames":"Naposled hran\u00e9 hry","TabGameSystems":"Hern\u00ed syst\u00e9my","TitleMediaLibrary":"Knihovna m\u00e9di\u00ed","TabFolders":"Slo\u017eky","TabPathSubstitution":"Nahrazen\u00ed cest","LabelSeasonZeroDisplayName":"Jm\u00e9no pro zobrazen\u00ed sez\u00f3ny 0:","LabelEnableRealtimeMonitor":"Povolit sledov\u00e1n\u00ed v re\u00e1ln\u00e9m \u010dase","LabelEnableRealtimeMonitorHelp":"Zm\u011bny budou zpracov\u00e1ny okam\u017eit\u011b, v podporovan\u00fdch souborov\u00fdch syst\u00e9mech.","ButtonScanLibrary":"Prohledat knihovnu","HeaderNumberOfPlayers":"P\u0159ehr\u00e1va\u010de:","OptionAnyNumberOfPlayers":"Jak\u00fdkoliv","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Slo\u017eky m\u00e9di\u00ed","HeaderThemeVideos":"T\u00e9ma videa","HeaderThemeSongs":"T\u00e9ma skladeb","HeaderScenes":"Sc\u00e9ny","HeaderAwardsAndReviews":"Ocen\u011bn\u00ed a hodnocen\u00ed","HeaderSoundtracks":"Soundtracky","HeaderMusicVideos":"Hudebn\u00ed videa","HeaderSpecialFeatures":"Speci\u00e1ln\u00ed funkce","HeaderCastCrew":"Herci a obsazen\u00ed","HeaderAdditionalParts":"Dal\u0161\u00ed sou\u010d\u00e1sti","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Chyb\u00ed","LabelOffline":"Offline","PathSubstitutionHelp":"Nahrazen\u00ed cest se pou\u017e\u00edv\u00e1 pro namapov\u00e1n\u00ed cest k serveru, kter\u00e9 je p\u0159\u00edstupn\u00e9 u\u017eivateli. Povolen\u00edm p\u0159\u00edm\u00e9ho p\u0159\u00edstupu m\u016f\u017ee umo\u017enit u\u017eivateli jeho p\u0159ehr\u00e1n\u00ed bez u\u017eit\u00ed streamov\u00e1n\u00ed a p\u0159ek\u00f3dov\u00e1n\u00ed servru.","HeaderFrom":"Z","HeaderTo":"Do","LabelFrom":"Z:","LabelFromHelp":"P\u0159\u00edklad: D\\Filmy (na serveru)","LabelTo":"Do:","LabelToHelp":"P\u0159\u00edklad: \\\\MujServer\\Filmy\\ (adres\u00e1\u0159 p\u0159\u00edstupn\u00fd u\u017eivateli)","ButtonAddPathSubstitution":"P\u0159idat p\u0159emapov\u00e1n\u00ed","OptionSpecialEpisode":"Speci\u00e1ln\u00ed","OptionMissingEpisode":"Chyb\u011bj\u00edc\u00ed episody","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Se\u0159azen\u00ed n\u00e1zvu epizod","OptionSeriesSortName":"Jm\u00e9no serie","OptionTvdbRating":"Tvdb hodnocen\u00ed","HeaderTranscodingQualityPreference":"Nastaven\u00ed kvality p\u0159ek\u00f3dov\u00e1n\u00ed_","OptionAutomaticTranscodingHelp":"Server rozhodne kvalitu a rychlost","OptionHighSpeedTranscodingHelp":"Ni\u017e\u0161\u00ed kvalita ale rychlej\u0161\u00ed p\u0159ek\u00f3dov\u00e1n\u00ed","OptionHighQualityTranscodingHelp":"Vy\u0161\u0161\u00ed kvalita ale pomalej\u0161\u00ed p\u0159ek\u00f3dov\u00e1n\u00ed","OptionMaxQualityTranscodingHelp":"Nejlep\u0161\u00ed kvalita, pomal\u00e9 p\u0159ek\u00f3dov\u00e1n\u00ed, velk\u00e1 z\u00e1t\u011b\u017e procesoru.","OptionHighSpeedTranscoding":"Vy\u0161\u0161\u00ed rychlost","OptionHighQualityTranscoding":"Vy\u0161\u0161\u00ed kvalita","OptionMaxQualityTranscoding":"Maxim\u00e1ln\u00ed kvalita","OptionEnableDebugTranscodingLogging":"Povolit z\u00e1znam p\u0159ek\u00f3dov\u00e1n\u00ed (pro debugging)","OptionEnableDebugTranscodingLoggingHelp":"Toto nastaven\u00ed vytv\u00e1\u0159\u00ed velmi velk\u00e9 soubory se z\u00e1znamy a doporu\u010duje se pouze v p\u0159\u00edpad\u011b probl\u00e9m\u016f","OptionUpscaling":"Povolit klient\u016fm po\u017eadovat zv\u011bt\u0161en\u00e1 videa","OptionUpscalingHelp":"V n\u011bkter\u00fdch p\u0159\u00edpadech bude m\u00edt za n\u00e1sledek lep\u0161\u00ed kvalitu obrazu, ale zv\u00fd\u0161\u00ed zat\u00ed\u017een\u00ed CPU.","EditCollectionItemsHelp":"P\u0159idejte nebo odeberte v\u0161echny filmy, seri\u00e1ly, alba, knihy nebo hry, kter\u00e9 chcete seskupit v r\u00e1mci t\u00e9to kolekce.","HeaderAddTitles":"P\u0159idat n\u00e1zvy","LabelEnableDlnaPlayTo":"Povolit DLNA p\u0159ehr\u00e1v\u00e1n\u00ed","LabelEnableDlnaPlayToHelp":"Media Browser um\u00ed detekovat za\u0159\u00edzen\u00ed ve va\u0161\u00ed s\u00edti a nab\u00edz\u00ed mo\u017enost d\u00e1lkov\u00e9ho ovl\u00e1d\u00e1n\u00ed.","LabelEnableDlnaDebugLogging":"Povolit DLNA protokolov\u00e1n\u00ed (pro lad\u011bn\u00ed)","LabelEnableDlnaDebugLoggingHelp":"Toto nastaven\u00ed vytv\u00e1\u0159\u00ed velmi velk\u00e9 soubory se z\u00e1znamy a doporu\u010duje se pouze v p\u0159\u00edpad\u011b probl\u00e9m\u016f","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Ur\u010duje dobu v sekund\u00e1ch v intervalu mezi SSDP vyhled\u00e1v\u00e1n\u00ed prov\u00e1d\u011bn\u00e9 programem Media Browser.","HeaderCustomDlnaProfiles":"Vlastn\u00ed profily","HeaderSystemDlnaProfiles":"Syst\u00e9mov\u00e9 profily","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Hlavn\u00ed nab\u00eddka","TabHome":"Dom\u016f","TabInfo":"Info","HeaderLinks":"Odkazy","HeaderSystemPaths":"Syst\u00e9mov\u00e9 cesty","LinkCommunity":"Komunita","LinkGithub":"GitHub","LinkApiDocumentation":"Dokumentace API","LabelFriendlyServerName":"N\u00e1zev serveru:","LabelFriendlyServerNameHelp":"Toto jm\u00e9no bude pou\u017eito jako identifikace serveru, ponech\u00e1te-li pr\u00e1zdn\u00e9 bude pou\u017eit n\u00e1zev po\u010d\u00edta\u010de.","LabelPreferredDisplayLanguage":"Preferovan\u00fd jazyk zobrazen\u00ed:","LabelPreferredDisplayLanguageHelp":"P\u0159eklad programu Media Browser prob\u00edh\u00e1, a je\u0161t\u011b nen\u00ed dokon\u010den.","LabelReadHowYouCanContribute":"P\u0159e\u010dt\u011bte si o tom, jak m\u016f\u017eete p\u0159isp\u011bt.","HeaderNewCollection":"Nov\u00e1 kolekce","NewCollectionNameExample":"P\u0159\u00edklad: Kolekce Star Wars","OptionSearchForInternetMetadata":"Prohledat internet pro nalezen\u00ed metadat a obalu.","ButtonCreate":"Vytvo\u0159it","LabelHttpServerPortNumber":"\u010c\u00edslo portu pro HTTP:","LabelWebSocketPortNumber":"\u010c\u00edslo portu web socketu:","LabelEnableAutomaticPortHelp":"UPnP umo\u017e\u0148uje nastaven\u00ed automatick\u00e9 routeru pro vzd\u00e1len\u00fd p\u0159\u00edstup. Tato funkce nemus\u00ed fungovat u n\u011bkter\u00fdch model\u016f routeru.","LabelExternalDDNS":"Extern\u00ed DDNS:","LabelExternalDDNSHelp":"Pokud m\u00e1te dynamickou DNS zadejte jej zde. Media Browser aplikace ho pou\u017eije pro vzd\u00e1len\u00fd p\u0159\u00edstup.","TabResume":"P\u0159eru\u0161it","TabWeather":"Po\u010das\u00ed","TitleAppSettings":"Nastaven\u00ed aplikace","LabelMinResumePercentage":"Minim\u00e1ln\u00ed procento pro p\u0159eru\u0161en\u00ed:","LabelMaxResumePercentage":"Maxim\u00e1ln\u00ed procento pro p\u0159eru\u0161en\u00ed:","LabelMinResumeDuration":"Minim\u00e1ln\u00ed doba trv\u00e1n\u00ed (v sekund\u00e1ch):","LabelMinResumePercentageHelp":"Tituly budou ozna\u010deny jako \"nep\u0159ehr\u00e1no\", pokud budou zastaveny p\u0159ed t\u00edmto \u010dasem.","LabelMaxResumePercentageHelp":"Tituly budou ozna\u010deny jako \"p\u0159ehr\u00e1no\", pokud budou zastaveny po tomto \u010dase","LabelMinResumeDurationHelp":"Tituly krat\u0161\u00ed, ne\u017e tento \u010das nebudou pozastaviteln\u00e9."} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/de.json b/MediaBrowser.Server.Implementations/Localization/Server/de.json index 8fa3be2c67..7643bc6671 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/de.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/de.json @@ -1 +1 @@ -{"LabelExit":"Ende","LabelVisitCommunity":"Besuche die Community","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"Zeige API Dokumentation","LabelBrowseLibrary":"Durchsuche Bibliothek","LabelConfigureMediaBrowser":"Konfiguriere Media Browser","LabelOpenLibraryViewer":"\u00d6ffne Bibliothekenansicht","LabelRestartServer":"Server neustarten","LabelShowLogWindow":"Zeige Log Fenster","LabelPrevious":"Vorheriges","LabelFinish":"Ende","LabelNext":"N\u00e4chstes","LabelYoureDone":"Du bist fertig!","WelcomeToMediaBrowser":"Willkommen zu Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Dieser Assistent wird Sie durch den Einrichtungsprozess f\u00fchren.","TellUsAboutYourself":"Sagen Sie uns etwas \u00fcber sich selbst","LabelYourFirstName":"Ihr Vorname:","MoreUsersCanBeAddedLater":"Weitere Benutzer k\u00f6nnen Sie sp\u00e4ter im Dashboard hinzuf\u00fcgen.","UserProfilesIntro":"Media Browser verf\u00fcgt \u00fcber integrierte Benutzer Profile. Verwenden Sie diese Profile um Anzeigeeinstellungen, Abspielstatus und Kinder- und Jugendschutzverwaltung pro Benutzer zu speichern und zu verwalten.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"Ein Windows Service wurde installiert.","WindowsServiceIntro1":"Media Browser Server l\u00e4uft normalerweise als Desktop Applikation mit einem Symbol im System Tray. Sie k\u00f6nnen den Server aber auch als Hintergrunddienst starten. Verwenden Sie die dazu das Windows Service Control Panel..","WindowsServiceIntro2":"Das Service kann nicht zu gleichen Zeit wie die Desktop Applikation laufen. Schliessen Sie daher die Desktop Applikation, bevor Sie das Service starten. Das Service ben\u00f6tigt administrative Privilegien, die Sie \u00fcber die Systemsteuerung einstellen m\u00fcssen. Beachten Sie bitte auch, dass das Service zur Zeit nicht automatisch aktualisiert wird. Neue Versionen m\u00fcssen daher manuell installiert werden.","WizardCompleted":"Das war's f\u00fcrs Erste. Media Browser hat gerade mit dem Sammeln von Informationen \u00fcber Ihre Medien Bibliothek begonnen. Probieren Sie auch unsere anderen Programme aus. Klicken Sie danach auf Abschliessen<\/b> um das Dashboard<\/b> anzuzeigen.","LabelConfigureSettings":"Konfiguriere Einstellungen","LabelEnableVideoImageExtraction":"Aktiviere Videobild-Extrahierung","VideoImageExtractionHelp":"F\u00fcr Videos die noch keien Bilder haben, und f\u00fcr die wir keine Internetbilder finden k\u00f6nnen. Hierdurch wird der erste Bibliothekenscan etwas mehr Zeit beanspruchen, f\u00fchrt aber zu einer ansprechenderen Pr\u00e4sentation.","LabelEnableChapterImageExtractionForMovies":"Extrahiere Kapitelbilder f\u00fcr Filme","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Aktiviere automatische Portweiterleitung","LabelEnableAutomaticPortMappingHelp":"UPnP erm\u00f6glicht die automatische Routerkonfiguration f\u00fcr den einfachen Remote-Zugriff. Diese Option ist nicht f\u00fcr jeden Router verf\u00fcgbar.","ButtonOk":"Ok","ButtonCancel":"Abbrechen","HeaderSetupLibrary":"Medienbibliothek einrichten","ButtonAddMediaFolder":"Medienordner hinzuf\u00fcgen","LabelFolderType":"Ordnertyp:","MediaFolderHelpPluginRequired":"* Ben\u00f6tigt ein Plugin, wie GameBrowser oder MB Bookshelf.","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Land:","LabelLanguage":"Sprache:","HeaderPreferredMetadataLanguage":"Bevorzugte Metadata Sprache:","LabelSaveLocalMetadata":"Speichere Bildmaterial und Metadaten in den Medienodnern","LabelSaveLocalMetadataHelp":"Durch die Speicherung von Bildmaterial und Metadaten direkt in den Medienordnern, befinden sie sich an einem Ort, wo sie sehr leicht bearbeitet werden k\u00f6nnen.","LabelDownloadInternetMetadata":"Lade Bildmaterial und Metadaten aus dem Internet","LabelDownloadInternetMetadataHelp":"Media Browser kann Informationen \u00fcber ihre Medien aus dem Internet abrufen um eine optisch ansprechende Darstellung zu erm\u00f6glichen.","TabPreferences":"Einstellungen","TabPassword":"Passwort","TabLibraryAccess":"Bibliothekenzugriff","TabImage":"Bild","TabProfile":"Profil","LabelDisplayMissingEpisodesWithinSeasons":"Zeige fehlende Episoden innerhalb von Staffeln","LabelUnairedMissingEpisodesWithinSeasons":"Zeige noch nicht ausgestahlte Episoden innerhalb von Staffeln","HeaderVideoPlaybackSettings":"Videowiedergabe Einstellungen","LabelAudioLanguagePreference":"Audiosprache Einstellungen:","LabelSubtitleLanguagePreference":"Untertitelsprache Einstellungen:","LabelDisplayForcedSubtitlesOnly":"Zeige nur erzwungene Untertitel","TabProfiles":"Profile","TabSecurity":"Sicherheit","ButtonAddUser":"User hinzuf\u00fcgen","ButtonSave":"Speichern","ButtonResetPassword":"Passwort zur\u00fccksetzten","LabelNewPassword":"Neues Passwort:","LabelNewPasswordConfirm":"Neues Passwort wiederhohlen:","HeaderCreatePassword":"Erstelle Passwort","LabelCurrentPassword":"Aktuelles Passwort:","LabelMaxParentalRating":"H\u00f6chste erlaubte elterlich Bewertung:","MaxParentalRatingHelp":"Inhalt mit einer h\u00f6heren Bewertung wird dem User nicht angezeigt.","LibraryAccessHelp":"W\u00e4hlen Sie die Medienordner die Sie mit diesem Benutzer teilen m\u00f6chten. Administratoren k\u00f6nnen den Metadata-Manager verwenden um alle Ordner zu bearbeiten.","ButtonDeleteImage":"L\u00f6sche Bild","ButtonUpload":"Hochladen","HeaderUploadNewImage":"Neues Bild hochladen","LabelDropImageHere":"Bild hierher ziehen","ImageUploadAspectRatioHelp":"1:1 Seitenverh\u00e4ltnis empfohlen. Nur JPG\/PNG.","MessageNothingHere":"Nichts hier.","MessagePleaseEnsureInternetMetadata":"Bitte sicherstellen, dass das Herunterladen von Internet Metadaten aktiviert ist.","TabSuggested":"Vorgeschlagen","TabLatest":"Letzte","TabUpcoming":"Bevorstehend","TabShows":"Shows","TabEpisodes":"Episoden","TabGenres":"Genres","TabPeople":"Menschen","TabNetworks":"Sendergruppen","HeaderUsers":"Benutzer","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favoriten","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Darsteller","OptionGuestStars":"Gaststar","OptionDirectors":"Regisseur","OptionWriters":"Drehbuchautor","OptionProducers":"Produzent","HeaderResume":"Fortsetzen","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Neueste Episoden","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Alben","TabArtists":"Interpreten","TabAlbumArtists":"Album Interpreten","TabMusicVideos":"Musikvideos","ButtonSort":"Sortieren","HeaderSortBy":"Sortiert nach","HeaderSortOrder":"Sortierreihenfolge","OptionPlayed":"gespielt","OptionUnplayed":"nicht gespielt","OptionAscending":"Aufsteigend","OptionDescending":"Absteigend","OptionRuntime":"Dauer","OptionReleaseDate":"Erscheinungstermin","OptionPlayCount":"Z\u00e4hler","OptionDatePlayed":"Abgespielt am","OptionDateAdded":"Hinzugef\u00fcgt am","OptionAlbumArtist":"Album Interpret","OptionArtist":"Interpret","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Kann fortgesetzt werden","ScheduledTasksHelp":"Klicken Sie auf eine Aufgabe um den Zeitplan zu \u00e4ndern.","ScheduledTasksTitle":"Geplante Aufgaben","TabMyPlugins":"Meine Plugins","TabCatalog":"Katalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatische Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Aktuelle Wiedergabe","HeaderLatestAlbums":"Neueste Alben","HeaderLatestSongs":"Neueste Songs","HeaderRecentlyPlayed":"Zuletzt gespielt","HeaderFrequentlyPlayed":"Oft gespielt","DevBuildWarning":"Dev Builds sind experimentell. Diese sehr oft ver\u00f6ffentlichten Builds sind nicht getestet. Das Programm kann abst\u00fcrzen und m\u00f6glicherweise k\u00f6nnen einzelne Funktionen nicht funktionieren.","LabelVideoType":"Video Typ:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"Merkmal:","OptionHasSubtitles":"Untertitel","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Titellied","OptionHasThemeVideo":"Theme Video","TabMovies":"Filme","TabStudios":"Studios","TabTrailers":"Trailer","HeaderLatestMovies":"Neueste Filme","HeaderLatestTrailers":"Neueste Trailer","OptionHasSpecialFeatures":"Besonderes Merkmal","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Altersfreigabe","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sonntag","OptionMonday":"Montag","OptionTuesday":"Dienstag","OptionWednesday":"Mittwoch","OptionThursday":"Donnerstag","OptionFriday":"Freitag","OptionSaturday":"Samstag","HeaderManagement":"Management:","OptionMissingImdbId":"Fehlende IMDb Id","OptionMissingTvdbId":"Fehlende TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"\u00dcber","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Werde ein Unterst\u00fctzer","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Verwenden Sie die Knowledge Base als Hilfe, um das Optimum aus Media Browser herauszuholen.","SearchKnowledgeBase":"Durchsuche die Knowledge Base","VisitTheCommunity":"Besuche die Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Verberge diesen Benutzer in den Anmelde-Bildschirmen","OptionDisableUser":"Sperre diesen Benutzer","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Dieser Benutzer kann den Server managen","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Fehlende Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Ausw\u00e4hlen","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Release","OptionBeta":"Beta","OptionDev":"Dev","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"Der Server startet nur in benutzerfreien Leerlaufzeiten neu.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Starte Server beim hochfahren.","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"W\u00e4hle Verzeichnis","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache Pfad:","LabelCachePathHelp":"Dieser Ordner beinhaltet Server Cache Dateien, wie z.B. Bilddateien.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"Dieser Ordner beinhaltet Schauspieler, K\u00fcnstler, Genre und Studio Bilder.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Spiele","TabMusic":"Musik","TabOthers":"Andere","HeaderExtractChapterImagesFor":"Speichere Kapitelbilder f\u00fcr:","OptionMovies":"Filme","OptionEpisodes":"Episoden","OptionOtherVideos":"Andere Filme","TitleMetadata":"Metadaten","LabelAutomaticUpdatesFanart":"Aktiviere automatische Updates von FanArt.tv","LabelAutomaticUpdatesTmdb":"Aktiviere automatische Updates von TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Aktiviere automatische Updates von TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Falls aktviert, werden Bilder die unter fanart.tv neu hinzugef\u00fcgt wurden, automatisch geladen. Vorhandene Bilder werden nicht ersetzt.","LabelAutomaticUpdatesTmdbHelp":"Falls aktviert, werden Bilder die unter TheMovieDB.org neu hinzugef\u00fcgt wurden, automatisch geladen. Vorhandene Bilder werden nicht ersetzt.","LabelAutomaticUpdatesTvdbHelp":"Falls aktviert, werden Bilder die unter TheTVDB.com neu hinzugef\u00fcgt wurden, automatisch geladen. Vorhandene Bilder werden nicht ersetzt.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Bevorzugte Sprache:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"Benutzer:","LabelPassword":"Passwort:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Aufnahmen","TabScheduled":"Geplant","TabSeries":"Serie","ButtonCancelRecording":"Aufnahme abbrechen","HeaderPrePostPadding":"Pufferzeit vor\/nach der Aufnahme","LabelPrePaddingMinutes":"Minuten vor der Aufnahme","OptionPrePaddingRequired":"Die Pufferzeit vor der Aufnahme ist notwendig um aufzunehmen","LabelPostPaddingMinutes":"Pufferminuten nach der Aufnahme","OptionPostPaddingRequired":"Die Pufferzeit nach der Aufnahme ist notwendig um aufzunehmen","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Einstellungen","ButtonRefreshGuideData":"Aktualisiere TV-Guide Daten","OptionPriority":"Priorit\u00e4t","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Nehme nur neue Episoden auf","HeaderDays":"Tage","HeaderActiveRecordings":"Aktive Aufnahmen","HeaderLatestRecordings":"Letzte Aufnahmen","HeaderAllRecordings":"Alle Aufnahmen","ButtonPlay":"Abspielen","ButtonEdit":"Bearbeiten","ButtonRecord":"Aufnehmen","ButtonDelete":"L\u00f6schen","OptionRecordSeries":"Nehme Serie auf","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Ende","LabelVisitCommunity":"Besuche die Community","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"Zeige API Dokumentation","LabelBrowseLibrary":"Durchsuche Bibliothek","LabelConfigureMediaBrowser":"Konfiguriere Media Browser","LabelOpenLibraryViewer":"\u00d6ffne Bibliothekenansicht","LabelRestartServer":"Server neustarten","LabelShowLogWindow":"Zeige Log Fenster","LabelPrevious":"Vorheriges","LabelFinish":"Ende","LabelNext":"N\u00e4chstes","LabelYoureDone":"Du bist fertig!","WelcomeToMediaBrowser":"Willkommen zu Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Dieser Assistent wird Sie durch den Einrichtungsprozess f\u00fchren.","TellUsAboutYourself":"Sagen Sie uns etwas \u00fcber sich selbst","LabelYourFirstName":"Ihr Vorname:","MoreUsersCanBeAddedLater":"Weitere Benutzer k\u00f6nnen Sie sp\u00e4ter im Dashboard hinzuf\u00fcgen.","UserProfilesIntro":"Media Browser verf\u00fcgt \u00fcber integrierte Benutzer Profile. Verwenden Sie diese Profile um Anzeigeeinstellungen, Abspielstatus und Kinder- und Jugendschutzverwaltung pro Benutzer zu speichern und zu verwalten.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"Ein Windows Service wurde installiert.","WindowsServiceIntro1":"Media Browser Server l\u00e4uft normalerweise als Desktop Applikation mit einem Symbol im System Tray. Sie k\u00f6nnen den Server aber auch als Hintergrunddienst starten. Verwenden Sie die dazu das Windows Service Control Panel..","WindowsServiceIntro2":"Das Service kann nicht zu gleichen Zeit wie die Desktop Applikation laufen. Schliessen Sie daher die Desktop Applikation, bevor Sie das Service starten. Das Service ben\u00f6tigt administrative Privilegien, die Sie \u00fcber die Systemsteuerung einstellen m\u00fcssen. Beachten Sie bitte auch, dass das Service zur Zeit nicht automatisch aktualisiert wird. Neue Versionen m\u00fcssen daher manuell installiert werden.","WizardCompleted":"Das war's f\u00fcrs Erste. Media Browser hat gerade mit dem Sammeln von Informationen \u00fcber Ihre Medien Bibliothek begonnen. Probieren Sie auch unsere anderen Programme aus. Klicken Sie danach auf Abschliessen<\/b> um das Dashboard<\/b> anzuzeigen.","LabelConfigureSettings":"Konfiguriere Einstellungen","LabelEnableVideoImageExtraction":"Aktiviere Videobild-Extrahierung","VideoImageExtractionHelp":"F\u00fcr Videos die noch keien Bilder haben, und f\u00fcr die wir keine Internetbilder finden k\u00f6nnen. Hierdurch wird der erste Bibliothekenscan etwas mehr Zeit beanspruchen, f\u00fchrt aber zu einer ansprechenderen Pr\u00e4sentation.","LabelEnableChapterImageExtractionForMovies":"Extrahiere Kapitelbilder f\u00fcr Filme","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Aktiviere automatische Portweiterleitung","LabelEnableAutomaticPortMappingHelp":"UPnP erm\u00f6glicht die automatische Routerkonfiguration f\u00fcr den einfachen Remote-Zugriff. Diese Option ist nicht f\u00fcr jeden Router verf\u00fcgbar.","ButtonOk":"Ok","ButtonCancel":"Abbrechen","ButtonNew":"New","HeaderSetupLibrary":"Medienbibliothek einrichten","ButtonAddMediaFolder":"Medienordner hinzuf\u00fcgen","LabelFolderType":"Ordnertyp:","MediaFolderHelpPluginRequired":"* Ben\u00f6tigt ein Plugin, wie GameBrowser oder MB Bookshelf.","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Land:","LabelLanguage":"Sprache:","HeaderPreferredMetadataLanguage":"Bevorzugte Metadata Sprache:","LabelSaveLocalMetadata":"Speichere Bildmaterial und Metadaten in den Medienodnern","LabelSaveLocalMetadataHelp":"Durch die Speicherung von Bildmaterial und Metadaten direkt in den Medienordnern, befinden sie sich an einem Ort, wo sie sehr leicht bearbeitet werden k\u00f6nnen.","LabelDownloadInternetMetadata":"Lade Bildmaterial und Metadaten aus dem Internet","LabelDownloadInternetMetadataHelp":"Media Browser kann Informationen \u00fcber ihre Medien aus dem Internet abrufen um eine optisch ansprechende Darstellung zu erm\u00f6glichen.","TabPreferences":"Einstellungen","TabPassword":"Passwort","TabLibraryAccess":"Bibliothekenzugriff","TabImage":"Bild","TabProfile":"Profil","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Zeige fehlende Episoden innerhalb von Staffeln","LabelUnairedMissingEpisodesWithinSeasons":"Zeige noch nicht ausgestahlte Episoden innerhalb von Staffeln","HeaderVideoPlaybackSettings":"Videowiedergabe Einstellungen","LabelAudioLanguagePreference":"Audiosprache Einstellungen:","LabelSubtitleLanguagePreference":"Untertitelsprache Einstellungen:","LabelDisplayForcedSubtitlesOnly":"Zeige nur erzwungene Untertitel","TabProfiles":"Profile","TabSecurity":"Sicherheit","ButtonAddUser":"User hinzuf\u00fcgen","ButtonSave":"Speichern","ButtonResetPassword":"Passwort zur\u00fccksetzten","LabelNewPassword":"Neues Passwort:","LabelNewPasswordConfirm":"Neues Passwort wiederhohlen:","HeaderCreatePassword":"Erstelle Passwort","LabelCurrentPassword":"Aktuelles Passwort:","LabelMaxParentalRating":"H\u00f6chste erlaubte elterlich Bewertung:","MaxParentalRatingHelp":"Inhalt mit einer h\u00f6heren Bewertung wird dem User nicht angezeigt.","LibraryAccessHelp":"W\u00e4hlen Sie die Medienordner die Sie mit diesem Benutzer teilen m\u00f6chten. Administratoren k\u00f6nnen den Metadata-Manager verwenden um alle Ordner zu bearbeiten.","ButtonDeleteImage":"L\u00f6sche Bild","ButtonUpload":"Hochladen","HeaderUploadNewImage":"Neues Bild hochladen","LabelDropImageHere":"Bild hierher ziehen","ImageUploadAspectRatioHelp":"1:1 Seitenverh\u00e4ltnis empfohlen. Nur JPG\/PNG.","MessageNothingHere":"Nichts hier.","MessagePleaseEnsureInternetMetadata":"Bitte sicherstellen, dass das Herunterladen von Internet Metadaten aktiviert ist.","TabSuggested":"Vorgeschlagen","TabLatest":"Letzte","TabUpcoming":"Bevorstehend","TabShows":"Shows","TabEpisodes":"Episoden","TabGenres":"Genres","TabPeople":"Menschen","TabNetworks":"Sendergruppen","HeaderUsers":"Benutzer","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favoriten","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Darsteller","OptionGuestStars":"Gaststar","OptionDirectors":"Regisseur","OptionWriters":"Drehbuchautor","OptionProducers":"Produzent","HeaderResume":"Fortsetzen","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Neueste Episoden","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Alben","TabArtists":"Interpreten","TabAlbumArtists":"Album Interpreten","TabMusicVideos":"Musikvideos","ButtonSort":"Sortieren","HeaderSortBy":"Sortiert nach","HeaderSortOrder":"Sortierreihenfolge","OptionPlayed":"gespielt","OptionUnplayed":"nicht gespielt","OptionAscending":"Aufsteigend","OptionDescending":"Absteigend","OptionRuntime":"Dauer","OptionReleaseDate":"Erscheinungstermin","OptionPlayCount":"Z\u00e4hler","OptionDatePlayed":"Abgespielt am","OptionDateAdded":"Hinzugef\u00fcgt am","OptionAlbumArtist":"Album Interpret","OptionArtist":"Interpret","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Kann fortgesetzt werden","ScheduledTasksHelp":"Klicken Sie auf eine Aufgabe um den Zeitplan zu \u00e4ndern.","ScheduledTasksTitle":"Geplante Aufgaben","TabMyPlugins":"Meine Plugins","TabCatalog":"Katalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatische Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Aktuelle Wiedergabe","HeaderLatestAlbums":"Neueste Alben","HeaderLatestSongs":"Neueste Songs","HeaderRecentlyPlayed":"Zuletzt gespielt","HeaderFrequentlyPlayed":"Oft gespielt","DevBuildWarning":"Dev Builds sind experimentell. Diese sehr oft ver\u00f6ffentlichten Builds sind nicht getestet. Das Programm kann abst\u00fcrzen und m\u00f6glicherweise k\u00f6nnen einzelne Funktionen nicht funktionieren.","LabelVideoType":"Video Typ:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"Merkmal:","OptionHasSubtitles":"Untertitel","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Titellied","OptionHasThemeVideo":"Theme Video","TabMovies":"Filme","TabStudios":"Studios","TabTrailers":"Trailer","HeaderLatestMovies":"Neueste Filme","HeaderLatestTrailers":"Neueste Trailer","OptionHasSpecialFeatures":"Besonderes Merkmal","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Altersfreigabe","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sonntag","OptionMonday":"Montag","OptionTuesday":"Dienstag","OptionWednesday":"Mittwoch","OptionThursday":"Donnerstag","OptionFriday":"Freitag","OptionSaturday":"Samstag","HeaderManagement":"Management:","OptionMissingImdbId":"Fehlende IMDb Id","OptionMissingTvdbId":"Fehlende TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"\u00dcber","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Werde ein Unterst\u00fctzer","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Verwenden Sie die Knowledge Base als Hilfe, um das Optimum aus Media Browser herauszuholen.","SearchKnowledgeBase":"Durchsuche die Knowledge Base","VisitTheCommunity":"Besuche die Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Verberge diesen Benutzer in den Anmelde-Bildschirmen","OptionDisableUser":"Sperre diesen Benutzer","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Dieser Benutzer kann den Server managen","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Fehlende Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Ausw\u00e4hlen","ButtonSearch":"Search","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Release","OptionBeta":"Beta","OptionDev":"Dev","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"Der Server startet nur in benutzerfreien Leerlaufzeiten neu.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Starte Server beim hochfahren.","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"W\u00e4hle Verzeichnis","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache Pfad:","LabelCachePathHelp":"Dieser Ordner beinhaltet Server Cache Dateien, wie z.B. Bilddateien.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"Dieser Ordner beinhaltet Schauspieler, K\u00fcnstler, Genre und Studio Bilder.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Spiele","TabMusic":"Musik","TabOthers":"Andere","HeaderExtractChapterImagesFor":"Speichere Kapitelbilder f\u00fcr:","OptionMovies":"Filme","OptionEpisodes":"Episoden","OptionOtherVideos":"Andere Filme","TitleMetadata":"Metadaten","LabelAutomaticUpdatesFanart":"Aktiviere automatische Updates von FanArt.tv","LabelAutomaticUpdatesTmdb":"Aktiviere automatische Updates von TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Aktiviere automatische Updates von TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Falls aktviert, werden Bilder die unter fanart.tv neu hinzugef\u00fcgt wurden, automatisch geladen. Vorhandene Bilder werden nicht ersetzt.","LabelAutomaticUpdatesTmdbHelp":"Falls aktviert, werden Bilder die unter TheMovieDB.org neu hinzugef\u00fcgt wurden, automatisch geladen. Vorhandene Bilder werden nicht ersetzt.","LabelAutomaticUpdatesTvdbHelp":"Falls aktviert, werden Bilder die unter TheTVDB.com neu hinzugef\u00fcgt wurden, automatisch geladen. Vorhandene Bilder werden nicht ersetzt.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Bevorzugte Sprache:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"Benutzer:","LabelPassword":"Passwort:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Aufnahmen","TabScheduled":"Geplant","TabSeries":"Serie","ButtonCancelRecording":"Aufnahme abbrechen","HeaderPrePostPadding":"Pufferzeit vor\/nach der Aufnahme","LabelPrePaddingMinutes":"Minuten vor der Aufnahme","OptionPrePaddingRequired":"Die Pufferzeit vor der Aufnahme ist notwendig um aufzunehmen","LabelPostPaddingMinutes":"Pufferminuten nach der Aufnahme","OptionPostPaddingRequired":"Die Pufferzeit nach der Aufnahme ist notwendig um aufzunehmen","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Einstellungen","ButtonRefreshGuideData":"Aktualisiere TV-Guide Daten","OptionPriority":"Priorit\u00e4t","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Nehme nur neue Episoden auf","HeaderDays":"Tage","HeaderActiveRecordings":"Aktive Aufnahmen","HeaderLatestRecordings":"Letzte Aufnahmen","HeaderAllRecordings":"Alle Aufnahmen","ButtonPlay":"Abspielen","ButtonEdit":"Bearbeiten","ButtonRecord":"Aufnehmen","ButtonDelete":"L\u00f6schen","ButtonRemove":"Remove","OptionRecordSeries":"Nehme Serie auf","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/el.json b/MediaBrowser.Server.Implementations/Localization/Server/el.json index 6404c58df7..88b95b26ca 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/el.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/el.json @@ -1 +1 @@ -{"LabelExit":"\u03ad\u03be\u03bf\u03b4\u03bf\u03c2","LabelVisitCommunity":"\u0395\u03c0\u03af\u03c3\u03ba\u03b5\u03c8\u03b7 \u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"\u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf","LabelViewApiDocumentation":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae Api \u03a4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7","LabelBrowseLibrary":"\u03c0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7","LabelConfigureMediaBrowser":"\u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Media Browser","LabelOpenLibraryViewer":"\u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b8\u03b5\u03b1\u03c4\u03ae","LabelRestartServer":"\u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae","LabelShowLogWindow":"\u0394\u03b5\u03af\u03c7\u03bd\u03bf\u03c5\u03bd \u03c4\u03bf \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf","LabelPrevious":"\u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2","LabelFinish":"\u03c4\u03ad\u03bb\u03bf\u03c2","LabelNext":"\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 ","LabelYoureDone":"\u03a4\u03b5\u03bb\u03b5\u03b9\u03ce\u03c3\u03b1\u03c4\u03b5","WelcomeToMediaBrowser":"Welcome to Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"This wizard will help guide you through the setup process.","TellUsAboutYourself":"Tell us about yourself","LabelYourFirstName":"Your first name:","MoreUsersCanBeAddedLater":"More users can be added later within the Dashboard.","UserProfilesIntro":"Media Browser includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"A Windows Service has been installed.","WindowsServiceIntro1":"Media Browser Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"Configure settings","LabelEnableVideoImageExtraction":"Enable video image extraction","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"Ok","ButtonCancel":"Cancel","HeaderSetupLibrary":"Setup your media library","ButtonAddMediaFolder":"Add media folder","LabelFolderType":"Folder type:","MediaFolderHelpPluginRequired":"* Requires the use of a plugin, e.g. GameBrowser or MB Bookshelf.","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Country:","LabelLanguage":"Language:","HeaderPreferredMetadataLanguage":"Preferred metadata language:","LabelSaveLocalMetadata":"Save artwork and metadata into media folders","LabelSaveLocalMetadataHelp":"Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.","LabelDownloadInternetMetadata":"Download artwork and metadata from the internet","LabelDownloadInternetMetadataHelp":"Media Browser can download information about your media to enable rich presentations.","TabPreferences":"Preferences","TabPassword":"Password","TabLibraryAccess":"Library Access","TabImage":"Image","TabProfile":"Profile","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"Video Playback Settings","LabelAudioLanguagePreference":"Audio language preference:","LabelSubtitleLanguagePreference":"Subtitle language preference:","LabelDisplayForcedSubtitlesOnly":"Display only forced subtitles","TabProfiles":"Profiles","TabSecurity":"Security","ButtonAddUser":"Add User","ButtonSave":"Save","ButtonResetPassword":"Reset Password","LabelNewPassword":"New password:","LabelNewPasswordConfirm":"New password confirm:","HeaderCreatePassword":"Create Password","LabelCurrentPassword":"Current password:","LabelMaxParentalRating":"Maximum allowed parental rating:","MaxParentalRatingHelp":"Content with a higher rating will be hidden from this user.","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"Delete Image","ButtonUpload":"Upload","HeaderUploadNewImage":"Upload New Image","LabelDropImageHere":"Drop Image Here","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Nothing here.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"Suggested","TabLatest":"Latest","TabUpcoming":"Upcoming","TabShows":"Shows","TabEpisodes":"Episodes","TabGenres":"Genres","TabPeople":"People","TabNetworks":"Networks","HeaderUsers":"Users","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favorites","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Actors","OptionGuestStars":"Guest Stars","OptionDirectors":"Directors","OptionWriters":"Writers","OptionProducers":"Producers","HeaderResume":"Resume","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Latest Episodes","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artists","TabAlbumArtists":"Album Artists","TabMusicVideos":"Music Videos","ButtonSort":"Sort","HeaderSortBy":"Sort By:","HeaderSortOrder":"Sort Order:","OptionPlayed":"Played","OptionUnplayed":"Unplayed","OptionAscending":"Ascending","OptionDescending":"Descending","OptionRuntime":"Runtime","OptionReleaseDate":"Release Date","OptionPlayCount":"Play Count","OptionDatePlayed":"Date Played","OptionDateAdded":"Date Added","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Official Release","OptionBeta":"Beta","OptionDev":"Dev (Unstable)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"\u03ad\u03be\u03bf\u03b4\u03bf\u03c2","LabelVisitCommunity":"\u0395\u03c0\u03af\u03c3\u03ba\u03b5\u03c8\u03b7 \u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"\u03c0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf","LabelViewApiDocumentation":"\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae Api \u03a4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7","LabelBrowseLibrary":"\u03c0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7","LabelConfigureMediaBrowser":"\u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Media Browser","LabelOpenLibraryViewer":"\u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b8\u03b5\u03b1\u03c4\u03ae","LabelRestartServer":"\u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae","LabelShowLogWindow":"\u0394\u03b5\u03af\u03c7\u03bd\u03bf\u03c5\u03bd \u03c4\u03bf \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf","LabelPrevious":"\u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2","LabelFinish":"\u03c4\u03ad\u03bb\u03bf\u03c2","LabelNext":"\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 ","LabelYoureDone":"\u03a4\u03b5\u03bb\u03b5\u03b9\u03ce\u03c3\u03b1\u03c4\u03b5","WelcomeToMediaBrowser":"\u039a\u03b1\u03bb\u03ce\u03c2 \u03ae\u03c1\u03b8\u03b1\u03c4\u03b5 \u03c3\u03c4\u03bf Media Browser","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"This wizard will help guide you through the setup process.","TellUsAboutYourself":"\u03a0\u03b5\u03af\u03c4\u03b5 \u03bc\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2","LabelYourFirstName":"\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2","MoreUsersCanBeAddedLater":"More users can be added later within the Dashboard.","UserProfilesIntro":"Media Browser includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.","LabelWindowsService":"\u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 Windows","AWindowsServiceHasBeenInstalled":"A Windows Service has been installed.","WindowsServiceIntro1":"Media Browser Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"Configure settings","LabelEnableVideoImageExtraction":"Enable video image extraction","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"Ok","ButtonCancel":"Cancel","ButtonNew":"New","HeaderSetupLibrary":"Setup your media library","ButtonAddMediaFolder":"Add media folder","LabelFolderType":"Folder type:","MediaFolderHelpPluginRequired":"* Requires the use of a plugin, e.g. GameBrowser or MB Bookshelf.","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Country:","LabelLanguage":"Language:","HeaderPreferredMetadataLanguage":"Preferred metadata language:","LabelSaveLocalMetadata":"Save artwork and metadata into media folders","LabelSaveLocalMetadataHelp":"Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.","LabelDownloadInternetMetadata":"Download artwork and metadata from the internet","LabelDownloadInternetMetadataHelp":"Media Browser can download information about your media to enable rich presentations.","TabPreferences":"Preferences","TabPassword":"Password","TabLibraryAccess":"Library Access","TabImage":"Image","TabProfile":"Profile","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"Video Playback Settings","LabelAudioLanguagePreference":"Audio language preference:","LabelSubtitleLanguagePreference":"Subtitle language preference:","LabelDisplayForcedSubtitlesOnly":"Display only forced subtitles","TabProfiles":"Profiles","TabSecurity":"Security","ButtonAddUser":"Add User","ButtonSave":"Save","ButtonResetPassword":"Reset Password","LabelNewPassword":"New password:","LabelNewPasswordConfirm":"New password confirm:","HeaderCreatePassword":"Create Password","LabelCurrentPassword":"Current password:","LabelMaxParentalRating":"Maximum allowed parental rating:","MaxParentalRatingHelp":"Content with a higher rating will be hidden from this user.","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"Delete Image","ButtonUpload":"Upload","HeaderUploadNewImage":"Upload New Image","LabelDropImageHere":"Drop Image Here","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Nothing here.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"Suggested","TabLatest":"Latest","TabUpcoming":"Upcoming","TabShows":"Shows","TabEpisodes":"Episodes","TabGenres":"Genres","TabPeople":"People","TabNetworks":"Networks","HeaderUsers":"Users","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favorites","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Actors","OptionGuestStars":"Guest Stars","OptionDirectors":"Directors","OptionWriters":"Writers","OptionProducers":"Producers","HeaderResume":"Resume","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Latest Episodes","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artists","TabAlbumArtists":"Album Artists","TabMusicVideos":"Music Videos","ButtonSort":"Sort","HeaderSortBy":"Sort By:","HeaderSortOrder":"Sort Order:","OptionPlayed":"Played","OptionUnplayed":"Unplayed","OptionAscending":"Ascending","OptionDescending":"Descending","OptionRuntime":"Runtime","OptionReleaseDate":"Release Date","OptionPlayCount":"Play Count","OptionDatePlayed":"Date Played","OptionDateAdded":"Date Added","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonSearch":"Search","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"\u0397 \u03b5\u03c0\u03af\u03c3\u03b7\u03bc\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7","OptionBeta":"\u03b2\u03ae\u03c4\u03b1","OptionDev":"\u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 (\u03b1\u03c3\u03c4\u03b1\u03b8\u03ae\u03c2)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","ButtonRemove":"Remove","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/en_GB.json b/MediaBrowser.Server.Implementations/Localization/Server/en_GB.json index 5c22e82c86..0d94484cf7 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/en_GB.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/en_GB.json @@ -1 +1 @@ -{"LabelExit":"Exit","LabelVisitCommunity":"Visit Community","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"View Api Documentation","LabelBrowseLibrary":"Browse Library","LabelConfigureMediaBrowser":"Configure Media Browser","LabelOpenLibraryViewer":"Open Library Viewer","LabelRestartServer":"Restart Server","LabelShowLogWindow":"Show Log Window","LabelPrevious":"Previous","LabelFinish":"Finish","LabelNext":"Next","LabelYoureDone":"You're Done!","WelcomeToMediaBrowser":"Welcome to Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"This wizard will help guide you through the setup process.","TellUsAboutYourself":"Tell us about yourself","LabelYourFirstName":"Your first name:","MoreUsersCanBeAddedLater":"More users can be added later within the Dashboard.","UserProfilesIntro":"Media Browser includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"A Windows Service has been installed.","WindowsServiceIntro1":"Media Browser Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"Configure settings","LabelEnableVideoImageExtraction":"Enable video image extraction","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"Ok","ButtonCancel":"Cancel","HeaderSetupLibrary":"Setup your media library","ButtonAddMediaFolder":"Add media folder","LabelFolderType":"Folder type:","MediaFolderHelpPluginRequired":"* Requires the use of a plugin, e.g. GameBrowser or MB Bookshelf.","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Country:","LabelLanguage":"Language:","HeaderPreferredMetadataLanguage":"Preferred metadata language:","LabelSaveLocalMetadata":"Save artwork and metadata into media folders","LabelSaveLocalMetadataHelp":"Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.","LabelDownloadInternetMetadata":"Download artwork and metadata from the internet","LabelDownloadInternetMetadataHelp":"Media Browser can download information about your media to enable rich presentations.","TabPreferences":"Preferences","TabPassword":"Password","TabLibraryAccess":"Library Access","TabImage":"Image","TabProfile":"Profile","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"Video Playback Settings","LabelAudioLanguagePreference":"Audio language preference:","LabelSubtitleLanguagePreference":"Subtitle language preference:","LabelDisplayForcedSubtitlesOnly":"Display only forced subtitles","TabProfiles":"Profiles","TabSecurity":"Security","ButtonAddUser":"Add User","ButtonSave":"Save","ButtonResetPassword":"Reset Password","LabelNewPassword":"New password:","LabelNewPasswordConfirm":"New password confirm:","HeaderCreatePassword":"Create Password","LabelCurrentPassword":"Current password:","LabelMaxParentalRating":"Maximum allowed parental rating:","MaxParentalRatingHelp":"Content with a higher rating will be hidden from this user.","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"Delete Image","ButtonUpload":"Upload","HeaderUploadNewImage":"Upload New Image","LabelDropImageHere":"Drop Image Here","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Nothing here.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"Suggested","TabLatest":"Latest","TabUpcoming":"Upcoming","TabShows":"Shows","TabEpisodes":"Episodes","TabGenres":"Genres","TabPeople":"People","TabNetworks":"Networks","HeaderUsers":"Users","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favourites","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Actors","OptionGuestStars":"Guest Stars","OptionDirectors":"Directors","OptionWriters":"Writers","OptionProducers":"Producers","HeaderResume":"Resume","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Latest Episodes","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artists","TabAlbumArtists":"Album Artists","TabMusicVideos":"Music Videos","ButtonSort":"Sort","HeaderSortBy":"Sort By:","HeaderSortOrder":"Sort Order:","OptionPlayed":"Played","OptionUnplayed":"Unplayed","OptionAscending":"Ascending","OptionDescending":"Descending","OptionRuntime":"Runtime","OptionReleaseDate":"Release Date","OptionPlayCount":"Play Count","OptionDatePlayed":"Date Played","OptionDateAdded":"Date Added","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilise:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Official Release","OptionBeta":"Beta","OptionDev":"Dev (Unstable)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognises images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record programme on all channels","OptionRecordAnytime":"Record programme at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Exit","LabelVisitCommunity":"Visit Community","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"View Api Documentation","LabelBrowseLibrary":"Browse Library","LabelConfigureMediaBrowser":"Configure Media Browser","LabelOpenLibraryViewer":"Open Library Viewer","LabelRestartServer":"Restart Server","LabelShowLogWindow":"Show Log Window","LabelPrevious":"Previous","LabelFinish":"Finish","LabelNext":"Next","LabelYoureDone":"You're Done!","WelcomeToMediaBrowser":"Welcome to Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"This wizard will help guide you through the setup process.","TellUsAboutYourself":"Tell us about yourself","LabelYourFirstName":"Your first name:","MoreUsersCanBeAddedLater":"More users can be added later within the Dashboard.","UserProfilesIntro":"Media Browser includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"A Windows Service has been installed.","WindowsServiceIntro1":"Media Browser Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"Configure settings","LabelEnableVideoImageExtraction":"Enable video image extraction","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"Ok","ButtonCancel":"Cancel","ButtonNew":"New","HeaderSetupLibrary":"Setup your media library","ButtonAddMediaFolder":"Add media folder","LabelFolderType":"Folder type:","MediaFolderHelpPluginRequired":"* Requires the use of a plugin, e.g. GameBrowser or MB Bookshelf.","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Country:","LabelLanguage":"Language:","HeaderPreferredMetadataLanguage":"Preferred metadata language:","LabelSaveLocalMetadata":"Save artwork and metadata into media folders","LabelSaveLocalMetadataHelp":"Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.","LabelDownloadInternetMetadata":"Download artwork and metadata from the internet","LabelDownloadInternetMetadataHelp":"Media Browser can download information about your media to enable rich presentations.","TabPreferences":"Preferences","TabPassword":"Password","TabLibraryAccess":"Library Access","TabImage":"Image","TabProfile":"Profile","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"Video Playback Settings","LabelAudioLanguagePreference":"Audio language preference:","LabelSubtitleLanguagePreference":"Subtitle language preference:","LabelDisplayForcedSubtitlesOnly":"Display only forced subtitles","TabProfiles":"Profiles","TabSecurity":"Security","ButtonAddUser":"Add User","ButtonSave":"Save","ButtonResetPassword":"Reset Password","LabelNewPassword":"New password:","LabelNewPasswordConfirm":"New password confirm:","HeaderCreatePassword":"Create Password","LabelCurrentPassword":"Current password:","LabelMaxParentalRating":"Maximum allowed parental rating:","MaxParentalRatingHelp":"Content with a higher rating will be hidden from this user.","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"Delete Image","ButtonUpload":"Upload","HeaderUploadNewImage":"Upload New Image","LabelDropImageHere":"Drop Image Here","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Nothing here.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"Suggested","TabLatest":"Latest","TabUpcoming":"Upcoming","TabShows":"Shows","TabEpisodes":"Episodes","TabGenres":"Genres","TabPeople":"People","TabNetworks":"Networks","HeaderUsers":"Users","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favourites","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Actors","OptionGuestStars":"Guest Stars","OptionDirectors":"Directors","OptionWriters":"Writers","OptionProducers":"Producers","HeaderResume":"Resume","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Latest Episodes","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artists","TabAlbumArtists":"Album Artists","TabMusicVideos":"Music Videos","ButtonSort":"Sort","HeaderSortBy":"Sort By:","HeaderSortOrder":"Sort Order:","OptionPlayed":"Played","OptionUnplayed":"Unplayed","OptionAscending":"Ascending","OptionDescending":"Descending","OptionRuntime":"Runtime","OptionReleaseDate":"Release Date","OptionPlayCount":"Play Count","OptionDatePlayed":"Date Played","OptionDateAdded":"Date Added","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonSearch":"Search","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilise:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Official Release","OptionBeta":"Beta","OptionDev":"Dev (Unstable)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognises images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record programme on all channels","OptionRecordAnytime":"Record programme at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","ButtonRemove":"Remove","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/en_US.json b/MediaBrowser.Server.Implementations/Localization/Server/en_US.json index 98d9d0a540..e3db368192 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/en_US.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/en_US.json @@ -1 +1 @@ -{"LabelExit":"Exit","LabelVisitCommunity":"Visit Community","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"View Api Documentation","LabelBrowseLibrary":"Browse Library","LabelConfigureMediaBrowser":"Configure Media Browser","LabelOpenLibraryViewer":"Open Library Viewer","LabelRestartServer":"Restart Server","LabelShowLogWindow":"Show Log Window","LabelPrevious":"Previous","LabelFinish":"Finish","LabelNext":"Next","LabelYoureDone":"You're Done!","WelcomeToMediaBrowser":"Welcome to Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"This wizard will help guide you through the setup process.","TellUsAboutYourself":"Tell us about yourself","LabelYourFirstName":"Your first name:","MoreUsersCanBeAddedLater":"More users can be added later within the Dashboard.","UserProfilesIntro":"Media Browser includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"A Windows Service has been installed.","WindowsServiceIntro1":"Media Browser Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"Configure settings","LabelEnableVideoImageExtraction":"Enable video image extraction","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"Ok","ButtonCancel":"Cancel","HeaderSetupLibrary":"Setup your media library","ButtonAddMediaFolder":"Add media folder","LabelFolderType":"Folder type:","MediaFolderHelpPluginRequired":"* Requires the use of a plugin, e.g. GameBrowser or MB Bookshelf.","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Country:","LabelLanguage":"Language:","HeaderPreferredMetadataLanguage":"Preferred metadata language:","LabelSaveLocalMetadata":"Save artwork and metadata into media folders","LabelSaveLocalMetadataHelp":"Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.","LabelDownloadInternetMetadata":"Download artwork and metadata from the internet","LabelDownloadInternetMetadataHelp":"Media Browser can download information about your media to enable rich presentations.","TabPreferences":"Preferences","TabPassword":"Password","TabLibraryAccess":"Library Access","TabImage":"Image","TabProfile":"Profile","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"Video Playback Settings","LabelAudioLanguagePreference":"Audio language preference:","LabelSubtitleLanguagePreference":"Subtitle language preference:","LabelDisplayForcedSubtitlesOnly":"Display only forced subtitles","TabProfiles":"Profiles","TabSecurity":"Security","ButtonAddUser":"Add User","ButtonSave":"Save","ButtonResetPassword":"Reset Password","LabelNewPassword":"New password:","LabelNewPasswordConfirm":"New password confirm:","HeaderCreatePassword":"Create Password","LabelCurrentPassword":"Current password:","LabelMaxParentalRating":"Maximum allowed parental rating:","MaxParentalRatingHelp":"Content with a higher rating will be hidden from this user.","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"Delete Image","ButtonUpload":"Upload","HeaderUploadNewImage":"Upload New Image","LabelDropImageHere":"Drop Image Here","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Nothing here.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"Suggested","TabLatest":"Latest","TabUpcoming":"Upcoming","TabShows":"Shows","TabEpisodes":"Episodes","TabGenres":"Genres","TabPeople":"People","TabNetworks":"Networks","HeaderUsers":"Users","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favorites","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Actors","OptionGuestStars":"Guest Stars","OptionDirectors":"Directors","OptionWriters":"Writers","OptionProducers":"Producers","HeaderResume":"Resume","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Latest Episodes","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artists","TabAlbumArtists":"Album Artists","TabMusicVideos":"Music Videos","ButtonSort":"Sort","HeaderSortBy":"Sort By:","HeaderSortOrder":"Sort Order:","OptionPlayed":"Played","OptionUnplayed":"Unplayed","OptionAscending":"Ascending","OptionDescending":"Descending","OptionRuntime":"Runtime","OptionReleaseDate":"Release Date","OptionPlayCount":"Play Count","OptionDatePlayed":"Date Played","OptionDateAdded":"Date Added","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Official Release","OptionBeta":"Beta","OptionDev":"Dev (Unstable)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Exit","LabelVisitCommunity":"Visit Community","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"View Api Documentation","LabelBrowseLibrary":"Browse Library","LabelConfigureMediaBrowser":"Configure Media Browser","LabelOpenLibraryViewer":"Open Library Viewer","LabelRestartServer":"Restart Server","LabelShowLogWindow":"Show Log Window","LabelPrevious":"Previous","LabelFinish":"Finish","LabelNext":"Next","LabelYoureDone":"You're Done!","WelcomeToMediaBrowser":"Welcome to Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"This wizard will help guide you through the setup process.","TellUsAboutYourself":"Tell us about yourself","LabelYourFirstName":"Your first name:","MoreUsersCanBeAddedLater":"More users can be added later within the Dashboard.","UserProfilesIntro":"Media Browser includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"A Windows Service has been installed.","WindowsServiceIntro1":"Media Browser Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"Configure settings","LabelEnableVideoImageExtraction":"Enable video image extraction","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"Ok","ButtonCancel":"Cancel","ButtonNew":"New","HeaderSetupLibrary":"Setup your media library","ButtonAddMediaFolder":"Add media folder","LabelFolderType":"Folder type:","MediaFolderHelpPluginRequired":"* Requires the use of a plugin, e.g. GameBrowser or MB Bookshelf.","ReferToMediaLibraryWiki":"Refer to the media library wiki.","LabelCountry":"Country:","LabelLanguage":"Language:","HeaderPreferredMetadataLanguage":"Preferred metadata language:","LabelSaveLocalMetadata":"Save artwork and metadata into media folders","LabelSaveLocalMetadataHelp":"Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.","LabelDownloadInternetMetadata":"Download artwork and metadata from the internet","LabelDownloadInternetMetadataHelp":"Media Browser can download information about your media to enable rich presentations.","TabPreferences":"Preferences","TabPassword":"Password","TabLibraryAccess":"Library Access","TabImage":"Image","TabProfile":"Profile","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Display missing episodes within seasons","LabelUnairedMissingEpisodesWithinSeasons":"Display unaired episodes within seasons","HeaderVideoPlaybackSettings":"Video Playback Settings","LabelAudioLanguagePreference":"Audio language preference:","LabelSubtitleLanguagePreference":"Subtitle language preference:","LabelDisplayForcedSubtitlesOnly":"Display only forced subtitles","TabProfiles":"Profiles","TabSecurity":"Security","ButtonAddUser":"Add User","ButtonSave":"Save","ButtonResetPassword":"Reset Password","LabelNewPassword":"New password:","LabelNewPasswordConfirm":"New password confirm:","HeaderCreatePassword":"Create Password","LabelCurrentPassword":"Current password:","LabelMaxParentalRating":"Maximum allowed parental rating:","MaxParentalRatingHelp":"Content with a higher rating will be hidden from this user.","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"Delete Image","ButtonUpload":"Upload","HeaderUploadNewImage":"Upload New Image","LabelDropImageHere":"Drop Image Here","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Nothing here.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"Suggested","TabLatest":"Latest","TabUpcoming":"Upcoming","TabShows":"Shows","TabEpisodes":"Episodes","TabGenres":"Genres","TabPeople":"People","TabNetworks":"Networks","HeaderUsers":"Users","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favorites","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Actors","OptionGuestStars":"Guest Stars","OptionDirectors":"Directors","OptionWriters":"Writers","OptionProducers":"Producers","HeaderResume":"Resume","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Latest Episodes","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artists","TabAlbumArtists":"Album Artists","TabMusicVideos":"Music Videos","ButtonSort":"Sort","HeaderSortBy":"Sort By:","HeaderSortOrder":"Sort Order:","OptionPlayed":"Played","OptionUnplayed":"Unplayed","OptionAscending":"Ascending","OptionDescending":"Descending","OptionRuntime":"Runtime","OptionReleaseDate":"Release Date","OptionPlayCount":"Play Count","OptionDatePlayed":"Date Played","OptionDateAdded":"Date Added","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonSearch":"Search","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Official Release","OptionBeta":"Beta","OptionDev":"Dev (Unstable)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","ButtonRemove":"Remove","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/es.json b/MediaBrowser.Server.Implementations/Localization/Server/es.json index 3f3f794410..0ea131cb71 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/es.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/es.json @@ -1 +1 @@ -{"LabelExit":"Salir","LabelVisitCommunity":"Visitar la comunidad","LabelGithubWiki":"Wiki de Github","LabelSwagger":"Swagger","LabelStandard":"Est\u00e1ndar","LabelViewApiDocumentation":"Ver documentacion de Api","LabelBrowseLibrary":"Navegar biblioteca","LabelConfigureMediaBrowser":"Configurar Media Browser","LabelOpenLibraryViewer":"Abrir el visor de la biblioteca","LabelRestartServer":"Reiniciar el servidor","LabelShowLogWindow":"Mostrar la ventana del log","LabelPrevious":"Anterior","LabelFinish":"Terminar","LabelNext":"Siguiente","LabelYoureDone":"Ha Terminado!","WelcomeToMediaBrowser":"\u00a1Bienvenido a Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Este asistente lo guiar\u00e1 por el proceso de instalaci\u00f3n.","TellUsAboutYourself":"D\u00edganos acerca de usted","LabelYourFirstName":"Su nombre:","MoreUsersCanBeAddedLater":"M\u00e1s usuarios pueden agregarse m\u00e1s tarde en el panel de control.","UserProfilesIntro":"Media Browser incluye soporte integrado para los perfiles de usuario, lo que permite que cada usuario tenga su propia configuraci\u00f3n de la pantalla, estado de reproducci\u00f3n y control parental.","LabelWindowsService":"Servicio de Windows","AWindowsServiceHasBeenInstalled":"Un servicio de Windows se ha instalado","WindowsServiceIntro1":"Media Browser Server se ejecuta normalmente como una aplicaci\u00f3n de escritorio con un icono de la bandeja, pero si prefiere ejecutarlo como un servicio en segundo plano, se puede iniciar desde el panel de control de servicios de Windows en su lugar.","WindowsServiceIntro2":"Si se utiliza el servicio de Windows, tenga en cuenta que no se puede ejecutar al mismo tiempo que el icono de la bandeja, por lo que tendr\u00e1 que salir de la bandeja con el fin de ejecutar el servicio. Tambi\u00e9n tendr\u00e1 que ser configurado con privilegios administrativos a trav\u00e9s del panel de control del servicio. Tenga en cuenta que en este momento el servicio no es capaz de auto-actualizaci\u00f3n, por lo que las nuevas versiones requieren la interacci\u00f3n manual.","WizardCompleted":"Eso es todo lo que necesitamos por ahora. Media Browser ha comenzado a reunir informaci\u00f3n sobre su biblioteca de medios. Echa un vistazo a algunas de nuestras aplicaciones, y luego haga clic en Finalizar<\/b> para ver el Panel de control<\/b>.","LabelConfigureSettings":"Configuraci\u00f3n de opciones","LabelEnableVideoImageExtraction":"Habilitar extracci\u00f3n de im\u00e1genes de video","VideoImageExtractionHelp":"Para los v\u00eddeos que no dispongan de im\u00e1genes y que no podemos encontrar en Internet. Esto agregar\u00e1 un tiempo adicional para la exploraci\u00f3n inicial de bibliotecas, pero resultar\u00e1 en una presentaci\u00f3n m\u00e1s agradable.","LabelEnableChapterImageExtractionForMovies":"Extraer im\u00e1genes de cap\u00edtulos para pel\u00edculas","LabelChapterImageExtractionForMoviesHelp":"Extraer im\u00e1genes de cap\u00edtulo permitir\u00e1 a los clientes mostrar men\u00fas gr\u00e1ficos de selecci\u00f3n de escenas. El proceso puede ser lento, intensivo en utilizaci\u00f3n del CPU y puede requerir varios gigabytes de espacio. Se ejecuta como una tarea nocturna, a las 4 de la ma\u00f1ana, aunque esto se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea durante las horas pico de uso.","LabelEnableAutomaticPortMapping":"Habilitar asignaci\u00f3n de puertos autom\u00e1tico","LabelEnableAutomaticPortMappingHelp":"UPnP permite la configuraci\u00f3n del router para acceso externo de forma f\u00e1cil y autom\u00e1tica. Esto puede no funcionar en algunos modelos de routers.","ButtonOk":"OK","ButtonCancel":"Cancelar","HeaderSetupLibrary":"Configurar biblioteca de medios","ButtonAddMediaFolder":"Agregar una carpeta de medios","LabelFolderType":"Tipo de carpeta:","MediaFolderHelpPluginRequired":"* Requiere el uso de un plugin, por ejemplo GameBrowser o MB Bookshelf","ReferToMediaLibraryWiki":"Consultar el wiki de la biblioteca de medios","LabelCountry":"Pa\u00eds:","LabelLanguage":"Idioma:","HeaderPreferredMetadataLanguage":"Idioma preferido para metadata","LabelSaveLocalMetadata":"Guardar im\u00e1genes y metadata en las carpetas de medios","LabelSaveLocalMetadataHelp":"Guardar im\u00e1genes y metadata directamente en las carpetas de medios, permitir\u00e1 colocarlas en un lugar donde se pueden editar f\u00e1cilmente.","LabelDownloadInternetMetadata":"Descargar imagenes y metadata de internet","LabelDownloadInternetMetadataHelp":"Media Browser permite descargar informaci\u00f3n acerca de su media para enriquecer la presentaci\u00f3n.","TabPreferences":"Preferencias","TabPassword":"Contrase\u00f1a","TabLibraryAccess":"Acceso a biblioteca","TabImage":"imagen","TabProfile":"Perfil","LabelDisplayMissingEpisodesWithinSeasons":"Mostar episodios no disponibles en temporadas","LabelUnairedMissingEpisodesWithinSeasons":"Mostrar episodios a\u00fan no emitidos en temporadas","HeaderVideoPlaybackSettings":"Ajustes de Reproducci\u00f3n de Video","LabelAudioLanguagePreference":"Preferencia de idioma de audio","LabelSubtitleLanguagePreference":"Preferencia de idioma de subtitulos","LabelDisplayForcedSubtitlesOnly":"Mostrar \u00fanicamente subtitulos forzados","TabProfiles":"Perfiles","TabSecurity":"Seguridad","ButtonAddUser":"Agregar Usuario","ButtonSave":"Grabar","ButtonResetPassword":"Reiniciar Contrase\u00f1a","LabelNewPassword":"Nueva Contrase\u00f1a:","LabelNewPasswordConfirm":"Confirmaci\u00f3n de contrase\u00f1a nueva:","HeaderCreatePassword":"Crear Contrase\u00f1a","LabelCurrentPassword":"Contrase\u00f1a actual","LabelMaxParentalRating":"M\u00e1xima clasificaci\u00f3n permitida","MaxParentalRatingHelp":"El contenido con clasificaci\u00f3n parental superior se ocultar\u00e1 para este usuario.","LibraryAccessHelp":"Seleccione las carpetas de medios para compartir con este usuario. Los administradores podr\u00e1n editar todas las carpetas usando el gestor de metadata.","ButtonDeleteImage":"Borrar imagen","ButtonUpload":"Subir","HeaderUploadNewImage":"Subir nueva imagen","LabelDropImageHere":"Depositar Imagen Aqu\u00ed","ImageUploadAspectRatioHelp":"Se Recomienda una Proporci\u00f3n de Aspecto 1:1. Solo JPG\/PNG","MessageNothingHere":"Nada aqu\u00ed.","MessagePleaseEnsureInternetMetadata":"Por favor aseg\u00farese que la descarga de metadata de internet esta habilitada","TabSuggested":"Sugerencia","TabLatest":"\u00daltima","TabUpcoming":"Siguiente","TabShows":"Programas","TabEpisodes":"Episodios","TabGenres":"G\u00e9neros","TabPeople":"Gente","TabNetworks":"redes","HeaderUsers":"Usuarios","HeaderFilters":"Filtros:","ButtonFilter":"Filtro","OptionFavorite":"Favoritos","OptionLikes":"Me gusta","OptionDislikes":"No me gusta","OptionActors":"Actores","OptionGuestStars":"Estrellas invitadas","OptionDirectors":"Directores","OptionWriters":"Guionistas","OptionProducers":"Productores","HeaderResume":"Continuar","HeaderNextUp":"Siguiente","NoNextUpItemsMessage":"Nada encontrado. \u00a1Comienza a ver tus programas!","HeaderLatestEpisodes":"Ultimos episodios","HeaderPersonTypes":"Tipos de personas:","TabSongs":"Canciones","TabAlbums":"Albums","TabArtists":"Artistas","TabAlbumArtists":"Album Artistas","TabMusicVideos":"Videos Musicales","ButtonSort":"Ordenar","HeaderSortBy":"Ordenar por:","HeaderSortOrder":"Ordenado por:","OptionPlayed":"Reproducido","OptionUnplayed":"No reproducido","OptionAscending":"Ascendente","OptionDescending":"Descendente","OptionRuntime":"Tiempo","OptionReleaseDate":"Fecha de estreno","OptionPlayCount":"N\u00famero de reproducc.","OptionDatePlayed":"Fecha de reproducci\u00f3n","OptionDateAdded":"A\u00f1adido el","OptionAlbumArtist":"Album Artista","OptionArtist":"Artista","OptionAlbum":"Album","OptionTrackName":"Nombre de pista","OptionCommunityRating":"Valoraci\u00f3n comunidad","OptionNameSort":"Nombre","OptionFolderSort":"Folders","OptionBudget":"Presupuesto","OptionRevenue":"Recaudaci\u00f3n","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"L\u00ednea de tiempo","OptionThumb":"Miniatura","OptionBanner":"Banner","OptionCriticRating":"Valoraci\u00f3n cr\u00edtica","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Se puede continuar","ScheduledTasksHelp":"Click en una tarea para ajustar su programaci\u00f3n","ScheduledTasksTitle":"Tareas programadas","TabMyPlugins":"Mis Plugins","TabCatalog":"Cat\u00e1logo","TabUpdates":"Actualizaciones","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Actualizaciones autom\u00e1ticas","HeaderUpdateLevel":"Nivel de actualizaci\u00f3n","HeaderNowPlaying":"Reproduciendo ahora","HeaderLatestAlbums":"\u00dcltimos Albums","HeaderLatestSongs":"\u00daltimas canciones","HeaderRecentlyPlayed":"Reproducido recientemente","HeaderFrequentlyPlayed":"Reproducido frequentemente","DevBuildWarning":"Las actualizaciones en desarrollo no est\u00e1n convenientemente probadas. La aplicaci\u00f3n se puede bloquear y caracter\u00edsticas completas pueden no funcionar del todo.","LabelVideoType":"Tipo de video","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Caracter\u00edsticas","OptionHasSubtitles":"Subt\u00edtulos","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Banda sonora","OptionHasThemeVideo":"Viideotema","TabMovies":"Pel\u00edculas","TabStudios":"Estudios","TabTrailers":"Trailers","HeaderLatestMovies":"\u00daltimas pel\u00edculas","HeaderLatestTrailers":"\u00daltimos trailers","OptionHasSpecialFeatures":"Caracter\u00edsticas especiales","OptionImdbRating":"Valoraci\u00f3n IMDb","OptionParentalRating":"Clasificaci\u00f3n parental","OptionPremiereDate":"Fecha de estreno","TabBasic":"B\u00e1sico","TabAdvanced":"Avanzado","HeaderStatus":"Estado","OptionContinuing":"Continuando","OptionEnded":"Finalizado","HeaderAirDays":"D\u00eda emisi\u00f3n","OptionSunday":"Domingo","OptionMonday":"Lunes","OptionTuesday":"Martes","OptionWednesday":"Mi\u00e9rcoles","OptionThursday":"Jueves","OptionFriday":"Viernes","OptionSaturday":"S\u00e1bado","HeaderManagement":"Administraci\u00f3n","OptionMissingImdbId":"Falta IMDb Id","OptionMissingTvdbId":"Falta TheTVDB Id","OptionMissingOverview":"Falta argumento","OptionFileMetadataYearMismatch":"Archivo\/Metadata a\u00f1os no coinciden","TabGeneral":"General","TitleSupport":"Soporte","TabLog":"Log","TabAbout":"Acerca de","TabSupporterKey":"Clave de Seguidor","TabBecomeSupporter":"Hazte Seguidor","MediaBrowserHasCommunity":"Media Browser cuenta con una pr\u00f3spera comunidad de usuarios y colaboradores.","CheckoutKnowledgeBase":"Echa un vistazo a nuestra base de conocimiento para ayudarte a sacar el m\u00e1ximo provecho de Media Browser.","SearchKnowledgeBase":"Buscar en la base de conocimiento","VisitTheCommunity":"Visitar la comunidad","VisitMediaBrowserWebsite":"Visitar la web de Media Browser","VisitMediaBrowserWebsiteLong":"Visita la web de Media Browser para estar informado de las \u00faltimas not\u00edcias y mantenerte al d\u00eda con el blog de desarrolladores.","OptionHideUser":"Ocultar este usuario en las pantallas de inicio de sesi\u00f3n","OptionDisableUser":"Deshabilitar este usuario","OptionDisableUserHelp":"Si est\u00e1 deshabilitado, el servidor no aceptar\u00e1 conexiones de este usuario. Si existen conexiones de este usuario, finalizar\u00e1n inmediatamente.","HeaderAdvancedControl":"Control avanzado","LabelName":"Nombre:","OptionAllowUserToManageServer":"Permite a este usuario administrar el servidor","HeaderFeatureAccess":"Permisos de acceso","OptionAllowMediaPlayback":"Permitir reproducci\u00f3n de medios","OptionAllowBrowsingLiveTv":"Acceso a TV en vivo","OptionAllowDeleteLibraryContent":"Permitir a este usuario eliminar contenido de la biblioteca","OptionAllowManageLiveTv":"Permitir la gesti\u00f3n de las grabaciones de TV en vivo","OptionAllowRemoteControlOthers":"Permitir a este usuario controlar rem\u00f3tamente a otros usuarios","OptionMissingTmdbId":"Falta Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metavalor","ButtonSelect":"Seleccionar","ButtonGroupVersions":"Versiones de Grupo","PismoMessage":"Usando Pismo File Mount a trav\u00e9s de una licencia donada.","PleaseSupportOtherProduces":"Por favor apoye otros productos gratuitos que utilizamos:","VersionNumber":"Versi\u00f3n {0}","TabPaths":"Ruta","TabServer":"Servidor","TabTranscoding":"Transcodificaci\u00f3n","TitleAdvanced":"Avanzado","LabelAutomaticUpdateLevel":"Actualizaci\u00f3n de nivel autom\u00e1tica","OptionRelease":"Liberar","OptionBeta":"Beta","OptionDev":"Desarrollo","LabelAllowServerAutoRestart":"Permitir al servidor reiniciarse autom\u00e1ticamente para aplicar las actualizaciones","LabelAllowServerAutoRestartHelp":"El servidor s\u00f3lo se reiniciar\u00e1 durante periodos de reposo, cuando no hayan usuarios activos.","LabelEnableDebugLogging":"Habilitar entrada de debug","LabelRunServerAtStartup":"Arrancar servidor al iniciar","LabelRunServerAtStartupHelp":"Esto iniciar\u00e1 como aplicaci\u00f3n en el inicio. Para iniciar en modo servicio de windows, desmarque esto e inicie el servicio desde el panel de control de windows. Tenga en cuenta que no es posible inciar de las dos formas a la vez, usted debe salir de la aplicaci\u00f3n para iniciar el servicio.","ButtonSelectDirectory":"Seleccionar directorio","LabelCustomPaths":"Especificar las rutas personalizadas que desee. D\u00e9jelo en blanco para usar las rutas por defecto.","LabelCachePath":"Ruta del cach\u00e9:","LabelCachePathHelp":"Esta carpeta contienes archivos de cach\u00e9 del servidor, tales como im\u00e1genes.","LabelImagesByNamePath":"Im\u00e1genes por nombre de ruta:","LabelImagesByNamePathHelp":"Esta carpeta contiene im\u00e1genes de actores, artistas, g\u00e9neros y estudios.","LabelMetadataPath":"Ruta de Metadata:","LabelMetadataPathHelp":"Esta localizaci\u00f3n contiene im\u00e1genes y metadata descargados que no est\u00e1n configurados para ser guardados en carpetas de medios.","LabelTranscodingTempPath":"Ruta temporal de transcodificaci\u00f3n:","LabelTranscodingTempPathHelp":"Esta carpeta contiene archivos de trabajo usados por el transcodificador.","TabBasics":"Basicos","TabTV":"TV","TabGames":"Juegos","TabMusic":"M\u00fasica","TabOthers":"Otros","HeaderExtractChapterImagesFor":"Extraer im\u00e1genes de cap\u00edtulos para:","OptionMovies":"Pel\u00edculas","OptionEpisodes":"Episodios","OptionOtherVideos":"Otros v\u00eddeos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Activar actualizaciones autom\u00e1ticas desde FanArt.tv","LabelAutomaticUpdatesTmdb":"Activar actualizaciones autom\u00e1ticas desde TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Activar actualizaciones autom\u00e1ticas desde TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Si est\u00e1 activado, las nuevas im\u00e1genes se descargan autom\u00e1ticamente a medida que se a\u00f1aden a fanart.tv. Im\u00e1genes existentes no ser\u00e1n reemplazadas.","LabelAutomaticUpdatesTmdbHelp":"Si est\u00e1 activado, las nuevas im\u00e1genes se descargan autom\u00e1ticamente a medida que se a\u00f1aden a TheMovieDB.org. Im\u00e1genes existentes no ser\u00e1n reemplazados.","LabelAutomaticUpdatesTvdbHelp":"Si est\u00e1 activado, las nuevas im\u00e1genes se descargan autom\u00e1ticamente a medida que se a\u00f1aden a TheTVDB.com. Im\u00e1genes existentes no ser\u00e1n reemplazados.","ExtractChapterImagesHelp":"Extraer im\u00e1genes de cap\u00edtulo permitir\u00e1 a los clientes mostrar men\u00fas gr\u00e1ficos de selecci\u00f3n de escenas. El proceso puede ser lento, uso de CPU intensivo y puede requerir varios gigabytes de espacio. Se ejecuta como una tarea nocturna, a las 4 de la ma\u00f1ana, aunque esto se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea durante las horas pico.","LabelMetadataDownloadLanguage":"Idioma preferido:","ButtonAutoScroll":"Auto-desplazamiento","LabelImageSavingConvention":"Sistema de guardado de im\u00e1genes:","LabelImageSavingConventionHelp":"Media Browser reconoce im\u00e1genes de la mayor\u00eda de aplicaciones de medios. La elecci\u00f3n de su sistema de descarga es \u00fatil si tambi\u00e9n usa otros productos.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Est\u00e1ndard - MB3\/MB2","ButtonSignIn":"Registrarse","TitleSignIn":"Registrarse","HeaderPleaseSignIn":"Por favor reg\u00edstrese","LabelUser":"Usuario:","LabelPassword":"Contrase\u00f1a:","ButtonManualLogin":"Registro manual:","PasswordLocalhostMessage":"No se necesitan contrase\u00f1as al iniciar sesi\u00f3n desde localhost.","TabGuide":"Gu\u00eda","TabChannels":"Canales","HeaderChannels":"Canales","TabRecordings":"Grabaciones","TabScheduled":"Programado","TabSeries":"Series","ButtonCancelRecording":"Cancelar grabaci\u00f3n","HeaderPrePostPadding":"Pre\/post grabaci\u00f3n extra","LabelPrePaddingMinutes":"Minutos previos extras:","OptionPrePaddingRequired":"Minutos previos extras requeridos para grabar.","LabelPostPaddingMinutes":"Minutos extras post grabaci\u00f3n:","OptionPostPaddingRequired":"Minutos post grabaci\u00f3n extras requeridos para grabar.","HeaderWhatsOnTV":"Que hacen ahora","HeaderUpcomingTV":"Pr\u00f3ximos programas","TabStatus":"Estado","TabSettings":"Opciones","ButtonRefreshGuideData":"Actualizar datos de la gu\u00eda","OptionPriority":"Prioridad","OptionRecordOnAllChannels":"Grabar programa en cualquier canal","OptionRecordAnytime":"Grabar programa a cualquier hora","OptionRecordOnlyNewEpisodes":"Grabar s\u00f3lo nuevos episodios","HeaderDays":"D\u00edas","HeaderActiveRecordings":"Grabaciones activas","HeaderLatestRecordings":"\u00daltimas grabaciones","HeaderAllRecordings":"Todas la grabaciones","ButtonPlay":"Reproducir","ButtonEdit":"Editar","ButtonRecord":"Grabar","ButtonDelete":"Borrar","OptionRecordSeries":"Grabar series","HeaderDetails":"Detalles","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Salir","LabelVisitCommunity":"Visitar la comunidad","LabelGithubWiki":"Wiki de Github","LabelSwagger":"Swagger","LabelStandard":"Est\u00e1ndar","LabelViewApiDocumentation":"Ver documentacion de Api","LabelBrowseLibrary":"Navegar biblioteca","LabelConfigureMediaBrowser":"Configurar Media Browser","LabelOpenLibraryViewer":"Abrir el visor de la biblioteca","LabelRestartServer":"Reiniciar el servidor","LabelShowLogWindow":"Mostrar la ventana del log","LabelPrevious":"Anterior","LabelFinish":"Terminar","LabelNext":"Siguiente","LabelYoureDone":"Ha Terminado!","WelcomeToMediaBrowser":"\u00a1Bienvenido a Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Este asistente lo guiar\u00e1 por el proceso de instalaci\u00f3n.","TellUsAboutYourself":"D\u00edganos acerca de usted","LabelYourFirstName":"Su nombre:","MoreUsersCanBeAddedLater":"M\u00e1s usuarios pueden agregarse m\u00e1s tarde en el panel de control.","UserProfilesIntro":"Media Browser incluye soporte integrado para los perfiles de usuario, lo que permite que cada usuario tenga su propia configuraci\u00f3n de la pantalla, estado de reproducci\u00f3n y control parental.","LabelWindowsService":"Servicio de Windows","AWindowsServiceHasBeenInstalled":"Un servicio de Windows se ha instalado","WindowsServiceIntro1":"Media Browser Server se ejecuta normalmente como una aplicaci\u00f3n de escritorio con un icono de la bandeja, pero si prefiere ejecutarlo como un servicio en segundo plano, se puede iniciar desde el panel de control de servicios de Windows en su lugar.","WindowsServiceIntro2":"Si se utiliza el servicio de Windows, tenga en cuenta que no se puede ejecutar al mismo tiempo que el icono de la bandeja, por lo que tendr\u00e1 que salir de la bandeja con el fin de ejecutar el servicio. Tambi\u00e9n tendr\u00e1 que ser configurado con privilegios administrativos a trav\u00e9s del panel de control del servicio. Tenga en cuenta que en este momento el servicio no es capaz de auto-actualizaci\u00f3n, por lo que las nuevas versiones requieren la interacci\u00f3n manual.","WizardCompleted":"Eso es todo lo que necesitamos por ahora. Media Browser ha comenzado a reunir informaci\u00f3n sobre su biblioteca de medios. Echa un vistazo a algunas de nuestras aplicaciones, y luego haga clic en Finalizar<\/b> para ver el Panel de control<\/b>.","LabelConfigureSettings":"Configuraci\u00f3n de opciones","LabelEnableVideoImageExtraction":"Habilitar extracci\u00f3n de im\u00e1genes de video","VideoImageExtractionHelp":"Para los v\u00eddeos que no dispongan de im\u00e1genes y que no podemos encontrar en Internet. Esto agregar\u00e1 un tiempo adicional para la exploraci\u00f3n inicial de bibliotecas, pero resultar\u00e1 en una presentaci\u00f3n m\u00e1s agradable.","LabelEnableChapterImageExtractionForMovies":"Extraer im\u00e1genes de cap\u00edtulos para pel\u00edculas","LabelChapterImageExtractionForMoviesHelp":"Extraer im\u00e1genes de cap\u00edtulo permitir\u00e1 a los clientes mostrar men\u00fas gr\u00e1ficos de selecci\u00f3n de escenas. El proceso puede ser lento, intensivo en utilizaci\u00f3n del CPU y puede requerir varios gigabytes de espacio. Se ejecuta como una tarea nocturna, a las 4 de la ma\u00f1ana, aunque esto se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea durante las horas pico de uso.","LabelEnableAutomaticPortMapping":"Habilitar asignaci\u00f3n de puertos autom\u00e1tico","LabelEnableAutomaticPortMappingHelp":"UPnP permite la configuraci\u00f3n del router para acceso externo de forma f\u00e1cil y autom\u00e1tica. Esto puede no funcionar en algunos modelos de routers.","ButtonOk":"OK","ButtonCancel":"Cancelar","ButtonNew":"New","HeaderSetupLibrary":"Configurar biblioteca de medios","ButtonAddMediaFolder":"Agregar una carpeta de medios","LabelFolderType":"Tipo de carpeta:","MediaFolderHelpPluginRequired":"* Requiere el uso de un plugin, por ejemplo GameBrowser o MB Bookshelf","ReferToMediaLibraryWiki":"Consultar el wiki de la biblioteca de medios","LabelCountry":"Pa\u00eds:","LabelLanguage":"Idioma:","HeaderPreferredMetadataLanguage":"Idioma preferido para metadata","LabelSaveLocalMetadata":"Guardar im\u00e1genes y metadata en las carpetas de medios","LabelSaveLocalMetadataHelp":"Guardar im\u00e1genes y metadata directamente en las carpetas de medios, permitir\u00e1 colocarlas en un lugar donde se pueden editar f\u00e1cilmente.","LabelDownloadInternetMetadata":"Descargar imagenes y metadata de internet","LabelDownloadInternetMetadataHelp":"Media Browser permite descargar informaci\u00f3n acerca de su media para enriquecer la presentaci\u00f3n.","TabPreferences":"Preferencias","TabPassword":"Contrase\u00f1a","TabLibraryAccess":"Acceso a biblioteca","TabImage":"imagen","TabProfile":"Perfil","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Mostar episodios no disponibles en temporadas","LabelUnairedMissingEpisodesWithinSeasons":"Mostrar episodios a\u00fan no emitidos en temporadas","HeaderVideoPlaybackSettings":"Ajustes de Reproducci\u00f3n de Video","LabelAudioLanguagePreference":"Preferencia de idioma de audio","LabelSubtitleLanguagePreference":"Preferencia de idioma de subtitulos","LabelDisplayForcedSubtitlesOnly":"Mostrar \u00fanicamente subtitulos forzados","TabProfiles":"Perfiles","TabSecurity":"Seguridad","ButtonAddUser":"Agregar Usuario","ButtonSave":"Grabar","ButtonResetPassword":"Reiniciar Contrase\u00f1a","LabelNewPassword":"Nueva Contrase\u00f1a:","LabelNewPasswordConfirm":"Confirmaci\u00f3n de contrase\u00f1a nueva:","HeaderCreatePassword":"Crear Contrase\u00f1a","LabelCurrentPassword":"Contrase\u00f1a actual","LabelMaxParentalRating":"M\u00e1xima clasificaci\u00f3n permitida","MaxParentalRatingHelp":"El contenido con clasificaci\u00f3n parental superior se ocultar\u00e1 para este usuario.","LibraryAccessHelp":"Seleccione las carpetas de medios para compartir con este usuario. Los administradores podr\u00e1n editar todas las carpetas usando el gestor de metadata.","ButtonDeleteImage":"Borrar imagen","ButtonUpload":"Subir","HeaderUploadNewImage":"Subir nueva imagen","LabelDropImageHere":"Depositar Imagen Aqu\u00ed","ImageUploadAspectRatioHelp":"Se Recomienda una Proporci\u00f3n de Aspecto 1:1. Solo JPG\/PNG","MessageNothingHere":"Nada aqu\u00ed.","MessagePleaseEnsureInternetMetadata":"Por favor aseg\u00farese que la descarga de metadata de internet esta habilitada","TabSuggested":"Sugerencia","TabLatest":"\u00daltima","TabUpcoming":"Siguiente","TabShows":"Programas","TabEpisodes":"Episodios","TabGenres":"G\u00e9neros","TabPeople":"Gente","TabNetworks":"redes","HeaderUsers":"Usuarios","HeaderFilters":"Filtros:","ButtonFilter":"Filtro","OptionFavorite":"Favoritos","OptionLikes":"Me gusta","OptionDislikes":"No me gusta","OptionActors":"Actores","OptionGuestStars":"Estrellas invitadas","OptionDirectors":"Directores","OptionWriters":"Guionistas","OptionProducers":"Productores","HeaderResume":"Continuar","HeaderNextUp":"Siguiente","NoNextUpItemsMessage":"Nada encontrado. \u00a1Comienza a ver tus programas!","HeaderLatestEpisodes":"Ultimos episodios","HeaderPersonTypes":"Tipos de personas:","TabSongs":"Canciones","TabAlbums":"Albums","TabArtists":"Artistas","TabAlbumArtists":"Album Artistas","TabMusicVideos":"Videos Musicales","ButtonSort":"Ordenar","HeaderSortBy":"Ordenar por:","HeaderSortOrder":"Ordenado por:","OptionPlayed":"Reproducido","OptionUnplayed":"No reproducido","OptionAscending":"Ascendente","OptionDescending":"Descendente","OptionRuntime":"Tiempo","OptionReleaseDate":"Fecha de estreno","OptionPlayCount":"N\u00famero de reproducc.","OptionDatePlayed":"Fecha de reproducci\u00f3n","OptionDateAdded":"A\u00f1adido el","OptionAlbumArtist":"Album Artista","OptionArtist":"Artista","OptionAlbum":"Album","OptionTrackName":"Nombre de pista","OptionCommunityRating":"Valoraci\u00f3n comunidad","OptionNameSort":"Nombre","OptionFolderSort":"Folders","OptionBudget":"Presupuesto","OptionRevenue":"Recaudaci\u00f3n","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"L\u00ednea de tiempo","OptionThumb":"Miniatura","OptionBanner":"Banner","OptionCriticRating":"Valoraci\u00f3n cr\u00edtica","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Se puede continuar","ScheduledTasksHelp":"Click en una tarea para ajustar su programaci\u00f3n","ScheduledTasksTitle":"Tareas programadas","TabMyPlugins":"Mis Plugins","TabCatalog":"Cat\u00e1logo","TabUpdates":"Actualizaciones","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Actualizaciones autom\u00e1ticas","HeaderUpdateLevel":"Nivel de actualizaci\u00f3n","HeaderNowPlaying":"Reproduciendo ahora","HeaderLatestAlbums":"\u00dcltimos Albums","HeaderLatestSongs":"\u00daltimas canciones","HeaderRecentlyPlayed":"Reproducido recientemente","HeaderFrequentlyPlayed":"Reproducido frequentemente","DevBuildWarning":"Las actualizaciones en desarrollo no est\u00e1n convenientemente probadas. La aplicaci\u00f3n se puede bloquear y caracter\u00edsticas completas pueden no funcionar del todo.","LabelVideoType":"Tipo de video","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Caracter\u00edsticas","OptionHasSubtitles":"Subt\u00edtulos","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Banda sonora","OptionHasThemeVideo":"Viideotema","TabMovies":"Pel\u00edculas","TabStudios":"Estudios","TabTrailers":"Trailers","HeaderLatestMovies":"\u00daltimas pel\u00edculas","HeaderLatestTrailers":"\u00daltimos trailers","OptionHasSpecialFeatures":"Caracter\u00edsticas especiales","OptionImdbRating":"Valoraci\u00f3n IMDb","OptionParentalRating":"Clasificaci\u00f3n parental","OptionPremiereDate":"Fecha de estreno","TabBasic":"B\u00e1sico","TabAdvanced":"Avanzado","HeaderStatus":"Estado","OptionContinuing":"Continuando","OptionEnded":"Finalizado","HeaderAirDays":"D\u00eda emisi\u00f3n","OptionSunday":"Domingo","OptionMonday":"Lunes","OptionTuesday":"Martes","OptionWednesday":"Mi\u00e9rcoles","OptionThursday":"Jueves","OptionFriday":"Viernes","OptionSaturday":"S\u00e1bado","HeaderManagement":"Administraci\u00f3n","OptionMissingImdbId":"Falta IMDb Id","OptionMissingTvdbId":"Falta TheTVDB Id","OptionMissingOverview":"Falta argumento","OptionFileMetadataYearMismatch":"Archivo\/Metadata a\u00f1os no coinciden","TabGeneral":"General","TitleSupport":"Soporte","TabLog":"Log","TabAbout":"Acerca de","TabSupporterKey":"Clave de Seguidor","TabBecomeSupporter":"Hazte Seguidor","MediaBrowserHasCommunity":"Media Browser cuenta con una pr\u00f3spera comunidad de usuarios y colaboradores.","CheckoutKnowledgeBase":"Echa un vistazo a nuestra base de conocimiento para ayudarte a sacar el m\u00e1ximo provecho de Media Browser.","SearchKnowledgeBase":"Buscar en la base de conocimiento","VisitTheCommunity":"Visitar la comunidad","VisitMediaBrowserWebsite":"Visitar la web de Media Browser","VisitMediaBrowserWebsiteLong":"Visita la web de Media Browser para estar informado de las \u00faltimas not\u00edcias y mantenerte al d\u00eda con el blog de desarrolladores.","OptionHideUser":"Ocultar este usuario en las pantallas de inicio de sesi\u00f3n","OptionDisableUser":"Deshabilitar este usuario","OptionDisableUserHelp":"Si est\u00e1 deshabilitado, el servidor no aceptar\u00e1 conexiones de este usuario. Si existen conexiones de este usuario, finalizar\u00e1n inmediatamente.","HeaderAdvancedControl":"Control avanzado","LabelName":"Nombre:","OptionAllowUserToManageServer":"Permite a este usuario administrar el servidor","HeaderFeatureAccess":"Permisos de acceso","OptionAllowMediaPlayback":"Permitir reproducci\u00f3n de medios","OptionAllowBrowsingLiveTv":"Acceso a TV en vivo","OptionAllowDeleteLibraryContent":"Permitir a este usuario eliminar contenido de la biblioteca","OptionAllowManageLiveTv":"Permitir la gesti\u00f3n de las grabaciones de TV en vivo","OptionAllowRemoteControlOthers":"Permitir a este usuario controlar rem\u00f3tamente a otros usuarios","OptionMissingTmdbId":"Falta Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metavalor","ButtonSelect":"Seleccionar","ButtonSearch":"Search","ButtonGroupVersions":"Versiones de Grupo","PismoMessage":"Usando Pismo File Mount a trav\u00e9s de una licencia donada.","PleaseSupportOtherProduces":"Por favor apoye otros productos gratuitos que utilizamos:","VersionNumber":"Versi\u00f3n {0}","TabPaths":"Ruta","TabServer":"Servidor","TabTranscoding":"Transcodificaci\u00f3n","TitleAdvanced":"Avanzado","LabelAutomaticUpdateLevel":"Actualizaci\u00f3n de nivel autom\u00e1tica","OptionRelease":"Liberar","OptionBeta":"Beta","OptionDev":"Desarrollo","LabelAllowServerAutoRestart":"Permitir al servidor reiniciarse autom\u00e1ticamente para aplicar las actualizaciones","LabelAllowServerAutoRestartHelp":"El servidor s\u00f3lo se reiniciar\u00e1 durante periodos de reposo, cuando no hayan usuarios activos.","LabelEnableDebugLogging":"Habilitar entrada de debug","LabelRunServerAtStartup":"Arrancar servidor al iniciar","LabelRunServerAtStartupHelp":"Esto iniciar\u00e1 como aplicaci\u00f3n en el inicio. Para iniciar en modo servicio de windows, desmarque esto e inicie el servicio desde el panel de control de windows. Tenga en cuenta que no es posible inciar de las dos formas a la vez, usted debe salir de la aplicaci\u00f3n para iniciar el servicio.","ButtonSelectDirectory":"Seleccionar directorio","LabelCustomPaths":"Especificar las rutas personalizadas que desee. D\u00e9jelo en blanco para usar las rutas por defecto.","LabelCachePath":"Ruta del cach\u00e9:","LabelCachePathHelp":"Esta carpeta contienes archivos de cach\u00e9 del servidor, tales como im\u00e1genes.","LabelImagesByNamePath":"Im\u00e1genes por nombre de ruta:","LabelImagesByNamePathHelp":"Esta carpeta contiene im\u00e1genes de actores, artistas, g\u00e9neros y estudios.","LabelMetadataPath":"Ruta de Metadata:","LabelMetadataPathHelp":"Esta localizaci\u00f3n contiene im\u00e1genes y metadata descargados que no est\u00e1n configurados para ser guardados en carpetas de medios.","LabelTranscodingTempPath":"Ruta temporal de transcodificaci\u00f3n:","LabelTranscodingTempPathHelp":"Esta carpeta contiene archivos de trabajo usados por el transcodificador.","TabBasics":"Basicos","TabTV":"TV","TabGames":"Juegos","TabMusic":"M\u00fasica","TabOthers":"Otros","HeaderExtractChapterImagesFor":"Extraer im\u00e1genes de cap\u00edtulos para:","OptionMovies":"Pel\u00edculas","OptionEpisodes":"Episodios","OptionOtherVideos":"Otros v\u00eddeos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Activar actualizaciones autom\u00e1ticas desde FanArt.tv","LabelAutomaticUpdatesTmdb":"Activar actualizaciones autom\u00e1ticas desde TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Activar actualizaciones autom\u00e1ticas desde TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Si est\u00e1 activado, las nuevas im\u00e1genes se descargan autom\u00e1ticamente a medida que se a\u00f1aden a fanart.tv. Im\u00e1genes existentes no ser\u00e1n reemplazadas.","LabelAutomaticUpdatesTmdbHelp":"Si est\u00e1 activado, las nuevas im\u00e1genes se descargan autom\u00e1ticamente a medida que se a\u00f1aden a TheMovieDB.org. Im\u00e1genes existentes no ser\u00e1n reemplazados.","LabelAutomaticUpdatesTvdbHelp":"Si est\u00e1 activado, las nuevas im\u00e1genes se descargan autom\u00e1ticamente a medida que se a\u00f1aden a TheTVDB.com. Im\u00e1genes existentes no ser\u00e1n reemplazados.","ExtractChapterImagesHelp":"Extraer im\u00e1genes de cap\u00edtulo permitir\u00e1 a los clientes mostrar men\u00fas gr\u00e1ficos de selecci\u00f3n de escenas. El proceso puede ser lento, uso de CPU intensivo y puede requerir varios gigabytes de espacio. Se ejecuta como una tarea nocturna, a las 4 de la ma\u00f1ana, aunque esto se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea durante las horas pico.","LabelMetadataDownloadLanguage":"Idioma preferido:","ButtonAutoScroll":"Auto-desplazamiento","LabelImageSavingConvention":"Sistema de guardado de im\u00e1genes:","LabelImageSavingConventionHelp":"Media Browser reconoce im\u00e1genes de la mayor\u00eda de aplicaciones de medios. La elecci\u00f3n de su sistema de descarga es \u00fatil si tambi\u00e9n usa otros productos.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Est\u00e1ndard - MB3\/MB2","ButtonSignIn":"Registrarse","TitleSignIn":"Registrarse","HeaderPleaseSignIn":"Por favor reg\u00edstrese","LabelUser":"Usuario:","LabelPassword":"Contrase\u00f1a:","ButtonManualLogin":"Registro manual:","PasswordLocalhostMessage":"No se necesitan contrase\u00f1as al iniciar sesi\u00f3n desde localhost.","TabGuide":"Gu\u00eda","TabChannels":"Canales","HeaderChannels":"Canales","TabRecordings":"Grabaciones","TabScheduled":"Programado","TabSeries":"Series","ButtonCancelRecording":"Cancelar grabaci\u00f3n","HeaderPrePostPadding":"Pre\/post grabaci\u00f3n extra","LabelPrePaddingMinutes":"Minutos previos extras:","OptionPrePaddingRequired":"Minutos previos extras requeridos para grabar.","LabelPostPaddingMinutes":"Minutos extras post grabaci\u00f3n:","OptionPostPaddingRequired":"Minutos post grabaci\u00f3n extras requeridos para grabar.","HeaderWhatsOnTV":"Que hacen ahora","HeaderUpcomingTV":"Pr\u00f3ximos programas","TabStatus":"Estado","TabSettings":"Opciones","ButtonRefreshGuideData":"Actualizar datos de la gu\u00eda","OptionPriority":"Prioridad","OptionRecordOnAllChannels":"Grabar programa en cualquier canal","OptionRecordAnytime":"Grabar programa a cualquier hora","OptionRecordOnlyNewEpisodes":"Grabar s\u00f3lo nuevos episodios","HeaderDays":"D\u00edas","HeaderActiveRecordings":"Grabaciones activas","HeaderLatestRecordings":"\u00daltimas grabaciones","HeaderAllRecordings":"Todas la grabaciones","ButtonPlay":"Reproducir","ButtonEdit":"Editar","ButtonRecord":"Grabar","ButtonDelete":"Borrar","ButtonRemove":"Remove","OptionRecordSeries":"Grabar series","HeaderDetails":"Detalles","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/es_MX.json b/MediaBrowser.Server.Implementations/Localization/Server/es_MX.json index 5266ef396a..0b276422cb 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/es_MX.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/es_MX.json @@ -1 +1 @@ -{"LabelExit":"Salir","LabelVisitCommunity":"Visitar la Comunidad","LabelGithubWiki":"Wiki de Github","LabelSwagger":"Swagger","LabelStandard":"Est\u00e1ndar","LabelViewApiDocumentation":"Ver documentaci\u00f3n del Api","LabelBrowseLibrary":"Navegar Biblioteca","LabelConfigureMediaBrowser":"Configurar Media Browser","LabelOpenLibraryViewer":"Abrir el Visor de la Biblioteca","LabelRestartServer":"Reiniciar el Servidor","LabelShowLogWindow":"Mostrar Ventana de Bit\u00e1cora","LabelPrevious":"Anterior","LabelFinish":"Terminar","LabelNext":"Siguiente","LabelYoureDone":"Ha Terminado!","WelcomeToMediaBrowser":"\u00a1Bienvenido a Media Broswer!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Este asistente le guiar\u00e1 a trav\u00e9s del proceso de instalaci\u00f3n,","TellUsAboutYourself":"D\u00edganos sobre usted","LabelYourFirstName":"Su nombre:","MoreUsersCanBeAddedLater":"Se pueden agregar m\u00e1s usuarios posteriormente en el tablero de instrumentos.","UserProfilesIntro":"Media Browser incluye soporte integrado para perfiles de usuario, permiti\u00e9ndo a cada usuario tener su propia configuraci\u00f3n de pantalla, estado de reproducci\u00f3n y controles parentales.","LabelWindowsService":"Servicio de Windows","AWindowsServiceHasBeenInstalled":"Se ha instalado un Servicio de Windows.","WindowsServiceIntro1":"Media Browser Server se ejecuta normalmente como una aplicaci\u00f3n de escritorio con un icono en el \u00e1rea de notificaci\u00f3n, pero si prefiere ejecutarlo como un servicio de segundo plano, puede ser iniciado desde el panel de control de servicios de windows.","WindowsServiceIntro2":"Si utiliza el servicio de Windows, tenga en cuenta que no se puede ejecutar simult\u00e1neamiente con el icono en el \u00e1rea de notificaci\u00f3n, por lo que tendr\u00e1 que finalizar desde el icono para poder ejecutar el servicio. Adicionalmente, el servicio deber\u00e1 ser configurado con privilegios administrativos a trav\u00e9s del panel de control del servicio. Tenga en cuenta que en este momento el servicio no es capaz de actualizarse a s\u00ed mismo, por lo que las nuevas versiones requerir\u00e1n de interacci\u00f3n manual.","WizardCompleted":"Eso es todo lo que necesitamos por ahora. Media Browser ha comenzado a recolectar informaci\u00f3n sobre su biblioteca de medios. Eche un vistazo a algunas de nuestras aplicaciones, y luego haga clic en Finalizar<\/b> para ver el Panel de Instrumentos<\/b>.","LabelConfigureSettings":"Configuraci\u00f3n de opciones","LabelEnableVideoImageExtraction":"Habilitar extracci\u00f3n de im\u00e1genes de video","VideoImageExtractionHelp":"Para videos que no cuenten con im\u00e1genes, y para los que no podemos encontrar im\u00e1genes en Internet. Esto incrementar\u00e1 un poco el tiempo de la exploraci\u00f3n inicial de las bibliotecas, pero resultar\u00e1 en una presentaci\u00f3n m\u00e1s agradable.","LabelEnableChapterImageExtractionForMovies":"Extraer im\u00e1genes de cap\u00edtulos para Pel\u00edculas","LabelChapterImageExtractionForMoviesHelp":"Extraer im\u00e1genes de cap\u00edtulos permite a los clientes mostrar men\u00fas gr\u00e1ficos de selecci\u00f3n de escenas. El proceso puede ser lento, intensivo en utilizaci\u00f3n del CPU y puede requerir varios gigabytes de espacio. Se ejecuta como una tarea nocturna, programada a las 4 de la ma\u00f1ana, aunque esto se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea durante las horas pico de uso.","LabelEnableAutomaticPortMapping":"Habilitar mapeo autom\u00e1tico de puertos","LabelEnableAutomaticPortMappingHelp":"UPnP permite la configuraci\u00f3n de ruteador de manera autom\u00e1tica, para acceso remoto de manera f\u00e1cil. Eso puede no funcionar con algunos modelos de ruteadores.","ButtonOk":"Ok","ButtonCancel":"Cancelar","HeaderSetupLibrary":"Configurar su biblioteca de medios","ButtonAddMediaFolder":"Agregar carpeta de medios","LabelFolderType":"Tipo de carpeta:","MediaFolderHelpPluginRequired":"* Requiere el uso de un complemento, p. ej. GameBrowser o MB Bookshelf.","ReferToMediaLibraryWiki":"Consultar la wiki de la biblioteca de medios.","LabelCountry":"Pa\u00eds:","LabelLanguage":"Idioma:","HeaderPreferredMetadataLanguage":"Idioma preferido para metadatos:","LabelSaveLocalMetadata":"Guardar im\u00e1genes y metadatos en las carpetas de medios","LabelSaveLocalMetadataHelp":"Guardar im\u00e1genes y metadatos directamente en las carpetas de medios los colocar\u00e1 en un lugar donde se pueden editar f\u00e1cilmente.","LabelDownloadInternetMetadata":"Descargar imagenes y metadatos de internet","LabelDownloadInternetMetadataHelp":"Media Browser permite descargar informaci\u00f3n de sus medios para enriquecer la presentaci\u00f3n.","TabPreferences":"Preferencias","TabPassword":"Contrase\u00f1a","TabLibraryAccess":"Acceso a biblioteca","TabImage":"imagen","TabProfile":"Perf\u00edl","LabelDisplayMissingEpisodesWithinSeasons":"Mostar episodios no disponibles en las temporadas","LabelUnairedMissingEpisodesWithinSeasons":"Mostrar episodios a\u00fan no emitidos en las temporadas","HeaderVideoPlaybackSettings":"Ajustes de Reproducci\u00f3n de Video","LabelAudioLanguagePreference":"Preferencia de idioma de audio:","LabelSubtitleLanguagePreference":"Preferencia de idioma de subt\u00edtulos:","LabelDisplayForcedSubtitlesOnly":"Mostrar \u00fanicamente subtitulos forzados","TabProfiles":"Perfiles","TabSecurity":"Seguridad","ButtonAddUser":"Agregar Usuario","ButtonSave":"Guardar","ButtonResetPassword":"Restablecer Contrase\u00f1a","LabelNewPassword":"Nueva contrase\u00f1a:","LabelNewPasswordConfirm":"Confirmaci\u00f3n de contrase\u00f1a nueva:","HeaderCreatePassword":"Crear Contrase\u00f1a","LabelCurrentPassword":"Contrase\u00f1a actual:","LabelMaxParentalRating":"M\u00e1xima clasificaci\u00f3n parental permitida:","MaxParentalRatingHelp":"El contenido con clasificaci\u00f3n parental superior se ocultar\u00e1 para este usuario.","LibraryAccessHelp":"Seleccione las carpetas de medios para compartir con este usuario. Los administradores podr\u00e1n editar todas las carpetas usando el administrador de metadatos.","ButtonDeleteImage":"Eliminar Imagen","ButtonUpload":"Subir","HeaderUploadNewImage":"Subir Nueva Imagen","LabelDropImageHere":"Depositar Imagen Aqu\u00ed","ImageUploadAspectRatioHelp":"Se Recomienda una Proporci\u00f3n de Aspecto 1:1. Solo JPG\/PNG.","MessageNothingHere":"Nada aqu\u00ed.","MessagePleaseEnsureInternetMetadata":"Por favor aseg\u00farese que la descarga de metadatos de internet esta habilitada.","TabSuggested":"Sugerencias","TabLatest":"Recientes","TabUpcoming":"Pr\u00f3ximos","TabShows":"Programas","TabEpisodes":"Episodios","TabGenres":"G\u00e9neros","TabPeople":"Personas","TabNetworks":"Cadenas","HeaderUsers":"Usuarios","HeaderFilters":"Filtros:","ButtonFilter":"Filtro","OptionFavorite":"Favoritos","OptionLikes":"Me gusta","OptionDislikes":"No me gusta","OptionActors":"Actores","OptionGuestStars":"Estrellas Invitadas","OptionDirectors":"Directores","OptionWriters":"Guionistas","OptionProducers":"Productores","HeaderResume":"Continuar","HeaderNextUp":"Siguiente","NoNextUpItemsMessage":"No se encontr\u00f3 nada. \u00a1Comienza a ver tus programas!","HeaderLatestEpisodes":"\u00daltimos Episodios","HeaderPersonTypes":"Tipos de Personas:","TabSongs":"Canciones","TabAlbums":"\u00c1lbums","TabArtists":"Artistas","TabAlbumArtists":"Artistas del \u00c1lbum","TabMusicVideos":"Videos Musicales","ButtonSort":"Ordenar","HeaderSortBy":"Ordenar Por:","HeaderSortOrder":"Ordenado Por:","OptionPlayed":"Reproducido","OptionUnplayed":"No reproducido","OptionAscending":"Ascendente","OptionDescending":"Descendente","OptionRuntime":"Duraci\u00f3n","OptionReleaseDate":"Fecha de Estreno","OptionPlayCount":"N\u00famero de Reproducc.","OptionDatePlayed":"Fecha de Reproducci\u00f3n","OptionDateAdded":"A\u00f1adido el","OptionAlbumArtist":"Artista del \u00c1lbum","OptionArtist":"Artista","OptionAlbum":"\u00c1lbum","OptionTrackName":"Nombre de la Pista","OptionCommunityRating":"Calificaci\u00f3n de la Comunidad","OptionNameSort":"Nombre","OptionFolderSort":"Folders","OptionBudget":"Presupuesto","OptionRevenue":"Recaudaci\u00f3n","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"L\u00ednea de Tiempo","OptionThumb":"Miniatura","OptionBanner":"T\u00edtulo","OptionCriticRating":"Calificaci\u00f3n de la Cr\u00edtica","OptionVideoBitrate":"Tasa de Bits de Video","OptionResumable":"Reanudable","ScheduledTasksHelp":"Click en una tarea para ajustar su programaci\u00f3n.","ScheduledTasksTitle":"Tareas Programadas","TabMyPlugins":"Mis Complementos","TabCatalog":"Cat\u00e1logo","TabUpdates":"Actualizaciones","PluginsTitle":"Complementos","HeaderAutomaticUpdates":"Actualizaciones Autom\u00e1ticas","HeaderUpdateLevel":"Nivel de Actualizaci\u00f3n","HeaderNowPlaying":"Reproduciendo Ahora","HeaderLatestAlbums":"\u00daltimos \u00c1lbums","HeaderLatestSongs":"Canciones Recientes","HeaderRecentlyPlayed":"Reproducido Recientemente","HeaderFrequentlyPlayed":"Reproducido Frecuentemente","DevBuildWarning":"Las compilaciones de Desarrollo son la punta de lanza. Se publican frecuentemente, estas compilaciones no se han probado. La aplicaci\u00f3n se puede bloquear y caracter\u00edsticas completas pueden no funcionar.","LabelVideoType":"Tipo de Video:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"Caracter\u00edsticas:","OptionHasSubtitles":"Subt\u00edtulos","OptionHasTrailer":"Avance","OptionHasThemeSong":"Canci\u00f3n del Tema","OptionHasThemeVideo":"Video del Tema","TabMovies":"Pel\u00edculas","TabStudios":"Estudios","TabTrailers":"Avances","HeaderLatestMovies":"Pel\u00edculas Recientes","HeaderLatestTrailers":"\u00daltimos Avances","OptionHasSpecialFeatures":"Caracter\u00edsticas Especiales","OptionImdbRating":"Calificaci\u00f3n de IMDb","OptionParentalRating":"Clasificaci\u00f3n Parental","OptionPremiereDate":"Fecha de Estreno","TabBasic":"B\u00e1sico","TabAdvanced":"Avanzado","HeaderStatus":"Estado","OptionContinuing":"Continuando","OptionEnded":"Finalizado","HeaderAirDays":"D\u00edas de Emisi\u00f3n:","OptionSunday":"Domingo","OptionMonday":"Lunes","OptionTuesday":"Martes","OptionWednesday":"Mi\u00e9rcoles","OptionThursday":"Jueves","OptionFriday":"Viernes","OptionSaturday":"S\u00e1bado","HeaderManagement":"Administraci\u00f3n:","OptionMissingImdbId":"Falta Id de IMDb","OptionMissingTvdbId":"Falta Id de TheTVDB","OptionMissingOverview":"Falta Sinopsis","OptionFileMetadataYearMismatch":"No coincide el A\u00f1o del Archivo con los Metadatos","TabGeneral":"General","TitleSupport":"Soporte","TabLog":"Bit\u00e1cora","TabAbout":"Acerca de","TabSupporterKey":"Clave de Aficionado","TabBecomeSupporter":"Volverse Aficionado","MediaBrowserHasCommunity":"Media Browser cuenta con una pr\u00f3spera comunidad de usuarios y colaboradores.","CheckoutKnowledgeBase":"Eche un vistazo a nuestra base de conocimiento para ayudarte a sacar el m\u00e1ximo provecho de Media Browser.","SearchKnowledgeBase":"Buscar en la Base de Conocimiento","VisitTheCommunity":"Visitar la Comunidad","VisitMediaBrowserWebsite":"Visitar el Sitio Web de Media Browser","VisitMediaBrowserWebsiteLong":"Visite el Sitio Web de Media Browser para estar conocer las \u00faltimas not\u00edcias y mantenerse al d\u00eda con el blog de los desarrolladores.","OptionHideUser":"Ocultar este usuario en las pantallas de inicio de sesi\u00f3n","OptionDisableUser":"Deshabilitar este usuario","OptionDisableUserHelp":"Si est\u00e1 deshabilitado, el servidor no aceptar\u00e1 conexiones de este usuario. Las conexiones existentes ser\u00e1n finalizadas abruptamente.","HeaderAdvancedControl":"Control Avanzado","LabelName":"Nombre:","OptionAllowUserToManageServer":"Permitir a este usuario administrar el servidor","HeaderFeatureAccess":"Permisos de acceso","OptionAllowMediaPlayback":"Permitir reproducci\u00f3n de medios","OptionAllowBrowsingLiveTv":"Permitir acceder a TV en vivo","OptionAllowDeleteLibraryContent":"Permitir a este usuario eliminar contenido de la librer\u00eda","OptionAllowManageLiveTv":"Permitir administrar grabaciones de TV en vivo","OptionAllowRemoteControlOthers":"Permitir a este usuario controlar remotamente a otros usuarios","OptionMissingTmdbId":"Falta Id de Tmdb","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Seleccionar","ButtonGroupVersions":"Agrupar Versiones","PismoMessage":"Utilizando Primo File Mount a trav\u00e9s de una licencia donada.","PleaseSupportOtherProduces":"Por favor apoye otros productos libres que utilizamos:","VersionNumber":"Versi\u00f3n {0}","TabPaths":"Rutas","TabServer":"Servidor","TabTranscoding":"Transcodificaci\u00f3n","TitleAdvanced":"Avanzado","LabelAutomaticUpdateLevel":"Nivel de actualizaci\u00f3n autom\u00e1tico","OptionRelease":"Versi\u00f3n Oficial","OptionBeta":"Beta","OptionDev":"Desarrollo (Inestable)","LabelAllowServerAutoRestart":"Permite al servidor reiniciar autom\u00e1ticamente para aplicar actualizaciones","LabelAllowServerAutoRestartHelp":"El servidor reiniciar\u00e1 \u00fanicamente durante periodos ociosos, cuando no haya usuarios activos.","LabelEnableDebugLogging":"Habilitar bit\u00e1coras de depuraci\u00f3n","LabelRunServerAtStartup":"Ejecutar el servidor al iniciar","LabelRunServerAtStartupHelp":"Esto iniciar\u00e1 el icono den el \u00e1rea de notificaci\u00f3n cuando windows arranque. Para iniciar el servicio de windows, desmarque esta opci\u00f3n y ejecute el servicio desde el panel de control de windows. Por favor tome en cuenta que no puede ejecutar ambos simult\u00e1neamente, por lo que deber\u00e1 finalizar el icono del \u00e1rea de notificaci\u00f3n antes de iniciar el servicio.","ButtonSelectDirectory":"Seleccionar Carpeta","LabelCustomPaths":"Especificar rutas personalizadas cuando se desee. Deje los campos vac\u00edos para usar los valores predeterminados.","LabelCachePath":"Ruta de Cach\u00e9:","LabelCachePathHelp":"Esta carpeta contiene los archivos de cach\u00e9 del servidor, por ejemplo im\u00e1genes.","LabelImagesByNamePath":"Im\u00e1genes por nombre de ruta:","LabelImagesByNamePathHelp":"Esta carpeta contiene im\u00e1genes de actor, artista, g\u00e9nero y estudio.","LabelMetadataPath":"Ruta de metadatos:","LabelMetadataPathHelp":"Esta ubicaci\u00f3n contiene ilustraciones descargadas y metadatos cuando no han sido configurados para almacenarse en carpetas de medios.","LabelTranscodingTempPath":"Ruta de trnascodificaci\u00f3n temporal:","LabelTranscodingTempPathHelp":"Esta carpeta contiene archivos de trabajo usados por el transcodificador.","TabBasics":"B\u00e1sicos","TabTV":"TV","TabGames":"Juegos","TabMusic":"M\u00fasica","TabOthers":"Otros","HeaderExtractChapterImagesFor":"Extraer im\u00e1genes de cap\u00edtulos para:","OptionMovies":"Pel\u00edculas","OptionEpisodes":"Episodios","OptionOtherVideos":"Otros Videos","TitleMetadata":"Metadatos","LabelAutomaticUpdatesFanart":"Habilitar actualizaciones autom\u00e1ticas desde FanArt.tv","LabelAutomaticUpdatesTmdb":"Habilitar actualizaciones autom\u00e1ticas desde TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Habilitar actualizaciones autom\u00e1ticas desde TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a fanart.tv. Las Im\u00e1genes existentes no ser\u00e1n reemplazadas.","LabelAutomaticUpdatesTmdbHelp":"Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a TheMovieDB.org. Las im\u00e1genes existentes no ser\u00e1n reemplazadas.","LabelAutomaticUpdatesTvdbHelp":"Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a TheTVDB.com. Las im\u00e1genes existentes no ser\u00e1n reemplazadas.","ExtractChapterImagesHelp":"Extraer im\u00e1genes de cap\u00edtulos permite a los clientes mostrar men\u00fas gr\u00e1ficos de selecci\u00f3n de escenas. El proceso puede ser lento, intensivo en utilizaci\u00f3n del CPU y puede requerir varios gigabytes de espacio. Se ejecuta como una tarea nocturna, programada a las 4 de la ma\u00f1ana, aunque esto se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea durante las horas pico de uso.","LabelMetadataDownloadLanguage":"Lenguaje preferido:","ButtonAutoScroll":"Auto-desplazamiento","LabelImageSavingConvention":"Convenci\u00f3n de almacenamiento de im\u00e1genes:","LabelImageSavingConventionHelp":"MediaBrowser reconoce im\u00e1genes de las aplicaciones de medios m\u00e1s importantes. Seleccionar la convenci\u00f3n de descarga es \u00fatil si utiliza otros productos.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Est\u00e1ndar - MB3\/MB2","ButtonSignIn":"Iniciar Sesi\u00f3n","TitleSignIn":"Iniciar Sesi\u00f3n","HeaderPleaseSignIn":"Por favor inicie sesi\u00f3n","LabelUser":"Usuario:","LabelPassword":"Contrase\u00f1a:","ButtonManualLogin":"Inicio de Sesi\u00f3n Manual:","PasswordLocalhostMessage":"Las contrase\u00f1as no se requieren cuando se inicia sesi\u00f3n desde localhost.","TabGuide":"Gu\u00eda","TabChannels":"Canales","HeaderChannels":"Canales","TabRecordings":"Grabaciones","TabScheduled":"Programados","TabSeries":"Series","ButtonCancelRecording":"Cancelar Grabaci\u00f3n","HeaderPrePostPadding":"Pre\/Post Defasamiento","LabelPrePaddingMinutes":"Minutos de Defasamiento Previo:","OptionPrePaddingRequired":"Pre-defasamiento es requerido para grabar.","LabelPostPaddingMinutes":"Minutos de Post-dafasamiento:","OptionPostPaddingRequired":"Post-defasamiento es requerido para grabar.","HeaderWhatsOnTV":"\u00bfQu\u00e9 se V\u00e9?","HeaderUpcomingTV":"TV Pr\u00f3xima","TabStatus":"Estado","TabSettings":"Configuraci\u00f3n","ButtonRefreshGuideData":"Actualizar Datos de la Gu\u00eda","OptionPriority":"Prioridad","OptionRecordOnAllChannels":"Grabar programa en todos los canales","OptionRecordAnytime":"Grabar programa en cualquier momento","OptionRecordOnlyNewEpisodes":"Grabar s\u00f3lo nuevos episodios","HeaderDays":"D\u00edas","HeaderActiveRecordings":"Grabaciones Activas","HeaderLatestRecordings":"\u00daltimas Grabaciones","HeaderAllRecordings":"Todas las Grabaciones","ButtonPlay":"Reproducir","ButtonEdit":"Editar","ButtonRecord":"Grabar","ButtonDelete":"Eliminar","OptionRecordSeries":"Grabar Series","HeaderDetails":"Detalles","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Salir","LabelVisitCommunity":"Visitar la Comunidad","LabelGithubWiki":"Wiki de Github","LabelSwagger":"Swagger","LabelStandard":"Est\u00e1ndar","LabelViewApiDocumentation":"Ver documentaci\u00f3n del Api","LabelBrowseLibrary":"Navegar Biblioteca","LabelConfigureMediaBrowser":"Configurar Media Browser","LabelOpenLibraryViewer":"Abrir el Visor de la Biblioteca","LabelRestartServer":"Reiniciar el Servidor","LabelShowLogWindow":"Mostrar Ventana de Bit\u00e1cora","LabelPrevious":"Anterior","LabelFinish":"Terminar","LabelNext":"Siguiente","LabelYoureDone":"Ha Terminado!","WelcomeToMediaBrowser":"\u00a1Bienvenido a Media Broswer!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Este asistente le guiar\u00e1 a trav\u00e9s del proceso de instalaci\u00f3n,","TellUsAboutYourself":"D\u00edganos sobre usted","LabelYourFirstName":"Su nombre:","MoreUsersCanBeAddedLater":"Se pueden agregar m\u00e1s usuarios posteriormente en el tablero de instrumentos.","UserProfilesIntro":"Media Browser incluye soporte integrado para perfiles de usuario, permiti\u00e9ndo a cada usuario tener su propia configuraci\u00f3n de pantalla, estado de reproducci\u00f3n y controles parentales.","LabelWindowsService":"Servicio de Windows","AWindowsServiceHasBeenInstalled":"Se ha instalado un Servicio de Windows.","WindowsServiceIntro1":"Media Browser Server se ejecuta normalmente como una aplicaci\u00f3n de escritorio con un icono en el \u00e1rea de notificaci\u00f3n, pero si prefiere ejecutarlo como un servicio de segundo plano, puede ser iniciado desde el panel de control de servicios de windows.","WindowsServiceIntro2":"Si utiliza el servicio de Windows, tenga en cuenta que no se puede ejecutar simult\u00e1neamiente con el icono en el \u00e1rea de notificaci\u00f3n, por lo que tendr\u00e1 que finalizar desde el icono para poder ejecutar el servicio. Adicionalmente, el servicio deber\u00e1 ser configurado con privilegios administrativos a trav\u00e9s del panel de control del servicio. Tenga en cuenta que en este momento el servicio no es capaz de actualizarse a s\u00ed mismo, por lo que las nuevas versiones requerir\u00e1n de interacci\u00f3n manual.","WizardCompleted":"Eso es todo lo que necesitamos por ahora. Media Browser ha comenzado a recolectar informaci\u00f3n sobre su biblioteca de medios. Eche un vistazo a algunas de nuestras aplicaciones, y luego haga clic en Finalizar<\/b> para ver el Panel de Instrumentos<\/b>.","LabelConfigureSettings":"Configuraci\u00f3n de opciones","LabelEnableVideoImageExtraction":"Habilitar extracci\u00f3n de im\u00e1genes de video","VideoImageExtractionHelp":"Para videos que no cuenten con im\u00e1genes, y para los que no podemos encontrar im\u00e1genes en Internet. Esto incrementar\u00e1 un poco el tiempo de la exploraci\u00f3n inicial de las bibliotecas, pero resultar\u00e1 en una presentaci\u00f3n m\u00e1s agradable.","LabelEnableChapterImageExtractionForMovies":"Extraer im\u00e1genes de cap\u00edtulos para Pel\u00edculas","LabelChapterImageExtractionForMoviesHelp":"Extraer im\u00e1genes de cap\u00edtulos permite a los clientes mostrar men\u00fas gr\u00e1ficos de selecci\u00f3n de escenas. El proceso puede ser lento, intensivo en utilizaci\u00f3n del CPU y puede requerir varios gigabytes de espacio. Se ejecuta como una tarea nocturna, programada a las 4 de la ma\u00f1ana, aunque esto se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea durante las horas pico de uso.","LabelEnableAutomaticPortMapping":"Habilitar mapeo autom\u00e1tico de puertos","LabelEnableAutomaticPortMappingHelp":"UPnP permite la configuraci\u00f3n de ruteador de manera autom\u00e1tica, para acceso remoto de manera f\u00e1cil. Eso puede no funcionar con algunos modelos de ruteadores.","ButtonOk":"Ok","ButtonCancel":"Cancelar","ButtonNew":"New","HeaderSetupLibrary":"Configurar su biblioteca de medios","ButtonAddMediaFolder":"Agregar carpeta de medios","LabelFolderType":"Tipo de carpeta:","MediaFolderHelpPluginRequired":"* Requiere el uso de un complemento, p. ej. GameBrowser o MB Bookshelf.","ReferToMediaLibraryWiki":"Consultar la wiki de la biblioteca de medios.","LabelCountry":"Pa\u00eds:","LabelLanguage":"Idioma:","HeaderPreferredMetadataLanguage":"Idioma preferido para metadatos:","LabelSaveLocalMetadata":"Guardar im\u00e1genes y metadatos en las carpetas de medios","LabelSaveLocalMetadataHelp":"Guardar im\u00e1genes y metadatos directamente en las carpetas de medios los colocar\u00e1 en un lugar donde se pueden editar f\u00e1cilmente.","LabelDownloadInternetMetadata":"Descargar imagenes y metadatos de internet","LabelDownloadInternetMetadataHelp":"Media Browser permite descargar informaci\u00f3n de sus medios para enriquecer la presentaci\u00f3n.","TabPreferences":"Preferencias","TabPassword":"Contrase\u00f1a","TabLibraryAccess":"Acceso a biblioteca","TabImage":"imagen","TabProfile":"Perf\u00edl","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Mostar episodios no disponibles en las temporadas","LabelUnairedMissingEpisodesWithinSeasons":"Mostrar episodios a\u00fan no emitidos en las temporadas","HeaderVideoPlaybackSettings":"Ajustes de Reproducci\u00f3n de Video","LabelAudioLanguagePreference":"Preferencia de idioma de audio:","LabelSubtitleLanguagePreference":"Preferencia de idioma de subt\u00edtulos:","LabelDisplayForcedSubtitlesOnly":"Mostrar \u00fanicamente subtitulos forzados","TabProfiles":"Perfiles","TabSecurity":"Seguridad","ButtonAddUser":"Agregar Usuario","ButtonSave":"Guardar","ButtonResetPassword":"Restablecer Contrase\u00f1a","LabelNewPassword":"Nueva contrase\u00f1a:","LabelNewPasswordConfirm":"Confirmaci\u00f3n de contrase\u00f1a nueva:","HeaderCreatePassword":"Crear Contrase\u00f1a","LabelCurrentPassword":"Contrase\u00f1a actual:","LabelMaxParentalRating":"M\u00e1xima clasificaci\u00f3n parental permitida:","MaxParentalRatingHelp":"El contenido con clasificaci\u00f3n parental superior se ocultar\u00e1 para este usuario.","LibraryAccessHelp":"Seleccione las carpetas de medios para compartir con este usuario. Los administradores podr\u00e1n editar todas las carpetas usando el administrador de metadatos.","ButtonDeleteImage":"Eliminar Imagen","ButtonUpload":"Subir","HeaderUploadNewImage":"Subir Nueva Imagen","LabelDropImageHere":"Depositar Imagen Aqu\u00ed","ImageUploadAspectRatioHelp":"Se Recomienda una Proporci\u00f3n de Aspecto 1:1. Solo JPG\/PNG.","MessageNothingHere":"Nada aqu\u00ed.","MessagePleaseEnsureInternetMetadata":"Por favor aseg\u00farese que la descarga de metadatos de internet esta habilitada.","TabSuggested":"Sugerencias","TabLatest":"Recientes","TabUpcoming":"Pr\u00f3ximos","TabShows":"Programas","TabEpisodes":"Episodios","TabGenres":"G\u00e9neros","TabPeople":"Personas","TabNetworks":"Cadenas","HeaderUsers":"Usuarios","HeaderFilters":"Filtros:","ButtonFilter":"Filtro","OptionFavorite":"Favoritos","OptionLikes":"Me gusta","OptionDislikes":"No me gusta","OptionActors":"Actores","OptionGuestStars":"Estrellas Invitadas","OptionDirectors":"Directores","OptionWriters":"Guionistas","OptionProducers":"Productores","HeaderResume":"Continuar","HeaderNextUp":"Siguiente","NoNextUpItemsMessage":"No se encontr\u00f3 nada. \u00a1Comienza a ver tus programas!","HeaderLatestEpisodes":"\u00daltimos Episodios","HeaderPersonTypes":"Tipos de Personas:","TabSongs":"Canciones","TabAlbums":"\u00c1lbums","TabArtists":"Artistas","TabAlbumArtists":"Artistas del \u00c1lbum","TabMusicVideos":"Videos Musicales","ButtonSort":"Ordenar","HeaderSortBy":"Ordenar Por:","HeaderSortOrder":"Ordenado Por:","OptionPlayed":"Reproducido","OptionUnplayed":"No reproducido","OptionAscending":"Ascendente","OptionDescending":"Descendente","OptionRuntime":"Duraci\u00f3n","OptionReleaseDate":"Fecha de Estreno","OptionPlayCount":"N\u00famero de Reproducc.","OptionDatePlayed":"Fecha de Reproducci\u00f3n","OptionDateAdded":"A\u00f1adido el","OptionAlbumArtist":"Artista del \u00c1lbum","OptionArtist":"Artista","OptionAlbum":"\u00c1lbum","OptionTrackName":"Nombre de la Pista","OptionCommunityRating":"Calificaci\u00f3n de la Comunidad","OptionNameSort":"Nombre","OptionFolderSort":"Folders","OptionBudget":"Presupuesto","OptionRevenue":"Recaudaci\u00f3n","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"L\u00ednea de Tiempo","OptionThumb":"Miniatura","OptionBanner":"T\u00edtulo","OptionCriticRating":"Calificaci\u00f3n de la Cr\u00edtica","OptionVideoBitrate":"Tasa de Bits de Video","OptionResumable":"Reanudable","ScheduledTasksHelp":"Click en una tarea para ajustar su programaci\u00f3n.","ScheduledTasksTitle":"Tareas Programadas","TabMyPlugins":"Mis Complementos","TabCatalog":"Cat\u00e1logo","TabUpdates":"Actualizaciones","PluginsTitle":"Complementos","HeaderAutomaticUpdates":"Actualizaciones Autom\u00e1ticas","HeaderUpdateLevel":"Nivel de Actualizaci\u00f3n","HeaderNowPlaying":"Reproduciendo Ahora","HeaderLatestAlbums":"\u00daltimos \u00c1lbums","HeaderLatestSongs":"Canciones Recientes","HeaderRecentlyPlayed":"Reproducido Recientemente","HeaderFrequentlyPlayed":"Reproducido Frecuentemente","DevBuildWarning":"Las compilaciones de Desarrollo son la punta de lanza. Se publican frecuentemente, estas compilaciones no se han probado. La aplicaci\u00f3n se puede bloquear y caracter\u00edsticas completas pueden no funcionar.","LabelVideoType":"Tipo de Video:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"Caracter\u00edsticas:","OptionHasSubtitles":"Subt\u00edtulos","OptionHasTrailer":"Avance","OptionHasThemeSong":"Canci\u00f3n del Tema","OptionHasThemeVideo":"Video del Tema","TabMovies":"Pel\u00edculas","TabStudios":"Estudios","TabTrailers":"Avances","HeaderLatestMovies":"Pel\u00edculas Recientes","HeaderLatestTrailers":"\u00daltimos Avances","OptionHasSpecialFeatures":"Caracter\u00edsticas Especiales","OptionImdbRating":"Calificaci\u00f3n de IMDb","OptionParentalRating":"Clasificaci\u00f3n Parental","OptionPremiereDate":"Fecha de Estreno","TabBasic":"B\u00e1sico","TabAdvanced":"Avanzado","HeaderStatus":"Estado","OptionContinuing":"Continuando","OptionEnded":"Finalizado","HeaderAirDays":"D\u00edas de Emisi\u00f3n:","OptionSunday":"Domingo","OptionMonday":"Lunes","OptionTuesday":"Martes","OptionWednesday":"Mi\u00e9rcoles","OptionThursday":"Jueves","OptionFriday":"Viernes","OptionSaturday":"S\u00e1bado","HeaderManagement":"Administraci\u00f3n:","OptionMissingImdbId":"Falta Id de IMDb","OptionMissingTvdbId":"Falta Id de TheTVDB","OptionMissingOverview":"Falta Sinopsis","OptionFileMetadataYearMismatch":"No coincide el A\u00f1o del Archivo con los Metadatos","TabGeneral":"General","TitleSupport":"Soporte","TabLog":"Bit\u00e1cora","TabAbout":"Acerca de","TabSupporterKey":"Clave de Aficionado","TabBecomeSupporter":"Volverse Aficionado","MediaBrowserHasCommunity":"Media Browser cuenta con una pr\u00f3spera comunidad de usuarios y colaboradores.","CheckoutKnowledgeBase":"Eche un vistazo a nuestra base de conocimiento para ayudarte a sacar el m\u00e1ximo provecho de Media Browser.","SearchKnowledgeBase":"Buscar en la Base de Conocimiento","VisitTheCommunity":"Visitar la Comunidad","VisitMediaBrowserWebsite":"Visitar el Sitio Web de Media Browser","VisitMediaBrowserWebsiteLong":"Visite el Sitio Web de Media Browser para estar conocer las \u00faltimas not\u00edcias y mantenerse al d\u00eda con el blog de los desarrolladores.","OptionHideUser":"Ocultar este usuario en las pantallas de inicio de sesi\u00f3n","OptionDisableUser":"Deshabilitar este usuario","OptionDisableUserHelp":"Si est\u00e1 deshabilitado, el servidor no aceptar\u00e1 conexiones de este usuario. Las conexiones existentes ser\u00e1n finalizadas abruptamente.","HeaderAdvancedControl":"Control Avanzado","LabelName":"Nombre:","OptionAllowUserToManageServer":"Permitir a este usuario administrar el servidor","HeaderFeatureAccess":"Permisos de acceso","OptionAllowMediaPlayback":"Permitir reproducci\u00f3n de medios","OptionAllowBrowsingLiveTv":"Permitir acceder a TV en vivo","OptionAllowDeleteLibraryContent":"Permitir a este usuario eliminar contenido de la librer\u00eda","OptionAllowManageLiveTv":"Permitir administrar grabaciones de TV en vivo","OptionAllowRemoteControlOthers":"Permitir a este usuario controlar remotamente a otros usuarios","OptionMissingTmdbId":"Falta Id de Tmdb","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Seleccionar","ButtonSearch":"Search","ButtonGroupVersions":"Agrupar Versiones","PismoMessage":"Utilizando Primo File Mount a trav\u00e9s de una licencia donada.","PleaseSupportOtherProduces":"Por favor apoye otros productos libres que utilizamos:","VersionNumber":"Versi\u00f3n {0}","TabPaths":"Rutas","TabServer":"Servidor","TabTranscoding":"Transcodificaci\u00f3n","TitleAdvanced":"Avanzado","LabelAutomaticUpdateLevel":"Nivel de actualizaci\u00f3n autom\u00e1tico","OptionRelease":"Versi\u00f3n Oficial","OptionBeta":"Beta","OptionDev":"Desarrollo (Inestable)","LabelAllowServerAutoRestart":"Permite al servidor reiniciar autom\u00e1ticamente para aplicar actualizaciones","LabelAllowServerAutoRestartHelp":"El servidor reiniciar\u00e1 \u00fanicamente durante periodos ociosos, cuando no haya usuarios activos.","LabelEnableDebugLogging":"Habilitar bit\u00e1coras de depuraci\u00f3n","LabelRunServerAtStartup":"Ejecutar el servidor al iniciar","LabelRunServerAtStartupHelp":"Esto iniciar\u00e1 el icono den el \u00e1rea de notificaci\u00f3n cuando windows arranque. Para iniciar el servicio de windows, desmarque esta opci\u00f3n y ejecute el servicio desde el panel de control de windows. Por favor tome en cuenta que no puede ejecutar ambos simult\u00e1neamente, por lo que deber\u00e1 finalizar el icono del \u00e1rea de notificaci\u00f3n antes de iniciar el servicio.","ButtonSelectDirectory":"Seleccionar Carpeta","LabelCustomPaths":"Especificar rutas personalizadas cuando se desee. Deje los campos vac\u00edos para usar los valores predeterminados.","LabelCachePath":"Ruta de Cach\u00e9:","LabelCachePathHelp":"Esta carpeta contiene los archivos de cach\u00e9 del servidor, por ejemplo im\u00e1genes.","LabelImagesByNamePath":"Im\u00e1genes por nombre de ruta:","LabelImagesByNamePathHelp":"Esta carpeta contiene im\u00e1genes de actor, artista, g\u00e9nero y estudio.","LabelMetadataPath":"Ruta de metadatos:","LabelMetadataPathHelp":"Esta ubicaci\u00f3n contiene ilustraciones descargadas y metadatos cuando no han sido configurados para almacenarse en carpetas de medios.","LabelTranscodingTempPath":"Ruta de trnascodificaci\u00f3n temporal:","LabelTranscodingTempPathHelp":"Esta carpeta contiene archivos de trabajo usados por el transcodificador.","TabBasics":"B\u00e1sicos","TabTV":"TV","TabGames":"Juegos","TabMusic":"M\u00fasica","TabOthers":"Otros","HeaderExtractChapterImagesFor":"Extraer im\u00e1genes de cap\u00edtulos para:","OptionMovies":"Pel\u00edculas","OptionEpisodes":"Episodios","OptionOtherVideos":"Otros Videos","TitleMetadata":"Metadatos","LabelAutomaticUpdatesFanart":"Habilitar actualizaciones autom\u00e1ticas desde FanArt.tv","LabelAutomaticUpdatesTmdb":"Habilitar actualizaciones autom\u00e1ticas desde TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Habilitar actualizaciones autom\u00e1ticas desde TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a fanart.tv. Las Im\u00e1genes existentes no ser\u00e1n reemplazadas.","LabelAutomaticUpdatesTmdbHelp":"Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a TheMovieDB.org. Las im\u00e1genes existentes no ser\u00e1n reemplazadas.","LabelAutomaticUpdatesTvdbHelp":"Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a TheTVDB.com. Las im\u00e1genes existentes no ser\u00e1n reemplazadas.","ExtractChapterImagesHelp":"Extraer im\u00e1genes de cap\u00edtulos permite a los clientes mostrar men\u00fas gr\u00e1ficos de selecci\u00f3n de escenas. El proceso puede ser lento, intensivo en utilizaci\u00f3n del CPU y puede requerir varios gigabytes de espacio. Se ejecuta como una tarea nocturna, programada a las 4 de la ma\u00f1ana, aunque esto se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea durante las horas pico de uso.","LabelMetadataDownloadLanguage":"Lenguaje preferido:","ButtonAutoScroll":"Auto-desplazamiento","LabelImageSavingConvention":"Convenci\u00f3n de almacenamiento de im\u00e1genes:","LabelImageSavingConventionHelp":"MediaBrowser reconoce im\u00e1genes de las aplicaciones de medios m\u00e1s importantes. Seleccionar la convenci\u00f3n de descarga es \u00fatil si utiliza otros productos.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Est\u00e1ndar - MB3\/MB2","ButtonSignIn":"Iniciar Sesi\u00f3n","TitleSignIn":"Iniciar Sesi\u00f3n","HeaderPleaseSignIn":"Por favor inicie sesi\u00f3n","LabelUser":"Usuario:","LabelPassword":"Contrase\u00f1a:","ButtonManualLogin":"Inicio de Sesi\u00f3n Manual:","PasswordLocalhostMessage":"Las contrase\u00f1as no se requieren cuando se inicia sesi\u00f3n desde localhost.","TabGuide":"Gu\u00eda","TabChannels":"Canales","HeaderChannels":"Canales","TabRecordings":"Grabaciones","TabScheduled":"Programados","TabSeries":"Series","ButtonCancelRecording":"Cancelar Grabaci\u00f3n","HeaderPrePostPadding":"Pre\/Post Defasamiento","LabelPrePaddingMinutes":"Minutos de Defasamiento Previo:","OptionPrePaddingRequired":"Pre-defasamiento es requerido para grabar.","LabelPostPaddingMinutes":"Minutos de Post-dafasamiento:","OptionPostPaddingRequired":"Post-defasamiento es requerido para grabar.","HeaderWhatsOnTV":"\u00bfQu\u00e9 se V\u00e9?","HeaderUpcomingTV":"TV Pr\u00f3xima","TabStatus":"Estado","TabSettings":"Configuraci\u00f3n","ButtonRefreshGuideData":"Actualizar Datos de la Gu\u00eda","OptionPriority":"Prioridad","OptionRecordOnAllChannels":"Grabar programa en todos los canales","OptionRecordAnytime":"Grabar programa en cualquier momento","OptionRecordOnlyNewEpisodes":"Grabar s\u00f3lo nuevos episodios","HeaderDays":"D\u00edas","HeaderActiveRecordings":"Grabaciones Activas","HeaderLatestRecordings":"\u00daltimas Grabaciones","HeaderAllRecordings":"Todas las Grabaciones","ButtonPlay":"Reproducir","ButtonEdit":"Editar","ButtonRecord":"Grabar","ButtonDelete":"Eliminar","ButtonRemove":"Remove","OptionRecordSeries":"Grabar Series","HeaderDetails":"Detalles","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/fr.json b/MediaBrowser.Server.Implementations/Localization/Server/fr.json index 08332d3c57..9d47bc938f 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/fr.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/fr.json @@ -1 +1 @@ -{"LabelExit":"Quitter","LabelVisitCommunity":"Visiter la Communaut\u00e9","LabelGithubWiki":"GitHub Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"Consulter la documentation API","LabelBrowseLibrary":"Parcourir la biblioth\u00e8que","LabelConfigureMediaBrowser":"Configurer Media Browser","LabelOpenLibraryViewer":"Ouvrir le navigateur de biblioth\u00e8que","LabelRestartServer":"Red\u00e9marrer le Serveur","LabelShowLogWindow":"Afficher la fen\u00eatre du journal d'\u00e9v\u00e8nements","LabelPrevious":"Pr\u00e9c\u00e9dent","LabelFinish":"Terminer","LabelNext":"Suivant","LabelYoureDone":"Vous avez Termin\u00e9!","WelcomeToMediaBrowser":"Bienvenue dans Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Cet assistant vous guidera dans le processus de configuration.","TellUsAboutYourself":"Parlez-nous de vous","LabelYourFirstName":"Votre pr\u00e9nom:","MoreUsersCanBeAddedLater":"D'autres utilisateurs pourront \u00eatre ajout\u00e9s ult\u00e9rieurement \u00e0 partir du tableau de bord.","UserProfilesIntro":"Media Browser supporte nativement les profils utilisateurs, donnant la possibilit\u00e9 pour chaque utilisateur d'avoir ses propres param\u00e8tres d'affichage, \u00e9tats de lecture et param\u00e8tres de contr\u00f4le parental.","LabelWindowsService":"Service Windows","AWindowsServiceHasBeenInstalled":"Un service Windows a \u00e9t\u00e9 install\u00e9.","WindowsServiceIntro1":"Media Browser fonctionne normalement en tant qu'application sur le bureau avec une ic\u00f4ne dans la barre des t\u00e2ches, mais si vous pr\u00e9f\u00e9rez le lancer en tant que service d'arri\u00e8re-plan, il peut \u00eatre d\u00e9marr\u00e9 via le gestionnaire de services Windows.","WindowsServiceIntro2":"Si le service Windows est utilis\u00e9, veuillez noter qu'il ne peut pas fonctionner en m\u00eame temps que l'application dans la barre des t\u00e2ches, il faut donc fermer l'application de la barre des t\u00e2ches pour pouvoir ex\u00e9cuter le service. Le service devra aussi \u00eatre configur\u00e9 avec les droits administrateurs via le panneau de configuration. Veuillez noter qu'actuellement la mise \u00e0 jour automatique du service n'est pas disponible, les mises \u00e0 jour devront donc se faire manuellement.","WizardCompleted":"C'est tout ce dont nous avons besoin pour l'instant. Media Browser a commenc\u00e9 la collecte d'information sur votre biblioth\u00e8que de m\u00e9dia. Visitez quelques unes de nos applications, ensuite cliquez Terminer<\/b> pour voir le Tableau de bord<\/b>","LabelConfigureSettings":"Configurer les param\u00e8tres","LabelEnableVideoImageExtraction":"Activer l'extraction d'image des videos","VideoImageExtractionHelp":"Pour les vid\u00e9os sans image et pour lesquelles nous n'avons pas trouv\u00e9 d'images sur Internet. Ce processus prolongera la mise \u00e0 jour initiale de la biblioth\u00e8que mais offrira un meilleur rendu visuel.","LabelEnableChapterImageExtractionForMovies":"Extraire les images de chapitre pour les films","LabelChapterImageExtractionForMoviesHelp":"L'extraction d'images de chapitre permettra aux clients d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources du processeur et de stockage (plusieurs gigaoctets). Il s'ex\u00e9cute par d\u00e9faut comme t\u00e2che programm\u00e9e \u00e0 4:00 (AM) mais son param\u00e9trage peut \u00eatre modifi\u00e9 dans les options des t\u00e2ches programm\u00e9es. Il est d\u00e9conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che durant les heures d'utilisation normales.","LabelEnableAutomaticPortMapping":"Activer la configuration automatique de port","LabelEnableAutomaticPortMappingHelp":"UPnP permet la configuration automatique de routeurs pour un acc\u00e8s \u00e0 distance facile. Ceci peut ne pas fonctionner sur certains mod\u00e8les de routeur.","ButtonOk":"Ok","ButtonCancel":"Annuler","HeaderSetupLibrary":"Configurer votre biblioth\u00e8que de m\u00e9dia","ButtonAddMediaFolder":"Ajouter r\u00e9pertoire de m\u00e9dia","LabelFolderType":"Type de r\u00e9pertoire:","MediaFolderHelpPluginRequired":"* Requiert l'utilisation d'un plug-in, Ex: GameBrowser ou MB BookShelf","ReferToMediaLibraryWiki":"Se r\u00e9f\u00e9rer au wiki des biblioth\u00e8ques de m\u00e9dia","LabelCountry":"Pays:","LabelLanguage":"Langue:","HeaderPreferredMetadataLanguage":"Langue pr\u00e9f\u00e9r\u00e9e pour les m\u00e9tadonn\u00e9es:","LabelSaveLocalMetadata":"Enregistrer les images et m\u00e9tadonn\u00e9es dans les r\u00e9pertoires de m\u00e9dia","LabelSaveLocalMetadataHelp":"Enregistrer les images et m\u00e9tadonn\u00e9es dans les r\u00e9pertoires de m\u00e9dia va les placer \u00e0 un endroit o\u00f9 elles pourront facilement \u00eatre modifi\u00e9es.","LabelDownloadInternetMetadata":"T\u00e9l\u00e9charger les images et m\u00e9tadonn\u00e9es depuis Internet","LabelDownloadInternetMetadataHelp":"Media Browser peut t\u00e9l\u00e9charger des m\u00e9tadonn\u00e9es sur vos m\u00e9dia pour en offrir une pr\u00e9sentation plus riche.","TabPreferences":"Pr\u00e9f\u00e9rences","TabPassword":"Mot de Passe","TabLibraryAccess":"Acc\u00e8s aux biblioth\u00e8ques","TabImage":"Image","TabProfile":"Profil","LabelDisplayMissingEpisodesWithinSeasons":"Afficher les \u00e9pisodes manquants dans les saisons","LabelUnairedMissingEpisodesWithinSeasons":"Afficher les \u00e9pisodes non diffus\u00e9s dans les saisons","HeaderVideoPlaybackSettings":"Param\u00e8tres de lecture video","LabelAudioLanguagePreference":"Param\u00e8tres de langue audio:","LabelSubtitleLanguagePreference":"Param\u00e8tres de langue de sous-titre","LabelDisplayForcedSubtitlesOnly":"Afficher seulement les sous-titres forc\u00e9s","TabProfiles":"Profils","TabSecurity":"S\u00e9curit\u00e9","ButtonAddUser":"Ajouter utilisateur","ButtonSave":"Sauvegarder","ButtonResetPassword":"R\u00e9initialiser Mot de Passe","LabelNewPassword":"Nouveau mot de passe","LabelNewPasswordConfirm":"Confirmation du nouveau mot de passe:","HeaderCreatePassword":"Cr\u00e9er Mot de Passe","LabelCurrentPassword":"Mot de passe actuel:","LabelMaxParentalRating":"Note maximale d'\u00e9valuation de contr\u00f4le parental:","MaxParentalRatingHelp":"Le contenu avec une note d'\u00e9valuation de contr\u00f4le parental plus \u00e9lev\u00e9e ne sera pas visible par cet utilisateur.","LibraryAccessHelp":"Selectionnez le r\u00e9pertoire de m\u00e9dia \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier tous les r\u00e9pertoires en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.","ButtonDeleteImage":"Supprimer Image","ButtonUpload":"Envoyer","HeaderUploadNewImage":"Envoyer nouvelle image","LabelDropImageHere":"Placer image ici","ImageUploadAspectRatioHelp":"Rapport d'aspect 1:1 recommand\u00e9. Seulement JPG\/PNG.","MessageNothingHere":"Rien ici.","MessagePleaseEnsureInternetMetadata":"Merci de vous assurer que le t\u00e9l\u00e9chargement des m\u00e9tadonn\u00e9es depuis Internet est bien activ\u00e9.","TabSuggested":"Sugg\u00e9r\u00e9s","TabLatest":"Plus r\u00e9cents","TabUpcoming":"\u00c0 venir","TabShows":"S\u00e9ries","TabEpisodes":"\u00c9pisodes","TabGenres":"Genres","TabPeople":"Personnes","TabNetworks":"R\u00e9seaux","HeaderUsers":"Utilisateurs","HeaderFilters":"Filtres:","ButtonFilter":"Filtre","OptionFavorite":"Favoris","OptionLikes":"Aim\u00e9s","OptionDislikes":"Non aim\u00e9s","OptionActors":"Acteurs","OptionGuestStars":"Guest Stars","OptionDirectors":"R\u00e9alisateurs","OptionWriters":"\u00c9crivains","OptionProducers":"Producteurs","HeaderResume":"Reprendre","HeaderNextUp":"Prochains \u00e0 voir","NoNextUpItemsMessage":"Aucun trouv\u00e9. Commencez \u00e0 regarder vos s\u00e9ries!","HeaderLatestEpisodes":"\u00c9pisodes les plus r\u00e9cents","HeaderPersonTypes":"Types de personne:","TabSongs":"Chansons","TabAlbums":"Albums","TabArtists":"Artistes","TabAlbumArtists":"Artistes sur l'album","TabMusicVideos":"Videos musicales","ButtonSort":"Tri","HeaderSortBy":"Trier par:","HeaderSortOrder":"Ordre de tri","OptionPlayed":"Vu","OptionUnplayed":"Non vu","OptionAscending":"Ascendant","OptionDescending":"Descendant","OptionRuntime":"Dur\u00e9e","OptionReleaseDate":"Date de lancement:","OptionPlayCount":"Nombre de lectures","OptionDatePlayed":"Date de lecture","OptionDateAdded":"Date d'ajout","OptionAlbumArtist":"Artiste de l'album","OptionArtist":"Artiste","OptionAlbum":"Album","OptionTrackName":"Nom du morceau","OptionCommunityRating":"Note de la communaut\u00e9","OptionNameSort":"Nom","OptionFolderSort":"R\u00e9pertoires","OptionBudget":"Budget","OptionRevenue":"Recettes","OptionPoster":"Affiche","OptionBackdrop":"Image d'arri\u00e8re-plan","OptionTimeline":"Chronologie","OptionThumb":"Vignette","OptionBanner":"Banni\u00e8re","OptionCriticRating":"Note des critiques","OptionVideoBitrate":"D\u00e9bit vid\u00e9o","OptionResumable":"Reprenable","ScheduledTasksHelp":"S\u00e9lectionnez une t\u00e2che pour ajuster sa programmation.","ScheduledTasksTitle":"T\u00e2ches programm\u00e9es","TabMyPlugins":"Mes Plug-ins","TabCatalog":"Catalogue","TabUpdates":"Mises \u00e0 jour","PluginsTitle":"Plug-ins","HeaderAutomaticUpdates":"Mises \u00e0 jour automatiques","HeaderUpdateLevel":"Niveau de mise \u00e0 jour","HeaderNowPlaying":"Lecture en cours","HeaderLatestAlbums":"Derniers albums","HeaderLatestSongs":"Derni\u00e8res chansons","HeaderRecentlyPlayed":"Lus r\u00e9cemment","HeaderFrequentlyPlayed":"Lus fr\u00e9quemment","DevBuildWarning":"Les versions Dev incorporent les derniers d\u00e9veloppements. Mises \u00e0 jour fr\u00e9quemment, ces versions ne sont pas test\u00e9es. L'application peut planter et certaines fonctionalit\u00e9s peuvent ne pas fonctionner du tout.","LabelVideoType":"Type de vid\u00e9o:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"Caract\u00e9ristiques:","OptionHasSubtitles":"Sous-titres","OptionHasTrailer":"Bande-annnonce","OptionHasThemeSong":"Chanson th\u00e8me","OptionHasThemeVideo":"Vid\u00e9o th\u00e8me","TabMovies":"Films","TabStudios":"Studios","TabTrailers":"Bande-annonces","HeaderLatestMovies":"Films les plus r\u00e9cents","HeaderLatestTrailers":"Bande-annonces les plus r\u00e9centes","OptionHasSpecialFeatures":"Bonus:","OptionImdbRating":"Note d'\u00e9valuation IMDb","OptionParentalRating":"Note d'\u00e9valuation de contr\u00f4le parental","OptionPremiereDate":"Date de sortie","TabBasic":"Standard","TabAdvanced":"Avanc\u00e9","HeaderStatus":"\u00c9tat","OptionContinuing":"En cours","OptionEnded":"Termin\u00e9","HeaderAirDays":"Jours de diffusion:","OptionSunday":"Dimanche","OptionMonday":"Lundi","OptionTuesday":"Mardi","OptionWednesday":"Mercredi","OptionThursday":"Jeudi","OptionFriday":"Vendredi","OptionSaturday":"Samedi","HeaderManagement":"Gestion:","OptionMissingImdbId":"ID IMDb manquant:","OptionMissingTvdbId":"ID TVDB manquant:","OptionMissingOverview":"R\u00e9sum\u00e9 manquant","OptionFileMetadataYearMismatch":"Conflit entre nom du fichier et les m\u00e9tadonn\u00e9es sur l'ann\u00e9e","TabGeneral":"G\u00e9n\u00e9ral","TitleSupport":"Soutien","TabLog":"Journal d'\u00e9v\u00e8nements","TabAbout":"\u00c0 propos","TabSupporterKey":"Cl\u00e9 de membre supporteur","TabBecomeSupporter":"Devenez un membre supporteur","MediaBrowserHasCommunity":"Media Browser dispose d'une communaut\u00e9 active d'utilisateurs et de contributeurs.","CheckoutKnowledgeBase":"Parcourez notre base de connaissances pour utiliser au mieux Media Browser.","SearchKnowledgeBase":"Rechercher dans la base de connaissances","VisitTheCommunity":"Visiter la Communaut\u00e9","VisitMediaBrowserWebsite":"Visiter le site Web de Media Browser","VisitMediaBrowserWebsiteLong":"Visiter le site Web de Media Browser pour lire les derni\u00e8res nouvelles et parcourir le journal des d\u00e9veloppeurs.","OptionHideUser":"Ne pas afficher cet utilisateur dans les \u00e9crans de connexion","OptionDisableUser":"D\u00e9sactiver cet utilisateur","OptionDisableUserHelp":"Si d\u00e9sactiv\u00e9, le serveur n'autorisera pas de connexion de cet utilisateur. Les connexions existantes seront interrompues.","HeaderAdvancedControl":"Contr\u00f4le avanc\u00e9","LabelName":"Nom:","OptionAllowUserToManageServer":"Autoriser la gestion du serveur \u00e0 cet utilisateur","HeaderFeatureAccess":"Acc\u00e8s aux caract\u00e9ristiques","OptionAllowMediaPlayback":"Autoriser la lecture du m\u00e9dia","OptionAllowBrowsingLiveTv":"Autoriser la TV en direct","OptionAllowDeleteLibraryContent":"Autoriser cet utilisateur \u00e0 supprimer du contenu de la biblioth\u00e8que","OptionAllowManageLiveTv":"Autoriser la gestion des enregistrements de la TV en direct","OptionAllowRemoteControlOthers":"Autoriser cet utilisateur \u00e0 cont\u00f4ler \u00e0 distance d'autres utilisateurs","OptionMissingTmdbId":"ID TMDb manquant","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"S\u00e9lectionner","ButtonGroupVersions":"Versions des groupes","PismoMessage":"En utilisation de \"Pismo File Mount\" par une license fournie.","PleaseSupportOtherProduces":"SVP, soutenez les autres produits gratuits que nous utilisons:","VersionNumber":"Version {0}","TabPaths":"Chemins d'acc\u00e8s","TabServer":"Serveur","TabTranscoding":"Transcodage","TitleAdvanced":"Avanc\u00e9","LabelAutomaticUpdateLevel":"Mise \u00e0 jour automatiques","OptionRelease":"Version officielle","OptionBeta":"Beta","OptionDev":"Dev (Instable)","LabelAllowServerAutoRestart":"Autoris\u00e9 le red\u00e9marrage automatique du serveur pour appliquer les mises \u00e0 jour","LabelAllowServerAutoRestartHelp":"Le serveur ne red\u00e9marrera que pendant les p\u00e9riodes d'inactivit\u00e9, lorsqu'aucun utilisateur est dans le syst\u00e8me.","LabelEnableDebugLogging":"Activer le d\u00e9goguage dans le journal d'\u00e9n\u00e8nements","LabelRunServerAtStartup":"D\u00e9marrer le serveur au d\u00e9marrage","LabelRunServerAtStartupHelp":"Ceci va d\u00e9marrer l'ic\u00f4ne dans la barre des t\u00e2ches au d\u00e9marrage de Windows. Pour d\u00e9marrer le service Windows, d\u00e9cochez ceci et ex\u00e9cutez le service \u00e0 partir du panneau de configuration Windows. Prendre note que vous ne pouvez pas ex\u00e9cuter les deux en m\u00eame temps, alors vous allez devoir fermer l'ic\u00f4ne dans la barre des t\u00e2ches avant de d\u00e9marrer le service.","ButtonSelectDirectory":"S\u00e9lectionner le r\u00e9pertoire","LabelCustomPaths":"Sp\u00e9cifier des chemins d'acc\u00e8s personnalis\u00e9s si d\u00e9sir\u00e9. Laisser vide pour garder les chemin d'acc\u00e8s par d\u00e9faut.","LabelCachePath":"Chemin d'acc\u00e8s du cache temporaire:","LabelCachePathHelp":"Ce r\u00e9pertoire contient les fichier temporaires du serveur, comme, par example, les images.","LabelImagesByNamePath":"Chemin d'acc\u00e8s de \"Images by Name\":","LabelImagesByNamePathHelp":"Ce r\u00e9pertoire contient les images des acteurs, genres et studios.","LabelMetadataPath":"Chemin d'acc\u00e8s des m\u00e9tadonn\u00e9es:","LabelMetadataPathHelp":"Cet emplacement contient les images et metadonn\u00e9es t\u00e9l\u00e9charg\u00e9es qui n'ont pas \u00e9t\u00e9 configur\u00e9es pour \u00eatre stock\u00e9es dans les r\u00e9pertoire de m\u00e9dias.","LabelTranscodingTempPath":"Chemin d'acc\u00e8s temporaire du transcodage:","LabelTranscodingTempPathHelp":"Ce r\u00e9pertoire contient les fichiers temporaires utilis\u00e9s par le transcodeur.","TabBasics":"Standards","TabTV":"TV","TabGames":"Jeux","TabMusic":"Musique","TabOthers":"Autres","HeaderExtractChapterImagesFor":"Extraire les images de chapitres pour:","OptionMovies":"Films","OptionEpisodes":"\u00c9pisodes","OptionOtherVideos":"Autres Vid\u00e9os","TitleMetadata":"M\u00e9tadonn\u00e9es","LabelAutomaticUpdatesFanart":"Activer les mises \u00e0 jour automatique depuis FanArt.tv","LabelAutomaticUpdatesTmdb":"Activer les mises \u00e0 jour automatique depuis TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Activer les mises \u00e0 jour automatique depuis TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles seront ajout\u00e9es dans Fanart.tv. Les images existantes ne seront pas remplac\u00e9es.","LabelAutomaticUpdatesTmdbHelp":"Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles seront ajout\u00e9es dans TheMovieDB.org. Les images existantes ne seront pas remplac\u00e9es.","LabelAutomaticUpdatesTvdbHelp":"Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles seront ajout\u00e9es dans TheTVDB.com. Les images existantes ne seront pas remplac\u00e9es.","ExtractChapterImagesHelp":"L'extraction d'images de chapitre permettra aux clients d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources du processeur et de stockage (plusieurs gigaoctets). Il s'ex\u00e9cute par d\u00e9faut comme t\u00e2che programm\u00e9e \u00e0 4:00 (AM) mais son param\u00e9trage peut \u00eatre modifi\u00e9 dans les options des t\u00e2ches programm\u00e9es. Il est d\u00e9conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che durant les heures d'utilisation normales.","LabelMetadataDownloadLanguage":"Langue pr\u00e9f\u00e9r\u00e9e","ButtonAutoScroll":"D\u00e9fillement automatique","LabelImageSavingConvention":"Convention de sauvegarde des images:","LabelImageSavingConventionHelp":"Media Browser reconnait les images des autres applications de m\u00e9dia importants. Choisir la convention de t\u00e9l\u00e9chargement peut \u00eatre pratique si vous utilisez aussi d'autres produits.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/XBMC","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Se connecter","TitleSignIn":"Se connecter","HeaderPleaseSignIn":"SVP se connecter","LabelUser":"Utilisateur:","LabelPassword":"Mot de passe:","ButtonManualLogin":"Connexion manuelle:","PasswordLocalhostMessage":"Aucun mot de passe requis pour les connexions par \"localhost\".","TabGuide":"Guide horaire","TabChannels":"Cha\u00eenes","HeaderChannels":"Cha\u00eenes","TabRecordings":"Enregistrements","TabScheduled":"Programm\u00e9s","TabSeries":"S\u00e9ries","ButtonCancelRecording":"Annuler l'enregistrement","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"\u00c0 l'affiche","HeaderUpcomingTV":"TV \u00e0 venir","TabStatus":"\u00c9tat","TabSettings":"Param\u00e8tres","ButtonRefreshGuideData":"Rafra\u00eechir les donn\u00e9es du guide horaire.","OptionPriority":"Priorit\u00e9","OptionRecordOnAllChannels":"Enregistrer le programme sur toutes les cha\u00eenes","OptionRecordAnytime":"Enregistrer le programme \u00e0 n'importe quelle heure\/journ\u00e9e","OptionRecordOnlyNewEpisodes":"Enregistrer seulement les nouvelles \u00e9pisodes","HeaderDays":"Jours","HeaderActiveRecordings":"Enregistrements actifs","HeaderLatestRecordings":"Derniers enregistrements","HeaderAllRecordings":"Tous les enregistrements","ButtonPlay":"Lire","ButtonEdit":"Modifier","ButtonRecord":"Enregistrer","ButtonDelete":"Supprimer","OptionRecordSeries":"Enregistrer S\u00e9ries","HeaderDetails":"D\u00e9tails","TitleLiveTV":"TV en direct","LabelNumberOfGuideDays":"Nombre de jours de donn\u00e9es du guide \u00e0 t\u00e9l\u00e9charger:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Service Actif:","LabelActiveServiceHelp":"Plusieurs Plugins de TV peuvent \u00eatre install\u00e9s mais seulement un \u00e0 la fois peut \u00eatre actif.","OptionAutomatic":"Auto","LiveTvPluginRequired":"Un fournisseur de service de TV en direct est requis pour continuer.","LiveTvPluginRequiredHelp":"SVP installer un de nos plugins disponibles, comme Next Pvr ou ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Personnaliser les param\u00e8tres par type de m\u00e9dias","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Bo\u00eetier","OptionDownloadDiscImage":"Disque","OptionDownloadBannerImage":"Banni\u00e8re","OptionDownloadBackImage":"Dos","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Principal","HeaderFetchImages":"T\u00e9l\u00e9charger Images:","HeaderImageSettings":"Param\u00e8tres d'image","LabelMaxBackdropsPerItem":"Nombre maximum d'images d'arri\u00e8re-plan par item:","LabelMaxScreenshotsPerItem":"Nombre maximum de captures d'\u00e9cran par item:","LabelMinBackdropDownloadWidth":"Largeur minimum d'image d'arri\u00e8re-plan \u00e0 t\u00e9l\u00e9charger:","LabelMinScreenshotDownloadWidth":"Largeur minimum de capture d'\u00e9cran \u00e0 t\u00e9l\u00e9charger:","ButtonAddScheduledTaskTrigger":"Ajouter un d\u00e9clencheur de t\u00e2che","HeaderAddScheduledTaskTrigger":"Ajouter un d\u00e9clencheur de t\u00e2che","ButtonAdd":"Ajouter","LabelTriggerType":"Type de d\u00e9clencheur:","OptionDaily":"Quotidien","OptionWeekly":"Hebdomadaire","OptionOnInterval":"Par intervale","OptionOnAppStartup":"Par d\u00e9marrage de l'application","OptionAfterSystemEvent":"Apr\u00e8s un \u00e9v\u00e8nement syst\u00e8me","LabelDay":"Jour:","LabelTime":"Heure:","LabelEvent":"\u00c9v\u00e8nement:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Tous les:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallerie","HeaderLatestGames":"Jeux les plus r\u00e9cents","HeaderRecentlyPlayedGames":"Jeux r\u00e9cemment jou\u00e9s","TabGameSystems":"Plate-formes de jeux:","TitleMediaLibrary":"Biblioth\u00e8que de m\u00e9dias","TabFolders":"R\u00e9pertoires","TabPathSubstitution":"Substitution de chemin d'acc\u00e8s","LabelSeasonZeroDisplayName":"Nom d'affichage de \"Season 0\":","LabelEnableRealtimeMonitor":"Activer la surveillance en temps r\u00e9elle","LabelEnableRealtimeMonitorHelp":"Les changements seront trait\u00e9s dans l'imm\u00e9diat, sur les syst\u00e8mes de fichiers support\u00e9s.","ButtonScanLibrary":"Balayer Biblioth\u00e8que","HeaderNumberOfPlayers":"Lecteurs:","OptionAnyNumberOfPlayers":"N'importe quel:","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"R\u00e9pertoires de m\u00e9dias","HeaderThemeVideos":"Vid\u00e9os th\u00e8mes","HeaderThemeSongs":"Chansons Th\u00e8mes","HeaderScenes":"Sc\u00e8nes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Trames Sonores","HeaderMusicVideos":"Vid\u00e9os Musicaux","HeaderSpecialFeatures":"\u00c9v\u00e9nements sp\u00e9ciaux","HeaderCastCrew":"\u00c9quipe de tournage","HeaderAdditionalParts":"Parties Additionelles","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Bande-annonce","LabelMissing":"Manquant(s)","LabelOffline":"Hors ligne","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"De","HeaderTo":"\u00c0","LabelFrom":"De","LabelFromHelp":"Exemple: D:\\Films (sur le serveur)","LabelTo":"\u00c0:","LabelToHelp":"Exemple: \\\\MonServeur\\Films (un chemin d'acc\u00e8s accessible par les clients)","ButtonAddPathSubstitution":"Ajouter Substitution","OptionSpecialEpisode":"Sp\u00e9ciaux","OptionMissingEpisode":"\u00c9pisodes manquantes","OptionUnairedEpisode":"\u00c9pisodes non diffus\u00e9es","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Nom de s\u00e9ries","OptionTvdbRating":"Note d'\u00e9valuation Tvdb","HeaderTranscodingQualityPreference":"Qualit\u00e9 du transcodage pr\u00e9f\u00e9r\u00e9e:","OptionAutomaticTranscodingHelp":"Le serveur d\u00e9cidera de la qualit\u00e9 et vitesse","OptionHighSpeedTranscodingHelp":"Plus basse qualit\u00e9 mais encodage plus rapide","OptionHighQualityTranscodingHelp":"Plus haute qualit\u00e9 mais encodage moins rapide","OptionMaxQualityTranscodingHelp":"Meilleure qualit\u00e9 avec encodage plus lent et haute utilisation du processeur.","OptionHighSpeedTranscoding":"Vitesse plus \u00e9lev\u00e9e","OptionHighQualityTranscoding":"Qualit\u00e9 plus \u00e9lev\u00e9e","OptionMaxQualityTranscoding":"Qualit\u00e9 maximale","OptionEnableDebugTranscodingLogging":"Activer le d\u00e9bogage du transcodage dans le journal d'\u00e9v\u00e8nements","OptionEnableDebugTranscodingLoggingHelp":"Ceci va cr\u00e9era un journal d\u2019\u00e9v\u00e9nements tr\u00e8s volumineux et n'est recommand\u00e9 que pour des besoins de diagnostique.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"Dans certains cas, la qualit\u00e9 vid\u00e9o sera am\u00e9lior\u00e9e mais augmentera l'utilisation du processeur."} \ No newline at end of file +{"LabelExit":"Quitter","LabelVisitCommunity":"Visiter la Communaut\u00e9","LabelGithubWiki":"GitHub Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"Consulter la documentation API","LabelBrowseLibrary":"Parcourir la biblioth\u00e8que","LabelConfigureMediaBrowser":"Configurer Media Browser","LabelOpenLibraryViewer":"Ouvrir le navigateur de biblioth\u00e8que","LabelRestartServer":"Red\u00e9marrer le Serveur","LabelShowLogWindow":"Afficher la fen\u00eatre du journal d'\u00e9v\u00e8nements","LabelPrevious":"Pr\u00e9c\u00e9dent","LabelFinish":"Terminer","LabelNext":"Suivant","LabelYoureDone":"Vous avez Termin\u00e9!","WelcomeToMediaBrowser":"Bienvenue dans Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Cet assistant vous guidera dans le processus de configuration.","TellUsAboutYourself":"Parlez-nous de vous","LabelYourFirstName":"Votre pr\u00e9nom:","MoreUsersCanBeAddedLater":"D'autres utilisateurs pourront \u00eatre ajout\u00e9s ult\u00e9rieurement \u00e0 partir du tableau de bord.","UserProfilesIntro":"Media Browser supporte nativement les profils utilisateurs, donnant la possibilit\u00e9 pour chaque utilisateur d'avoir ses propres param\u00e8tres d'affichage, \u00e9tats de lecture et param\u00e8tres de contr\u00f4le parental.","LabelWindowsService":"Service Windows","AWindowsServiceHasBeenInstalled":"Un service Windows a \u00e9t\u00e9 install\u00e9.","WindowsServiceIntro1":"Media Browser fonctionne normalement en tant qu'application sur le bureau avec une ic\u00f4ne dans la barre des t\u00e2ches, mais si vous pr\u00e9f\u00e9rez le lancer en tant que service d'arri\u00e8re-plan, il peut \u00eatre d\u00e9marr\u00e9 via le gestionnaire de services Windows.","WindowsServiceIntro2":"Si le service Windows est utilis\u00e9, veuillez noter qu'il ne peut pas fonctionner en m\u00eame temps que l'application dans la barre des t\u00e2ches, il faut donc fermer l'application de la barre des t\u00e2ches pour pouvoir ex\u00e9cuter le service. Le service devra aussi \u00eatre configur\u00e9 avec les droits administrateurs via le panneau de configuration. Veuillez noter qu'actuellement la mise \u00e0 jour automatique du service n'est pas disponible, les mises \u00e0 jour devront donc se faire manuellement.","WizardCompleted":"C'est tout ce dont nous avons besoin pour l'instant. Media Browser a commenc\u00e9 la collecte d'information sur votre biblioth\u00e8que de m\u00e9dia. Visitez quelques unes de nos applications, ensuite cliquez Terminer<\/b> pour voir le Tableau de bord<\/b>","LabelConfigureSettings":"Configurer les param\u00e8tres","LabelEnableVideoImageExtraction":"Activer l'extraction d'image des videos","VideoImageExtractionHelp":"Pour les vid\u00e9os sans image et pour lesquelles nous n'avons pas trouv\u00e9 d'images sur Internet. Ce processus prolongera la mise \u00e0 jour initiale de la biblioth\u00e8que mais offrira un meilleur rendu visuel.","LabelEnableChapterImageExtractionForMovies":"Extraire les images de chapitre pour les films","LabelChapterImageExtractionForMoviesHelp":"L'extraction d'images de chapitre permettra aux clients d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources du processeur et de stockage (plusieurs gigaoctets). Il s'ex\u00e9cute par d\u00e9faut comme t\u00e2che programm\u00e9e \u00e0 4:00 (AM) mais son param\u00e9trage peut \u00eatre modifi\u00e9 dans les options des t\u00e2ches programm\u00e9es. Il est d\u00e9conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che durant les heures d'utilisation normales.","LabelEnableAutomaticPortMapping":"Activer la configuration automatique de port","LabelEnableAutomaticPortMappingHelp":"UPnP permet la configuration automatique de routeurs pour un acc\u00e8s \u00e0 distance facile. Ceci peut ne pas fonctionner sur certains mod\u00e8les de routeur.","ButtonOk":"Ok","ButtonCancel":"Annuler","ButtonNew":"Nouveau","HeaderSetupLibrary":"Configurer votre biblioth\u00e8que de m\u00e9dia","ButtonAddMediaFolder":"Ajouter r\u00e9pertoire de m\u00e9dia","LabelFolderType":"Type de r\u00e9pertoire:","MediaFolderHelpPluginRequired":"* Requiert l'utilisation d'un plug-in, Ex: GameBrowser ou MB BookShelf","ReferToMediaLibraryWiki":"Se r\u00e9f\u00e9rer au wiki des biblioth\u00e8ques de m\u00e9dia","LabelCountry":"Pays:","LabelLanguage":"Langue:","HeaderPreferredMetadataLanguage":"Langue pr\u00e9f\u00e9r\u00e9e pour les m\u00e9tadonn\u00e9es:","LabelSaveLocalMetadata":"Enregistrer les images et m\u00e9tadonn\u00e9es dans les r\u00e9pertoires de m\u00e9dia","LabelSaveLocalMetadataHelp":"Enregistrer les images et m\u00e9tadonn\u00e9es dans les r\u00e9pertoires de m\u00e9dia va les placer \u00e0 un endroit o\u00f9 elles pourront facilement \u00eatre modifi\u00e9es.","LabelDownloadInternetMetadata":"T\u00e9l\u00e9charger les images et m\u00e9tadonn\u00e9es depuis Internet","LabelDownloadInternetMetadataHelp":"Media Browser peut t\u00e9l\u00e9charger des m\u00e9tadonn\u00e9es sur vos m\u00e9dia pour en offrir une pr\u00e9sentation plus riche.","TabPreferences":"Pr\u00e9f\u00e9rences","TabPassword":"Mot de Passe","TabLibraryAccess":"Acc\u00e8s aux biblioth\u00e8ques","TabImage":"Image","TabProfile":"Profil","TabMetadata":"M\u00e9tadonn\u00e9es","TabImages":"Images","TabCollectionTitles":"Titres","LabelDisplayMissingEpisodesWithinSeasons":"Afficher les \u00e9pisodes manquants dans les saisons","LabelUnairedMissingEpisodesWithinSeasons":"Afficher les \u00e9pisodes non diffus\u00e9s dans les saisons","HeaderVideoPlaybackSettings":"Param\u00e8tres de lecture video","LabelAudioLanguagePreference":"Param\u00e8tres de langue audio:","LabelSubtitleLanguagePreference":"Param\u00e8tres de langue de sous-titre","LabelDisplayForcedSubtitlesOnly":"Afficher seulement les sous-titres forc\u00e9s","TabProfiles":"Profils","TabSecurity":"S\u00e9curit\u00e9","ButtonAddUser":"Ajouter utilisateur","ButtonSave":"Sauvegarder","ButtonResetPassword":"R\u00e9initialiser Mot de Passe","LabelNewPassword":"Nouveau mot de passe","LabelNewPasswordConfirm":"Confirmation du nouveau mot de passe:","HeaderCreatePassword":"Cr\u00e9er Mot de Passe","LabelCurrentPassword":"Mot de passe actuel:","LabelMaxParentalRating":"Note maximale d'\u00e9valuation de contr\u00f4le parental:","MaxParentalRatingHelp":"Le contenu avec une note d'\u00e9valuation de contr\u00f4le parental plus \u00e9lev\u00e9e ne sera pas visible par cet utilisateur.","LibraryAccessHelp":"Selectionnez le r\u00e9pertoire de m\u00e9dia \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier tous les r\u00e9pertoires en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.","ButtonDeleteImage":"Supprimer Image","ButtonUpload":"Envoyer","HeaderUploadNewImage":"Envoyer nouvelle image","LabelDropImageHere":"Placer image ici","ImageUploadAspectRatioHelp":"Rapport d'aspect 1:1 recommand\u00e9. Seulement JPG\/PNG.","MessageNothingHere":"Rien ici.","MessagePleaseEnsureInternetMetadata":"Merci de vous assurer que le t\u00e9l\u00e9chargement des m\u00e9tadonn\u00e9es depuis Internet est bien activ\u00e9.","TabSuggested":"Sugg\u00e9r\u00e9s","TabLatest":"Plus r\u00e9cents","TabUpcoming":"\u00c0 venir","TabShows":"S\u00e9ries","TabEpisodes":"\u00c9pisodes","TabGenres":"Genres","TabPeople":"Personnes","TabNetworks":"R\u00e9seaux","HeaderUsers":"Utilisateurs","HeaderFilters":"Filtres:","ButtonFilter":"Filtre","OptionFavorite":"Favoris","OptionLikes":"Aim\u00e9s","OptionDislikes":"Non aim\u00e9s","OptionActors":"Acteurs","OptionGuestStars":"Guest Stars","OptionDirectors":"R\u00e9alisateurs","OptionWriters":"\u00c9crivains","OptionProducers":"Producteurs","HeaderResume":"Reprendre","HeaderNextUp":"Prochains \u00e0 voir","NoNextUpItemsMessage":"Aucun trouv\u00e9. Commencez \u00e0 regarder vos s\u00e9ries!","HeaderLatestEpisodes":"\u00c9pisodes les plus r\u00e9cents","HeaderPersonTypes":"Types de personne:","TabSongs":"Chansons","TabAlbums":"Albums","TabArtists":"Artistes","TabAlbumArtists":"Artistes sur l'album","TabMusicVideos":"Videos musicales","ButtonSort":"Tri","HeaderSortBy":"Trier par:","HeaderSortOrder":"Ordre de tri","OptionPlayed":"Vu","OptionUnplayed":"Non vu","OptionAscending":"Ascendant","OptionDescending":"Descendant","OptionRuntime":"Dur\u00e9e","OptionReleaseDate":"Date de lancement:","OptionPlayCount":"Nombre de lectures","OptionDatePlayed":"Date de lecture","OptionDateAdded":"Date d'ajout","OptionAlbumArtist":"Artiste de l'album","OptionArtist":"Artiste","OptionAlbum":"Album","OptionTrackName":"Nom du morceau","OptionCommunityRating":"Note de la communaut\u00e9","OptionNameSort":"Nom","OptionFolderSort":"R\u00e9pertoires","OptionBudget":"Budget","OptionRevenue":"Recettes","OptionPoster":"Affiche","OptionBackdrop":"Image d'arri\u00e8re-plan","OptionTimeline":"Chronologie","OptionThumb":"Vignette","OptionBanner":"Banni\u00e8re","OptionCriticRating":"Note des critiques","OptionVideoBitrate":"D\u00e9bit vid\u00e9o","OptionResumable":"Reprenable","ScheduledTasksHelp":"S\u00e9lectionnez une t\u00e2che pour ajuster sa programmation.","ScheduledTasksTitle":"T\u00e2ches programm\u00e9es","TabMyPlugins":"Mes Plugins","TabCatalog":"Catalogue","TabUpdates":"Mises \u00e0 jour","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Mises \u00e0 jour automatiques","HeaderUpdateLevel":"Niveau de mise \u00e0 jour","HeaderNowPlaying":"Lecture en cours","HeaderLatestAlbums":"Derniers albums","HeaderLatestSongs":"Derni\u00e8res chansons","HeaderRecentlyPlayed":"Lus r\u00e9cemment","HeaderFrequentlyPlayed":"Lus fr\u00e9quemment","DevBuildWarning":"Les versions Dev incorporent les derniers d\u00e9veloppements. Mises \u00e0 jour fr\u00e9quemment, ces versions ne sont pas test\u00e9es. L'application peut planter et certaines fonctionalit\u00e9s peuvent ne pas fonctionner du tout.","LabelVideoType":"Type de vid\u00e9o:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"Caract\u00e9ristiques:","OptionHasSubtitles":"Sous-titres","OptionHasTrailer":"Bande-annnonce","OptionHasThemeSong":"Chanson th\u00e8me","OptionHasThemeVideo":"Vid\u00e9o th\u00e8me","TabMovies":"Films","TabStudios":"Studios","TabTrailers":"Bande-annonces","HeaderLatestMovies":"Films les plus r\u00e9cents","HeaderLatestTrailers":"Bande-annonces les plus r\u00e9centes","OptionHasSpecialFeatures":"Bonus:","OptionImdbRating":"Note d'\u00e9valuation IMDb","OptionParentalRating":"Note d'\u00e9valuation de contr\u00f4le parental","OptionPremiereDate":"Date de sortie","TabBasic":"Standard","TabAdvanced":"Avanc\u00e9","HeaderStatus":"\u00c9tat","OptionContinuing":"En cours","OptionEnded":"Termin\u00e9","HeaderAirDays":"Jours de diffusion:","OptionSunday":"Dimanche","OptionMonday":"Lundi","OptionTuesday":"Mardi","OptionWednesday":"Mercredi","OptionThursday":"Jeudi","OptionFriday":"Vendredi","OptionSaturday":"Samedi","HeaderManagement":"Gestion:","OptionMissingImdbId":"ID IMDb manquant:","OptionMissingTvdbId":"ID TVDB manquant:","OptionMissingOverview":"R\u00e9sum\u00e9 manquant","OptionFileMetadataYearMismatch":"Conflit entre nom du fichier et les m\u00e9tadonn\u00e9es sur l'ann\u00e9e","TabGeneral":"G\u00e9n\u00e9ral","TitleSupport":"Soutien","TabLog":"Journal d'\u00e9v\u00e8nements","TabAbout":"\u00c0 propos","TabSupporterKey":"Cl\u00e9 de membre supporteur","TabBecomeSupporter":"Devenez un membre supporteur","MediaBrowserHasCommunity":"Media Browser dispose d'une communaut\u00e9 active d'utilisateurs et de contributeurs.","CheckoutKnowledgeBase":"Parcourez notre base de connaissances pour utiliser au mieux Media Browser.","SearchKnowledgeBase":"Rechercher dans la base de connaissances","VisitTheCommunity":"Visiter la Communaut\u00e9","VisitMediaBrowserWebsite":"Visiter le site Web de Media Browser","VisitMediaBrowserWebsiteLong":"Visiter le site Web de Media Browser pour lire les derni\u00e8res nouvelles et parcourir le journal des d\u00e9veloppeurs.","OptionHideUser":"Ne pas afficher cet utilisateur dans les \u00e9crans de connexion","OptionDisableUser":"D\u00e9sactiver cet utilisateur","OptionDisableUserHelp":"Si d\u00e9sactiv\u00e9, le serveur n'autorisera pas de connexion de cet utilisateur. Les connexions existantes seront interrompues.","HeaderAdvancedControl":"Contr\u00f4le avanc\u00e9","LabelName":"Nom:","OptionAllowUserToManageServer":"Autoriser la gestion du serveur \u00e0 cet utilisateur","HeaderFeatureAccess":"Acc\u00e8s aux caract\u00e9ristiques","OptionAllowMediaPlayback":"Autoriser la lecture du m\u00e9dia","OptionAllowBrowsingLiveTv":"Autoriser la TV en direct","OptionAllowDeleteLibraryContent":"Autoriser cet utilisateur \u00e0 supprimer du contenu de la biblioth\u00e8que","OptionAllowManageLiveTv":"Autoriser la gestion des enregistrements de la TV en direct","OptionAllowRemoteControlOthers":"Autoriser cet utilisateur \u00e0 cont\u00f4ler \u00e0 distance d'autres utilisateurs","OptionMissingTmdbId":"ID TMDb manquant","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"S\u00e9lectionner","ButtonSearch":"Recherche","ButtonGroupVersions":"Versions des groupes","PismoMessage":"En utilisation de \"Pismo File Mount\" par une license fournie.","PleaseSupportOtherProduces":"SVP, soutenez les autres produits gratuits que nous utilisons:","VersionNumber":"Version {0}","TabPaths":"Chemins d'acc\u00e8s","TabServer":"Serveur","TabTranscoding":"Transcodage","TitleAdvanced":"Avanc\u00e9","LabelAutomaticUpdateLevel":"Mise \u00e0 jour automatiques","OptionRelease":"Version officielle","OptionBeta":"Beta","OptionDev":"Dev (Instable)","LabelAllowServerAutoRestart":"Autoris\u00e9 le red\u00e9marrage automatique du serveur pour appliquer les mises \u00e0 jour","LabelAllowServerAutoRestartHelp":"Le serveur ne red\u00e9marrera que pendant les p\u00e9riodes d'inactivit\u00e9, lorsqu'aucun utilisateur est dans le syst\u00e8me.","LabelEnableDebugLogging":"Activer le d\u00e9goguage dans le journal d'\u00e9n\u00e8nements","LabelRunServerAtStartup":"D\u00e9marrer le serveur au d\u00e9marrage","LabelRunServerAtStartupHelp":"Ceci va d\u00e9marrer l'ic\u00f4ne dans la barre des t\u00e2ches au d\u00e9marrage de Windows. Pour d\u00e9marrer le service Windows, d\u00e9cochez ceci et ex\u00e9cutez le service \u00e0 partir du panneau de configuration Windows. Prendre note que vous ne pouvez pas ex\u00e9cuter les deux en m\u00eame temps, alors vous allez devoir fermer l'ic\u00f4ne dans la barre des t\u00e2ches avant de d\u00e9marrer le service.","ButtonSelectDirectory":"S\u00e9lectionner le r\u00e9pertoire","LabelCustomPaths":"Sp\u00e9cifier des chemins d'acc\u00e8s personnalis\u00e9s si d\u00e9sir\u00e9. Laisser vide pour garder les chemin d'acc\u00e8s par d\u00e9faut.","LabelCachePath":"Chemin d'acc\u00e8s du cache temporaire:","LabelCachePathHelp":"Ce r\u00e9pertoire contient les fichier temporaires du serveur, comme, par example, les images.","LabelImagesByNamePath":"Chemin d'acc\u00e8s de \"Images by Name\":","LabelImagesByNamePathHelp":"Ce r\u00e9pertoire contient les images des acteurs, genres et studios.","LabelMetadataPath":"Chemin d'acc\u00e8s des m\u00e9tadonn\u00e9es:","LabelMetadataPathHelp":"Cet emplacement contient les images et metadonn\u00e9es t\u00e9l\u00e9charg\u00e9es qui n'ont pas \u00e9t\u00e9 configur\u00e9es pour \u00eatre stock\u00e9es dans les r\u00e9pertoire de m\u00e9dias.","LabelTranscodingTempPath":"Chemin d'acc\u00e8s temporaire du transcodage:","LabelTranscodingTempPathHelp":"Ce r\u00e9pertoire contient les fichiers temporaires utilis\u00e9s par le transcodeur.","TabBasics":"Standards","TabTV":"TV","TabGames":"Jeux","TabMusic":"Musique","TabOthers":"Autres","HeaderExtractChapterImagesFor":"Extraire les images de chapitres pour:","OptionMovies":"Films","OptionEpisodes":"\u00c9pisodes","OptionOtherVideos":"Autres Vid\u00e9os","TitleMetadata":"M\u00e9tadonn\u00e9es","LabelAutomaticUpdatesFanart":"Activer les mises \u00e0 jour automatique depuis FanArt.tv","LabelAutomaticUpdatesTmdb":"Activer les mises \u00e0 jour automatique depuis TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Activer les mises \u00e0 jour automatique depuis TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles seront ajout\u00e9es dans Fanart.tv. Les images existantes ne seront pas remplac\u00e9es.","LabelAutomaticUpdatesTmdbHelp":"Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles seront ajout\u00e9es dans TheMovieDB.org. Les images existantes ne seront pas remplac\u00e9es.","LabelAutomaticUpdatesTvdbHelp":"Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles seront ajout\u00e9es dans TheTVDB.com. Les images existantes ne seront pas remplac\u00e9es.","ExtractChapterImagesHelp":"L'extraction d'images de chapitre permettra aux clients d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources du processeur et de stockage (plusieurs gigaoctets). Il s'ex\u00e9cute par d\u00e9faut comme t\u00e2che programm\u00e9e \u00e0 4:00 (AM) mais son param\u00e9trage peut \u00eatre modifi\u00e9 dans les options des t\u00e2ches programm\u00e9es. Il est d\u00e9conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che durant les heures d'utilisation normales.","LabelMetadataDownloadLanguage":"Langue pr\u00e9f\u00e9r\u00e9e","ButtonAutoScroll":"D\u00e9fillement automatique","LabelImageSavingConvention":"Convention de sauvegarde des images:","LabelImageSavingConventionHelp":"Media Browser reconnait les images des autres applications de m\u00e9dia importants. Choisir la convention de t\u00e9l\u00e9chargement peut \u00eatre pratique si vous utilisez aussi d'autres produits.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/XBMC","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Se connecter","TitleSignIn":"Se connecter","HeaderPleaseSignIn":"SVP se connecter","LabelUser":"Utilisateur:","LabelPassword":"Mot de passe:","ButtonManualLogin":"Connexion manuelle:","PasswordLocalhostMessage":"Aucun mot de passe requis pour les connexions par \"localhost\".","TabGuide":"Guide horaire","TabChannels":"Cha\u00eenes","HeaderChannels":"Cha\u00eenes","TabRecordings":"Enregistrements","TabScheduled":"Programm\u00e9s","TabSeries":"S\u00e9ries","ButtonCancelRecording":"Annuler l'enregistrement","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"\u00c0 l'affiche","HeaderUpcomingTV":"TV \u00e0 venir","TabStatus":"\u00c9tat","TabSettings":"Param\u00e8tres","ButtonRefreshGuideData":"Rafra\u00eechir les donn\u00e9es du guide horaire.","OptionPriority":"Priorit\u00e9","OptionRecordOnAllChannels":"Enregistrer le programme sur toutes les cha\u00eenes","OptionRecordAnytime":"Enregistrer le programme \u00e0 n'importe quelle heure\/journ\u00e9e","OptionRecordOnlyNewEpisodes":"Enregistrer seulement les nouvelles \u00e9pisodes","HeaderDays":"Jours","HeaderActiveRecordings":"Enregistrements actifs","HeaderLatestRecordings":"Derniers enregistrements","HeaderAllRecordings":"Tous les enregistrements","ButtonPlay":"Lire","ButtonEdit":"Modifier","ButtonRecord":"Enregistrer","ButtonDelete":"Supprimer","ButtonRemove":"Supprimer","OptionRecordSeries":"Enregistrer S\u00e9ries","HeaderDetails":"D\u00e9tails","TitleLiveTV":"TV en direct","LabelNumberOfGuideDays":"Nombre de jours de donn\u00e9es du guide \u00e0 t\u00e9l\u00e9charger:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Service Actif:","LabelActiveServiceHelp":"Plusieurs Plugins de TV peuvent \u00eatre install\u00e9s mais seulement un \u00e0 la fois peut \u00eatre actif.","OptionAutomatic":"Auto","LiveTvPluginRequired":"Un fournisseur de service de TV en direct est requis pour continuer.","LiveTvPluginRequiredHelp":"SVP installer un de nos Plugins disponibles, comme Next Pvr ou ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Personnaliser les param\u00e8tres par type de m\u00e9dias","OptionDownloadThumbImage":"Vignette","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Bo\u00eetier","OptionDownloadDiscImage":"Disque","OptionDownloadBannerImage":"Banni\u00e8re","OptionDownloadBackImage":"Dos","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Principal","HeaderFetchImages":"T\u00e9l\u00e9charger Images:","HeaderImageSettings":"Param\u00e8tres d'image","LabelMaxBackdropsPerItem":"Nombre maximum d'images d'arri\u00e8re-plan par item:","LabelMaxScreenshotsPerItem":"Nombre maximum de captures d'\u00e9cran par item:","LabelMinBackdropDownloadWidth":"Largeur minimum d'image d'arri\u00e8re-plan \u00e0 t\u00e9l\u00e9charger:","LabelMinScreenshotDownloadWidth":"Largeur minimum de capture d'\u00e9cran \u00e0 t\u00e9l\u00e9charger:","ButtonAddScheduledTaskTrigger":"Ajouter un d\u00e9clencheur de t\u00e2che","HeaderAddScheduledTaskTrigger":"Ajouter un d\u00e9clencheur de t\u00e2che","ButtonAdd":"Ajouter","LabelTriggerType":"Type de d\u00e9clencheur:","OptionDaily":"Quotidien","OptionWeekly":"Hebdomadaire","OptionOnInterval":"Par intervale","OptionOnAppStartup":"Par d\u00e9marrage de l'application","OptionAfterSystemEvent":"Apr\u00e8s un \u00e9v\u00e8nement syst\u00e8me","LabelDay":"Jour:","LabelTime":"Heure:","LabelEvent":"\u00c9v\u00e8nement:","OptionWakeFromSleep":"Sortie de veille","LabelEveryXMinutes":"Tous les:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallerie","HeaderLatestGames":"Jeux les plus r\u00e9cents","HeaderRecentlyPlayedGames":"Jeux r\u00e9cemment jou\u00e9s","TabGameSystems":"Plate-formes de jeux:","TitleMediaLibrary":"Biblioth\u00e8que de m\u00e9dias","TabFolders":"R\u00e9pertoires","TabPathSubstitution":"Substitution de chemin d'acc\u00e8s","LabelSeasonZeroDisplayName":"Nom d'affichage de \"Season 0\":","LabelEnableRealtimeMonitor":"Activer la surveillance en temps r\u00e9elle","LabelEnableRealtimeMonitorHelp":"Les changements seront trait\u00e9s dans l'imm\u00e9diat, sur les syst\u00e8mes de fichiers support\u00e9s.","ButtonScanLibrary":"Balayer Biblioth\u00e8que","HeaderNumberOfPlayers":"Lecteurs:","OptionAnyNumberOfPlayers":"N'importe quel:","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"R\u00e9pertoires de m\u00e9dias","HeaderThemeVideos":"Vid\u00e9os th\u00e8mes","HeaderThemeSongs":"Chansons Th\u00e8mes","HeaderScenes":"Sc\u00e8nes","HeaderAwardsAndReviews":"Prix et Critiques","HeaderSoundtracks":"Trames Sonores","HeaderMusicVideos":"Vid\u00e9os Musicaux","HeaderSpecialFeatures":"\u00c9v\u00e9nements sp\u00e9ciaux","HeaderCastCrew":"\u00c9quipe de tournage","HeaderAdditionalParts":"Parties Additionelles","ButtonSplitVersionsApart":"S\u00e9parer les versions","ButtonPlayTrailer":"Bande-annonce","LabelMissing":"Manquant(s)","LabelOffline":"Hors ligne","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"De","HeaderTo":"\u00c0","LabelFrom":"De","LabelFromHelp":"Exemple: D:\\Films (sur le serveur)","LabelTo":"\u00c0:","LabelToHelp":"Exemple: \\\\MonServeur\\Films (un chemin d'acc\u00e8s accessible par les clients)","ButtonAddPathSubstitution":"Ajouter Substitution","OptionSpecialEpisode":"Sp\u00e9ciaux","OptionMissingEpisode":"\u00c9pisodes manquantes","OptionUnairedEpisode":"\u00c9pisodes non diffus\u00e9es","OptionEpisodeSortName":"Nom de tri d'\u00e9pisode","OptionSeriesSortName":"Nom de s\u00e9ries","OptionTvdbRating":"Note d'\u00e9valuation Tvdb","HeaderTranscodingQualityPreference":"Qualit\u00e9 du transcodage pr\u00e9f\u00e9r\u00e9e:","OptionAutomaticTranscodingHelp":"Le serveur d\u00e9cidera de la qualit\u00e9 et vitesse","OptionHighSpeedTranscodingHelp":"Plus basse qualit\u00e9 mais encodage plus rapide","OptionHighQualityTranscodingHelp":"Plus haute qualit\u00e9 mais encodage moins rapide","OptionMaxQualityTranscodingHelp":"Meilleure qualit\u00e9 avec encodage plus lent et haute utilisation du processeur.","OptionHighSpeedTranscoding":"Vitesse plus \u00e9lev\u00e9e","OptionHighQualityTranscoding":"Qualit\u00e9 plus \u00e9lev\u00e9e","OptionMaxQualityTranscoding":"Qualit\u00e9 maximale","OptionEnableDebugTranscodingLogging":"Activer le d\u00e9bogage du transcodage dans le journal d'\u00e9v\u00e8nements","OptionEnableDebugTranscodingLoggingHelp":"Ceci va cr\u00e9era un journal d\u2019\u00e9v\u00e9nements tr\u00e8s volumineux et n'est recommand\u00e9 que pour des besoins de diagnostique.","OptionUpscaling":"Autoriser les clients de mettre \u00e0 l'\u00e9chelle (upscale) les vid\u00e9os","OptionUpscalingHelp":"Dans certains cas, la qualit\u00e9 vid\u00e9o sera am\u00e9lior\u00e9e mais augmentera l'utilisation du processeur.","EditCollectionItemsHelp":"Ajoutez ou supprimez n'importe quel film, s\u00e9rie, album, livre ou jeux que vous souhaitez grouper dans cette collection.","HeaderAddTitles":"Ajouter Titres","LabelEnableDlnaPlayTo":"Activer DLNA \"Lire sur\"","LabelEnableDlnaPlayToHelp":"Media Browser peut d\u00e9tecter les appareils dans votre r\u00e9seau et offrir de les contr\u00f4ler \u00e0 distance.","LabelEnableDlnaDebugLogging":"Activer le d\u00e9bogage DLNA dans le journal d'\u00e9v\u00e9nements","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Intervalle de d\u00e9couverte des clients (secondes)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Profiles personnalis\u00e9s","HeaderSystemDlnaProfiles":"Profils syst\u00e8mes","CustomDlnaProfilesHelp":"Cr\u00e9er un profile personnalis\u00e9 pour cibler un appareil ou remplacer un profile syst\u00e8me.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Tableau de bord","TabHome":"Principal","TabInfo":"Info","HeaderLinks":"Liens","HeaderSystemPaths":"Chemins d'acc\u00e8s syst\u00e8mes","LinkCommunity":"Communaut\u00e9","LinkGithub":"Github","LinkApiDocumentation":"Documentation du API","LabelFriendlyServerName":"Surnom du serveur:","LabelFriendlyServerNameHelp":"Ce nom sera utilis\u00e9 pour identifier ce serveur. Si laiss\u00e9 vide, le nom d'ordinateur sera utilis\u00e9.","LabelPreferredDisplayLanguage":"Langue d'affichage pr\u00e9f\u00e9r\u00e9e","LabelPreferredDisplayLanguageHelp":"La traduction de Media Browser est un projet en cours et n'est pas compl\u00e9t\u00e9e encore.","LabelReadHowYouCanContribute":"Lire comment vous pouvez contribuer.","HeaderNewCollection":"Nouvelle collection","NewCollectionNameExample":"Exemple: Collection Star Wars","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Cr\u00e9er","LabelHttpServerPortNumber":"Num\u00e9ro de port pour le serveur HTTP:","LabelWebSocketPortNumber":"Num\u00e9ro de port du \"Web socket\":","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"DDNS Externe","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Reprendre","TabWeather":"M\u00e9t\u00e9o","TitleAppSettings":"Param\u00e8tre de l'application","LabelMinResumePercentage":"Pourcentage minimum pour reprendre:","LabelMaxResumePercentage":"Pourcentage maximum pour reprendre:","LabelMinResumeDuration":"Temps de reprise minimum (secondes):","LabelMinResumePercentageHelp":"Les items seront consid\u00e9r\u00e9s non lus si arr\u00eat\u00e9s avant ce temps:","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/he.json b/MediaBrowser.Server.Implementations/Localization/Server/he.json index d251f15389..528bda3213 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/he.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/he.json @@ -1 +1 @@ -{"LabelExit":"\u05d9\u05e6\u05d9\u05d0\u05d4","LabelVisitCommunity":"\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4","LabelGithubWiki":"\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05e7\u05d5\u05d3","LabelSwagger":"Swagger","LabelStandard":"\u05e8\u05d2\u05d9\u05dc","LabelViewApiDocumentation":"\u05e8\u05d0\u05d4 \u05de\u05e1\u05de\u05db\u05d9 \u05e2\u05e8\u05db\u05ea \u05e4\u05d9\u05ea\u05d5\u05d7","LabelBrowseLibrary":"\u05d3\u05e4\u05d3\u05e3 \u05d1\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4","LabelConfigureMediaBrowser":"\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea Media Browser","LabelOpenLibraryViewer":"\u05e4\u05ea\u05d7 \u05de\u05e6\u05d9\u05d2 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea","LabelRestartServer":"\u05d0\u05ea\u05d7\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea","LabelShowLogWindow":"\u05d4\u05e8\u05d0\u05d4 \u05d7\u05dc\u05d5\u05df \u05dc\u05d5\u05d2","LabelPrevious":"\u05d4\u05e7\u05d5\u05d3\u05dd","LabelFinish":"\u05e1\u05d9\u05d9\u05dd","LabelNext":"\u05d4\u05d1\u05d0","LabelYoureDone":"\u05e1\u05d9\u05d9\u05de\u05ea!","WelcomeToMediaBrowser":"\u05d1\u05e8\u05d5\u05da \u05d4\u05d1\u05d0 \u05dc- Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"\u05d4\u05d0\u05e9\u05e3 \u05d4\u05d6\u05d4 \u05d9\u05e2\u05d6\u05d5\u05e8 \u05dc\u05da \u05d1\u05d4\u05ea\u05dc\u05d9\u05da \u05d4\u05d4\u05ea\u05e7\u05e0\u05d4.","TellUsAboutYourself":"\u05e1\u05e4\u05e8 \u05dc\u05e0\u05d5 \u05e2\u05dc \u05e2\u05e6\u05de\u05da","LabelYourFirstName":"\u05e9\u05de\u05da \u05d4\u05e4\u05e8\u05d8\u05d9:","MoreUsersCanBeAddedLater":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd \u05de\u05d0\u05d5\u05d7\u05e8 \u05d9\u05d5\u05ea\u05e8 \u05d3\u05e8\u05da \u05dc\u05d5\u05d7 \u05d4\u05d1\u05e7\u05e8\u05d4.","UserProfilesIntro":"Media Browser \u05db\u05d5\u05dc\u05dc \u05ea\u05de\u05d9\u05db\u05d4 \u05de\u05d5\u05d1\u05e0\u05ea \u05d1\u05de\u05e1\u05e4\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd. \u05d5\u05de\u05d0\u05e4\u05e9\u05e8 \u05dc\u05db\u05dc \u05d0\u05d7\u05d3 \u05de\u05d4\u05dd \u05ea\u05e6\u05d5\u05d2\u05ea \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea, \u05de\u05e6\u05d1 \u05e0\u05d2\u05df \u05d5\u05d1\u05e7\u05e8\u05ea \u05d4\u05d5\u05e8\u05d9\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea.","LabelWindowsService":"\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1","AWindowsServiceHasBeenInstalled":"\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1 \u05d4\u05d5\u05ea\u05e7\u05df","WindowsServiceIntro1":"\u05e9\u05e8\u05ea Media Browser \u05e8\u05e5 \u05db\u05ea\u05d5\u05db\u05e0\u05ea \u05e9\u05d5\u05dc\u05d7\u05df \u05e2\u05d1\u05d5\u05d3\u05d4 \u05e2\u05dd \u05d0\u05d9\u05e7\u05d5\u05df \u05d1\u05e9\u05d5\u05e8\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea, \u05d0\u05d1\u05dc \u05d0\u05dd \u05d0\u05ea\u05d4 \u05de\u05e2\u05d3\u05d9\u05e3 \u05dc\u05d4\u05e8\u05d9\u05e5 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05db\u05e9\u05d9\u05e8\u05d5\u05ea \u05e8\u05e7\u05e2, \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05de\u05ea\u05d5\u05da \u05d7\u05dc\u05d5\u05df \u05d4\u05d1\u05e7\u05d4 \u05e9\u05dc \u05e9\u05d9\u05e8\u05d5\u05ea\u05d9 \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1 \u05d1\u05de\u05e7\u05d5\u05dd.","WindowsServiceIntro2":"\u05d0\u05dd \u05d0\u05ea\u05d4 \u05de\u05e4\u05e2\u05d9\u05dc \u05d0\u05ea \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1, \u05d1\u05d1\u05e7\u05e9\u05d4 \u05e9\u05d9\u05dd \u05dc\u05d1 \u05e9\u05d4\u05d5\u05d0 \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05e8\u05d5\u05e5 \u05d1\u05d0\u05d5\u05ea\u05d5 \u05d6\u05de\u05df \u05e9\u05d4\u05e9\u05e8\u05ea \u05db\u05d1\u05e8 \u05e2\u05d5\u05d1\u05d3 \u05d1\u05e8\u05e7\u05e2. \u05dc\u05db\u05df \u05ea\u05e6\u05d8\u05e8\u05da \u05dc\u05e1\u05d2\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05e2\u05dc \u05de\u05e0\u05ea \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05d0\u05ea \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea. \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05d2\u05dd \u05e6\u05e8\u05d9\u05da \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05d5\u05d2\u05d3\u05e8 \u05e2\u05dd \u05d4\u05e8\u05e9\u05d0\u05d5\u05ea \u05de\u05e0\u05d4\u05dc \u05d3\u05e8\u05da \u05dc\u05d5\u05d7 \u05d4\u05d1\u05e7\u05e8\u05d4. \u05d1\u05d1\u05e7\u05e9\u05d4 \u05e7\u05d7 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05db\u05e8\u05d2\u05e2 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05e2\u05d3\u05db\u05df \u05d0\u05ea \u05e2\u05e6\u05de\u05d5 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea, \u05d5\u05dc\u05db\u05df \u05d2\u05d9\u05e8\u05e1\u05d0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d9\u05e6\u05e8\u05d9\u05db\u05d5 \u05e2\u05d9\u05d3\u05db\u05d5\u05df \u05d9\u05d3\u05e0\u05d9.","WizardCompleted":"\u05d6\u05d4 \u05db\u05dc \u05de\u05d4 \u05e9\u05e6\u05e8\u05d9\u05da \u05dc\u05e2\u05db\u05e9\u05d9\u05d5. Media Browser \u05d4\u05d7\u05dc \u05dc\u05d0\u05e1\u05d5\u05e3 \u05de\u05d9\u05d3\u05e2 \u05dc\u05d2\u05d1\u05d9 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da. \u05d0\u05dc \u05ea\u05e9\u05db\u05d7 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05de\u05d2\u05d5\u05d5\u05df \u05d4\u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05e9\u05dc\u05e0\u05d5, \u05d5\u05d0\u05d6 \u05dc\u05d7\u05e5 \u05e1\u05d9\u05d9\u05dd<\/b> \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05ea \u05d4\u05dc\u05d5\u05d7 \u05d1\u05e7\u05e8\u05d4<\/b>.","LabelConfigureSettings":"\u05e7\u05d1\u05e2 \u05d0\u05ea \u05ea\u05e6\u05d5\u05e8\u05ea \u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea","LabelEnableVideoImageExtraction":"\u05d0\u05e4\u05e9\u05e8 \u05e9\u05dc\u05d9\u05e4\u05ea \u05ea\u05de\u05d5\u05e0\u05d4 \u05de\u05e1\u05e8\u05d8","VideoImageExtractionHelp":"\u05e2\u05d1\u05d5\u05e8 \u05e1\u05e8\u05d8\u05d9\u05dd \u05e9\u05d0\u05d9\u05df \u05dc\u05d4\u05dd \u05db\u05d1\u05e8 \u05ea\u05de\u05d5\u05e0\u05d4, \u05d5\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4 \u05dc\u05d4\u05dd \u05d0\u05d7\u05ea \u05d1\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8. \u05d4\u05d2\u05d3\u05e8\u05d4 \u05d6\u05d5 \u05ea\u05d5\u05e1\u05d9\u05e3 \u05de\u05e2\u05d8 \u05d6\u05de\u05df \u05dc\u05ea\u05d4\u05dc\u05d9\u05da \u05e1\u05e8\u05d9\u05e7\u05ea \u05d4\u05ea\u05e7\u05d9\u05d9\u05d4 \u05d4\u05e8\u05d0\u05e9\u05d5\u05e0\u05d9, \u05d0\u05da \u05ea\u05e1\u05e4\u05e7 \u05ea\u05e6\u05d5\u05d2\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05d9\u05e4\u05d4.","LabelEnableChapterImageExtractionForMovies":"\u05d7\u05dc\u05e5 \u05ea\u05de\u05d5\u05e0\u05ea \u05e4\u05e8\u05e7 \u05dc\u05e1\u05e8\u05d8\u05d9\u05dd","LabelChapterImageExtractionForMoviesHelp":"\u05d7\u05d9\u05dc\u05d5\u05e5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e4\u05e8\u05e7\u05d9\u05dd \u05d9\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05e8\u05d0\u05d5\u05ea \u05ea\u05e4\u05e8\u05d9\u05d8 \u05d1\u05d7\u05d9\u05e8\u05ea \u05e1\u05e6\u05e0\u05d5\u05ea \u05d2\u05e8\u05e4\u05d9. \u05d4\u05ea\u05d4\u05dc\u05d9\u05da \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d0\u05d9\u05d8\u05d9, \u05dc\u05d3\u05e8\u05d5\u05e9 \u05de\u05e9\u05d0\u05d1\u05d9 \u05de\u05e2\u05d1\u05d3 \u05e8\u05d1\u05d9\u05dd \u05d5\u05dc\u05ea\u05e4\u05d5\u05e1 \u05e9\u05d8\u05d7 \u05d0\u05d9\u05d7\u05e1\u05d5\u05df \u05e8\u05d1. \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05e8\u05e6\u05d4 \u05db\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \u05d1\u05d0\u05e8\u05d1\u05e2 \u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8, \u05d0\u05da \u05d6\u05d4 \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d1\u05d7\u05dc\u05d5\u05df \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d4\u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea. \u05d6\u05d4 \u05dc\u05d0 \u05de\u05de\u05d5\u05dc\u05e5 \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05de\u05e9\u05d9\u05de\u05d4 \u05d6\u05d5 \u05d1\u05e9\u05e2\u05d5\u05ea \u05d4\u05e9\u05d9\u05de\u05d5\u05e9 \u05d4\u05e2\u05d9\u05e7\u05e8\u05d9\u05d5\u05ea \u05d1\u05de\u05d7\u05e9\u05d1.","LabelEnableAutomaticPortMapping":"\u05d0\u05e4\u05e9\u05e8 \u05de\u05d9\u05e4\u05d5\u05d9 \u05e4\u05d5\u05e8\u05d8\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9","LabelEnableAutomaticPortMappingHelp":"UPnP \u05de\u05d0\u05e4\u05e9\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05d5\u05ea \u05e9\u05dc \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05de\u05e8\u05d5\u05d7\u05e7\u05ea \u05d1\u05e7\u05dc\u05d5\u05ea. \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3 \u05e2\u05dd \u05db\u05dc \u05d3\u05d2\u05de\u05d9 \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8\u05d9\u05dd.","ButtonOk":"\u05d0\u05e9\u05e8","ButtonCancel":"\u05d1\u05d8\u05dc","HeaderSetupLibrary":"\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da","ButtonAddMediaFolder":"\u05d4\u05d5\u05e1\u05e3 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4","LabelFolderType":"\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4:","MediaFolderHelpPluginRequired":"* \u05de\u05e6\u05e8\u05d9\u05da \u05de\u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05ea\u05d5\u05e1\u05e3, \u05dc\u05d3\u05d5\u05d2\u05de\u05d0 GameBrowser \u05d0\u05d5 MB Bookshelf","ReferToMediaLibraryWiki":"\u05e4\u05e0\u05d4 \u05dc\u05de\u05d9\u05d3\u05e2 \u05d0\u05d5\u05d3\u05d5\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4.","LabelCountry":"\u05de\u05d3\u05d9\u05e0\u05d4:","LabelLanguage":"\u05e9\u05e4\u05d4:","HeaderPreferredMetadataLanguage":"\u05e9\u05e4\u05ea \u05de\u05d9\u05d3\u05e2 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:","LabelSaveLocalMetadata":"\u05e9\u05de\u05d5\u05e8 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d1\u05ea\u05d5\u05da \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4","LabelSaveLocalMetadataHelp":"\u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d1\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05ea\u05d0\u05e4\u05e9\u05e8 \u05e2\u05e8\u05d9\u05db\u05d4 \u05e0\u05d5\u05d7\u05d4 \u05d5\u05e7\u05dc\u05d4 \u05e9\u05dc\u05d4\u05dd.","LabelDownloadInternetMetadata":"\u05d4\u05d5\u05e8\u05d3 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05de\u05d4\u05d0\u05d9\u05e0\u05e8\u05e0\u05d8","LabelDownloadInternetMetadataHelp":"Media Browser \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d5\u05e8\u05d9\u05d3 \u05de\u05d9\u05d3\u05e2 \u05dc\u05d2\u05d1\u05d9 \u05e7\u05d1\u05e6\u05d9 \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05d0\u05e4\u05e9\u05e8 \u05ea\u05e6\u05d5\u05d2\u05d4 \u05e2\u05e9\u05d9\u05e8\u05d4.","TabPreferences":"\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea","TabPassword":"\u05e1\u05d9\u05e1\u05de\u05d0","TabLibraryAccess":"\u05d2\u05d9\u05e9\u05d4 \u05dc\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea","TabImage":"\u05ea\u05de\u05d5\u05e0\u05d4","TabProfile":"\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc","LabelDisplayMissingEpisodesWithinSeasons":"\u05d4\u05e6\u05d2 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05e1\u05e8\u05d9\u05dd \u05d1\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05e0\u05d5\u05ea","LabelUnairedMissingEpisodesWithinSeasons":"\u05d4\u05e6\u05d2 \u05e4\u05e8\u05e7\u05d9\u05dd \u05e9\u05e2\u05d3\u05d9\u05df \u05d0\u05dc \u05e9\u05d5\u05d3\u05e8\u05d5 \u05d1\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05e0\u05d5\u05ea","HeaderVideoPlaybackSettings":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05d9\u05d2\u05d5\u05df","LabelAudioLanguagePreference":"\u05e9\u05e4\u05ea \u05e7\u05d5\u05dc \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:","LabelSubtitleLanguagePreference":"\u05e9\u05e4\u05ea \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:","LabelDisplayForcedSubtitlesOnly":"\u05d4\u05e6\u05d2 \u05e8\u05e7 \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea \u05de\u05d0\u05d5\u05dc\u05e6\u05d5\u05ea","TabProfiles":"\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9\u05dd","TabSecurity":"\u05d1\u05d8\u05d9\u05d7\u05d5\u05ea","ButtonAddUser":"\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9","ButtonSave":"\u05e9\u05de\u05d5\u05e8","ButtonResetPassword":"\u05d0\u05d9\u05e4\u05d5\u05e1 \u05e1\u05d9\u05e1\u05de\u05d0","LabelNewPassword":"\u05e1\u05d9\u05e1\u05de\u05d0 \u05d7\u05d3\u05e9\u05d4:","LabelNewPasswordConfirm":"\u05d0\u05d9\u05de\u05d5\u05ea \u05e1\u05d9\u05e1\u05de\u05d0 \u05d7\u05d3\u05e9\u05d4:","HeaderCreatePassword":"\u05e6\u05d5\u05e8 \u05e1\u05d9\u05e1\u05de\u05d0","LabelCurrentPassword":"\u05e1\u05d9\u05e1\u05de\u05d0 \u05e0\u05d5\u05db\u05d7\u05d9\u05ea:","LabelMaxParentalRating":"\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05d5\u05e8\u05d9\u05dd \u05de\u05e7\u05e1\u05d9\u05de\u05d0\u05dc\u05d9:","MaxParentalRatingHelp":"\u05ea\u05d5\u05db\u05df \u05e2\u05dd \u05d3\u05d9\u05e8\u05d5\u05d2 \u05d2\u05d5\u05d1\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05d9\u05d5\u05e1\u05ea\u05e8 \u05de\u05d4\u05de\u05e9\u05ea\u05de\u05e9.","LibraryAccessHelp":"\u05d1\u05d7\u05e8 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05d0\u05e9\u05e8 \u05d9\u05e9\u05d5\u05ea\u05e4\u05d5 \u05e2\u05dd \u05d4\u05de\u05e9\u05ea\u05de\u05e9. \u05de\u05e0\u05d4\u05dc\u05d9\u05dd \u05d9\u05d5\u05db\u05dc\u05d5 \u05dc\u05e2\u05e8\u05d5\u05ea \u05d0\u05ea \u05db\u05dc \u05d4\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05e2\u05d5\u05e8\u05da \u05d4\u05de\u05d9\u05d3\u05e2.","ButtonDeleteImage":"\u05de\u05d7\u05e7 \u05ea\u05de\u05d5\u05e0\u05d4","ButtonUpload":"\u05d4\u05e2\u05dc\u05d4","HeaderUploadNewImage":"\u05d4\u05e2\u05dc\u05d4 \u05ea\u05de\u05d5\u05e0\u05d4 \u05d7\u05d3\u05e9\u05d4","LabelDropImageHere":"\u05e9\u05d7\u05e8\u05e8 \u05ea\u05de\u05d5\u05e0\u05d4 \u05db\u05d0\u05df","ImageUploadAspectRatioHelp":"\u05de\u05d5\u05de\u05dc\u05e5 \u05d9\u05d7\u05e1 \u05d2\u05d5\u05d1\u05d4 \u05e9\u05dc 1:1. \u05e8\u05e7 JPG\/PNG.","MessageNothingHere":"\u05d0\u05d9\u05df \u05db\u05d0\u05df \u05db\u05dc\u05d5\u05dd.","MessagePleaseEnsureInternetMetadata":"\u05d1\u05d1\u05e7\u05e9\u05d4 \u05d5\u05d5\u05d3\u05d0 \u05db\u05d9 \u05d4\u05d5\u05e8\u05d3\u05ea \u05de\u05d9\u05d3\u05e2 \u05de\u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05de\u05d0\u05d5\u05e4\u05e9\u05e8\u05ea","TabSuggested":"\u05de\u05de\u05d5\u05dc\u05e5","TabLatest":"\u05d0\u05d7\u05e8\u05d5\u05df","TabUpcoming":"\u05d1\u05e7\u05e8\u05d5\u05d1","TabShows":"\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea","TabEpisodes":"\u05e4\u05e8\u05e7\u05d9\u05dd","TabGenres":"\u05d6\u05d0\u05e0\u05e8\u05d9\u05dd","TabPeople":"\u05d0\u05e0\u05e9\u05d9\u05dd","TabNetworks":"\u05e8\u05e9\u05ea\u05d5\u05ea","HeaderUsers":"\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd","HeaderFilters":"\u05de\u05e1\u05e0\u05e0\u05d9\u05dd:","ButtonFilter":"\u05de\u05e1\u05e0\u05df","OptionFavorite":"\u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd","OptionLikes":"\u05e0\u05d1\u05d7\u05e8\u05d9\u05dd","OptionDislikes":"\u05dc\u05d0 \u05d0\u05d5\u05d4\u05d1","OptionActors":"\u05e9\u05d7\u05e7\u05e0\u05d9\u05dd","OptionGuestStars":"\u05e9\u05d7\u05e7\u05df \u05d0\u05d5\u05e8\u05d7","OptionDirectors":"\u05d1\u05de\u05d0\u05d9\u05dd","OptionWriters":"\u05db\u05d5\u05ea\u05d1\u05d9\u05dd","OptionProducers":"\u05de\u05e4\u05d9\u05e7\u05d9\u05dd","HeaderResume":"\u05d4\u05de\u05e9\u05da","HeaderNextUp":"\u05d4\u05d1\u05d0 \u05d1\u05ea\u05d5\u05e8","NoNextUpItemsMessage":"\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0 \u05db\u05dc\u05d5\u05dd. \u05d4\u05ea\u05d7\u05dc\u05ea \u05dc\u05e6\u05e4\u05d5\u05ea \u05d1\u05e1\u05d3\u05e8\u05d5\u05ea \u05e9\u05dc\u05da!","HeaderLatestEpisodes":"\u05e4\u05e8\u05e7\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","HeaderPersonTypes":"\u05e1\u05d5\u05d2\u05d9 \u05d0\u05e0\u05e9\u05d9\u05dd:","TabSongs":"\u05e9\u05d9\u05e8\u05d9\u05dd","TabAlbums":"\u05d0\u05dc\u05d1\u05d5\u05de\u05d9\u05dd","TabArtists":"\u05d0\u05de\u05e0\u05d9\u05dd","TabAlbumArtists":"\u05d0\u05de\u05e0\u05d9 \u05d0\u05dc\u05d1\u05d5\u05dd","TabMusicVideos":"\u05e7\u05dc\u05d9\u05e4\u05d9\u05dd","ButtonSort":"\u05de\u05d9\u05d9\u05df","HeaderSortBy":"\u05de\u05d9\u05d9\u05df \u05dc\u05e4\u05d9:","HeaderSortOrder":"\u05e1\u05d3\u05e8 \u05de\u05d9\u05d5\u05df:","OptionPlayed":"\u05e0\u05d5\u05d2\u05df","OptionUnplayed":"\u05dc\u05d0 \u05e0\u05d5\u05d2\u05df","OptionAscending":"\u05e1\u05d3\u05e8 \u05e2\u05d5\u05dc\u05d4","OptionDescending":"\u05e1\u05d3\u05e8 \u05d9\u05d5\u05e8\u05d3","OptionRuntime":"\u05de\u05e9\u05da","OptionReleaseDate":"\u05ea\u05d0\u05e8\u05d9\u05da \u05e9\u05d9\u05d7\u05e8\u05d5\u05e8","OptionPlayCount":"\u05de\u05e1\u05e4\u05e8 \u05d4\u05e9\u05de\u05e2\u05d5\u05ea","OptionDatePlayed":"\u05ea\u05d0\u05e8\u05d9\u05da \u05e0\u05d9\u05d2\u05d5\u05df","OptionDateAdded":"\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4","OptionAlbumArtist":"\u05d0\u05de\u05df \u05d0\u05dc\u05d1\u05d5\u05dd","OptionArtist":"\u05d0\u05de\u05df","OptionAlbum":"\u05d0\u05dc\u05d1\u05d5\u05dd","OptionTrackName":"\u05e9\u05dd \u05d4\u05e9\u05d9\u05e8","OptionCommunityRating":"\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05e7\u05d4\u05d9\u05dc\u05d4","OptionNameSort":"\u05e9\u05dd","OptionFolderSort":"Folders","OptionBudget":"\u05ea\u05e7\u05e6\u05d9\u05d1","OptionRevenue":"\u05d4\u05db\u05e0\u05e1\u05d5\u05ea","OptionPoster":"\u05e4\u05d5\u05e1\u05d8\u05e8","OptionBackdrop":"Backdrop","OptionTimeline":"\u05e6\u05d9\u05e8 \u05d6\u05de\u05df","OptionThumb":"Thumb","OptionBanner":"\u05d1\u05d0\u05e0\u05e8","OptionCriticRating":"\u05e6\u05d9\u05d5\u05df \u05de\u05d1\u05e7\u05e8\u05d9\u05dd","OptionVideoBitrate":"\u05e7\u05e6\u05ea \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5","OptionResumable":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05de\u05e9\u05d9\u05da","ScheduledTasksHelp":"\u05dc\u05d7\u05e5 \u05e2\u05dc \u05de\u05e9\u05d9\u05de\u05d4 \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05ea\u05d6\u05de\u05d5\u05df \u05e9\u05dc\u05d4","ScheduledTasksTitle":"\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea","TabMyPlugins":"\u05d4\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05e9\u05dc\u05d9","TabCatalog":"\u05e7\u05d8\u05dc\u05d5\u05d2","TabUpdates":"\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd","PluginsTitle":"\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd","HeaderAutomaticUpdates":"\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd","HeaderUpdateLevel":"\u05e8\u05de\u05ea \u05d4\u05e2\u05d9\u05d3\u05db\u05d5\u05df","HeaderNowPlaying":"\u05de\u05e0\u05d2\u05df \u05e2\u05db\u05e9\u05d9\u05d5","HeaderLatestAlbums":"\u05d0\u05dc\u05d1\u05d5\u05de\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","HeaderLatestSongs":"\u05e9\u05d9\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","HeaderRecentlyPlayed":"\u05e0\u05d5\u05d2\u05e0\u05d5 \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4","HeaderFrequentlyPlayed":"\u05e0\u05d5\u05d2\u05e0\u05d5 \u05dc\u05e8\u05d5\u05d1","DevBuildWarning":"\u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05de\u05e4\u05ea\u05d7 \u05d4\u05df \u05d7\u05d5\u05d3 \u05d4\u05d7\u05e0\u05d9\u05ea. \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05d0\u05dc\u05d4 \u05dc\u05d0 \u05e0\u05d1\u05d3\u05e7\u05d5 \u05d5\u05d4\u05df \u05de\u05e9\u05d5\u05d7\u05e8\u05e8\u05d5\u05ea \u05d1\u05de\u05d4\u05d9\u05e8\u05d5\u05ea. \u05d4\u05ea\u05d5\u05db\u05e0\u05d4 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05e7\u05e8\u05d5\u05e1 \u05d5\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05e1\u05d5\u05d9\u05d9\u05de\u05d9\u05dd \u05e2\u05dc\u05d5\u05dc\u05d9\u05dd \u05db\u05dc\u05dc \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3.","LabelVideoType":"\u05d2\u05d5\u05d3 \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5:","OptionBluray":"\u05d1\u05dc\u05d5-\u05e8\u05d9\u05d9","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"\u05ea\u05dc\u05ea \u05de\u05d9\u05de\u05d3","LabelFeatures":"\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd:","OptionHasSubtitles":"\u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea","OptionHasTrailer":"\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8","OptionHasThemeSong":"\u05e9\u05d9\u05e8 \u05e0\u05d5\u05e9\u05d0","OptionHasThemeVideo":"\u05e1\u05e8\u05d8 \u05e0\u05d5\u05e9\u05d0","TabMovies":"\u05e1\u05e8\u05d8\u05d9\u05dd","TabStudios":"\u05d0\u05d5\u05dc\u05e4\u05e0\u05d9\u05dd","TabTrailers":"\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8\u05d9\u05dd","HeaderLatestMovies":"\u05e1\u05e8\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","HeaderLatestTrailers":"\u05d8\u05e8\u05d9\u05d9\u05dc\u05d9\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","OptionHasSpecialFeatures":"\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd","OptionImdbRating":"\u05d3\u05d9\u05e8\u05d5\u05d2 IMDb","OptionParentalRating":"\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d1\u05e7\u05e8\u05ea \u05d4\u05d5\u05e8\u05d9\u05dd","OptionPremiereDate":"\u05ea\u05d0\u05e8\u05d9\u05da \u05e9\u05d9\u05d3\u05d5\u05e8 \u05e8\u05d0\u05e9\u05d5\u05df","TabBasic":"\u05d1\u05e1\u05d9\u05e1\u05d9","TabAdvanced":"\u05de\u05ea\u05e7\u05d3\u05dd","HeaderStatus":"\u05de\u05e6\u05d1","OptionContinuing":"\u05de\u05de\u05e9\u05d9\u05da","OptionEnded":"\u05d4\u05e1\u05ea\u05d9\u05d9\u05dd","HeaderAirDays":"\u05d9\u05de\u05d9 \u05e9\u05d9\u05d3\u05d5\u05e8:","OptionSunday":"\u05e8\u05d0\u05e9\u05d5\u05df","OptionMonday":"\u05e9\u05e0\u05d9","OptionTuesday":"\u05e9\u05dc\u05d9\u05e9\u05d9","OptionWednesday":"\u05e8\u05d1\u05d9\u05e2\u05d9","OptionThursday":"\u05d7\u05de\u05d9\u05e9\u05d9","OptionFriday":"\u05e9\u05d9\u05e9\u05d9","OptionSaturday":"\u05e9\u05d1\u05ea","HeaderManagement":"\u05e0\u05d9\u05d4\u05d5\u05dc","OptionMissingImdbId":"\u05d7\u05e1\u05e8 \u05de\u05d6\u05d4\u05d4 IMBb","OptionMissingTvdbId":"\u05d7\u05e1\u05e8 \u05de\u05d6\u05d4\u05d4 TheTVDB","OptionMissingOverview":"\u05d7\u05e1\u05e8\u05d4 \u05e1\u05e7\u05d9\u05e8\u05d4","OptionFileMetadataYearMismatch":"\u05d4\u05e9\u05e0\u05d4 \u05dc\u05d0 \u05de\u05ea\u05d0\u05d9\u05de\u05d4 \u05d1\u05d9\u05df \u05d4\u05de\u05d9\u05d3\u05e2 \u05dc\u05e7\u05d5\u05d1\u05e5","TabGeneral":"\u05db\u05dc\u05dc\u05d9","TitleSupport":"\u05ea\u05de\u05d9\u05db\u05d4","TabLog":"\u05dc\u05d5\u05d2","TabAbout":"\u05d0\u05d5\u05d3\u05d5\u05ea","TabSupporterKey":"\u05de\u05e4\u05ea\u05d7 \u05ea\u05d5\u05de\u05da","TabBecomeSupporter":"\u05d4\u05e4\u05d5\u05da \u05dc\u05ea\u05d5\u05de\u05da","MediaBrowserHasCommunity":"\u05dcMedia Browser \u05d9\u05e9 \u05e7\u05d4\u05d9\u05dc\u05d4 \u05e4\u05d5\u05e8\u05d7\u05ea \u05e9\u05dc \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d5\u05ea\u05d5\u05e8\u05de\u05d9\u05dd.","CheckoutKnowledgeBase":"\u05e2\u05d9\u05d9\u05df \u05d1\u05de\u05d0\u05d2\u05e8 \u05d4\u05de\u05d9\u05d3\u05e2 \u05e9\u05dc\u05e0\u05d5 \u05dc\u05e2\u05d6\u05d5\u05e8 \u05dc\u05da \u05dc\u05d4\u05d5\u05e6\u05d9\u05d0 \u05d0\u05ea \u05d4\u05de\u05d9\u05e8\u05d1 \u05deMedia Browser.","SearchKnowledgeBase":"\u05d7\u05e4\u05e9 \u05d1\u05de\u05d0\u05d2\u05e8 \u05d4\u05de\u05d9\u05d3\u05e2","VisitTheCommunity":"\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4","VisitMediaBrowserWebsite":"\u05d1\u05e7\u05e8 \u05d1\u05d0\u05ea\u05e8 \u05e9\u05dc Media Browser","VisitMediaBrowserWebsiteLong":"\u05d1\u05e7\u05e8 \u05d1\u05d0\u05ea\u05e8 \u05e9\u05dc Media Browser \u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05e2\u05d3\u05db\u05df \u05d1\u05d7\u05e9\u05d3\u05d5\u05ea \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea \u05d5\u05d1\u05d1\u05dc\u05d5\u05d2 \u05d4\u05de\u05e4\u05ea\u05d7\u05d9\u05dd.","OptionHideUser":"\u05d4\u05e1\u05ea\u05e8 \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05d1\u05d7\u05dc\u05d5\u05df \u05d4\u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea","OptionDisableUser":"\u05d1\u05d8\u05dc \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4","OptionDisableUserHelp":"\u05d0\u05dd \u05de\u05d1\u05d5\u05d8\u05dc, \u05d4\u05e9\u05e8\u05ea \u05e9\u05dc\u05d0 \u05d9\u05d0\u05e4\u05e9\u05e8 \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05de\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4. \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd \u05d9\u05d1\u05d5\u05d8\u05dc\u05d5 \u05de\u05d9\u05d9\u05d3.","HeaderAdvancedControl":"\u05e9\u05dc\u05d9\u05d8\u05d4 \u05de\u05ea\u05e7\u05d3\u05de\u05d5\u05ea","LabelName":"\u05e9\u05dd:","OptionAllowUserToManageServer":"\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05e0\u05d4\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea","HeaderFeatureAccess":"\u05d2\u05d9\u05e9\u05d4 \u05dc\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd","OptionAllowMediaPlayback":"\u05d0\u05e4\u05e9\u05e8 \u05e0\u05d9\u05d2\u05d5\u05df \u05de\u05d3\u05d9\u05d4","OptionAllowBrowsingLiveTv":"\u05d0\u05e4\u05e9\u05e8 \u05d3\u05e4\u05d3\u05d5\u05e3 \u05d1\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d4","OptionAllowDeleteLibraryContent":"\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05de\u05d7\u05d5\u05e7 \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05ea\u05d5\u05db\u05df","OptionAllowManageLiveTv":"\u05d0\u05e4\u05e9\u05e8 \u05e0\u05d9\u05d4\u05d5\u05dc \u05e9\u05dc \u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d4","OptionAllowRemoteControlOthers":"\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05e9\u05dc\u05d5\u05d8 \u05de\u05e8\u05d7\u05d5\u05e7 \u05d1\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd","OptionMissingTmdbId":"\u05d7\u05d6\u05e8 \u05de\u05d6\u05d4\u05d4 Tmdb","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"\u05d1\u05d7\u05e8","ButtonGroupVersions":"\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea","PismoMessage":"\u05d0\u05e4\u05e9\u05e8 \u05d8\u05e2\u05d9\u05e0\u05ea \u05e7\u05d1\u05e6\u05d9 Pismo \u05d3\u05e8\u05da \u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05ea\u05e8\u05d5\u05de\u05d4.","PleaseSupportOtherProduces":"\u05d0\u05e0\u05d0 \u05ea\u05de\u05db\u05d5 \u05d1\u05e9\u05d9\u05e8\u05d5\u05ea\u05d9\u05dd \u05d7\u05d9\u05e0\u05de\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05e9\u05d1\u05d4\u05dd \u05d0\u05e0\u05d5 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd:","VersionNumber":"\u05d2\u05d9\u05e8\u05e1\u05d0 {0}","TabPaths":"\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd","TabServer":"\u05e9\u05e8\u05ea","TabTranscoding":"\u05e7\u05d9\u05d3\u05d5\u05d3","TitleAdvanced":"\u05de\u05ea\u05e7\u05d3\u05dd","LabelAutomaticUpdateLevel":"\u05e8\u05de\u05ea \u05e2\u05d3\u05db\u05d5\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9","OptionRelease":"\u05e9\u05d9\u05d7\u05e8\u05d5\u05e8 \u05e8\u05e9\u05de\u05d9","OptionBeta":"\u05d1\u05d8\u05d0","OptionDev":"\u05de\u05e4\u05ea\u05d7 (\u05dc\u05d0 \u05d9\u05e6\u05d9\u05d1)","LabelAllowServerAutoRestart":"\u05d0\u05e4\u05e9\u05e8 \u05dc\u05e9\u05e8\u05ea \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d3\u05d9 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d0\u05ea \u05d4\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd","LabelAllowServerAutoRestartHelp":"\u05d4\u05e9\u05e8\u05ea \u05d9\u05ea\u05d7\u05d9\u05dc \u05de\u05d7\u05d3\u05e9 \u05e8\u05e7 \u05db\u05e9\u05d0\u05e8 \u05d0\u05d9\u05df \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd","LabelEnableDebugLogging":"\u05d0\u05e4\u05e9\u05e8 \u05ea\u05d9\u05e2\u05d5\u05d3 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05dc\u05d0\u05d9\u05ea\u05d5\u05e8 \u05ea\u05e7\u05dc\u05d5\u05ea","LabelRunServerAtStartup":"\u05d4\u05ea\u05d7\u05dc \u05e9\u05e8\u05ea \u05d1\u05d4\u05e4\u05e2\u05dc\u05ea \u05d4\u05de\u05d7\u05e9\u05d1","LabelRunServerAtStartupHelp":"\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05ea\u05ea\u05d7\u05d9\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05d5\u05ea\u05e8\u05d0\u05d4 \u05d0\u05ea \u05d4\u05d0\u05d9\u05e7\u05d5\u05df \u05e9\u05dc\u05d5 \u05d1\u05e9\u05d5\u05e8\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05de\u05d7\u05e9\u05d1 \u05e2\u05d5\u05dc\u05d4. \u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05ea \u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1, \u05d1\u05d8\u05dc \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d0\u05ea \u05d5\u05d4\u05ea\u05d7\u05dc \u05d0\u05ea \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05de\u05dc\u05d5\u05d7 \u05d4\u05d1\u05e7\u05e8\u05d4 \u05e9\u05dc \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1. \u05d1\u05d1\u05e7\u05e9\u05d4 \u05e9\u05d9\u05dd \u05dc\u05d1 \u05e9\u05d0\u05d9\u05e0\u05da \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05e8\u05d9\u05e5 \u05d0\u05ea \u05e9\u05ea\u05d9 \u05d4\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05d0\u05dc\u05d5 \u05d1\u05de\u05e7\u05d1\u05d9\u05dc, \u05d0\u05ea\u05d4 \u05e6\u05e8\u05d9\u05da \u05dc\u05e6\u05d0\u05ea \u05d5\u05dc\u05e1\u05d2\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05ea\u05d7\u05dc\u05ea \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea.","ButtonSelectDirectory":"\u05d1\u05d7\u05e8 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea","LabelCustomPaths":"\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05d4\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d4\u05e8\u05e6\u05d5\u05d9\u05d9\u05dd. \u05d4\u05e9\u05d0\u05e8 \u05e9\u05d3\u05d5\u05ea \u05e8\u05d9\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc.","LabelCachePath":"\u05e0\u05ea\u05d9\u05d1 cache:","LabelCachePathHelp":"\u05ea\u05d9\u05e7\u05d9\u05d4 \u05d6\u05d5 \u05de\u05db\u05d9\u05dc\u05d4 \u05d0\u05ea \u05e7\u05d1\u05e6\u05d9 \u05d4-cache \u05e9\u05dc \u05d4\u05e9\u05e8\u05ea, \u05db\u05de\u05d5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea.","LabelImagesByNamePath":"\u05e0\u05ea\u05d9\u05d1 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea Images by name:","LabelImagesByNamePathHelp":"\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4 \u05d6\u05d5 \u05de\u05db\u05d9\u05dc\u05d4 \u05e9\u05d7\u05e7\u05e0\u05d9\u05dd, \u05d0\u05de\u05e0\u05d9\u05dd, \u05d6'\u05d0\u05e0\u05e8\u05d9\u05dd \u05d5\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d0\u05d5\u05dc\u05e4\u05e0\u05d9\u05dd","LabelMetadataPath":"\u05e0\u05ea\u05d9\u05d1 Metadata:","LabelMetadataPathHelp":"\u05e1\u05e4\u05e8\u05d9\u05d4 \u05d6\u05d5 \u05de\u05db\u05d9\u05dc\u05d4 \u05de\u05d9\u05d3\u05e2 \u05d5\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e9\u05d0\u05d9\u05e0\u05df \u05de\u05d5\u05d2\u05d3\u05e8\u05d5\u05ea \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05d0\u05d5\u05d7\u05e1\u05e0\u05d5\u05ea \u05d1\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4.","LabelTranscodingTempPath":"\u05e0\u05ea\u05d9\u05d1 \u05dc\u05e7\u05d9\u05d3\u05d5\u05d3 \u05d6\u05de\u05e0\u05d9:","LabelTranscodingTempPathHelp":"\u05ea\u05d9\u05e7\u05d9\u05d4 \u05d6\u05d5 \u05de\u05db\u05d9\u05dc\u05d4 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd \u05d1\u05e9\u05d9\u05de\u05d5\u05e9 \u05d4\u05de\u05e7\u05d5\u05d3\u05d3","TabBasics":"\u05db\u05dc\u05dc\u05d9","TabTV":"TV","TabGames":"\u05de\u05e9\u05d7\u05e7\u05d9\u05dd","TabMusic":"\u05de\u05d5\u05e1\u05d9\u05e7\u05d4","TabOthers":"\u05d0\u05d7\u05e8\u05d9\u05dd","HeaderExtractChapterImagesFor":"\u05d7\u05dc\u05e5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e4\u05e8\u05e7\u05d9\u05dd \u05dc:","OptionMovies":"\u05e1\u05e8\u05d8\u05d9\u05dd","OptionEpisodes":"\u05e4\u05e8\u05e7\u05d9\u05dd","OptionOtherVideos":"\u05e7\u05d8\u05e2\u05d9 \u05d5\u05d5\u05d9\u05d3\u05d9\u05d0\u05d5 \u05d0\u05d7\u05e8\u05d9\u05dd","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"\u05d0\u05e4\u05e9\u05e8 \u05e2\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd \u05de- FanArt.tv","LabelAutomaticUpdatesTmdb":"\u05d0\u05e4\u05e9\u05e8 \u05e2\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd \u05de- TheMovieDB.org","LabelAutomaticUpdatesTvdb":"\u05d0\u05e4\u05e9\u05e8 \u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd \u05de- TVDB.com","LabelAutomaticUpdatesFanartHelp":"\u05d0\u05dd \u05de\u05d5\u05e4\u05e2\u05dc, \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d9\u05e8\u05d3\u05d5 \u05d1\u05e6\u05d5\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05df \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05dc- fanart.tv. \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea \u05dc\u05d0 \u05d9\u05d5\u05d7\u05dc\u05e4\u05d5.","LabelAutomaticUpdatesTmdbHelp":"\u05d0\u05dd \u05de\u05d5\u05e4\u05e2\u05dc, \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d9\u05e8\u05d3\u05d5 \u05d1\u05e6\u05d5\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05df \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05dc- TheMovieDB.org. \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea \u05dc\u05d0 \u05d9\u05d5\u05d7\u05dc\u05e4\u05d5.","LabelAutomaticUpdatesTvdbHelp":"\u05d0\u05dd \u05de\u05d5\u05e4\u05e2\u05dc, \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d9\u05e8\u05d3\u05d5 \u05d1\u05e6\u05d5\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05df \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05dc- TVDB.com. \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea \u05dc\u05d0 \u05d9\u05d5\u05d7\u05dc\u05e4\u05d5.","ExtractChapterImagesHelp":"\u05d7\u05d9\u05dc\u05d5\u05e5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e4\u05e8\u05e7\u05d9\u05dd \u05d9\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05e8\u05d0\u05d5\u05ea \u05d7\u05dc\u05d5\u05df \u05d1\u05d7\u05d9\u05e8\u05ea \u05e1\u05e6\u05d9\u05e0\u05d5\u05ea \u05d2\u05e8\u05e4\u05d9. \u05d4\u05ea\u05d4\u05dc\u05d9\u05da \u05d4\u05d6\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d0\u05d9\u05d8\u05d9, \u05dc\u05d3\u05e8\u05d5\u05e9 \u05db\u05d5\u05d7 \u05e2\u05d9\u05d1\u05d5\u05d3 \u05e8\u05d1 \u05d5\u05e9\u05d8\u05d7 \u05d0\u05d9\u05d7\u05e1\u05d5\u05df \u05d2\u05d3\u05d5\u05dc. \u05d4\u05d5\u05d0 \u05e8\u05e5 \u05db\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \u05d1\u05d0\u05e8\u05d1\u05e2 \u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8. \u05dc\u05de\u05e8\u05d5\u05ea \u05e9\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05d0\u05d5\u05ea\u05d5 \u05d1\u05d0\u05d6\u05d5\u05e8 \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d4\u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea, \u05d6\u05d4 \u05dc\u05d0 \u05de\u05de\u05d5\u05dc\u05e5 \u05dc\u05d4\u05e8\u05d9\u05e5 \u05d0\u05d5\u05ea\u05d5 \u05d1\u05e9\u05e2\u05d5\u05ea \u05d4\u05e9\u05d9\u05de\u05d5\u05e9 \u05d4\u05de\u05d7\u05e9\u05d1.","LabelMetadataDownloadLanguage":"\u05e9\u05e4\u05d4 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:","ButtonAutoScroll":"\u05d2\u05dc\u05d9\u05dc\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea","LabelImageSavingConvention":"\u05e9\u05d9\u05d8\u05ea \u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d4:","LabelImageSavingConventionHelp":"Media Browser \u05de\u05d6\u05d4\u05d4 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05de\u05e8\u05d5\u05d1 \u05ea\u05d5\u05db\u05e0\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05d4\u05d2\u05d3\u05d5\u05dc\u05d5\u05ea. \u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05d9\u05d8\u05ea \u05d4\u05d4\u05d5\u05e8\u05d3\u05d4 \u05d9\u05e2\u05d9\u05dc\u05d4 \u05db\u05e9\u05d0\u05e8 \u05d0\u05ea\u05d4 \u05de\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d5\u05e6\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd.","OptionImageSavingCompatible":"\u05ea\u05d0\u05d9\u05de\u05d5\u05ea - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"\u05e1\u05d8\u05e0\u05d3\u05e8\u05d8\u05d9 - MB3\/MB2","ButtonSignIn":"\u05d4\u05d9\u05db\u05e0\u05e1","TitleSignIn":"\u05d4\u05d9\u05db\u05e0\u05e1","HeaderPleaseSignIn":"\u05d0\u05e0\u05d0 \u05d4\u05d9\u05db\u05e0\u05e1","LabelUser":"\u05de\u05e9\u05ea\u05de\u05e9:","LabelPassword":"\u05e1\u05d9\u05e1\u05de\u05d0:","ButtonManualLogin":"\u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea \u05d9\u05d3\u05e0\u05d9\u05ea:","PasswordLocalhostMessage":"\u05d0\u05d9\u05df \u05e6\u05d5\u05e8\u05da \u05d1\u05e1\u05d9\u05e1\u05de\u05d0 \u05db\u05d0\u05e9\u05e8 \u05de\u05ea\u05d7\u05d1\u05e8\u05d9\u05dd \u05de\u05d4\u05e9\u05e8\u05ea \u05d4\u05de\u05e7\u05d5\u05de\u05d9.","TabGuide":"\u05de\u05d3\u05e8\u05d9\u05da","TabChannels":"\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd","HeaderChannels":"\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd","TabRecordings":"\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea","TabScheduled":"\u05dc\u05d5\u05d7 \u05d6\u05de\u05e0\u05d9\u05dd","TabSeries":"\u05e1\u05d3\u05e8\u05d5\u05ea","ButtonCancelRecording":"\u05d1\u05d8\u05dc \u05d4\u05e7\u05dc\u05d8\u05d4","HeaderPrePostPadding":"\u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd\/\u05de\u05d0\u05d5\u05d7\u05e8","LabelPrePaddingMinutes":"\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd:","OptionPrePaddingRequired":"\u05db\u05d3\u05d9 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d8 \u05d9\u05e9 \u05e6\u05d5\u05e8\u05da \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd.","LabelPostPaddingMinutes":"\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05d0\u05d5\u05d7\u05e8:","OptionPostPaddingRequired":"\u05db\u05d3\u05d9 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d8 \u05d9\u05e9 \u05e6\u05d5\u05e8\u05da \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05d0\u05d5\u05d7\u05e8.","HeaderWhatsOnTV":"\u05de\u05d4 \u05de\u05e9\u05d5\u05d3\u05e8","HeaderUpcomingTV":"\u05e9\u05d9\u05d3\u05d5\u05e8\u05d9\u05dd \u05e7\u05e8\u05d5\u05d1\u05d9\u05dd","TabStatus":"\u05de\u05e6\u05d1","TabSettings":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea","ButtonRefreshGuideData":"\u05e8\u05e2\u05e0\u05df \u05d0\u05ea \u05de\u05d3\u05e8\u05d9\u05da \u05d4\u05e9\u05d9\u05d3\u05d5\u05e8","OptionPriority":"\u05e2\u05d3\u05d9\u05e4\u05d5\u05ea","OptionRecordOnAllChannels":"\u05d4\u05e7\u05dc\u05d8 \u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05d1\u05db\u05dc \u05d4\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd","OptionRecordAnytime":"\u05d4\u05e7\u05dc\u05d8 \u05ea\u05d5\u05db\u05e0\u05d9\u05ea \u05d1\u05db\u05dc \u05d6\u05de\u05df","OptionRecordOnlyNewEpisodes":"\u05d4\u05e7\u05dc\u05d8 \u05e8\u05e7 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd","HeaderDays":"\u05d9\u05de\u05d9\u05dd","HeaderActiveRecordings":"\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","HeaderLatestRecordings":"\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea","HeaderAllRecordings":"\u05db\u05dc \u05d4\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea","ButtonPlay":"\u05e0\u05d2\u05df","ButtonEdit":"\u05e2\u05e8\u05d5\u05da","ButtonRecord":"\u05d4\u05e7\u05dc\u05d8","ButtonDelete":"\u05de\u05d7\u05e7","OptionRecordSeries":"\u05d4\u05dc\u05e7\u05d8 \u05e1\u05d3\u05e8\u05d5\u05ea","HeaderDetails":"\u05e4\u05e8\u05d8\u05d9\u05dd","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"\u05d9\u05e6\u05d9\u05d0\u05d4","LabelVisitCommunity":"\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4","LabelGithubWiki":"\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05e7\u05d5\u05d3","LabelSwagger":"Swagger","LabelStandard":"\u05e8\u05d2\u05d9\u05dc","LabelViewApiDocumentation":"\u05e8\u05d0\u05d4 \u05de\u05e1\u05de\u05db\u05d9 \u05e2\u05e8\u05db\u05ea \u05e4\u05d9\u05ea\u05d5\u05d7","LabelBrowseLibrary":"\u05d3\u05e4\u05d3\u05e3 \u05d1\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4","LabelConfigureMediaBrowser":"\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea Media Browser","LabelOpenLibraryViewer":"\u05e4\u05ea\u05d7 \u05de\u05e6\u05d9\u05d2 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea","LabelRestartServer":"\u05d0\u05ea\u05d7\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea","LabelShowLogWindow":"\u05d4\u05e8\u05d0\u05d4 \u05d7\u05dc\u05d5\u05df \u05dc\u05d5\u05d2","LabelPrevious":"\u05d4\u05e7\u05d5\u05d3\u05dd","LabelFinish":"\u05e1\u05d9\u05d9\u05dd","LabelNext":"\u05d4\u05d1\u05d0","LabelYoureDone":"\u05e1\u05d9\u05d9\u05de\u05ea!","WelcomeToMediaBrowser":"\u05d1\u05e8\u05d5\u05da \u05d4\u05d1\u05d0 \u05dc- Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"\u05d4\u05d0\u05e9\u05e3 \u05d4\u05d6\u05d4 \u05d9\u05e2\u05d6\u05d5\u05e8 \u05dc\u05da \u05d1\u05d4\u05ea\u05dc\u05d9\u05da \u05d4\u05d4\u05ea\u05e7\u05e0\u05d4.","TellUsAboutYourself":"\u05e1\u05e4\u05e8 \u05dc\u05e0\u05d5 \u05e2\u05dc \u05e2\u05e6\u05de\u05da","LabelYourFirstName":"\u05e9\u05de\u05da \u05d4\u05e4\u05e8\u05d8\u05d9:","MoreUsersCanBeAddedLater":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd \u05de\u05d0\u05d5\u05d7\u05e8 \u05d9\u05d5\u05ea\u05e8 \u05d3\u05e8\u05da \u05dc\u05d5\u05d7 \u05d4\u05d1\u05e7\u05e8\u05d4.","UserProfilesIntro":"Media Browser \u05db\u05d5\u05dc\u05dc \u05ea\u05de\u05d9\u05db\u05d4 \u05de\u05d5\u05d1\u05e0\u05ea \u05d1\u05de\u05e1\u05e4\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd. \u05d5\u05de\u05d0\u05e4\u05e9\u05e8 \u05dc\u05db\u05dc \u05d0\u05d7\u05d3 \u05de\u05d4\u05dd \u05ea\u05e6\u05d5\u05d2\u05ea \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea, \u05de\u05e6\u05d1 \u05e0\u05d2\u05df \u05d5\u05d1\u05e7\u05e8\u05ea \u05d4\u05d5\u05e8\u05d9\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea.","LabelWindowsService":"\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1","AWindowsServiceHasBeenInstalled":"\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1 \u05d4\u05d5\u05ea\u05e7\u05df","WindowsServiceIntro1":"\u05e9\u05e8\u05ea Media Browser \u05e8\u05e5 \u05db\u05ea\u05d5\u05db\u05e0\u05ea \u05e9\u05d5\u05dc\u05d7\u05df \u05e2\u05d1\u05d5\u05d3\u05d4 \u05e2\u05dd \u05d0\u05d9\u05e7\u05d5\u05df \u05d1\u05e9\u05d5\u05e8\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea, \u05d0\u05d1\u05dc \u05d0\u05dd \u05d0\u05ea\u05d4 \u05de\u05e2\u05d3\u05d9\u05e3 \u05dc\u05d4\u05e8\u05d9\u05e5 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05db\u05e9\u05d9\u05e8\u05d5\u05ea \u05e8\u05e7\u05e2, \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05de\u05ea\u05d5\u05da \u05d7\u05dc\u05d5\u05df \u05d4\u05d1\u05e7\u05d4 \u05e9\u05dc \u05e9\u05d9\u05e8\u05d5\u05ea\u05d9 \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1 \u05d1\u05de\u05e7\u05d5\u05dd.","WindowsServiceIntro2":"\u05d0\u05dd \u05d0\u05ea\u05d4 \u05de\u05e4\u05e2\u05d9\u05dc \u05d0\u05ea \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1, \u05d1\u05d1\u05e7\u05e9\u05d4 \u05e9\u05d9\u05dd \u05dc\u05d1 \u05e9\u05d4\u05d5\u05d0 \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05e8\u05d5\u05e5 \u05d1\u05d0\u05d5\u05ea\u05d5 \u05d6\u05de\u05df \u05e9\u05d4\u05e9\u05e8\u05ea \u05db\u05d1\u05e8 \u05e2\u05d5\u05d1\u05d3 \u05d1\u05e8\u05e7\u05e2. \u05dc\u05db\u05df \u05ea\u05e6\u05d8\u05e8\u05da \u05dc\u05e1\u05d2\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05e2\u05dc \u05de\u05e0\u05ea \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05d0\u05ea \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea. \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05d2\u05dd \u05e6\u05e8\u05d9\u05da \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05d5\u05d2\u05d3\u05e8 \u05e2\u05dd \u05d4\u05e8\u05e9\u05d0\u05d5\u05ea \u05de\u05e0\u05d4\u05dc \u05d3\u05e8\u05da \u05dc\u05d5\u05d7 \u05d4\u05d1\u05e7\u05e8\u05d4. \u05d1\u05d1\u05e7\u05e9\u05d4 \u05e7\u05d7 \u05d1\u05d7\u05e9\u05d1\u05d5\u05df \u05e9\u05db\u05e8\u05d2\u05e2 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05e2\u05d3\u05db\u05df \u05d0\u05ea \u05e2\u05e6\u05de\u05d5 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea, \u05d5\u05dc\u05db\u05df \u05d2\u05d9\u05e8\u05e1\u05d0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d9\u05e6\u05e8\u05d9\u05db\u05d5 \u05e2\u05d9\u05d3\u05db\u05d5\u05df \u05d9\u05d3\u05e0\u05d9.","WizardCompleted":"\u05d6\u05d4 \u05db\u05dc \u05de\u05d4 \u05e9\u05e6\u05e8\u05d9\u05da \u05dc\u05e2\u05db\u05e9\u05d9\u05d5. Media Browser \u05d4\u05d7\u05dc \u05dc\u05d0\u05e1\u05d5\u05e3 \u05de\u05d9\u05d3\u05e2 \u05dc\u05d2\u05d1\u05d9 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da. \u05d0\u05dc \u05ea\u05e9\u05db\u05d7 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05de\u05d2\u05d5\u05d5\u05df \u05d4\u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05e9\u05dc\u05e0\u05d5, \u05d5\u05d0\u05d6 \u05dc\u05d7\u05e5 \u05e1\u05d9\u05d9\u05dd<\/b> \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05ea \u05d4\u05dc\u05d5\u05d7 \u05d1\u05e7\u05e8\u05d4<\/b>.","LabelConfigureSettings":"\u05e7\u05d1\u05e2 \u05d0\u05ea \u05ea\u05e6\u05d5\u05e8\u05ea \u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea","LabelEnableVideoImageExtraction":"\u05d0\u05e4\u05e9\u05e8 \u05e9\u05dc\u05d9\u05e4\u05ea \u05ea\u05de\u05d5\u05e0\u05d4 \u05de\u05e1\u05e8\u05d8","VideoImageExtractionHelp":"\u05e2\u05d1\u05d5\u05e8 \u05e1\u05e8\u05d8\u05d9\u05dd \u05e9\u05d0\u05d9\u05df \u05dc\u05d4\u05dd \u05db\u05d1\u05e8 \u05ea\u05de\u05d5\u05e0\u05d4, \u05d5\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4 \u05dc\u05d4\u05dd \u05d0\u05d7\u05ea \u05d1\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8. \u05d4\u05d2\u05d3\u05e8\u05d4 \u05d6\u05d5 \u05ea\u05d5\u05e1\u05d9\u05e3 \u05de\u05e2\u05d8 \u05d6\u05de\u05df \u05dc\u05ea\u05d4\u05dc\u05d9\u05da \u05e1\u05e8\u05d9\u05e7\u05ea \u05d4\u05ea\u05e7\u05d9\u05d9\u05d4 \u05d4\u05e8\u05d0\u05e9\u05d5\u05e0\u05d9, \u05d0\u05da \u05ea\u05e1\u05e4\u05e7 \u05ea\u05e6\u05d5\u05d2\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05d9\u05e4\u05d4.","LabelEnableChapterImageExtractionForMovies":"\u05d7\u05dc\u05e5 \u05ea\u05de\u05d5\u05e0\u05ea \u05e4\u05e8\u05e7 \u05dc\u05e1\u05e8\u05d8\u05d9\u05dd","LabelChapterImageExtractionForMoviesHelp":"\u05d7\u05d9\u05dc\u05d5\u05e5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e4\u05e8\u05e7\u05d9\u05dd \u05d9\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05e8\u05d0\u05d5\u05ea \u05ea\u05e4\u05e8\u05d9\u05d8 \u05d1\u05d7\u05d9\u05e8\u05ea \u05e1\u05e6\u05e0\u05d5\u05ea \u05d2\u05e8\u05e4\u05d9. \u05d4\u05ea\u05d4\u05dc\u05d9\u05da \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d0\u05d9\u05d8\u05d9, \u05dc\u05d3\u05e8\u05d5\u05e9 \u05de\u05e9\u05d0\u05d1\u05d9 \u05de\u05e2\u05d1\u05d3 \u05e8\u05d1\u05d9\u05dd \u05d5\u05dc\u05ea\u05e4\u05d5\u05e1 \u05e9\u05d8\u05d7 \u05d0\u05d9\u05d7\u05e1\u05d5\u05df \u05e8\u05d1. \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05e8\u05e6\u05d4 \u05db\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \u05d1\u05d0\u05e8\u05d1\u05e2 \u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8, \u05d0\u05da \u05d6\u05d4 \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05d9\u05e0\u05d5\u05d9 \u05d1\u05d7\u05dc\u05d5\u05df \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d4\u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea. \u05d6\u05d4 \u05dc\u05d0 \u05de\u05de\u05d5\u05dc\u05e5 \u05dc\u05d4\u05e4\u05e2\u05d9\u05dc \u05de\u05e9\u05d9\u05de\u05d4 \u05d6\u05d5 \u05d1\u05e9\u05e2\u05d5\u05ea \u05d4\u05e9\u05d9\u05de\u05d5\u05e9 \u05d4\u05e2\u05d9\u05e7\u05e8\u05d9\u05d5\u05ea \u05d1\u05de\u05d7\u05e9\u05d1.","LabelEnableAutomaticPortMapping":"\u05d0\u05e4\u05e9\u05e8 \u05de\u05d9\u05e4\u05d5\u05d9 \u05e4\u05d5\u05e8\u05d8\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9","LabelEnableAutomaticPortMappingHelp":"UPnP \u05de\u05d0\u05e4\u05e9\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05d5\u05ea \u05e9\u05dc \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05de\u05e8\u05d5\u05d7\u05e7\u05ea \u05d1\u05e7\u05dc\u05d5\u05ea. \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3 \u05e2\u05dd \u05db\u05dc \u05d3\u05d2\u05de\u05d9 \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8\u05d9\u05dd.","ButtonOk":"\u05d0\u05e9\u05e8","ButtonCancel":"\u05d1\u05d8\u05dc","ButtonNew":"New","HeaderSetupLibrary":"\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da","ButtonAddMediaFolder":"\u05d4\u05d5\u05e1\u05e3 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4","LabelFolderType":"\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4:","MediaFolderHelpPluginRequired":"* \u05de\u05e6\u05e8\u05d9\u05da \u05de\u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05ea\u05d5\u05e1\u05e3, \u05dc\u05d3\u05d5\u05d2\u05de\u05d0 GameBrowser \u05d0\u05d5 MB Bookshelf","ReferToMediaLibraryWiki":"\u05e4\u05e0\u05d4 \u05dc\u05de\u05d9\u05d3\u05e2 \u05d0\u05d5\u05d3\u05d5\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4.","LabelCountry":"\u05de\u05d3\u05d9\u05e0\u05d4:","LabelLanguage":"\u05e9\u05e4\u05d4:","HeaderPreferredMetadataLanguage":"\u05e9\u05e4\u05ea \u05de\u05d9\u05d3\u05e2 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:","LabelSaveLocalMetadata":"\u05e9\u05de\u05d5\u05e8 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d1\u05ea\u05d5\u05da \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4","LabelSaveLocalMetadataHelp":"\u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d1\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05ea\u05d0\u05e4\u05e9\u05e8 \u05e2\u05e8\u05d9\u05db\u05d4 \u05e0\u05d5\u05d7\u05d4 \u05d5\u05e7\u05dc\u05d4 \u05e9\u05dc\u05d4\u05dd.","LabelDownloadInternetMetadata":"\u05d4\u05d5\u05e8\u05d3 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05de\u05d4\u05d0\u05d9\u05e0\u05e8\u05e0\u05d8","LabelDownloadInternetMetadataHelp":"Media Browser \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d5\u05e8\u05d9\u05d3 \u05de\u05d9\u05d3\u05e2 \u05dc\u05d2\u05d1\u05d9 \u05e7\u05d1\u05e6\u05d9 \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da \u05db\u05d3\u05d9 \u05d0\u05e4\u05e9\u05e8 \u05ea\u05e6\u05d5\u05d2\u05d4 \u05e2\u05e9\u05d9\u05e8\u05d4.","TabPreferences":"\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea","TabPassword":"\u05e1\u05d9\u05e1\u05de\u05d0","TabLibraryAccess":"\u05d2\u05d9\u05e9\u05d4 \u05dc\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea","TabImage":"\u05ea\u05de\u05d5\u05e0\u05d4","TabProfile":"\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"\u05d4\u05e6\u05d2 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05e1\u05e8\u05d9\u05dd \u05d1\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05e0\u05d5\u05ea","LabelUnairedMissingEpisodesWithinSeasons":"\u05d4\u05e6\u05d2 \u05e4\u05e8\u05e7\u05d9\u05dd \u05e9\u05e2\u05d3\u05d9\u05df \u05d0\u05dc \u05e9\u05d5\u05d3\u05e8\u05d5 \u05d1\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05e0\u05d5\u05ea","HeaderVideoPlaybackSettings":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05d9\u05d2\u05d5\u05df","LabelAudioLanguagePreference":"\u05e9\u05e4\u05ea \u05e7\u05d5\u05dc \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:","LabelSubtitleLanguagePreference":"\u05e9\u05e4\u05ea \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:","LabelDisplayForcedSubtitlesOnly":"\u05d4\u05e6\u05d2 \u05e8\u05e7 \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea \u05de\u05d0\u05d5\u05dc\u05e6\u05d5\u05ea","TabProfiles":"\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9\u05dd","TabSecurity":"\u05d1\u05d8\u05d9\u05d7\u05d5\u05ea","ButtonAddUser":"\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9","ButtonSave":"\u05e9\u05de\u05d5\u05e8","ButtonResetPassword":"\u05d0\u05d9\u05e4\u05d5\u05e1 \u05e1\u05d9\u05e1\u05de\u05d0","LabelNewPassword":"\u05e1\u05d9\u05e1\u05de\u05d0 \u05d7\u05d3\u05e9\u05d4:","LabelNewPasswordConfirm":"\u05d0\u05d9\u05de\u05d5\u05ea \u05e1\u05d9\u05e1\u05de\u05d0 \u05d7\u05d3\u05e9\u05d4:","HeaderCreatePassword":"\u05e6\u05d5\u05e8 \u05e1\u05d9\u05e1\u05de\u05d0","LabelCurrentPassword":"\u05e1\u05d9\u05e1\u05de\u05d0 \u05e0\u05d5\u05db\u05d7\u05d9\u05ea:","LabelMaxParentalRating":"\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05d5\u05e8\u05d9\u05dd \u05de\u05e7\u05e1\u05d9\u05de\u05d0\u05dc\u05d9:","MaxParentalRatingHelp":"\u05ea\u05d5\u05db\u05df \u05e2\u05dd \u05d3\u05d9\u05e8\u05d5\u05d2 \u05d2\u05d5\u05d1\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05d9\u05d5\u05e1\u05ea\u05e8 \u05de\u05d4\u05de\u05e9\u05ea\u05de\u05e9.","LibraryAccessHelp":"\u05d1\u05d7\u05e8 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05d0\u05e9\u05e8 \u05d9\u05e9\u05d5\u05ea\u05e4\u05d5 \u05e2\u05dd \u05d4\u05de\u05e9\u05ea\u05de\u05e9. \u05de\u05e0\u05d4\u05dc\u05d9\u05dd \u05d9\u05d5\u05db\u05dc\u05d5 \u05dc\u05e2\u05e8\u05d5\u05ea \u05d0\u05ea \u05db\u05dc \u05d4\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05e2\u05d5\u05e8\u05da \u05d4\u05de\u05d9\u05d3\u05e2.","ButtonDeleteImage":"\u05de\u05d7\u05e7 \u05ea\u05de\u05d5\u05e0\u05d4","ButtonUpload":"\u05d4\u05e2\u05dc\u05d4","HeaderUploadNewImage":"\u05d4\u05e2\u05dc\u05d4 \u05ea\u05de\u05d5\u05e0\u05d4 \u05d7\u05d3\u05e9\u05d4","LabelDropImageHere":"\u05e9\u05d7\u05e8\u05e8 \u05ea\u05de\u05d5\u05e0\u05d4 \u05db\u05d0\u05df","ImageUploadAspectRatioHelp":"\u05de\u05d5\u05de\u05dc\u05e5 \u05d9\u05d7\u05e1 \u05d2\u05d5\u05d1\u05d4 \u05e9\u05dc 1:1. \u05e8\u05e7 JPG\/PNG.","MessageNothingHere":"\u05d0\u05d9\u05df \u05db\u05d0\u05df \u05db\u05dc\u05d5\u05dd.","MessagePleaseEnsureInternetMetadata":"\u05d1\u05d1\u05e7\u05e9\u05d4 \u05d5\u05d5\u05d3\u05d0 \u05db\u05d9 \u05d4\u05d5\u05e8\u05d3\u05ea \u05de\u05d9\u05d3\u05e2 \u05de\u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05de\u05d0\u05d5\u05e4\u05e9\u05e8\u05ea","TabSuggested":"\u05de\u05de\u05d5\u05dc\u05e5","TabLatest":"\u05d0\u05d7\u05e8\u05d5\u05df","TabUpcoming":"\u05d1\u05e7\u05e8\u05d5\u05d1","TabShows":"\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea","TabEpisodes":"\u05e4\u05e8\u05e7\u05d9\u05dd","TabGenres":"\u05d6\u05d0\u05e0\u05e8\u05d9\u05dd","TabPeople":"\u05d0\u05e0\u05e9\u05d9\u05dd","TabNetworks":"\u05e8\u05e9\u05ea\u05d5\u05ea","HeaderUsers":"\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd","HeaderFilters":"\u05de\u05e1\u05e0\u05e0\u05d9\u05dd:","ButtonFilter":"\u05de\u05e1\u05e0\u05df","OptionFavorite":"\u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd","OptionLikes":"\u05e0\u05d1\u05d7\u05e8\u05d9\u05dd","OptionDislikes":"\u05dc\u05d0 \u05d0\u05d5\u05d4\u05d1","OptionActors":"\u05e9\u05d7\u05e7\u05e0\u05d9\u05dd","OptionGuestStars":"\u05e9\u05d7\u05e7\u05df \u05d0\u05d5\u05e8\u05d7","OptionDirectors":"\u05d1\u05de\u05d0\u05d9\u05dd","OptionWriters":"\u05db\u05d5\u05ea\u05d1\u05d9\u05dd","OptionProducers":"\u05de\u05e4\u05d9\u05e7\u05d9\u05dd","HeaderResume":"\u05d4\u05de\u05e9\u05da","HeaderNextUp":"\u05d4\u05d1\u05d0 \u05d1\u05ea\u05d5\u05e8","NoNextUpItemsMessage":"\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0 \u05db\u05dc\u05d5\u05dd. \u05d4\u05ea\u05d7\u05dc\u05ea \u05dc\u05e6\u05e4\u05d5\u05ea \u05d1\u05e1\u05d3\u05e8\u05d5\u05ea \u05e9\u05dc\u05da!","HeaderLatestEpisodes":"\u05e4\u05e8\u05e7\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","HeaderPersonTypes":"\u05e1\u05d5\u05d2\u05d9 \u05d0\u05e0\u05e9\u05d9\u05dd:","TabSongs":"\u05e9\u05d9\u05e8\u05d9\u05dd","TabAlbums":"\u05d0\u05dc\u05d1\u05d5\u05de\u05d9\u05dd","TabArtists":"\u05d0\u05de\u05e0\u05d9\u05dd","TabAlbumArtists":"\u05d0\u05de\u05e0\u05d9 \u05d0\u05dc\u05d1\u05d5\u05dd","TabMusicVideos":"\u05e7\u05dc\u05d9\u05e4\u05d9\u05dd","ButtonSort":"\u05de\u05d9\u05d9\u05df","HeaderSortBy":"\u05de\u05d9\u05d9\u05df \u05dc\u05e4\u05d9:","HeaderSortOrder":"\u05e1\u05d3\u05e8 \u05de\u05d9\u05d5\u05df:","OptionPlayed":"\u05e0\u05d5\u05d2\u05df","OptionUnplayed":"\u05dc\u05d0 \u05e0\u05d5\u05d2\u05df","OptionAscending":"\u05e1\u05d3\u05e8 \u05e2\u05d5\u05dc\u05d4","OptionDescending":"\u05e1\u05d3\u05e8 \u05d9\u05d5\u05e8\u05d3","OptionRuntime":"\u05de\u05e9\u05da","OptionReleaseDate":"\u05ea\u05d0\u05e8\u05d9\u05da \u05e9\u05d9\u05d7\u05e8\u05d5\u05e8","OptionPlayCount":"\u05de\u05e1\u05e4\u05e8 \u05d4\u05e9\u05de\u05e2\u05d5\u05ea","OptionDatePlayed":"\u05ea\u05d0\u05e8\u05d9\u05da \u05e0\u05d9\u05d2\u05d5\u05df","OptionDateAdded":"\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4","OptionAlbumArtist":"\u05d0\u05de\u05df \u05d0\u05dc\u05d1\u05d5\u05dd","OptionArtist":"\u05d0\u05de\u05df","OptionAlbum":"\u05d0\u05dc\u05d1\u05d5\u05dd","OptionTrackName":"\u05e9\u05dd \u05d4\u05e9\u05d9\u05e8","OptionCommunityRating":"\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05e7\u05d4\u05d9\u05dc\u05d4","OptionNameSort":"\u05e9\u05dd","OptionFolderSort":"Folders","OptionBudget":"\u05ea\u05e7\u05e6\u05d9\u05d1","OptionRevenue":"\u05d4\u05db\u05e0\u05e1\u05d5\u05ea","OptionPoster":"\u05e4\u05d5\u05e1\u05d8\u05e8","OptionBackdrop":"Backdrop","OptionTimeline":"\u05e6\u05d9\u05e8 \u05d6\u05de\u05df","OptionThumb":"Thumb","OptionBanner":"\u05d1\u05d0\u05e0\u05e8","OptionCriticRating":"\u05e6\u05d9\u05d5\u05df \u05de\u05d1\u05e7\u05e8\u05d9\u05dd","OptionVideoBitrate":"\u05e7\u05e6\u05ea \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5","OptionResumable":"\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05de\u05e9\u05d9\u05da","ScheduledTasksHelp":"\u05dc\u05d7\u05e5 \u05e2\u05dc \u05de\u05e9\u05d9\u05de\u05d4 \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05ea\u05d6\u05de\u05d5\u05df \u05e9\u05dc\u05d4","ScheduledTasksTitle":"\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea","TabMyPlugins":"\u05d4\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05e9\u05dc\u05d9","TabCatalog":"\u05e7\u05d8\u05dc\u05d5\u05d2","TabUpdates":"\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd","PluginsTitle":"\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd","HeaderAutomaticUpdates":"\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd","HeaderUpdateLevel":"\u05e8\u05de\u05ea \u05d4\u05e2\u05d9\u05d3\u05db\u05d5\u05df","HeaderNowPlaying":"\u05de\u05e0\u05d2\u05df \u05e2\u05db\u05e9\u05d9\u05d5","HeaderLatestAlbums":"\u05d0\u05dc\u05d1\u05d5\u05de\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","HeaderLatestSongs":"\u05e9\u05d9\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","HeaderRecentlyPlayed":"\u05e0\u05d5\u05d2\u05e0\u05d5 \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4","HeaderFrequentlyPlayed":"\u05e0\u05d5\u05d2\u05e0\u05d5 \u05dc\u05e8\u05d5\u05d1","DevBuildWarning":"\u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05de\u05e4\u05ea\u05d7 \u05d4\u05df \u05d7\u05d5\u05d3 \u05d4\u05d7\u05e0\u05d9\u05ea. \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05d0\u05dc\u05d4 \u05dc\u05d0 \u05e0\u05d1\u05d3\u05e7\u05d5 \u05d5\u05d4\u05df \u05de\u05e9\u05d5\u05d7\u05e8\u05e8\u05d5\u05ea \u05d1\u05de\u05d4\u05d9\u05e8\u05d5\u05ea. \u05d4\u05ea\u05d5\u05db\u05e0\u05d4 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05e7\u05e8\u05d5\u05e1 \u05d5\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05e1\u05d5\u05d9\u05d9\u05de\u05d9\u05dd \u05e2\u05dc\u05d5\u05dc\u05d9\u05dd \u05db\u05dc\u05dc \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3.","LabelVideoType":"\u05d2\u05d5\u05d3 \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5:","OptionBluray":"\u05d1\u05dc\u05d5-\u05e8\u05d9\u05d9","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"\u05ea\u05dc\u05ea \u05de\u05d9\u05de\u05d3","LabelFeatures":"\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd:","OptionHasSubtitles":"\u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea","OptionHasTrailer":"\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8","OptionHasThemeSong":"\u05e9\u05d9\u05e8 \u05e0\u05d5\u05e9\u05d0","OptionHasThemeVideo":"\u05e1\u05e8\u05d8 \u05e0\u05d5\u05e9\u05d0","TabMovies":"\u05e1\u05e8\u05d8\u05d9\u05dd","TabStudios":"\u05d0\u05d5\u05dc\u05e4\u05e0\u05d9\u05dd","TabTrailers":"\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8\u05d9\u05dd","HeaderLatestMovies":"\u05e1\u05e8\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","HeaderLatestTrailers":"\u05d8\u05e8\u05d9\u05d9\u05dc\u05d9\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd","OptionHasSpecialFeatures":"\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd","OptionImdbRating":"\u05d3\u05d9\u05e8\u05d5\u05d2 IMDb","OptionParentalRating":"\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d1\u05e7\u05e8\u05ea \u05d4\u05d5\u05e8\u05d9\u05dd","OptionPremiereDate":"\u05ea\u05d0\u05e8\u05d9\u05da \u05e9\u05d9\u05d3\u05d5\u05e8 \u05e8\u05d0\u05e9\u05d5\u05df","TabBasic":"\u05d1\u05e1\u05d9\u05e1\u05d9","TabAdvanced":"\u05de\u05ea\u05e7\u05d3\u05dd","HeaderStatus":"\u05de\u05e6\u05d1","OptionContinuing":"\u05de\u05de\u05e9\u05d9\u05da","OptionEnded":"\u05d4\u05e1\u05ea\u05d9\u05d9\u05dd","HeaderAirDays":"\u05d9\u05de\u05d9 \u05e9\u05d9\u05d3\u05d5\u05e8:","OptionSunday":"\u05e8\u05d0\u05e9\u05d5\u05df","OptionMonday":"\u05e9\u05e0\u05d9","OptionTuesday":"\u05e9\u05dc\u05d9\u05e9\u05d9","OptionWednesday":"\u05e8\u05d1\u05d9\u05e2\u05d9","OptionThursday":"\u05d7\u05de\u05d9\u05e9\u05d9","OptionFriday":"\u05e9\u05d9\u05e9\u05d9","OptionSaturday":"\u05e9\u05d1\u05ea","HeaderManagement":"\u05e0\u05d9\u05d4\u05d5\u05dc","OptionMissingImdbId":"\u05d7\u05e1\u05e8 \u05de\u05d6\u05d4\u05d4 IMBb","OptionMissingTvdbId":"\u05d7\u05e1\u05e8 \u05de\u05d6\u05d4\u05d4 TheTVDB","OptionMissingOverview":"\u05d7\u05e1\u05e8\u05d4 \u05e1\u05e7\u05d9\u05e8\u05d4","OptionFileMetadataYearMismatch":"\u05d4\u05e9\u05e0\u05d4 \u05dc\u05d0 \u05de\u05ea\u05d0\u05d9\u05de\u05d4 \u05d1\u05d9\u05df \u05d4\u05de\u05d9\u05d3\u05e2 \u05dc\u05e7\u05d5\u05d1\u05e5","TabGeneral":"\u05db\u05dc\u05dc\u05d9","TitleSupport":"\u05ea\u05de\u05d9\u05db\u05d4","TabLog":"\u05dc\u05d5\u05d2","TabAbout":"\u05d0\u05d5\u05d3\u05d5\u05ea","TabSupporterKey":"\u05de\u05e4\u05ea\u05d7 \u05ea\u05d5\u05de\u05da","TabBecomeSupporter":"\u05d4\u05e4\u05d5\u05da \u05dc\u05ea\u05d5\u05de\u05da","MediaBrowserHasCommunity":"\u05dcMedia Browser \u05d9\u05e9 \u05e7\u05d4\u05d9\u05dc\u05d4 \u05e4\u05d5\u05e8\u05d7\u05ea \u05e9\u05dc \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d5\u05ea\u05d5\u05e8\u05de\u05d9\u05dd.","CheckoutKnowledgeBase":"\u05e2\u05d9\u05d9\u05df \u05d1\u05de\u05d0\u05d2\u05e8 \u05d4\u05de\u05d9\u05d3\u05e2 \u05e9\u05dc\u05e0\u05d5 \u05dc\u05e2\u05d6\u05d5\u05e8 \u05dc\u05da \u05dc\u05d4\u05d5\u05e6\u05d9\u05d0 \u05d0\u05ea \u05d4\u05de\u05d9\u05e8\u05d1 \u05deMedia Browser.","SearchKnowledgeBase":"\u05d7\u05e4\u05e9 \u05d1\u05de\u05d0\u05d2\u05e8 \u05d4\u05de\u05d9\u05d3\u05e2","VisitTheCommunity":"\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4","VisitMediaBrowserWebsite":"\u05d1\u05e7\u05e8 \u05d1\u05d0\u05ea\u05e8 \u05e9\u05dc Media Browser","VisitMediaBrowserWebsiteLong":"\u05d1\u05e7\u05e8 \u05d1\u05d0\u05ea\u05e8 \u05e9\u05dc Media Browser \u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05e2\u05d3\u05db\u05df \u05d1\u05d7\u05e9\u05d3\u05d5\u05ea \u05d4\u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea \u05d5\u05d1\u05d1\u05dc\u05d5\u05d2 \u05d4\u05de\u05e4\u05ea\u05d7\u05d9\u05dd.","OptionHideUser":"\u05d4\u05e1\u05ea\u05e8 \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05d1\u05d7\u05dc\u05d5\u05df \u05d4\u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea","OptionDisableUser":"\u05d1\u05d8\u05dc \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4","OptionDisableUserHelp":"\u05d0\u05dd \u05de\u05d1\u05d5\u05d8\u05dc, \u05d4\u05e9\u05e8\u05ea \u05e9\u05dc\u05d0 \u05d9\u05d0\u05e4\u05e9\u05e8 \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05de\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4. \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd \u05d9\u05d1\u05d5\u05d8\u05dc\u05d5 \u05de\u05d9\u05d9\u05d3.","HeaderAdvancedControl":"\u05e9\u05dc\u05d9\u05d8\u05d4 \u05de\u05ea\u05e7\u05d3\u05de\u05d5\u05ea","LabelName":"\u05e9\u05dd:","OptionAllowUserToManageServer":"\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05e0\u05d4\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea","HeaderFeatureAccess":"\u05d2\u05d9\u05e9\u05d4 \u05dc\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd","OptionAllowMediaPlayback":"\u05d0\u05e4\u05e9\u05e8 \u05e0\u05d9\u05d2\u05d5\u05df \u05de\u05d3\u05d9\u05d4","OptionAllowBrowsingLiveTv":"\u05d0\u05e4\u05e9\u05e8 \u05d3\u05e4\u05d3\u05d5\u05e3 \u05d1\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d4","OptionAllowDeleteLibraryContent":"\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05de\u05d7\u05d5\u05e7 \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05ea\u05d5\u05db\u05df","OptionAllowManageLiveTv":"\u05d0\u05e4\u05e9\u05e8 \u05e0\u05d9\u05d4\u05d5\u05dc \u05e9\u05dc \u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d4","OptionAllowRemoteControlOthers":"\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05e9\u05dc\u05d5\u05d8 \u05de\u05e8\u05d7\u05d5\u05e7 \u05d1\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd","OptionMissingTmdbId":"\u05d7\u05d6\u05e8 \u05de\u05d6\u05d4\u05d4 Tmdb","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"\u05d1\u05d7\u05e8","ButtonSearch":"Search","ButtonGroupVersions":"\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea","PismoMessage":"\u05d0\u05e4\u05e9\u05e8 \u05d8\u05e2\u05d9\u05e0\u05ea \u05e7\u05d1\u05e6\u05d9 Pismo \u05d3\u05e8\u05da \u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05ea\u05e8\u05d5\u05de\u05d4.","PleaseSupportOtherProduces":"\u05d0\u05e0\u05d0 \u05ea\u05de\u05db\u05d5 \u05d1\u05e9\u05d9\u05e8\u05d5\u05ea\u05d9\u05dd \u05d7\u05d9\u05e0\u05de\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05e9\u05d1\u05d4\u05dd \u05d0\u05e0\u05d5 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd:","VersionNumber":"\u05d2\u05d9\u05e8\u05e1\u05d0 {0}","TabPaths":"\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd","TabServer":"\u05e9\u05e8\u05ea","TabTranscoding":"\u05e7\u05d9\u05d3\u05d5\u05d3","TitleAdvanced":"\u05de\u05ea\u05e7\u05d3\u05dd","LabelAutomaticUpdateLevel":"\u05e8\u05de\u05ea \u05e2\u05d3\u05db\u05d5\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9","OptionRelease":"\u05e9\u05d9\u05d7\u05e8\u05d5\u05e8 \u05e8\u05e9\u05de\u05d9","OptionBeta":"\u05d1\u05d8\u05d0","OptionDev":"\u05de\u05e4\u05ea\u05d7 (\u05dc\u05d0 \u05d9\u05e6\u05d9\u05d1)","LabelAllowServerAutoRestart":"\u05d0\u05e4\u05e9\u05e8 \u05dc\u05e9\u05e8\u05ea \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d3\u05d9 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d0\u05ea \u05d4\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd","LabelAllowServerAutoRestartHelp":"\u05d4\u05e9\u05e8\u05ea \u05d9\u05ea\u05d7\u05d9\u05dc \u05de\u05d7\u05d3\u05e9 \u05e8\u05e7 \u05db\u05e9\u05d0\u05e8 \u05d0\u05d9\u05df \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd","LabelEnableDebugLogging":"\u05d0\u05e4\u05e9\u05e8 \u05ea\u05d9\u05e2\u05d5\u05d3 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05dc\u05d0\u05d9\u05ea\u05d5\u05e8 \u05ea\u05e7\u05dc\u05d5\u05ea","LabelRunServerAtStartup":"\u05d4\u05ea\u05d7\u05dc \u05e9\u05e8\u05ea \u05d1\u05d4\u05e4\u05e2\u05dc\u05ea \u05d4\u05de\u05d7\u05e9\u05d1","LabelRunServerAtStartupHelp":"\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05ea\u05ea\u05d7\u05d9\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05d5\u05ea\u05e8\u05d0\u05d4 \u05d0\u05ea \u05d4\u05d0\u05d9\u05e7\u05d5\u05df \u05e9\u05dc\u05d5 \u05d1\u05e9\u05d5\u05e8\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05de\u05d7\u05e9\u05d1 \u05e2\u05d5\u05dc\u05d4. \u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05ea \u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1, \u05d1\u05d8\u05dc \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d0\u05ea \u05d5\u05d4\u05ea\u05d7\u05dc \u05d0\u05ea \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05de\u05dc\u05d5\u05d7 \u05d4\u05d1\u05e7\u05e8\u05d4 \u05e9\u05dc \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1. \u05d1\u05d1\u05e7\u05e9\u05d4 \u05e9\u05d9\u05dd \u05dc\u05d1 \u05e9\u05d0\u05d9\u05e0\u05da \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05e8\u05d9\u05e5 \u05d0\u05ea \u05e9\u05ea\u05d9 \u05d4\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05d0\u05dc\u05d5 \u05d1\u05de\u05e7\u05d1\u05d9\u05dc, \u05d0\u05ea\u05d4 \u05e6\u05e8\u05d9\u05da \u05dc\u05e6\u05d0\u05ea \u05d5\u05dc\u05e1\u05d2\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05dc\u05e4\u05e0\u05d9 \u05d4\u05ea\u05d7\u05dc\u05ea \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea.","ButtonSelectDirectory":"\u05d1\u05d7\u05e8 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea","LabelCustomPaths":"\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05d4\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d4\u05e8\u05e6\u05d5\u05d9\u05d9\u05dd. \u05d4\u05e9\u05d0\u05e8 \u05e9\u05d3\u05d5\u05ea \u05e8\u05d9\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc.","LabelCachePath":"\u05e0\u05ea\u05d9\u05d1 cache:","LabelCachePathHelp":"\u05ea\u05d9\u05e7\u05d9\u05d4 \u05d6\u05d5 \u05de\u05db\u05d9\u05dc\u05d4 \u05d0\u05ea \u05e7\u05d1\u05e6\u05d9 \u05d4-cache \u05e9\u05dc \u05d4\u05e9\u05e8\u05ea, \u05db\u05de\u05d5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea.","LabelImagesByNamePath":"\u05e0\u05ea\u05d9\u05d1 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea Images by name:","LabelImagesByNamePathHelp":"\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4 \u05d6\u05d5 \u05de\u05db\u05d9\u05dc\u05d4 \u05e9\u05d7\u05e7\u05e0\u05d9\u05dd, \u05d0\u05de\u05e0\u05d9\u05dd, \u05d6'\u05d0\u05e0\u05e8\u05d9\u05dd \u05d5\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d0\u05d5\u05dc\u05e4\u05e0\u05d9\u05dd","LabelMetadataPath":"\u05e0\u05ea\u05d9\u05d1 Metadata:","LabelMetadataPathHelp":"\u05e1\u05e4\u05e8\u05d9\u05d4 \u05d6\u05d5 \u05de\u05db\u05d9\u05dc\u05d4 \u05de\u05d9\u05d3\u05e2 \u05d5\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e9\u05d0\u05d9\u05e0\u05df \u05de\u05d5\u05d2\u05d3\u05e8\u05d5\u05ea \u05dc\u05d4\u05d9\u05d5\u05ea \u05de\u05d0\u05d5\u05d7\u05e1\u05e0\u05d5\u05ea \u05d1\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4.","LabelTranscodingTempPath":"\u05e0\u05ea\u05d9\u05d1 \u05dc\u05e7\u05d9\u05d3\u05d5\u05d3 \u05d6\u05de\u05e0\u05d9:","LabelTranscodingTempPathHelp":"\u05ea\u05d9\u05e7\u05d9\u05d4 \u05d6\u05d5 \u05de\u05db\u05d9\u05dc\u05d4 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd \u05d1\u05e9\u05d9\u05de\u05d5\u05e9 \u05d4\u05de\u05e7\u05d5\u05d3\u05d3","TabBasics":"\u05db\u05dc\u05dc\u05d9","TabTV":"TV","TabGames":"\u05de\u05e9\u05d7\u05e7\u05d9\u05dd","TabMusic":"\u05de\u05d5\u05e1\u05d9\u05e7\u05d4","TabOthers":"\u05d0\u05d7\u05e8\u05d9\u05dd","HeaderExtractChapterImagesFor":"\u05d7\u05dc\u05e5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e4\u05e8\u05e7\u05d9\u05dd \u05dc:","OptionMovies":"\u05e1\u05e8\u05d8\u05d9\u05dd","OptionEpisodes":"\u05e4\u05e8\u05e7\u05d9\u05dd","OptionOtherVideos":"\u05e7\u05d8\u05e2\u05d9 \u05d5\u05d5\u05d9\u05d3\u05d9\u05d0\u05d5 \u05d0\u05d7\u05e8\u05d9\u05dd","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"\u05d0\u05e4\u05e9\u05e8 \u05e2\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd \u05de- FanArt.tv","LabelAutomaticUpdatesTmdb":"\u05d0\u05e4\u05e9\u05e8 \u05e2\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd \u05de- TheMovieDB.org","LabelAutomaticUpdatesTvdb":"\u05d0\u05e4\u05e9\u05e8 \u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd \u05de- TVDB.com","LabelAutomaticUpdatesFanartHelp":"\u05d0\u05dd \u05de\u05d5\u05e4\u05e2\u05dc, \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d9\u05e8\u05d3\u05d5 \u05d1\u05e6\u05d5\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05df \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05dc- fanart.tv. \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea \u05dc\u05d0 \u05d9\u05d5\u05d7\u05dc\u05e4\u05d5.","LabelAutomaticUpdatesTmdbHelp":"\u05d0\u05dd \u05de\u05d5\u05e4\u05e2\u05dc, \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d9\u05e8\u05d3\u05d5 \u05d1\u05e6\u05d5\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05df \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05dc- TheMovieDB.org. \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea \u05dc\u05d0 \u05d9\u05d5\u05d7\u05dc\u05e4\u05d5.","LabelAutomaticUpdatesTvdbHelp":"\u05d0\u05dd \u05de\u05d5\u05e4\u05e2\u05dc, \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d9\u05e8\u05d3\u05d5 \u05d1\u05e6\u05d5\u05e8\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d0\u05e9\u05e8 \u05d4\u05df \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05dc- TVDB.com. \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea \u05dc\u05d0 \u05d9\u05d5\u05d7\u05dc\u05e4\u05d5.","ExtractChapterImagesHelp":"\u05d7\u05d9\u05dc\u05d5\u05e5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e4\u05e8\u05e7\u05d9\u05dd \u05d9\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05e8\u05d0\u05d5\u05ea \u05d7\u05dc\u05d5\u05df \u05d1\u05d7\u05d9\u05e8\u05ea \u05e1\u05e6\u05d9\u05e0\u05d5\u05ea \u05d2\u05e8\u05e4\u05d9. \u05d4\u05ea\u05d4\u05dc\u05d9\u05da \u05d4\u05d6\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05d9\u05d5\u05ea \u05d0\u05d9\u05d8\u05d9, \u05dc\u05d3\u05e8\u05d5\u05e9 \u05db\u05d5\u05d7 \u05e2\u05d9\u05d1\u05d5\u05d3 \u05e8\u05d1 \u05d5\u05e9\u05d8\u05d7 \u05d0\u05d9\u05d7\u05e1\u05d5\u05df \u05d2\u05d3\u05d5\u05dc. \u05d4\u05d5\u05d0 \u05e8\u05e5 \u05db\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \u05d1\u05d0\u05e8\u05d1\u05e2 \u05dc\u05e4\u05e0\u05d5\u05ea \u05d1\u05d5\u05e7\u05e8. \u05dc\u05de\u05e8\u05d5\u05ea \u05e9\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05d0\u05d5\u05ea\u05d5 \u05d1\u05d0\u05d6\u05d5\u05e8 \u05d4\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05d4\u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea, \u05d6\u05d4 \u05dc\u05d0 \u05de\u05de\u05d5\u05dc\u05e5 \u05dc\u05d4\u05e8\u05d9\u05e5 \u05d0\u05d5\u05ea\u05d5 \u05d1\u05e9\u05e2\u05d5\u05ea \u05d4\u05e9\u05d9\u05de\u05d5\u05e9 \u05d4\u05de\u05d7\u05e9\u05d1.","LabelMetadataDownloadLanguage":"\u05e9\u05e4\u05d4 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:","ButtonAutoScroll":"\u05d2\u05dc\u05d9\u05dc\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea","LabelImageSavingConvention":"\u05e9\u05d9\u05d8\u05ea \u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d4:","LabelImageSavingConventionHelp":"Media Browser \u05de\u05d6\u05d4\u05d4 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05de\u05e8\u05d5\u05d1 \u05ea\u05d5\u05db\u05e0\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05d4\u05d2\u05d3\u05d5\u05dc\u05d5\u05ea. \u05d1\u05d7\u05d9\u05e8\u05ea \u05e9\u05d9\u05d8\u05ea \u05d4\u05d4\u05d5\u05e8\u05d3\u05d4 \u05d9\u05e2\u05d9\u05dc\u05d4 \u05db\u05e9\u05d0\u05e8 \u05d0\u05ea\u05d4 \u05de\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d5\u05e6\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd.","OptionImageSavingCompatible":"\u05ea\u05d0\u05d9\u05de\u05d5\u05ea - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"\u05e1\u05d8\u05e0\u05d3\u05e8\u05d8\u05d9 - MB3\/MB2","ButtonSignIn":"\u05d4\u05d9\u05db\u05e0\u05e1","TitleSignIn":"\u05d4\u05d9\u05db\u05e0\u05e1","HeaderPleaseSignIn":"\u05d0\u05e0\u05d0 \u05d4\u05d9\u05db\u05e0\u05e1","LabelUser":"\u05de\u05e9\u05ea\u05de\u05e9:","LabelPassword":"\u05e1\u05d9\u05e1\u05de\u05d0:","ButtonManualLogin":"\u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea \u05d9\u05d3\u05e0\u05d9\u05ea:","PasswordLocalhostMessage":"\u05d0\u05d9\u05df \u05e6\u05d5\u05e8\u05da \u05d1\u05e1\u05d9\u05e1\u05de\u05d0 \u05db\u05d0\u05e9\u05e8 \u05de\u05ea\u05d7\u05d1\u05e8\u05d9\u05dd \u05de\u05d4\u05e9\u05e8\u05ea \u05d4\u05de\u05e7\u05d5\u05de\u05d9.","TabGuide":"\u05de\u05d3\u05e8\u05d9\u05da","TabChannels":"\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd","HeaderChannels":"\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd","TabRecordings":"\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea","TabScheduled":"\u05dc\u05d5\u05d7 \u05d6\u05de\u05e0\u05d9\u05dd","TabSeries":"\u05e1\u05d3\u05e8\u05d5\u05ea","ButtonCancelRecording":"\u05d1\u05d8\u05dc \u05d4\u05e7\u05dc\u05d8\u05d4","HeaderPrePostPadding":"\u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd\/\u05de\u05d0\u05d5\u05d7\u05e8","LabelPrePaddingMinutes":"\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd:","OptionPrePaddingRequired":"\u05db\u05d3\u05d9 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d8 \u05d9\u05e9 \u05e6\u05d5\u05e8\u05da \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd.","LabelPostPaddingMinutes":"\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05d0\u05d5\u05d7\u05e8:","OptionPostPaddingRequired":"\u05db\u05d3\u05d9 \u05dc\u05d4\u05e7\u05dc\u05d9\u05d8 \u05d9\u05e9 \u05e6\u05d5\u05e8\u05da \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05d0\u05d5\u05d7\u05e8.","HeaderWhatsOnTV":"\u05de\u05d4 \u05de\u05e9\u05d5\u05d3\u05e8","HeaderUpcomingTV":"\u05e9\u05d9\u05d3\u05d5\u05e8\u05d9\u05dd \u05e7\u05e8\u05d5\u05d1\u05d9\u05dd","TabStatus":"\u05de\u05e6\u05d1","TabSettings":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea","ButtonRefreshGuideData":"\u05e8\u05e2\u05e0\u05df \u05d0\u05ea \u05de\u05d3\u05e8\u05d9\u05da \u05d4\u05e9\u05d9\u05d3\u05d5\u05e8","OptionPriority":"\u05e2\u05d3\u05d9\u05e4\u05d5\u05ea","OptionRecordOnAllChannels":"\u05d4\u05e7\u05dc\u05d8 \u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05d1\u05db\u05dc \u05d4\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd","OptionRecordAnytime":"\u05d4\u05e7\u05dc\u05d8 \u05ea\u05d5\u05db\u05e0\u05d9\u05ea \u05d1\u05db\u05dc \u05d6\u05de\u05df","OptionRecordOnlyNewEpisodes":"\u05d4\u05e7\u05dc\u05d8 \u05e8\u05e7 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd","HeaderDays":"\u05d9\u05de\u05d9\u05dd","HeaderActiveRecordings":"\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea","HeaderLatestRecordings":"\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea","HeaderAllRecordings":"\u05db\u05dc \u05d4\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea","ButtonPlay":"\u05e0\u05d2\u05df","ButtonEdit":"\u05e2\u05e8\u05d5\u05da","ButtonRecord":"\u05d4\u05e7\u05dc\u05d8","ButtonDelete":"\u05de\u05d7\u05e7","ButtonRemove":"Remove","OptionRecordSeries":"\u05d4\u05dc\u05e7\u05d8 \u05e1\u05d3\u05e8\u05d5\u05ea","HeaderDetails":"\u05e4\u05e8\u05d8\u05d9\u05dd","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/it.json b/MediaBrowser.Server.Implementations/Localization/Server/it.json index 7814a6534a..ff51f53655 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/it.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/it.json @@ -1 +1 @@ -{"LabelExit":"Esci","LabelVisitCommunity":"Visita Comunit\u00e0","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"Documentazione Api","LabelBrowseLibrary":"Apri Media Browser","LabelConfigureMediaBrowser":"Configura Media Browser","LabelOpenLibraryViewer":"Esplora la Libreria","LabelRestartServer":"Riavvia Server","LabelShowLogWindow":"Mostra Finestra log","LabelPrevious":"Precedente","LabelFinish":"Finito","LabelNext":"Prossimo","LabelYoureDone":"Tu hai Finito!","WelcomeToMediaBrowser":"Benvenuto in Media browser!","TitleMediaBrowser":"Media browser","ThisWizardWillGuideYou":"Procedura Guidata per l'installazione.","TellUsAboutYourself":"Parlaci di te","LabelYourFirstName":"Nome","MoreUsersCanBeAddedLater":"Puoi aggiungere altri utenti in un secondo momento all'interno del pannello di configurazione","UserProfilesIntro":"Media Browser include il supporto integrato per i profili utente, permettendo ad ogni utente di avere le proprie impostazioni di visualizzazione.","LabelWindowsService":"Servizio Windows","AWindowsServiceHasBeenInstalled":"Servizio Windows Installato","WindowsServiceIntro1":"Media Browser Server, normalmente viene eseguito come un'applicazione desktop con una icona nella barra, ma se si preferisce farlo funzionare come un servizio in background, pu\u00f2 essere avviato dal pannello di controllo dei servizi di Windows, invece.","WindowsServiceIntro2":"Se si utilizza il servizio di Windows, si ricorda che non pu\u00f2 essere eseguito allo stesso tempo come l'icona di sistema, quindi devi chiudere l'applicazione al fine di eseguire il servizio. Il servizio dovr\u00e0 anche essere configurato con privilegi amministrativi tramite il pannello di controllo. Si prega di notare che in questo momento il servizio non \u00e8 in grado di Autoaggiornarsi, quindi le nuove versioni richiedono l'interazione manuale","WizardCompleted":"Questo \u00e8 tutto abbiamo bisogno per ora. Browser Media ha iniziato a raccogliere informazioni sulla vostra libreria multimediale. Scopri alcune delle nostre applicazioni, quindi fare clic su Finito<\/b> per aprireil pannello di controllo<\/b>.","LabelConfigureSettings":"Configura","LabelEnableVideoImageExtraction":"Estrazione immagine video non possibile","VideoImageExtractionHelp":"Per i video che sono sprovvisti di immagini,e che non siamo riusciti a trovarle su Internet.Questo aggiunger\u00e0 del tempo addizionale alla scansione della tua libreria ma si tradurr\u00e0 in una presentazione pi\u00f9 piacevole.","LabelEnableChapterImageExtractionForMovies":"Estrazione immagine capitolo estratto per Film","LabelChapterImageExtractionForMoviesHelp":"L'Estrazione di immagini capitoli permetter\u00e0 ai clienti di visualizzare i menu di selezione delle scene . Il processo pu\u00f2 essere lento e pu\u00f2 richiedere diversi gigabyte di spazio. Viene schedulato alle 04:00, anche se questo \u00e8 configurabile nella zona di operazioni pianificate. Non \u00e8 consigliabile eseguire questa operazione durante le ore di picco.","LabelEnableAutomaticPortMapping":"Abilita mappatura delle porte automatiche","LabelEnableAutomaticPortMappingHelp":"UPnP consente la configurazione automatica del router per l'accesso remoto facile. Questo potrebbe non funzionare con alcuni modelli di router.","ButtonOk":"OK","ButtonCancel":"Annulla","HeaderSetupLibrary":"Configura la tua libreria","ButtonAddMediaFolder":"Aggiungi cartella","LabelFolderType":"Tipo cartella","MediaFolderHelpPluginRequired":"* Richiede l'uso di un plugin, ad esempio GameBrowser o MB Bookshelf.","ReferToMediaLibraryWiki":"Fare riferimento alla wiki libreria multimediale.","LabelCountry":"Nazione:","LabelLanguage":"lingua:","HeaderPreferredMetadataLanguage":"Lingua dei metadati preferita:","LabelSaveLocalMetadata":"Salva immagini e metadati nelle cartelle multimediali","LabelSaveLocalMetadataHelp":"Il salvataggio di immagini e dei metadati direttamente nelle cartelle multimediali verranno messe in un posto dove possono essere facilmente modificate.","LabelDownloadInternetMetadata":"Scarica immagini e dei metadati da internet","LabelDownloadInternetMetadataHelp":"Media Browser pu\u00f2 scaricare informazioni sui vostri media per consentire presentazioni migliori.","TabPreferences":"Preferenze","TabPassword":"Password","TabLibraryAccess":"Accesso libreria","TabImage":"Immagine","TabProfile":"Profilo","LabelDisplayMissingEpisodesWithinSeasons":"Visualizza gli episodi mancanti nelle stagioni","LabelUnairedMissingEpisodesWithinSeasons":"Visualizzare episodi mai andati in onda all'interno stagioni","HeaderVideoPlaybackSettings":"Impostazioni di riproduzione video","LabelAudioLanguagePreference":"Audio preferenze di lingua:","LabelSubtitleLanguagePreference":"Sottotitoli preferenze di lingua:","LabelDisplayForcedSubtitlesOnly":"Visualizzare solo i sottotitoli forzati","TabProfiles":"Profili","TabSecurity":"Sicurezza","ButtonAddUser":"Aggiungi Utente","ButtonSave":"Salva","ButtonResetPassword":"Reset Password","LabelNewPassword":"Nuova Password:","LabelNewPasswordConfirm":"Nuova Password Conferma:","HeaderCreatePassword":"Crea Password","LabelCurrentPassword":"Password Corrente:","LabelMaxParentalRating":"Massima valutazione dei genitori consentita:","MaxParentalRatingHelp":"Contento di un punteggio pi\u00f9 elevato sar\u00e0 nascosto da questo utente.","LibraryAccessHelp":"Selezionare le cartelle multimediali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutte le cartelle utilizzando il gestore dei metadati.","ButtonDeleteImage":"Elimina immagine","ButtonUpload":"Carica","HeaderUploadNewImage":"Carica nuova immagine","LabelDropImageHere":"Trascina immagine qui","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Niente qui.","MessagePleaseEnsureInternetMetadata":"Assicurarsi che download di metadati internet \u00e8 abilitata.","TabSuggested":"Suggeriti","TabLatest":"Novit\u00e0","TabUpcoming":"IN ONDA A BREVE","TabShows":"Serie","TabEpisodes":"Episodi","TabGenres":"Generi","TabPeople":"Attori","TabNetworks":"Internet","HeaderUsers":"Utenti","HeaderFilters":"Filtri","ButtonFilter":"Filtro","OptionFavorite":"Preferiti","OptionLikes":"Belli","OptionDislikes":"Brutti","OptionActors":"Attori","OptionGuestStars":"Guest Stars","OptionDirectors":"Registra","OptionWriters":"Scrittore","OptionProducers":"Produttore","HeaderResume":"Riprendi","HeaderNextUp":"Da vedere","NoNextUpItemsMessage":"Trovato nessuno.Inizia a guardare i tuoi programmi!","HeaderLatestEpisodes":"Ultimi Episodi Aggiunti","HeaderPersonTypes":"Tipo Persone:","TabSongs":"Canzoni","TabAlbums":"Albums","TabArtists":"Artisti","TabAlbumArtists":"Album Artisti","TabMusicVideos":"Video Musicali","ButtonSort":"Ordina","HeaderSortBy":"Ordina per:","HeaderSortOrder":"Ordinato per:","OptionPlayed":"Visto","OptionUnplayed":"Non visto","OptionAscending":"Ascendente","OptionDescending":"Discentente","OptionRuntime":"Durata","OptionReleaseDate":"Uscito il","OptionPlayCount":"Visto N\u00b0","OptionDatePlayed":"Visto il","OptionDateAdded":"Aggiunto il","OptionAlbumArtist":"Album Artista","OptionArtist":"Artista","OptionAlbum":"Album","OptionTrackName":"Nome Brano","OptionCommunityRating":"Voto del pubblico","OptionNameSort":"Nome","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Recensione","OptionPoster":"Locandina","OptionBackdrop":"Backdrop","OptionTimeline":"Anno","OptionThumb":"Sfondo","OptionBanner":"Banner","OptionCriticRating":"Voto critica","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Interrotti","ScheduledTasksHelp":"Fare clic su una voce per cambiare la pianificazione.","ScheduledTasksTitle":"Operazioni Pianificate","TabMyPlugins":"Plugins Installati","TabCatalog":"Catalogo","TabUpdates":"Aggiornamenti","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Aggiornamenti Automatici","HeaderUpdateLevel":"Livello","HeaderNowPlaying":"Riproducendo","HeaderLatestAlbums":"Ultimi Albums Aggiunti","HeaderLatestSongs":"Ultime Canzoni","HeaderRecentlyPlayed":"Visti di recente","HeaderFrequentlyPlayed":"Visti di frequente","DevBuildWarning":"La versione Dev Builds non \u00e8 testata e potrebbe bloccarsi o non rispondere correttamente","LabelVideoType":"Tipo video:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Caratteristiche:","OptionHasSubtitles":"Sottotitoli","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Tema Canzone","OptionHasThemeVideo":"Tema video","TabMovies":"Film","TabStudios":"Studios","TabTrailers":"Trailer","HeaderLatestMovies":"Ultimi Film Aggiunti","HeaderLatestTrailers":"Ultimi Trailers Aggiunti","OptionHasSpecialFeatures":"Caratteristiche speciali","OptionImdbRating":"Voto IMDB","OptionParentalRating":"Voto Genitori","OptionPremiereDate":"Premiere Date","TabBasic":"Base","TabAdvanced":"Avanzato","HeaderStatus":"Stato","OptionContinuing":"In corso","OptionEnded":"Finito","HeaderAirDays":"In onda da:","OptionSunday":"Domenica","OptionMonday":"Lunedi","OptionTuesday":"Martedi","OptionWednesday":"Mercoledi","OptionThursday":"Giovedi","OptionFriday":"Venerdi","OptionSaturday":"Sabato","HeaderManagement":"Gestione:","OptionMissingImdbId":"IMDB id mancante","OptionMissingTvdbId":"TheTVDB Id mancante","OptionMissingOverview":"Trama mancante","OptionFileMetadataYearMismatch":"File\/Metadata anni errati","TabGeneral":"Generale","TitleSupport":"Supporto","TabLog":"Eventi","TabAbout":"Info","TabSupporterKey":"Chiave finanziatore","TabBecomeSupporter":"Diventa finanziatore","MediaBrowserHasCommunity":"Media Browser sta cercando persone che contribuiscono","CheckoutKnowledgeBase":"Hai un problema?","SearchKnowledgeBase":"Cerca sulla guida online","VisitTheCommunity":"Visita la nostra comunit\u00e0","VisitMediaBrowserWebsite":"Visita il sito di Media Browser","VisitMediaBrowserWebsiteLong":"Vuoi saperne di pi\u00f9 sulle ultime novit\u00e0?","OptionHideUser":"Nascondi questo utente dalla schermata di Accesso","OptionDisableUser":"Disabilita utente","OptionDisableUserHelp":"Se disabilitato, il server non sar\u00e0 disponibile per questo utente.La connessione corrente verr\u00e0 TERMINATA","HeaderAdvancedControl":"Controlli avanzati","LabelName":"Nome:","OptionAllowUserToManageServer":"Consenti a questo utente di accedere alla configurazione del SERVER","HeaderFeatureAccess":"Caratteristiche di accesso","OptionAllowMediaPlayback":"Consenti la riproduzione","OptionAllowBrowsingLiveTv":"Consenti la navigazione sulla Tv indiretta","OptionAllowDeleteLibraryContent":"Consenti a questo utente di eliminare il contenuti della libreria","OptionAllowManageLiveTv":"Consenti la modifica delle operazioni pianificate della TV","OptionAllowRemoteControlOthers":"Consenti a questo utente di controllare in remoto altri utenti","OptionMissingTmdbId":"Tmdb Id mancante","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Punteggio","ButtonSelect":"Seleziona","ButtonGroupVersions":"Versione Gruppo","PismoMessage":"Dona per avere una licenza di Pismo","PleaseSupportOtherProduces":"Per favore supporta gli altri prodotti 'GRATIS' che MB utilizza","VersionNumber":"Versione {0}","TabPaths":"Percorso","TabServer":"Server","TabTranscoding":"Trascodifica","TitleAdvanced":"Avanzato","LabelAutomaticUpdateLevel":"Livello Aggiornamenti Automatici","OptionRelease":"Versione Ufficiale","OptionBeta":"Beta","OptionDev":"Dev (instabile)","LabelAllowServerAutoRestart":"Consenti al server di Riavviarsi automaticamente per applicare gli aggiornamenti","LabelAllowServerAutoRestartHelp":"Il server si Riavvier\u00e0 solamente quando quando nessun utente \u00e8 collegato","LabelEnableDebugLogging":"Abilit\u00e0 eventi di DEBUG","LabelRunServerAtStartup":"Esegui il server all'avvio di windows","LabelRunServerAtStartupHelp":"Verr\u00e0 avviata l'icona della barra all'avvio di Windows. Per avviare il servizio di Windows, deselezionare questa ed eseguire il servizio dal pannello di controllo di Windows. Si prega di notare che non \u00e8 possibile eseguire entrambi allo stesso tempo, quindi sar\u00e0 necessario uscire l'icona del vassoio prima di avviare il servizio.","ButtonSelectDirectory":"Seleziona cartella","LabelCustomPaths":"Specifica un percorso personalizzato.Lasciare vuoto per usare quello predefinito","LabelCachePath":"Percorso Cache:","LabelCachePathHelp":"Questa cartella contiene la cache come files e immagini.","LabelImagesByNamePath":"Percorso immagini per nome:","LabelImagesByNamePathHelp":"Questa cartella contiene le immagini degli attori,generi, e studio","LabelMetadataPath":"Percorso dei file METADATI:","LabelMetadataPathHelp":"Questa cartella contiene i files relativi ai metadati e immagini che non sono stati salvati nella cartella dei Media.","LabelTranscodingTempPath":"Cartella temporanea per la trascodifica:","LabelTranscodingTempPathHelp":"Questa cartella contiene i file usati dalla trascodifica.","TabBasics":"Base","TabTV":"SerieTv","TabGames":"Giochi","TabMusic":"Musica","TabOthers":"Altri","HeaderExtractChapterImagesFor":"Estrai le immagini dei capitoli per:","OptionMovies":"Film","OptionEpisodes":"Episodi","OptionOtherVideos":"Altri Video","TitleMetadata":"Metadati","LabelAutomaticUpdatesFanart":"Abilita gli aggiornamenti automatici per FanArt.Tv","LabelAutomaticUpdatesTmdb":"Abilita gli aggiornamenti automatici per TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Abilita gli aggiornamenti automatici per TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Se abilitato le nuove immagini verranno scaricate automaticamente da fanart.tv.Le immagini esistenti non verranno sovrascritte.","LabelAutomaticUpdatesTmdbHelp":"Se abilitato le nuove immagini verranno scaricate automaticamente da ThemovieDb.org.Le immagini esistenti non verranno sovrascritte.","LabelAutomaticUpdatesTvdbHelp":"Se abilitato le nuove immagini verranno scaricate automaticamente da TheTvDB.com.Le immagini esistenti non verranno sovrascritte.","ExtractChapterImagesHelp":"Estrazione di immagini capitoli permetter\u00e0 ai clienti di visualizzare i menu di selezione delle scene grafiche. Il processo pu\u00f2 essere lento, e pu\u00f2 richiedere diversi gigabyte di spazio. Funziona come una operazione pianificata alle 04:00, anche se questo \u00e8 configurabile nella zona di operazioni pianificate. Non \u00e8 consigliabile eseguire questa operazione durante le ore diurne.","LabelMetadataDownloadLanguage":"Lingua preferita:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Convenzione per il salvataggio di immagini:","LabelImageSavingConventionHelp":"Media Browser riconosce le immagini dalla maggior parte delle principali applicazioni multimediali. Scegliere la convenzione piu adatta a te.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Accedi","TitleSignIn":"Accedi","HeaderPleaseSignIn":"Per favore accedi","LabelUser":"Utente:","LabelPassword":"Password:","ButtonManualLogin":"Accesso Manuale:","PasswordLocalhostMessage":"Le password non sono richieste quando l'accesso e fatto da questo pc.","TabGuide":"Guida","TabChannels":"Canali","HeaderChannels":"Canali","TabRecordings":"Registrazioni","TabScheduled":"Pianificato","TabSeries":"Serie TV","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Registrazione","LabelPrePaddingMinutes":"Pre registrazione minuti","OptionPrePaddingRequired":"Attiva pre registrazione","LabelPostPaddingMinutes":"Minuti post registrazione","OptionPostPaddingRequired":"Attiva post registrazione","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"In onda a breve","TabStatus":"Stato","TabSettings":"Impostazioni","ButtonRefreshGuideData":"Aggiorna la guida","OptionPriority":"Priorit\u00e0","OptionRecordOnAllChannels":"Registra su tutti i canali","OptionRecordAnytime":"Registra a qualsiasi ora","OptionRecordOnlyNewEpisodes":"Registra solo i nuovi episodi","HeaderDays":"Giorni","HeaderActiveRecordings":"Registrazioni Attive","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"Tutte le registrazioni","ButtonPlay":"Riproducii","ButtonEdit":"Modifica","ButtonRecord":"Registra","ButtonDelete":"Elimina","OptionRecordSeries":"Registra Serie","HeaderDetails":"Dettagli","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Esci","LabelVisitCommunity":"Visita Comunit\u00e0","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"Documentazione Api","LabelBrowseLibrary":"Apri Media Browser","LabelConfigureMediaBrowser":"Configura Media Browser","LabelOpenLibraryViewer":"Esplora la Libreria","LabelRestartServer":"Riavvia Server","LabelShowLogWindow":"Mostra Finestra log","LabelPrevious":"Precedente","LabelFinish":"Finito","LabelNext":"Prossimo","LabelYoureDone":"Tu hai Finito!","WelcomeToMediaBrowser":"Benvenuto in Media browser!","TitleMediaBrowser":"Media browser","ThisWizardWillGuideYou":"Procedura Guidata per l'installazione.","TellUsAboutYourself":"Parlaci di te","LabelYourFirstName":"Nome","MoreUsersCanBeAddedLater":"Puoi aggiungere altri utenti in un secondo momento all'interno del pannello di configurazione","UserProfilesIntro":"Media Browser include il supporto integrato per i profili utente, permettendo ad ogni utente di avere le proprie impostazioni di visualizzazione.","LabelWindowsService":"Servizio Windows","AWindowsServiceHasBeenInstalled":"Servizio Windows Installato","WindowsServiceIntro1":"Media Browser Server, normalmente viene eseguito come un'applicazione desktop con una icona nella barra, ma se si preferisce farlo funzionare come un servizio in background, pu\u00f2 essere avviato dal pannello di controllo dei servizi di Windows, invece.","WindowsServiceIntro2":"Se si utilizza il servizio di Windows, si ricorda che non pu\u00f2 essere eseguito allo stesso tempo come l'icona di sistema, quindi devi chiudere l'applicazione al fine di eseguire il servizio. Il servizio dovr\u00e0 anche essere configurato con privilegi amministrativi tramite il pannello di controllo. Si prega di notare che in questo momento il servizio non \u00e8 in grado di Autoaggiornarsi, quindi le nuove versioni richiedono l'interazione manuale","WizardCompleted":"Questo \u00e8 tutto abbiamo bisogno per ora. Browser Media ha iniziato a raccogliere informazioni sulla vostra libreria multimediale. Scopri alcune delle nostre applicazioni, quindi fare clic su Finito<\/b> per aprireil pannello di controllo<\/b>.","LabelConfigureSettings":"Configura","LabelEnableVideoImageExtraction":"Estrazione immagine video non possibile","VideoImageExtractionHelp":"Per i video che sono sprovvisti di immagini,e che non siamo riusciti a trovarle su Internet.Questo aggiunger\u00e0 del tempo addizionale alla scansione della tua libreria ma si tradurr\u00e0 in una presentazione pi\u00f9 piacevole.","LabelEnableChapterImageExtractionForMovies":"Estrazione immagine capitolo estratto per Film","LabelChapterImageExtractionForMoviesHelp":"L'Estrazione di immagini capitoli permetter\u00e0 ai clienti di visualizzare i menu di selezione delle scene . Il processo pu\u00f2 essere lento e pu\u00f2 richiedere diversi gigabyte di spazio. Viene schedulato alle 04:00, anche se questo \u00e8 configurabile nella zona di operazioni pianificate. Non \u00e8 consigliabile eseguire questa operazione durante le ore di picco.","LabelEnableAutomaticPortMapping":"Abilita mappatura delle porte automatiche","LabelEnableAutomaticPortMappingHelp":"UPnP consente la configurazione automatica del router per l'accesso remoto facile. Questo potrebbe non funzionare con alcuni modelli di router.","ButtonOk":"OK","ButtonCancel":"Annulla","ButtonNew":"Nuovo","HeaderSetupLibrary":"Configura la tua libreria","ButtonAddMediaFolder":"Aggiungi cartella","LabelFolderType":"Tipo cartella","MediaFolderHelpPluginRequired":"* Richiede l'uso di un plugin, ad esempio GameBrowser o MB Bookshelf.","ReferToMediaLibraryWiki":"Fare riferimento alla wiki libreria multimediale.","LabelCountry":"Nazione:","LabelLanguage":"lingua:","HeaderPreferredMetadataLanguage":"Lingua dei metadati preferita:","LabelSaveLocalMetadata":"Salva immagini e metadati nelle cartelle multimediali","LabelSaveLocalMetadataHelp":"Il salvataggio di immagini e dei metadati direttamente nelle cartelle multimediali verranno messe in un posto dove possono essere facilmente modificate.","LabelDownloadInternetMetadata":"Scarica immagini e dei metadati da internet","LabelDownloadInternetMetadataHelp":"Media Browser pu\u00f2 scaricare informazioni sui vostri media per consentire presentazioni migliori.","TabPreferences":"Preferenze","TabPassword":"Password","TabLibraryAccess":"Accesso libreria","TabImage":"Immagine","TabProfile":"Profilo","TabMetadata":"Metadata","TabImages":"Immagini","TabCollectionTitles":"Titolo","LabelDisplayMissingEpisodesWithinSeasons":"Visualizza gli episodi mancanti nelle stagioni","LabelUnairedMissingEpisodesWithinSeasons":"Visualizzare episodi mai andati in onda all'interno stagioni","HeaderVideoPlaybackSettings":"Impostazioni di riproduzione video","LabelAudioLanguagePreference":"Audio preferenze di lingua:","LabelSubtitleLanguagePreference":"Sottotitoli preferenze di lingua:","LabelDisplayForcedSubtitlesOnly":"Visualizzare solo i sottotitoli forzati","TabProfiles":"Profili","TabSecurity":"Sicurezza","ButtonAddUser":"Aggiungi Utente","ButtonSave":"Salva","ButtonResetPassword":"Reset Password","LabelNewPassword":"Nuova Password:","LabelNewPasswordConfirm":"Nuova Password Conferma:","HeaderCreatePassword":"Crea Password","LabelCurrentPassword":"Password Corrente:","LabelMaxParentalRating":"Massima valutazione dei genitori consentita:","MaxParentalRatingHelp":"Contento di un punteggio pi\u00f9 elevato sar\u00e0 nascosto da questo utente.","LibraryAccessHelp":"Selezionare le cartelle multimediali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutte le cartelle utilizzando il gestore dei metadati.","ButtonDeleteImage":"Elimina immagine","ButtonUpload":"Carica","HeaderUploadNewImage":"Carica nuova immagine","LabelDropImageHere":"Trascina immagine qui","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Niente qui.","MessagePleaseEnsureInternetMetadata":"Assicurarsi che download di metadati internet \u00e8 abilitata.","TabSuggested":"Suggeriti","TabLatest":"Novit\u00e0","TabUpcoming":"IN ONDA A BREVE","TabShows":"Serie","TabEpisodes":"Episodi","TabGenres":"Generi","TabPeople":"Attori","TabNetworks":"Internet","HeaderUsers":"Utenti","HeaderFilters":"Filtri","ButtonFilter":"Filtro","OptionFavorite":"Preferiti","OptionLikes":"Belli","OptionDislikes":"Brutti","OptionActors":"Attori","OptionGuestStars":"Guest Stars","OptionDirectors":"Registra","OptionWriters":"Scrittore","OptionProducers":"Produttore","HeaderResume":"Riprendi","HeaderNextUp":"Da vedere","NoNextUpItemsMessage":"Trovato nessuno.Inizia a guardare i tuoi programmi!","HeaderLatestEpisodes":"Ultimi Episodi Aggiunti","HeaderPersonTypes":"Tipo Persone:","TabSongs":"Canzoni","TabAlbums":"Albums","TabArtists":"Artisti","TabAlbumArtists":"Album Artisti","TabMusicVideos":"Video Musicali","ButtonSort":"Ordina","HeaderSortBy":"Ordina per:","HeaderSortOrder":"Ordinato per:","OptionPlayed":"Visto","OptionUnplayed":"Non visto","OptionAscending":"Ascendente","OptionDescending":"Discentente","OptionRuntime":"Durata","OptionReleaseDate":"Uscito il","OptionPlayCount":"Visto N\u00b0","OptionDatePlayed":"Visto il","OptionDateAdded":"Aggiunto il","OptionAlbumArtist":"Album Artista","OptionArtist":"Artista","OptionAlbum":"Album","OptionTrackName":"Nome Brano","OptionCommunityRating":"Voto del pubblico","OptionNameSort":"Nome","OptionFolderSort":"Cartelle","OptionBudget":"Budget","OptionRevenue":"Recensione","OptionPoster":"Locandina","OptionBackdrop":"Sfondo","OptionTimeline":"Anno","OptionThumb":"Sfondo","OptionBanner":"Banner","OptionCriticRating":"Voto critica","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Interrotti","ScheduledTasksHelp":"Fare clic su una voce per cambiare la pianificazione.","ScheduledTasksTitle":"Operazioni Pianificate","TabMyPlugins":"Plugins Installati","TabCatalog":"Catalogo","TabUpdates":"Aggiornamenti","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Aggiornamenti Automatici","HeaderUpdateLevel":"Livello","HeaderNowPlaying":"Riproducendo","HeaderLatestAlbums":"Ultimi Albums Aggiunti","HeaderLatestSongs":"Ultime Canzoni","HeaderRecentlyPlayed":"Visti di recente","HeaderFrequentlyPlayed":"Visti di frequente","DevBuildWarning":"La versione Dev Builds non \u00e8 testata e potrebbe bloccarsi o non rispondere correttamente","LabelVideoType":"Tipo video:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Caratteristiche:","OptionHasSubtitles":"Sottotitoli","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Tema Canzone","OptionHasThemeVideo":"Tema video","TabMovies":"Film","TabStudios":"Studios","TabTrailers":"Trailer","HeaderLatestMovies":"Ultimi Film Aggiunti","HeaderLatestTrailers":"Ultimi Trailers Aggiunti","OptionHasSpecialFeatures":"Caratteristiche speciali","OptionImdbRating":"Voto IMDB","OptionParentalRating":"Voto Genitori","OptionPremiereDate":"Premiere Date","TabBasic":"Base","TabAdvanced":"Avanzato","HeaderStatus":"Stato","OptionContinuing":"In corso","OptionEnded":"Finito","HeaderAirDays":"In onda da:","OptionSunday":"Domenica","OptionMonday":"Lunedi","OptionTuesday":"Martedi","OptionWednesday":"Mercoledi","OptionThursday":"Giovedi","OptionFriday":"Venerdi","OptionSaturday":"Sabato","HeaderManagement":"Gestione:","OptionMissingImdbId":"IMDB id mancante","OptionMissingTvdbId":"TheTVDB Id mancante","OptionMissingOverview":"Trama mancante","OptionFileMetadataYearMismatch":"File\/Metadata anni errati","TabGeneral":"Generale","TitleSupport":"Supporto","TabLog":"Eventi","TabAbout":"Info","TabSupporterKey":"Chiave finanziatore","TabBecomeSupporter":"Diventa finanziatore","MediaBrowserHasCommunity":"Media Browser sta cercando persone che contribuiscono","CheckoutKnowledgeBase":"Hai un problema?","SearchKnowledgeBase":"Cerca sulla guida online","VisitTheCommunity":"Visita la nostra comunit\u00e0","VisitMediaBrowserWebsite":"Visita il sito di Media Browser","VisitMediaBrowserWebsiteLong":"Vuoi saperne di pi\u00f9 sulle ultime novit\u00e0?","OptionHideUser":"Nascondi questo utente dalla schermata di Accesso","OptionDisableUser":"Disabilita utente","OptionDisableUserHelp":"Se disabilitato, il server non sar\u00e0 disponibile per questo utente.La connessione corrente verr\u00e0 TERMINATA","HeaderAdvancedControl":"Controlli avanzati","LabelName":"Nome:","OptionAllowUserToManageServer":"Consenti a questo utente di accedere alla configurazione del SERVER","HeaderFeatureAccess":"Caratteristiche di accesso","OptionAllowMediaPlayback":"Consenti la riproduzione","OptionAllowBrowsingLiveTv":"Consenti la navigazione sulla Tv indiretta","OptionAllowDeleteLibraryContent":"Consenti a questo utente di eliminare il contenuti della libreria","OptionAllowManageLiveTv":"Consenti la modifica delle operazioni pianificate della TV","OptionAllowRemoteControlOthers":"Consenti a questo utente di controllare in remoto altri utenti","OptionMissingTmdbId":"Tmdb Id mancante","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Punteggio","ButtonSelect":"Seleziona","ButtonSearch":"Cerca","ButtonGroupVersions":"Versione Gruppo","PismoMessage":"Dona per avere una licenza di Pismo","PleaseSupportOtherProduces":"Per favore supporta gli altri prodotti 'GRATIS' che MB utilizza","VersionNumber":"Versione {0}","TabPaths":"Percorso","TabServer":"Server","TabTranscoding":"Trascodifica","TitleAdvanced":"Avanzato","LabelAutomaticUpdateLevel":"Livello Aggiornamenti Automatici","OptionRelease":"Versione Ufficiale","OptionBeta":"Beta","OptionDev":"Dev (instabile)","LabelAllowServerAutoRestart":"Consenti al server di Riavviarsi automaticamente per applicare gli aggiornamenti","LabelAllowServerAutoRestartHelp":"Il server si Riavvier\u00e0 solamente quando quando nessun utente \u00e8 collegato","LabelEnableDebugLogging":"Abilit\u00e0 eventi di DEBUG","LabelRunServerAtStartup":"Esegui il server all'avvio di windows","LabelRunServerAtStartupHelp":"Verr\u00e0 avviata l'icona della barra all'avvio di Windows. Per avviare il servizio di Windows, deselezionare questa ed eseguire il servizio dal pannello di controllo di Windows. Si prega di notare che non \u00e8 possibile eseguire entrambi allo stesso tempo, quindi sar\u00e0 necessario uscire l'icona del vassoio prima di avviare il servizio.","ButtonSelectDirectory":"Seleziona cartella","LabelCustomPaths":"Specifica un percorso personalizzato.Lasciare vuoto per usare quello predefinito","LabelCachePath":"Percorso Cache:","LabelCachePathHelp":"Questa cartella contiene la cache come files e immagini.","LabelImagesByNamePath":"Percorso immagini per nome:","LabelImagesByNamePathHelp":"Questa cartella contiene le immagini degli attori,generi, e studio","LabelMetadataPath":"Percorso dei file METADATI:","LabelMetadataPathHelp":"Questa cartella contiene i files relativi ai metadati e immagini che non sono stati salvati nella cartella dei Media.","LabelTranscodingTempPath":"Cartella temporanea per la trascodifica:","LabelTranscodingTempPathHelp":"Questa cartella contiene i file usati dalla trascodifica.","TabBasics":"Base","TabTV":"SerieTv","TabGames":"Giochi","TabMusic":"Musica","TabOthers":"Altri","HeaderExtractChapterImagesFor":"Estrai le immagini dei capitoli per:","OptionMovies":"Film","OptionEpisodes":"Episodi","OptionOtherVideos":"Altri Video","TitleMetadata":"Metadati","LabelAutomaticUpdatesFanart":"Abilita gli aggiornamenti automatici per FanArt.Tv","LabelAutomaticUpdatesTmdb":"Abilita gli aggiornamenti automatici per TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Abilita gli aggiornamenti automatici per TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Se abilitato le nuove immagini verranno scaricate automaticamente da fanart.tv.Le immagini esistenti non verranno sovrascritte.","LabelAutomaticUpdatesTmdbHelp":"Se abilitato le nuove immagini verranno scaricate automaticamente da ThemovieDb.org.Le immagini esistenti non verranno sovrascritte.","LabelAutomaticUpdatesTvdbHelp":"Se abilitato le nuove immagini verranno scaricate automaticamente da TheTvDB.com.Le immagini esistenti non verranno sovrascritte.","ExtractChapterImagesHelp":"Estrazione di immagini capitoli permetter\u00e0 ai clienti di visualizzare i menu di selezione delle scene grafiche. Il processo pu\u00f2 essere lento, e pu\u00f2 richiedere diversi gigabyte di spazio. Funziona come una operazione pianificata alle 04:00, anche se questo \u00e8 configurabile nella zona di operazioni pianificate. Non \u00e8 consigliabile eseguire questa operazione durante le ore diurne.","LabelMetadataDownloadLanguage":"Lingua preferita:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Convenzione per il salvataggio di immagini:","LabelImageSavingConventionHelp":"Media Browser riconosce le immagini dalla maggior parte delle principali applicazioni multimediali. Scegliere la convenzione piu adatta a te.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Accedi","TitleSignIn":"Accedi","HeaderPleaseSignIn":"Per favore accedi","LabelUser":"Utente:","LabelPassword":"Password:","ButtonManualLogin":"Accesso Manuale:","PasswordLocalhostMessage":"Le password non sono richieste quando l'accesso e fatto da questo pc.","TabGuide":"Guida","TabChannels":"Canali","HeaderChannels":"Canali","TabRecordings":"Registrazioni","TabScheduled":"Pianificato","TabSeries":"Serie TV","ButtonCancelRecording":"Annulla la registrazione","HeaderPrePostPadding":"Pre\/Post Registrazione","LabelPrePaddingMinutes":"Pre registrazione minuti","OptionPrePaddingRequired":"Attiva pre registrazione","LabelPostPaddingMinutes":"Minuti post registrazione","OptionPostPaddingRequired":"Attiva post registrazione","HeaderWhatsOnTV":"Cosa c'\u00e8","HeaderUpcomingTV":"In onda a breve","TabStatus":"Stato","TabSettings":"Impostazioni","ButtonRefreshGuideData":"Aggiorna la guida","OptionPriority":"Priorit\u00e0","OptionRecordOnAllChannels":"Registra su tutti i canali","OptionRecordAnytime":"Registra a qualsiasi ora","OptionRecordOnlyNewEpisodes":"Registra solo i nuovi episodi","HeaderDays":"Giorni","HeaderActiveRecordings":"Registrazioni Attive","HeaderLatestRecordings":"Ultime registrazioni","HeaderAllRecordings":"Tutte le registrazioni","ButtonPlay":"Riproduci","ButtonEdit":"Modifica","ButtonRecord":"Registra","ButtonDelete":"Elimina","ButtonRemove":"Rimuovi","OptionRecordSeries":"Registra Serie","HeaderDetails":"Dettagli","TitleLiveTV":"Tv indiretta","LabelNumberOfGuideDays":"Numeri giorni dati guida","LabelNumberOfGuideDaysHelp":"Scaricando pi\u00f9 giorni si avr\u00e0 la possibilit\u00e0 di schedulare in anticipo pi\u00f9 programmi.'Auto': MB sceglier\u00e0 automaticamente in base al numero di canali.","LabelActiveService":"Servizio attivo:","LabelActiveServiceHelp":"Possono essere installati pi\u00f9 plugins Tv ma solo uno alla volta pu\u00f2 essere attivato","OptionAutomatic":"Automatico","LiveTvPluginRequired":"\u00e8 richiesto il servizio LIVE TV per continuare.","LiveTvPluginRequiredHelp":"Installa un servizio disponibile, come Next Pvr or ServerWMC.","HeaderCustomizeOptionsPerMediaType":"Personalizza le opzioni per i media.","OptionDownloadThumbImage":"Foto","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disco","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Indietro","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Locandina","HeaderFetchImages":"Identifica Immagini:","HeaderImageSettings":"Impostazioni Immagini","LabelMaxBackdropsPerItem":"Massimo numero di sfondi per oggetto.","LabelMaxScreenshotsPerItem":"Massimo numero di foto per oggetto:","LabelMinBackdropDownloadWidth":"Massima larghezza sfondo:","LabelMinScreenshotDownloadWidth":"Minima larghezza foto:","ButtonAddScheduledTaskTrigger":"Aggiungi operazione:","HeaderAddScheduledTaskTrigger":"Aggiungi operazione:","ButtonAdd":"Aggiungi","LabelTriggerType":"Tipo Evento:","OptionDaily":"Giornal.","OptionWeekly":"Settimanale","OptionOnInterval":"Su intervalla","OptionOnAppStartup":"All'avvio","OptionAfterSystemEvent":"Dopo un vento di sistema","LabelDay":"Giorno:","LabelTime":"Ora:","LabelEvent":"Evento:","OptionWakeFromSleep":"Risveglio :","LabelEveryXMinutes":"Tutti:","HeaderTvTuners":"Schede Tv","HeaderGallery":"Galleria","HeaderLatestGames":"Ultimi giochi","HeaderRecentlyPlayedGames":"Ultimi giochi recenti","TabGameSystems":"Giochi di sistema","TitleMediaLibrary":"Libreria","TabFolders":"Cartelle","TabPathSubstitution":"Percorso da sostiuire","LabelSeasonZeroDisplayName":"Stagione 0 Nome:","LabelEnableRealtimeMonitor":"Abilita monitoraggio in tempo reale","LabelEnableRealtimeMonitorHelp":"Le modifiche saranno applicate immediatamente, sui file system supportati.","ButtonScanLibrary":"Scansione libreria","HeaderNumberOfPlayers":"Giocatori:","OptionAnyNumberOfPlayers":"Qualsiasi:","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Cartelle dei media","HeaderThemeVideos":"Tema dei video","HeaderThemeSongs":"Tema Canzoni","HeaderScenes":"Scene","HeaderAwardsAndReviews":"Premi e Recensioni","HeaderSoundtracks":"Colonne sonore","HeaderMusicVideos":"video musicali","HeaderSpecialFeatures":"Caratteristiche speciali","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Parti addizionali","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"mancante","LabelOffline":"Spento","PathSubstitutionHelp":"il percorso 'sostituzioni' vengono utilizzati per mappare un percorso sul server per un percorso che i client sono in grado di accedere. Consentendo ai clienti l'accesso diretto ai media sul server possono essere in grado di giocare direttamente attraverso la rete ed evitare di utilizzare le risorse del server per lo streaming e transcodificare tra di loro.","HeaderFrom":"Da","HeaderTo":"A","LabelFrom":"Da:","LabelFromHelp":"Esempio: D\\Films (sul server)","LabelTo":"A:","LabelToHelp":"Esempio: \\ \\ MyServer \\ Films (Percorso a cui i client possono accedere)","ButtonAddPathSubstitution":"Aggiungi sostituzione","OptionSpecialEpisode":"Speciali","OptionMissingEpisode":"Episodi mancanti","OptionUnairedEpisode":"Episodi mai andati in onda","OptionEpisodeSortName":"Ordina episodi per nome","OptionSeriesSortName":"Nome Serie","OptionTvdbRating":"Voto Tvdb","HeaderTranscodingQualityPreference":"Preferenze qualit\u00e0 trascodifica:","OptionAutomaticTranscodingHelp":"Il server decider\u00e0 qualit\u00e0 e velocit\u00e0","OptionHighSpeedTranscodingHelp":"Bassa qualit\u00e0, ma pi\u00f9 velocit\u00e0 nella codifica","OptionHighQualityTranscodingHelp":"Alta qualit\u00e0, ma pi\u00f9 lentezza nella codifica","OptionMaxQualityTranscodingHelp":"Migliore qualit\u00e0 con la codifica pi\u00f9 lenta e elevato utilizzo della CPU","OptionHighSpeedTranscoding":"Maggiore velocit\u00e0","OptionHighQualityTranscoding":"Maggiore qualit\u00e0","OptionMaxQualityTranscoding":"Massima Qualit\u00e0","OptionEnableDebugTranscodingLogging":"Abilita la registrazione transcodifica di debug","OptionEnableDebugTranscodingLoggingHelp":"Questo creer\u00e0 file di log molto grandi ed \u00e8 consigliato solo se necessario per la risoluzione dei problemi.","OptionUpscaling":"Consenti ai clienti di richiedere il video scalato","OptionUpscalingHelp":"In alcuni casi, questo si tradurr\u00e0 in una migliore qualit\u00e0 video, ma aumenter\u00e0 l'utilizzo della CPU.","EditCollectionItemsHelp":"Aggiungi o rimuovi films,serie,albums,libri o giochi e se vuoi raggruppa in collezioni","HeaderAddTitles":"Aggiungi Titolo","LabelEnableDlnaPlayTo":"Abilita DLNA su","LabelEnableDlnaPlayToHelp":"Media Browser pu\u00f2 ricercare dispositivi sulla tua rete e abilitare il controllo remoto degli stessi.","LabelEnableDlnaDebugLogging":"Abilita il debug del DLNA","LabelEnableDlnaDebugLoggingHelp":"Questo creer\u00e0 file di log di notevoli dimensioni e deve essere abilitato solo per risolvere eventuali problemi","LabelEnableDlnaClientDiscoveryInterval":"Ricerca nuovi dispositivi:(Ogni x secondi)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determina la durata in secondi dell'intervallo tra la ricerca< SSDP","HeaderCustomDlnaProfiles":"Profili personalizzati","HeaderSystemDlnaProfiles":"Profili di sistema","CustomDlnaProfilesHelp":"Crea un profilo personalizzato per un nuovo dispositivo o sovrascrivi quello di sistema","SystemDlnaProfilesHelp":"I profili di sistema sono in solo lettura.crea un profilo personalizzato per lo stesso dispositivo.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"Percorsi di sistema","LinkCommunity":"Comunit\u00e0","LinkGithub":"Github","LinkApiDocumentation":"Documentazione Api","LabelFriendlyServerName":"Nome condiviso del server:","LabelFriendlyServerNameHelp":"Questo nome \u00e8 usato per identificare il server sulla rete.Se lasciato vuoto verra usato il nome del pc","LabelPreferredDisplayLanguage":"Lingua preferita","LabelPreferredDisplayLanguageHelp":"La traduzione nella tua lingua non \u00e8 ancora completa.Scusa.","LabelReadHowYouCanContribute":"Leggi come puoi contribuire","HeaderNewCollection":"Nuova collezione","NewCollectionNameExample":"Esempio:Collezione Star wars","OptionSearchForInternetMetadata":"Cerca su internet le immagini e i metadati","ButtonCreate":"Crea","LabelHttpServerPortNumber":"Porta del server HTTP Numero:","LabelWebSocketPortNumber":"Porta webSocket numero:","LabelEnableAutomaticPortHelp":"UPnP puo automaticamente autoconfigurare il Router per l'accesso remoto.Non funziona su tutti i modelli!","LabelExternalDDNS":"DDNS Esterno:","LabelExternalDDNSHelp":"Se tu ha un DNS dinamico inseriscilo qui.Media browser lo utilizzera per le connessioni remote.","TabResume":"Riprendi","TabWeather":"Tempo","TitleAppSettings":"Impostazioni delle app","LabelMinResumePercentage":"% minima per il riprendi","LabelMaxResumePercentage":"% massima per il riprendi","LabelMinResumeDuration":"Durata minima per il riprendi (secondi)","LabelMinResumePercentageHelp":"I film Sono considerati non visti se fermati prima di questo tempo","LabelMaxResumePercentageHelp":"I film sono considerati visti se fermati dopo questo tempo","LabelMinResumeDurationHelp":"I film pi\u00f9 corti non saranno riprendibili"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/nb.json b/MediaBrowser.Server.Implementations/Localization/Server/nb.json index 77ff53ae2e..069710ad10 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/nb.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/nb.json @@ -1 +1 @@ -{"LabelExit":"Exit","LabelVisitCommunity":"Bes\u00f8k oss","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"Se Api-dokumentasjon","LabelBrowseLibrary":"Browse biblioteket","LabelConfigureMediaBrowser":"Konfigurer Media Browser","LabelOpenLibraryViewer":"\u00c5pne Biblioteket","LabelRestartServer":"Restart serveren","LabelShowLogWindow":"Se logg-vinduet","LabelPrevious":"Forrige","LabelFinish":"Ferdig","LabelNext":"neste","LabelYoureDone":"Ferdig!","WelcomeToMediaBrowser":"Velkommen til Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Denne wizarden vil guide deg gjennom server-konfigurasjonen","TellUsAboutYourself":"Fortell om deg selv","LabelYourFirstName":"Ditt fornavn","MoreUsersCanBeAddedLater":"Du kan legge til flere brukere senere via Dashboard","UserProfilesIntro":"Media Browser includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"Windows Service har blitt installert","WindowsServiceIntro1":"Media Browser Server kj\u00f8rer normalt som en desktop-applikasjon med et tray-ikon, men om du foretrekker at det kj\u00f8res som en bakgrunnsprosess, kan du i stedet starte den fra windows service control panel.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"Konfigurer innstillinger","LabelEnableVideoImageExtraction":"Enable video image extraction","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"Ok","ButtonCancel":"avbryt","HeaderSetupLibrary":"Sett opp ditt medie-bibliotel","ButtonAddMediaFolder":"Legg til media-mappe","LabelFolderType":"Mappe typpe","MediaFolderHelpPluginRequired":"* P\u00e5krever bruk av en plugin, e.g. GameBrowser or MB Bookshelf","ReferToMediaLibraryWiki":"Se media library wiki","LabelCountry":"LAnd","LabelLanguage":"Spr\u00e5k:","HeaderPreferredMetadataLanguage":"Foretrukket spr\u00e5k for metadata","LabelSaveLocalMetadata":"Lagre cover og metadata i medie-mappene","LabelSaveLocalMetadataHelp":"Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.","LabelDownloadInternetMetadata":"Last ned cover og metadata fra internett","LabelDownloadInternetMetadataHelp":"MEdia Browser kan laste ned informasjon om mediet for en rikere presentasjon","TabPreferences":"Preferences","TabPassword":"Passord","TabLibraryAccess":"Library Access","TabImage":"Bilde","TabProfile":"profil","LabelDisplayMissingEpisodesWithinSeasons":"Vis episoder som sesongen mangler","LabelUnairedMissingEpisodesWithinSeasons":"Vis episoder som enn\u00e5 ikke har blitt sendt","HeaderVideoPlaybackSettings":"Innstillinger for video-avspilling","LabelAudioLanguagePreference":"Audio language preference:","LabelSubtitleLanguagePreference":"Subtitle language preference:","LabelDisplayForcedSubtitlesOnly":"Display only forced subtitles","TabProfiles":"Profiler","TabSecurity":"Sikkerhet","ButtonAddUser":"Ny bruker","ButtonSave":"lagre","ButtonResetPassword":"Resett passord","LabelNewPassword":"Nytt passord","LabelNewPasswordConfirm":"Bekreft nytt passord","HeaderCreatePassword":"Lag nytt passord","LabelCurrentPassword":"N\u00e5v\u00e6rende passord","LabelMaxParentalRating":"Maximum allowed parental rating:","MaxParentalRatingHelp":"Innhold med h\u00f8yere aldersgrense vil bli skjult for brukeren","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"Slett bilde","ButtonUpload":"Last opp","HeaderUploadNewImage":"Last opp nytt bilde","LabelDropImageHere":"Slipp bilde her","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Ingeting her","MessagePleaseEnsureInternetMetadata":"P\u00e5se at nedlasting av internet-metadata er sl\u00e5tt p\u00e5","TabSuggested":"Forslag","TabLatest":"Siste","TabUpcoming":"Kommer","TabShows":"Show","TabEpisodes":"Episoder","TabGenres":"Sjanger","TabPeople":"Folk","TabNetworks":"Networks","HeaderUsers":"Bruker","HeaderFilters":"Filtre","ButtonFilter":"Filter","OptionFavorite":"Favoritter","OptionLikes":"Liker","OptionDislikes":"Misliker","OptionActors":"Skuespiller","OptionGuestStars":"Guest Stars","OptionDirectors":"Regis\u00f8r","OptionWriters":"Manus","OptionProducers":"Produsent","HeaderResume":"Fortsett","HeaderNextUp":"Neste","NoNextUpItemsMessage":"Ingen funnet. Begyn \u00e5 se det du har","HeaderLatestEpisodes":"Nye episoder","HeaderPersonTypes":"Person Types:","TabSongs":"Sanger","TabAlbums":"Album","TabArtists":"Artister","TabAlbumArtists":"Album Artists","TabMusicVideos":"Musikk-videoer","ButtonSort":"Sorter","HeaderSortBy":"Sorter etter","HeaderSortOrder":"Sort Order:","OptionPlayed":"Sett","OptionUnplayed":"Ikke sett","OptionAscending":"Oppover","OptionDescending":"Nedover","OptionRuntime":"Spilletid","OptionReleaseDate":"Slipp-dato","OptionPlayCount":"Play Count","OptionDatePlayed":"Dato spilt","OptionDateAdded":"Dato lagt til","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"L\u00e5navn","OptionCommunityRating":"Community Rating","OptionNameSort":"Navn","OptionFolderSort":"Folders","OptionBudget":"Budsjett","OptionRevenue":"Inntjening","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Tidslinje","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Katalog","TabUpdates":"Oppdateringer","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatiske oppdateringer","HeaderUpdateLevel":"Oppdaterings-niv\u00e5","HeaderNowPlaying":"Spiller n\u00e5","HeaderLatestAlbums":"Siste album","HeaderLatestSongs":"siste l\u00e5ter","HeaderRecentlyPlayed":"Nylig avspilt","HeaderFrequentlyPlayed":"Ofte avspilt","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video-type","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"iso","Option3D":"3d","LabelFeatures":"Features:","OptionHasSubtitles":"undertekster","OptionHasTrailer":"trailer","OptionHasThemeSong":"Temasang","OptionHasThemeVideo":"Temavideo","TabMovies":"Filmer","TabStudios":"Studio","TabTrailers":"Trailere","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"premieredato","TabBasic":"Basic","TabAdvanced":"Avansert","HeaderStatus":"Status","OptionContinuing":"Fortsetter","OptionEnded":"Avsluttet","HeaderAirDays":"Air Days:","OptionSunday":"S\u00f8ndag","OptionMonday":"Mandag","OptionTuesday":"Tirsdag","OptionWednesday":"Onsdag","OptionThursday":"Torsdag","OptionFriday":"Fredag","OptionSaturday":"L\u00f8rdag","HeaderManagement":"Management:","OptionMissingImdbId":"Mangler IMDb id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Mangler oversikt","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"Genrelt","TitleSupport":"Support","TabLog":"Logg","TabAbout":"Om","TabSupporterKey":"Supporter-n\u00f8kkel","TabBecomeSupporter":"Bli en supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"S\u00f8k kunnskapsbasen","VisitTheCommunity":"Bes\u00f8k oss","VisitMediaBrowserWebsite":"Bes\u00f8k Media Browsers nettside","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Skjul brukere fra logginn-skjermen","OptionDisableUser":"Deaktiver denne brukeren","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Navn","OptionAllowUserToManageServer":"TIllatt denne brukeren \u00e5 administrere serveren","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Tillatt medieavspilling","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Tillatt denne brukeren \u00e5 slette bibliotek-elementer","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Tillatt denne brukeren \u00e5 fjernstyre andre","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Sluppet","OptionBeta":"Beta","OptionDev":"Dev","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Exit","LabelVisitCommunity":"Bes\u00f8k oss","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standard","LabelViewApiDocumentation":"Se Api-dokumentasjon","LabelBrowseLibrary":"Browse biblioteket","LabelConfigureMediaBrowser":"Konfigurer Media Browser","LabelOpenLibraryViewer":"\u00c5pne Biblioteket","LabelRestartServer":"Restart serveren","LabelShowLogWindow":"Se logg-vinduet","LabelPrevious":"Forrige","LabelFinish":"Ferdig","LabelNext":"neste","LabelYoureDone":"Ferdig!","WelcomeToMediaBrowser":"Velkommen til Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Denne wizarden vil guide deg gjennom server-konfigurasjonen","TellUsAboutYourself":"Fortell om deg selv","LabelYourFirstName":"Ditt fornavn","MoreUsersCanBeAddedLater":"Du kan legge til flere brukere senere via Dashboard","UserProfilesIntro":"Media Browser includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"Windows Service har blitt installert","WindowsServiceIntro1":"Media Browser Server kj\u00f8rer normalt som en desktop-applikasjon med et tray-ikon, men om du foretrekker at det kj\u00f8res som en bakgrunnsprosess, kan du i stedet starte den fra windows service control panel.","WindowsServiceIntro2":"If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. Please note that at this time the service is unable to self-update, so new versions will require manual interaction.","WizardCompleted":"That's all we need for now. Media Browser has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Dashboard<\/b>.","LabelConfigureSettings":"Konfigurer innstillinger","LabelEnableVideoImageExtraction":"Enable video image extraction","VideoImageExtractionHelp":"For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.","LabelEnableChapterImageExtractionForMovies":"Extract chapter image extraction for Movies","LabelChapterImageExtractionForMoviesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelEnableAutomaticPortMapping":"Enable automatic port mapping","LabelEnableAutomaticPortMappingHelp":"UPnP allows automated router configuration for easy remote access. This may not work with some router models.","ButtonOk":"Ok","ButtonCancel":"avbryt","ButtonNew":"New","HeaderSetupLibrary":"Sett opp ditt medie-bibliotel","ButtonAddMediaFolder":"Legg til media-mappe","LabelFolderType":"Mappe typpe","MediaFolderHelpPluginRequired":"* P\u00e5krever bruk av en plugin, e.g. GameBrowser or MB Bookshelf","ReferToMediaLibraryWiki":"Se media library wiki","LabelCountry":"LAnd","LabelLanguage":"Spr\u00e5k:","HeaderPreferredMetadataLanguage":"Foretrukket spr\u00e5k for metadata","LabelSaveLocalMetadata":"Lagre cover og metadata i medie-mappene","LabelSaveLocalMetadataHelp":"Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.","LabelDownloadInternetMetadata":"Last ned cover og metadata fra internett","LabelDownloadInternetMetadataHelp":"MEdia Browser kan laste ned informasjon om mediet for en rikere presentasjon","TabPreferences":"Preferences","TabPassword":"Passord","TabLibraryAccess":"Library Access","TabImage":"Bilde","TabProfile":"profil","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Vis episoder som sesongen mangler","LabelUnairedMissingEpisodesWithinSeasons":"Vis episoder som enn\u00e5 ikke har blitt sendt","HeaderVideoPlaybackSettings":"Innstillinger for video-avspilling","LabelAudioLanguagePreference":"Audio language preference:","LabelSubtitleLanguagePreference":"Subtitle language preference:","LabelDisplayForcedSubtitlesOnly":"Display only forced subtitles","TabProfiles":"Profiler","TabSecurity":"Sikkerhet","ButtonAddUser":"Ny bruker","ButtonSave":"lagre","ButtonResetPassword":"Resett passord","LabelNewPassword":"Nytt passord","LabelNewPasswordConfirm":"Bekreft nytt passord","HeaderCreatePassword":"Lag nytt passord","LabelCurrentPassword":"N\u00e5v\u00e6rende passord","LabelMaxParentalRating":"Maximum allowed parental rating:","MaxParentalRatingHelp":"Innhold med h\u00f8yere aldersgrense vil bli skjult for brukeren","LibraryAccessHelp":"Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.","ButtonDeleteImage":"Slett bilde","ButtonUpload":"Last opp","HeaderUploadNewImage":"Last opp nytt bilde","LabelDropImageHere":"Slipp bilde her","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Ingeting her","MessagePleaseEnsureInternetMetadata":"P\u00e5se at nedlasting av internet-metadata er sl\u00e5tt p\u00e5","TabSuggested":"Forslag","TabLatest":"Siste","TabUpcoming":"Kommer","TabShows":"Show","TabEpisodes":"Episoder","TabGenres":"Sjanger","TabPeople":"Folk","TabNetworks":"Networks","HeaderUsers":"Bruker","HeaderFilters":"Filtre","ButtonFilter":"Filter","OptionFavorite":"Favoritter","OptionLikes":"Liker","OptionDislikes":"Misliker","OptionActors":"Skuespiller","OptionGuestStars":"Guest Stars","OptionDirectors":"Regis\u00f8r","OptionWriters":"Manus","OptionProducers":"Produsent","HeaderResume":"Fortsett","HeaderNextUp":"Neste","NoNextUpItemsMessage":"Ingen funnet. Begyn \u00e5 se det du har","HeaderLatestEpisodes":"Nye episoder","HeaderPersonTypes":"Person Types:","TabSongs":"Sanger","TabAlbums":"Album","TabArtists":"Artister","TabAlbumArtists":"Album Artists","TabMusicVideos":"Musikk-videoer","ButtonSort":"Sorter","HeaderSortBy":"Sorter etter","HeaderSortOrder":"Sort Order:","OptionPlayed":"Sett","OptionUnplayed":"Ikke sett","OptionAscending":"Oppover","OptionDescending":"Nedover","OptionRuntime":"Spilletid","OptionReleaseDate":"Slipp-dato","OptionPlayCount":"Play Count","OptionDatePlayed":"Dato spilt","OptionDateAdded":"Dato lagt til","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"L\u00e5navn","OptionCommunityRating":"Community Rating","OptionNameSort":"Navn","OptionFolderSort":"Folders","OptionBudget":"Budsjett","OptionRevenue":"Inntjening","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Tidslinje","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Katalog","TabUpdates":"Oppdateringer","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatiske oppdateringer","HeaderUpdateLevel":"Oppdaterings-niv\u00e5","HeaderNowPlaying":"Spiller n\u00e5","HeaderLatestAlbums":"Siste album","HeaderLatestSongs":"siste l\u00e5ter","HeaderRecentlyPlayed":"Nylig avspilt","HeaderFrequentlyPlayed":"Ofte avspilt","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video-type","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"iso","Option3D":"3d","LabelFeatures":"Features:","OptionHasSubtitles":"undertekster","OptionHasTrailer":"trailer","OptionHasThemeSong":"Temasang","OptionHasThemeVideo":"Temavideo","TabMovies":"Filmer","TabStudios":"Studio","TabTrailers":"Trailere","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"premieredato","TabBasic":"Basic","TabAdvanced":"Avansert","HeaderStatus":"Status","OptionContinuing":"Fortsetter","OptionEnded":"Avsluttet","HeaderAirDays":"Air Days:","OptionSunday":"S\u00f8ndag","OptionMonday":"Mandag","OptionTuesday":"Tirsdag","OptionWednesday":"Onsdag","OptionThursday":"Torsdag","OptionFriday":"Fredag","OptionSaturday":"L\u00f8rdag","HeaderManagement":"Management:","OptionMissingImdbId":"Mangler IMDb id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Mangler oversikt","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"Genrelt","TitleSupport":"Support","TabLog":"Logg","TabAbout":"Om","TabSupporterKey":"Supporter-n\u00f8kkel","TabBecomeSupporter":"Bli en supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"S\u00f8k kunnskapsbasen","VisitTheCommunity":"Bes\u00f8k oss","VisitMediaBrowserWebsite":"Bes\u00f8k Media Browsers nettside","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Skjul brukere fra logginn-skjermen","OptionDisableUser":"Deaktiver denne brukeren","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Navn","OptionAllowUserToManageServer":"TIllatt denne brukeren \u00e5 administrere serveren","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Tillatt medieavspilling","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Tillatt denne brukeren \u00e5 slette bibliotek-elementer","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Tillatt denne brukeren \u00e5 fjernstyre andre","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonSearch":"Search","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Sluppet","OptionBeta":"Beta","OptionDev":"Dev","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","ButtonRemove":"Remove","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/nl.json b/MediaBrowser.Server.Implementations/Localization/Server/nl.json index a498975a70..f411096262 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/nl.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/nl.json @@ -1 +1 @@ -{"LabelExit":"Afsluiten","LabelVisitCommunity":"Bezoek de community","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standaard","LabelViewApiDocumentation":"Bekijk Api documentatie","LabelBrowseLibrary":"Bekijk bibliotheek","LabelConfigureMediaBrowser":"Configureer Media Browser","LabelOpenLibraryViewer":"Open bibliotheek verkenner","LabelRestartServer":"Herstart server","LabelShowLogWindow":"Toon log venster","LabelPrevious":"Vorige","LabelFinish":"Voltooien","LabelNext":"Volgende","LabelYoureDone":"Gereed!","WelcomeToMediaBrowser":"Welkom bij Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Deze wizard helpt u door het setup-proces.","TellUsAboutYourself":"Vertel ons over u zelf","LabelYourFirstName":"Uw voornaam:","MoreUsersCanBeAddedLater":"Meer gebruikers kunnen later via het dashboard worden toegevoegd.","UserProfilesIntro":"Media Browser bevat ingebouwde ondersteuning voor gebruikersprofielen, zodat iedere gebruiker zijn eigen display-instellingen, afspeelstatus en ouderlijk toezicht heeft.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"Een Windows Service is ge\u00efnstalleerd.","WindowsServiceIntro1":"Media Browser Server werkt normaal als een desktop applicatie met een pictogram in het systeemvak, maar als je het liever op de achtergrond als service laat draaien, dan kan dit worden ingesteld vanuit het Windows services configuratie scherm.","WindowsServiceIntro2":"Wanneer u de Windows-service gebruikt, dan dient u er rekening mee te houden dat het niet op hetzelfde moment als de desktop applicatie kan worden uitgevoerd. Het is daarom vereist de desktop applicatie eerst te sluiten voordat u de service gebruikt. De service moet worden geconfigureerd met beheerdersrechten via het configuratie scherm. Houd er rekening mee dat op dit moment de service niet automatisch kan worden bijgewerkt, zodat nieuwe versies dus handmatige interactie vereisen.","WizardCompleted":"Dit is alles wat we nodig hebben voor nu. Media Browser is begonnen met het verzamelen van informatie over uw mediabibliotheek. Bekijk enkele van onze apps, en klik vervolgens op Voltooien<\/b> om het Dashboard te bekijken<\/b>.","LabelConfigureSettings":"Configureer instellingen","LabelEnableVideoImageExtraction":"Videobeeld extractie inschakelen","VideoImageExtractionHelp":"Voor video's die nog geen afbeeldingen hebben, en waarvoor geen afbeeldingen op Internet te vinden zijn. Dit zal enige extra tijd aan de oorspronkelijke bibliotheek scan toevoegen, maar zal resulteren in een meer aantrekkelijke presentatie.","LabelEnableChapterImageExtractionForMovies":"Extractie van hoofdstuk afbeeldingen voor Films","LabelChapterImageExtractionForMoviesHelp":"Extraheren van hoofdstuk afbeeldingen zal gast applicaties de mogelijkheid geven om grafische scene selectie menu's weer te geven. Het proces kan traag, cpu-intensief zijn en kan enkele gigabytes aan ruimte vereisen. Het loopt als een 's nachts als geplande taak om 4:00, maar dit is instelbaar via de geplande taken sectie. Het wordt niet aanbevolen om deze taak uit te voeren tijdens de piekuren.","LabelEnableAutomaticPortMapping":"Automatische poorttoewijzing inschakelen","LabelEnableAutomaticPortMappingHelp":"UPnP zorgt voor geautomatiseerde configuratie van de router voor gemakkelijke toegang op afstand. Dit werkt mogelijk niet met sommige routers.","ButtonOk":"Ok","ButtonCancel":"Annuleren","HeaderSetupLibrary":"Stel uw mediabibliotheek in","ButtonAddMediaFolder":"Voeg mediamap toe","LabelFolderType":"Maptype:","MediaFolderHelpPluginRequired":"* Hiervoor is het gebruik van een plug-in vereist, bijvoorbeeld GameBrowser of MB Bookshelf.","ReferToMediaLibraryWiki":"Raadpleeg de mediabibliotheek wiki.","LabelCountry":"Land:","LabelLanguage":"Taal:","HeaderPreferredMetadataLanguage":"Gewenste taal van de metadata:","LabelSaveLocalMetadata":"Sla afbeeldingen en metadata op in de mediamappen","LabelSaveLocalMetadataHelp":"Afbeeldingen en metadata direct opslaan in mediamappen zorgt er voor dat ze makkelijk vindbaar zijn en gemakkelijk kunnen worden bewerkt.","LabelDownloadInternetMetadata":"Download afbeeldingen en metagegevens van het internet","LabelDownloadInternetMetadataHelp":"Media Browser kan informatie downloaden over uw media om goede presentaties mogelijk te maken.","TabPreferences":"Voorkeuren","TabPassword":"Wachtwoord","TabLibraryAccess":"Bibliotheek toegang","TabImage":"Afbeelding","TabProfile":"Profiel","LabelDisplayMissingEpisodesWithinSeasons":"Toon ontbrekende afleveringen in een seizoen","LabelUnairedMissingEpisodesWithinSeasons":"Toon toekomstige afleveringen in een seizoen","HeaderVideoPlaybackSettings":"Video afspeel instellingen","LabelAudioLanguagePreference":"Voorkeurs taal geluid:","LabelSubtitleLanguagePreference":"Voorkeurs taal ondertiteling:","LabelDisplayForcedSubtitlesOnly":"laat alleen geforceerde ondertitels zien","TabProfiles":"Profielen","TabSecurity":"Beveiliging","ButtonAddUser":"Gebruiker toevoegen","ButtonSave":"Opslaan","ButtonResetPassword":"Wachtwoord resetten","LabelNewPassword":"Nieuw wachtwoord:","LabelNewPasswordConfirm":"Bevestig nieuw wachtwoord:","HeaderCreatePassword":"Maak wachtwoord","LabelCurrentPassword":"Huidig wachtwoord","LabelMaxParentalRating":"Maximaal toegestane kijkwijzer clasificatie","MaxParentalRatingHelp":"Media met een hogere clasificatie wordt niet weergegeven","LibraryAccessHelp":"Selecteer de media mappen om te delen met deze gebruiker. Beheerders kunnen alle mappen bewerken met de metadata manager.","ButtonDeleteImage":"Verwijder afbeelding","ButtonUpload":"Uploaden","HeaderUploadNewImage":"Nieuwe afbeelding uploaden","LabelDropImageHere":"Hier afbeelding plaatsen","ImageUploadAspectRatioHelp":"1:1 beeldverhouding geadviseerd. Alleen JPG\/PNG.","MessageNothingHere":"Lijst is leeg.","MessagePleaseEnsureInternetMetadata":"Zorg ervoor dat het ophalen van metadata van het internet ingeschakeld is.","TabSuggested":"Aanbevolen","TabLatest":"Nieuwste","TabUpcoming":"Binnenkort","TabShows":"Series","TabEpisodes":"Afleveringen","TabGenres":"Genres","TabPeople":"Personen","TabNetworks":"TV-zenders","HeaderUsers":"Gebruikers","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favorieten","OptionLikes":"Leuk","OptionDislikes":"Niet leuk","OptionActors":"Acteurs","OptionGuestStars":"Gast Sterren","OptionDirectors":"Regiseurs","OptionWriters":"Schrijvers","OptionProducers":"Producenten","HeaderResume":"Hervatten","HeaderNextUp":"Eerstvolgende","NoNextUpItemsMessage":"Niets gevonden. Start met kijken!","HeaderLatestEpisodes":"Laatste Afleveringen","HeaderPersonTypes":"Persoon Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artiesten","TabAlbumArtists":"Albumartiesten","TabMusicVideos":"Music Videos","ButtonSort":"Sorteren","HeaderSortBy":"Sorteren op:","HeaderSortOrder":"Sorteer volgorde:","OptionPlayed":"Afgespeeld","OptionUnplayed":"Onafgespeeld","OptionAscending":"Oplopend","OptionDescending":"Aflopend","OptionRuntime":"Speelduur","OptionReleaseDate":"Release Datum","OptionPlayCount":"Afspeel telling","OptionDatePlayed":"Datum afgespeeld","OptionDateAdded":"Datum toegevoegd","OptionAlbumArtist":"Albumartiest","OptionArtist":"Artiest","OptionAlbum":"Album","OptionTrackName":"Track Naam","OptionCommunityRating":"Gemeenschaps Waardering","OptionNameSort":"Naam","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Inkomsten","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Tijdlijn","OptionThumb":"Miniatuur","OptionBanner":"Banner","OptionCriticRating":"Kritieken","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Hervatbaar","ScheduledTasksHelp":"Klik op een taak om het schema aan te passen.","ScheduledTasksTitle":"Geplande taken","TabMyPlugins":"Mijn Plug-ins","TabCatalog":"Catalogus","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatische updates","HeaderUpdateLevel":"Update Niveau","HeaderNowPlaying":"Speelt nu","HeaderLatestAlbums":"Nieuwste Albums","HeaderLatestSongs":"Laatste Songs","HeaderRecentlyPlayed":"Recent afgespeeld","HeaderFrequentlyPlayed":"Vaak afgespeeld","DevBuildWarning":"Alpha versies zijn voor eigen risico. Ze worden vaak uitgegeven, deze versies zijn niet getest!. De Applicatie kan crashen en sommige functies kunnen mogelijk niet meer werken.","LabelVideoType":"Video Type:","OptionBluray":"Blu-ray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Kenmerken:","OptionHasSubtitles":"Ondertitels","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Thema Song","OptionHasThemeVideo":"Thema Video","TabMovies":"Films","TabStudios":"Studio's","TabTrailers":"Trailers","HeaderLatestMovies":"Laatste Films","HeaderLatestTrailers":"Laatste Trailers","OptionHasSpecialFeatures":"Speciale kenmerken","OptionImdbRating":"IMDb Waardering","OptionParentalRating":"Kijkwijzer classificatie","OptionPremiereDate":"Premi\u00e8re Datum","TabBasic":"Basis","TabAdvanced":"Geavanceerd","HeaderStatus":"Status","OptionContinuing":"Wordt vervolgd...","OptionEnded":"Gestopt","HeaderAirDays":"Uitzend dagen:","OptionSunday":"Zondag","OptionMonday":"Maandag","OptionTuesday":"Dinsdag","OptionWednesday":"Woensdag","OptionThursday":"Donderdag","OptionFriday":"Vrijdag","OptionSaturday":"Zaterdag","HeaderManagement":"Beheer:","OptionMissingImdbId":"IMDb Id ontbreekt","OptionMissingTvdbId":"TheTVDB Id ontbreekt","OptionMissingOverview":"Overzicht ontbreekt","OptionFileMetadataYearMismatch":"Bestands\/Metadata Jaren komen niet overeen","TabGeneral":"Algemeen","TitleSupport":"Ondersteuning","TabLog":"Log","TabAbout":"Over","TabSupporterKey":"Supporter Sleutel","TabBecomeSupporter":"Word Supporter","MediaBrowserHasCommunity":"Media Browser heeft een bloeiende gemeenschap van gebruikers en medewerkers.","CheckoutKnowledgeBase":"Bekijk onze kennisbank om u te helpen om het meeste uit Media Browser krijgen.","SearchKnowledgeBase":"Zoeken in de Kennisbank","VisitTheCommunity":"Bezoek de Gemeenschap","VisitMediaBrowserWebsite":"Bezoek de Media Browser Website","VisitMediaBrowserWebsiteLong":"Bezoek de Media Browser-website voor het laatste nieuws en blijf op de hoogte via de ontwikkelaars blog.","OptionHideUser":"Verberg deze gebruiker op het login-scherm","OptionDisableUser":"Deze account uitschakelen","OptionDisableUserHelp":"Indien uitgeschakeld zal de server geen verbindingen van deze gebruiker toe te staan. Bestaande verbindingen zullen abrupt worden be\u00ebindigd.","HeaderAdvancedControl":"Geavanceerd Beheer","LabelName":"Naam:","OptionAllowUserToManageServer":"Deze gebruiker kan de server te beheren","HeaderFeatureAccess":"Functie toegang","OptionAllowMediaPlayback":"Afspelen van media toestaan","OptionAllowBrowsingLiveTv":"Browsen van live tv toestaan","OptionAllowDeleteLibraryContent":"Deze gebruiker kan bibliotheek-inhoud verwijderen","OptionAllowManageLiveTv":"Beheer van live tv-opnames toestaan","OptionAllowRemoteControlOthers":"Deze gebruiker kan andere gebruikers op afstand besturen","OptionMissingTmdbId":"TMDB Id ontbreekt","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Selecteer","ButtonGroupVersions":"Groepeer Versies","PismoMessage":"Gebruik makend van Pismo File Mount door een geschonken licentie.","PleaseSupportOtherProduces":"Steun A.U.B. ook de andere gratis producten die wij gebruiken:","VersionNumber":"Versie {0}","TabPaths":"Paden","TabServer":"Server","TabTranscoding":"Transcoderen","TitleAdvanced":"Geavanceerd","LabelAutomaticUpdateLevel":"Automatische update niveau","OptionRelease":"Offici\u00eble Release","OptionBeta":"Beta","OptionDev":"Dev (Onstabiel)","LabelAllowServerAutoRestart":"Sta de server toe automatisch te herstarten om updates toe te passen","LabelAllowServerAutoRestartHelp":"De server zal alleen opnieuw op tijdens inactieve perioden, wanneer er geen gebruikers actief zijn.","LabelEnableDebugLogging":"Schakkel debug logging in","LabelRunServerAtStartup":"Run server bij het opstarten","LabelRunServerAtStartupHelp":"Dit zal de applicatie starten als pictogram in het systeemvak tijdens het opstarten van Windows. Om de Windows-service te starten, schakelt U deze uit en start U de service via het Configuratiescherm van Windows. Houd er rekening mee dat U de service en de applicatie niet tegelijk kunt uitvoeren, U moet dus eerst de applicatie sluiten alvorens U de service start.","ButtonSelectDirectory":"Selecteer map","LabelCustomPaths":"Geef aangepaste paden op waar gewenst. Laat velden leeg om de standaardinstellingen te gebruiken.","LabelCachePath":"Cache pad:","LabelCachePathHelp":"Deze map bevat server cache-bestanden, zoals afbeeldingen.","LabelImagesByNamePath":"Afbeeldingen op naam pad:","LabelImagesByNamePathHelp":"Deze map bevat acteur, artiest, genre en studio-afbeeldingen.","LabelMetadataPath":"Metadata pad:","LabelMetadataPathHelp":"Deze locatie bevat gedownloade afbeeldingen en metagegevens die niet zijn geconfigureerd om te worden opgeslagen in mediamappen .","LabelTranscodingTempPath":"Tijdelijke Transcodeer pad:","LabelTranscodingTempPathHelp":"Deze map bevat werkbestanden die worden gebruikt door de transcoder.","TabBasics":"Basis","TabTV":"TV","TabGames":"Spelen","TabMusic":"Muziek","TabOthers":"Overig","HeaderExtractChapterImagesFor":"Extract hoofdstuk afbeeldingen voor:","OptionMovies":"Films","OptionEpisodes":"Afleveringen","OptionOtherVideos":"Overige Video's","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Schakel de automatische update in van FanArt.tv","LabelAutomaticUpdatesTmdb":"Schakel de automatische update in van TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Schakel de automatische update in van TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Indien ingeschakeld, worden nieuwe afbeeldingen automatisch gedownload wanneer ze zijn toegevoegd aan fanart.tv. Bestaande afbeeldingen zullen niet worden vervangen.","LabelAutomaticUpdatesTmdbHelp":"Indien ingeschakeld, worden nieuwe afbeeldingen automatisch gedownload wanneer ze zijn toegevoegd aan TheMovieDB.org. Bestaande afbeeldingen zullen niet worden vervangen.","LabelAutomaticUpdatesTvdbHelp":"Indien ingeschakeld, worden nieuwe afbeeldingen automatisch gedownload wanneer ze zijn toegevoegd aan TheTVDB.com. Bestaande afbeeldingen zullen niet worden vervangen.","ExtractChapterImagesHelp":"Extraheren van hoofdstuk afbeeldingen zal gast applicaties de mogelijkheid geven om grafische scene selectie menu's weer te geven. Het proces kan traag, cpu-intensief zijn en kan enkele gigabytes aan ruimte in beslag nemen. Het loopt als een nachtelijk geplande taak om 4:00, maar dit is instelbaar bij de geplande taken. Het wordt niet aanbevolen om deze taak uit te voeren tijdens de piekuren.","LabelMetadataDownloadLanguage":"Voorkeurs taal:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Afbeelding opslag conventie:","LabelImageSavingConventionHelp":"Media Browser herkent afbeeldingen van de meeste grote media-applicaties. Het kiezen van uw download conventie is handig als u ook gebruik wilt maken van andere producten.","OptionImageSavingCompatible":"Compatibel - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standaard - MB3\/MB2","ButtonSignIn":"Aanmelden","TitleSignIn":"Aanmelden","HeaderPleaseSignIn":"Gelieve Aan te melden","LabelUser":"Gebruiker:","LabelPassword":"Wachtwoord:","ButtonManualLogin":"Handmatige aanmelding:","PasswordLocalhostMessage":"Wachtwoorden zijn niet vereist bij het aanmelden van localhost.","TabGuide":"Gids","TabChannels":"Kanalen","HeaderChannels":"Kanalen","TabRecordings":"Opnamen","TabScheduled":"Gepland","TabSeries":"Serie","ButtonCancelRecording":"Opname annuleren","HeaderPrePostPadding":"Vooraf\/Achteraf insteling","LabelPrePaddingMinutes":"Minuten vooraf opnemen:","OptionPrePaddingRequired":"Vooraf opnemen is vereist voor opname","LabelPostPaddingMinutes":"Minuten langer opnemen:","OptionPostPaddingRequired":"Langer opnemen is vereist voor opname","HeaderWhatsOnTV":"Nu te zien","HeaderUpcomingTV":"Binnenkort op TV","TabStatus":"Status","TabSettings":"Instellingen","ButtonRefreshGuideData":"Gidsgegevens Vernieuwen","OptionPriority":"Prioriteit","OptionRecordOnAllChannels":"Programma van alle kanalen opnemen","OptionRecordAnytime":"Programma elke keer opnemen","OptionRecordOnlyNewEpisodes":"Alleen nieuwe afleveringen opnemen","HeaderDays":"Dagen","HeaderActiveRecordings":"Actieve Opnames","HeaderLatestRecordings":"Laatste Opnames","HeaderAllRecordings":"Alle Opnames","ButtonPlay":"Afspelen","ButtonEdit":"Bewerken","ButtonRecord":"Opnemen","ButtonDelete":"Verwijderen","OptionRecordSeries":"Series Opnemen","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Afsluiten","LabelVisitCommunity":"Bezoek de community","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"Standaard","LabelViewApiDocumentation":"Bekijk Api documentatie","LabelBrowseLibrary":"Bekijk bibliotheek","LabelConfigureMediaBrowser":"Configureer Media Browser","LabelOpenLibraryViewer":"Open bibliotheek verkenner","LabelRestartServer":"Herstart server","LabelShowLogWindow":"Toon log venster","LabelPrevious":"Vorige","LabelFinish":"Voltooien","LabelNext":"Volgende","LabelYoureDone":"Gereed!","WelcomeToMediaBrowser":"Welkom bij Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Deze wizard helpt u door het setup-proces.","TellUsAboutYourself":"Vertel ons over u zelf","LabelYourFirstName":"Uw voornaam:","MoreUsersCanBeAddedLater":"Meer gebruikers kunnen later via het dashboard worden toegevoegd.","UserProfilesIntro":"Media Browser bevat ingebouwde ondersteuning voor gebruikersprofielen, zodat iedere gebruiker zijn eigen display-instellingen, afspeelstatus en ouderlijk toezicht heeft.","LabelWindowsService":"Windows Service","AWindowsServiceHasBeenInstalled":"Een Windows Service is ge\u00efnstalleerd.","WindowsServiceIntro1":"Media Browser Server werkt normaal als een desktop applicatie met een pictogram in het systeemvak, maar als je het liever op de achtergrond als service laat draaien, dan kan dit worden ingesteld vanuit het Windows services configuratie scherm.","WindowsServiceIntro2":"Wanneer u de Windows-service gebruikt, dan dient u er rekening mee te houden dat het niet op hetzelfde moment als de desktop applicatie kan worden uitgevoerd. Het is daarom vereist de desktop applicatie eerst te sluiten voordat u de service gebruikt. De service moet worden geconfigureerd met beheerdersrechten via het configuratie scherm. Houd er rekening mee dat op dit moment de service niet automatisch kan worden bijgewerkt, zodat nieuwe versies dus handmatige interactie vereisen.","WizardCompleted":"Dit is alles wat we nodig hebben voor nu. Media Browser is begonnen met het verzamelen van informatie over uw mediabibliotheek. Bekijk enkele van onze apps, en klik vervolgens op Voltooien<\/b> om het Dashboard te bekijken<\/b>.","LabelConfigureSettings":"Configureer instellingen","LabelEnableVideoImageExtraction":"Videobeeld extractie inschakelen","VideoImageExtractionHelp":"Voor video's die nog geen afbeeldingen hebben, en waarvoor geen afbeeldingen op Internet te vinden zijn. Dit zal enige extra tijd aan de oorspronkelijke bibliotheek scan toevoegen, maar zal resulteren in een meer aantrekkelijke presentatie.","LabelEnableChapterImageExtractionForMovies":"Extractie van hoofdstuk afbeeldingen voor Films","LabelChapterImageExtractionForMoviesHelp":"Extraheren van hoofdstuk afbeeldingen zal gast applicaties de mogelijkheid geven om grafische scene selectie menu's weer te geven. Het proces kan traag, cpu-intensief zijn en kan enkele gigabytes aan ruimte vereisen. Het loopt als een 's nachts als geplande taak om 4:00, maar dit is instelbaar via de geplande taken sectie. Het wordt niet aanbevolen om deze taak uit te voeren tijdens de piekuren.","LabelEnableAutomaticPortMapping":"Automatische poorttoewijzing inschakelen","LabelEnableAutomaticPortMappingHelp":"UPnP zorgt voor geautomatiseerde configuratie van de router voor gemakkelijke toegang op afstand. Dit werkt mogelijk niet met sommige routers.","ButtonOk":"Ok","ButtonCancel":"Annuleren","ButtonNew":"Nieuw","HeaderSetupLibrary":"Stel uw mediabibliotheek in","ButtonAddMediaFolder":"Voeg mediamap toe","LabelFolderType":"Maptype:","MediaFolderHelpPluginRequired":"* Hiervoor is het gebruik van een plug-in vereist, bijvoorbeeld GameBrowser of MB Bookshelf.","ReferToMediaLibraryWiki":"Raadpleeg de mediabibliotheek wiki.","LabelCountry":"Land:","LabelLanguage":"Taal:","HeaderPreferredMetadataLanguage":"Gewenste taal van de metadata:","LabelSaveLocalMetadata":"Sla afbeeldingen en metadata op in de mediamappen","LabelSaveLocalMetadataHelp":"Afbeeldingen en metadata direct opslaan in mediamappen zorgt er voor dat ze makkelijk vindbaar zijn en gemakkelijk kunnen worden bewerkt.","LabelDownloadInternetMetadata":"Download afbeeldingen en metagegevens van het internet","LabelDownloadInternetMetadataHelp":"Media Browser kan informatie downloaden over uw media om goede presentaties mogelijk te maken.","TabPreferences":"Voorkeuren","TabPassword":"Wachtwoord","TabLibraryAccess":"Bibliotheek toegang","TabImage":"Afbeelding","TabProfile":"Profiel","TabMetadata":"Metadata","TabImages":"Afbeeldingen","TabCollectionTitles":"Titels","LabelDisplayMissingEpisodesWithinSeasons":"Toon ontbrekende afleveringen in een seizoen","LabelUnairedMissingEpisodesWithinSeasons":"Toon toekomstige afleveringen in een seizoen","HeaderVideoPlaybackSettings":"Video afspeel instellingen","LabelAudioLanguagePreference":"Voorkeurs taal geluid:","LabelSubtitleLanguagePreference":"Voorkeurs taal ondertiteling:","LabelDisplayForcedSubtitlesOnly":"laat alleen geforceerde ondertitels zien","TabProfiles":"Profielen","TabSecurity":"Beveiliging","ButtonAddUser":"Gebruiker toevoegen","ButtonSave":"Opslaan","ButtonResetPassword":"Wachtwoord resetten","LabelNewPassword":"Nieuw wachtwoord:","LabelNewPasswordConfirm":"Bevestig nieuw wachtwoord:","HeaderCreatePassword":"Maak wachtwoord","LabelCurrentPassword":"Huidig wachtwoord","LabelMaxParentalRating":"Maximaal toegestane kijkwijzer clasificatie","MaxParentalRatingHelp":"Media met een hogere clasificatie wordt niet weergegeven","LibraryAccessHelp":"Selecteer de media mappen om te delen met deze gebruiker. Beheerders kunnen alle mappen bewerken met de metadata manager.","ButtonDeleteImage":"Verwijder afbeelding","ButtonUpload":"Uploaden","HeaderUploadNewImage":"Nieuwe afbeelding uploaden","LabelDropImageHere":"Hier afbeelding plaatsen","ImageUploadAspectRatioHelp":"1:1 beeldverhouding geadviseerd. Alleen JPG\/PNG.","MessageNothingHere":"Lijst is leeg.","MessagePleaseEnsureInternetMetadata":"Zorg ervoor dat het ophalen van metadata van het internet ingeschakeld is.","TabSuggested":"Aanbevolen","TabLatest":"Nieuwste","TabUpcoming":"Binnenkort","TabShows":"Series","TabEpisodes":"Afleveringen","TabGenres":"Genres","TabPeople":"Personen","TabNetworks":"TV-zenders","HeaderUsers":"Gebruikers","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favorieten","OptionLikes":"Leuk","OptionDislikes":"Niet leuk","OptionActors":"Acteurs","OptionGuestStars":"Gast Sterren","OptionDirectors":"Regiseurs","OptionWriters":"Schrijvers","OptionProducers":"Producenten","HeaderResume":"Hervatten","HeaderNextUp":"Eerstvolgende","NoNextUpItemsMessage":"Niets gevonden. Start met kijken!","HeaderLatestEpisodes":"Laatste Afleveringen","HeaderPersonTypes":"Persoon Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artiesten","TabAlbumArtists":"Albumartiesten","TabMusicVideos":"Music Videos","ButtonSort":"Sorteren","HeaderSortBy":"Sorteren op:","HeaderSortOrder":"Sorteer volgorde:","OptionPlayed":"Afgespeeld","OptionUnplayed":"Onafgespeeld","OptionAscending":"Oplopend","OptionDescending":"Aflopend","OptionRuntime":"Speelduur","OptionReleaseDate":"Release Datum","OptionPlayCount":"Afspeel telling","OptionDatePlayed":"Datum afgespeeld","OptionDateAdded":"Datum toegevoegd","OptionAlbumArtist":"Albumartiest","OptionArtist":"Artiest","OptionAlbum":"Album","OptionTrackName":"Track Naam","OptionCommunityRating":"Gemeenschaps Waardering","OptionNameSort":"Naam","OptionFolderSort":"Mappen","OptionBudget":"Budget","OptionRevenue":"Inkomsten","OptionPoster":"Poster","OptionBackdrop":"Achtergrond","OptionTimeline":"Tijdlijn","OptionThumb":"Miniatuur","OptionBanner":"Banner","OptionCriticRating":"Kritieken","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Hervatbaar","ScheduledTasksHelp":"Klik op een taak om het schema aan te passen.","ScheduledTasksTitle":"Geplande taken","TabMyPlugins":"Mijn Plug-ins","TabCatalog":"Catalogus","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatische updates","HeaderUpdateLevel":"Update Niveau","HeaderNowPlaying":"Speelt nu","HeaderLatestAlbums":"Nieuwste Albums","HeaderLatestSongs":"Laatste Songs","HeaderRecentlyPlayed":"Recent afgespeeld","HeaderFrequentlyPlayed":"Vaak afgespeeld","DevBuildWarning":"Development versies zijn voor eigen risico. Ze worden vaak uitgegeven, deze versies zijn niet getest!. De Applicatie kan crashen en sommige functies kunnen mogelijk niet meer werken.","LabelVideoType":"Video Type:","OptionBluray":"Blu-ray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Kenmerken:","OptionHasSubtitles":"Ondertitels","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Thema Song","OptionHasThemeVideo":"Thema Video","TabMovies":"Films","TabStudios":"Studio's","TabTrailers":"Trailers","HeaderLatestMovies":"Laatste Films","HeaderLatestTrailers":"Laatste Trailers","OptionHasSpecialFeatures":"Speciale kenmerken","OptionImdbRating":"IMDb Waardering","OptionParentalRating":"Kijkwijzer classificatie","OptionPremiereDate":"Premi\u00e8re Datum","TabBasic":"Basis","TabAdvanced":"Geavanceerd","HeaderStatus":"Status","OptionContinuing":"Wordt vervolgd...","OptionEnded":"Gestopt","HeaderAirDays":"Uitzend dagen:","OptionSunday":"Zondag","OptionMonday":"Maandag","OptionTuesday":"Dinsdag","OptionWednesday":"Woensdag","OptionThursday":"Donderdag","OptionFriday":"Vrijdag","OptionSaturday":"Zaterdag","HeaderManagement":"Beheer:","OptionMissingImdbId":"IMDb Id ontbreekt","OptionMissingTvdbId":"TheTVDB Id ontbreekt","OptionMissingOverview":"Overzicht ontbreekt","OptionFileMetadataYearMismatch":"Bestands\/Metadata Jaren komen niet overeen","TabGeneral":"Algemeen","TitleSupport":"Ondersteuning","TabLog":"Log","TabAbout":"Over","TabSupporterKey":"Supporter Sleutel","TabBecomeSupporter":"Word Supporter","MediaBrowserHasCommunity":"Media Browser heeft een bloeiende gemeenschap van gebruikers en medewerkers.","CheckoutKnowledgeBase":"Bekijk onze kennisbank om u te helpen om het meeste uit Media Browser krijgen.","SearchKnowledgeBase":"Zoeken in de Kennisbank","VisitTheCommunity":"Bezoek de Gemeenschap","VisitMediaBrowserWebsite":"Bezoek de Media Browser Website","VisitMediaBrowserWebsiteLong":"Bezoek de Media Browser-website voor het laatste nieuws en blijf op de hoogte via de ontwikkelaars blog.","OptionHideUser":"Verberg deze gebruiker op het login-scherm","OptionDisableUser":"Deze account uitschakelen","OptionDisableUserHelp":"Indien uitgeschakeld zal de server geen verbindingen van deze gebruiker toe te staan. Bestaande verbindingen zullen abrupt worden be\u00ebindigd.","HeaderAdvancedControl":"Geavanceerd Beheer","LabelName":"Naam:","OptionAllowUserToManageServer":"Deze gebruiker kan de server te beheren","HeaderFeatureAccess":"Functie toegang","OptionAllowMediaPlayback":"Afspelen van media toestaan","OptionAllowBrowsingLiveTv":"Browsen van live tv toestaan","OptionAllowDeleteLibraryContent":"Deze gebruiker kan bibliotheek-inhoud verwijderen","OptionAllowManageLiveTv":"Beheer van live tv-opnames toestaan","OptionAllowRemoteControlOthers":"Deze gebruiker kan andere gebruikers op afstand besturen","OptionMissingTmdbId":"TMDB Id ontbreekt","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Selecteer","ButtonSearch":"Zoeken","ButtonGroupVersions":"Groepeer Versies","PismoMessage":"Gebruik makend van Pismo File Mount door een geschonken licentie.","PleaseSupportOtherProduces":"Steun A.U.B. ook de andere gratis producten die wij gebruiken:","VersionNumber":"Versie {0}","TabPaths":"Paden","TabServer":"Server","TabTranscoding":"Transcoderen","TitleAdvanced":"Geavanceerd","LabelAutomaticUpdateLevel":"Automatische update niveau","OptionRelease":"Offici\u00eble Release","OptionBeta":"Beta","OptionDev":"Dev (Instabiel)","LabelAllowServerAutoRestart":"Sta de server toe automatisch te herstarten om updates toe te passen","LabelAllowServerAutoRestartHelp":"De server zal alleen opnieuw op tijdens inactieve perioden, wanneer er geen gebruikers actief zijn.","LabelEnableDebugLogging":"Schakkel Foutopsporing logging in","LabelRunServerAtStartup":"Run server bij het opstarten","LabelRunServerAtStartupHelp":"Dit zal de applicatie starten als pictogram in het systeemvak tijdens het opstarten van Windows. Om de Windows-service te starten, schakelt U deze uit en start U de service via het Configuratiescherm van Windows. Houd er rekening mee dat U de service en de applicatie niet tegelijk kunt uitvoeren, U moet dus eerst de applicatie sluiten alvorens U de service start.","ButtonSelectDirectory":"Selecteer map","LabelCustomPaths":"Geef aangepaste paden op waar gewenst. Laat velden leeg om de standaardinstellingen te gebruiken.","LabelCachePath":"Cache pad:","LabelCachePathHelp":"Deze map bevat server cache-bestanden, zoals afbeeldingen.","LabelImagesByNamePath":"Afbeeldingen op naam pad:","LabelImagesByNamePathHelp":"Deze map bevat acteur, artiest, genre en studio-afbeeldingen.","LabelMetadataPath":"Metadata pad:","LabelMetadataPathHelp":"Deze locatie bevat gedownloade afbeeldingen en metagegevens die niet zijn geconfigureerd om te worden opgeslagen in mediamappen .","LabelTranscodingTempPath":"Tijdelijke Transcodeer pad:","LabelTranscodingTempPathHelp":"Deze map bevat werkbestanden die worden gebruikt door de transcoder.","TabBasics":"Basis","TabTV":"TV","TabGames":"Spelen","TabMusic":"Muziek","TabOthers":"Overig","HeaderExtractChapterImagesFor":"Extract hoofdstuk afbeeldingen voor:","OptionMovies":"Films","OptionEpisodes":"Afleveringen","OptionOtherVideos":"Overige Video's","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Schakel de automatische update in van FanArt.tv","LabelAutomaticUpdatesTmdb":"Schakel de automatische update in van TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Schakel de automatische update in van TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Indien ingeschakeld, worden nieuwe afbeeldingen automatisch gedownload wanneer ze zijn toegevoegd aan fanart.tv. Bestaande afbeeldingen zullen niet worden vervangen.","LabelAutomaticUpdatesTmdbHelp":"Indien ingeschakeld, worden nieuwe afbeeldingen automatisch gedownload wanneer ze zijn toegevoegd aan TheMovieDB.org. Bestaande afbeeldingen zullen niet worden vervangen.","LabelAutomaticUpdatesTvdbHelp":"Indien ingeschakeld, worden nieuwe afbeeldingen automatisch gedownload wanneer ze zijn toegevoegd aan TheTVDB.com. Bestaande afbeeldingen zullen niet worden vervangen.","ExtractChapterImagesHelp":"Extraheren van hoofdstuk afbeeldingen zal gast applicaties de mogelijkheid geven om grafische scene selectie menu's weer te geven. Het proces kan traag, cpu-intensief zijn en kan enkele gigabytes aan ruimte in beslag nemen. Het loopt als een nachtelijk geplande taak om 4:00, maar dit is instelbaar bij de geplande taken. Het wordt niet aanbevolen om deze taak uit te voeren tijdens de piekuren.","LabelMetadataDownloadLanguage":"Voorkeurs taal:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Afbeelding opslag conventie:","LabelImageSavingConventionHelp":"Media Browser herkent afbeeldingen van de meeste grote media-applicaties. Het kiezen van uw download conventie is handig als u ook gebruik wilt maken van andere producten.","OptionImageSavingCompatible":"Compatibel - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standaard - MB3\/MB2","ButtonSignIn":"Aanmelden","TitleSignIn":"Aanmelden","HeaderPleaseSignIn":"Gelieve Aan te melden","LabelUser":"Gebruiker:","LabelPassword":"Wachtwoord:","ButtonManualLogin":"Handmatige aanmelding:","PasswordLocalhostMessage":"Wachtwoorden zijn niet vereist bij het aanmelden van localhost.","TabGuide":"Gids","TabChannels":"Kanalen","HeaderChannels":"Kanalen","TabRecordings":"Opnamen","TabScheduled":"Gepland","TabSeries":"Serie","ButtonCancelRecording":"Opname annuleren","HeaderPrePostPadding":"Vooraf\/Achteraf insteling","LabelPrePaddingMinutes":"Minuten vooraf opnemen:","OptionPrePaddingRequired":"Vooraf opnemen is vereist voor opname","LabelPostPaddingMinutes":"Minuten langer opnemen:","OptionPostPaddingRequired":"Langer opnemen is vereist voor opname","HeaderWhatsOnTV":"Nu te zien","HeaderUpcomingTV":"Binnenkort op TV","TabStatus":"Status","TabSettings":"Instellingen","ButtonRefreshGuideData":"Gidsgegevens Vernieuwen","OptionPriority":"Prioriteit","OptionRecordOnAllChannels":"Programma van alle kanalen opnemen","OptionRecordAnytime":"Programma elke keer opnemen","OptionRecordOnlyNewEpisodes":"Alleen nieuwe afleveringen opnemen","HeaderDays":"Dagen","HeaderActiveRecordings":"Actieve Opnames","HeaderLatestRecordings":"Laatste Opnames","HeaderAllRecordings":"Alle Opnames","ButtonPlay":"Afspelen","ButtonEdit":"Bewerken","ButtonRecord":"Opnemen","ButtonDelete":"Verwijderen","ButtonRemove":"Verwijderen","OptionRecordSeries":"Series Opnemen","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Aantal dagen van de gids om te downloaden:","LabelNumberOfGuideDaysHelp":"Het downloaden van meer dagen van de gids gegevens biedt de mogelijkheid verder vooruit te plannen en een beter overzicht geven, maar het zal ook langer duren om te downloaden. Auto kiest op basis van het aantal kanalen.","LabelActiveService":"Actieve Service:","LabelActiveServiceHelp":"Er kunnen meerdere tv plug-ins worden ge\u00efnstalleerd, maar er kan er slechts een per keer actief zijn.","OptionAutomatic":"Auto","LiveTvPluginRequired":"Een Live TV service provider plug-in is vereist om door te gaan.","LiveTvPluginRequiredHelp":"Installeer a.u b een van onze beschikbare plug-ins, zoals Next PVR of ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Pas opties aan per mediatype","OptionDownloadThumbImage":"Miniatuur","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Schijf","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Terug","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primair","HeaderFetchImages":"Verkrijg Afbeeldingen:","HeaderImageSettings":"Afbeeldingsinstellingen","LabelMaxBackdropsPerItem":"Maximum aantal achtergronden per item:","LabelMaxScreenshotsPerItem":"Maximum aantal schermafbeeldingen per item:","LabelMinBackdropDownloadWidth":"Minimale achtergrond breedte om te downloaden:","LabelMinScreenshotDownloadWidth":"Minimale schermafbeeldings- breedte om te downloaden:","ButtonAddScheduledTaskTrigger":"Taak Trigger Toevoegen","HeaderAddScheduledTaskTrigger":"Taak Trigger Toevoegen","ButtonAdd":"Toevoegen","LabelTriggerType":"Trigger Type:","OptionDaily":"Dagelijks","OptionWeekly":"Wekelijks","OptionOnInterval":"Op een interval","OptionOnAppStartup":"Op applicatie start","OptionAfterSystemEvent":"Na een systeem gebeurtenis","LabelDay":"Dag:","LabelTime":"Tijd:","LabelEvent":"Gebeurtenis:","OptionWakeFromSleep":"Uit slaap halen","LabelEveryXMinutes":"Iedere:","HeaderTvTuners":"Tuners","HeaderGallery":"Galerij","HeaderLatestGames":"Nieuwste Spellen","HeaderRecentlyPlayedGames":"Recent gespeelde spellen","TabGameSystems":"Spel Systemen","TitleMediaLibrary":"Media Bibliotheek","TabFolders":"Mappen","TabPathSubstitution":"Pad Vervanging","LabelSeasonZeroDisplayName":"Seizoen 0 weergave naam:","LabelEnableRealtimeMonitor":"Real time monitoring inschakelen","LabelEnableRealtimeMonitorHelp":"Wijzigingen worden direct verwerkt, op ondersteunde bestandssystemen.","ButtonScanLibrary":"Scan Bibliotheek","HeaderNumberOfPlayers":"Afspelers:","OptionAnyNumberOfPlayers":"Elke","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Mappen","HeaderThemeVideos":"Thema Video's","HeaderThemeSongs":"Thema Song's","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards en recensies","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Video's","HeaderSpecialFeatures":"Speciale kenmerken","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Extra onderdelen","ButtonSplitVersionsApart":"Split Versies Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Ontbrekend","LabelOffline":"Offline","PathSubstitutionHelp":"Pad vervangingen worden gebruikt voor het in kaart brengen van een pad op de server naar een pad dat gast applicaties in staat stellen om toegang te krijgen. Doordat gast applicaties directe toegang tot de media op de server hebben kunnen zij in staat zijn om ze direct af te spelen via het netwerk en het gebruik van server resources om te streamen en te transcoderen vermijden.","HeaderFrom":"Van","HeaderTo":"Naar","LabelFrom":"Van:","LabelFromHelp":"Bijvoorbeeld: D:\\Movies (op de server)","LabelTo":"Naar:","LabelToHelp":"Voorbeeld: \\ \\MijnServer\\Movies (een pad waar de gast applicatie toegang toe heeft)","ButtonAddPathSubstitution":"Vervanging toevoegen","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Ontbrekende Afleveringen","OptionUnairedEpisode":"Toekomstige Afleveringen","OptionEpisodeSortName":"Aflevering Sorteer Naam","OptionSeriesSortName":"Serie Naam","OptionTvdbRating":"Tvdb Waardering","HeaderTranscodingQualityPreference":"Transcodeer Kwaliteit voorkeur:","OptionAutomaticTranscodingHelp":"De server zal de kwaliteit en snelheid beslissen","OptionHighSpeedTranscodingHelp":"Lagere kwaliteit, maar sneller coderen","OptionHighQualityTranscodingHelp":"Hogere kwaliteit, maar langzamer codering","OptionMaxQualityTranscodingHelp":"Beste kwaliteit met tragere codering en hoog CPU-gebruik","OptionHighSpeedTranscoding":"Hogere snelheid","OptionHighQualityTranscoding":"Hogere kwaliteit","OptionMaxQualityTranscoding":"Max kwaliteit","OptionEnableDebugTranscodingLogging":"Schakkel Transcodeer Fout opsporing logging in","OptionEnableDebugTranscodingLoggingHelp":"Dit zal zeer grote logbestanden maken en wordt alleen aanbevolen wanneer het nodig is voor het oplossen van problemen.","OptionUpscaling":"Gast applicaties kunnen opgeschaalde video vragen","OptionUpscalingHelp":"In sommige gevallen zal dit resulteren in een betere videokwaliteit, maar zal het CPU-gebruik verhogen.","EditCollectionItemsHelp":"Toevoegen of verwijderen van alle films, series, albums, boeken of games die je wilt groeperen in deze collectie.","HeaderAddTitles":"Titels toevoegen","LabelEnableDlnaPlayTo":"DLNA Afspelen naar inschakelen","LabelEnableDlnaPlayToHelp":"Media Browser kan apparaten detecteren binnen uw netwerk en de mogelijkheid bieden om ze op afstand te besturen.","LabelEnableDlnaDebugLogging":"DLNA foutopsporings log inschakelen","LabelEnableDlnaDebugLoggingHelp":"Dit zal grote logbestanden maken en mag alleen worden gebruikt als dat nodig is voor het oplossen van problemen.","LabelEnableDlnaClientDiscoveryInterval":"Interval voor het zoeken naar gast applicaties (seconden)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Bepaalt de duur in seconden van de interval tussen SSDP zoekopdrachten uitgevoerd door Media Browser.","HeaderCustomDlnaProfiles":"Aangepaste profielen","HeaderSystemDlnaProfiles":"Systeem Profielen","CustomDlnaProfilesHelp":"Maak een aangepast profiel om een \u200b\u200bnieuw apparaat te richten of overschrijf een systeemprofiel.","SystemDlnaProfilesHelp":"System profielen zijn alleen-lezen. Om een \u200b\u200bsysteem profiel te overschrijven, maakt u een aangepast profiel gericht op hetzelfde apparaat.","TitleDashboard":"Dashboard","TabHome":"Start","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"Systeem Paden","LinkCommunity":"Gemeenschap","LinkGithub":"Github","LinkApiDocumentation":"Api Documentatie","LabelFriendlyServerName":"Vriendelijke servernaam:","LabelFriendlyServerNameHelp":"Deze naam wordt gebruikt om deze server te identificeren. Indien leeg gelaten, zal de naam van de computer worden gebruikt.","LabelPreferredDisplayLanguage":"Voorkeurs weergavetaal","LabelPreferredDisplayLanguageHelp":"Het vertalen van Media Browser is een doorlopend project en is nog niet voltooid.","LabelReadHowYouCanContribute":"Lees meer over hoe u kunt bijdragen.","HeaderNewCollection":"Nieuwe Verzamling","NewCollectionNameExample":"Voorbeeld: Star Wars Collectie","OptionSearchForInternetMetadata":"Zoeken op het internet voor afbeeldingen en metadata","ButtonCreate":"Cre\u00ebren","LabelHttpServerPortNumber":"Http server poortnummer:","LabelWebSocketPortNumber":"Web socket poortnummer:","LabelEnableAutomaticPortHelp":"UPnP zorgt geautomatiseerde configuratie van de router voor toegang op afstand. Dit werkt mogelijk niet met sommige routers.","LabelExternalDDNS":"Externe DDNS:","LabelExternalDDNSHelp":"Als u een dynamische DNS heeft kun u die hier invoeren. Media Browser apps zullen het gebruiken om op afstand verbinding te maken.","TabResume":"Hervatten","TabWeather":"Weer","TitleAppSettings":"App Instellingen","LabelMinResumePercentage":"Min hervatten percentage:","LabelMaxResumePercentage":"Max hervatten percentage:","LabelMinResumeDuration":"Min hervatten duur (seconden):","LabelMinResumePercentageHelp":"Titels worden ingesteld als onafgespeeld indien gestopt voordat deze tijd","LabelMaxResumePercentageHelp":"Titels worden ingesteld als volledig afgespeeld als gestopt na deze tijd","LabelMinResumeDurationHelp":"Titels korter dan dit zullen niet hervatbaar zijn"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/pt_BR.json b/MediaBrowser.Server.Implementations/Localization/Server/pt_BR.json index f6dbb2e5ac..c01ae14bcc 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/pt_BR.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/pt_BR.json @@ -1 +1 @@ -{"LabelExit":"Sair","LabelVisitCommunity":"Visitar a Comunidade","LabelGithubWiki":"Wiki do Github","LabelSwagger":"Swagger","LabelStandard":"Padr\u00e3o","LabelViewApiDocumentation":"Ver documenta\u00e7\u00e3o da Api","LabelBrowseLibrary":"Navegar pela Biblioteca","LabelConfigureMediaBrowser":"Configurar Media Browser","LabelOpenLibraryViewer":"Abrir Visualizador da Biblioteca","LabelRestartServer":"Reiniciar Servidor","LabelShowLogWindow":"Mostrar Janela de Log","LabelPrevious":"Anterior","LabelFinish":"Terminar","LabelNext":"Pr\u00f3ximo","LabelYoureDone":"Pronto!","WelcomeToMediaBrowser":"Bem vindo ao Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Este assistente ir\u00e1 gui\u00e1-lo pelo processo de instala\u00e7\u00e3o.","TellUsAboutYourself":"Conte-nos sobre voc\u00ea","LabelYourFirstName":"Seu primeiro nome:","MoreUsersCanBeAddedLater":"Mais usu\u00e1rios podem ser adicionados dentro do Painel.","UserProfilesIntro":"Media Browser inclui suporte a perfis de usu\u00e1rios, permitindo a cada usu\u00e1rio ter suas prefer\u00eancias de visualiza\u00e7\u00e3o, status das reprodu\u00e7\u00f5es e controle dos pais.","LabelWindowsService":"Servi\u00e7o do Windows","AWindowsServiceHasBeenInstalled":"Foi instalado um Servi\u00e7o do Windows.","WindowsServiceIntro1":"O Servidor Media Browser normalmente \u00e9 executado como uma aplica\u00e7\u00e3o de desktop com um \u00edcone na bandeja do sistema, mas se preferir executar como servi\u00e7o pode inici\u00e1-lo no painel de controle de servi\u00e7os do Windows","WindowsServiceIntro2":"Se usar o servi\u00e7o do Windows, por favor certifique-se que n\u00e3o esteja sendo executado ao mesmo tempo que o \u00edcone na bandeja, se for ter\u00e1 que sair da app antes de executar o servi\u00e7o. O servi\u00e7o necessita ser configurado com privil\u00e9gios de administrador no painel de controle. Neste momento o servi\u00e7o n\u00e3o pode se auto-atualizar, por isso novas vers\u00f5es exigir\u00e3o intera\u00e7\u00e3o manual.","WizardCompleted":"Isto \u00e9 todo o necess\u00e1rio. Media Browser iniciou a coleta das informa\u00e7\u00f5es de sua biblioteca de m\u00eddia. Conhe\u00e7a algumas de nossas apps e clique Terminar<\/b> para ver o Painel<\/b>.","LabelConfigureSettings":"Configurar prefer\u00eancias","LabelEnableVideoImageExtraction":"Ativar extra\u00e7\u00e3o de imagens de v\u00eddeo","VideoImageExtractionHelp":"Para v\u00eddeos que n\u00e3o tenham imagens e que n\u00e3o possamos encontrar imagens na internet. Isto aumentar\u00e1 o tempo do rastreamento inicial da biblioteca mas resultar\u00e1 em uma apresenta\u00e7\u00e3o mais bonita.","LabelEnableChapterImageExtractionForMovies":"Extrair imagens de cap\u00edtulos dos Filmes","LabelChapterImageExtractionForMoviesHelp":"Extrair imagens de cap\u00edtulos permitir\u00e1 aos clientes mostrar menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, uso intenso de cpu e muito espa\u00e7o em disco. Ele executa como uma tarefa di\u00e1ria noturna \u00e0s 4:00hs, embora seja configur\u00e1vel na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar durante as horas de pico de uso.","LabelEnableAutomaticPortMapping":"Ativar mapeamento de porta autom\u00e1tico","LabelEnableAutomaticPortMappingHelp":"UPnP permite uma configura\u00e7\u00e3o automatizada do roteador para acesso remoto f\u00e1cil. Isto pode n\u00e3o funcionar em alguns modelos de roteadores.","ButtonOk":"Ok","ButtonCancel":"Cancelar","HeaderSetupLibrary":"Configurar sua biblioteca de m\u00eddias","ButtonAddMediaFolder":"Adicionar pasta de m\u00eddias","LabelFolderType":"Tipo de pasta:","MediaFolderHelpPluginRequired":"* Requer o uso de um plugin, ex. GameBrowser ou MB Bookshelf.","ReferToMediaLibraryWiki":"Consultar wiki da biblioteca de m\u00eddias","LabelCountry":"Pa\u00eds:","LabelLanguage":"Idioma:","HeaderPreferredMetadataLanguage":"Idioma preferido dos metadados:","LabelSaveLocalMetadata":"Salvar artwork e metadados dentro das pastas da m\u00eddia","LabelSaveLocalMetadataHelp":"Salvar artwork e metadados diretamente nas pastas da m\u00eddia, as deixar\u00e1 em um local f\u00e1cil para edit\u00e1-las.","LabelDownloadInternetMetadata":"Baixar artwork e metadados da internet","LabelDownloadInternetMetadataHelp":"Media Browser pode baixar informa\u00e7\u00f5es sobre sua m\u00eddia para melhorar a apresenta\u00e7\u00e3o.","TabPreferences":"Prefer\u00eancias","TabPassword":"Senha","TabLibraryAccess":"Acesso \u00e0 Biblioteca","TabImage":"Imagem","TabProfile":"Perfil","LabelDisplayMissingEpisodesWithinSeasons":"Exibir epis\u00f3dios ausentes dentro das temporadas","LabelUnairedMissingEpisodesWithinSeasons":"Exibir epis\u00f3dios n\u00e3o-exibidos dentro das temporadas","HeaderVideoPlaybackSettings":"Ajustes da Reprodu\u00e7\u00e3o de V\u00eddeo","LabelAudioLanguagePreference":"Prefer\u00eancia do idioma do \u00e1udio:","LabelSubtitleLanguagePreference":"Prefer\u00eancia do idioma da legenda:","LabelDisplayForcedSubtitlesOnly":"Exibir apenas legendas for\u00e7adas","TabProfiles":"Perfis","TabSecurity":"Seguran\u00e7a","ButtonAddUser":"Adicione Usu\u00e1rio","ButtonSave":"Salvar","ButtonResetPassword":"Redefinir Senha","LabelNewPassword":"Nova senha:","LabelNewPasswordConfirm":"Confirmar nova senha:","HeaderCreatePassword":"Criar Senha","LabelCurrentPassword":"Senha atual:","LabelMaxParentalRating":"Classifica\u00e7\u00e3o parental m\u00e1xima permitida:","MaxParentalRatingHelp":"Conte\u00fado com classifica\u00e7\u00e3o maior ser\u00e1 ocultado do usu\u00e1rio.","LibraryAccessHelp":"Selecionar as pastas de m\u00eddia para compartilhar com este usu\u00e1rio. Administradores poder\u00e3o editar todas as pastas usando o gerenciador de metadados.","ButtonDeleteImage":"Apagar Imagem","ButtonUpload":"Carregar","HeaderUploadNewImage":"Carregar Nova Imagem","LabelDropImageHere":"Colar Imagem Aqui","ImageUploadAspectRatioHelp":"Propor\u00e7\u00e3o de Imagem 1:1 Recomendada. Apenas JPG\/PNG","MessageNothingHere":"Nada aqui.","MessagePleaseEnsureInternetMetadata":"Por favor, certifique-se que o download de metadados da internet est\u00e1 habilitado.","TabSuggested":"Sugeridos","TabLatest":"Recentes","TabUpcoming":"Pr\u00f3ximos","TabShows":"S\u00e9ries","TabEpisodes":"Epis\u00f3dios","TabGenres":"G\u00eaneros","TabPeople":"Pessoas","TabNetworks":"Redes","HeaderUsers":"Usu\u00e1rios","HeaderFilters":"Filtros:","ButtonFilter":"Filtro","OptionFavorite":"Favoritos","OptionLikes":"Gostei","OptionDislikes":"N\u00e3o Gostei","OptionActors":"Atores","OptionGuestStars":"Convidados Especiais","OptionDirectors":"Diretores","OptionWriters":"Escritores","OptionProducers":"Produtores","HeaderResume":"Retomar","HeaderNextUp":"Pr\u00f3ximo","NoNextUpItemsMessage":"Nenhum encontrado. Comece assistindo suas s\u00e9ries!","HeaderLatestEpisodes":"\u00daltimos Epis\u00f3dios","HeaderPersonTypes":"Tipos de Pessoa:","TabSongs":"M\u00fasicas","TabAlbums":"\u00c1lbuns","TabArtists":"Artistas","TabAlbumArtists":"Artistas do \u00c1lbum","TabMusicVideos":"V\u00eddeos Musicais","ButtonSort":"Ordenar","HeaderSortBy":"Ordenar Por:","HeaderSortOrder":"Ordem para Ordenar:","OptionPlayed":"Reproduzido","OptionUnplayed":"N\u00e3o-reproduzido","OptionAscending":"Crescente","OptionDescending":"Decrescente","OptionRuntime":"Dura\u00e7\u00e3o","OptionReleaseDate":"Data de Lan\u00e7amento","OptionPlayCount":"N\u00famero Reprodu\u00e7\u00f5es","OptionDatePlayed":"Data da Reprodu\u00e7\u00e3o","OptionDateAdded":"Data da Adi\u00e7\u00e3o","OptionAlbumArtist":"Artista do \u00c1lbum","OptionArtist":"Artista","OptionAlbum":"\u00c1lbum","OptionTrackName":"Nome da Faixa","OptionCommunityRating":"Classifica\u00e7\u00e3o da Comunidade","OptionNameSort":"Nome","OptionFolderSort":"Pastas","OptionBudget":"Or\u00e7amento","OptionRevenue":"Arrecada\u00e7\u00e3o","OptionPoster":"Poster","OptionBackdrop":"Imagem de Fundo","OptionTimeline":"Linha do tempo","OptionThumb":"\u00cdcone","OptionBanner":"Banner","OptionCriticRating":"Classifica\u00e7\u00e3o da Cr\u00edtica","OptionVideoBitrate":"Taxa do V\u00eddeo","OptionResumable":"Retom\u00e1vel","ScheduledTasksHelp":"Clique em uma tarefa para ajustar quando ser\u00e1 executada.","ScheduledTasksTitle":"Tarefas Agendadas","TabMyPlugins":"Meus Plugins","TabCatalog":"Cat\u00e1logo","TabUpdates":"Atualiza\u00e7\u00f5es","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Atualiza\u00e7\u00f5es Autom\u00e1ticas","HeaderUpdateLevel":"N\u00edvel de Atualiza\u00e7\u00e3o","HeaderNowPlaying":"Reproduzindo Agora","HeaderLatestAlbums":"\u00c1lbuns Recentes","HeaderLatestSongs":"M\u00fasicas Recentes","HeaderRecentlyPlayed":"Reprodu\u00e7\u00f5es Recentes","HeaderFrequentlyPlayed":"Reprodu\u00e7\u00f5es Frequentes","DevBuildWarning":"Vers\u00f5es Dev s\u00e3o as mais atuais. Lan\u00e7adas frequentemente, estas vers\u00f5es n\u00e3o foram testadas. A aplica\u00e7\u00e3o pode falhar e v\u00e1rias caracter\u00edsticas podem n\u00e3o funcionar","LabelVideoType":"Tipo de V\u00eddeo:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Caracter\u00edsticas:","OptionHasSubtitles":"Legendas","OptionHasTrailer":"Trailer","OptionHasThemeSong":"M\u00fasica-Tema","OptionHasThemeVideo":"V\u00eddeo-Tema","TabMovies":"Filmes","TabStudios":"Est\u00fadios","TabTrailers":"Trailers","HeaderLatestMovies":"Filmes Recentes","HeaderLatestTrailers":"Trailers Recentes","OptionHasSpecialFeatures":"Caracter\u00edsticas Especiais","OptionImdbRating":"Classifica\u00e7\u00e3o IMDb","OptionParentalRating":"Classifica\u00e7\u00e3o Parental","OptionPremiereDate":"Data da Estr\u00e9ia","TabBasic":"B\u00e1sico","TabAdvanced":"Avan\u00e7ado","HeaderStatus":"Status","OptionContinuing":"Continuando","OptionEnded":"Finalizado","HeaderAirDays":"Dias de Exibi\u00e7\u00e3o:","OptionSunday":"Domingo","OptionMonday":"Segunda","OptionTuesday":"Ter\u00e7a","OptionWednesday":"Quarta","OptionThursday":"Quinta","OptionFriday":"Sexta","OptionSaturday":"S\u00e1bado","HeaderManagement":"Gerenciamento:","OptionMissingImdbId":"Faltando Id IMDb","OptionMissingTvdbId":"Faltando Id TheTVDB","OptionMissingOverview":"Faltando Sinopse","OptionFileMetadataYearMismatch":"Arquivo\/Metadados de Anos n\u00e3o conferem","TabGeneral":"Geral","TitleSupport":"Suporte","TabLog":"Log","TabAbout":"Sobre","TabSupporterKey":"Chave do Colaborador","TabBecomeSupporter":"Torne-se um Colaborador","MediaBrowserHasCommunity":"Media Browser tem uma comunidade que cresce em usu\u00e1rios e colaboradores.","CheckoutKnowledgeBase":"Verifique nossa base de conhecimento para ajud\u00e1-lo a obter o m\u00e1ximo do Media Browser.","SearchKnowledgeBase":"Pesquisar na Base de Conhecimento","VisitTheCommunity":"Visitar a Comunidade","VisitMediaBrowserWebsite":"Visitar o Web Site do Media Browser","VisitMediaBrowserWebsiteLong":"Visite o Web Site do Media Browser para obter as \u00faltimas novidades e atualizar-se com o blog de desenvolvedores.","OptionHideUser":"Oculte este usu\u00e1rio das telas de login","OptionDisableUser":"Desative este usu\u00e1rio","OptionDisableUserHelp":"Se estiver desativado o servidor n\u00e3o permitir\u00e1 nenhuma conex\u00e3o deste usu\u00e1rio. Conex\u00f5es existentes ser\u00e3o abruptamente terminadas.","HeaderAdvancedControl":"Controle Avan\u00e7ado","LabelName":"Nome:","OptionAllowUserToManageServer":"Permitir a este usu\u00e1rio administrar o servidor","HeaderFeatureAccess":"Acesso a Caracter\u00edsticas","OptionAllowMediaPlayback":"Permitir reprodu\u00e7\u00e3o de m\u00eddia","OptionAllowBrowsingLiveTv":"Permitir navega\u00e7\u00e3o na tv ao vivo","OptionAllowDeleteLibraryContent":"Permitir a este usu\u00e1rio apagar conte\u00fado da biblioteca","OptionAllowManageLiveTv":"Permitir a administra\u00e7\u00e3o de grava\u00e7\u00f5es da tv ao vivo","OptionAllowRemoteControlOthers":"Permitir a este usu\u00e1rio controlar remotamente outros usu\u00e1rios","OptionMissingTmdbId":"Faltando Id Tmdb","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Selecionar","ButtonGroupVersions":"Agrupar Vers\u00f5es","PismoMessage":"Utilizando Pismo File Mount atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o","PleaseSupportOtherProduces":"Por favor, apoie outros produtos gr\u00e1tis que utilizamos:","VersionNumber":"Vers\u00e3o {0}","TabPaths":"Caminhos","TabServer":"Servidor","TabTranscoding":"Transcodifica\u00e7\u00e3o","TitleAdvanced":"Avan\u00e7ado","LabelAutomaticUpdateLevel":"N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica","OptionRelease":"Lan\u00e7amento Oficial","OptionBeta":"Beta","OptionDev":"Dev (Inst\u00e1vel)","LabelAllowServerAutoRestart":"Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es","LabelAllowServerAutoRestartHelp":"O servidor s\u00f3 reiniciar\u00e1 durante os per\u00edodos ociosos, quando nenhum usu\u00e1rio estiver ativo.","LabelEnableDebugLogging":"Ativar log de depura\u00e7\u00e3o","LabelRunServerAtStartup":"Executar servidor na inicializa\u00e7\u00e3o","LabelRunServerAtStartupHelp":"Isto abrir\u00e1 o \u00edcone da bandeja de sistema na inicializa\u00e7\u00e3o do windows. Para iniciar o servi\u00e7o do windows, desmarque esta op\u00e7\u00e3o e inicie o servi\u00e7o no painel de controle do windows. Por favor, saiba que voc\u00ea n\u00e3o pode executar os dois ao mesmo tempo, ent\u00e3o ser\u00e1 necess\u00e1rio sair do \u00edcone na bandeja antes de iniciar o servi\u00e7o.","ButtonSelectDirectory":"Selecionar Diret\u00f3rio","LabelCustomPaths":"Defina caminhos personalizados. Deixe os campos em branco para usar o padr\u00e3o.","LabelCachePath":"Caminho do cache:","LabelCachePathHelp":"Esta pasta cont\u00e9m arquivos de cache do servidor como, por exemplo, imagens.","LabelImagesByNamePath":"Caminho do Images by name:","LabelImagesByNamePathHelp":"Esta pasta cont\u00e9m imagens de ator, artista, g\u00eanero e est\u00fadio.","LabelMetadataPath":"Caminho dos Metadados:","LabelMetadataPathHelp":"Esta localiza\u00e7\u00e3o cont\u00e9m artwork e metadados transferidos que n\u00e3o foram configurados para serem armazenados nas pastas de m\u00eddia.","LabelTranscodingTempPath":"Caminho tempor\u00e1rio para transcodifica\u00e7\u00e3o:","LabelTranscodingTempPathHelp":"Esta pasta cont\u00e9m arquivos ativos usados pelo transcodificador.","TabBasics":"B\u00e1sico","TabTV":"TV","TabGames":"Jogos","TabMusic":"M\u00fasica","TabOthers":"Outros","HeaderExtractChapterImagesFor":"Extrair imagens de cap\u00edtulos para:","OptionMovies":"Filmes","OptionEpisodes":"Epis\u00f3dios","OptionOtherVideos":"Outros V\u00eddeos","TitleMetadata":"Metadados","LabelAutomaticUpdatesFanart":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas de FanArt.tv","LabelAutomaticUpdatesTmdb":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas de The MovieDB.org","LabelAutomaticUpdatesTvdb":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas de TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao fanart.tv. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas.","LabelAutomaticUpdatesTmdbHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao TheMovieDB.org. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas.","LabelAutomaticUpdatesTvdbHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao TheTVDB.com. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas.","ExtractChapterImagesHelp":"Extrair imagens de cap\u00edtulos permitir\u00e1 aos clientes mostrar menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, uso intensivo de cpu e pode exigir bastante espa\u00e7o em disco. Ele \u00e9 executado \u00e0s 4 hs da madrugada, embora isto possa ser configur\u00e1vel na \u00e1rea de tarefas agendadas. n\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de pico de uso.","LabelMetadataDownloadLanguage":"Idioma preferido:","ButtonAutoScroll":"Auto-rolagem","LabelImageSavingConvention":"Conven\u00e7\u00e3o para salvar a imagem:","LabelImageSavingConventionHelp":"O Media Browser reconhece imagens da maioria das aplica\u00e7\u00f5es de m\u00eddia. Escolher a conven\u00e7\u00e3o de transfer\u00eancia \u00e9 \u00fatil se voc\u00ea usa tamb\u00e9m outros produtos.","OptionImageSavingCompatible":"Compat\u00edvel - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Padr\u00e3o - MB3\/MB2","ButtonSignIn":"Iniciar Sess\u00e3o","TitleSignIn":"Iniciar Sess\u00e3o","HeaderPleaseSignIn":"Por favor, inicie a sess\u00e3o","LabelUser":"Usu\u00e1rio:","LabelPassword":"Senha:","ButtonManualLogin":"Login Manual:","PasswordLocalhostMessage":"Senhas n\u00e3o s\u00e3o exigidas quando iniciar a sess\u00e3o do host local.","TabGuide":"Guia","TabChannels":"Canais","HeaderChannels":"Canais","TabRecordings":"Grava\u00e7\u00f5es","TabScheduled":"Agendada","TabSeries":"S\u00e9ries","ButtonCancelRecording":"Cancelar Grava\u00e7\u00e3o","HeaderPrePostPadding":"Pr\u00e9\/P\u00f3s Preenchimento","LabelPrePaddingMinutes":"Minutos de Pre-padding:","OptionPrePaddingRequired":"Pre-padding \u00e9 necess\u00e1rio para poder gravar.","LabelPostPaddingMinutes":"Minutos de Post-padding:","OptionPostPaddingRequired":"Post-padding \u00e9 necess\u00e1rio para poder gravar.","HeaderWhatsOnTV":"No ar","HeaderUpcomingTV":"Breve na TV","TabStatus":"Status","TabSettings":"Ajustes","ButtonRefreshGuideData":"Atualizar Dados do Guia","OptionPriority":"Prioridade","OptionRecordOnAllChannels":"Gravar programa em todos os canais","OptionRecordAnytime":"Gravar programa a qualquer hora","OptionRecordOnlyNewEpisodes":"Gravar apenas novos epis\u00f3dios","HeaderDays":"Dias","HeaderActiveRecordings":"Grava\u00e7\u00f5es Ativas","HeaderLatestRecordings":"Grava\u00e7\u00f5es Recentes","HeaderAllRecordings":"Todas as Grava\u00e7\u00f5es","ButtonPlay":"Reproduzir","ButtonEdit":"Editar","ButtonRecord":"Gravar","ButtonDelete":"Apagar","OptionRecordSeries":"Gravar S\u00e9ries","HeaderDetails":"Detalhes","TitleLiveTV":"TV ao Vivo","LabelNumberOfGuideDays":"N\u00famero de dias de dados do guia para transferir:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Sair","LabelVisitCommunity":"Visitar a Comunidade","LabelGithubWiki":"Wiki do Github","LabelSwagger":"Swagger","LabelStandard":"Padr\u00e3o","LabelViewApiDocumentation":"Ver documenta\u00e7\u00e3o da Api","LabelBrowseLibrary":"Navegar pela Biblioteca","LabelConfigureMediaBrowser":"Configurar Media Browser","LabelOpenLibraryViewer":"Abrir Visualizador da Biblioteca","LabelRestartServer":"Reiniciar Servidor","LabelShowLogWindow":"Mostrar Janela de Log","LabelPrevious":"Anterior","LabelFinish":"Terminar","LabelNext":"Pr\u00f3ximo","LabelYoureDone":"Pronto!","WelcomeToMediaBrowser":"Bem vindo ao Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Este assistente ir\u00e1 gui\u00e1-lo pelo processo de instala\u00e7\u00e3o.","TellUsAboutYourself":"Conte-nos sobre voc\u00ea","LabelYourFirstName":"Seu primeiro nome:","MoreUsersCanBeAddedLater":"Mais usu\u00e1rios podem ser adicionados dentro do Painel.","UserProfilesIntro":"Media Browser inclui suporte a perfis de usu\u00e1rios, permitindo a cada usu\u00e1rio ter suas prefer\u00eancias de visualiza\u00e7\u00e3o, status das reprodu\u00e7\u00f5es e controle dos pais.","LabelWindowsService":"Servi\u00e7o do Windows","AWindowsServiceHasBeenInstalled":"Foi instalado um Servi\u00e7o do Windows.","WindowsServiceIntro1":"O Servidor Media Browser normalmente \u00e9 executado como uma aplica\u00e7\u00e3o de desktop com um \u00edcone na bandeja do sistema, mas se preferir executar como servi\u00e7o pode inici\u00e1-lo no painel de controle de servi\u00e7os do Windows","WindowsServiceIntro2":"Se usar o servi\u00e7o do Windows, por favor certifique-se que n\u00e3o esteja sendo executado ao mesmo tempo que o \u00edcone na bandeja, se for ter\u00e1 que sair da app antes de executar o servi\u00e7o. O servi\u00e7o necessita ser configurado com privil\u00e9gios de administrador no painel de controle. Neste momento o servi\u00e7o n\u00e3o pode se auto-atualizar, por isso novas vers\u00f5es exigir\u00e3o intera\u00e7\u00e3o manual.","WizardCompleted":"Isto \u00e9 todo o necess\u00e1rio. Media Browser iniciou a coleta das informa\u00e7\u00f5es de sua biblioteca de m\u00eddia. Conhe\u00e7a algumas de nossas apps e clique Terminar<\/b> para ver o Painel<\/b>.","LabelConfigureSettings":"Configurar prefer\u00eancias","LabelEnableVideoImageExtraction":"Ativar extra\u00e7\u00e3o de imagens de v\u00eddeo","VideoImageExtractionHelp":"Para v\u00eddeos que n\u00e3o tenham imagens e que n\u00e3o possamos encontrar imagens na internet. Isto aumentar\u00e1 o tempo do rastreamento inicial da biblioteca mas resultar\u00e1 em uma apresenta\u00e7\u00e3o mais bonita.","LabelEnableChapterImageExtractionForMovies":"Extrair imagens de cap\u00edtulos dos Filmes","LabelChapterImageExtractionForMoviesHelp":"Extrair imagens de cap\u00edtulos permitir\u00e1 aos clientes mostrar menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, uso intenso de cpu e muito espa\u00e7o em disco. Ele executa como uma tarefa di\u00e1ria noturna \u00e0s 4:00hs, embora seja configur\u00e1vel na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar durante as horas de pico de uso.","LabelEnableAutomaticPortMapping":"Ativar mapeamento de porta autom\u00e1tico","LabelEnableAutomaticPortMappingHelp":"UPnP permite uma configura\u00e7\u00e3o automatizada do roteador para acesso remoto f\u00e1cil. Isto pode n\u00e3o funcionar em alguns modelos de roteadores.","ButtonOk":"Ok","ButtonCancel":"Cancelar","ButtonNew":"New","HeaderSetupLibrary":"Configurar sua biblioteca de m\u00eddias","ButtonAddMediaFolder":"Adicionar pasta de m\u00eddias","LabelFolderType":"Tipo de pasta:","MediaFolderHelpPluginRequired":"* Requer o uso de um plugin, ex. GameBrowser ou MB Bookshelf.","ReferToMediaLibraryWiki":"Consultar wiki da biblioteca de m\u00eddias","LabelCountry":"Pa\u00eds:","LabelLanguage":"Idioma:","HeaderPreferredMetadataLanguage":"Idioma preferido dos metadados:","LabelSaveLocalMetadata":"Salvar artwork e metadados dentro das pastas da m\u00eddia","LabelSaveLocalMetadataHelp":"Salvar artwork e metadados diretamente nas pastas da m\u00eddia, as deixar\u00e1 em um local f\u00e1cil para edit\u00e1-las.","LabelDownloadInternetMetadata":"Baixar artwork e metadados da internet","LabelDownloadInternetMetadataHelp":"Media Browser pode baixar informa\u00e7\u00f5es sobre sua m\u00eddia para melhorar a apresenta\u00e7\u00e3o.","TabPreferences":"Prefer\u00eancias","TabPassword":"Senha","TabLibraryAccess":"Acesso \u00e0 Biblioteca","TabImage":"Imagem","TabProfile":"Perfil","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Exibir epis\u00f3dios ausentes dentro das temporadas","LabelUnairedMissingEpisodesWithinSeasons":"Exibir epis\u00f3dios por estrear dentro das temporadas","HeaderVideoPlaybackSettings":"Ajustes da Reprodu\u00e7\u00e3o de V\u00eddeo","LabelAudioLanguagePreference":"Prefer\u00eancia do idioma do \u00e1udio:","LabelSubtitleLanguagePreference":"Prefer\u00eancia do idioma da legenda:","LabelDisplayForcedSubtitlesOnly":"Exibir apenas legendas for\u00e7adas","TabProfiles":"Perfis","TabSecurity":"Seguran\u00e7a","ButtonAddUser":"Adicione Usu\u00e1rio","ButtonSave":"Salvar","ButtonResetPassword":"Redefinir Senha","LabelNewPassword":"Nova senha:","LabelNewPasswordConfirm":"Confirmar nova senha:","HeaderCreatePassword":"Criar Senha","LabelCurrentPassword":"Senha atual:","LabelMaxParentalRating":"Classifica\u00e7\u00e3o parental m\u00e1xima permitida:","MaxParentalRatingHelp":"Conte\u00fado com classifica\u00e7\u00e3o maior ser\u00e1 ocultado do usu\u00e1rio.","LibraryAccessHelp":"Selecionar as pastas de m\u00eddia para compartilhar com este usu\u00e1rio. Administradores poder\u00e3o editar todas as pastas usando o gerenciador de metadados.","ButtonDeleteImage":"Apagar Imagem","ButtonUpload":"Carregar","HeaderUploadNewImage":"Carregar Nova Imagem","LabelDropImageHere":"Colar Imagem Aqui","ImageUploadAspectRatioHelp":"Propor\u00e7\u00e3o de Imagem 1:1 Recomendada. Apenas JPG\/PNG","MessageNothingHere":"Nada aqui.","MessagePleaseEnsureInternetMetadata":"Por favor, certifique-se que o download de metadados da internet est\u00e1 habilitado.","TabSuggested":"Sugeridos","TabLatest":"Recentes","TabUpcoming":"Pr\u00f3ximos","TabShows":"S\u00e9ries","TabEpisodes":"Epis\u00f3dios","TabGenres":"G\u00eaneros","TabPeople":"Pessoas","TabNetworks":"Redes","HeaderUsers":"Usu\u00e1rios","HeaderFilters":"Filtros:","ButtonFilter":"Filtro","OptionFavorite":"Favoritos","OptionLikes":"Gostei","OptionDislikes":"N\u00e3o Gostei","OptionActors":"Atores","OptionGuestStars":"Convidados Especiais","OptionDirectors":"Diretores","OptionWriters":"Escritores","OptionProducers":"Produtores","HeaderResume":"Retomar","HeaderNextUp":"Pr\u00f3ximo","NoNextUpItemsMessage":"Nenhum encontrado. Comece assistindo suas s\u00e9ries!","HeaderLatestEpisodes":"\u00daltimos Epis\u00f3dios","HeaderPersonTypes":"Tipos de Pessoa:","TabSongs":"M\u00fasicas","TabAlbums":"\u00c1lbuns","TabArtists":"Artistas","TabAlbumArtists":"Artistas do \u00c1lbum","TabMusicVideos":"V\u00eddeos Musicais","ButtonSort":"Ordenar","HeaderSortBy":"Ordenar Por:","HeaderSortOrder":"Ordem para Ordenar:","OptionPlayed":"Reproduzido","OptionUnplayed":"N\u00e3o-reproduzido","OptionAscending":"Crescente","OptionDescending":"Decrescente","OptionRuntime":"Dura\u00e7\u00e3o","OptionReleaseDate":"Data de Lan\u00e7amento","OptionPlayCount":"N\u00famero Reprodu\u00e7\u00f5es","OptionDatePlayed":"Data da Reprodu\u00e7\u00e3o","OptionDateAdded":"Data da Adi\u00e7\u00e3o","OptionAlbumArtist":"Artista do \u00c1lbum","OptionArtist":"Artista","OptionAlbum":"\u00c1lbum","OptionTrackName":"Nome da Faixa","OptionCommunityRating":"Classifica\u00e7\u00e3o da Comunidade","OptionNameSort":"Nome","OptionFolderSort":"Pastas","OptionBudget":"Or\u00e7amento","OptionRevenue":"Arrecada\u00e7\u00e3o","OptionPoster":"Poster","OptionBackdrop":"Imagem de Fundo","OptionTimeline":"Linha do tempo","OptionThumb":"\u00cdcone","OptionBanner":"Banner","OptionCriticRating":"Classifica\u00e7\u00e3o da Cr\u00edtica","OptionVideoBitrate":"Taxa do V\u00eddeo","OptionResumable":"Retom\u00e1vel","ScheduledTasksHelp":"Clique em uma tarefa para ajustar quando ser\u00e1 executada.","ScheduledTasksTitle":"Tarefas Agendadas","TabMyPlugins":"Meus Plugins","TabCatalog":"Cat\u00e1logo","TabUpdates":"Atualiza\u00e7\u00f5es","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Atualiza\u00e7\u00f5es Autom\u00e1ticas","HeaderUpdateLevel":"N\u00edvel de Atualiza\u00e7\u00e3o","HeaderNowPlaying":"Reproduzindo Agora","HeaderLatestAlbums":"\u00c1lbuns Recentes","HeaderLatestSongs":"M\u00fasicas Recentes","HeaderRecentlyPlayed":"Reprodu\u00e7\u00f5es Recentes","HeaderFrequentlyPlayed":"Reprodu\u00e7\u00f5es Frequentes","DevBuildWarning":"Vers\u00f5es Dev s\u00e3o as mais atuais. Lan\u00e7adas frequentemente, estas vers\u00f5es n\u00e3o foram testadas. A aplica\u00e7\u00e3o pode falhar e v\u00e1rias caracter\u00edsticas podem n\u00e3o funcionar","LabelVideoType":"Tipo de V\u00eddeo:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Caracter\u00edsticas:","OptionHasSubtitles":"Legendas","OptionHasTrailer":"Trailer","OptionHasThemeSong":"M\u00fasica-Tema","OptionHasThemeVideo":"V\u00eddeo-Tema","TabMovies":"Filmes","TabStudios":"Est\u00fadios","TabTrailers":"Trailers","HeaderLatestMovies":"Filmes Recentes","HeaderLatestTrailers":"Trailers Recentes","OptionHasSpecialFeatures":"Caracter\u00edsticas Especiais","OptionImdbRating":"Classifica\u00e7\u00e3o IMDb","OptionParentalRating":"Classifica\u00e7\u00e3o Parental","OptionPremiereDate":"Data da Estr\u00e9ia","TabBasic":"B\u00e1sico","TabAdvanced":"Avan\u00e7ado","HeaderStatus":"Status","OptionContinuing":"Continuando","OptionEnded":"Finalizado","HeaderAirDays":"Dias de Exibi\u00e7\u00e3o:","OptionSunday":"Domingo","OptionMonday":"Segunda","OptionTuesday":"Ter\u00e7a","OptionWednesday":"Quarta","OptionThursday":"Quinta","OptionFriday":"Sexta","OptionSaturday":"S\u00e1bado","HeaderManagement":"Gerenciamento:","OptionMissingImdbId":"Faltando Id IMDb","OptionMissingTvdbId":"Faltando Id TheTVDB","OptionMissingOverview":"Faltando Sinopse","OptionFileMetadataYearMismatch":"Arquivo\/Metadados de Anos n\u00e3o conferem","TabGeneral":"Geral","TitleSupport":"Suporte","TabLog":"Log","TabAbout":"Sobre","TabSupporterKey":"Chave do Colaborador","TabBecomeSupporter":"Torne-se um Colaborador","MediaBrowserHasCommunity":"Media Browser tem uma comunidade que cresce em usu\u00e1rios e colaboradores.","CheckoutKnowledgeBase":"Verifique nossa base de conhecimento para ajud\u00e1-lo a obter o m\u00e1ximo do Media Browser.","SearchKnowledgeBase":"Pesquisar na Base de Conhecimento","VisitTheCommunity":"Visitar a Comunidade","VisitMediaBrowserWebsite":"Visitar o Web Site do Media Browser","VisitMediaBrowserWebsiteLong":"Visite o Web Site do Media Browser para obter as \u00faltimas novidades e atualizar-se com o blog de desenvolvedores.","OptionHideUser":"Oculte este usu\u00e1rio das telas de login","OptionDisableUser":"Desative este usu\u00e1rio","OptionDisableUserHelp":"Se estiver desativado o servidor n\u00e3o permitir\u00e1 nenhuma conex\u00e3o deste usu\u00e1rio. Conex\u00f5es existentes ser\u00e3o abruptamente terminadas.","HeaderAdvancedControl":"Controle Avan\u00e7ado","LabelName":"Nome:","OptionAllowUserToManageServer":"Permitir a este usu\u00e1rio administrar o servidor","HeaderFeatureAccess":"Acesso a Caracter\u00edsticas","OptionAllowMediaPlayback":"Permitir reprodu\u00e7\u00e3o de m\u00eddia","OptionAllowBrowsingLiveTv":"Permitir navega\u00e7\u00e3o na tv ao vivo","OptionAllowDeleteLibraryContent":"Permitir a este usu\u00e1rio apagar conte\u00fado da biblioteca","OptionAllowManageLiveTv":"Permitir a administra\u00e7\u00e3o de grava\u00e7\u00f5es da tv ao vivo","OptionAllowRemoteControlOthers":"Permitir a este usu\u00e1rio controlar remotamente outros usu\u00e1rios","OptionMissingTmdbId":"Faltando Id Tmdb","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Selecionar","ButtonSearch":"Search","ButtonGroupVersions":"Agrupar Vers\u00f5es","PismoMessage":"Utilizando Pismo File Mount atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o","PleaseSupportOtherProduces":"Por favor, apoie outros produtos gr\u00e1tis que utilizamos:","VersionNumber":"Vers\u00e3o {0}","TabPaths":"Caminhos","TabServer":"Servidor","TabTranscoding":"Transcodifica\u00e7\u00e3o","TitleAdvanced":"Avan\u00e7ado","LabelAutomaticUpdateLevel":"N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica","OptionRelease":"Lan\u00e7amento Oficial","OptionBeta":"Beta","OptionDev":"Dev (Inst\u00e1vel)","LabelAllowServerAutoRestart":"Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es","LabelAllowServerAutoRestartHelp":"O servidor s\u00f3 reiniciar\u00e1 durante os per\u00edodos ociosos, quando nenhum usu\u00e1rio estiver ativo.","LabelEnableDebugLogging":"Ativar log de depura\u00e7\u00e3o","LabelRunServerAtStartup":"Executar servidor na inicializa\u00e7\u00e3o","LabelRunServerAtStartupHelp":"Isto abrir\u00e1 o \u00edcone da bandeja de sistema na inicializa\u00e7\u00e3o do windows. Para iniciar o servi\u00e7o do windows, desmarque esta op\u00e7\u00e3o e inicie o servi\u00e7o no painel de controle do windows. Por favor, saiba que voc\u00ea n\u00e3o pode executar os dois ao mesmo tempo, ent\u00e3o ser\u00e1 necess\u00e1rio sair do \u00edcone na bandeja antes de iniciar o servi\u00e7o.","ButtonSelectDirectory":"Selecionar Diret\u00f3rio","LabelCustomPaths":"Defina caminhos personalizados. Deixe os campos em branco para usar o padr\u00e3o.","LabelCachePath":"Caminho do cache:","LabelCachePathHelp":"Esta pasta cont\u00e9m arquivos de cache do servidor como, por exemplo, imagens.","LabelImagesByNamePath":"Caminho do Images by name:","LabelImagesByNamePathHelp":"Esta pasta cont\u00e9m imagens de ator, artista, g\u00eanero e est\u00fadio.","LabelMetadataPath":"Caminho dos Metadados:","LabelMetadataPathHelp":"Esta localiza\u00e7\u00e3o cont\u00e9m artwork e metadados transferidos que n\u00e3o foram configurados para serem armazenados nas pastas de m\u00eddia.","LabelTranscodingTempPath":"Caminho tempor\u00e1rio para transcodifica\u00e7\u00e3o:","LabelTranscodingTempPathHelp":"Esta pasta cont\u00e9m arquivos ativos usados pelo transcodificador.","TabBasics":"B\u00e1sico","TabTV":"TV","TabGames":"Jogos","TabMusic":"M\u00fasica","TabOthers":"Outros","HeaderExtractChapterImagesFor":"Extrair imagens de cap\u00edtulos para:","OptionMovies":"Filmes","OptionEpisodes":"Epis\u00f3dios","OptionOtherVideos":"Outros V\u00eddeos","TitleMetadata":"Metadados","LabelAutomaticUpdatesFanart":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas de FanArt.tv","LabelAutomaticUpdatesTmdb":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas de The MovieDB.org","LabelAutomaticUpdatesTvdb":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas de TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao fanart.tv. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas.","LabelAutomaticUpdatesTmdbHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao TheMovieDB.org. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas.","LabelAutomaticUpdatesTvdbHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao TheTVDB.com. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas.","ExtractChapterImagesHelp":"Extrair imagens de cap\u00edtulos permitir\u00e1 aos clientes mostrar menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, uso intensivo de cpu e pode exigir bastante espa\u00e7o em disco. Ele \u00e9 executado \u00e0s 4 hs da madrugada, embora isto possa ser configur\u00e1vel na \u00e1rea de tarefas agendadas. n\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de pico de uso.","LabelMetadataDownloadLanguage":"Idioma preferido:","ButtonAutoScroll":"Auto-rolagem","LabelImageSavingConvention":"Conven\u00e7\u00e3o para salvar a imagem:","LabelImageSavingConventionHelp":"O Media Browser reconhece imagens da maioria das aplica\u00e7\u00f5es de m\u00eddia. Escolher a conven\u00e7\u00e3o de transfer\u00eancia \u00e9 \u00fatil se voc\u00ea usa tamb\u00e9m outros produtos.","OptionImageSavingCompatible":"Compat\u00edvel - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Padr\u00e3o - MB3\/MB2","ButtonSignIn":"Iniciar Sess\u00e3o","TitleSignIn":"Iniciar Sess\u00e3o","HeaderPleaseSignIn":"Por favor, inicie a sess\u00e3o","LabelUser":"Usu\u00e1rio:","LabelPassword":"Senha:","ButtonManualLogin":"Login Manual:","PasswordLocalhostMessage":"Senhas n\u00e3o s\u00e3o exigidas quando iniciar a sess\u00e3o do host local.","TabGuide":"Guia","TabChannels":"Canais","HeaderChannels":"Canais","TabRecordings":"Grava\u00e7\u00f5es","TabScheduled":"Agendada","TabSeries":"S\u00e9ries","ButtonCancelRecording":"Cancelar Grava\u00e7\u00e3o","HeaderPrePostPadding":"Pr\u00e9\/P\u00f3s Preenchimento","LabelPrePaddingMinutes":"Minutos de Pre-padding:","OptionPrePaddingRequired":"Pre-padding \u00e9 necess\u00e1rio para poder gravar.","LabelPostPaddingMinutes":"Minutos de Post-padding:","OptionPostPaddingRequired":"Post-padding \u00e9 necess\u00e1rio para poder gravar.","HeaderWhatsOnTV":"No ar","HeaderUpcomingTV":"Breve na TV","TabStatus":"Status","TabSettings":"Ajustes","ButtonRefreshGuideData":"Atualizar Dados do Guia","OptionPriority":"Prioridade","OptionRecordOnAllChannels":"Gravar programa em todos os canais","OptionRecordAnytime":"Gravar programa a qualquer hora","OptionRecordOnlyNewEpisodes":"Gravar apenas novos epis\u00f3dios","HeaderDays":"Dias","HeaderActiveRecordings":"Grava\u00e7\u00f5es Ativas","HeaderLatestRecordings":"Grava\u00e7\u00f5es Recentes","HeaderAllRecordings":"Todas as Grava\u00e7\u00f5es","ButtonPlay":"Reproduzir","ButtonEdit":"Editar","ButtonRecord":"Gravar","ButtonDelete":"Apagar","ButtonRemove":"Remove","OptionRecordSeries":"Gravar S\u00e9ries","HeaderDetails":"Detalhes","TitleLiveTV":"TV ao Vivo","LabelNumberOfGuideDays":"N\u00famero de dias de dados do guia para transferir:","LabelNumberOfGuideDaysHelp":"Transferir mais dias de dados do guia permite agendar com mais anteced\u00eancia e ver mais itens, mas tamb\u00e9m levar\u00e1 mais tempo para transferir. Auto escolher\u00e1 com base no n\u00famero de canais.","LabelActiveService":"Servi\u00e7o Ativo:","LabelActiveServiceHelp":"V\u00e1rios plugins de tv podem ser instalados mas apenas um pode estar ativo de cada vez.","OptionAutomatic":"Auto","LiveTvPluginRequired":"Um provedor de servi\u00e7o de TV ao Vivo \u00e9 necess\u00e1rio para continuar.","LiveTvPluginRequiredHelp":"Por favor, instale um de nossos plugins dispon\u00edveis como, por exemplo, Next Pvr ou ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Personalize op\u00e7\u00f5es por tipo de m\u00eddia","OptionDownloadThumbImage":"\u00cdcone","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Caixa","OptionDownloadDiscImage":"Disco","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Traseira","OptionDownloadArtImage":"Arte","OptionDownloadPrimaryImage":"Prim\u00e1ria","HeaderFetchImages":"Buscar Imagens:","HeaderImageSettings":"Ajustes da Imagem","LabelMaxBackdropsPerItem":"N\u00famero m\u00e1ximo de imagens de fundo por item:","LabelMaxScreenshotsPerItem":"N\u00famero m\u00e1ximo de imagens de tela por item:","LabelMinBackdropDownloadWidth":"Tamanho m\u00ednimo da imagem de fundo a transferir:","LabelMinScreenshotDownloadWidth":"Tamanho m\u00ednimo da imagem de tela a transferir:","ButtonAddScheduledTaskTrigger":"Adicionar Disparador da Tarefa","HeaderAddScheduledTaskTrigger":"Adicionar Disparador da Tarefa","ButtonAdd":"Adicionar","LabelTriggerType":"Tipo de Disparador:","OptionDaily":"Di\u00e1ria","OptionWeekly":"Semanal","OptionOnInterval":"Em um intervalo","OptionOnAppStartup":"No in\u00edcio da aplica\u00e7\u00e3o","OptionAfterSystemEvent":"Depois de um evento do sistema","LabelDay":"Dia:","LabelTime":"Hora:","LabelEvent":"Evento:","OptionWakeFromSleep":"Despertar da hiberna\u00e7\u00e3o","LabelEveryXMinutes":"Todo(a):","HeaderTvTuners":"Sintonizador","HeaderGallery":"Galeria","HeaderLatestGames":"Jogos Recentes","HeaderRecentlyPlayedGames":"Jogos Jogados Recentemente","TabGameSystems":"Sistemas de Jogo","TitleMediaLibrary":"Biblioteca de M\u00eddia","TabFolders":"Pastas","TabPathSubstitution":"Substitui\u00e7\u00e3o de Caminho","LabelSeasonZeroDisplayName":"Nome de exibi\u00e7\u00e3o da temporada 0:","LabelEnableRealtimeMonitor":"Ativar monitoramento em tempo real","LabelEnableRealtimeMonitorHelp":"As altera\u00e7\u00f5es ser\u00e3o processadas imediatamente em sistemas de arquivos suportados.","ButtonScanLibrary":"Rastrear Biblioteca","HeaderNumberOfPlayers":"Reprodutores:","OptionAnyNumberOfPlayers":"Qualquer","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Pastas de M\u00eddia","HeaderThemeVideos":"V\u00eddeos-Tema","HeaderThemeSongs":"M\u00fasicas-Tema","HeaderScenes":"Cenas","HeaderAwardsAndReviews":"Pr\u00eamios e Cr\u00edticas","HeaderSoundtracks":"Trilhas Sonoras","HeaderMusicVideos":"V\u00eddeos de M\u00fasica","HeaderSpecialFeatures":"Caracter\u00edsticas Especiais","HeaderCastCrew":"Elenco & Equipe","HeaderAdditionalParts":"Partes Adicionais","ButtonSplitVersionsApart":"Separar Vers\u00f5es","ButtonPlayTrailer":"Trailer","LabelMissing":"Ausente","LabelOffline":"Desconectado","PathSubstitutionHelp":"Substitui\u00e7\u00f5es de caminho s\u00e3o usadas para mapear um caminho no servidor que possa ser acessado pelos clientes. Ao permitir o acesso dos clientes \u00e0 m\u00eddia no servidor, eles podem reproduzir diretamente atrav\u00e9s da rede e evitar o uso de recursos do servidor para fazer stream ou transcodifica\u00e7\u00e3o.","HeaderFrom":"De","HeaderTo":"Para","LabelFrom":"De:","LabelFromHelp":"Exemplo: D:\\Filmes (no servidor)","LabelTo":"Para:","LabelToHelp":"Exemplo: \\\\MeuServidor\\Filmes (um caminho que os clientes possam acessar)","ButtonAddPathSubstitution":"Adicionar Substitui\u00e7\u00e3o","OptionSpecialEpisode":"Especiais","OptionMissingEpisode":"Epis\u00f3dios Ausentes","OptionUnairedEpisode":"Epis\u00f3dios Por Estrear","OptionEpisodeSortName":"Nome de Ordena\u00e7\u00e3o do Epis\u00f3dio","OptionSeriesSortName":"Nome da S\u00e9rie","OptionTvdbRating":"Classifica\u00e7\u00e3o Tvdb","HeaderTranscodingQualityPreference":"Prefer\u00eancia de Qualidade de Transcodifica\u00e7\u00e3o:","OptionAutomaticTranscodingHelp":"O servidor decidir\u00e1 a qualidade e velocidade","OptionHighSpeedTranscodingHelp":"Qualidade pior, mas codifica\u00e7\u00e3o mais r\u00e1pida","OptionHighQualityTranscodingHelp":"Qualidade melhor, mas codifica\u00e7\u00e3o mais lenta","OptionMaxQualityTranscodingHelp":"A melhor qualidade com codifica\u00e7\u00e3o mais lenta e alto uso de CPU","OptionHighSpeedTranscoding":"Velocidade mais alta","OptionHighQualityTranscoding":"Qualidade melhor","OptionMaxQualityTranscoding":"Max qualidade","OptionEnableDebugTranscodingLogging":"Ativar log de depura\u00e7\u00e3o de transcodifica\u00e7\u00e3o","OptionEnableDebugTranscodingLoggingHelp":"Isto criar\u00e1 arquivos de log muito grandes e s\u00f3 \u00e9 recomendado para identificar problemas.","OptionUpscaling":"Permitir aos clientes solicitar o aumento da resolu\u00e7\u00e3o do v\u00eddeo","OptionUpscalingHelp":"Em alguns casos, isto resultar\u00e1 em melhor qualidade de v\u00eddeo mas aumentar\u00e1 o uso de CPU.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/pt_PT.json b/MediaBrowser.Server.Implementations/Localization/Server/pt_PT.json index 668a77d3cb..d36260eefe 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/pt_PT.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/pt_PT.json @@ -1 +1 @@ -{"LabelExit":"Sair","LabelVisitCommunity":"Visitar a Comunidade","LabelGithubWiki":"Wiki do Github","LabelSwagger":"Swagger","LabelStandard":"Padr\u00e3o","LabelViewApiDocumentation":"Ver Documenta\u00e7\u00e3o da API","LabelBrowseLibrary":"Navegar pela Biblioteca","LabelConfigureMediaBrowser":"Configurar o Media Browser","LabelOpenLibraryViewer":"Abrir Visualizador da Biblioteca","LabelRestartServer":"Reiniciar Servidor","LabelShowLogWindow":"Mostrar Janela de Log","LabelPrevious":"Anterior","LabelFinish":"Terminar","LabelNext":"Seguinte","LabelYoureDone":"Concluiu!","WelcomeToMediaBrowser":"Bem-vindo ao Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Este assistente ir\u00e1 ajud\u00e1-lo durante o processo de configura\u00e7\u00e3o.","TellUsAboutYourself":"Fale-nos sobre si","LabelYourFirstName":"O seu primeiro nome:","MoreUsersCanBeAddedLater":"\u00c9 poss\u00edvel adicionar utilizadores mais tarde no Painel de Controlo.","UserProfilesIntro":"O Media Browser inclui suporte a perfis de utilizadores, permitindo a cada utilizador ter as suas pr\u00f3prias configura\u00e7\u00f5es da visualiza\u00e7\u00e3o, estado das reprodu\u00e7\u00f5es e controlo parental.","LabelWindowsService":"Servi\u00e7o do Windows","AWindowsServiceHasBeenInstalled":"Foi instalado um Servi\u00e7o do Windows.","WindowsServiceIntro1":"O Media Browser Server corre, normalmente, como uma aplica\u00e7\u00e3o de Ambiente de trabalho com um \u00edcone na bandeja, mas se preferir corr\u00ea-lo como um servi\u00e7o em segundo plano, pode ser iniciado atrav\u00e9s do Painel de Controlo dos Servi\u00e7os do Windows.","WindowsServiceIntro2":"Por favor tome aten\u00e7\u00e3o que se estiver a usar o servi\u00e7o, este n\u00e3o pode estar a correr ao mesmo tempo que o \u00edcone na bandeja. Por isso, ter\u00e1 de sair da aplca\u00e7\u00e3o da bandeja para poder correr o servi\u00e7o. Note, ainda, que o servi\u00e7o necessita de privil\u00e9gios administrativos via Painel de Controlo. De momento, n\u00e3o \u00e9 poss\u00edvel utilizar a fun\u00e7\u00e3o de auto-actualiza\u00e7\u00e3o ao mesmo tempo que est\u00e1 em utiliza\u00e7\u00e3o o servi\u00e7o, por isso, novas vers\u00f5es necessitam de interac\u00e7\u00e3o manual.","WizardCompleted":"\u00c9 tudo o que precisamos de momento. O Media Browser come\u00e7ou a colher informa\u00e7\u00e3o \u00e1cerca da sua biblioteca. D\u00ea uma vista de olhos nas nossas extens\u00f5es e depois clique em Terminar<\/b> para ir para o Painel de Controlo<\/b>.","LabelConfigureSettings":"Configura\u00e7\u00f5es","LabelEnableVideoImageExtraction":"Activar extrac\u00e7\u00e3o de imagens dos v\u00eddeos.","VideoImageExtractionHelp":"Para os v\u00eddeos ainda sem imagens e que n\u00e3o se encontram imagens na internet. Esta funcionalidade vai acrescentar mais algum tempo na leitura inicial da biblioteca, mas resultar\u00e1 numa apresenta\u00e7\u00e3o melhorada,","LabelEnableChapterImageExtractionForMovies":"Extrair imagens dos cap\u00edtulos dos Filmes","LabelChapterImageExtractionForMoviesHelp":"Extrair imagens dos cap\u00edtulos permite, \u00e0s aplica\u00e7\u00f5es clientes, apresentar menus de selec\u00e7\u00e3o de cap\u00edtulos com cenas. Este processo pode ser lento, intensivo para o CPU e pode requerer v\u00e1rios gigabytes de espa\u00e7o. Corre como um servi\u00e7o nocturno, agendado para as 04h, embora possa ser configurado na \u00e1rea de Tarefas Agendadas. N\u00e3o \u00e9 recomendado correr esta tarefa em horas que haja muita utiliza\u00e7\u00e3o.","LabelEnableAutomaticPortMapping":"Activar mapeamento autom\u00e1tico de portas","LabelEnableAutomaticPortMappingHelp":"UPnP permite configurar automaticamente o router, para um acesso remoto mais facilitado. Pode n\u00e3o suportar todos os modelos de routers.","ButtonOk":"Ok","ButtonCancel":"Cancelar","HeaderSetupLibrary":"Configurar biblioteca","ButtonAddMediaFolder":"Adicionar pasta de media","LabelFolderType":"Tipo de pasta","MediaFolderHelpPluginRequired":"* Requer o uso de uma extens\u00e3o, e.g. GameBrowser ou MB Bookshelf","ReferToMediaLibraryWiki":"Consulte a wiki","LabelCountry":"Pa\u00eds:","LabelLanguage":"Idioma:","HeaderPreferredMetadataLanguage":"Idioma preferido para metadados","LabelSaveLocalMetadata":"Guardar ilustra\u00e7\u00f5es e metadados nas pastas de media","LabelSaveLocalMetadataHelp":"Salvar imagens e metadados diretamente nas pastas multim\u00e9dia, vai coloc\u00e1-los num local de f\u00e1cil acesso para poderem ser editados facilmente.","LabelDownloadInternetMetadata":"Transferir imagens e metadados da Internet","LabelDownloadInternetMetadataHelp":"O Media Browser pode transferir informa\u00e7\u00f5es sobre os seus conte\u00fados multim\u00e9dia para possibilitar apresenta\u00e7\u00f5es mais ricas.","TabPreferences":"Prefer\u00eancias","TabPassword":"Senha","TabLibraryAccess":"Aceder \u00e0 Biblioteca","TabImage":"Imagem","TabProfile":"Perfil","LabelDisplayMissingEpisodesWithinSeasons":"Mostrar epis\u00f3dios em falta dentro das temporadas","LabelUnairedMissingEpisodesWithinSeasons":"Mostrar epis\u00f3dios por estrear dentro das temporadas","HeaderVideoPlaybackSettings":"Configura\u00e7\u00f5es de Reprodu\u00e7\u00e3o de V\u00eddeo","LabelAudioLanguagePreference":"Prefer\u00eancias de Idioma de Audio:","LabelSubtitleLanguagePreference":"Prefer\u00eancia de Idioma de Legenda:","LabelDisplayForcedSubtitlesOnly":"Mostrar apenas legendas for\u00e7adas","TabProfiles":"Perfis","TabSecurity":"Seguran\u00e7a","ButtonAddUser":"Adicionar Utilizador","ButtonSave":"Guardar","ButtonResetPassword":"Redefinir Senha","LabelNewPassword":"Nova senha:","LabelNewPasswordConfirm":"Confirmar nova senha:","HeaderCreatePassword":"Criar Senha","LabelCurrentPassword":"Senha actual:","LabelMaxParentalRating":"Controlo Parental m\u00e1ximo permitido:","MaxParentalRatingHelp":"Conte\u00fado com classifica\u00e7\u00e3o mais elevada ser\u00e1 escondida deste utilizador.","LibraryAccessHelp":"Escolha as pastas de media a partilha com este utilizador. Os Administradores poder\u00e3o editar todas as pastas, usando o Gestor de Metadados.","ButtonDeleteImage":"Apagar imagem","ButtonUpload":"Enviar","HeaderUploadNewImage":"Enviar nova imagem","LabelDropImageHere":"Largar imagem aqui","ImageUploadAspectRatioHelp":"1:1 R\u00e1cio de aspecto recomendado. JPG\/ PNG apenas.","MessageNothingHere":"Nada aqui.","MessagePleaseEnsureInternetMetadata":"Certifique-se que a transfer\u00eancia de metadados da internet est\u00e1 activa.","TabSuggested":"Sugerido","TabLatest":"Mais recente","TabUpcoming":"Pr\u00f3ximos","TabShows":"S\u00e9ries","TabEpisodes":"Epis\u00f3dios","TabGenres":"G\u00e9neros Art\u00edsticos","TabPeople":"Pessoas","TabNetworks":"Redes","HeaderUsers":"Utilizadores","HeaderFilters":"Filtros:","ButtonFilter":"Filtro","OptionFavorite":"Favoritos","OptionLikes":"Gostos","OptionDislikes":"N\u00e3o gostos","OptionActors":"Actores","OptionGuestStars":"Actores convidados","OptionDirectors":"Realizadores","OptionWriters":"Argumentistas","OptionProducers":"Produtores","HeaderResume":"Resumir","HeaderNextUp":"A Seguir","NoNextUpItemsMessage":"Nenhum encontrado. Comece a ver os seus programas!","HeaderLatestEpisodes":"\u00daltimos Epis\u00f3dios","HeaderPersonTypes":"Tipos de Pessoa:","TabSongs":"M\u00fasicas","TabAlbums":"\u00c1lbuns","TabArtists":"Artistas","TabAlbumArtists":"Artistas do \u00c1lbum","TabMusicVideos":"Videos Musicais","ButtonSort":"Organizar","HeaderSortBy":"Organizar por:","HeaderSortOrder":"Ordem de organiza\u00e7\u00e3o:","OptionPlayed":"Reproduzido","OptionUnplayed":"Por reproduzir","OptionAscending":"Ascendente","OptionDescending":"Descendente","OptionRuntime":"Dura\u00e7\u00e3o","OptionReleaseDate":"Data de lan\u00e7amento","OptionPlayCount":"N.\u00ba Visualiza\u00e7\u00f5es","OptionDatePlayed":"Data de reprodu\u00e7\u00e3o","OptionDateAdded":"Data de adi\u00e7\u00e3o","OptionAlbumArtist":"Artista do \u00c1lbum","OptionArtist":"Artista","OptionAlbum":"\u00c1lbum","OptionTrackName":"Nome da pista","OptionCommunityRating":"Classifica\u00e7\u00e3o da Comunidade","OptionNameSort":"Nome","OptionFolderSort":"Pastas","OptionBudget":"Or\u00e7amento","OptionRevenue":"Receita","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Fita do tempo","OptionThumb":"Miniatura","OptionBanner":"Banner","OptionCriticRating":"Classifica\u00e7\u00e3o dos cr\u00edticos","OptionVideoBitrate":"Qualidade do v\u00eddeo","OptionResumable":"Retom\u00e1vel","ScheduledTasksHelp":"Clique numa tarefa para configurar o seu agendamento.","ScheduledTasksTitle":"Tarefas Agendadas","TabMyPlugins":"As minhas extens\u00f5es","TabCatalog":"Cat\u00e1logo","TabUpdates":"Actualiza\u00e7\u00f5es","PluginsTitle":"Extens\u00f5es","HeaderAutomaticUpdates":"Actualiza\u00e7\u00f5es autom\u00e1ticas","HeaderUpdateLevel":"N\u00edvel de actualiza\u00e7\u00e3o","HeaderNowPlaying":"A reproduzir","HeaderLatestAlbums":"\u00daltimos \u00c1lbuns","HeaderLatestSongs":"\u00daltimas m\u00fasicas","HeaderRecentlyPlayed":"Reproduzido recentemente","HeaderFrequentlyPlayed":"Reproduzido frequentemente","DevBuildWarning":"As vers\u00f5es Dev s\u00e3o a tecnologia de ponta. S\u00e3o lan\u00e7adas frequentemente e n\u00e3o foram testadas. A aplica\u00e7\u00e3o pode bloquear e n\u00e3o funcionar de todo.","LabelVideoType":"Tipo de V\u00eddeo:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Caracter\u00edsticas:","OptionHasSubtitles":"Legendas","OptionHasTrailer":"Trailer","OptionHasThemeSong":"M\u00fasica de Tema","OptionHasThemeVideo":"V\u00eddeo de Tema","TabMovies":"Filmes","TabStudios":"Est\u00fadios","TabTrailers":"Trailers","HeaderLatestMovies":"\u00daltimos Filmes","HeaderLatestTrailers":"\u00daltimos Trailers","OptionHasSpecialFeatures":"Extras","OptionImdbRating":"Classifica\u00e7\u00e3o no IMDb","OptionParentalRating":"Classifica\u00e7\u00e3o Parental","OptionPremiereDate":"Data de Estreia","TabBasic":"B\u00e1sico","TabAdvanced":"Avan\u00e7ado","HeaderStatus":"Estado","OptionContinuing":"A Continuar","OptionEnded":"Terminado","HeaderAirDays":"Dias de Exibi\u00e7\u00e3o:","OptionSunday":"Domingo","OptionMonday":"Segunda","OptionTuesday":"Ter\u00e7a","OptionWednesday":"Quarta","OptionThursday":"Quinta","OptionFriday":"Sexta","OptionSaturday":"S\u00e1bado","HeaderManagement":"Gest\u00e3o:","OptionMissingImdbId":"Id do IMDb em falta","OptionMissingTvdbId":"iD do TheTVDB em falta","OptionMissingOverview":"Descri\u00e7\u00e3o em falta","OptionFileMetadataYearMismatch":"Anos do Ficheiro\/Metadados n\u00e3o coincidem","TabGeneral":"Geral","TitleSupport":"Suporte","TabLog":"Log","TabAbout":"Acerca","TabSupporterKey":"Chave de Apoiante","TabBecomeSupporter":"Torne-se um Apoiante","MediaBrowserHasCommunity":"O Media Browser tem uma pr\u00f3spera comunidade de utilizadores e colaboradores.","CheckoutKnowledgeBase":"Consulte a nossa base de conhecimento para o ajudar a obter um maior proveito do Media Browser.","SearchKnowledgeBase":"Procurar a Base de Conhecimento","VisitTheCommunity":"Visite a Comunidade","VisitMediaBrowserWebsite":"Visite a p\u00e1gina web do Media Browser","VisitMediaBrowserWebsiteLong":"Visite a p\u00e1gina do Media Browser para ficar a par das \u00faltimas novidades e para acompanhar o blog do programador.","OptionHideUser":"Ocultar este utilizador dos formul\u00e1rios de in\u00edcio de sess\u00e3o","OptionDisableUser":"Desativar este utilizador","OptionDisableUserHelp":"Se desativado, o servidor n\u00e3o permite nenhuma conex\u00e3o deste utilizador. Conex\u00f5es existentes ser\u00e3o terminadas.","HeaderAdvancedControl":"Controlo Avan\u00e7ado","LabelName":"Nome:","OptionAllowUserToManageServer":"Permitir a este utilizador gerir o servidor","HeaderFeatureAccess":"Acesso a Caracter\u00edsticas","OptionAllowMediaPlayback":"Permitir reprodu\u00e7\u00e3o de multim\u00e9dia","OptionAllowBrowsingLiveTv":"Permitir navega\u00e7\u00e3o da tv ao vivo","OptionAllowDeleteLibraryContent":"Permitir a este utilizador remover conte\u00fados da biblioteca","OptionAllowManageLiveTv":"Permitir gest\u00e3o das grava\u00e7\u00f5es da tv ao vivo","OptionAllowRemoteControlOthers":"Permitir a este utilizador controlar remotamente outros utilizadores","OptionMissingTmdbId":"Id Tmdb em falta","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Selecionar","ButtonGroupVersions":"Agrupar Vers\u00f5es","PismoMessage":"Usar o Prismo File Mount atrav\u00e9s de uma licen\u00e7a doada.","PleaseSupportOtherProduces":"Por favor suporte outros produtos gratuitos que utilizamos:","VersionNumber":"Vers\u00e3o {0}","TabPaths":"Localiza\u00e7\u00f5es","TabServer":"Servidor","TabTranscoding":"A transcodificar","TitleAdvanced":"Avan\u00e7ado","LabelAutomaticUpdateLevel":"N\u00edvel da atualiza\u00e7\u00e3o autom\u00e1tica","OptionRelease":"Lan\u00e7amento Oficial","OptionBeta":"Beta","OptionDev":"Dev (Inst\u00e1vel)","LabelAllowServerAutoRestart":"Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es","LabelAllowServerAutoRestartHelp":"O servidor ir\u00e1 reiniciar apenas durante per\u00edodos em que n\u00e3o esteja a ser usado, quando nenhum utilizador estiver ativo.","LabelEnableDebugLogging":"Ativar log de depura\u00e7\u00e3o","LabelRunServerAtStartup":"Iniciar o servidor no arranque","LabelRunServerAtStartupHelp":"Isto ir\u00e1 iniciar o \u00edcone na barra de tarefas quando o Windows inicia. Para iniciar o servi\u00e7o do Windows, desmarque isto e corra o servi\u00e7o a partir do Painel de Controlo do Windows. N\u00e3o pode correr ambos ao mesmo tempo, logo precisa de terminar o \u00edcone da barra de tarefas antes de iniciar o servi\u00e7o.","ButtonSelectDirectory":"Selecione a diretoria","LabelCustomPaths":"Defina localiza\u00e7\u00f5es personalizadas. Deixe os campos em branco para usar os valores padr\u00e3o.","LabelCachePath":"Localiza\u00e7\u00e3o da cache:","LabelCachePathHelp":"Esta pasta cont\u00e9m ficheiros de cacha do servidor, como por exemplo, imagens.","LabelImagesByNamePath":"Localiza\u00e7\u00e3o das imagens por nome:","LabelImagesByNamePathHelp":"Esta pasta cont\u00e9m imagens de atores, artistas, g\u00e9neros e est\u00fadios.","LabelMetadataPath":"Localiza\u00e7\u00e3o dos metadados:","LabelMetadataPathHelp":"Esta localiza\u00e7\u00e3o cont\u00e9m imagens e metadados transferidos que n\u00e3o foram configurados para serem armazenados nas pastas multim\u00e9dia.","LabelTranscodingTempPath":"Localiza\u00e7\u00e3o tempor\u00e1ria das transcodifica\u00e7\u00f5es:","LabelTranscodingTempPathHelp":"Esta pasta cont\u00e9m ficheiros de trabalho usados pelo transcodificador.","TabBasics":"B\u00e1sicos","TabTV":"TV","TabGames":"Jogos","TabMusic":"M\u00fasica","TabOthers":"Outros","HeaderExtractChapterImagesFor":"Extrair imagens de cap\u00edtulos para:","OptionMovies":"Filmes","OptionEpisodes":"Epis\u00f3dios","OptionOtherVideos":"Outros V\u00eddeos","TitleMetadata":"Metadados","LabelAutomaticUpdatesFanart":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas do FanArt.tv","LabelAutomaticUpdatesTmdb":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas do TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas do TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao fanart.tv. As imagens existentes n\u00e3o ser\u00e3o substitu\u00eddas.","LabelAutomaticUpdatesTmdbHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao TheMovieDB.org. As imagens existentes n\u00e3o ser\u00e3o substitu\u00eddas.","LabelAutomaticUpdatesTvdbHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao TheTVDB.com. As imagens existentes n\u00e3o ser\u00e3o substitu\u00eddas.","ExtractChapterImagesHelp":"Extrair imagens dos cap\u00edtulos permite \u00e0s aplica\u00e7\u00f5es clientes, apresentar menus de sele\u00e7\u00e3o de cap\u00edtulos com cenas. Este processo pode ser lento, intensivo para o CPU e pode requerer v\u00e1rios gigabytes de espa\u00e7o. Corre como um servi\u00e7o noturno, agendado para as 04h, embora possa ser configurado na \u00e1rea de Tarefas Agendadas. N\u00e3o \u00e9 recomendado correr esta tarefa em horas que haja muita utiliza\u00e7\u00e3o.","LabelMetadataDownloadLanguage":"Idioma preferido:","ButtonAutoScroll":"Scroll autom\u00e1tico","LabelImageSavingConvention":"Conven\u00e7\u00e3o para guardar imagens:","LabelImageSavingConventionHelp":"O Media Browser reconhece imagens da maioria das aplica\u00e7\u00f5es multim\u00e9dia. Escolher a conven\u00e7\u00e3o de transfer\u00eancia \u00e9 \u00fatil se tamb\u00e9m usa outros produtos.","OptionImageSavingCompatible":"Compat\u00edvel - MB3\/Plex\/XBMC","OptionImageSavingStandard":"Padr\u00e3o - MB3\/MB2","ButtonSignIn":"Iniciar Sess\u00e3o","TitleSignIn":"Iniciar Sess\u00e3o","HeaderPleaseSignIn":"Por favor inicie a sess\u00e3o","LabelUser":"Utilizador:","LabelPassword":"Senha:","ButtonManualLogin":"In\u00edcio de Sess\u00e3o Manual:","PasswordLocalhostMessage":"N\u00e3o s\u00e3o necess\u00e1rias senhas ao iniciar a sess\u00e3o a partir do localhost.","TabGuide":"Guia","TabChannels":"Canais","HeaderChannels":"Canais","TabRecordings":"Grava\u00e7\u00f5es","TabScheduled":"Agendado","TabSeries":"S\u00e9ries","ButtonCancelRecording":"Cancelar Grava\u00e7\u00e3o","HeaderPrePostPadding":"Pr\u00e9\/P\u00f3s grava\u00e7\u00e3o extra","LabelPrePaddingMinutes":"Minutos pr\u00e9vios extra:","OptionPrePaddingRequired":"S\u00e3o necess\u00e1rios minutos pr\u00e9vios extra para poder gravar.","LabelPostPaddingMinutes":"Minutos posteriores extra:","OptionPostPaddingRequired":"S\u00e3o necess\u00e1rios minutos posteriores extra para poder gravar.","HeaderWhatsOnTV":"Agora a exibir","HeaderUpcomingTV":"Pr\u00f3ximos Programas","TabStatus":"Estado","TabSettings":"Configura\u00e7\u00f5es","ButtonRefreshGuideData":"Atualizar Dados do Guia","OptionPriority":"Prioridade","OptionRecordOnAllChannels":"Gravar programa em todos os canais","OptionRecordAnytime":"Gravar programa em qualquer altura","OptionRecordOnlyNewEpisodes":"Gravar apenas novos epis\u00f3dios","HeaderDays":"Dias","HeaderActiveRecordings":"Grava\u00e7\u00f5es ativas","HeaderLatestRecordings":"\u00daltimas Grava\u00e7\u00f5es","HeaderAllRecordings":"Todas as Grava\u00e7\u00f5es","ButtonPlay":"Reproduzir","ButtonEdit":"Editar","ButtonRecord":"Gravar","ButtonDelete":"Remover","OptionRecordSeries":"Gravar S\u00e9rie","HeaderDetails":"Detalhes","TitleLiveTV":"TV ao Vivo","LabelNumberOfGuideDays":"N\u00famero de dias de informa\u00e7\u00e3o do guia para transferir:","LabelNumberOfGuideDaysHelp":"Transferir mais dias de informa\u00e7\u00e3o do guia permite agendar com maior anteced\u00eancia e ver mais listagens, no entanto ir\u00e1 levar mais tempo a transferir. Se optar que seja Autom\u00e1tico, ser\u00e1 escolhido baseado no n\u00famero de canais.","LabelActiveService":"Ativar Servi\u00e7o:","LabelActiveServiceHelp":"Podem ser instalados m\u00faltiplas extens\u00f5es para TV, mas s\u00f3 pode estar ativo um de cada vez.","OptionAutomatic":"Autom\u00e1tico","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Caixa","OptionDownloadDiscImage":"Disco","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Recuar","OptionDownloadArtImage":"Arte","OptionDownloadPrimaryImage":"Principal","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Adicionar","LabelTriggerType":"Trigger Type:","OptionDaily":"Diariamente","OptionWeekly":"Semanalmente","OptionOnInterval":"Num intervalo","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Dia:","LabelTime":"Tempo:","LabelEvent":"Evento:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Sintonizadores","HeaderGallery":"Galeria","HeaderLatestGames":"\u00daltimos Jogos","HeaderRecentlyPlayedGames":"Jogos jogados recentemente","TabGameSystems":"Sistemas de Jogos","TitleMediaLibrary":"Biblioteca Multim\u00e9dia","TabFolders":"Pastas","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Analisar Biblioteca","HeaderNumberOfPlayers":"Jogadores:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Pastas Multim\u00e9dia","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Cenas","HeaderAwardsAndReviews":"Pr\u00e9mios e Cr\u00edticas","HeaderSoundtracks":"Banda Sonora","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Elenco e Equipa","HeaderAdditionalParts":"Partes Adicionais","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"De","HeaderTo":"Para","LabelFrom":"De:","LabelFromHelp":"Exemplo: D:\\Filmes (no servidor)","LabelTo":"Para:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Classifica\u00e7\u00e3o no Tvdb","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"O servidor ir\u00e1 decidir a qualidade e a velocidade","OptionHighSpeedTranscodingHelp":"Baixa qualidade mas r\u00e1pida codifica\u00e7\u00e3o","OptionHighQualityTranscodingHelp":"Alta qualidade mas lenta codifica\u00e7\u00e3o","OptionMaxQualityTranscodingHelp":"M\u00e1xima qualidade com codifica\u00e7\u00e3o lenta e utiliza\u00e7\u00e3o do CPU elevada","OptionHighSpeedTranscoding":"Mais alta velocidade","OptionHighQualityTranscoding":"Mais alta qualidade","OptionMaxQualityTranscoding":"M\u00e1xima qualidade","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"Ir\u00e1 criar ficheiros log muito grandes e s\u00f3 \u00e9 recomendado para ajudar na resolu\u00e7\u00e3o de problemas.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"Em alguns casos ir\u00e1 resultar no aumento da qualidade do v\u00eddeo mas ir\u00e1 aumentar a utiliza\u00e7\u00e3o do CPU."} \ No newline at end of file +{"LabelExit":"Sair","LabelVisitCommunity":"Visitar a Comunidade","LabelGithubWiki":"Wiki do Github","LabelSwagger":"Swagger","LabelStandard":"Padr\u00e3o","LabelViewApiDocumentation":"Ver Documenta\u00e7\u00e3o da API","LabelBrowseLibrary":"Navegar pela Biblioteca","LabelConfigureMediaBrowser":"Configurar o Media Browser","LabelOpenLibraryViewer":"Abrir Visualizador da Biblioteca","LabelRestartServer":"Reiniciar Servidor","LabelShowLogWindow":"Mostrar Janela de Log","LabelPrevious":"Anterior","LabelFinish":"Terminar","LabelNext":"Seguinte","LabelYoureDone":"Concluiu!","WelcomeToMediaBrowser":"Bem-vindo ao Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Este assistente ir\u00e1 ajud\u00e1-lo durante o processo de configura\u00e7\u00e3o.","TellUsAboutYourself":"Fale-nos sobre si","LabelYourFirstName":"O seu primeiro nome:","MoreUsersCanBeAddedLater":"\u00c9 poss\u00edvel adicionar utilizadores mais tarde no Painel de Controlo.","UserProfilesIntro":"O Media Browser inclui suporte a perfis de utilizadores, permitindo a cada utilizador ter as suas pr\u00f3prias configura\u00e7\u00f5es da visualiza\u00e7\u00e3o, estado das reprodu\u00e7\u00f5es e controlo parental.","LabelWindowsService":"Servi\u00e7o do Windows","AWindowsServiceHasBeenInstalled":"Foi instalado um Servi\u00e7o do Windows.","WindowsServiceIntro1":"O Media Browser Server corre, normalmente, como uma aplica\u00e7\u00e3o de Ambiente de trabalho com um \u00edcone na bandeja, mas se preferir corr\u00ea-lo como um servi\u00e7o em segundo plano, pode ser iniciado atrav\u00e9s do Painel de Controlo dos Servi\u00e7os do Windows.","WindowsServiceIntro2":"Por favor tome aten\u00e7\u00e3o que se estiver a usar o servi\u00e7o, este n\u00e3o pode estar a correr ao mesmo tempo que o \u00edcone na bandeja. Por isso, ter\u00e1 de sair da aplca\u00e7\u00e3o da bandeja para poder correr o servi\u00e7o. Note, ainda, que o servi\u00e7o necessita de privil\u00e9gios administrativos via Painel de Controlo. De momento, n\u00e3o \u00e9 poss\u00edvel utilizar a fun\u00e7\u00e3o de auto-actualiza\u00e7\u00e3o ao mesmo tempo que est\u00e1 em utiliza\u00e7\u00e3o o servi\u00e7o, por isso, novas vers\u00f5es necessitam de interac\u00e7\u00e3o manual.","WizardCompleted":"\u00c9 tudo o que precisamos de momento. O Media Browser come\u00e7ou a colher informa\u00e7\u00e3o \u00e1cerca da sua biblioteca. D\u00ea uma vista de olhos nas nossas extens\u00f5es e depois clique em Terminar<\/b> para ir para o Painel de Controlo<\/b>.","LabelConfigureSettings":"Configura\u00e7\u00f5es","LabelEnableVideoImageExtraction":"Activar extrac\u00e7\u00e3o de imagens dos v\u00eddeos.","VideoImageExtractionHelp":"Para os v\u00eddeos ainda sem imagens e que n\u00e3o se encontram imagens na internet. Esta funcionalidade vai acrescentar mais algum tempo na leitura inicial da biblioteca, mas resultar\u00e1 numa apresenta\u00e7\u00e3o melhorada,","LabelEnableChapterImageExtractionForMovies":"Extrair imagens dos cap\u00edtulos dos Filmes","LabelChapterImageExtractionForMoviesHelp":"Extrair imagens dos cap\u00edtulos permite, \u00e0s aplica\u00e7\u00f5es clientes, apresentar menus de selec\u00e7\u00e3o de cap\u00edtulos com cenas. Este processo pode ser lento, intensivo para o CPU e pode requerer v\u00e1rios gigabytes de espa\u00e7o. Corre como um servi\u00e7o nocturno, agendado para as 04h, embora possa ser configurado na \u00e1rea de Tarefas Agendadas. N\u00e3o \u00e9 recomendado correr esta tarefa em horas que haja muita utiliza\u00e7\u00e3o.","LabelEnableAutomaticPortMapping":"Activar mapeamento autom\u00e1tico de portas","LabelEnableAutomaticPortMappingHelp":"UPnP permite configurar automaticamente o router, para um acesso remoto mais facilitado. Pode n\u00e3o suportar todos os modelos de routers.","ButtonOk":"Ok","ButtonCancel":"Cancelar","ButtonNew":"New","HeaderSetupLibrary":"Configurar biblioteca","ButtonAddMediaFolder":"Adicionar pasta de media","LabelFolderType":"Tipo de pasta","MediaFolderHelpPluginRequired":"* Requer o uso de uma extens\u00e3o, e.g. GameBrowser ou MB Bookshelf","ReferToMediaLibraryWiki":"Consulte a wiki","LabelCountry":"Pa\u00eds:","LabelLanguage":"Idioma:","HeaderPreferredMetadataLanguage":"Idioma preferido para metadados","LabelSaveLocalMetadata":"Guardar imagens e metadados nas pastas multim\u00e9dia","LabelSaveLocalMetadataHelp":"Guardar imagens e metadados diretamente nas pastas multim\u00e9dia, vai coloc\u00e1-los num local de f\u00e1cil acesso para poderem ser editados facilmente.","LabelDownloadInternetMetadata":"Transferir imagens e metadados da Internet","LabelDownloadInternetMetadataHelp":"O Media Browser pode transferir informa\u00e7\u00f5es sobre os seus conte\u00fados multim\u00e9dia para possibilitar apresenta\u00e7\u00f5es mais ricas.","TabPreferences":"Prefer\u00eancias","TabPassword":"Senha","TabLibraryAccess":"Aceder \u00e0 Biblioteca","TabImage":"Imagem","TabProfile":"Perfil","TabMetadata":"Metadata","TabImages":"Imagens","TabCollectionTitles":"T\u00edtulos","LabelDisplayMissingEpisodesWithinSeasons":"Mostrar epis\u00f3dios em falta dentro das temporadas","LabelUnairedMissingEpisodesWithinSeasons":"Mostrar epis\u00f3dios por estrear dentro das temporadas","HeaderVideoPlaybackSettings":"Configura\u00e7\u00f5es de Reprodu\u00e7\u00e3o de V\u00eddeo","LabelAudioLanguagePreference":"Prefer\u00eancias de Idioma de Audio:","LabelSubtitleLanguagePreference":"Prefer\u00eancia de Idioma de Legenda:","LabelDisplayForcedSubtitlesOnly":"Mostrar apenas legendas for\u00e7adas","TabProfiles":"Perfis","TabSecurity":"Seguran\u00e7a","ButtonAddUser":"Adicionar Utilizador","ButtonSave":"Guardar","ButtonResetPassword":"Redefinir Senha","LabelNewPassword":"Nova senha:","LabelNewPasswordConfirm":"Confirmar nova senha:","HeaderCreatePassword":"Criar Senha","LabelCurrentPassword":"Senha actual:","LabelMaxParentalRating":"Controlo Parental m\u00e1ximo permitido:","MaxParentalRatingHelp":"Conte\u00fado com classifica\u00e7\u00e3o mais elevada ser\u00e1 escondida deste utilizador.","LibraryAccessHelp":"Escolha as pastas de media a partilha com este utilizador. Os Administradores poder\u00e3o editar todas as pastas, usando o Gestor de Metadados.","ButtonDeleteImage":"Apagar imagem","ButtonUpload":"Enviar","HeaderUploadNewImage":"Enviar nova imagem","LabelDropImageHere":"Largar imagem aqui","ImageUploadAspectRatioHelp":"1:1 R\u00e1cio de aspecto recomendado. JPG\/ PNG apenas.","MessageNothingHere":"Nada aqui.","MessagePleaseEnsureInternetMetadata":"Certifique-se que a transfer\u00eancia de metadados da internet est\u00e1 activa.","TabSuggested":"Sugerido","TabLatest":"Mais recente","TabUpcoming":"Pr\u00f3ximos","TabShows":"S\u00e9ries","TabEpisodes":"Epis\u00f3dios","TabGenres":"G\u00e9neros Art\u00edsticos","TabPeople":"Pessoas","TabNetworks":"Redes","HeaderUsers":"Utilizadores","HeaderFilters":"Filtros:","ButtonFilter":"Filtro","OptionFavorite":"Favoritos","OptionLikes":"Gostos","OptionDislikes":"N\u00e3o gostos","OptionActors":"Actores","OptionGuestStars":"Actores convidados","OptionDirectors":"Realizadores","OptionWriters":"Argumentistas","OptionProducers":"Produtores","HeaderResume":"Resumir","HeaderNextUp":"A Seguir","NoNextUpItemsMessage":"Nenhum encontrado. Comece a ver os seus programas!","HeaderLatestEpisodes":"\u00daltimos Epis\u00f3dios","HeaderPersonTypes":"Tipos de Pessoa:","TabSongs":"M\u00fasicas","TabAlbums":"\u00c1lbuns","TabArtists":"Artistas","TabAlbumArtists":"Artistas do \u00c1lbum","TabMusicVideos":"Videos Musicais","ButtonSort":"Organizar","HeaderSortBy":"Organizar por:","HeaderSortOrder":"Ordem de organiza\u00e7\u00e3o:","OptionPlayed":"Reproduzido","OptionUnplayed":"Por reproduzir","OptionAscending":"Ascendente","OptionDescending":"Descendente","OptionRuntime":"Dura\u00e7\u00e3o","OptionReleaseDate":"Data de lan\u00e7amento","OptionPlayCount":"N.\u00ba Visualiza\u00e7\u00f5es","OptionDatePlayed":"Data de reprodu\u00e7\u00e3o","OptionDateAdded":"Data de adi\u00e7\u00e3o","OptionAlbumArtist":"Artista do \u00c1lbum","OptionArtist":"Artista","OptionAlbum":"\u00c1lbum","OptionTrackName":"Nome da pista","OptionCommunityRating":"Classifica\u00e7\u00e3o da Comunidade","OptionNameSort":"Nome","OptionFolderSort":"Pastas","OptionBudget":"Or\u00e7amento","OptionRevenue":"Receita","OptionPoster":"Poster","OptionBackdrop":"Imagem de fundo","OptionTimeline":"Fita do tempo","OptionThumb":"Miniatura","OptionBanner":"Banner","OptionCriticRating":"Classifica\u00e7\u00e3o dos cr\u00edticos","OptionVideoBitrate":"Qualidade do v\u00eddeo","OptionResumable":"Retom\u00e1vel","ScheduledTasksHelp":"Clique numa tarefa para configurar o seu agendamento.","ScheduledTasksTitle":"Tarefas Agendadas","TabMyPlugins":"As minhas extens\u00f5es","TabCatalog":"Cat\u00e1logo","TabUpdates":"Actualiza\u00e7\u00f5es","PluginsTitle":"Extens\u00f5es","HeaderAutomaticUpdates":"Actualiza\u00e7\u00f5es autom\u00e1ticas","HeaderUpdateLevel":"N\u00edvel de actualiza\u00e7\u00e3o","HeaderNowPlaying":"A reproduzir","HeaderLatestAlbums":"\u00daltimos \u00c1lbuns","HeaderLatestSongs":"\u00daltimas m\u00fasicas","HeaderRecentlyPlayed":"Reproduzido recentemente","HeaderFrequentlyPlayed":"Reproduzido frequentemente","DevBuildWarning":"As vers\u00f5es Dev s\u00e3o a tecnologia de ponta. S\u00e3o lan\u00e7adas frequentemente e n\u00e3o foram testadas. A aplica\u00e7\u00e3o pode bloquear e n\u00e3o funcionar de todo.","LabelVideoType":"Tipo de V\u00eddeo:","OptionBluray":"Bluray","OptionDvd":"DVD","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Caracter\u00edsticas:","OptionHasSubtitles":"Legendas","OptionHasTrailer":"Trailer","OptionHasThemeSong":"M\u00fasica de Tema","OptionHasThemeVideo":"V\u00eddeo de Tema","TabMovies":"Filmes","TabStudios":"Est\u00fadios","TabTrailers":"Trailers","HeaderLatestMovies":"\u00daltimos Filmes","HeaderLatestTrailers":"\u00daltimos Trailers","OptionHasSpecialFeatures":"Extras","OptionImdbRating":"Classifica\u00e7\u00e3o no IMDb","OptionParentalRating":"Classifica\u00e7\u00e3o Parental","OptionPremiereDate":"Data de Estreia","TabBasic":"B\u00e1sico","TabAdvanced":"Avan\u00e7ado","HeaderStatus":"Estado","OptionContinuing":"A Continuar","OptionEnded":"Terminado","HeaderAirDays":"Dias de Exibi\u00e7\u00e3o:","OptionSunday":"Domingo","OptionMonday":"Segunda","OptionTuesday":"Ter\u00e7a","OptionWednesday":"Quarta","OptionThursday":"Quinta","OptionFriday":"Sexta","OptionSaturday":"S\u00e1bado","HeaderManagement":"Gest\u00e3o:","OptionMissingImdbId":"Id do IMDb em falta","OptionMissingTvdbId":"iD do TheTVDB em falta","OptionMissingOverview":"Descri\u00e7\u00e3o em falta","OptionFileMetadataYearMismatch":"Anos do Ficheiro\/Metadados n\u00e3o coincidem","TabGeneral":"Geral","TitleSupport":"Suporte","TabLog":"Log","TabAbout":"Acerca","TabSupporterKey":"Chave de Apoiante","TabBecomeSupporter":"Torne-se um Apoiante","MediaBrowserHasCommunity":"O Media Browser tem uma pr\u00f3spera comunidade de utilizadores e colaboradores.","CheckoutKnowledgeBase":"Consulte a nossa base de conhecimento para o ajudar a obter um maior proveito do Media Browser.","SearchKnowledgeBase":"Procurar a Base de Conhecimento","VisitTheCommunity":"Visite a Comunidade","VisitMediaBrowserWebsite":"Visite a p\u00e1gina web do Media Browser","VisitMediaBrowserWebsiteLong":"Visite a p\u00e1gina do Media Browser para ficar a par das \u00faltimas novidades e para acompanhar o blog do programador.","OptionHideUser":"Ocultar este utilizador dos formul\u00e1rios de in\u00edcio de sess\u00e3o","OptionDisableUser":"Desativar este utilizador","OptionDisableUserHelp":"Se desativado, o servidor n\u00e3o permite nenhuma conex\u00e3o deste utilizador. Conex\u00f5es existentes ser\u00e3o terminadas.","HeaderAdvancedControl":"Controlo Avan\u00e7ado","LabelName":"Nome:","OptionAllowUserToManageServer":"Permitir a este utilizador gerir o servidor","HeaderFeatureAccess":"Acesso a Caracter\u00edsticas","OptionAllowMediaPlayback":"Permitir reprodu\u00e7\u00e3o de multim\u00e9dia","OptionAllowBrowsingLiveTv":"Permitir navega\u00e7\u00e3o da tv ao vivo","OptionAllowDeleteLibraryContent":"Permitir a este utilizador remover conte\u00fados da biblioteca","OptionAllowManageLiveTv":"Permitir gest\u00e3o das grava\u00e7\u00f5es da tv ao vivo","OptionAllowRemoteControlOthers":"Permitir a este utilizador controlar remotamente outros utilizadores","OptionMissingTmdbId":"Id Tmdb em falta","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Selecionar","ButtonSearch":"Procurar","ButtonGroupVersions":"Agrupar Vers\u00f5es","PismoMessage":"Usar o Prismo File Mount atrav\u00e9s de uma licen\u00e7a doada.","PleaseSupportOtherProduces":"Por favor suporte outros produtos gratuitos que utilizamos:","VersionNumber":"Vers\u00e3o {0}","TabPaths":"Localiza\u00e7\u00f5es","TabServer":"Servidor","TabTranscoding":"A transcodificar","TitleAdvanced":"Avan\u00e7ado","LabelAutomaticUpdateLevel":"N\u00edvel da atualiza\u00e7\u00e3o autom\u00e1tica","OptionRelease":"Lan\u00e7amento Oficial","OptionBeta":"Beta","OptionDev":"Dev (Inst\u00e1vel)","LabelAllowServerAutoRestart":"Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es","LabelAllowServerAutoRestartHelp":"O servidor ir\u00e1 reiniciar apenas durante per\u00edodos em que n\u00e3o esteja a ser usado, quando nenhum utilizador estiver ativo.","LabelEnableDebugLogging":"Ativar log de depura\u00e7\u00e3o","LabelRunServerAtStartup":"Iniciar o servidor no arranque","LabelRunServerAtStartupHelp":"Isto ir\u00e1 iniciar o \u00edcone na barra de tarefas quando o Windows inicia. Para iniciar o servi\u00e7o do Windows, desmarque isto e corra o servi\u00e7o a partir do Painel de Controlo do Windows. N\u00e3o pode correr ambos ao mesmo tempo, logo precisa de terminar o \u00edcone da barra de tarefas antes de iniciar o servi\u00e7o.","ButtonSelectDirectory":"Selecione a diretoria","LabelCustomPaths":"Defina localiza\u00e7\u00f5es personalizadas. Deixe os campos em branco para usar os valores padr\u00e3o.","LabelCachePath":"Localiza\u00e7\u00e3o da cache:","LabelCachePathHelp":"Esta pasta cont\u00e9m ficheiros de cacha do servidor, como por exemplo, imagens.","LabelImagesByNamePath":"Localiza\u00e7\u00e3o das imagens por nome:","LabelImagesByNamePathHelp":"Esta pasta cont\u00e9m imagens de atores, artistas, g\u00e9neros e est\u00fadios.","LabelMetadataPath":"Localiza\u00e7\u00e3o dos metadados:","LabelMetadataPathHelp":"Esta localiza\u00e7\u00e3o cont\u00e9m imagens e metadados transferidos que n\u00e3o foram configurados para serem armazenados nas pastas multim\u00e9dia.","LabelTranscodingTempPath":"Localiza\u00e7\u00e3o tempor\u00e1ria das transcodifica\u00e7\u00f5es:","LabelTranscodingTempPathHelp":"Esta pasta cont\u00e9m ficheiros de trabalho usados pelo transcodificador.","TabBasics":"B\u00e1sico","TabTV":"TV","TabGames":"Jogos","TabMusic":"M\u00fasica","TabOthers":"Outros","HeaderExtractChapterImagesFor":"Extrair imagens de cap\u00edtulos para:","OptionMovies":"Filmes","OptionEpisodes":"Epis\u00f3dios","OptionOtherVideos":"Outros V\u00eddeos","TitleMetadata":"Metadados","LabelAutomaticUpdatesFanart":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas do FanArt.tv","LabelAutomaticUpdatesTmdb":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas do TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Ativar atualiza\u00e7\u00f5es autom\u00e1ticas do TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao fanart.tv. As imagens existentes n\u00e3o ser\u00e3o substitu\u00eddas.","LabelAutomaticUpdatesTmdbHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao TheMovieDB.org. As imagens existentes n\u00e3o ser\u00e3o substitu\u00eddas.","LabelAutomaticUpdatesTvdbHelp":"Se ativado, novas imagens ser\u00e3o automaticamente transferidas ao serem adicionadas ao TheTVDB.com. As imagens existentes n\u00e3o ser\u00e3o substitu\u00eddas.","ExtractChapterImagesHelp":"Extrair imagens dos cap\u00edtulos permite \u00e0s aplica\u00e7\u00f5es clientes, apresentar menus de sele\u00e7\u00e3o de cap\u00edtulos com cenas. Este processo pode ser lento, intensivo para o CPU e pode requerer v\u00e1rios gigabytes de espa\u00e7o. Corre como um servi\u00e7o noturno, agendado para as 04h, embora possa ser configurado na \u00e1rea de Tarefas Agendadas. N\u00e3o \u00e9 recomendado correr esta tarefa em horas que haja muita utiliza\u00e7\u00e3o.","LabelMetadataDownloadLanguage":"Idioma preferido:","ButtonAutoScroll":"Scroll autom\u00e1tico","LabelImageSavingConvention":"Conven\u00e7\u00e3o para guardar imagens:","LabelImageSavingConventionHelp":"O Media Browser reconhece imagens da maioria das aplica\u00e7\u00f5es multim\u00e9dia. Escolher a conven\u00e7\u00e3o de transfer\u00eancia \u00e9 \u00fatil se tamb\u00e9m usa outros produtos.","OptionImageSavingCompatible":"Compat\u00edvel - MB3\/Plex\/XBMC","OptionImageSavingStandard":"Padr\u00e3o - MB3\/MB2","ButtonSignIn":"Iniciar Sess\u00e3o","TitleSignIn":"Iniciar Sess\u00e3o","HeaderPleaseSignIn":"Por favor inicie a sess\u00e3o","LabelUser":"Utilizador:","LabelPassword":"Senha:","ButtonManualLogin":"In\u00edcio de Sess\u00e3o Manual:","PasswordLocalhostMessage":"N\u00e3o s\u00e3o necess\u00e1rias senhas ao iniciar a sess\u00e3o a partir do localhost.","TabGuide":"Guia","TabChannels":"Canais","HeaderChannels":"Canais","TabRecordings":"Grava\u00e7\u00f5es","TabScheduled":"Agendado","TabSeries":"S\u00e9ries","ButtonCancelRecording":"Cancelar Grava\u00e7\u00e3o","HeaderPrePostPadding":"Pr\u00e9\/P\u00f3s grava\u00e7\u00e3o extra","LabelPrePaddingMinutes":"Minutos pr\u00e9vios extra:","OptionPrePaddingRequired":"S\u00e3o necess\u00e1rios minutos pr\u00e9vios extra para poder gravar.","LabelPostPaddingMinutes":"Minutos posteriores extra:","OptionPostPaddingRequired":"S\u00e3o necess\u00e1rios minutos posteriores extra para poder gravar.","HeaderWhatsOnTV":"Agora a exibir","HeaderUpcomingTV":"Pr\u00f3ximos Programas","TabStatus":"Estado","TabSettings":"Configura\u00e7\u00f5es","ButtonRefreshGuideData":"Atualizar Dados do Guia","OptionPriority":"Prioridade","OptionRecordOnAllChannels":"Gravar programa em todos os canais","OptionRecordAnytime":"Gravar programa em qualquer altura","OptionRecordOnlyNewEpisodes":"Gravar apenas novos epis\u00f3dios","HeaderDays":"Dias","HeaderActiveRecordings":"Grava\u00e7\u00f5es ativas","HeaderLatestRecordings":"\u00daltimas Grava\u00e7\u00f5es","HeaderAllRecordings":"Todas as Grava\u00e7\u00f5es","ButtonPlay":"Reproduzir","ButtonEdit":"Editar","ButtonRecord":"Gravar","ButtonDelete":"Remover","ButtonRemove":"Remover","OptionRecordSeries":"Gravar S\u00e9rie","HeaderDetails":"Detalhes","TitleLiveTV":"TV ao Vivo","LabelNumberOfGuideDays":"N\u00famero de dias de informa\u00e7\u00e3o do guia para transferir:","LabelNumberOfGuideDaysHelp":"Transferir mais dias de informa\u00e7\u00e3o do guia permite agendar com maior anteced\u00eancia e ver mais listagens, no entanto ir\u00e1 levar mais tempo a transferir. Se optar que seja Autom\u00e1tico, ser\u00e1 escolhido baseado no n\u00famero de canais.","LabelActiveService":"Ativar Servi\u00e7o:","LabelActiveServiceHelp":"Podem ser instalados m\u00faltiplas extens\u00f5es para TV, mas s\u00f3 pode estar ativo um de cada vez.","OptionAutomatic":"Autom\u00e1tico","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Caixa","OptionDownloadDiscImage":"Disco","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Traseira","OptionDownloadArtImage":"Arte","OptionDownloadPrimaryImage":"Principal","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Op\u00e7\u00f5es da Imagem","LabelMaxBackdropsPerItem":"N\u00famero m\u00e1ximo de imagens de fundo por item:","LabelMaxScreenshotsPerItem":"N\u00famero m\u00e1ximo de imagens de ecr\u00e3 por item:","LabelMinBackdropDownloadWidth":"Transferir Imagens de fundo com o tamanho m\u00ednimo:","LabelMinScreenshotDownloadWidth":"Transferir imagens de ecr\u00e3 com o tamanho m\u00ednimo:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Adicionar","LabelTriggerType":"Trigger Type:","OptionDaily":"Diariamente","OptionWeekly":"Semanalmente","OptionOnInterval":"Num intervalo","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Dia:","LabelTime":"Tempo:","LabelEvent":"Evento:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Todos","HeaderTvTuners":"Sintonizadores","HeaderGallery":"Galeria","HeaderLatestGames":"\u00daltimos Jogos","HeaderRecentlyPlayedGames":"Jogos jogados recentemente","TabGameSystems":"Sistemas de Jogos","TitleMediaLibrary":"Biblioteca Multim\u00e9dia","TabFolders":"Pastas","TabPathSubstitution":"Substitui\u00e7\u00e3o de Localiza\u00e7\u00e3o","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Analisar Biblioteca","HeaderNumberOfPlayers":"Jogadores:","OptionAnyNumberOfPlayers":"Qualquer","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Pastas Multim\u00e9dia","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Cenas","HeaderAwardsAndReviews":"Pr\u00e9mios e Cr\u00edticas","HeaderSoundtracks":"Banda Sonora","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Extras","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Partes Adicionais","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Desconectado","PathSubstitutionHelp":"Substitui\u00e7\u00f5es de localiza\u00e7\u00e3o s\u00e3o usadas para mapear uma localiza\u00e7\u00e3o no servidor que possa ser acedido pelos clientes. Ao permitir o acesso dos clientes ao conte\u00fado multim\u00e9dia no servidor, permite-lhes reproduzir diretamente atrav\u00e9s da rede e evitar o uso de recursos do servidor para fazer stream ou transcodifica\u00e7\u00e3o.","HeaderFrom":"De","HeaderTo":"Para","LabelFrom":"De:","LabelFromHelp":"Exemplo: D:\\Filmes (no servidor)","LabelTo":"Para:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Especiais","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Classifica\u00e7\u00e3o no Tvdb","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"O servidor ir\u00e1 decidir a qualidade e a velocidade","OptionHighSpeedTranscodingHelp":"Baixa qualidade mas r\u00e1pida codifica\u00e7\u00e3o","OptionHighQualityTranscodingHelp":"Alta qualidade mas lenta codifica\u00e7\u00e3o","OptionMaxQualityTranscodingHelp":"M\u00e1xima qualidade com codifica\u00e7\u00e3o lenta e utiliza\u00e7\u00e3o do CPU elevada","OptionHighSpeedTranscoding":"Mais alta velocidade","OptionHighQualityTranscoding":"Mais alta qualidade","OptionMaxQualityTranscoding":"M\u00e1xima qualidade","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"Ir\u00e1 criar ficheiros log muito grandes e s\u00f3 \u00e9 recomendado para ajudar na resolu\u00e7\u00e3o de problemas.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"Em alguns casos ir\u00e1 resultar no aumento da qualidade do v\u00eddeo mas ir\u00e1 aumentar a utiliza\u00e7\u00e3o do CPU.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Adicional T\u00edtulos","LabelEnableDlnaPlayTo":"Ativar DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/ru.json b/MediaBrowser.Server.Implementations/Localization/Server/ru.json index f1a44ee3f8..abacec362e 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/ru.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/ru.json @@ -1 +1 @@ -{"LabelExit":"\u0412\u044b\u0445\u043e\u0434","LabelVisitCommunity":"\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e","LabelGithubWiki":"\u0412\u0438\u043a\u0438 \u043d\u0430 Github","LabelSwagger":"\u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 Swagger","LabelStandard":"\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442","LabelViewApiDocumentation":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API","LabelBrowseLibrary":"\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435","LabelConfigureMediaBrowser":"\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c Media Browser","LabelOpenLibraryViewer":"\u0421\u0440\u0435\u0434\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438","LabelRestartServer":"\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440","LabelShowLogWindow":"\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0416\u0443\u0440\u043d\u0430\u043b \u0432 \u043e\u043a\u043d\u0435","LabelPrevious":"\u041f\u0440\u0435\u0434","LabelFinish":"\u0413\u043e\u0442\u043e\u0432\u043e","LabelNext":"\u0421\u043b\u0435\u0434","LabelYoureDone":"\u0412\u043e\u0442 \u0438 \u0432\u0441\u0451!","WelcomeToMediaBrowser":"\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"\u042d\u0442\u043e\u0442 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a \u043f\u043e \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u0442 \u0432\u0430\u0441 \u0447\u0435\u0440\u0435\u0437 \u0432\u0441\u0435 \u0444\u0430\u0437\u044b \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430.","TellUsAboutYourself":"\u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0438\u0442\u0435 \u043d\u0430\u043c \u043e \u0441\u0435\u0431\u0435","LabelYourFirstName":"\u0412\u0430\u0448\u0435 \u0438\u043c\u044f:","MoreUsersCanBeAddedLater":"\u041f\u043e\u0442\u043e\u043c \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0451 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0447\u0435\u0440\u0435\u0437 \u041f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f.","UserProfilesIntro":"\u0412 Media Browser \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u0447\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043c\u0435\u0442\u044c \u0441\u0432\u043e\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f.","LabelWindowsService":"\u0421\u043b\u0443\u0436\u0431\u0430 Windows","AWindowsServiceHasBeenInstalled":"\u0421\u043b\u0443\u0436\u0431\u0430 Windows \u0431\u044b\u043b\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430.","WindowsServiceIntro1":"\u041e\u0431\u044b\u0447\u043d\u043e Media Browser Server \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043a\u0430\u043a \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043d\u043e \u0435\u0441\u043b\u0438 \u0432\u0430\u043c \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0438\u0442\u0435\u043b\u044c\u043d\u0435\u0435 \u0435\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u0430 \u0432 \u0444\u043e\u043d\u043e\u0432\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435, \u0432\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0435\u0433\u043e \u0438\u0437 \u043a\u043e\u043d\u0441\u043e\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043b\u0443\u0436\u0431\u0430\u043c\u0438 Windows.","WindowsServiceIntro2":"\u041a\u043e\u0433\u0434\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0441\u043b\u0443\u0436\u0431\u0430 Windows, \u043f\u0440\u0438\u043c\u0438\u0442\u0435 \u043a \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044e, \u0447\u0442\u043e \u0442\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0437\u0430\u043a\u0440\u044b\u0442\u044c \u0437\u043d\u0430\u0447\u043e\u043a \u0432 \u043b\u043e\u0442\u043a\u0435, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u043b\u0443\u0436\u0431\u0443. \u0421\u043b\u0443\u0436\u0431\u0443 \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u043d\u0443\u0436\u043d\u043e \u0441\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u043e\u0431\u043b\u0430\u0434\u0430\u044f \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u043c\u0438 \u043f\u0440\u0430\u0432\u0430\u043c\u0438, \u0447\u0435\u0440\u0435\u0437 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u0432 \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u043b\u0443\u0436\u0431\u0430 \u043d\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0441\u0430\u043c\u043e-\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0442\u044c\u0441\u044f, \u0442\u0430\u043a \u0447\u0442\u043e \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0430\u0448\u0435 \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e.","WizardCompleted":"\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0443\u0436\u043d\u043e \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442. Media Browser \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u0431\u043e\u0440 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0438\u0437 \u043d\u0430\u0448\u0438\u0445 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0438 \u0442\u043e\u0433\u0434\u0430 \u0449\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u0413\u043e\u0442\u043e\u0432\u043e<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u041f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f<\/b>.","LabelConfigureSettings":"\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b","LabelEnableVideoImageExtraction":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0438\u0437 \u0432\u0438\u0434\u0435\u043e","VideoImageExtractionHelp":"\u0414\u043b\u044f \u0432\u0438\u0434\u0435\u043e, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0449\u0451 \u200b\u200b\u043d\u0435\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439, \u0438 \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0432 \u0441\u0435\u0442\u0438. \u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u043f\u0440\u043e\u0434\u043b\u0438\u0442\u0441\u044f \u0435\u0449\u0451 \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f, \u043d\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u043c \u0441\u0442\u0430\u043d\u0435\u0442 \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u044f\u0442\u043d\u043e\u0435 \u0434\u043b\u044f \u0433\u043b\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445.","LabelEnableChapterImageExtractionForMovies":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0434\u043b\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432","LabelChapterImageExtractionForMoviesHelp":"\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0434\u0435\u043b\u0430\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u043c \u0434\u043b\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u042d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440 \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u0420\u0430\u0431\u043e\u0442\u0430 \u044d\u0442\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u043d\u0430 4:00 \u0443\u0442\u0440\u0430, \u043e\u0434\u043d\u0430\u043a\u043e, \u0435\u0451 \u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a\u0430 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u044d\u0442\u0443 \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441 \u043f\u0438\u043a.","LabelEnableAutomaticPortMapping":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e-\u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432","LabelEnableAutomaticPortMappingHelp":"UPnP \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u043e\u0431\u043b\u0435\u0433\u0447\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.","ButtonOk":"\u041e\u041a","ButtonCancel":"\u041e\u0442\u043c\u0435\u043d\u0430","HeaderSetupLibrary":"\u041f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u0430\u0448\u0435\u0439 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438","ButtonAddMediaFolder":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0443","LabelFolderType":"\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438:","MediaFolderHelpPluginRequired":"* \u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d, \u043d\u043f\u0440. GameBrowser \u0438\u043b\u0438 MB Bookshelf.","ReferToMediaLibraryWiki":"\u0421\u043c. \u0432 \u0432\u0438\u043a\u0438 \u043f\u043e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435 (\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 media library).","LabelCountry":"\u0421\u0442\u0440\u0430\u043d\u0430:","LabelLanguage":"\u042f\u0437\u044b\u043a:","HeaderPreferredMetadataLanguage":"\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:","LabelSaveLocalMetadata":"\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0432\u043d\u0443\u0442\u0440\u0438 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a","LabelSaveLocalMetadataHelp":"\u041a\u043e\u0433\u0434\u0430 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0445\u0440\u0430\u043d\u044f\u0442\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0432\u043d\u0443\u0442\u0440\u0438 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a, \u0442\u043e\u0433\u0434\u0430 \u0432 \u0442\u0430\u043a\u043e\u043c \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0438\u0445 \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043b\u0435\u0433\u043a\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u044c.","LabelDownloadInternetMetadata":"\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0441\u0435\u0442\u0438","LabelDownloadInternetMetadataHelp":"Media Browser \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u043c \u043c\u0435\u0434\u0438\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445.","TabPreferences":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","TabPassword":"\u041f\u0430\u0440\u043e\u043b\u044c","TabLibraryAccess":"\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435","TabImage":"\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435","TabProfile":"\u041f\u0440\u043e\u0444\u0438\u043b\u044c","LabelDisplayMissingEpisodesWithinSeasons":"\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u044e\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u0441\u0435\u0437\u043e\u043d\u0430\u0445","LabelUnairedMissingEpisodesWithinSeasons":"\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u0441\u0435\u0437\u043e\u043d\u0430\u0445","HeaderVideoPlaybackSettings":"\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0435\u043e","LabelAudioLanguagePreference":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e:","LabelSubtitleLanguagePreference":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:","LabelDisplayForcedSubtitlesOnly":"\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b","TabProfiles":"\u041f\u0440\u043e\u0444\u0438\u043b\u0438","TabSecurity":"\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c","ButtonAddUser":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","ButtonSave":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c","ButtonResetPassword":"\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","LabelNewPassword":"\u041d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","LabelNewPasswordConfirm":"\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f","HeaderCreatePassword":"\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","LabelCurrentPassword":"\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","LabelMaxParentalRating":"\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0440\u0430\u0437\u0440\u0435\u0448\u0451\u043d\u043d\u0430\u044f \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:","MaxParentalRatingHelp":"\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u0440\u044b\u0442\u043e \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","LibraryAccessHelp":"\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445.","ButtonDeleteImage":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435","ButtonUpload":"\u0412\u044b\u0433\u0440\u0443\u0437\u0438\u0442\u044c","HeaderUploadNewImage":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","LabelDropImageHere":"\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0441\u044e\u0434\u0430","ImageUploadAspectRatioHelp":"\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0435 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438 - 1:1. \u0422\u043e\u043b\u044c\u043a\u043e JPG\/PNG.","MessageNothingHere":"\u0417\u0434\u0435\u0441\u044c \u043d\u0435\u0442 \u043d\u0438\u0447\u0435\u0433\u043e.","MessagePleaseEnsureInternetMetadata":"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0441\u0435\u0442\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430.","TabSuggested":"\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f","TabLatest":"\u041d\u043e\u0432\u0438\u043d\u043a\u0438","TabUpcoming":"\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438\u0435","TabShows":"\u0421\u0435\u0440\u0438\u0430\u043b\u044b","TabEpisodes":"\u042d\u043f\u0438\u0437\u043e\u0434\u044b","TabGenres":"\u0416\u0430\u043d\u0440\u044b","TabPeople":"\u041b\u044e\u0434\u0438","TabNetworks":"\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u0438","HeaderUsers":"\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438","HeaderFilters":"\u0424\u0438\u043b\u044c\u0442\u0440\u044b:","ButtonFilter":"\u0424\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u0442\u044c","OptionFavorite":"\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435","OptionLikes":"\u041d\u0440\u0430\u0432\u044f\u0449\u0438\u0435\u0441\u044f","OptionDislikes":"\u041d\u0435 \u043d\u0440\u0430\u0432\u044f\u0449\u0438\u0435\u0441\u044f","OptionActors":"\u0410\u043a\u0442\u0451\u0440\u044b","OptionGuestStars":"\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0451\u043d\u043d\u044b\u0435 \u0437\u0432\u0451\u0437\u0434\u044b","OptionDirectors":"\u0420\u0435\u0436\u0438\u0441\u0441\u0451\u0440\u044b","OptionWriters":"\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0441\u0442\u044b","OptionProducers":"\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440\u044b","HeaderResume":"\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c","HeaderNextUp":"\u0427\u0442\u043e \u0434\u0430\u043b\u044c\u0448\u0435","NoNextUpItemsMessage":"\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0441\u0432\u043e\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u044b!","HeaderLatestEpisodes":"\u0421\u0432\u0435\u0436\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b","HeaderPersonTypes":"\u0422\u0438\u043f\u044b \u043b\u044e\u0434\u0435\u0439:","TabSongs":"\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438","TabAlbums":"\u0410\u043b\u044c\u0431\u043e\u043c\u044b","TabArtists":"\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438","TabAlbumArtists":"\u0410\u043b\u044c\u0431\u043e\u043c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438","TabMusicVideos":"\u0412\u0438\u0434\u0435\u043e\u043a\u043b\u0438\u043f\u044b","ButtonSort":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c","HeaderSortBy":"\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0439:","HeaderSortOrder":"\u041f\u043e\u0440\u044f\u0434\u043e\u043a:","OptionPlayed":"\u0412\u043e\u0441\u043f\u0440-\u043d\u043d\u044b\u0435","OptionUnplayed":"\u041d\u0435 \u0432\u043e\u0441\u043f\u0440-\u043d\u043d\u044b\u0435","OptionAscending":"\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u044e\u0449\u0438\u0439","OptionDescending":"\u0423\u0431\u044b\u0432\u0430\u044e\u0449\u0438\u0439","OptionRuntime":"\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c","OptionReleaseDate":"\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430","OptionPlayCount":"\u0427\u0438\u0441\u043b\u043e \u0432\u043e\u0441\u043f\u0440-\u0438\u0439","OptionDatePlayed":"\u0414\u0430\u0442\u0430 \u0432\u043e\u0441\u043f\u0440-\u0438\u044f","OptionDateAdded":"\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432-\u043d\u0438\u044f","OptionAlbumArtist":"\u0410\u043b\u044c\u0431-\u044b\u0439 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c","OptionArtist":"\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c","OptionAlbum":"\u0410\u043b\u044c\u0431\u043e\u043c","OptionTrackName":"\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438","OptionCommunityRating":"\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430","OptionNameSort":"\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435","OptionFolderSort":"Folders","OptionBudget":"\u0411\u044e\u0434\u0436\u0435\u0442","OptionRevenue":"\u0414\u043e\u0445\u043e\u0434","OptionPoster":"\u041f\u043e\u0441\u0442\u0435\u0440","OptionBackdrop":"Backdrop","OptionTimeline":"\u0425\u0440\u043e\u043d\u043e\u043b\u043e\u0433\u0438\u044f","OptionThumb":"\u042d\u0441\u043a\u0438\u0437","OptionBanner":"\u0411\u0430\u043d\u043d\u0435\u0440","OptionCriticRating":"\u041e\u0446\u0435\u043d\u043a\u0430 \u043a\u0440\u0438\u0442\u0438\u043a\u043e\u0432","OptionVideoBitrate":"\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432\u0438\u0434\u0435\u043e","OptionResumable":"\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u044b\u0435","ScheduledTasksHelp":"\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0437\u0430\u0434\u0430\u0447\u0435, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0435\u0451 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435.","ScheduledTasksTitle":"\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a \u0437\u0430\u0434\u0430\u0447","TabMyPlugins":"\u041c\u043e\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u044b","TabCatalog":"\u041a\u0430\u0442\u0430\u043b\u043e\u0433","TabUpdates":"\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","PluginsTitle":"\u041f\u043b\u0430\u0433\u0438\u043d\u044b","HeaderAutomaticUpdates":"\u0410\u0432\u0442\u043e-\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","HeaderUpdateLevel":"\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","HeaderNowPlaying":"\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f","HeaderLatestAlbums":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b","HeaderLatestSongs":"\u0421\u0432\u0435\u0436\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438","HeaderRecentlyPlayed":"\u041d\u0435\u0434\u0430\u0432\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435","HeaderFrequentlyPlayed":"\u0427\u0430\u0441\u0442\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u044b\u0435","DevBuildWarning":"\u0421\u0431\u043e\u0440\u043a\u0438 \u0420\u0430\u0437\u0440\u0430\u0431[\u043e\u0442\u043a\u0438] \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441\u0430\u043c\u044b\u043c\u0438 \u043f\u0435\u0440\u0435\u0434\u043e\u0432\u044b\u043c\u0438. \u0412\u044b\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0447\u0430\u0441\u0442\u043e, \u044d\u0442\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 \u043d\u0435 \u0431\u044b\u043b\u0438 \u043f\u0440\u043e\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u044b. \u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u0430\u0432\u0430\u0440\u0438\u0439\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0438 \u0432 \u0446\u0435\u043b\u043e\u043c, \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u043e\u0433\u0443\u0442 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0432\u043e\u043e\u0431\u0449\u0435.","LabelVideoType":"\u0422\u0438\u043f \u0432\u0438\u0434\u0435\u043e:","OptionBluray":"BluRay","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"\u0414\u043b\u044f \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432:","OptionHasSubtitles":"\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b","OptionHasTrailer":"\u0422\u0440\u0435\u0439\u043b\u0435\u0440","OptionHasThemeSong":"\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f \u0442\u0435\u043c\u044b","OptionHasThemeVideo":"\u0412\u0438\u0434\u0435\u043e \u0442\u0435\u043c\u044b","TabMovies":"\u0424\u0438\u043b\u044c\u043c\u044b","TabStudios":"\u0421\u0442\u0443\u0434\u0438\u0438","TabTrailers":"\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b","HeaderLatestMovies":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u044b","HeaderLatestTrailers":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b","OptionHasSpecialFeatures":"\u0414\u043e\u043f. \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b","OptionImdbRating":"\u041e\u0446\u0435\u043d\u043a\u0430 IMDb","OptionParentalRating":"\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f","OptionPremiereDate":"\u0414\u0430\u0442\u0430 \u043f\u0440\u0435\u043c\u044c\u0435\u0440\u044b","TabBasic":"\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435","TabAdvanced":"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435","HeaderStatus":"\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435:","OptionContinuing":"\u041f\u0440\u043e\u0434\u043b\u0435\u043d\u043e","OptionEnded":"\u0417\u0430\u043a\u043e\u043d\u0447\u0435\u043d\u043e","HeaderAirDays":"\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430:","OptionSunday":"\u0412\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435","OptionMonday":"\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a","OptionTuesday":"\u0412\u0442\u043e\u0440\u043d\u0438\u043a","OptionWednesday":"\u0421\u0440\u0435\u0434\u0430","OptionThursday":"\u0427\u0435\u0442\u0432\u0435\u0440\u0433","OptionFriday":"\u041f\u044f\u0442\u043d\u0438\u0446\u0430","OptionSaturday":"\u0421\u0443\u0431\u0431\u043e\u0442\u0430","HeaderManagement":"\u0414\u043b\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:","OptionMissingImdbId":"\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 IMDb Id","OptionMissingTvdbId":"\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 TheTVDB Id","OptionMissingOverview":"\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u043e\u0431\u0437\u043e\u0440\u0430","OptionFileMetadataYearMismatch":"\u041d\u0435\u0441\u043e\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u0433\u043e\u0434\u0430 \u0432 \u0444\u0430\u0439\u043b\u0435\/\u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445","TabGeneral":"\u041e\u0431\u0449\u0438\u0435","TitleSupport":"\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430","TabLog":"\u0416\u0443\u0440\u043d\u0430\u043b","TabAbout":"\u0418\u043d\u0444\u043e","TabSupporterKey":"\u041a\u043b\u044e\u0447 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u0435\u043b\u044f","TabBecomeSupporter":"\u0421\u0442\u0430\u0442\u044c \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c","MediaBrowserHasCommunity":"Media Browser \u0438\u043c\u0435\u0435\u0442 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.","CheckoutKnowledgeBase":"\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u043d\u0430\u0448\u0435\u0439 \u0431\u0430\u0437\u043e\u0439 \u0437\u043d\u0430\u043d\u0438\u0439 \u0434\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043d\u0438\u044f \u043f\u043e\u043c\u043e\u0449\u0438 \u043f\u043e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044e \u0432\u0430\u043c\u0438 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0442\u0434\u0430\u0447\u0438 \u043e\u0442 Media Browser.","SearchKnowledgeBase":"\u041f\u043e\u0438\u0441\u043a \u0432 \u0411\u0430\u0437\u0435 \u0437\u043d\u0430\u043d\u0438\u0439","VisitTheCommunity":"\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e","VisitMediaBrowserWebsite":"\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0441\u0430\u0439\u0442 Media Browser","VisitMediaBrowserWebsiteLong":"\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 \u0441\u0430\u0439\u0442 Media Browser, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u0438 \u043f\u043e\u0441\u043f\u0435\u0432\u0430\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u0433\u043e\u043c \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432.","OptionHideUser":"\u0421\u043a\u0440\u044b\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u044d\u043a\u0440\u0430\u043d\u043e\u0432 \u0432\u0445\u043e\u0434\u0430","OptionDisableUser":"\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","OptionDisableUserHelp":"\u041a\u043e\u0433\u0434\u0430 \u043e\u043d \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d, \u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0439 \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0440\u0435\u0437\u043a\u043e \u0440\u0430\u0437\u043e\u0440\u0432\u0430\u043d\u044b.","HeaderAdvancedControl":"\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0430\u0432\u0430\u043c\u0438","LabelName":"\u0418\u043c\u044f:","OptionAllowUserToManageServer":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c","HeaderFeatureAccess":"\u041f\u0440\u0430\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c","OptionAllowMediaPlayback":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432","OptionAllowBrowsingLiveTv":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044e \u043f\u043e \u0422\u0412 \u044d\u0444\u0438\u0440\u0443","OptionAllowDeleteLibraryContent":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0443\u0434\u0430\u043b\u044f\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438","OptionAllowManageLiveTv":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0430\u043c\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0422\u0412 \u044d\u0444\u0438\u0440\u0430","OptionAllowRemoteControlOthers":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438","OptionMissingTmdbId":"\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 TMDb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"\u041e\u0446\u0435\u043d\u043a\u0430 Metascore","ButtonSelect":"\u0412\u044b\u0431\u0440\u0430\u0442\u044c","ButtonGroupVersions":"\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438","PismoMessage":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 Pismo File Mount \u043f\u043e \u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439.","PleaseSupportOtherProduces":"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u0438\u0435 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c:","VersionNumber":"\u0412\u0435\u0440\u0441\u0438\u044f {0}","TabPaths":"\u041f\u0443\u0442\u0438","TabServer":"\u0421\u0435\u0440\u0432\u0435\u0440","TabTranscoding":"\u0422\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435","TitleAdvanced":"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e","LabelAutomaticUpdateLevel":"\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u0430\u0432\u0442\u043e-\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","OptionRelease":"\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a","OptionBeta":"\u0411\u0435\u0442\u0430","OptionDev":"\u0420\u0430\u0437\u0440\u0430\u0431 (\u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e)","LabelAllowServerAutoRestart":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439","LabelAllowServerAutoRestartHelp":"\u0421\u0435\u0440\u0432\u0435\u0440 \u0431\u0443\u0434\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0441\u0442\u043e\u044f, \u043a\u043e\u0433\u0434\u0430 \u043d\u0438 \u043e\u0434\u0438\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0430\u043a\u0442\u0438\u0432\u0435\u043d.","LabelEnableDebugLogging":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043e\u0442\u043b\u0430\u0434\u043e\u0447\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0416\u0443\u0440\u043d\u0430\u043b\u0435","LabelRunServerAtStartup":"\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439","LabelRunServerAtStartupHelp":"\u0417\u043d\u0430\u0447\u043e\u043a \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435 \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u0442\u0430\u0440\u0442\u0430 Windows. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0441\u043b\u0443\u0436\u0431\u0443 Windows, \u0443\u0431\u0435\u0440\u0438\u0442\u0435 \u0433\u0430\u043b\u043e\u0447\u043a\u0443 \u0438 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u043b\u0443\u0436\u0431\u0443 \u0438\u0437 \u043a\u043e\u043d\u0441\u043e\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f Windows. \u041f\u0440\u0438\u043c\u0438\u0442\u0435 \u043a \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044e, \u0447\u0442\u043e \u043e\u043d\u0438 \u043e\u0431\u0430 \u043d\u0435 \u043c\u043e\u0433\u0443\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0437\u0430\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u043e\u043a \u0432 \u043b\u043e\u0442\u043a\u0435 \u0434\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0441\u043b\u0443\u0436\u0431\u044b.","ButtonSelectDirectory":"\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433","LabelCustomPaths":"\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u043f\u0443\u0442\u0438, \u043a\u0443\u0434\u0430 \u043f\u043e\u0436\u0435\u043b\u0430\u0435\u0442\u0435. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u044f \u043f\u0443\u0441\u0442\u044b\u043c\u0438, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.","LabelCachePath":"\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 Cache:","LabelCachePathHelp":"\u0412 \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0444\u0430\u0439\u043b\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430, \u0442\u0430\u043a\u0438\u0435 \u043a\u0430\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f.","LabelImagesByNamePath":"\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 Images by name:","LabelImagesByNamePathHelp":"\u0412 \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0430\u043a\u0442\u0451\u0440\u044b. \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438 \u0441\u0442\u0443\u0434\u0438\u0439\u043d\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f.","LabelMetadataPath":"\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 Metadata:","LabelMetadataPathHelp":"\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043d\u044b\u0435 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0435 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0445\u0440\u0430\u043d\u0438\u0442\u044c\u0441\u044f \u0432 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0430\u0445.","LabelTranscodingTempPath":"\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 Transcoding temporary:","LabelTranscodingTempPathHelp":"\u0412 \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0447\u0438\u0435 \u0444\u0430\u0439\u043b\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0435\u0440\u043e\u043c.","TabBasics":"\u041e\u0441\u043d\u043e\u0432\u044b","TabTV":"\u0422\u0412","TabGames":"\u0418\u0433\u0440\u044b","TabMusic":"\u041c\u0443\u0437\u044b\u043a\u0430","TabOthers":"\u0414\u0440\u0443\u0433\u043e\u0435","HeaderExtractChapterImagesFor":"\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0441\u0446\u0435\u043d \u0434\u043b\u044f:","OptionMovies":"\u0424\u0438\u043b\u044c\u043c\u044b","OptionEpisodes":"\u042d\u043f\u0438\u0437\u043e\u0434\u044b","OptionOtherVideos":"\u0414\u0440\u0443\u0433\u043e\u0435 \u0432\u0438\u0434\u0435\u043e","TitleMetadata":"\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435","LabelAutomaticUpdatesFanart":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441 FanArt.tv","LabelAutomaticUpdatesTmdb":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441 TheMovieDB.org","LabelAutomaticUpdatesTvdb":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441 TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"\u041a\u043e\u0433\u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e, \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u043a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 fanart.tv. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0435\u043d\u044b.","LabelAutomaticUpdatesTmdbHelp":"\u041a\u043e\u0433\u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e, \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u043a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 TheMovieDB.org. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0435\u043d\u044b.","LabelAutomaticUpdatesTvdbHelp":"\u041a\u043e\u0433\u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e, \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u043a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 TheTVDB.com. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0435\u043d\u044b.","ExtractChapterImagesHelp":"\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0434\u0435\u043b\u0430\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u043c \u0434\u043b\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440 \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u042d\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043a\u0430\u043a \u043f\u043b\u0430\u043d\u043e\u0432\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0441 4:00 \u0443\u0442\u0440\u0430, \u043e\u0434\u043d\u0430\u043a\u043e, \u0435\u0451 \u043c\u043e\u0436\u043d\u043e \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a\u0430 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u044d\u0442\u0443 \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441 \u043f\u0438\u043a.","LabelMetadataDownloadLanguage":"\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a:","ButtonAutoScroll":"\u0410\u0432\u0442\u043e-\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0430","LabelImageSavingConvention":"\u0424\u043e\u0440\u043c\u0430\u0442 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439:","LabelImageSavingConventionHelp":"Media Browser \u043e\u043f\u043e\u0437\u043d\u0430\u0435\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043e\u0442 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0451\u043d\u043d\u044b\u0445 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430. \u0412\u044b\u0431\u043e\u0440 \u0441\u0432\u043e\u0435\u0433\u043e \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0430 \u043f\u043e\u043b\u0435\u0437\u0435\u043d, \u043a\u043e\u0433\u0434\u0430 \u0432\u044b \u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435\u0441\u044c \u0442\u0430\u043a\u0436\u0435 \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430\u043c\u0438.","OptionImageSavingCompatible":"\u0421\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0439 - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 - MB3\/MB2","ButtonSignIn":"\u0412\u043e\u0439\u0442\u0438","TitleSignIn":"\u0412\u043e\u0439\u0442\u0438","HeaderPleaseSignIn":"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u043e\u0439\u0434\u0438\u0442\u0435","LabelUser":"\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:","LabelPassword":"\u041f\u0430\u0440\u043e\u043b\u044c:","ButtonManualLogin":"\u0420\u0443\u0447\u043d\u043e\u0439 \u0432\u0432\u043e\u0434:","PasswordLocalhostMessage":"\u041f\u0430\u0440\u043e\u043b\u0438 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u044e\u0442\u0441\u044f \u043f\u0440\u0438 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u043c \u0432\u0445\u043e\u0434\u0435","TabGuide":"\u0422\u0435\u043b\u0435\u0433\u0438\u0434","TabChannels":"\u0422\u0412 \u043a\u0430\u043d\u0430\u043b\u044b","HeaderChannels":"\u0422\u0412 \u043a\u0430\u043d\u0430\u043b\u044b","TabRecordings":"\u0417\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","TabScheduled":"\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435","TabSeries":"\u0421\u0435\u0440\u0438\u0430\u043b","ButtonCancelRecording":"\u041e\u0442\u043c\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","HeaderPrePostPadding":"\u041e\u0442\u0431\u0438\u0432\u043a\u0438 \u0434\u043e\/\u043f\u043e\u0441\u043b\u0435","LabelPrePaddingMinutes":"\u041e\u0442\u0431\u0438\u0432\u043a\u0430 \u0434\u043e, \u043c\u0438\u043d:","OptionPrePaddingRequired":"\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0442\u0431\u0438\u0432\u043a\u0430 \u0434\u043e \u043d\u0430\u0447\u0430\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u043b\u044f \u0435\u0451 \u0446\u0435\u043b\u043e\u0441\u0442\u043d\u043e\u0441\u0442\u0438.","LabelPostPaddingMinutes":"\u041e\u0442\u0431\u0438\u0432\u043a\u0430 \u043f\u043e\u0441\u043b\u0435, \u043c\u0438\u043d:","OptionPostPaddingRequired":"\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0442\u0431\u0438\u0432\u043a\u0430 \u043f\u043e\u0441\u043b\u0435 \u043a\u043e\u043d\u0446\u0430 \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u043b\u044f \u0435\u0451 \u0446\u0435\u043b\u043e\u0441\u0442\u043d\u043e\u0441\u0442\u0438.","HeaderWhatsOnTV":"\u0427\u0442\u043e \u0434\u0430\u043b\u044c\u0448\u0435","HeaderUpcomingTV":"\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438","TabStatus":"\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435","TabSettings":"\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b","ButtonRefreshGuideData":"\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430","OptionPriority":"\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442","OptionRecordOnAllChannels":"\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0443 \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432","OptionRecordAnytime":"\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0443 \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f","OptionRecordOnlyNewEpisodes":"\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b","HeaderDays":"\u0414\u043d\u0438","HeaderActiveRecordings":"\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","HeaderLatestRecordings":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","HeaderAllRecordings":"\u0412\u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","ButtonPlay":"\u0412\u043e\u0441\u043f\u0440","ButtonEdit":"\u041f\u0440\u0430\u0432\u0438\u0442\u044c","ButtonRecord":"\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c","ButtonDelete":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c","OptionRecordSeries":"\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b","HeaderDetails":"\u0414\u0435\u0442\u0430\u043b\u0438","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"\u0412\u044b\u0445\u043e\u0434","LabelVisitCommunity":"\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e","LabelGithubWiki":"\u0412\u0438\u043a\u0438 \u043d\u0430 Github","LabelSwagger":"\u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 Swagger","LabelStandard":"\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442","LabelViewApiDocumentation":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API","LabelBrowseLibrary":"\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435","LabelConfigureMediaBrowser":"\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c Media Browser","LabelOpenLibraryViewer":"\u0421\u0440\u0435\u0434\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438","LabelRestartServer":"\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440","LabelShowLogWindow":"\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0416\u0443\u0440\u043d\u0430\u043b \u0432 \u043e\u043a\u043d\u0435","LabelPrevious":"\u041f\u0440\u0435\u0434","LabelFinish":"\u0413\u043e\u0442\u043e\u0432\u043e","LabelNext":"\u0421\u043b\u0435\u0434","LabelYoureDone":"\u0412\u043e\u0442 \u0438 \u0432\u0441\u0451!","WelcomeToMediaBrowser":"\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"\u042d\u0442\u043e\u0442 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a \u043f\u043e \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u043c\u0443 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u0442 \u0432\u0430\u0441 \u0447\u0435\u0440\u0435\u0437 \u0432\u0441\u0435 \u0444\u0430\u0437\u044b \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430.","TellUsAboutYourself":"\u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0438\u0442\u0435 \u043d\u0430\u043c \u043e \u0441\u0435\u0431\u0435","LabelYourFirstName":"\u0412\u0430\u0448\u0435 \u0438\u043c\u044f:","MoreUsersCanBeAddedLater":"\u041f\u043e\u0442\u043e\u043c \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0451 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0447\u0435\u0440\u0435\u0437 \u041f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f.","UserProfilesIntro":"\u0412 Media Browser \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439, \u0447\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043c\u0435\u0442\u044c \u0441\u0432\u043e\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f.","LabelWindowsService":"\u0421\u043b\u0443\u0436\u0431\u0430 Windows","AWindowsServiceHasBeenInstalled":"\u0421\u043b\u0443\u0436\u0431\u0430 Windows \u0431\u044b\u043b\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430.","WindowsServiceIntro1":"\u041e\u0431\u044b\u0447\u043d\u043e Media Browser Server \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043a\u0430\u043a \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043d\u043e \u0435\u0441\u043b\u0438 \u0432\u0430\u043c \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0438\u0442\u0435\u043b\u044c\u043d\u0435\u0435 \u0435\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u0430 \u0432 \u0444\u043e\u043d\u043e\u0432\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435, \u0432\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0435\u0433\u043e \u0438\u0437 \u043a\u043e\u043d\u0441\u043e\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043b\u0443\u0436\u0431\u0430\u043c\u0438 Windows.","WindowsServiceIntro2":"\u041a\u043e\u0433\u0434\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0441\u043b\u0443\u0436\u0431\u0430 Windows, \u043f\u0440\u0438\u043c\u0438\u0442\u0435 \u043a \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044e, \u0447\u0442\u043e \u0442\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0437\u0430\u043a\u0440\u044b\u0442\u044c \u0437\u043d\u0430\u0447\u043e\u043a \u0432 \u043b\u043e\u0442\u043a\u0435, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u043b\u0443\u0436\u0431\u0443. \u0421\u043b\u0443\u0436\u0431\u0443 \u0442\u0430\u043a\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u043d\u0443\u0436\u043d\u043e \u0441\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u043e\u0431\u043b\u0430\u0434\u0430\u044f \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u043c\u0438 \u043f\u0440\u0430\u0432\u0430\u043c\u0438, \u0447\u0435\u0440\u0435\u0437 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u0432 \u0434\u0430\u043d\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043b\u0443\u0436\u0431\u0430 \u043d\u0435\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u0430 \u0441\u0430\u043c\u043e-\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0442\u044c\u0441\u044f, \u0442\u0430\u043a \u0447\u0442\u043e \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043d\u043e\u0432\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0430\u0448\u0435 \u0432\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e.","WizardCompleted":"\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0443\u0436\u043d\u043e \u043d\u0430 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442. Media Browser \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u0431\u043e\u0440 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0438\u0437 \u043d\u0430\u0448\u0438\u0445 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0438 \u0442\u043e\u0433\u0434\u0430 \u0449\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u0413\u043e\u0442\u043e\u0432\u043e<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u0432 \u041f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f<\/b>.","LabelConfigureSettings":"\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b","LabelEnableVideoImageExtraction":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0438\u0437 \u0432\u0438\u0434\u0435\u043e","VideoImageExtractionHelp":"\u0414\u043b\u044f \u0432\u0438\u0434\u0435\u043e, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0449\u0451 \u200b\u200b\u043d\u0435\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439, \u0438 \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0432 \u0441\u0435\u0442\u0438. \u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u043f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u043f\u0440\u043e\u0434\u043b\u0438\u0442\u0441\u044f \u0435\u0449\u0451 \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f, \u043d\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u043c \u0441\u0442\u0430\u043d\u0435\u0442 \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u044f\u0442\u043d\u043e\u0435 \u0434\u043b\u044f \u0433\u043b\u0430\u0437 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445.","LabelEnableChapterImageExtractionForMovies":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0434\u043b\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432","LabelChapterImageExtractionForMoviesHelp":"\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0434\u0435\u043b\u0430\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u043c \u0434\u043b\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u042d\u0442\u043e\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440 \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u0420\u0430\u0431\u043e\u0442\u0430 \u0434\u0430\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u043d\u0430 4:00 \u0443\u0442\u0440\u0430, \u043e\u0434\u043d\u0430\u043a\u043e, \u0435\u0451 \u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a\u0430 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u044d\u0442\u0443 \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441 \u043f\u0438\u043a.","LabelEnableAutomaticPortMapping":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e-\u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432","LabelEnableAutomaticPortMappingHelp":"UPnP \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u043e\u0431\u043b\u0435\u0433\u0447\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.","ButtonOk":"\u041e\u041a","ButtonCancel":"\u041e\u0442\u043c\u0435\u043d\u0430","ButtonNew":"\u041d\u043e\u0432\u044b\u0439","HeaderSetupLibrary":"\u041f\u0435\u0440\u0432\u043e\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u0430\u0448\u0435\u0439 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438","ButtonAddMediaFolder":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0443","LabelFolderType":"\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438:","MediaFolderHelpPluginRequired":"* \u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d, \u043d\u043f\u0440. GameBrowser \u0438\u043b\u0438 MB Bookshelf.","ReferToMediaLibraryWiki":"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435 \u0441\u043c. \u0432 \u0432\u0438\u043a\u0438.","LabelCountry":"\u0421\u0442\u0440\u0430\u043d\u0430:","LabelLanguage":"\u042f\u0437\u044b\u043a:","HeaderPreferredMetadataLanguage":"\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:","LabelSaveLocalMetadata":"\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0432\u043d\u0443\u0442\u0440\u0438 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a","LabelSaveLocalMetadataHelp":"\u041a\u043e\u0433\u0434\u0430 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0445\u0440\u0430\u043d\u044f\u0442\u0441\u044f \u043f\u0440\u044f\u043c\u043e \u0432\u043d\u0443\u0442\u0440\u0438 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a, \u0442\u043e\u0433\u0434\u0430 \u0432 \u0442\u0430\u043a\u043e\u043c \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u0438\u0445 \u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043b\u0435\u0433\u043a\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u044c.","LabelDownloadInternetMetadata":"\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0441\u0435\u0442\u0438","LabelDownloadInternetMetadataHelp":"Media Browser \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u043c \u043c\u0435\u0434\u0438\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445.","TabPreferences":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","TabPassword":"\u041f\u0430\u0440\u043e\u043b\u044c","TabLibraryAccess":"\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435","TabImage":"\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435","TabProfile":"\u041f\u0440\u043e\u0444\u0438\u043b\u044c","TabMetadata":"\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b","TabImages":"\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","TabCollectionTitles":"\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u044f","LabelDisplayMissingEpisodesWithinSeasons":"\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u044e\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u0441\u0435\u0437\u043e\u043d\u0430\u0445","LabelUnairedMissingEpisodesWithinSeasons":"\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u0441\u0435\u0437\u043e\u043d\u0430\u0445","HeaderVideoPlaybackSettings":"\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0435\u043e","LabelAudioLanguagePreference":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e:","LabelSubtitleLanguagePreference":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:","LabelDisplayForcedSubtitlesOnly":"\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b","TabProfiles":"\u041f\u0440\u043e\u0444\u0438\u043b\u0438","TabSecurity":"\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c","ButtonAddUser":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","ButtonSave":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c","ButtonResetPassword":"\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","LabelNewPassword":"\u041d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","LabelNewPasswordConfirm":"\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f","HeaderCreatePassword":"\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c","LabelCurrentPassword":"\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c","LabelMaxParentalRating":"\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0440\u0430\u0437\u0440\u0435\u0448\u0451\u043d\u043d\u0430\u044f \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:","MaxParentalRatingHelp":"\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u0440\u044b\u0442\u043e \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","LibraryAccessHelp":"\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441 \u044d\u0442\u0438\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445.","ButtonDeleteImage":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435","ButtonUpload":"\u0412\u044b\u0433\u0440\u0443\u0437\u0438\u0442\u044c","HeaderUploadNewImage":"\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","LabelDropImageHere":"\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0441\u044e\u0434\u0430","ImageUploadAspectRatioHelp":"\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0435 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438 - 1:1. \u0422\u043e\u043b\u044c\u043a\u043e JPG\/PNG.","MessageNothingHere":"\u0417\u0434\u0435\u0441\u044c \u043d\u0435\u0442 \u043d\u0438\u0447\u0435\u0433\u043e.","MessagePleaseEnsureInternetMetadata":"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0441\u0435\u0442\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430.","TabSuggested":"\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f","TabLatest":"\u041d\u043e\u0432\u0438\u043d\u043a\u0438","TabUpcoming":"\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438\u0435","TabShows":"\u0421\u0435\u0440\u0438\u0430\u043b\u044b","TabEpisodes":"\u042d\u043f\u0438\u0437\u043e\u0434\u044b","TabGenres":"\u0416\u0430\u043d\u0440\u044b","TabPeople":"\u041b\u044e\u0434\u0438","TabNetworks":"\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u0438","HeaderUsers":"\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438","HeaderFilters":"\u0424\u0438\u043b\u044c\u0442\u0440\u044b:","ButtonFilter":"\u0424\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u0442\u044c","OptionFavorite":"\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435","OptionLikes":"\u041d\u0440\u0430\u0432\u044f\u0449\u0438\u0435\u0441\u044f","OptionDislikes":"\u041d\u0435 \u043d\u0440\u0430\u0432\u044f\u0449\u0438\u0435\u0441\u044f","OptionActors":"\u0410\u043a\u0442\u0451\u0440\u044b","OptionGuestStars":"\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0451\u043d\u043d\u044b\u0435 \u0437\u0432\u0451\u0437\u0434\u044b","OptionDirectors":"\u0420\u0435\u0436\u0438\u0441\u0441\u0451\u0440\u044b","OptionWriters":"\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0441\u0442\u044b","OptionProducers":"\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440\u044b","HeaderResume":"\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c","HeaderNextUp":"\u0427\u0442\u043e \u0434\u0430\u043b\u044c\u0448\u0435","NoNextUpItemsMessage":"\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0441\u0432\u043e\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u044b!","HeaderLatestEpisodes":"\u0421\u0432\u0435\u0436\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b","HeaderPersonTypes":"\u0422\u0438\u043f\u044b \u043b\u044e\u0434\u0435\u0439:","TabSongs":"\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438","TabAlbums":"\u0410\u043b\u044c\u0431\u043e\u043c\u044b","TabArtists":"\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438","TabAlbumArtists":"\u0410\u043b\u044c\u0431\u043e\u043c\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438","TabMusicVideos":"\u0412\u0438\u0434\u0435\u043e\u043a\u043b\u0438\u043f\u044b","ButtonSort":"\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c","HeaderSortBy":"\u041a\u0440\u0438\u0442\u0435\u0440\u0438\u0439:","HeaderSortOrder":"\u041f\u043e\u0440\u044f\u0434\u043e\u043a:","OptionPlayed":"\u0412\u043e\u0441\u043f\u0440-\u043d\u043d\u044b\u0435","OptionUnplayed":"\u041d\u0435 \u0432\u043e\u0441\u043f\u0440-\u043d\u043d\u044b\u0435","OptionAscending":"\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u044e\u0449\u0438\u0439","OptionDescending":"\u0423\u0431\u044b\u0432\u0430\u044e\u0449\u0438\u0439","OptionRuntime":"\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c","OptionReleaseDate":"\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430","OptionPlayCount":"\u0427\u0438\u0441\u043b\u043e \u0432\u043e\u0441\u043f\u0440-\u0438\u0439","OptionDatePlayed":"\u0414\u0430\u0442\u0430 \u0432\u043e\u0441\u043f\u0440-\u0438\u044f","OptionDateAdded":"\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432-\u043d\u0438\u044f","OptionAlbumArtist":"\u0410\u043b\u044c\u0431-\u044b\u0439 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c","OptionArtist":"\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c","OptionAlbum":"\u0410\u043b\u044c\u0431\u043e\u043c","OptionTrackName":"\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438","OptionCommunityRating":"\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430","OptionNameSort":"\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435","OptionFolderSort":"\u041f\u0430\u043f\u043a\u0438","OptionBudget":"\u0411\u044e\u0434\u0436\u0435\u0442","OptionRevenue":"\u0414\u043e\u0445\u043e\u0434","OptionPoster":"\u041f\u043e\u0441\u0442\u0435\u0440","OptionBackdrop":"\u0417\u0430\u0434\u043d\u0438\u043a","OptionTimeline":"\u0425\u0440\u043e\u043d\u043e\u043b\u043e\u0433\u0438\u044f","OptionThumb":"\u042d\u0441\u043a\u0438\u0437","OptionBanner":"\u0411\u0430\u043d\u043d\u0435\u0440","OptionCriticRating":"\u041e\u0446\u0435\u043d\u043a\u0430 \u043a\u0440\u0438\u0442\u0438\u043a\u043e\u0432","OptionVideoBitrate":"\u0421\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432\u0438\u0434\u0435\u043e","OptionResumable":"\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u044b\u0435","ScheduledTasksHelp":"\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0437\u0430\u0434\u0430\u0447\u0435, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0435\u0451 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435.","ScheduledTasksTitle":"\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a \u0437\u0430\u0434\u0430\u0447","TabMyPlugins":"\u041c\u043e\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u044b","TabCatalog":"\u041a\u0430\u0442\u0430\u043b\u043e\u0433","TabUpdates":"\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","PluginsTitle":"\u041f\u043b\u0430\u0433\u0438\u043d\u044b","HeaderAutomaticUpdates":"\u0410\u0432\u0442\u043e-\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","HeaderUpdateLevel":"\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","HeaderNowPlaying":"\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f","HeaderLatestAlbums":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b","HeaderLatestSongs":"\u0421\u0432\u0435\u0436\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438","HeaderRecentlyPlayed":"\u041d\u0435\u0434\u0430\u0432\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435","HeaderFrequentlyPlayed":"\u0427\u0430\u0441\u0442\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u044b\u0435","DevBuildWarning":"\u0421\u0431\u043e\u0440\u043a\u0438 \u0420\u0430\u0437\u0440\u0430\u0431[\u043e\u0442\u043a\u0438] \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441\u0430\u043c\u044b\u043c\u0438 \u043f\u0435\u0440\u0435\u0434\u043e\u0432\u044b\u043c\u0438. \u0412\u044b\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0447\u0430\u0441\u0442\u043e, \u044d\u0442\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 \u043d\u0435 \u0431\u044b\u043b\u0438 \u043f\u0440\u043e\u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u044b. \u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u0430\u0432\u0430\u0440\u0438\u0439\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443, \u0438 \u0432 \u0446\u0435\u043b\u043e\u043c, \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043c\u043e\u0433\u0443\u0442 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0432\u043e\u043e\u0431\u0449\u0435.","LabelVideoType":"\u0422\u0438\u043f \u0432\u0438\u0434\u0435\u043e:","OptionBluray":"BluRay","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"\u0414\u043b\u044f \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u0432:","OptionHasSubtitles":"\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b","OptionHasTrailer":"\u0422\u0440\u0435\u0439\u043b\u0435\u0440","OptionHasThemeSong":"\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f \u0442\u0435\u043c\u044b","OptionHasThemeVideo":"\u0412\u0438\u0434\u0435\u043e \u0442\u0435\u043c\u044b","TabMovies":"\u0424\u0438\u043b\u044c\u043c\u044b","TabStudios":"\u0421\u0442\u0443\u0434\u0438\u0438","TabTrailers":"\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b","HeaderLatestMovies":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u044b","HeaderLatestTrailers":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b","OptionHasSpecialFeatures":"\u0414\u043e\u043f. \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b","OptionImdbRating":"\u041e\u0446\u0435\u043d\u043a\u0430 IMDb","OptionParentalRating":"\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f","OptionPremiereDate":"\u0414\u0430\u0442\u0430 \u043f\u0440\u0435\u043c\u044c\u0435\u0440\u044b","TabBasic":"\u041e\u0441\u043d\u043e\u0432\u043d\u044b\u0435","TabAdvanced":"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435","HeaderStatus":"\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435:","OptionContinuing":"\u041f\u0440\u043e\u0434\u043b\u0435\u043d\u043e","OptionEnded":"\u0417\u0430\u043a\u043e\u043d\u0447\u0435\u043d\u043e","HeaderAirDays":"\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430:","OptionSunday":"\u0412\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435","OptionMonday":"\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a","OptionTuesday":"\u0412\u0442\u043e\u0440\u043d\u0438\u043a","OptionWednesday":"\u0421\u0440\u0435\u0434\u0430","OptionThursday":"\u0427\u0435\u0442\u0432\u0435\u0440\u0433","OptionFriday":"\u041f\u044f\u0442\u043d\u0438\u0446\u0430","OptionSaturday":"\u0421\u0443\u0431\u0431\u043e\u0442\u0430","HeaderManagement":"\u0414\u043b\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:","OptionMissingImdbId":"\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 IMDb Id","OptionMissingTvdbId":"\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 TheTVDB Id","OptionMissingOverview":"\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 \u043e\u0431\u0437\u043e\u0440\u0430","OptionFileMetadataYearMismatch":"\u041d\u0435\u0441\u043e\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u0433\u043e\u0434\u0430 \u0432 \u0444\u0430\u0439\u043b\u0435\/\u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445","TabGeneral":"\u041e\u0431\u0449\u0438\u0435","TitleSupport":"\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430","TabLog":"\u0416\u0443\u0440\u043d\u0430\u043b","TabAbout":"\u0418\u043d\u0444\u043e","TabSupporterKey":"\u041a\u043b\u044e\u0447 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u0435\u043b\u044f","TabBecomeSupporter":"\u0421\u0442\u0430\u0442\u044c \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c","MediaBrowserHasCommunity":"Media Browser \u0438\u043c\u0435\u0435\u0442 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u044e\u0449\u0435\u0435\u0441\u044f \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432 \u043f\u0440\u043e\u0435\u043a\u0442\u0430.","CheckoutKnowledgeBase":"\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u043d\u0430\u0448\u0435\u0439 \u0431\u0430\u0437\u043e\u0439 \u0437\u043d\u0430\u043d\u0438\u0439 \u0434\u043b\u044f \u043e\u043a\u0430\u0437\u0430\u043d\u0438\u044f \u043f\u043e\u043c\u043e\u0449\u0438 \u043f\u043e \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044e \u0432\u0430\u043c\u0438 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0442\u0434\u0430\u0447\u0438 \u043e\u0442 Media Browser.","SearchKnowledgeBase":"\u041f\u043e\u0438\u0441\u043a \u0432 \u0411\u0430\u0437\u0435 \u0437\u043d\u0430\u043d\u0438\u0439","VisitTheCommunity":"\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e","VisitMediaBrowserWebsite":"\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0441\u0430\u0439\u0442 Media Browser","VisitMediaBrowserWebsiteLong":"\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 \u0441\u0430\u0439\u0442 Media Browser, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u0438 \u043f\u043e\u0441\u043f\u0435\u0432\u0430\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u0433\u043e\u043c \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432.","OptionHideUser":"\u0421\u043a\u0440\u044b\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u044d\u043a\u0440\u0430\u043d\u043e\u0432 \u0432\u0445\u043e\u0434\u0430","OptionDisableUser":"\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f","OptionDisableUserHelp":"\u041a\u043e\u0433\u0434\u0430 \u043e\u043d \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d, \u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0439 \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0440\u0435\u0437\u043a\u043e \u0440\u0430\u0437\u043e\u0440\u0432\u0430\u043d\u044b.","HeaderAdvancedControl":"\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0430\u0432\u0430\u043c\u0438","LabelName":"\u0418\u043c\u044f:","OptionAllowUserToManageServer":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c","HeaderFeatureAccess":"\u041f\u0440\u0430\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c","OptionAllowMediaPlayback":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432","OptionAllowBrowsingLiveTv":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044e \u043f\u043e \u0422\u0412 \u044d\u0444\u0438\u0440\u0443","OptionAllowDeleteLibraryContent":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0443\u0434\u0430\u043b\u044f\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438","OptionAllowManageLiveTv":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0430\u043c\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0422\u0412 \u044d\u0444\u0438\u0440\u0430","OptionAllowRemoteControlOthers":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438","OptionMissingTmdbId":"\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0435 TMDb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"\u041e\u0446\u0435\u043d\u043a\u0430 Metascore","ButtonSelect":"\u0412\u044b\u0431\u0440\u0430\u0442\u044c","ButtonSearch":"\u041f\u043e\u0438\u0441\u043a","ButtonGroupVersions":"\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438","PismoMessage":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u043d\u0430 Pismo File Mount \u043f\u043e \u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0439.","PleaseSupportOtherProduces":"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u0438\u0435 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c:","VersionNumber":"\u0412\u0435\u0440\u0441\u0438\u044f {0}","TabPaths":"\u041f\u0443\u0442\u0438","TabServer":"\u0421\u0435\u0440\u0432\u0435\u0440","TabTranscoding":"\u0422\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435","TitleAdvanced":"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e","LabelAutomaticUpdateLevel":"\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u0430\u0432\u0442\u043e-\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f","OptionRelease":"\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a","OptionBeta":"\u0411\u0435\u0442\u0430","OptionDev":"\u0420\u0430\u0437\u0440\u0430\u0431 (\u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e)","LabelAllowServerAutoRestart":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439","LabelAllowServerAutoRestartHelp":"\u0421\u0435\u0440\u0432\u0435\u0440 \u0431\u0443\u0434\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0441\u0442\u043e\u044f, \u043a\u043e\u0433\u0434\u0430 \u043d\u0438 \u043e\u0434\u0438\u043d \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u0430\u043a\u0442\u0438\u0432\u0435\u043d.","LabelEnableDebugLogging":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043e\u0442\u043b\u0430\u0434\u043e\u0447\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0416\u0443\u0440\u043d\u0430\u043b\u0435","LabelRunServerAtStartup":"\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u0441\u0438\u0441\u0442\u0435\u043c\u043e\u0439","LabelRunServerAtStartupHelp":"\u0417\u043d\u0430\u0447\u043e\u043a \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435 \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u0442\u0430\u0440\u0442\u0430 Windows. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0441\u043b\u0443\u0436\u0431\u0443 Windows, \u0443\u0431\u0435\u0440\u0438\u0442\u0435 \u0433\u0430\u043b\u043e\u0447\u043a\u0443 \u0438 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u043b\u0443\u0436\u0431\u0443 \u0438\u0437 \u043a\u043e\u043d\u0441\u043e\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f Windows. \u041f\u0440\u0438\u043c\u0438\u0442\u0435 \u043a \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044e, \u0447\u0442\u043e \u043e\u043d\u0438 \u043e\u0431\u0430 \u043d\u0435 \u043c\u043e\u0433\u0443\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0437\u0430\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u043e\u043a \u0432 \u043b\u043e\u0442\u043a\u0435 \u0434\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0430 \u0441\u043b\u0443\u0436\u0431\u044b.","ButtonSelectDirectory":"\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433","LabelCustomPaths":"\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u043f\u0443\u0442\u0438, \u043a\u0443\u0434\u0430 \u043f\u043e\u0436\u0435\u043b\u0430\u0435\u0442\u0435. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u044f \u043f\u0443\u0441\u0442\u044b\u043c\u0438, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.","LabelCachePath":"\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 Cache:","LabelCachePathHelp":"\u0412 \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0444\u0430\u0439\u043b\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430, \u0442\u0430\u043a\u0438\u0435 \u043a\u0430\u043a \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f.","LabelImagesByNamePath":"\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 Images by name:","LabelImagesByNamePathHelp":"\u0412 \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0430\u043a\u0442\u0451\u0440\u044b. \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0438 \u0441\u0442\u0443\u0434\u0438\u0439\u043d\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f.","LabelMetadataPath":"\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 Metadata:","LabelMetadataPathHelp":"\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u043d\u044b\u0435 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0435 \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0445\u0440\u0430\u043d\u0438\u0442\u044c\u0441\u044f \u0432 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0430\u0445.","LabelTranscodingTempPath":"\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 Transcoding temporary:","LabelTranscodingTempPathHelp":"\u0412 \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u0441\u044f \u0440\u0430\u0431\u043e\u0447\u0438\u0435 \u0444\u0430\u0439\u043b\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0435\u0440\u043e\u043c.","TabBasics":"\u041e\u0441\u043d\u043e\u0432\u044b","TabTV":"\u0422\u0412","TabGames":"\u0418\u0433\u0440\u044b","TabMusic":"\u041c\u0443\u0437\u044b\u043a\u0430","TabOthers":"\u0414\u0440\u0443\u0433\u043e\u0435","HeaderExtractChapterImagesFor":"\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0441\u0446\u0435\u043d \u0434\u043b\u044f:","OptionMovies":"\u0424\u0438\u043b\u044c\u043c\u044b","OptionEpisodes":"\u042d\u043f\u0438\u0437\u043e\u0434\u044b","OptionOtherVideos":"\u0414\u0440\u0443\u0433\u043e\u0435 \u0432\u0438\u0434\u0435\u043e","TitleMetadata":"\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435","LabelAutomaticUpdatesFanart":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441 FanArt.tv","LabelAutomaticUpdatesTmdb":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441 TheMovieDB.org","LabelAutomaticUpdatesTvdb":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441 TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"\u041a\u043e\u0433\u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e, \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u043a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 fanart.tv. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0435\u043d\u044b.","LabelAutomaticUpdatesTmdbHelp":"\u041a\u043e\u0433\u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e, \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u043a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 TheMovieDB.org. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0435\u043d\u044b.","LabelAutomaticUpdatesTvdbHelp":"\u041a\u043e\u0433\u0434\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e, \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u043a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043d\u0430 TheTVDB.com. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0435\u043d\u044b.","ExtractChapterImagesHelp":"\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0434\u0435\u043b\u0430\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u043c \u0434\u043b\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440 \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u042d\u0442\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043a\u0430\u043a \u043f\u043b\u0430\u043d\u043e\u0432\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0441 4:00 \u0443\u0442\u0440\u0430, \u043e\u0434\u043d\u0430\u043a\u043e, \u0435\u0451 \u043c\u043e\u0436\u043d\u043e \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a\u0430 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441 \u043f\u0438\u043a.","LabelMetadataDownloadLanguage":"\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a:","ButtonAutoScroll":"\u0410\u0432\u0442\u043e-\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0430","LabelImageSavingConvention":"\u0424\u043e\u0440\u043c\u0430\u0442 \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439:","LabelImageSavingConventionHelp":"Media Browser \u043e\u043f\u043e\u0437\u043d\u0430\u0435\u0442 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043e\u0442 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0440\u0430\u0441\u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0451\u043d\u043d\u044b\u0445 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u043c\u0443\u043b\u044c\u0442\u0438\u043c\u0435\u0434\u0438\u0430. \u0412\u044b\u0431\u043e\u0440 \u0441\u0432\u043e\u0435\u0433\u043e \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0430 \u043f\u043e\u043b\u0435\u0437\u0435\u043d, \u043a\u043e\u0433\u0434\u0430 \u0432\u044b \u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435\u0441\u044c \u0442\u0430\u043a\u0436\u0435 \u0438 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430\u043c\u0438.","OptionImageSavingCompatible":"\u0421\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0439 - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 - MB3\/MB2","ButtonSignIn":"\u0412\u043e\u0439\u0442\u0438","TitleSignIn":"\u0412\u043e\u0439\u0442\u0438","HeaderPleaseSignIn":"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u043e\u0439\u0434\u0438\u0442\u0435","LabelUser":"\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:","LabelPassword":"\u041f\u0430\u0440\u043e\u043b\u044c:","ButtonManualLogin":"\u0420\u0443\u0447\u043d\u043e\u0439 \u0432\u0432\u043e\u0434:","PasswordLocalhostMessage":"\u041f\u0430\u0440\u043e\u043b\u0438 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u044e\u0442\u0441\u044f \u043f\u0440\u0438 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u043c \u0432\u0445\u043e\u0434\u0435","TabGuide":"\u0422\u0435\u043b\u0435\u0433\u0438\u0434","TabChannels":"\u0422\u0412 \u043a\u0430\u043d\u0430\u043b\u044b","HeaderChannels":"\u0422\u0412 \u043a\u0430\u043d\u0430\u043b\u044b","TabRecordings":"\u0417\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","TabScheduled":"\u0417\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435","TabSeries":"\u0421\u0435\u0440\u0438\u0430\u043b","ButtonCancelRecording":"\u041e\u0442\u043c\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","HeaderPrePostPadding":"\u041e\u0442\u0431\u0438\u0432\u043a\u0438 \u0434\u043e\/\u043f\u043e\u0441\u043b\u0435","LabelPrePaddingMinutes":"\u041e\u0442\u0431\u0438\u0432\u043a\u0430 \u0434\u043e, \u043c\u0438\u043d:","OptionPrePaddingRequired":"\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0442\u0431\u0438\u0432\u043a\u0430 \u0434\u043e \u043d\u0430\u0447\u0430\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u043b\u044f \u0435\u0451 \u0446\u0435\u043b\u043e\u0441\u0442\u043d\u043e\u0441\u0442\u0438.","LabelPostPaddingMinutes":"\u041e\u0442\u0431\u0438\u0432\u043a\u0430 \u043f\u043e\u0441\u043b\u0435, \u043c\u0438\u043d:","OptionPostPaddingRequired":"\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0442\u0431\u0438\u0432\u043a\u0430 \u043f\u043e\u0441\u043b\u0435 \u043a\u043e\u043d\u0446\u0430 \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u043b\u044f \u0435\u0451 \u0446\u0435\u043b\u043e\u0441\u0442\u043d\u043e\u0441\u0442\u0438.","HeaderWhatsOnTV":"\u0427\u0442\u043e \u0434\u0430\u043b\u044c\u0448\u0435","HeaderUpcomingTV":"\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438","TabStatus":"\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435","TabSettings":"\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b","ButtonRefreshGuideData":"\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430","OptionPriority":"\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442","OptionRecordOnAllChannels":"\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0443 \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432","OptionRecordAnytime":"\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0443 \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f","OptionRecordOnlyNewEpisodes":"\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b","HeaderDays":"\u0414\u043d\u0438","HeaderActiveRecordings":"\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","HeaderLatestRecordings":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","HeaderAllRecordings":"\u0412\u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0437\u0430\u043f\u0438\u0441\u0438","ButtonPlay":"\u0412\u043e\u0441\u043f\u0440","ButtonEdit":"\u041f\u0440\u0430\u0432\u0438\u0442\u044c","ButtonRecord":"\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c","ButtonDelete":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c","ButtonRemove":"\u0423\u0431\u0440\u0430\u0442\u044c","OptionRecordSeries":"\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b","HeaderDetails":"\u0414\u0435\u0442\u0430\u043b\u0438","TitleLiveTV":"\u0422\u0412 \u044d\u0444\u0438\u0440","LabelNumberOfGuideDays":"\u0427\u0438\u0441\u043b\u043e \u0434\u043d\u0435\u0439 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445:","LabelNumberOfGuideDaysHelp":"\u0411\u043e\u043b\u044c\u0448\u0435\u0435 \u0447\u0438\u0441\u043b\u043e \u0434\u043d\u0435\u0439 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0431\u043e\u043b\u044c\u0448\u0435\u0433\u043e \u0447\u0438\u0441\u043b\u0430 \u043f\u0443\u043d\u043a\u0442\u043e\u0432 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044f, \u043d\u043e \u044d\u0442\u043e \u0442\u0430\u043a\u0436\u0435 \u0437\u0430\u043d\u0438\u043c\u0430\u0435\u0442 \u0431\u043e\u043b\u044c\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438. \u041f\u0440\u0438 \u0440\u0435\u0436\u0438\u043c\u0435 \u0410\u0432\u0442\u043e \u0432\u044b\u0431\u043e\u0440 \u0431\u0443\u0434\u0435\u0442 \u0441\u0434\u0435\u043b\u0430\u043d \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u043a\u0430\u043d\u0430\u043b\u043e\u0432.","LabelActiveService":"\u0410\u043a\u0442\u0438\u0432\u043d\u0430\u044f \u0441\u043b\u0443\u0436\u0431\u0430:","LabelActiveServiceHelp":"\u041c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412, \u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0434\u0438\u043d \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0430\u043a\u0442\u0438\u0432\u0435\u043d \u0432 \u0442\u043e \u0436\u0435 \u0432\u0440\u0435\u043c\u044f.","OptionAutomatic":"\u0410\u0432\u0442\u043e","LiveTvPluginRequired":"\u041f\u043b\u0430\u0433\u0438\u043d-\u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043b\u0443\u0433 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.","LiveTvPluginRequiredHelp":"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043e\u0434\u0438\u043d \u0438\u0437 \u043d\u0430\u0448\u0438\u0445 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432, \u0442\u0430\u043a\u0438\u0445 \u043a\u0430\u043a NextPVR \u0438\u043b\u0438 ServerWMC.","HeaderCustomizeOptionsPerMediaType":"\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043f\u043e \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u0442\u0438\u043f\u0443 \u043d\u043e\u0441\u0438\u0442\u0435\u043b\u0435\u0439","OptionDownloadThumbImage":"\u042d\u0441\u043a\u0438\u0437","OptionDownloadMenuImage":"\u041c\u0435\u043d\u044e","OptionDownloadLogoImage":"\u041b\u043e\u0433\u043e\u0442\u0438\u043f","OptionDownloadBoxImage":"\u041a\u043e\u0440\u043e\u0431\u043a\u0430","OptionDownloadDiscImage":"\u0414\u0438\u0441\u043a","OptionDownloadBannerImage":"\u0411\u0430\u043d\u043d\u0435\u0440","OptionDownloadBackImage":"\u0421\u043f\u0438\u043d\u043a\u0430","OptionDownloadArtImage":"\u0424\u0430\u043d\u0430\u0440\u0442","OptionDownloadPrimaryImage":"\u041f\u0435\u0440\u0432\u0438\u0447\u043d\u043e\u0435","HeaderFetchImages":"\u0412\u044b\u0431\u043e\u0440\u043a\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439:","HeaderImageSettings":"\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0439","LabelMaxBackdropsPerItem":"\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u043e\u0432 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:","LabelMaxScreenshotsPerItem":"\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0441\u043d\u0438\u043c\u043a\u043e\u0432 \u044d\u043a\u0440\u0430\u043d\u0430 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:","LabelMinBackdropDownloadWidth":"\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u0430:","LabelMinScreenshotDownloadWidth":"\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u044c\u043d\u0430\u044f \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0441\u043d\u0438\u043c\u043a\u0430 \u044d\u043a\u0440\u0430\u043d\u0430:","ButtonAddScheduledTaskTrigger":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0440\u0438\u0433\u0433\u0435\u0440 \u0437\u0430\u0434\u0430\u0447\u0438","HeaderAddScheduledTaskTrigger":"\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0438","ButtonAdd":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c","LabelTriggerType":"\u0422\u0438\u043f \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430:","OptionDaily":"\u0415\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e","OptionWeekly":"\u0415\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e","OptionOnInterval":"\u0412 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0435","OptionOnAppStartup":"\u041f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f","OptionAfterSystemEvent":"\u041f\u043e\u0441\u043b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0433\u043e \u0441\u043e\u0431\u044b\u0442\u0438\u044f","LabelDay":"\u0414\u0435\u043d\u044c:","LabelTime":"\u0412\u0440\u0435\u043c\u044f:","LabelEvent":"\u0421\u043e\u0431\u044b\u0442\u0438\u0435:","OptionWakeFromSleep":"\u0412\u044b\u0445\u043e\u0434 \u0438\u0437 \u0441\u043f\u044f\u0449\u0435\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430","LabelEveryXMinutes":"\u041a\u0430\u0436\u0434\u044b\u0435:","HeaderTvTuners":"\u0422\u044e\u043d\u0435\u0440\u044b","HeaderGallery":"\u0413\u0430\u043b\u043b\u0435\u0440\u0435\u044f","HeaderLatestGames":"\u0421\u0432\u0435\u0436\u0438\u0435 \u0438\u0433\u0440\u044b","HeaderRecentlyPlayedGames":"\u041d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0433\u0440\u0430\u043d\u043d\u044b\u0435 \u0438\u0433\u0440\u044b","TabGameSystems":"\u0418\u0433\u0440\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b","TitleMediaLibrary":"\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430","TabFolders":"\u041f\u0430\u043f\u043a\u0438","TabPathSubstitution":"\u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0443\u0442\u0438","LabelSeasonZeroDisplayName":"\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0435\u0437\u043e\u043d\u0430 0:","LabelEnableRealtimeMonitor":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438","LabelEnableRealtimeMonitorHelp":"\u0412 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0441\u0440\u0430\u0437\u0443 \u0436\u0435.","ButtonScanLibrary":"\u0421\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443","HeaderNumberOfPlayers":"\u0418\u0433\u0440\u043e\u043a\u0438:","OptionAnyNumberOfPlayers":"\u041b\u044e\u0431\u043e\u0435","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"\u041c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438","HeaderThemeVideos":"\u0412\u0438\u0434\u0435\u043e \u0442\u0435\u043c\u044b","HeaderThemeSongs":"\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438 \u0442\u0435\u043c\u044b","HeaderScenes":"\u0421\u0446\u0435\u043d\u044b","HeaderAwardsAndReviews":"\u041d\u0430\u0433\u0440\u0430\u0434\u044b \u0438 \u0440\u0435\u0446\u0435\u043d\u0437\u0438\u0438","HeaderSoundtracks":"\u0421\u0430\u0443\u043d\u0434\u0442\u0440\u0435\u043a\u0438","HeaderMusicVideos":"\u0412\u0438\u0434\u0435\u043e\u043a\u043b\u0438\u043f\u044b","HeaderSpecialFeatures":"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b","HeaderCastCrew":"\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u0441\u044a\u0451\u043c\u043e\u043a","HeaderAdditionalParts":"\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0447\u0430\u0441\u0442\u0438","ButtonSplitVersionsApart":"\u0420\u0430\u0441\u0449\u0435\u043f\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e","ButtonPlayTrailer":"\u0422\u0440\u0435\u0439\u043b\u0435\u0440","LabelMissing":"\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u044e\u0449\u0435\u0435","LabelOffline":"\u041e\u0444\u0444\u043b\u0430\u0439\u043d","PathSubstitutionHelp":"\u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u043f\u043e\u0434\u043c\u0435\u043d\u044b \u043f\u0443\u0442\u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u043d\u0430 \u043f\u0443\u0442\u044c, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f. \u041f\u0440\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0430\u043c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435, \u0442\u0435 \u0441\u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0438\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043f\u043e \u0441\u0435\u0442\u0438 \u0438 \u0438\u0437\u0431\u0435\u0436\u0430\u0442\u044c \u0437\u0430\u0442\u0440\u0430\u0442\u044b \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0434\u043b\u044f \u0438\u0445 \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f.","HeaderFrom":"\u0421","HeaderTo":"\u041d\u0430","LabelFrom":"\u0421:","LabelFromHelp":"\u041f\u0440\u0438\u043c\u0435\u0440: D:\\Movies (\u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435)","LabelTo":"\u041d\u0430:","LabelToHelp":"\u041f\u0440\u0438\u043c\u0435\u0440: \\\\MyServer\\Movies (\u043f\u0443\u0442\u044c, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c)","ButtonAddPathSubstitution":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443","OptionSpecialEpisode":"\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435","OptionMissingEpisode":"\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u044e\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b","OptionUnairedEpisode":"\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b","OptionEpisodeSortName":"\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u0430 \u0434\u043b\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438","OptionSeriesSortName":"\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0435\u0440\u0438\u0430\u043b\u0430","OptionTvdbRating":"\u041e\u0446\u0435\u043d\u043a\u0430 TVDb","HeaderTranscodingQualityPreference":"\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f:","OptionAutomaticTranscodingHelp":"\u0421\u0435\u0440\u0432\u0435\u0440 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0438 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c","OptionHighSpeedTranscodingHelp":"\u041d\u0438\u0437\u043a\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e, \u043d\u043e \u0431\u044b\u0441\u0442\u0440\u043e\u0435 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435","OptionHighQualityTranscodingHelp":"\u0412\u044b\u0441\u043e\u043a\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e, \u043d\u043e \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e\u0435 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435","OptionMaxQualityTranscodingHelp":"\u041b\u0443\u0447\u0448\u0435\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u0440\u0438 \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e\u043c \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0438 \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440","OptionHighSpeedTranscoding":"\u0411\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c","OptionHighQualityTranscoding":"\u0411\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e","OptionMaxQualityTranscoding":"\u041c\u0430\u043a\u0441. \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e","OptionEnableDebugTranscodingLogging":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043e\u0442\u043b\u0430\u0434\u043e\u0447\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0416\u0443\u0440\u043d\u0430\u043b","OptionEnableDebugTranscodingLoggingHelp":"\u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u0444\u0430\u0439\u043b\u044b \u0416\u0443\u0440\u043d\u0430\u043b\u0430 \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u043e\u0433\u043e \u043e\u0431\u044a\u0451\u043c\u0430, \u0430 \u044d\u0442\u043e \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0441\u0438\u043b\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u043f\u043e\u043b\u0430\u0434\u043e\u043a.","OptionUpscaling":"\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0442\u044c \u0432\u0438\u0434\u0435\u043e \u0441 \u043f\u043e\u0432\u044b\u0448\u0435\u043d\u043d\u044b\u043c \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435\u043c","OptionUpscalingHelp":"\u0412 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u043b\u0443\u0447\u0430\u044f\u0445, \u044d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u0432\u0438\u0434\u0435\u043e, \u043d\u043e \u0443\u0432\u0435\u043b\u0438\u0447\u0438\u0442 \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043d\u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440.","EditCollectionItemsHelp":"\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043b\u0438 \u0443\u0431\u0438\u0440\u0430\u0442\u044c \u043b\u044e\u0431\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b, \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u0430\u043b\u044c\u0431\u043e\u043c\u044b, \u043a\u043d\u0438\u0433\u0438 \u0438\u043b\u0438 \u0438\u0433\u0440\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u044b \u0436\u0435\u043b\u0430\u0435\u0442\u0435 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u0434\u0430\u043d\u043d\u0443\u044e \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e.","HeaderAddTitles":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b","LabelEnableDlnaPlayTo":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c DLNA \u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438\u041d\u0430","LabelEnableDlnaPlayToHelp":"Media Browser \u043c\u043e\u0436\u0435\u0442 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0441\u0435\u0442\u0438 \u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438\u043c\u0438.","LabelEnableDlnaDebugLogging":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043e\u0442\u043b\u0430\u0434\u043e\u0447\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 DLNA \u0432 \u0416\u0443\u0440\u043d\u0430\u043b","LabelEnableDlnaDebugLoggingHelp":"\u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u0444\u0430\u0439\u043b\u044b \u0416\u0443\u0440\u043d\u0430\u043b\u0430 \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u043e\u0433\u043e \u043e\u0431\u044a\u0451\u043c\u0430, \u0430 \u044d\u0442\u043e \u0434\u043e\u043b\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0441\u0438\u043b\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u043f\u043e\u043b\u0430\u0434\u043e\u043a.","LabelEnableDlnaClientDiscoveryInterval":"\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432, \u0441","LabelEnableDlnaClientDiscoveryIntervalHelp":"\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430 \u043c\u0435\u0436\u0434\u0443 \u043f\u043e\u0438\u0441\u043a\u043e\u0432\u044b\u043c\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430\u043c\u0438 SSDP \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u044b\u043c\u0438 Media Browser, \u0441.","HeaderCustomDlnaProfiles":"\u0417\u0430\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u0438","HeaderSystemDlnaProfiles":"\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u0438","CustomDlnaProfilesHelp":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0437\u0430\u0434\u0430\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f, \u043e\u0440\u0438\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u043d\u043e\u0432\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e, \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f.","SystemDlnaProfilesHelp":"\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f. \u0427\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c, \u0441\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043e\u0440\u0438\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043d\u0430 \u0442\u043e \u0436\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e.","TitleDashboard":"\u041f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f","TabHome":"\u0413\u043b\u0430\u0432\u043d\u0430\u044f","TabInfo":"\u0421\u0432\u0435\u0434\u0435\u043d\u0438\u044f","HeaderLinks":"\u0421\u0441\u044b\u043b\u043a\u0438","HeaderSystemPaths":"\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435 \u043f\u0443\u0442\u0438","LinkCommunity":"\u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e","LinkGithub":"Github","LinkApiDocumentation":"\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API","LabelFriendlyServerName":"\u041f\u043e\u043d\u044f\u0442\u043d\u043e\u0435 \u0438\u043c\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430:","LabelFriendlyServerNameHelp":"\u042d\u0442\u043e \u0438\u043c\u044f \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0435\u0440\u0430. \u0415\u0441\u043b\u0438 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u0435 \u043f\u0443\u0441\u0442\u044b\u043c, \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e\u0438\u043c\u044f \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430.","LabelPreferredDisplayLanguage":"\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430","LabelPreferredDisplayLanguageHelp":"\u041f\u0435\u0440\u0435\u0432\u043e\u0434 Media Browser \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u044e\u0449\u0438\u0439\u043c\u0441\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c \u0438 \u0435\u0449\u0451 \u043d\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d.","LabelReadHowYouCanContribute":"\u0427\u0438\u0442\u0430\u0439\u0442\u0435 \u043e \u0442\u043e\u043c, \u043a\u0430\u043a \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u043d\u0435\u0441\u0442\u0438 \u0441\u0432\u043e\u0439 \u0432\u043a\u043b\u0430\u0434.","HeaderNewCollection":"\u041d\u043e\u0432\u0430\u044f \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f","NewCollectionNameExample":"\u041f\u0440\u0438\u043c\u0435\u0440: \u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b (\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f)","OptionSearchForInternetMetadata":"\u0418\u0441\u043a\u0430\u0442\u044c \u0432 \u0441\u0435\u0442\u0438 \u0444\u0430\u043d\u0430\u0440\u0442\u044b \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435","ButtonCreate":"\u0421\u043e\u0437\u0434\u0430\u0442\u044c","LabelHttpServerPortNumber":"\u041d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430 HTTP \u0441\u0435\u0440\u0432\u0435\u0440\u0430:","LabelWebSocketPortNumber":"\u041d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u0430:","LabelEnableAutomaticPortHelp":"UPnP \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u0430 \u0434\u043b\u044f \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.","LabelExternalDDNS":"\u0412\u043d\u0435\u0448\u043d\u0438\u0439 DDNS \u0434\u043e\u043c\u0435\u043d:","LabelExternalDDNSHelp":"\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 DNS, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0435\u0433\u043e \u0437\u0434\u0435\u0441\u044c. \u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f Media Browser \u0431\u0443\u0434\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0435\u0433\u043e \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438.","TabResume":"\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435","TabWeather":"\u041f\u043e\u0433\u043e\u0434\u0430","TitleAppSettings":"\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f","LabelMinResumePercentage":"\u041c\u0438\u043d. \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0434\u043b\u044f \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f:","LabelMaxResumePercentage":"\u041c\u0430\u043a\u0441. \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0434\u043b\u044f \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f:","LabelMinResumeDuration":"\u041c\u0438\u043d. \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0434\u043b\u044f \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f, \u0441:","LabelMinResumePercentageHelp":"\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0441\u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f \u043d\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u043c\u0438, \u0435\u0441\u043b\u0438 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0434\u043e \u044d\u0442\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438","LabelMaxResumePercentageHelp":"\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0441\u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u043c\u0438, \u0435\u0441\u043b\u0438 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u044d\u0442\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438","LabelMinResumeDurationHelp":"\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u043a\u043e\u0440\u043e\u0447\u0435 \u044d\u0442\u043e\u0433\u043e \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0442\u044c\u0441\u044f"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/server.json b/MediaBrowser.Server.Implementations/Localization/Server/server.json index 1e440379fb..fe120737f3 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/server.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/server.json @@ -35,6 +35,7 @@ "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "ButtonOk": "Ok", "ButtonCancel": "Cancel", + "ButtonNew": "New", "HeaderSetupLibrary": "Setup your media library", "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", @@ -52,6 +53,9 @@ "TabLibraryAccess": "Library Access", "TabImage": "Image", "TabProfile": "Profile", + "TabMetadata": "Metadata", + "TabImages": "Images", + "TabCollectionTitles": "Titles", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", "HeaderVideoPlaybackSettings": "Video Playback Settings", @@ -215,6 +219,7 @@ "OptionIsSD": "SD", "OptionMetascore": "Metascore", "ButtonSelect": "Select", + "ButtonSearch": "Search", "ButtonGroupVersions": "Group Versions", "PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PleaseSupportOtherProduces": "Please support other free products we utilize:", @@ -301,6 +306,7 @@ "ButtonEdit": "Edit", "ButtonRecord": "Record", "ButtonDelete": "Delete", + "ButtonRemove": "Remove", "OptionRecordSeries": "Record Series", "HeaderDetails": "Details", "ButtonCancelRecording": "Cancel Recording", @@ -400,5 +406,49 @@ "OptionEnableDebugTranscodingLoggingHelp": "This will create very large log files and is only recommended as needed for troubleshooting purposes.", "OptionEnableDebugTranscodingLogging": "Enable debug transcoding logging", "OptionUpscaling": "Allow clients to request upscaled video", - "OptionUpscalingHelp": "In some cases this will result in improved video quality but will increase CPU usage." + "OptionUpscalingHelp": "In some cases this will result in improved video quality but will increase CPU usage.", + "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", + "HeaderAddTitles": "Add Titles", + "LabelEnableDlnaPlayTo": "Enable DLNA Play To", + "LabelEnableDlnaPlayToHelp": "Media Browser can detect devices within your network and offer the ability to remote control them.", + "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", + "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", + "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", + "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.", + "HeaderCustomDlnaProfiles": "Custom Profiles", + "HeaderSystemDlnaProfiles": "System Profiles", + "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", + "SystemDlnaProfilesHelp": "System profiles are read-only. To override a system profile, create a custom profile targeting the same device.", + "TitleDashboard": "Dashboard", + "TabHome": "Home", + "TabInfo": "Info", + "HeaderLinks": "Links", + "HeaderSystemPaths": "System Paths", + "LinkCommunity": "Community", + "LinkGithub": "Github", + "LinkApiDocumentation": "Api Documentation", + "LabelFriendlyServerName": "Friendly server name:", + "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", + "LabelPreferredDisplayLanguage": "Preferred display language", + "LabelPreferredDisplayLanguageHelp": "Translating Media Browser is an ongoing project and is not yet complete.", + "LabelReadHowYouCanContribute": "Read about how you can contribute.", + "HeaderNewCollection": "New Collection", + "NewCollectionNameExample": "Example: Star Wars Collection", + "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", + "ButtonCreate": "Create", + "LabelHttpServerPortNumber": "Http server port number:", + "LabelWebSocketPortNumber": "Web socket port number:", + "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", + "LabelEnableAutomaticPortHelp": "UPnP allows automated router configuration for remote access. This may not work with some router models.", + "LabelExternalDDNS": "External DDNS:", + "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.", + "TabResume": "Resume", + "TabWeather": "Weather", + "TitleAppSettings": "App Settings", + "LabelMinResumePercentage": "Min resume percentage:", + "LabelMaxResumePercentage": "Max resume percentage:", + "LabelMinResumeDuration": "Min resume duration (seconds):", + "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", + "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", + "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable" } \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/sv.json b/MediaBrowser.Server.Implementations/Localization/Server/sv.json index 53e41b5fb6..e003a1ab7a 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/sv.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/sv.json @@ -1 +1 @@ -{"LabelExit":"Avsluta","LabelVisitCommunity":"Bes\u00f6k v\u00e5rt diskussionsforum","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"F\u00f6rval","LabelViewApiDocumentation":"L\u00e4s API-dokumentationen","LabelBrowseLibrary":"Bl\u00e4ddra i biblioteket","LabelConfigureMediaBrowser":"Konfigurera Media Browser","LabelOpenLibraryViewer":"\u00d6ppna biblioteksbl\u00e4ddraren","LabelRestartServer":"Starta om servern","LabelShowLogWindow":"Vissa loggf\u00f6nstret","LabelPrevious":"F\u00f6reg\u00e5ende","LabelFinish":"Klart","LabelNext":"N\u00e4sta","LabelYoureDone":"Klart!","WelcomeToMediaBrowser":"V\u00e4lkommen till Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Den h\u00e4r guiden hj\u00e4lper dig att g\u00f6ra de f\u00f6rsta inst\u00e4llningarna.","TellUsAboutYourself":"Ber\u00e4tta om dig sj\u00e4lv","LabelYourFirstName":"Ditt f\u00f6rnamn:","MoreUsersCanBeAddedLater":"Flera anv\u00e4ndare kan skapas senare i Kontrollpanelen.","UserProfilesIntro":"Media Browser har inbyggt st\u00f6d f\u00f6r anv\u00e4ndarprofiler, s\u00e5 varje anv\u00e4ndare kan ha sina egna utseendeinst\u00e4llningar, visad-markeringar och f\u00f6r\u00e4ldral\u00e5s.","LabelWindowsService":"Windows-tj\u00e4nst","AWindowsServiceHasBeenInstalled":"En Windows-tj\u00e4nst har installerats.","WindowsServiceIntro1":"Media Browser Server k\u00f6rs normalt som ett anv\u00e4ndarprogram med ikon i aktivitetsf\u00e4ltet, men om s\u00e5 \u00f6nskas kan den k\u00f6ras som en Windows-tj\u00e4nst och startas fr\u00e5n kontrollpanelen Tj\u00e4nster (Services).","WindowsServiceIntro2":"Om Media Browser k\u00f6rs som tj\u00e4nst, m\u00e4rk att den inte kan k\u00f6ras samtidigt som aktivitetsf\u00e4ltsikonen s\u00e5 f\u00f6r att k\u00f6ra tj\u00e4nsten m\u00e5ste ikonen st\u00e4ngas. Tj\u00e4nsten m\u00e5ste ocks\u00e5 k\u00f6ras med administrat\u00f6rsr\u00e4ttigheter (st\u00e4lls in i kontrollpanelen Tj\u00e4nster). Automatiska uppdateringar fungerar heller inte med tj\u00e4nsten, dvs tj\u00e4nsten m\u00e5ste stoppas f\u00f6re manuell uppdatering och sedan \u00e5terstartas.","WizardCompleted":"Det var allt f\u00f6r tillf\u00e4llet. Media Browser har b\u00f6rjat samla information om ditt mediebibliotek. Ta en titt p\u00e5 n\u00e5gra av v\u00e5ra appar och klicka sedan p\u00e5 Klart<\/b> f\u00f6r att komma till Kontrollpanelen<\/b>.","LabelConfigureSettings":"Inst\u00e4llningar","LabelEnableVideoImageExtraction":"Ta fram bildrutor ur videofiler","VideoImageExtractionHelp":"Dessa anv\u00e4nds f\u00f6r objekt som saknar bilder och d\u00e4r vi inte hittar n\u00e5gra vid s\u00f6kning p\u00e5 Internet. Detta g\u00f6r att den f\u00f6rsta genoms\u00f6kningen av biblioteket tar lite l\u00e4ngre tid, men ger en snyggare presentation.","LabelEnableChapterImageExtractionForMovies":"Ta fram kapitelbildrutor ur filmfiler","LabelChapterImageExtractionForMoviesHelp":"Detta m\u00f6jligg\u00f6r grafisk visning av menyer f\u00f6r val av kapitel. Processen kan vara tids- och CPU-kr\u00e4vande och beh\u00f6va flera gigabyte lagringsutrymme. Processen k\u00f6rs varje natt kl 04:00 men intervallet kan anpassas enligt \u00f6nskem\u00e5l i Schemal\u00e4ggaren. Vi rekommenderar inte att den k\u00f6rs vid tider d\u00e5 anv\u00e4ndare \u00e4r aktiva.","LabelEnableAutomaticPortMapping":"Aktivera automatisk koppling av portar","LabelEnableAutomaticPortMappingHelp":"UPnP m\u00f6jligg\u00f6r automatisk inst\u00e4llning av din router s\u00e5 att du enkelt kan n\u00e5 Media Browser fr\u00e5n Internet. Detta kanske inte fungerar med alla routrar.","ButtonOk":"OK","ButtonCancel":"Avbryt","HeaderSetupLibrary":"Konfigurera mediabiblioteket","ButtonAddMediaFolder":"Skapa mediamapp","LabelFolderType":"Typ av mapp:","MediaFolderHelpPluginRequired":"* Kr\u00e4ver att ett till\u00e4gg, t ex GameBrowser eller MB Bookshelf, \u00e4r installerat.","ReferToMediaLibraryWiki":"Se avsnittet om mediabibliotek i v\u00e5r Wiki.","LabelCountry":"Land:","LabelLanguage":"Spr\u00e5k:","HeaderPreferredMetadataLanguage":"\u00d6nskat spr\u00e5k f\u00f6r metadata:","LabelSaveLocalMetadata":"Spara grafik och metadata i mediamapparna","LabelSaveLocalMetadataHelp":"Om grafik och metadata sparas tillsammans med media \u00e4r de enkelt \u00e5tkomliga f\u00f6r redigering.","LabelDownloadInternetMetadata":"H\u00e4mta grafik och metadata fr\u00e5n Internet","LabelDownloadInternetMetadataHelp":"Media Browser kan h\u00e4mta informatiom om dina media fr\u00e5n Internet f\u00f6r att ge en visuellt full\u00e4ndad presentation.","TabPreferences":"Inst\u00e4llningar","TabPassword":"L\u00f6senord","TabLibraryAccess":"\u00c5tkomst till biblioteket","TabImage":"Bild","TabProfile":"Profil","LabelDisplayMissingEpisodesWithinSeasons":"Visa saknade avsnitt i s\u00e4songer","LabelUnairedMissingEpisodesWithinSeasons":"Visa \u00e4nnu ej s\u00e4nda avsnitt i s\u00e4songer","HeaderVideoPlaybackSettings":"Inst\u00e4llningar f\u00f6r videouppspelning","LabelAudioLanguagePreference":"\u00d6nskat spr\u00e5k f\u00f6r ljudsp\u00e5r","LabelSubtitleLanguagePreference":"\u00d6nskat spr\u00e5k f\u00f6r undertexter","LabelDisplayForcedSubtitlesOnly":"Visa endast tvingande undertexter","TabProfiles":"Profiler","TabSecurity":"S\u00e4kerhet","ButtonAddUser":"Ny anv\u00e4ndare","ButtonSave":"Spara","ButtonResetPassword":"\u00c5terst\u00e4ll l\u00f6senord","LabelNewPassword":"Nytt l\u00f6senord:","LabelNewPasswordConfirm":"Bekr\u00e4fta nytt l\u00f6senord:","HeaderCreatePassword":"Skapa l\u00f6senord","LabelCurrentPassword":"Nuvarande l\u00f6senord:","LabelMaxParentalRating":"H\u00f6gsta till\u00e5tna \u00e5ldersgr\u00e4ns","MaxParentalRatingHelp":"Inneh\u00e5ll med h\u00f6gre gr\u00e4ns visas ej f\u00f6r den h\u00e4r anv\u00e4ndaren.","LibraryAccessHelp":"Ange vilka mediamappar den h\u00e4r anv\u00e4ndaren ska ha tillg\u00e5ng till. Administrat\u00f6rer har r\u00e4ttighet att redigera alla mappar i metadatahanteraren.","ButtonDeleteImage":"Ta bort bild","ButtonUpload":"Upload","HeaderUploadNewImage":"Upload New Image","LabelDropImageHere":"Drop Image Here","ImageUploadAspectRatioHelp":"1:1 Aspect Ratio Recommended. JPG\/PNG only.","MessageNothingHere":"Nothing here.","MessagePleaseEnsureInternetMetadata":"Please ensure downloading of internet metadata is enabled.","TabSuggested":"Suggested","TabLatest":"Latest","TabUpcoming":"Upcoming","TabShows":"Shows","TabEpisodes":"Episodes","TabGenres":"Genres","TabPeople":"People","TabNetworks":"Networks","HeaderUsers":"Users","HeaderFilters":"Filters:","ButtonFilter":"Filter","OptionFavorite":"Favorites","OptionLikes":"Likes","OptionDislikes":"Dislikes","OptionActors":"Actors","OptionGuestStars":"Guest Stars","OptionDirectors":"Directors","OptionWriters":"Writers","OptionProducers":"Producers","HeaderResume":"Resume","HeaderNextUp":"Next Up","NoNextUpItemsMessage":"None found. Start watching your shows!","HeaderLatestEpisodes":"Latest Episodes","HeaderPersonTypes":"Person Types:","TabSongs":"Songs","TabAlbums":"Albums","TabArtists":"Artists","TabAlbumArtists":"Album Artists","TabMusicVideos":"Music Videos","ButtonSort":"Sort","HeaderSortBy":"Sort By:","HeaderSortOrder":"Sort Order:","OptionPlayed":"Played","OptionUnplayed":"Unplayed","OptionAscending":"Ascending","OptionDescending":"Descending","OptionRuntime":"Runtime","OptionReleaseDate":"Release Date","OptionPlayCount":"Play Count","OptionDatePlayed":"Date Played","OptionDateAdded":"Date Added","OptionAlbumArtist":"Album Artist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"Track Name","OptionCommunityRating":"Community Rating","OptionNameSort":"Name","OptionFolderSort":"Folders","OptionBudget":"Budget","OptionRevenue":"Revenue","OptionPoster":"Poster","OptionBackdrop":"Backdrop","OptionTimeline":"Timeline","OptionThumb":"Thumb","OptionBanner":"Banner","OptionCriticRating":"Critic Rating","OptionVideoBitrate":"Video Bitrate","OptionResumable":"Resumable","ScheduledTasksHelp":"Click a task to adjust its schedule.","ScheduledTasksTitle":"Scheduled Tasks","TabMyPlugins":"My Plugins","TabCatalog":"Catalog","TabUpdates":"Updates","PluginsTitle":"Plugins","HeaderAutomaticUpdates":"Automatic Updates","HeaderUpdateLevel":"Update Level","HeaderNowPlaying":"Now Playing","HeaderLatestAlbums":"Latest Albums","HeaderLatestSongs":"Latest Songs","HeaderRecentlyPlayed":"Recently Played","HeaderFrequentlyPlayed":"Frequently Played","DevBuildWarning":"Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.","LabelVideoType":"Video Type:","OptionBluray":"Bluray","OptionDvd":"Dvd","OptionIso":"Iso","Option3D":"3D","LabelFeatures":"Features:","OptionHasSubtitles":"Subtitles","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Theme Song","OptionHasThemeVideo":"Theme Video","TabMovies":"Movies","TabStudios":"Studios","TabTrailers":"Trailers","HeaderLatestMovies":"Latest Movies","HeaderLatestTrailers":"Latest Trailers","OptionHasSpecialFeatures":"Special Features","OptionImdbRating":"IMDb Rating","OptionParentalRating":"Parental Rating","OptionPremiereDate":"Premiere Date","TabBasic":"Basic","TabAdvanced":"Advanced","HeaderStatus":"Status","OptionContinuing":"Continuing","OptionEnded":"Ended","HeaderAirDays":"Air Days:","OptionSunday":"Sunday","OptionMonday":"Monday","OptionTuesday":"Tuesday","OptionWednesday":"Wednesday","OptionThursday":"Thursday","OptionFriday":"Friday","OptionSaturday":"Saturday","HeaderManagement":"Management:","OptionMissingImdbId":"Missing IMDb Id","OptionMissingTvdbId":"Missing TheTVDB Id","OptionMissingOverview":"Missing Overview","OptionFileMetadataYearMismatch":"File\/Metadata Years Mismatched","TabGeneral":"General","TitleSupport":"Support","TabLog":"Log","TabAbout":"About","TabSupporterKey":"Supporter Key","TabBecomeSupporter":"Become a Supporter","MediaBrowserHasCommunity":"Media Browser has a thriving community of users and contributors.","CheckoutKnowledgeBase":"Check out our knowledge base to help you get the most out of Media Browser.","SearchKnowledgeBase":"Search the Knowledge Base","VisitTheCommunity":"Visit the Community","VisitMediaBrowserWebsite":"Visit the Media Browser Web Site","VisitMediaBrowserWebsiteLong":"Visit the Media Browser Web site to catch the latest news and keep up with the developer blog.","OptionHideUser":"Hide this user from login screens","OptionDisableUser":"Disable this user","OptionDisableUserHelp":"If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.","HeaderAdvancedControl":"Advanced Control","LabelName":"Name:","OptionAllowUserToManageServer":"Allow this user to manage the server","HeaderFeatureAccess":"Feature Access","OptionAllowMediaPlayback":"Allow media playback","OptionAllowBrowsingLiveTv":"Allow browsing of live tv","OptionAllowDeleteLibraryContent":"Allow this user to delete library content","OptionAllowManageLiveTv":"Allow management of live tv recordings","OptionAllowRemoteControlOthers":"Allow this user to remote control other users","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"Officiell version","OptionBeta":"Betaversion","OptionDev":"Utvecklarversion (instabil)","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"Avsluta","LabelVisitCommunity":"Bes\u00f6k v\u00e5rt diskussionsforum","LabelGithubWiki":"Github Wiki","LabelSwagger":"Swagger","LabelStandard":"F\u00f6rval","LabelViewApiDocumentation":"L\u00e4s API-dokumentationen","LabelBrowseLibrary":"Bl\u00e4ddra i biblioteket","LabelConfigureMediaBrowser":"Konfigurera Media Browser","LabelOpenLibraryViewer":"\u00d6ppna biblioteksbl\u00e4ddraren","LabelRestartServer":"Starta om servern","LabelShowLogWindow":"Vissa loggf\u00f6nstret","LabelPrevious":"F\u00f6reg\u00e5ende","LabelFinish":"Klart","LabelNext":"N\u00e4sta","LabelYoureDone":"Klart!","WelcomeToMediaBrowser":"V\u00e4lkommen till Media Browser!","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"Den h\u00e4r guiden hj\u00e4lper dig att g\u00f6ra de f\u00f6rsta inst\u00e4llningarna.","TellUsAboutYourself":"Ber\u00e4tta om dig sj\u00e4lv","LabelYourFirstName":"Ditt f\u00f6rnamn:","MoreUsersCanBeAddedLater":"Flera anv\u00e4ndare kan skapas senare i Kontrollpanelen.","UserProfilesIntro":"Media Browser har inbyggt st\u00f6d f\u00f6r anv\u00e4ndarprofiler, s\u00e5 varje anv\u00e4ndare kan ha sina egna utseendeinst\u00e4llningar, visad-markeringar och f\u00f6r\u00e4ldral\u00e5s.","LabelWindowsService":"Windows-tj\u00e4nst","AWindowsServiceHasBeenInstalled":"En Windows-tj\u00e4nst har installerats.","WindowsServiceIntro1":"Media Browser Server k\u00f6rs normalt som ett anv\u00e4ndarprogram med ikon i aktivitetsf\u00e4ltet, men om s\u00e5 \u00f6nskas kan den k\u00f6ras som en Windows-tj\u00e4nst och startas fr\u00e5n kontrollpanelen Tj\u00e4nster (Services).","WindowsServiceIntro2":"Om Media Browser k\u00f6rs som tj\u00e4nst, m\u00e4rk att den inte kan k\u00f6ras samtidigt som aktivitetsf\u00e4ltsikonen s\u00e5 f\u00f6r att k\u00f6ra tj\u00e4nsten m\u00e5ste ikonen st\u00e4ngas. Tj\u00e4nsten m\u00e5ste ocks\u00e5 k\u00f6ras med administrat\u00f6rsr\u00e4ttigheter (st\u00e4lls in i kontrollpanelen Tj\u00e4nster). Automatiska uppdateringar fungerar heller inte med tj\u00e4nsten, dvs tj\u00e4nsten m\u00e5ste stoppas f\u00f6re manuell uppdatering och sedan \u00e5terstartas.","WizardCompleted":"Det var allt f\u00f6r tillf\u00e4llet. Media Browser har b\u00f6rjat samla information om ditt mediebibliotek. Ta en titt p\u00e5 n\u00e5gra av v\u00e5ra appar och klicka sedan p\u00e5 Klart<\/b> f\u00f6r att komma till Kontrollpanelen<\/b>.","LabelConfigureSettings":"Inst\u00e4llningar","LabelEnableVideoImageExtraction":"Ta fram bildrutor ur videofiler","VideoImageExtractionHelp":"Dessa anv\u00e4nds f\u00f6r objekt som saknar bilder och d\u00e4r vi inte hittar n\u00e5gra vid s\u00f6kning p\u00e5 Internet. Detta g\u00f6r att den f\u00f6rsta genoms\u00f6kningen av biblioteket tar lite l\u00e4ngre tid, men ger en snyggare presentation.","LabelEnableChapterImageExtractionForMovies":"Ta fram kapitelbildrutor ur filmfiler","LabelChapterImageExtractionForMoviesHelp":"Detta m\u00f6jligg\u00f6r grafisk visning av menyer f\u00f6r val av kapitel. Processen kan vara tids- och CPU-kr\u00e4vande och beh\u00f6va flera gigabyte lagringsutrymme. Processen k\u00f6rs varje natt kl 04:00 men intervallet kan anpassas enligt \u00f6nskem\u00e5l i Schemal\u00e4ggaren. Vi rekommenderar inte att den k\u00f6rs vid tider d\u00e5 anv\u00e4ndare \u00e4r aktiva.","LabelEnableAutomaticPortMapping":"Aktivera automatisk koppling av portar","LabelEnableAutomaticPortMappingHelp":"UPnP m\u00f6jligg\u00f6r automatisk inst\u00e4llning av din router s\u00e5 att du enkelt kan n\u00e5 Media Browser fr\u00e5n Internet. Detta kanske inte fungerar med alla routrar.","ButtonOk":"OK","ButtonCancel":"Avbryt","ButtonNew":"New","HeaderSetupLibrary":"Konfigurera mediabiblioteket","ButtonAddMediaFolder":"Skapa mediamapp","LabelFolderType":"Typ av mapp:","MediaFolderHelpPluginRequired":"* Kr\u00e4ver att ett till\u00e4gg, t ex GameBrowser eller MB Bookshelf, \u00e4r installerat.","ReferToMediaLibraryWiki":"Se avsnittet om mediabibliotek i v\u00e5r Wiki.","LabelCountry":"Land:","LabelLanguage":"Spr\u00e5k:","HeaderPreferredMetadataLanguage":"\u00d6nskat spr\u00e5k f\u00f6r metadata:","LabelSaveLocalMetadata":"Spara grafik och metadata i mediamapparna","LabelSaveLocalMetadataHelp":"Om grafik och metadata sparas tillsammans med media \u00e4r de enkelt \u00e5tkomliga f\u00f6r redigering.","LabelDownloadInternetMetadata":"H\u00e4mta grafik och metadata fr\u00e5n Internet","LabelDownloadInternetMetadataHelp":"Media Browser kan h\u00e4mta informatiom om dina media fr\u00e5n Internet f\u00f6r att ge en visuellt full\u00e4ndad presentation.","TabPreferences":"Inst\u00e4llningar","TabPassword":"L\u00f6senord","TabLibraryAccess":"\u00c5tkomst till biblioteket","TabImage":"Bild","TabProfile":"Profil","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"Visa saknade avsnitt i s\u00e4songer","LabelUnairedMissingEpisodesWithinSeasons":"Visa \u00e4nnu ej s\u00e4nda avsnitt i s\u00e4songer","HeaderVideoPlaybackSettings":"Inst\u00e4llningar f\u00f6r videouppspelning","LabelAudioLanguagePreference":"\u00d6nskat spr\u00e5k f\u00f6r ljudsp\u00e5r","LabelSubtitleLanguagePreference":"\u00d6nskat spr\u00e5k f\u00f6r undertexter","LabelDisplayForcedSubtitlesOnly":"Visa endast tvingande undertexter","TabProfiles":"Profiler","TabSecurity":"S\u00e4kerhet","ButtonAddUser":"Ny anv\u00e4ndare","ButtonSave":"Spara","ButtonResetPassword":"\u00c5terst\u00e4ll l\u00f6senord","LabelNewPassword":"Nytt l\u00f6senord:","LabelNewPasswordConfirm":"Bekr\u00e4fta nytt l\u00f6senord:","HeaderCreatePassword":"Skapa l\u00f6senord","LabelCurrentPassword":"Nuvarande l\u00f6senord:","LabelMaxParentalRating":"H\u00f6gsta till\u00e5tna \u00e5ldersgr\u00e4ns","MaxParentalRatingHelp":"Inneh\u00e5ll med h\u00f6gre gr\u00e4ns visas ej f\u00f6r den h\u00e4r anv\u00e4ndaren.","LibraryAccessHelp":"Ange vilka mediamappar den h\u00e4r anv\u00e4ndaren ska ha tillg\u00e5ng till. Administrat\u00f6rer har r\u00e4ttighet att redigera alla mappar i metadatahanteraren.","ButtonDeleteImage":"Ta bort bild","ButtonUpload":"Ladda upp","HeaderUploadNewImage":"Ladda upp ny bild","LabelDropImageHere":"Dra-och-sl\u00e4pp bild h\u00e4r","ImageUploadAspectRatioHelp":"Bildf\u00f6rh\u00e5llande 1:1 rekommenderas. Endast JPG\/PNG.","MessageNothingHere":"Ingenting h\u00e4r.","MessagePleaseEnsureInternetMetadata":"Var god se till att h\u00e4mtning av metadata via Internet \u00e4r aktiverad.","TabSuggested":"Rekommenderas","TabLatest":"Nytillkommet","TabUpcoming":"Kommande","TabShows":"Serier","TabEpisodes":"Avsnitt","TabGenres":"Genrer","TabPeople":"Personer","TabNetworks":"TV-bolag","HeaderUsers":"Anv\u00e4ndare","HeaderFilters":"Filter:","ButtonFilter":"Filtrera","OptionFavorite":"Favoriter","OptionLikes":"Gillar","OptionDislikes":"Ogillar","OptionActors":"Sk\u00e5despelare","OptionGuestStars":"G\u00e4startister","OptionDirectors":"Regiss\u00f6rer","OptionWriters":"Manusf\u00f6rfattare","OptionProducers":"Producenter","HeaderResume":"\u00c5teruppta","HeaderNextUp":"N\u00e4stkommande","NoNextUpItemsMessage":"Hittade inget. S\u00e4tt ig\u00e5ng och titta!","HeaderLatestEpisodes":"Senaste avsnitten","HeaderPersonTypes":"Personkategorier:","TabSongs":"L\u00e5tar","TabAlbums":"Album","TabArtists":"Artister","TabAlbumArtists":"Albumartister","TabMusicVideos":"Musikvideor","ButtonSort":"Sortera","HeaderSortBy":"Sortera efter:","HeaderSortOrder":"Sorteringsordning:","OptionPlayed":"Visad","OptionUnplayed":"Ej visad","OptionAscending":"Stigande","OptionDescending":"Sjunkande","OptionRuntime":"Speltid","OptionReleaseDate":"Lanseringsdatum","OptionPlayCount":"Antal visningar","OptionDatePlayed":"Senast visad","OptionDateAdded":"Inlagd den","OptionAlbumArtist":"Albumartist","OptionArtist":"Artist","OptionAlbum":"Album","OptionTrackName":"Sp\u00e5rnamn","OptionCommunityRating":"Allm\u00e4nhetens betyg","OptionNameSort":"Namn","OptionFolderSort":"Mappar","OptionBudget":"Budget","OptionRevenue":"Int\u00e4kter","OptionPoster":"Affisch","OptionBackdrop":"Fondbild","OptionTimeline":"Tidslinje","OptionThumb":"Miniatyr","OptionBanner":"Banderoll","OptionCriticRating":"Kritikerbetyg","OptionVideoBitrate":"Bithastighet f\u00f6r video","OptionResumable":"Kan \u00e5terupptas","ScheduledTasksHelp":"Klicka p\u00e5 en aktivitet f\u00f6r att \u00e4ndra k\u00f6rtider.","ScheduledTasksTitle":"Schemalagda aktiviteter","TabMyPlugins":"Mina till\u00e4gg","TabCatalog":"Katalog","TabUpdates":"Uppdateringar","PluginsTitle":"Till\u00e4gg","HeaderAutomaticUpdates":"Automatiska uppdateringar","HeaderUpdateLevel":"Uppdatera versionsniv\u00e5","HeaderNowPlaying":"Nu spelas","HeaderLatestAlbums":"Nytillkomna album","HeaderLatestSongs":"Nytillkomna l\u00e5tar","HeaderRecentlyPlayed":"Nyligen spelade","HeaderFrequentlyPlayed":"Ofta spelade","DevBuildWarning":"Utvecklingsversioner \u00e4r \"bleeding edge\". Dessa kommer ut ofta och \u00e4r otestade. Appen kanske kraschar och vissa delar kanske inte alls fungerar.","LabelVideoType":"Videoformat:","OptionBluray":"Blu-ray","OptionDvd":"DVD","OptionIso":"ISO","Option3D":"3D","LabelFeatures":"Inneh\u00e5ll:","OptionHasSubtitles":"Undertexter","OptionHasTrailer":"Trailer","OptionHasThemeSong":"Ledmotiv","OptionHasThemeVideo":"Temavideo","TabMovies":"Filmer","TabStudios":"Studior","TabTrailers":"Trailers","HeaderLatestMovies":"Nytillkomna filmer","HeaderLatestTrailers":"Nytillkomna trailers","OptionHasSpecialFeatures":"Extramaterial:","OptionImdbRating":"Betyg p\u00e5 IMDB","OptionParentalRating":"F\u00f6r\u00e4ldraklassning","OptionPremiereDate":"Premi\u00e4rdatum","TabBasic":"Grunderna","TabAdvanced":"Avancerat","HeaderStatus":"Status","OptionContinuing":"P\u00e5g\u00e5ende","OptionEnded":"Avslutad","HeaderAirDays":"S\u00e4ndningsdagar:","OptionSunday":"S\u00f6ndag","OptionMonday":"M\u00e5ndag","OptionTuesday":"Tisdag","OptionWednesday":"Onsdag","OptionThursday":"Torsdag","OptionFriday":"Fredag","OptionSaturday":"L\u00f6rdag","HeaderManagement":"Administration:","OptionMissingImdbId":"IMDB-ID saknas","OptionMissingTvdbId":"TVDB-ID saknas","OptionMissingOverview":"Synopsis saknas","OptionFileMetadataYearMismatch":"Fildatum\/metadatadatum \u00f6verensst\u00e4mmer ej","TabGeneral":"Allm\u00e4nt","TitleSupport":"Support","TabLog":"H\u00e4ndelselogg","TabAbout":"Om","TabSupporterKey":"Sponsorkod","TabBecomeSupporter":"Bli sponsor","MediaBrowserHasCommunity":"Media Browser har en livaktig grupp av anv\u00e4ndare och medverkande.","CheckoutKnowledgeBase":"Ta en titt i v\u00e5r kunskapsdatabas s\u00e5 att du f\u00e5r ut mesta m\u00f6jliga av Media Browser.","SearchKnowledgeBase":"S\u00f6k i kunskapsdatabasen","VisitTheCommunity":"Bes\u00f6k anv\u00e4ndargrupperna","VisitMediaBrowserWebsite":"G\u00e5 till Media Browsers hemsida","VisitMediaBrowserWebsiteLong":"G\u00e5 till Media Browsers hemsida och l\u00e4s de senaste nyheterna och utvecklarbloggen","OptionHideUser":"Visa inte den h\u00e4r anv\u00e4ndaren p\u00e5 inloggningssidorna","OptionDisableUser":"Sp\u00e4rra den h\u00e4r anv\u00e4ndaren","OptionDisableUserHelp":"Sp\u00e4rrade anv\u00e4ndare till\u00e5ts ej kontakta servern. Eventuella p\u00e5g\u00e5ende anslutningar avbryts omedelbart.","HeaderAdvancedControl":"Avancerade anv\u00e4ndarinst\u00e4llningar","LabelName":"Namn:","OptionAllowUserToManageServer":"Till\u00e5t denna anv\u00e4ndare att administrera servern","HeaderFeatureAccess":"Tillg\u00e5ng till funktioner","OptionAllowMediaPlayback":"Till\u00e5t mediauppspelning","OptionAllowBrowsingLiveTv":"Till\u00e5t bl\u00e4ddring i live-TV","OptionAllowDeleteLibraryContent":"Till\u00e5t denna anv\u00e4ndare att ta bort objekt fr\u00e5n biblioteket","OptionAllowManageLiveTv":"Till\u00e5t denna anv\u00e4ndare att administrera TV-inspelningar","OptionAllowRemoteControlOthers":"Till\u00e5t denna anv\u00e4ndare att fj\u00e4rrstyra andra anv\u00e4ndare","OptionMissingTmdbId":"TMDB-ID saknas","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metabetyg","ButtonSelect":"V\u00e4lj","ButtonSearch":"Search","ButtonGroupVersions":"Gruppera versioner","PismoMessage":"Anv\u00e4nder Pismo File Mount baserat p\u00e5 en sk\u00e4nkt licens","PleaseSupportOtherProduces":"St\u00f6d g\u00e4rna de gratisprodukter vi anv\u00e4nder:","VersionNumber":"Version {0}","TabPaths":"S\u00f6kv\u00e4gar","TabServer":"Server","TabTranscoding":"Omkodning","TitleAdvanced":"Avancerat","LabelAutomaticUpdateLevel":"Niv\u00e5 f\u00f6r auto-uppdatering","OptionRelease":"Officiell version","OptionBeta":"Betaversion","OptionDev":"Utvecklarversion (instabil)","LabelAllowServerAutoRestart":"Till\u00e5t att servern startas om automatiskt efter uppdateringar","LabelAllowServerAutoRestartHelp":"Servern startas om endast d\u00e5 inga anv\u00e4ndare \u00e4r inloggade.","LabelEnableDebugLogging":"Aktivera loggning p\u00e5 avlusningsniv\u00e5","LabelRunServerAtStartup":"Starta servern d\u00e5 systemet startas","LabelRunServerAtStartupHelp":"Detta g\u00f6r att Media Browser startas med aktivitetsf\u00e4ltsikon n\u00e4r Windows startas. F\u00f6r att anv\u00e4nda Windows-tj\u00e4nsten, avmarkera detta och starta tj\u00e4nsten fr\u00e5n kontrollpanelen. M\u00e4rk att tj\u00e4nsten inte kan k\u00f6ras samtidigt som aktivitetsf\u00e4ltsikonen s\u00e5 f\u00f6r att k\u00f6ra tj\u00e4nsten m\u00e5ste ikonen st\u00e4ngas.","ButtonSelectDirectory":"V\u00e4lj mapp","LabelCustomPaths":"Ange anpassade s\u00f6kv\u00e4gar d\u00e4r s\u00e5 \u00f6nskas. L\u00e4mna tomt f\u00f6r att anv\u00e4nda standardv\u00e4rdena.","LabelCachePath":"Plats f\u00f6r cache:","LabelCachePathHelp":"Den h\u00e4r mappen inneh\u00e5ller serverdata, t ex grafik.","LabelImagesByNamePath":"Plats f\u00f6r bilddatabasen (ImagesByName):","LabelImagesByNamePathHelp":"Den h\u00e4r mappen inneh\u00e5ller bilder p\u00e5 personer, genrer och studior.","LabelMetadataPath":"Plats f\u00f6r metadata:","LabelMetadataPathHelp":"H\u00e4r lagras nedladdad grafik och metadata som inte \u00e4r inst\u00e4llda att sparas tillsammans med media.","LabelTranscodingTempPath":"Mellanlagringsplats f\u00f6r omkodning:","LabelTranscodingTempPathHelp":"H\u00e4r lagras tillf\u00e4lliga filer som anv\u00e4nds av omkodningsfunktionen.","TabBasics":"Grunderna","TabTV":"TV","TabGames":"Spel","TabMusic":"Musik","TabOthers":"\u00d6vrigt","HeaderExtractChapterImagesFor":"Extrahera kapitelbildrutor f\u00f6r:","OptionMovies":"Filmer","OptionEpisodes":"Avsnitt","OptionOtherVideos":"Andra videor","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Till\u00e5t automatiska uppdateringar fr\u00e5n FanArt.tv","LabelAutomaticUpdatesTmdb":"Till\u00e5t automatiska uppdateringar fr\u00e5n TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Till\u00e5t automatiska uppdateringar fr\u00e5n TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"Om aktiverat h\u00e4mtas nya bilder automatiskt efter hand som de blir tillg\u00e4ngliga p\u00e5 fanart.tv. Befintliga bilder p\u00e5verkas ej.","LabelAutomaticUpdatesTmdbHelp":"Om aktiverat h\u00e4mtas nya bilder automatiskt efter hand som de blir tillg\u00e4ngliga p\u00e5 TheMovieDB.org. Befintliga bilder p\u00e5verkas ej.","LabelAutomaticUpdatesTvdbHelp":"Om aktiverat h\u00e4mtas nya bilder automatiskt efter hand som de blir tillg\u00e4ngliga p\u00e5 TheTVDB.com. Befintliga bilder p\u00e5verkas ej.","ExtractChapterImagesHelp":"Detta m\u00f6jligg\u00f6r grafisk visning av menyer f\u00f6r val av kapitel. Processen kan vara tids- och CPU-kr\u00e4vande och beh\u00f6va flera gigabyte lagringsutrymme. Processen k\u00f6rs varje natt kl 04:00 men intervallet kan anpassas enligt \u00f6nskem\u00e5l i Schemal\u00e4ggaren. Vi rekommenderar inte att den k\u00f6rs vid tider d\u00e5 anv\u00e4ndare \u00e4r aktiva.","LabelMetadataDownloadLanguage":"\u00d6nskat spr\u00e5k:","ButtonAutoScroll":"Rulla listor automatiskt","LabelImageSavingConvention":"Namngivningsformat f\u00f6r bilder:","LabelImageSavingConventionHelp":"Media Browser kan anv\u00e4nda bilder fr\u00e5n de flesta vanliga mediaprogram. Genom att v\u00e4lja h\u00e4r kan du underl\u00e4tta anv\u00e4ndandet av Media Browser tillsammans med andra program.","OptionImageSavingCompatible":"Kompatibelt - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Logga in","TitleSignIn":"Logga in","HeaderPleaseSignIn":"Var god logga in","LabelUser":"Anv\u00e4ndare:","LabelPassword":"L\u00f6senord:","ButtonManualLogin":"Manuell inloggning:","PasswordLocalhostMessage":"L\u00f6senord kr\u00e4vs ej vid lokal inloggning.","TabGuide":"TV-guide","TabChannels":"Kanaler","HeaderChannels":"Kanaler","TabRecordings":"Inspelningar","TabScheduled":"Bokade","TabSeries":"Serie","ButtonCancelRecording":"Avbryt inspelning","HeaderPrePostPadding":"Marginal f\u00f6re\/efter","LabelPrePaddingMinutes":"Marginal i minuter f\u00f6re programstart:","OptionPrePaddingRequired":"Marginal f\u00f6re programstart kr\u00e4vs f\u00f6r inspelning.","LabelPostPaddingMinutes":"Marginal i minuter efter programslut:","OptionPostPaddingRequired":"Marginal efter programslut kr\u00e4vs f\u00f6r inspelning.","HeaderWhatsOnTV":"S\u00e4nds just nu","HeaderUpcomingTV":"Kommande program","TabStatus":"Status","TabSettings":"Inst\u00e4llningar","ButtonRefreshGuideData":"Uppdatera programguiden","OptionPriority":"Prioritet","OptionRecordOnAllChannels":"Spela in fr\u00e5n alla kanaler","OptionRecordAnytime":"Spela in vid alla tidpunkter","OptionRecordOnlyNewEpisodes":"Spela bara in nya avsnitt","HeaderDays":"Dagar","HeaderActiveRecordings":"P\u00e5g\u00e5ende inspelningar","HeaderLatestRecordings":"Senaste inspelningarna","HeaderAllRecordings":"Alla inspelningar","ButtonPlay":"Spela upp","ButtonEdit":"\u00c4ndra","ButtonRecord":"Spela in","ButtonDelete":"Ta bort","ButtonRemove":"Remove","OptionRecordSeries":"Spela in serie","HeaderDetails":"Detaljinfo","TitleLiveTV":"Live-TV","LabelNumberOfGuideDays":"Antal dagars tabl\u00e5 att h\u00e4mta","LabelNumberOfGuideDaysHelp":"H\u00e4mtning av en l\u00e4ngre periods tabl\u00e5 ger m\u00f6jlighet att boka inspelningar och se program l\u00e4ngre fram i tiden, men ger l\u00e4ngre nedladdningstid. \"Auto\" v\u00e4ljer baserat p\u00e5 antalet kanaler.","LabelActiveService":"Aktuell tj\u00e4nst:","LabelActiveServiceHelp":"Flera TV-plugins kan vara installerade men bara en \u00e5t g\u00e5ngen kan vara aktiv.","OptionAutomatic":"Auto","LiveTvPluginRequired":"Du m\u00e5ste ha en plugin f\u00f6r live-TV installerad f\u00f6r att kunna forts\u00e4tta.","LiveTvPluginRequiredHelp":"Installera en av v\u00e5ra plugins, t ex Next PVR eller ServerWMC.","HeaderCustomizeOptionsPerMediaType":"Ange alternativ f\u00f6r olika mediaformat","OptionDownloadThumbImage":"Miniatyr","OptionDownloadMenuImage":"Meny","OptionDownloadLogoImage":"Logotyp","OptionDownloadBoxImage":"Konvolut","OptionDownloadDiscImage":"Skiva","OptionDownloadBannerImage":"Banderoll","OptionDownloadBackImage":"Baksida","OptionDownloadArtImage":"Grafik","OptionDownloadPrimaryImage":"Huvudbild","HeaderFetchImages":"H\u00e4mta bilder:","HeaderImageSettings":"Bildinst\u00e4llningar","LabelMaxBackdropsPerItem":"H\u00f6gsta antal fondbilder per objekt:","LabelMaxScreenshotsPerItem":"H\u00f6gsta antal sk\u00e4rmdumpar per objekt:","LabelMinBackdropDownloadWidth":"H\u00e4mta enbart fondbilder bredare \u00e4n:","LabelMinScreenshotDownloadWidth":"H\u00e4mta enbart sk\u00e4rmdumpar bredare \u00e4n:","ButtonAddScheduledTaskTrigger":"L\u00e4gg till utl\u00f6sare f\u00f6r aktivitet","HeaderAddScheduledTaskTrigger":"L\u00e4gg till utl\u00f6sare f\u00f6r aktivitet","ButtonAdd":"L\u00e4gg till","LabelTriggerType":"Typ av utl\u00f6sare:","OptionDaily":"Dagligen","OptionWeekly":"Varje vecka","OptionOnInterval":"Med visst intervall","OptionOnAppStartup":"N\u00e4r servern startar","OptionAfterSystemEvent":"Efter en systemh\u00e4ndelse","LabelDay":"Dag:","LabelTime":"Tid:","LabelEvent":"H\u00e4ndelse:","OptionWakeFromSleep":"Vakna ur energisparl\u00e4ge","LabelEveryXMinutes":"Varje:","HeaderTvTuners":"TV-mottagare","HeaderGallery":"Galleri","HeaderLatestGames":"Senaste spelen","HeaderRecentlyPlayedGames":"Nyligen spelade spel","TabGameSystems":"Spelkonsoler","TitleMediaLibrary":"Mediabibliotek","TabFolders":"Mappar","TabPathSubstitution":"S\u00f6kv\u00e4gsutbyte","LabelSeasonZeroDisplayName":"Visning av S\u00e4song 0","LabelEnableRealtimeMonitor":"Aktivera bevakning av mappar i realtid","LabelEnableRealtimeMonitorHelp":"F\u00f6r\u00e4ndringar uppt\u00e4cks omedelbart (i filsystem som st\u00f6djer detta)","ButtonScanLibrary":"Uppdatera biblioteket","HeaderNumberOfPlayers":"Spelare:","OptionAnyNumberOfPlayers":"Vilken som helst","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Mediamappar","HeaderThemeVideos":"Temavideor","HeaderThemeSongs":"Ledmotiv","HeaderScenes":"Kapitel","HeaderAwardsAndReviews":"Priser och recensioner","HeaderSoundtracks":"Filmmusik","HeaderMusicVideos":"Musikvideor","HeaderSpecialFeatures":"Extramaterial","HeaderCastCrew":"Rollista & bes\u00e4ttning","HeaderAdditionalParts":"Ytterligare delar","ButtonSplitVersionsApart":"Hantera olika versioner separat","ButtonPlayTrailer":"Trailer","LabelMissing":"Saknas","LabelOffline":"Offline","PathSubstitutionHelp":"S\u00f6kv\u00e4gsutbyte betyder att en plats p\u00e5 servern kopplas till en lokal fils\u00f6kv\u00e4g p\u00e5 en klient. P\u00e5 s\u00e5 s\u00e4tt f\u00e5r klienten direkt tillg\u00e5ng till material p\u00e5 servern och kan spela upp det direkt via n\u00e4tverket utan att f\u00f6rbruka serverresurser f\u00f6r str\u00f6mning och omkodning.","HeaderFrom":"Fr\u00e5n","HeaderTo":"Till","LabelFrom":"Fr\u00e5n:","LabelFromHelp":"Exempel: D:\\Filmer (p\u00e5 servern)","LabelTo":"Till:","LabelToHelp":"Exempel: \\\\server\\Filmer (tillg\u00e4nglig f\u00f6r klienter)","ButtonAddPathSubstitution":"L\u00e4gg till utbytess\u00f6kv\u00e4g","OptionSpecialEpisode":"Specialavsnitt","OptionMissingEpisode":"Saknade avsnitt","OptionUnairedEpisode":"Ej s\u00e4nda avsnitt","OptionEpisodeSortName":"Sorteringstitel f\u00f6r avsnitt","OptionSeriesSortName":"Serietitel","OptionTvdbRating":"TVDB-betyg","HeaderTranscodingQualityPreference":"\u00d6nskad kvalitet f\u00f6r omkodning:","OptionAutomaticTranscodingHelp":"Servern avg\u00f6r kvalitet och hastighet","OptionHighSpeedTranscodingHelp":"L\u00e4gre kvalitet men snabbare omkodning","OptionHighQualityTranscodingHelp":"H\u00f6gre kvalitet men l\u00e5ngsammare omkodning","OptionMaxQualityTranscodingHelp":"H\u00f6gsta kvalitet, l\u00e5ngsammare omkodning och h\u00f6g CPU-belastning","OptionHighSpeedTranscoding":"H\u00f6gre hastighet","OptionHighQualityTranscoding":"H\u00f6gre kvalitet","OptionMaxQualityTranscoding":"H\u00f6gsta kvalitet","OptionEnableDebugTranscodingLogging":"Aktivera loggning av fel fr\u00e5n omkodning","OptionEnableDebugTranscodingLoggingHelp":"Detta resulterar i mycket stora loggfiler och rekommenderas bara vid fels\u00f6kning.","OptionUpscaling":"Till\u00e5t klienter att beg\u00e4ra uppskalad video","OptionUpscalingHelp":"Kan i vissa fall ge h\u00f6gre videokvalitet, men kr\u00e4ver mer CPU-kapacitet.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/Localization/Server/zh_TW.json b/MediaBrowser.Server.Implementations/Localization/Server/zh_TW.json index 65427507f8..df1eb7dddc 100644 --- a/MediaBrowser.Server.Implementations/Localization/Server/zh_TW.json +++ b/MediaBrowser.Server.Implementations/Localization/Server/zh_TW.json @@ -1 +1 @@ -{"LabelExit":"\u96e2\u958b","LabelVisitCommunity":"\u8a2a\u554f\u793e\u5340","LabelGithubWiki":"Github \u7ef4\u57fa","LabelSwagger":"Swagger","LabelStandard":"\u6a19\u6dee","LabelViewApiDocumentation":"\u67e5\u770bAPI\u6587\u6a94","LabelBrowseLibrary":"\u700f\u89bd\u5a92\u9ad4\u5eab","LabelConfigureMediaBrowser":"\u8a2d\u5b9aMedia Browser","LabelOpenLibraryViewer":"\u6253\u958b\u5a92\u9ad4\u5eab\u700f\u89bd\u5668","LabelRestartServer":"\u91cd\u65b0\u555f\u52d5\u4f3a\u5668\u670d","LabelShowLogWindow":"\u986f\u793a\u65e5\u8a8c","LabelPrevious":"\u4e0a\u4e00\u500b","LabelFinish":"\u5b8c\u7d50","LabelNext":"\u4e0b\u4e00\u500b","LabelYoureDone":"\u5b8c\u6210!","WelcomeToMediaBrowser":"\u6b61\u8fce\u4f86\u5230 Media Browser\uff01","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"\u56ae\u5c0e\u5c07\u5f15\u5c0e\u4f60\u5b8c\u6210\u5b89\u88dd\u7a0b\u5e8f\u3002","TellUsAboutYourself":"\u8acb\u4ecb\u7d39\u4e00\u4e0b\u81ea\u5df1","LabelYourFirstName":"\u4f60\u7684\u540d\u5b57\uff1a","MoreUsersCanBeAddedLater":"\u5f80\u5f8c\u53ef\u4ee5\u5728\u63a7\u5236\u53f0\u5167\u6dfb\u52a0\u66f4\u591a\u7528\u6236\u3002","UserProfilesIntro":"Media Browser \u5167\u7f6e\u652f\u6301\u591a\u500b\u7528\u6236\u914d\u7f6e\uff0c\u4f7f\u6bcf\u500b\u7528\u6236\u90fd\u64c1\u6709\u81ea\u5df1\u5c08\u5c6c\u7684\u986f\u793a\u8a2d\u7f6e\uff0c\u64ad\u653e\u72c0\u614b\u548c\u5bb6\u9577\u63a7\u5236\u8a2d\u7f6e\u3002","LabelWindowsService":"Windows\u670d\u52d9","AWindowsServiceHasBeenInstalled":"Windows\u670d\u52d9\u5df2\u7d93\u5b89\u88dd\u5b8c\u7562\u3002","WindowsServiceIntro1":"Media Browser \u4f3a\u670d\u5668\u901a\u5e38\u6703\u4f5c\u70ba\u4e00\u500b\u6709\u7a0b\u5f0f\u76e4\u5716\u6a19\u7684\u684c\u9762\u61c9\u7528\u7a0b\u5f0f\u904b\u884c\uff0c\u4f46\u5982\u679c\u4f60\u66f4\u559c\u6b61\u5c07\u5b83\u4f5c\u70ba\u5f8c\u53f0\u670d\u52d9\uff0c\u5b83\u53ef\u4ee5\u5f9eWindows\u670d\u52d9\u63a7\u5236\u53f0\u555f\u52d5\u3002","WindowsServiceIntro2":"\u5982\u679c\u4f7f\u7528Windows\u670d\u52d9\uff0c\u8acb\u6ce8\u610f\uff0c\u5b83\u4e0d\u80fd\u540c\u6642\u4f5c\u70ba\u7a0b\u5f0f\u76e4\u5716\u6a19\u684c\u9762\u61c9\u7528\u7a0b\u5f0f\u904b\u884c\uff0c\u6240\u4ee5\u4f60\u9700\u8981\u5f9e\u7a0b\u5f0f\u76e4\u5716\u6a19\u9000\u51fa\uff0c\u4ee5\u904b\u884cWindows\u670d\u52d9\u3002\u8a72\u670d\u52d9\u9084\u9700\u8981\u5177\u6709\u7ba1\u7406\u54e1\u6b0a\u9650\uff0c\u9019\u53ef\u4ee5\u901a\u904eWindows\u670d\u52d9\u63a7\u5236\u53f0\u9032\u884c\u914d\u7f6e\u3002\u8acb\u6ce8\u610f\uff0c\u6b64\u6642\u7684 Media Browser \u4f3a\u670d\u5668\u670d\u52d9\u662f\u7121\u6cd5\u81ea\u52d5\u66f4\u65b0\uff0c\u56e0\u6b64\u65b0\u7248\u672c\u5c07\u9700\u8981\u624b\u52d5\u66f4\u65b0\u3002","WizardCompleted":"\u9019\u5c31\u662f\u6211\u5011\u73fe\u5728\u6240\u9700\u8981\u77e5\u9053\u7684\u3002Media Browser \u5df2\u7d93\u958b\u59cb\u6536\u96c6\u4f60\u7684\u5a92\u9ad4\u5eab\u7684\u8cc7\u6599\u3002\u8acb\u7e7c\u7e8c\u700f\u89bd\u6211\u5011\u5176\u4ed6\u7684\u7a0b\u5f0f\uff0c\u7136\u5f8c\u55ae\u64ca\u5b8c\u6210<\/b>\u4f86\u67e5\u770b\u63a7\u5236\u53f0<\/b>\u3002","LabelConfigureSettings":"\u914d\u7f6e\u8a2d\u5b9a","LabelEnableVideoImageExtraction":"\u555f\u52d5\u8996\u983b\u5716\u50cf\u63d0\u53d6","VideoImageExtractionHelp":"\u5c0d\u65bc\u6c92\u6709\u5716\u50cf\u4ee5\u53ca\u6211\u5011\u76ee\u524d\u7121\u6cd5\u5f9e\u4e92\u806f\u7db2\u627e\u5230\u6709\u95dc\u5716\u50cf\u7684\u8996\u983b\uff0c\u5728\u521d\u59cb\u5a92\u9ad4\u5eab\u6383\u63cf\u6642\uff0c\u6703\u589e\u52a0\u4e00\u4e9b\u984d\u5916\u7684\u6383\u63cf\u6642\u9593\uff0c\u4f46\u4f60\u5c07\u6703\u770b\u5230\u4e00\u500b\u66f4\u6085\u76ee\u7684\u4ecb\u7d39\u4ecb\u9762\u3002","LabelEnableChapterImageExtractionForMovies":"\u63d0\u53d6\u96fb\u5f71\u7ae0\u7bc0\u5716\u50cf","LabelChapterImageExtractionForMoviesHelp":"\u5f9e\u8996\u983b\u7ae0\u7bc0\u4e2d\u63d0\u53d6\u5716\u50cf\u5c07\u5141\u8a31\u5ba2\u6236\u7aef\u7528\u5716\u8c61\u986f\u793a\u9078\u64c7\u83dc\u55ae\u3002\u9019\u500b\u904e\u7a0b\u53ef\u80fd\u6703\u5f88\u6162\uff0c\u4f54\u7528\u66f4\u591a\u7684CPU\u8cc7\u6e90\uff0c\u4e26\u4e14\u53ef\u80fd\u9700\u8981\u7684\u6578GB\u786c\u789f\u7a7a\u9593\u3002\u5b83\u9ed8\u8a8d\u9810\u5b9a\u5728\u6bcf\u665a\u7684\u51cc\u66684\u9ede\u904b\u884c\uff0c\u4f46\u9019\u662f\u53ef\u4ee5\u5f9e\u4efb\u52d9\u8868\u9032\u884c\u8a2d\u5b9a\u7684\u3002\u4e0d\u5efa\u8b70\u5728\u9ad8\u5cf0\u4f7f\u7528\u6642\u9593\u904b\u884c\u6b64\u4efb\u52d9\u3002","LabelEnableAutomaticPortMapping":"\u555f\u7528\u81ea\u52d5\u7aef\u53e3\u8f49\u767c","LabelEnableAutomaticPortMappingHelp":"UPnP\u5141\u8a31\u8def\u7531\u5668\u81ea\u52d5\u8a2d\u7f6e\u5f9e\u800c\u53ef\u4ee5\u66f4\u65b9\u4fbf\u5730\u9060\u7a0b\u8a2a\u554f\u4f3a\u670d\u5668\u3002\u9019\u53ef\u80fd\u4e0d\u9069\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u578b\u865f\u3002","ButtonOk":"OK","ButtonCancel":"\u53d6\u6d88","HeaderSetupLibrary":"\u8a2d\u7f6e\u4f60\u7684\u5a92\u9ad4\u5eab","ButtonAddMediaFolder":"\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e","LabelFolderType":"\u5a92\u9ad4\u6587\u4ef6\u593e\u985e\u578b\uff1a","MediaFolderHelpPluginRequired":"*\u9700\u8981\u4f7f\u7528\u4e00\u500b\u63d2\u4ef6\uff0c\u4f8b\u5982GameBrowser\u6216MB Bookshelf\u3002","ReferToMediaLibraryWiki":"\u53c3\u7167\u5a92\u9ad4\u5eab\u7ef4\u57fa","LabelCountry":"\u570b\u5bb6\uff1a","LabelLanguage":"\u8a9e\u8a00\uff1a","HeaderPreferredMetadataLanguage":"\u9996\u9078\u5a92\u9ad4\u8cc7\u6599\u8a9e\u8a00\uff1a","LabelSaveLocalMetadata":"\u4fdd\u5b58\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5230\u5a92\u9ad4\u6a94\u6848\u6240\u5728\u7684\u6587\u4ef6\u593e","LabelSaveLocalMetadataHelp":"\u76f4\u63a5\u4fdd\u5b58\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5230\u5a92\u9ad4\u6240\u5728\u7684\u6587\u4ef6\u593e\u80fd\u4f7f\u7de8\u8f2f\u5de5\u4f5c\u66f4\u5bb9\u6613\u3002","LabelDownloadInternetMetadata":"\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599","LabelDownloadInternetMetadataHelp":"Media Browser\u53ef\u4ee5\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5f9e\u800c\u63d0\u4f9b\u66f4\u8c50\u5bcc\u7684\u5a92\u9ad4\u8868\u9054\u65b9\u5f0f\u3002","TabPreferences":"\u504f\u597d","TabPassword":"\u5bc6\u78bc","TabLibraryAccess":"\u5a92\u9ad4\u5eab\u700f\u89bd\u6b0a\u9650","TabImage":"\u5716\u50cf","TabProfile":"\u914d\u7f6e","LabelDisplayMissingEpisodesWithinSeasons":"\u986f\u793a\u7bc0\u76ee\u5b63\u5ea6\u5167\u7f3a\u5c11\u7684\u55ae\u5143","LabelUnairedMissingEpisodesWithinSeasons":"\u5728\u7bc0\u76ee\u5b63\u5ea6\u5167\u986f\u793a\u9084\u672a\u767c\u4f48\u7684\u55ae\u5143","HeaderVideoPlaybackSettings":"\u8996\u983b\u56de\u653e\u8a2d\u7f6e","LabelAudioLanguagePreference":"\u97f3\u983b\u8a9e\u8a00\u504f\u597d\u9078\u9805\uff1a","LabelSubtitleLanguagePreference":"\u5b57\u5e55\u8a9e\u8a00\u504f\u597d\u9078\u9805\uff1a","LabelDisplayForcedSubtitlesOnly":"\u53ea\u986f\u793a\u5f37\u5236\u5b57\u5e55","TabProfiles":"\u914d\u7f6e","TabSecurity":"\u5b89\u5168\u6027","ButtonAddUser":"\u6dfb\u52a0\u7528\u6236","ButtonSave":"\u4fdd\u5b58","ButtonResetPassword":"\u91cd\u8a2d\u5bc6\u78bc","LabelNewPassword":"\u65b0\u5bc6\u78bc\uff1a","LabelNewPasswordConfirm":"\u78ba\u8a8d\u65b0\u5bc6\u78bc\uff1a","HeaderCreatePassword":"\u5275\u5efa\u5bc6\u78bc","LabelCurrentPassword":"\u7576\u524d\u7684\u5bc6\u78bc\uff1a","LabelMaxParentalRating":"\u6700\u5927\u5141\u8a31\u7684\u5bb6\u9577\u8a55\u7d1a\uff1a","MaxParentalRatingHelp":"\u5177\u6709\u8f03\u9ad8\u7684\u5bb6\u9577\u8a55\u7d1a\u5167\u5bb9\u5c07\u5f9e\u9019\u7528\u6236\u88ab\u96b1\u85cf","LibraryAccessHelp":"\u9078\u64c7\u5a92\u9ad4\u6587\u4ef6\u593e\u8207\u9019\u7528\u6236\u5171\u4eab\u3002\u7ba1\u7406\u54e1\u5c07\u53ef\u4ee5\u4f7f\u7528\u5a92\u9ad4\u8cc7\u6599\u64da\u7ba1\u7406\u5668\u7de8\u8f2f\u6240\u6709\u7684\u5a92\u9ad4\u6587\u4ef6\u593e\u3002","ButtonDeleteImage":"\u522a\u9664\u5716\u50cf","ButtonUpload":"\u4e0a\u8f09","HeaderUploadNewImage":"\u4e0a\u8f09\u65b0\u5716\u50cf","LabelDropImageHere":"\u5728\u9019\u88e1\u653e\u4e0b\u5716\u50cf","ImageUploadAspectRatioHelp":"\u63a8\u85a6\u4f7f\u67091:1\u5bec\u9ad8\u6bd4\u4f8b\u7684\u5716\u50cf\u3002\u53ea\u5141\u8a31JPG\/PNG\u683c\u5f0f","MessageNothingHere":"\u9019\u88e1\u6c92\u6709\u4ec0\u9ebc\u3002","MessagePleaseEnsureInternetMetadata":"\u8acb\u78ba\u4fdd\u5df2\u555f\u7528\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u8cc7\u6599\u3002","TabSuggested":"\u5efa\u8b70","TabLatest":"\u6700\u65b0","TabUpcoming":"\u5373\u5c07\u767c\u5e03","TabShows":"\u7bc0\u76ee","TabEpisodes":"\u55ae\u5143","TabGenres":"\u985e\u578b","TabPeople":"\u4eba\u7269","TabNetworks":"\u7db2\u7d61","HeaderUsers":"\u7528\u6236","HeaderFilters":"\u904e\u6ffe\uff1a","ButtonFilter":"\u904e\u6ffe","OptionFavorite":"\u6211\u7684\u6700\u611b","OptionLikes":"\u559c\u6b61","OptionDislikes":"\u4e0d\u559c\u6b61","OptionActors":"\u6f14\u54e1","OptionGuestStars":"\u7279\u9080\u660e\u661f","OptionDirectors":"\u5c0e\u6f14","OptionWriters":"\u4f5c\u8005","OptionProducers":"\u5236\u7247\u4eba","HeaderResume":"\u6062\u5fa9\u64ad\u653e","HeaderNextUp":"\u4e0b\u4e00\u96c6","NoNextUpItemsMessage":"\u6c92\u6709\u627e\u5230\u3002\u958b\u59cb\u770b\u4f60\u7684\u7bc0\u76ee\uff01","HeaderLatestEpisodes":"\u6700\u65b0\u7bc0\u76ee\u55ae\u5143","HeaderPersonTypes":"\u4eba\u7269\u985e\u578b\uff1a","TabSongs":"\u6b4c\u66f2","TabAlbums":"\u5c08\u8f2f","TabArtists":"\u6b4c\u624b","TabAlbumArtists":"\u5c08\u8f2f\u6b4c\u624b","TabMusicVideos":"\u97f3\u6a02\u8996\u983b","ButtonSort":"\u6392\u5e8f","HeaderSortBy":"\u6392\u5e8f\u65b9\u5f0f\uff1a","HeaderSortOrder":"\u6392\u5e8f\u6b21\u5e8f\uff1a","OptionPlayed":"\u5df2\u64ad\u653e","OptionUnplayed":"\u672a\u64ad\u653e","OptionAscending":"\u5347\u5e8f","OptionDescending":"\u964d\u5e8f","OptionRuntime":"\u64ad\u653e\u9577\u5ea6","OptionReleaseDate":"\u767c\u5e03\u65e5\u671f","OptionPlayCount":"\u64ad\u653e\u6b21\u6578","OptionDatePlayed":"\u64ad\u653e\u65e5\u671f","OptionDateAdded":"\u6dfb\u52a0\u65e5\u671f","OptionAlbumArtist":"\u5c08\u8f2f\u6b4c\u624b","OptionArtist":"\u6b4c\u624b","OptionAlbum":"\u5c08\u8f2f","OptionTrackName":"\u66f2\u76ee\u540d\u7a31","OptionCommunityRating":"\u793e\u5340\u8a55\u5206","OptionNameSort":"\u540d\u5b57","OptionFolderSort":"Folders","OptionBudget":"\u9810\u7b97","OptionRevenue":"\u6536\u5165","OptionPoster":"\u6d77\u5831","OptionBackdrop":"Backdrop","OptionTimeline":"\u6642\u9593\u8ef8","OptionThumb":"\u7e2e\u7565\u5716","OptionBanner":"\u6a6b\u5411\u5716","OptionCriticRating":"\u8a55\u8ad6\u5bb6\u8a55\u50f9","OptionVideoBitrate":"\u8996\u983b\u6bd4\u7279\u7387","OptionResumable":"\u53ef\u6062\u5fa9","ScheduledTasksHelp":"\u55ae\u64ca\u4e00\u500b\u4efb\u52d9\u4f86\u8abf\u6574\u5b83\u7684\u904b\u884c\u6642\u9593\u8868\u3002","ScheduledTasksTitle":"\u5df2\u8a08\u5283\u4efb\u52d9","TabMyPlugins":"\u6211\u7684\u63d2\u4ef6","TabCatalog":"\u76ee\u9304","TabUpdates":"\u66f4\u65b0","PluginsTitle":"\u63d2\u4ef6","HeaderAutomaticUpdates":"\u81ea\u52d5\u66f4\u65b0","HeaderUpdateLevel":"\u66f4\u65b0\u7d1a\u5225","HeaderNowPlaying":"\u6b63\u5728\u64ad\u653e","HeaderLatestAlbums":"\u6700\u65b0\u5c08\u8f2f","HeaderLatestSongs":"\u6700\u65b0\u6b4c\u66f2","HeaderRecentlyPlayed":"\u6700\u8fd1\u64ad\u653e","HeaderFrequentlyPlayed":"\u7d93\u5e38\u64ad\u653e","DevBuildWarning":"\u958b\u767c\u7248\u672c\u662f\u6700\u524d\u6cbf\u7684\u3002\u7d93\u5e38\u767c\u4f48\uff0c\u4f46\u9019\u4e9b\u7248\u672c\u5c1a\u672a\u7d93\u904e\u6e2c\u8a66\u3002\u7a0b\u5f0f\u53ef\u80fd\u6703\u5d29\u6f70\uff0c\u6240\u6709\u529f\u80fd\u53ef\u80fd\u7121\u6cd5\u6b63\u5e38\u5de5\u4f5c\u3002","LabelVideoType":"\u8996\u983b\u985e\u578b\uff1a","OptionBluray":"\u85cd\u5149","OptionDvd":"DVD","OptionIso":"\u93e1\u50cf\u6a94","Option3D":"3D","LabelFeatures":"\u529f\u80fd\uff1a","OptionHasSubtitles":"\u5b57\u5e55","OptionHasTrailer":"\u9810\u544a","OptionHasThemeSong":"\u4e3b\u984c\u66f2","OptionHasThemeVideo":"\u4e3b\u984c\u8996\u983b","TabMovies":"\u96fb\u5f71","TabStudios":"\u5de5\u4f5c\u5ba4","TabTrailers":"\u9810\u544a","HeaderLatestMovies":"\u6700\u65b0\u96fb\u5f71","HeaderLatestTrailers":"\u6700\u65b0\u9810\u544a","OptionHasSpecialFeatures":"\u7279\u8272","OptionImdbRating":"IMDB\u8a55\u5206","OptionParentalRating":"\u5bb6\u9577\u8a55\u7d1a","OptionPremiereDate":"\u9996\u6620\u65e5\u671f","TabBasic":"\u57fa\u672c","TabAdvanced":"\u9032\u968e","HeaderStatus":"\u72c0\u614b","OptionContinuing":"\u6301\u7e8c","OptionEnded":"\u5b8c\u7d50","HeaderAirDays":"\u64ad\u653e\u65e5","OptionSunday":"\u661f\u671f\u5929","OptionMonday":"\u661f\u671f\u4e00","OptionTuesday":"\u661f\u671f\u4e8c","OptionWednesday":"\u661f\u671f\u4e09","OptionThursday":"\u661f\u671f\u56db","OptionFriday":"\u661f\u671f\u4e94","OptionSaturday":"\u661f\u671f\u516d","HeaderManagement":"\u7ba1\u7406\uff1a","OptionMissingImdbId":"\u7f3a\u5c11IMDB\u7de8\u865f","OptionMissingTvdbId":"\u7f3a\u5c11TheTVDB\u7de8\u865f","OptionMissingOverview":"\u7f3a\u5c11\u6982\u8ff0","OptionFileMetadataYearMismatch":"\u6a94\u6848\/\u5a92\u9ad4\u8cc7\u6599\u5e74\u4efd\u4e0d\u5339\u914d","TabGeneral":"\u4e00\u822c","TitleSupport":"\u652f\u63f4","TabLog":"\u65e5\u8a8c","TabAbout":"\u95dc\u65bc","TabSupporterKey":"\u652f\u6301\u8005\u5e8f\u865f","TabBecomeSupporter":"\u6210\u70ba\u652f\u6301\u8005","MediaBrowserHasCommunity":"Media Browser\u6709\u4e00\u500b\u7531\u7528\u6236\u548c\u8ca2\u737b\u8005\u5efa\u7acb\u7684\u7e41\u69ae\u793e\u5340\u3002","CheckoutKnowledgeBase":"\u700f\u89bd\u6211\u5011\u7684\u77e5\u8b58\u5eab\uff0c\u80fd\u5e6b\u52a9\u4f60\u5145\u5206\u5229\u7528Media Browser\u3002","SearchKnowledgeBase":"\u641c\u7d22\u77e5\u8b58\u5eab","VisitTheCommunity":"\u8a2a\u554f\u793e\u5340","VisitMediaBrowserWebsite":"\u8a2a\u554fMedia Browser\u7db2\u7ad9","VisitMediaBrowserWebsiteLong":"\u8a2a\u554fMedia Browser\u7684\u7db2\u7ad9\uff0c\u4ee5\u7dca\u8cbc\u6700\u65b0\u7684\u65b0\u805e\u548c\u8ddf\u4e0a\u958b\u767c\u8005\u535a\u5ba2\u3002","OptionHideUser":"\u5f9e\u767b\u9304\u9801\u9762\u96b1\u85cf\u6b64\u7528\u6236","OptionDisableUser":"\u7981\u7528\u6b64\u7528\u6236","OptionDisableUserHelp":"\u88ab\u7981\u7528\u7684\u7528\u6236\u5c07\u4e0d\u5141\u8a31\u9023\u63a5\u4f3a\u670d\u5668\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002","HeaderAdvancedControl":"\u9ad8\u7d1a\u63a7\u5236","LabelName":"\u540d\u5b57\uff1a","OptionAllowUserToManageServer":"\u5141\u8a31\u9019\u7528\u6236\u7ba1\u7406\u4f3a\u670d\u5668","HeaderFeatureAccess":"\u53ef\u4ee5\u4f7f\u7528\u7684\u529f\u80fd","OptionAllowMediaPlayback":"\u5141\u8a31\u5a92\u9ad4\u64ad\u653e","OptionAllowBrowsingLiveTv":"\u5141\u8a31\u4f7f\u7528\u96fb\u8996\u529f\u80fd","OptionAllowDeleteLibraryContent":"\u5141\u8a31\u9019\u7528\u6236\u522a\u9664\u5a92\u9ad4\u5eab\u7684\u5167\u5bb9","OptionAllowManageLiveTv":"\u5141\u8a31\u7ba1\u7406\u96fb\u8996\u7bc0\u76ee\u9304\u5f71","OptionAllowRemoteControlOthers":"\u5141\u8a31\u9019\u7528\u6236\u9060\u7a0b\u63a7\u5236\u5176\u4ed6\u7528\u6236","OptionMissingTmdbId":"Missing Tmdb Id","OptionIsHD":"HD","OptionIsSD":"SD","OptionMetascore":"Metascore","ButtonSelect":"Select","ButtonGroupVersions":"Group Versions","PismoMessage":"Utilizing Pismo File Mount through a donated license.","PleaseSupportOtherProduces":"Please support other free products we utilize:","VersionNumber":"Version {0}","TabPaths":"Paths","TabServer":"Server","TabTranscoding":"Transcoding","TitleAdvanced":"Advanced","LabelAutomaticUpdateLevel":"Automatic update level","OptionRelease":"\u6b63\u5f0f\u7248\u672c","OptionBeta":"\u516c\u6e2c\u7248\u672c","OptionDev":"\u958b\u767c\u7248\u672c","LabelAllowServerAutoRestart":"Allow the server to restart automatically to apply updates","LabelAllowServerAutoRestartHelp":"The server will only restart during idle periods, when no users are active.","LabelEnableDebugLogging":"Enable debug logging","LabelRunServerAtStartup":"Run server at startup","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"Select Directory","LabelCustomPaths":"Specify custom paths where desired. Leave fields empty to use the defaults.","LabelCachePath":"Cache path:","LabelCachePathHelp":"This folder contains server cache files, such as images.","LabelImagesByNamePath":"Images by name path:","LabelImagesByNamePathHelp":"This folder contains actor, artist, genre and studio images.","LabelMetadataPath":"Metadata path:","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"Transcoding temporary path:","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"Basics","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage."} \ No newline at end of file +{"LabelExit":"\u96e2\u958b","LabelVisitCommunity":"\u8a2a\u554f\u793e\u5340","LabelGithubWiki":"Github \u7ef4\u57fa","LabelSwagger":"Swagger","LabelStandard":"\u6a19\u6dee","LabelViewApiDocumentation":"\u67e5\u770bAPI\u6587\u6a94","LabelBrowseLibrary":"\u700f\u89bd\u5a92\u9ad4\u5eab","LabelConfigureMediaBrowser":"\u8a2d\u5b9aMedia Browser","LabelOpenLibraryViewer":"\u6253\u958b\u5a92\u9ad4\u5eab\u700f\u89bd\u5668","LabelRestartServer":"\u91cd\u65b0\u555f\u52d5\u4f3a\u5668\u670d","LabelShowLogWindow":"\u986f\u793a\u65e5\u8a8c","LabelPrevious":"\u4e0a\u4e00\u500b","LabelFinish":"\u5b8c\u7d50","LabelNext":"\u4e0b\u4e00\u500b","LabelYoureDone":"\u5b8c\u6210!","WelcomeToMediaBrowser":"\u6b61\u8fce\u4f86\u5230 Media Browser\uff01","TitleMediaBrowser":"Media Browser","ThisWizardWillGuideYou":"\u56ae\u5c0e\u5c07\u5f15\u5c0e\u4f60\u5b8c\u6210\u5b89\u88dd\u7a0b\u5e8f\u3002","TellUsAboutYourself":"\u8acb\u4ecb\u7d39\u4e00\u4e0b\u81ea\u5df1","LabelYourFirstName":"\u4f60\u7684\u540d\u5b57\uff1a","MoreUsersCanBeAddedLater":"\u5f80\u5f8c\u53ef\u4ee5\u5728\u63a7\u5236\u53f0\u5167\u6dfb\u52a0\u66f4\u591a\u7528\u6236\u3002","UserProfilesIntro":"Media Browser \u5167\u7f6e\u652f\u6301\u591a\u500b\u7528\u6236\u914d\u7f6e\uff0c\u4f7f\u6bcf\u500b\u7528\u6236\u90fd\u64c1\u6709\u81ea\u5df1\u5c08\u5c6c\u7684\u986f\u793a\u8a2d\u7f6e\uff0c\u64ad\u653e\u72c0\u614b\u548c\u5bb6\u9577\u63a7\u5236\u8a2d\u7f6e\u3002","LabelWindowsService":"Windows\u670d\u52d9","AWindowsServiceHasBeenInstalled":"Windows\u670d\u52d9\u5df2\u7d93\u5b89\u88dd\u5b8c\u7562\u3002","WindowsServiceIntro1":"Media Browser \u4f3a\u670d\u5668\u901a\u5e38\u6703\u4f5c\u70ba\u4e00\u500b\u6709\u7a0b\u5f0f\u76e4\u5716\u6a19\u7684\u684c\u9762\u61c9\u7528\u7a0b\u5f0f\u904b\u884c\uff0c\u4f46\u5982\u679c\u4f60\u66f4\u559c\u6b61\u5c07\u5b83\u4f5c\u70ba\u5f8c\u53f0\u670d\u52d9\uff0c\u5b83\u53ef\u4ee5\u5f9eWindows\u670d\u52d9\u63a7\u5236\u53f0\u555f\u52d5\u3002","WindowsServiceIntro2":"\u5982\u679c\u4f7f\u7528Windows\u670d\u52d9\uff0c\u8acb\u6ce8\u610f\uff0c\u5b83\u4e0d\u80fd\u540c\u6642\u4f5c\u70ba\u7a0b\u5f0f\u76e4\u5716\u6a19\u684c\u9762\u61c9\u7528\u7a0b\u5f0f\u904b\u884c\uff0c\u6240\u4ee5\u4f60\u9700\u8981\u5f9e\u7a0b\u5f0f\u76e4\u5716\u6a19\u9000\u51fa\uff0c\u4ee5\u904b\u884cWindows\u670d\u52d9\u3002\u8a72\u670d\u52d9\u9084\u9700\u8981\u5177\u6709\u7ba1\u7406\u54e1\u6b0a\u9650\uff0c\u9019\u53ef\u4ee5\u901a\u904eWindows\u670d\u52d9\u63a7\u5236\u53f0\u9032\u884c\u914d\u7f6e\u3002\u8acb\u6ce8\u610f\uff0c\u6b64\u6642\u7684 Media Browser \u4f3a\u670d\u5668\u670d\u52d9\u662f\u7121\u6cd5\u81ea\u52d5\u66f4\u65b0\uff0c\u56e0\u6b64\u65b0\u7248\u672c\u5c07\u9700\u8981\u624b\u52d5\u66f4\u65b0\u3002","WizardCompleted":"\u9019\u5c31\u662f\u6211\u5011\u73fe\u5728\u6240\u9700\u8981\u77e5\u9053\u7684\u3002Media Browser \u5df2\u7d93\u958b\u59cb\u6536\u96c6\u4f60\u7684\u5a92\u9ad4\u5eab\u7684\u8cc7\u6599\u3002\u8acb\u7e7c\u7e8c\u700f\u89bd\u6211\u5011\u5176\u4ed6\u7684\u7a0b\u5f0f\uff0c\u7136\u5f8c\u55ae\u64ca\u5b8c\u6210<\/b>\u4f86\u67e5\u770b\u63a7\u5236\u53f0<\/b>\u3002","LabelConfigureSettings":"\u914d\u7f6e\u8a2d\u5b9a","LabelEnableVideoImageExtraction":"\u555f\u52d5\u8996\u983b\u5716\u50cf\u63d0\u53d6","VideoImageExtractionHelp":"\u5c0d\u65bc\u6c92\u6709\u5716\u50cf\u4ee5\u53ca\u6211\u5011\u76ee\u524d\u7121\u6cd5\u5f9e\u4e92\u806f\u7db2\u627e\u5230\u6709\u95dc\u5716\u50cf\u7684\u8996\u983b\uff0c\u5728\u521d\u59cb\u5a92\u9ad4\u5eab\u6383\u63cf\u6642\uff0c\u6703\u589e\u52a0\u4e00\u4e9b\u984d\u5916\u7684\u6383\u63cf\u6642\u9593\uff0c\u4f46\u4f60\u5c07\u6703\u770b\u5230\u4e00\u500b\u66f4\u6085\u76ee\u7684\u4ecb\u7d39\u4ecb\u9762\u3002","LabelEnableChapterImageExtractionForMovies":"\u63d0\u53d6\u96fb\u5f71\u7ae0\u7bc0\u5716\u50cf","LabelChapterImageExtractionForMoviesHelp":"\u5f9e\u8996\u983b\u7ae0\u7bc0\u4e2d\u63d0\u53d6\u5716\u50cf\u5c07\u5141\u8a31\u5ba2\u6236\u7aef\u7528\u5716\u50cf\u986f\u793a\u9078\u64c7\u83dc\u55ae\u3002\u9019\u500b\u904e\u7a0b\u53ef\u80fd\u6703\u5f88\u6162\uff0c\u4f54\u7528\u66f4\u591a\u7684CPU\u8cc7\u6e90\uff0c\u4e26\u4e14\u53ef\u80fd\u9700\u8981\u7684\u6578GB\u786c\u789f\u7a7a\u9593\u3002\u5b83\u9ed8\u8a8d\u9810\u5b9a\u5728\u6bcf\u665a\u7684\u51cc\u66684\u9ede\u904b\u884c\uff0c\u4f46\u9019\u662f\u53ef\u4ee5\u5f9e\u4efb\u52d9\u8868\u9032\u884c\u8a2d\u5b9a\u7684\u3002\u4e0d\u5efa\u8b70\u5728\u9ad8\u5cf0\u4f7f\u7528\u6642\u9593\u904b\u884c\u6b64\u4efb\u52d9\u3002","LabelEnableAutomaticPortMapping":"\u555f\u7528\u81ea\u52d5\u7aef\u53e3\u8f49\u767c","LabelEnableAutomaticPortMappingHelp":"UPnP\u5141\u8a31\u8def\u7531\u5668\u81ea\u52d5\u8a2d\u7f6e\u5f9e\u800c\u53ef\u4ee5\u66f4\u65b9\u4fbf\u5730\u9060\u7a0b\u8a2a\u554f\u4f3a\u670d\u5668\u3002\u9019\u53ef\u80fd\u4e0d\u9069\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u578b\u865f\u3002","ButtonOk":"OK","ButtonCancel":"\u53d6\u6d88","ButtonNew":"New","HeaderSetupLibrary":"\u8a2d\u7f6e\u4f60\u7684\u5a92\u9ad4\u5eab","ButtonAddMediaFolder":"\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e","LabelFolderType":"\u5a92\u9ad4\u6587\u4ef6\u593e\u985e\u578b\uff1a","MediaFolderHelpPluginRequired":"*\u9700\u8981\u4f7f\u7528\u4e00\u500b\u63d2\u4ef6\uff0c\u4f8b\u5982GameBrowser\u6216MB Bookshelf\u3002","ReferToMediaLibraryWiki":"\u53c3\u7167\u5a92\u9ad4\u5eab\u7ef4\u57fa","LabelCountry":"\u570b\u5bb6\uff1a","LabelLanguage":"\u8a9e\u8a00\uff1a","HeaderPreferredMetadataLanguage":"\u9996\u9078\u5a92\u9ad4\u8cc7\u6599\u8a9e\u8a00\uff1a","LabelSaveLocalMetadata":"\u4fdd\u5b58\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5230\u5a92\u9ad4\u6a94\u6848\u6240\u5728\u7684\u6587\u4ef6\u593e","LabelSaveLocalMetadataHelp":"\u76f4\u63a5\u4fdd\u5b58\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5230\u5a92\u9ad4\u6240\u5728\u7684\u6587\u4ef6\u593e\u80fd\u4f7f\u7de8\u8f2f\u5de5\u4f5c\u66f4\u5bb9\u6613\u3002","LabelDownloadInternetMetadata":"\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599","LabelDownloadInternetMetadataHelp":"Media Browser\u53ef\u4ee5\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5f9e\u800c\u63d0\u4f9b\u66f4\u8c50\u5bcc\u7684\u5a92\u9ad4\u8868\u9054\u65b9\u5f0f\u3002","TabPreferences":"\u504f\u597d","TabPassword":"\u5bc6\u78bc","TabLibraryAccess":"\u5a92\u9ad4\u5eab\u700f\u89bd\u6b0a\u9650","TabImage":"\u5716\u50cf","TabProfile":"\u914d\u7f6e","TabMetadata":"Metadata","TabImages":"Images","TabCollectionTitles":"Titles","LabelDisplayMissingEpisodesWithinSeasons":"\u986f\u793a\u7bc0\u76ee\u5b63\u5ea6\u5167\u7f3a\u5c11\u7684\u55ae\u5143","LabelUnairedMissingEpisodesWithinSeasons":"\u5728\u7bc0\u76ee\u5b63\u5ea6\u5167\u986f\u793a\u9084\u672a\u767c\u4f48\u7684\u55ae\u5143","HeaderVideoPlaybackSettings":"\u8996\u983b\u56de\u653e\u8a2d\u7f6e","LabelAudioLanguagePreference":"\u97f3\u983b\u8a9e\u8a00\u504f\u597d\u9078\u9805\uff1a","LabelSubtitleLanguagePreference":"\u5b57\u5e55\u8a9e\u8a00\u504f\u597d\u9078\u9805\uff1a","LabelDisplayForcedSubtitlesOnly":"\u53ea\u986f\u793a\u5f37\u5236\u5b57\u5e55","TabProfiles":"\u914d\u7f6e","TabSecurity":"\u5b89\u5168\u6027","ButtonAddUser":"\u6dfb\u52a0\u7528\u6236","ButtonSave":"\u4fdd\u5b58","ButtonResetPassword":"\u91cd\u8a2d\u5bc6\u78bc","LabelNewPassword":"\u65b0\u5bc6\u78bc\uff1a","LabelNewPasswordConfirm":"\u78ba\u8a8d\u65b0\u5bc6\u78bc\uff1a","HeaderCreatePassword":"\u5275\u5efa\u5bc6\u78bc","LabelCurrentPassword":"\u7576\u524d\u7684\u5bc6\u78bc\uff1a","LabelMaxParentalRating":"\u6700\u5927\u5141\u8a31\u7684\u5bb6\u9577\u8a55\u7d1a\uff1a","MaxParentalRatingHelp":"\u5177\u6709\u8f03\u9ad8\u7684\u5bb6\u9577\u8a55\u7d1a\u5167\u5bb9\u5c07\u5f9e\u9019\u7528\u6236\u88ab\u96b1\u85cf","LibraryAccessHelp":"\u9078\u64c7\u5a92\u9ad4\u6587\u4ef6\u593e\u8207\u9019\u7528\u6236\u5171\u4eab\u3002\u7ba1\u7406\u54e1\u5c07\u53ef\u4ee5\u4f7f\u7528\u5a92\u9ad4\u8cc7\u6599\u64da\u7ba1\u7406\u5668\u7de8\u8f2f\u6240\u6709\u7684\u5a92\u9ad4\u6587\u4ef6\u593e\u3002","ButtonDeleteImage":"\u522a\u9664\u5716\u50cf","ButtonUpload":"\u4e0a\u8f09","HeaderUploadNewImage":"\u4e0a\u8f09\u65b0\u5716\u50cf","LabelDropImageHere":"\u5728\u9019\u88e1\u653e\u4e0b\u5716\u50cf","ImageUploadAspectRatioHelp":"\u63a8\u85a6\u4f7f\u67091:1\u5bec\u9ad8\u6bd4\u4f8b\u7684\u5716\u50cf\u3002\u53ea\u5141\u8a31JPG\/PNG\u683c\u5f0f","MessageNothingHere":"\u9019\u88e1\u6c92\u6709\u4ec0\u9ebc\u3002","MessagePleaseEnsureInternetMetadata":"\u8acb\u78ba\u4fdd\u5df2\u555f\u7528\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u8cc7\u6599\u3002","TabSuggested":"\u5efa\u8b70","TabLatest":"\u6700\u65b0","TabUpcoming":"\u5373\u5c07\u767c\u5e03","TabShows":"\u7bc0\u76ee","TabEpisodes":"\u55ae\u5143","TabGenres":"\u985e\u578b","TabPeople":"\u4eba\u7269","TabNetworks":"\u7db2\u7d61","HeaderUsers":"\u7528\u6236","HeaderFilters":"\u904e\u6ffe\uff1a","ButtonFilter":"\u904e\u6ffe","OptionFavorite":"\u6211\u7684\u6700\u611b","OptionLikes":"\u559c\u6b61","OptionDislikes":"\u4e0d\u559c\u6b61","OptionActors":"\u6f14\u54e1","OptionGuestStars":"\u7279\u9080\u660e\u661f","OptionDirectors":"\u5c0e\u6f14","OptionWriters":"\u4f5c\u8005","OptionProducers":"\u5236\u7247\u4eba","HeaderResume":"\u6062\u5fa9\u64ad\u653e","HeaderNextUp":"\u4e0b\u4e00\u96c6","NoNextUpItemsMessage":"\u6c92\u6709\u627e\u5230\u3002\u958b\u59cb\u770b\u4f60\u7684\u7bc0\u76ee\uff01","HeaderLatestEpisodes":"\u6700\u65b0\u7bc0\u76ee\u55ae\u5143","HeaderPersonTypes":"\u4eba\u7269\u985e\u578b\uff1a","TabSongs":"\u6b4c\u66f2","TabAlbums":"\u5c08\u8f2f","TabArtists":"\u6b4c\u624b","TabAlbumArtists":"\u5c08\u8f2f\u6b4c\u624b","TabMusicVideos":"\u97f3\u6a02\u8996\u983b","ButtonSort":"\u6392\u5e8f","HeaderSortBy":"\u6392\u5e8f\u65b9\u5f0f\uff1a","HeaderSortOrder":"\u6392\u5e8f\u6b21\u5e8f\uff1a","OptionPlayed":"\u5df2\u64ad\u653e","OptionUnplayed":"\u672a\u64ad\u653e","OptionAscending":"\u5347\u5e8f","OptionDescending":"\u964d\u5e8f","OptionRuntime":"\u64ad\u653e\u9577\u5ea6","OptionReleaseDate":"\u767c\u5e03\u65e5\u671f","OptionPlayCount":"\u64ad\u653e\u6b21\u6578","OptionDatePlayed":"\u64ad\u653e\u65e5\u671f","OptionDateAdded":"\u6dfb\u52a0\u65e5\u671f","OptionAlbumArtist":"\u5c08\u8f2f\u6b4c\u624b","OptionArtist":"\u6b4c\u624b","OptionAlbum":"\u5c08\u8f2f","OptionTrackName":"\u66f2\u76ee\u540d\u7a31","OptionCommunityRating":"\u793e\u5340\u8a55\u5206","OptionNameSort":"\u540d\u5b57","OptionFolderSort":"Folders","OptionBudget":"\u9810\u7b97","OptionRevenue":"\u6536\u5165","OptionPoster":"\u6d77\u5831","OptionBackdrop":"Backdrop","OptionTimeline":"\u6642\u9593\u8ef8","OptionThumb":"\u7e2e\u7565\u5716","OptionBanner":"\u6a6b\u5411\u5716","OptionCriticRating":"\u8a55\u8ad6\u5bb6\u8a55\u50f9","OptionVideoBitrate":"\u8996\u983b\u6bd4\u7279\u7387","OptionResumable":"\u53ef\u6062\u5fa9","ScheduledTasksHelp":"\u55ae\u64ca\u4e00\u500b\u4efb\u52d9\u4f86\u8abf\u6574\u5b83\u7684\u904b\u884c\u6642\u9593\u8868\u3002","ScheduledTasksTitle":"\u5df2\u8a08\u5283\u4efb\u52d9","TabMyPlugins":"\u6211\u7684\u63d2\u4ef6","TabCatalog":"\u76ee\u9304","TabUpdates":"\u66f4\u65b0","PluginsTitle":"\u63d2\u4ef6","HeaderAutomaticUpdates":"\u81ea\u52d5\u66f4\u65b0","HeaderUpdateLevel":"\u66f4\u65b0\u7d1a\u5225","HeaderNowPlaying":"\u6b63\u5728\u64ad\u653e","HeaderLatestAlbums":"\u6700\u65b0\u5c08\u8f2f","HeaderLatestSongs":"\u6700\u65b0\u6b4c\u66f2","HeaderRecentlyPlayed":"\u6700\u8fd1\u64ad\u653e","HeaderFrequentlyPlayed":"\u7d93\u5e38\u64ad\u653e","DevBuildWarning":"\u958b\u767c\u7248\u672c\u662f\u6700\u524d\u6cbf\u7684\u3002\u7d93\u5e38\u767c\u4f48\uff0c\u4f46\u9019\u4e9b\u7248\u672c\u5c1a\u672a\u7d93\u904e\u6e2c\u8a66\u3002\u7a0b\u5f0f\u53ef\u80fd\u6703\u5d29\u6f70\uff0c\u6240\u6709\u529f\u80fd\u53ef\u80fd\u7121\u6cd5\u6b63\u5e38\u5de5\u4f5c\u3002","LabelVideoType":"\u8996\u983b\u985e\u578b\uff1a","OptionBluray":"\u85cd\u5149","OptionDvd":"DVD","OptionIso":"\u93e1\u50cf\u6a94","Option3D":"3D","LabelFeatures":"\u529f\u80fd\uff1a","OptionHasSubtitles":"\u5b57\u5e55","OptionHasTrailer":"\u9810\u544a","OptionHasThemeSong":"\u4e3b\u984c\u66f2","OptionHasThemeVideo":"\u4e3b\u984c\u8996\u983b","TabMovies":"\u96fb\u5f71","TabStudios":"\u5de5\u4f5c\u5ba4","TabTrailers":"\u9810\u544a","HeaderLatestMovies":"\u6700\u65b0\u96fb\u5f71","HeaderLatestTrailers":"\u6700\u65b0\u9810\u544a","OptionHasSpecialFeatures":"\u7279\u8272","OptionImdbRating":"IMDB\u8a55\u5206","OptionParentalRating":"\u5bb6\u9577\u8a55\u7d1a","OptionPremiereDate":"\u9996\u6620\u65e5\u671f","TabBasic":"\u57fa\u672c","TabAdvanced":"\u9032\u968e","HeaderStatus":"\u72c0\u614b","OptionContinuing":"\u6301\u7e8c","OptionEnded":"\u5b8c\u7d50","HeaderAirDays":"\u64ad\u653e\u65e5","OptionSunday":"\u661f\u671f\u5929","OptionMonday":"\u661f\u671f\u4e00","OptionTuesday":"\u661f\u671f\u4e8c","OptionWednesday":"\u661f\u671f\u4e09","OptionThursday":"\u661f\u671f\u56db","OptionFriday":"\u661f\u671f\u4e94","OptionSaturday":"\u661f\u671f\u516d","HeaderManagement":"\u7ba1\u7406\uff1a","OptionMissingImdbId":"\u7f3a\u5c11IMDB\u7de8\u865f","OptionMissingTvdbId":"\u7f3a\u5c11TheTVDB\u7de8\u865f","OptionMissingOverview":"\u7f3a\u5c11\u6982\u8ff0","OptionFileMetadataYearMismatch":"\u6a94\u6848\/\u5a92\u9ad4\u8cc7\u6599\u5e74\u4efd\u4e0d\u5339\u914d","TabGeneral":"\u4e00\u822c","TitleSupport":"\u652f\u63f4","TabLog":"\u65e5\u8a8c","TabAbout":"\u95dc\u65bc","TabSupporterKey":"\u652f\u6301\u8005\u5e8f\u865f","TabBecomeSupporter":"\u6210\u70ba\u652f\u6301\u8005","MediaBrowserHasCommunity":"Media Browser\u6709\u4e00\u500b\u7531\u7528\u6236\u548c\u8ca2\u737b\u8005\u5efa\u7acb\u7684\u7e41\u69ae\u793e\u5340\u3002","CheckoutKnowledgeBase":"\u700f\u89bd\u6211\u5011\u7684\u77e5\u8b58\u5eab\uff0c\u80fd\u5e6b\u52a9\u4f60\u5145\u5206\u5229\u7528Media Browser\u3002","SearchKnowledgeBase":"\u641c\u7d22\u77e5\u8b58\u5eab","VisitTheCommunity":"\u8a2a\u554f\u793e\u5340","VisitMediaBrowserWebsite":"\u8a2a\u554fMedia Browser\u7db2\u7ad9","VisitMediaBrowserWebsiteLong":"\u8a2a\u554fMedia Browser\u7684\u7db2\u7ad9\uff0c\u4ee5\u7dca\u8cbc\u6700\u65b0\u7684\u65b0\u805e\u548c\u8ddf\u4e0a\u958b\u767c\u8005\u535a\u5ba2\u3002","OptionHideUser":"\u5f9e\u767b\u9304\u9801\u9762\u96b1\u85cf\u6b64\u7528\u6236","OptionDisableUser":"\u7981\u7528\u6b64\u7528\u6236","OptionDisableUserHelp":"\u88ab\u7981\u7528\u7684\u7528\u6236\u5c07\u4e0d\u5141\u8a31\u9023\u63a5\u4f3a\u670d\u5668\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002","HeaderAdvancedControl":"\u9ad8\u7d1a\u63a7\u5236","LabelName":"\u540d\u5b57\uff1a","OptionAllowUserToManageServer":"\u5141\u8a31\u9019\u7528\u6236\u7ba1\u7406\u4f3a\u670d\u5668","HeaderFeatureAccess":"\u53ef\u4ee5\u4f7f\u7528\u7684\u529f\u80fd","OptionAllowMediaPlayback":"\u5141\u8a31\u5a92\u9ad4\u64ad\u653e","OptionAllowBrowsingLiveTv":"\u5141\u8a31\u4f7f\u7528\u96fb\u8996\u529f\u80fd","OptionAllowDeleteLibraryContent":"\u5141\u8a31\u9019\u7528\u6236\u522a\u9664\u5a92\u9ad4\u5eab\u7684\u5167\u5bb9","OptionAllowManageLiveTv":"\u5141\u8a31\u7ba1\u7406\u96fb\u8996\u7bc0\u76ee\u9304\u5f71","OptionAllowRemoteControlOthers":"\u5141\u8a31\u9019\u7528\u6236\u9060\u7a0b\u63a7\u5236\u5176\u4ed6\u7528\u6236","OptionMissingTmdbId":"\u7f3a\u5c11TMDB\u7de8\u865f","OptionIsHD":"\u9ad8\u6e05","OptionIsSD":"\u6a19\u6e05","OptionMetascore":"\u8a55\u5206","ButtonSelect":"\u9078\u64c7","ButtonSearch":"Search","ButtonGroupVersions":"\u7fa4\u9ad4\u7248\u672c","PismoMessage":"\u901a\u904e\u6350\u8d08\u7684\u8edf\u4ef6\u8a31\u53ef\u8b49\u4f7f\u7528Pismo File Mount\u3002","PleaseSupportOtherProduces":"\u8acb\u652f\u6301\u6211\u5011\u5176\u4ed6\u7684\u514d\u8cbb\u7522\u54c1\uff1a","VersionNumber":"\u7248\u672c{0}","TabPaths":"\u8def\u5f91","TabServer":"\u4f3a\u670d\u5668","TabTranscoding":"\u8f49\u78bc\u4e2d","TitleAdvanced":"\u9032\u968e","LabelAutomaticUpdateLevel":"\u81ea\u52d5\u66f4\u65b0\u7d1a\u5225","OptionRelease":"\u6b63\u5f0f\u7248\u672c","OptionBeta":"\u516c\u6e2c\u7248\u672c","OptionDev":"\u958b\u767c\u7248\u672c","LabelAllowServerAutoRestart":"\u5141\u8a31\u4f3a\u670d\u5668\u81ea\u52d5\u91cd\u65b0\u555f\u52d5\u53bb\u5b89\u88dd\u66f4\u65b0\u8cc7\u6599","LabelAllowServerAutoRestartHelp":"\u4f3a\u670d\u5668\u53ea\u6703\u5728\u6c92\u6709\u6d3b\u8e8d\u7528\u6236\u53ca\u7a7a\u9592\u671f\u9593\u91cd\u65b0\u555f\u52d5\u3002","LabelEnableDebugLogging":"\u555f\u52d5\u8a18\u9304\u9664\u932f\u4fe1\u606f\u5230\u65e5\u8a8c","LabelRunServerAtStartup":"\u5728\u7cfb\u7d71\u555f\u52d5\u6642\u904b\u884c\u4f3a\u670d\u5668","LabelRunServerAtStartupHelp":"This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.","ButtonSelectDirectory":"\u9078\u64c7\u76ee\u9304","LabelCustomPaths":"\u6307\u5b9a\u6240\u9700\u7684\u81ea\u5b9a\u7fa9\u8def\u5f91\u3002\u7559\u7a7a\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002","LabelCachePath":"\u7de9\u5b58\u8def\u5f91\uff1a","LabelCachePathHelp":"\u6b64\u6587\u4ef6\u593e\u5305\u542b\u4f3a\u670d\u5668\u7de9\u5b58\u6587\u4ef6\uff0c\u4f8b\u5982\u5716\u50cf\u3002","LabelImagesByNamePath":"\u540d\u7a31\u5716\u50cf\u6587\u4ef6\u593e\u8def\u5f91\uff1a","LabelImagesByNamePathHelp":"\u6b64\u6587\u4ef6\u593e\u5305\u542b\u6f14\u54e1\uff0c\u6b4c\u624b\uff0c\u5a92\u9ad4\u7a2e\u985e\u548c\u5de5\u4f5c\u5ba4\u7684\u5716\u50cf\u3002","LabelMetadataPath":"\u5a92\u9ad4\u8cc7\u6599\u6587\u4ef6\u593e\u8def\u5f91\uff1a","LabelMetadataPathHelp":"This location contains downloaded artwork and metadata that is not configured to be stored in media folders.","LabelTranscodingTempPath":"\u8f49\u78bc\u81e8\u6642\u8def\u5f91\uff1a","LabelTranscodingTempPathHelp":"This folder contains working files used by the transcoder.","TabBasics":"\u57fa\u672c","TabTV":"TV","TabGames":"Games","TabMusic":"Music","TabOthers":"Others","HeaderExtractChapterImagesFor":"Extract chapter images for:","OptionMovies":"Movies","OptionEpisodes":"Episodes","OptionOtherVideos":"Other Videos","TitleMetadata":"Metadata","LabelAutomaticUpdatesFanart":"Enable automatic updates from FanArt.tv","LabelAutomaticUpdatesTmdb":"Enable automatic updates from TheMovieDB.org","LabelAutomaticUpdatesTvdb":"Enable automatic updates from TheTVDB.com","LabelAutomaticUpdatesFanartHelp":"If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced.","LabelAutomaticUpdatesTmdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced.","LabelAutomaticUpdatesTvdbHelp":"If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced.","ExtractChapterImagesHelp":"Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task at 4am, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.","LabelMetadataDownloadLanguage":"Preferred language:","ButtonAutoScroll":"Auto-scroll","LabelImageSavingConvention":"Image saving convention:","LabelImageSavingConventionHelp":"Media Browser recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.","OptionImageSavingCompatible":"Compatible - MB3\/Plex\/Xbmc","OptionImageSavingStandard":"Standard - MB3\/MB2","ButtonSignIn":"Sign In","TitleSignIn":"Sign In","HeaderPleaseSignIn":"Please sign in","LabelUser":"User:","LabelPassword":"Password:","ButtonManualLogin":"Manual Login:","PasswordLocalhostMessage":"Passwords are not required when logging in from localhost.","TabGuide":"Guide","TabChannels":"Channels","HeaderChannels":"Channels","TabRecordings":"Recordings","TabScheduled":"Scheduled","TabSeries":"Series","ButtonCancelRecording":"Cancel Recording","HeaderPrePostPadding":"Pre\/Post Padding","LabelPrePaddingMinutes":"Pre-padding minutes:","OptionPrePaddingRequired":"Pre-padding is required in order to record.","LabelPostPaddingMinutes":"Post-padding minutes:","OptionPostPaddingRequired":"Post-padding is required in order to record.","HeaderWhatsOnTV":"What's On","HeaderUpcomingTV":"Upcoming TV","TabStatus":"Status","TabSettings":"Settings","ButtonRefreshGuideData":"Refresh Guide Data","OptionPriority":"Priority","OptionRecordOnAllChannels":"Record program on all channels","OptionRecordAnytime":"Record program at any time","OptionRecordOnlyNewEpisodes":"Record only new episodes","HeaderDays":"Days","HeaderActiveRecordings":"Active Recordings","HeaderLatestRecordings":"Latest Recordings","HeaderAllRecordings":"All Recordings","ButtonPlay":"Play","ButtonEdit":"Edit","ButtonRecord":"Record","ButtonDelete":"Delete","ButtonRemove":"Remove","OptionRecordSeries":"Record Series","HeaderDetails":"Details","TitleLiveTV":"Live TV","LabelNumberOfGuideDays":"Number of days of guide data to download:","LabelNumberOfGuideDaysHelp":"Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.","LabelActiveService":"Active Service:","LabelActiveServiceHelp":"Multiple tv plugins can be installed but only one can be active at a time.","OptionAutomatic":"Auto","LiveTvPluginRequired":"A Live TV service provider plugin is required in order to continue.","LiveTvPluginRequiredHelp":"Please install one of our available plugins, such as Next Pvr or ServerWmc.","HeaderCustomizeOptionsPerMediaType":"Customize options per media type","OptionDownloadThumbImage":"Thumb","OptionDownloadMenuImage":"Menu","OptionDownloadLogoImage":"Logo","OptionDownloadBoxImage":"Box","OptionDownloadDiscImage":"Disc","OptionDownloadBannerImage":"Banner","OptionDownloadBackImage":"Back","OptionDownloadArtImage":"Art","OptionDownloadPrimaryImage":"Primary","HeaderFetchImages":"Fetch Images:","HeaderImageSettings":"Image Settings","LabelMaxBackdropsPerItem":"Maximum number of backdrops per item:","LabelMaxScreenshotsPerItem":"Maximum number of screenshots per item:","LabelMinBackdropDownloadWidth":"Minimum backdrop download width:","LabelMinScreenshotDownloadWidth":"Minimum screenshot download width:","ButtonAddScheduledTaskTrigger":"Add Task Trigger","HeaderAddScheduledTaskTrigger":"Add Task Trigger","ButtonAdd":"Add","LabelTriggerType":"Trigger Type:","OptionDaily":"Daily","OptionWeekly":"Weekly","OptionOnInterval":"On an interval","OptionOnAppStartup":"On application startup","OptionAfterSystemEvent":"After a system event","LabelDay":"Day:","LabelTime":"Time:","LabelEvent":"Event:","OptionWakeFromSleep":"Wake from sleep","LabelEveryXMinutes":"Every:","HeaderTvTuners":"Tuners","HeaderGallery":"Gallery","HeaderLatestGames":"Latest Games","HeaderRecentlyPlayedGames":"Recently Played Games","TabGameSystems":"Game Systems","TitleMediaLibrary":"Media Library","TabFolders":"Folders","TabPathSubstitution":"Path Substitution","LabelSeasonZeroDisplayName":"Season 0 display name:","LabelEnableRealtimeMonitor":"Enable real time monitoring","LabelEnableRealtimeMonitorHelp":"Changes will be processed immediately, on supported file systems.","ButtonScanLibrary":"Scan Library","HeaderNumberOfPlayers":"Players:","OptionAnyNumberOfPlayers":"Any","Option1Player":"1+","Option2Player":"2+","Option3Player":"3+","Option4Player":"4+","HeaderMediaFolders":"Media Folders","HeaderThemeVideos":"Theme Videos","HeaderThemeSongs":"Theme Songs","HeaderScenes":"Scenes","HeaderAwardsAndReviews":"Awards and Reviews","HeaderSoundtracks":"Soundtracks","HeaderMusicVideos":"Music Videos","HeaderSpecialFeatures":"Special Features","HeaderCastCrew":"Cast & Crew","HeaderAdditionalParts":"Additional Parts","ButtonSplitVersionsApart":"Split Versions Apart","ButtonPlayTrailer":"Trailer","LabelMissing":"Missing","LabelOffline":"Offline","PathSubstitutionHelp":"Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.","HeaderFrom":"From","HeaderTo":"To","LabelFrom":"From:","LabelFromHelp":"Example: D:\\Movies (on the server)","LabelTo":"To:","LabelToHelp":"Example: \\\\MyServer\\Movies (a path clients can access)","ButtonAddPathSubstitution":"Add Substitution","OptionSpecialEpisode":"Specials","OptionMissingEpisode":"Missing Episodes","OptionUnairedEpisode":"Unaired Episodes","OptionEpisodeSortName":"Episode Sort Name","OptionSeriesSortName":"Series Name","OptionTvdbRating":"Tvdb Rating","HeaderTranscodingQualityPreference":"Transcoding Quality Preference:","OptionAutomaticTranscodingHelp":"The server will decide quality and speed","OptionHighSpeedTranscodingHelp":"Lower quality, but faster encoding","OptionHighQualityTranscodingHelp":"Higher quality, but slower encoding","OptionMaxQualityTranscodingHelp":"Best quality with slower encoding and high CPU usage","OptionHighSpeedTranscoding":"Higher speed","OptionHighQualityTranscoding":"Higher quality","OptionMaxQualityTranscoding":"Max quality","OptionEnableDebugTranscodingLogging":"Enable debug transcoding logging","OptionEnableDebugTranscodingLoggingHelp":"This will create very large log files and is only recommended as needed for troubleshooting purposes.","OptionUpscaling":"Allow clients to request upscaled video","OptionUpscalingHelp":"In some cases this will result in improved video quality but will increase CPU usage.","EditCollectionItemsHelp":"Add or remove any movies, series, albums, books or games you wish to group within this collection.","HeaderAddTitles":"Add Titles","LabelEnableDlnaPlayTo":"Enable DLNA Play To","LabelEnableDlnaPlayToHelp":"Media Browser can detect devices within your network and offer the ability to remote control them.","LabelEnableDlnaDebugLogging":"Enable DLNA debug logging","LabelEnableDlnaDebugLoggingHelp":"This will create large log files and should only be used as needed for troubleshooting purposes.","LabelEnableDlnaClientDiscoveryInterval":"Client discovery interval (seconds)","LabelEnableDlnaClientDiscoveryIntervalHelp":"Determines the duration in seconds of the interval between SSDP searches performed by Media Browser.","HeaderCustomDlnaProfiles":"Custom Profiles","HeaderSystemDlnaProfiles":"System Profiles","CustomDlnaProfilesHelp":"Create a custom profile to target a new device or override a system profile.","SystemDlnaProfilesHelp":"System profiles are read-only. To override a system profile, create a custom profile targeting the same device.","TitleDashboard":"Dashboard","TabHome":"Home","TabInfo":"Info","HeaderLinks":"Links","HeaderSystemPaths":"System Paths","LinkCommunity":"Community","LinkGithub":"Github","LinkApiDocumentation":"Api Documentation","LabelFriendlyServerName":"Friendly server name:","LabelFriendlyServerNameHelp":"This name will be used to identify this server. If left blank, the computer name will be used.","LabelPreferredDisplayLanguage":"Preferred display language","LabelPreferredDisplayLanguageHelp":"Translating Media Browser is an ongoing project and is not yet complete.","LabelReadHowYouCanContribute":"Read about how you can contribute.","HeaderNewCollection":"New Collection","NewCollectionNameExample":"Example: Star Wars Collection","OptionSearchForInternetMetadata":"Search the internet for artwork and metadata","ButtonCreate":"Create","LabelHttpServerPortNumber":"Http server port number:","LabelWebSocketPortNumber":"Web socket port number:","LabelEnableAutomaticPortHelp":"UPnP allows automated router configuration for remote access. This may not work with some router models.","LabelExternalDDNS":"External DDNS:","LabelExternalDDNSHelp":"If you have a dynamic DNS enter it here. Media Browser apps will use it when connecting remotely.","TabResume":"Resume","TabWeather":"Weather","TitleAppSettings":"App Settings","LabelMinResumePercentage":"Min resume percentage:","LabelMaxResumePercentage":"Max resume percentage:","LabelMinResumeDuration":"Min resume duration (seconds):","LabelMinResumePercentageHelp":"Titles are assumed unplayed if stopped before this time","LabelMaxResumePercentageHelp":"Titles are assumed fully played if stopped after this time","LabelMinResumeDurationHelp":"Titles shorter than this will not be resumable"} \ No newline at end of file diff --git a/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj b/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj index 59c782b30e..19467842c3 100644 --- a/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj +++ b/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj @@ -317,6 +317,8 @@ + +