';
html += item.People.map(function (cast) {
var personHtml = '
';
diff --git a/dashboard-ui/scripts/moviesrecommended.js b/dashboard-ui/scripts/moviesrecommended.js
index 974f019b8a..62170b9233 100644
--- a/dashboard-ui/scripts/moviesrecommended.js
+++ b/dashboard-ui/scripts/moviesrecommended.js
@@ -1,4 +1,4 @@
-define(['jQuery', 'libraryBrowser'], function ($, libraryBrowser) {
+define(['jQuery', 'libraryBrowser', 'scrollStyles'], function ($, libraryBrowser) {
function getView() {
diff --git a/dashboard-ui/scripts/musicrecommended.js b/dashboard-ui/scripts/musicrecommended.js
index a7b2d77116..cbc244e600 100644
--- a/dashboard-ui/scripts/musicrecommended.js
+++ b/dashboard-ui/scripts/musicrecommended.js
@@ -1,4 +1,4 @@
-define(['jQuery'], function ($) {
+define(['jQuery', 'scrollStyles'], function ($) {
function itemsPerRow() {
diff --git a/dashboard-ui/scripts/scheduledtaskspage.js b/dashboard-ui/scripts/scheduledtaskspage.js
index b780cbdd3a..bfa96c3d68 100644
--- a/dashboard-ui/scripts/scheduledtaskspage.js
+++ b/dashboard-ui/scripts/scheduledtaskspage.js
@@ -127,10 +127,10 @@
.replace("{1}", humane_elapsed(task.LastExecutionResult.StartTimeUtc, task.LastExecutionResult.EndTimeUtc));
if (task.LastExecutionResult.Status == "Failed") {
- html += "
" + Globalize.translate('LabelFailed') + "";
+ html += "
(" + Globalize.translate('LabelFailed') + ")";
}
else if (task.LastExecutionResult.Status == "Cancelled") {
- html += "
" + Globalize.translate('LabelCancelled') + "";
+ html += "
(" + Globalize.translate('LabelCancelled') + ")";
}
else if (task.LastExecutionResult.Status == "Aborted") {
html += "
" + Globalize.translate('LabelAbortedByServerShutdown') + "";
diff --git a/dashboard-ui/scripts/search.js b/dashboard-ui/scripts/search.js
index 7b0f697f1f..bf2fb76dde 100644
--- a/dashboard-ui/scripts/search.js
+++ b/dashboard-ui/scripts/search.js
@@ -1,4 +1,4 @@
-define(['libraryBrowser'], function (libraryBrowser) {
+define(['libraryBrowser', 'scrollStyles'], function (libraryBrowser) {
var searchHintTimeout;
@@ -44,7 +44,7 @@
}
else if (hint.Type == "Series") {
- return [Globalize.translate('LabelSeries')];
+ return [Globalize.translate('Series')];
}
else if (hint.Type == "BoxSet") {
diff --git a/dashboard-ui/scripts/sections.js b/dashboard-ui/scripts/sections.js
index 32bdef77ff..3ab22b61f1 100644
--- a/dashboard-ui/scripts/sections.js
+++ b/dashboard-ui/scripts/sections.js
@@ -1,4 +1,4 @@
-define(['libraryBrowser', 'jQuery'], function (LibraryBrowser, $) {
+define(['libraryBrowser', 'jQuery', 'scrollStyles'], function (LibraryBrowser, $) {
function getUserViews(userId) {
diff --git a/dashboard-ui/scripts/selectserver.js b/dashboard-ui/scripts/selectserver.js
index 36c5401260..01e6bd8102 100644
--- a/dashboard-ui/scripts/selectserver.js
+++ b/dashboard-ui/scripts/selectserver.js
@@ -26,9 +26,12 @@
break;
case MediaBrowser.ConnectionState.ServerUpdateNeeded:
{
- Dashboard.alert({
- message: Globalize.translate('ServerUpdateNeeded', '
https://emby.media')
- });
+ Dashboard.alert(alert({
+
+ text: Globalize.translate('core#ServerUpdateNeeded', 'https://emby.media'),
+ html: Globalize.translate('core#ServerUpdateNeeded', '
https://emby.media')
+
+ }));
}
break;
default:
diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js
index 0c6963c3bf..44a2d12cc6 100644
--- a/dashboard-ui/scripts/site.js
+++ b/dashboard-ui/scripts/site.js
@@ -1977,6 +1977,7 @@ var AppInfo = {};
define("robotoFont", ['css!' + embyWebComponentsBowerPath + '/fonts/roboto/style']);
define("opensansFont", ['css!' + embyWebComponentsBowerPath + '/fonts/opensans/style']);
define("montserratFont", ['css!' + embyWebComponentsBowerPath + '/fonts/montserrat/style']);
+ define("scrollStyles", ['css!' + embyWebComponentsBowerPath + '/scrollstyles']);
define("viewcontainer", ['components/viewcontainer-lite'], returnFirstDependency);
define('queryString', [bowerPath + '/query-string/index'], function () {
@@ -2099,10 +2100,7 @@ var AppInfo = {};
if (browser.mobile) {
define("prompt", [embyWebComponentsBowerPath + "/prompt/nativeprompt"], returnFirstDependency);
define("confirm", [embyWebComponentsBowerPath + "/confirm/nativeconfirm"], returnFirstDependency);
-
- // We have some alerts with markup
- //define("alert", [embyWebComponentsBowerPath + "/alert/nativealert"], returnFirstDependency);
- define("alert", [embyWebComponentsBowerPath + "/alert/alert"], returnFirstDependency);
+ define("alert", [embyWebComponentsBowerPath + "/alert/nativealert"], returnFirstDependency);
} else {
define("prompt", [embyWebComponentsBowerPath + "/prompt/prompt"], returnFirstDependency);
define("confirm", [embyWebComponentsBowerPath + "/confirm/confirm"], returnFirstDependency);
@@ -2618,7 +2616,7 @@ var AppInfo = {};
defineRoute({
path: '/livetvtimer.html',
- dependencies: [],
+ dependencies: ['scrollStyles'],
autoFocus: false
});
@@ -3047,6 +3045,7 @@ var AppInfo = {};
deps.push('imageLoader');
deps.push('router');
+ deps.push('layoutManager');
if (!(AppInfo.isNativeApp && browserInfo.android)) {
document.documentElement.classList.add('minimumSizeTabs');
@@ -3090,13 +3089,15 @@ var AppInfo = {};
deps.push('css!css/card.css');
- require(deps, function (imageLoader, pageObjects) {
+ require(deps, function (imageLoader, pageObjects, layoutManager) {
console.log('Loaded dependencies in onAppReady');
imageLoader.enableFade = browserInfo.animate && !browserInfo.mobile;
window.ImageLoader = imageLoader;
+ layoutManager.init();
+
//$.mobile.initializePage();
window.Emby = {};
window.Emby.Page = pageObjects;
diff --git a/dashboard-ui/scripts/taskbutton.js b/dashboard-ui/scripts/taskbutton.js
index 176a9f8799..c5cf48bf3b 100644
--- a/dashboard-ui/scripts/taskbutton.js
+++ b/dashboard-ui/scripts/taskbutton.js
@@ -59,10 +59,10 @@
var lastResult = task.LastExecutionResult ? task.LastExecutionResult.Status : '';
if (lastResult == "Failed") {
- options.lastResultElem.html('
' + Globalize.translate('LabelFailed') + '');
+ options.lastResultElem.html('
(' + Globalize.translate('LabelFailed') + ')');
}
else if (lastResult == "Cancelled") {
- options.lastResultElem.html('
' + Globalize.translate('LabelCancelled') + '');
+ options.lastResultElem.html('
(' + Globalize.translate('LabelCancelled') + ')');
}
else if (lastResult == "Aborted") {
options.lastResultElem.html('
' + Globalize.translate('LabelAbortedByServerShutdown') + '');
diff --git a/dashboard-ui/scripts/tvrecommended.js b/dashboard-ui/scripts/tvrecommended.js
index 5e369e6935..bdf848f382 100644
--- a/dashboard-ui/scripts/tvrecommended.js
+++ b/dashboard-ui/scripts/tvrecommended.js
@@ -1,4 +1,4 @@
-define(['libraryBrowser', 'scripts/alphapicker'], function (libraryBrowser) {
+define(['libraryBrowser', 'scripts/alphapicker', 'scrollStyles'], function (libraryBrowser) {
return function (view, params) {
diff --git a/dashboard-ui/scripts/tvupcoming.js b/dashboard-ui/scripts/tvupcoming.js
index f3bcfd5852..64d132b06a 100644
--- a/dashboard-ui/scripts/tvupcoming.js
+++ b/dashboard-ui/scripts/tvupcoming.js
@@ -1,4 +1,4 @@
-define([], function () {
+define(['scrollStyles'], function () {
function loadUpcoming(context, params) {
diff --git a/dashboard-ui/scripts/useredit.js b/dashboard-ui/scripts/useredit.js
index f78022fa3b..7c2053e895 100644
--- a/dashboard-ui/scripts/useredit.js
+++ b/dashboard-ui/scripts/useredit.js
@@ -123,21 +123,26 @@
}
} function showEmbyConnectErrorMessage(username) {
- var msg;
+ var html;
+ var text;
if (username) {
- msg = Globalize.translate('ErrorAddingEmbyConnectAccount1', '
https://emby.media/connect');
- msg += '
' + Globalize.translate('ErrorAddingEmbyConnectAccount2', 'apps@emby.media');
+ html = Globalize.translate('ErrorAddingEmbyConnectAccount1', '
https://emby.media/connect');
+ html += '
' + Globalize.translate('ErrorAddingEmbyConnectAccount2', 'apps@emby.media');
+
+ text = Globalize.translate('ErrorAddingEmbyConnectAccount1', 'https://emby.media/connect');
+ text += '\n\n' + Globalize.translate('ErrorAddingEmbyConnectAccount2', 'apps@emby.media');
} else {
- msg = Globalize.translate('DefaultErrorMessage');
+ html = text = Globalize.translate('DefaultErrorMessage');
}
- Dashboard.alert({
-
- message: msg
-
+ require(['alert'], function (alert) {
+ alert({
+ text: text,
+ html: html
+ });
});
}
diff --git a/dashboard-ui/strings/ar.json b/dashboard-ui/strings/ar.json
index e4c7d761b4..0332c75210 100644
--- a/dashboard-ui/strings/ar.json
+++ b/dashboard-ui/strings/ar.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u062e\u0631\u0648\u062c",
"LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639",
"LabelGithub": "\u062c\u064a\u062a \u0647\u0628",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/bg-BG.json b/dashboard-ui/strings/bg-BG.json
index 9343bfdd2b..d5caa2d298 100644
--- a/dashboard-ui/strings/bg-BG.json
+++ b/dashboard-ui/strings/bg-BG.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u0418\u0437\u0445\u043e\u0434",
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/ca.json b/dashboard-ui/strings/ca.json
index 45ca82e4ff..7d3645c163 100644
--- a/dashboard-ui/strings/ca.json
+++ b/dashboard-ui/strings/ca.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Sortir",
"LabelVisitCommunity": "Visita la Comunitat",
"LabelGithub": "Github",
@@ -61,7 +58,7 @@
"ButtonCancel": "Cancel\u00b7la",
"ButtonExit": "Surt",
"ButtonNew": "Nou",
- "HeaderTaskTriggers": "Task Triggers",
+ "HeaderTaskTriggers": "Disparadors de Tasques",
"HeaderTV": "TV",
"HeaderAudio": "\u00c0udio",
"HeaderVideo": "V\u00eddeo",
@@ -127,7 +124,7 @@
"TabImages": "Imatges",
"TabNotifications": "Notificacions",
"TabCollectionTitles": "T\u00edtols",
- "HeaderDeviceAccess": "Device Access",
+ "HeaderDeviceAccess": "Acc\u00e9s de Dispositiu",
"OptionEnableAccessFromAllDevices": "Habilita l'acc\u00e9s des de tots els dispositius",
"OptionEnableAccessToAllChannels": "Habilita l'acc\u00e9s a tots els canals",
"OptionEnableAccessToAllLibraries": "Habilita l'acc\u00e9s a totes les biblioteques",
@@ -139,7 +136,7 @@
"LabelAudioLanguagePreference": "Prefer\u00e8ncia de l'idioma de l'\u00e0udio:",
"LabelSubtitleLanguagePreference": "Prefer\u00e8ncia de l'idioma dels subt\u00edtols:",
"OptionDefaultSubtitles": "Per defecte",
- "OptionSmartSubtitles": "Smart",
+ "OptionSmartSubtitles": "Intel\u00b7ligent",
"OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
"OptionOnlyForcedSubtitles": "Nom\u00e9s subt\u00edtols for\u00e7ats",
"OptionAlwaysPlaySubtitles": "Reprodueix subt\u00edtols sempre",
@@ -204,7 +201,7 @@
"OptionUnplayed": "No reprodu\u00eft",
"OptionAscending": "Ascendent",
"OptionDescending": "Descendent",
- "OptionRuntime": "Runtime",
+ "OptionRuntime": "Temps d'exec.",
"OptionReleaseDate": "Data de Publicaci\u00f3",
"OptionPlayCount": "Nombre de Reproduccions",
"OptionDatePlayed": "Data de Reproducci\u00f3",
@@ -221,7 +218,7 @@
"OptionPoster": "Poster",
"OptionPosterCard": "Poster card",
"OptionBackdrop": "Tel\u00f3 de fons",
- "OptionTimeline": "Timeline",
+ "OptionTimeline": "L\u00ednia temporal",
"OptionThumb": "Miniatura",
"OptionThumbCard": "Tarja miniatura",
"OptionBanner": "Banner",
@@ -266,16 +263,16 @@
"OptionPremiereDate": "Premiere Date",
"TabBasic": "B\u00e0sic",
"TabAdvanced": "Avan\u00e7at",
- "OptionContinuing": "Continuing",
- "OptionEnded": "Ended",
+ "OptionContinuing": "Continuant",
+ "OptionEnded": "Acabades",
"HeaderAirDays": "Dies d'Emissi\u00f3",
- "OptionSunday": "Sunday",
- "OptionMonday": "Monday",
- "OptionTuesday": "Tuesday",
- "OptionWednesday": "Wednesday",
- "OptionThursday": "Thursday",
- "OptionFriday": "Friday",
- "OptionSaturday": "Saturday",
+ "OptionSunday": "Diumenge",
+ "OptionMonday": "Dilluns",
+ "OptionTuesday": "Dimarts",
+ "OptionWednesday": "Dimecres",
+ "OptionThursday": "Dijous",
+ "OptionFriday": "Divendres",
+ "OptionSaturday": "Dissabte",
"HeaderManagement": "Gesti\u00f3",
"LabelManagement": "Gesti\u00f3:",
"OptionMissingImdbId": "Sense id d'IMDb",
@@ -318,8 +315,8 @@
"OptionMissingTmdbId": "Sense id de Tmdb",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
- "OptionMetascore": "Metascore",
- "ButtonSelect": "Select",
+ "OptionMetascore": "Metapuntuaci\u00f3",
+ "ButtonSelect": "Selecciona",
"ButtonGroupVersions": "Agrupar Versions",
"ButtonAddToCollection": "Afegir a Col\u00b7lecci\u00f3",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
@@ -328,7 +325,7 @@
"PleaseSupportOtherProduces": "Si et plau, suporta altres productes gratu\u00efts que emprem:",
"VersionNumber": "Versi\u00f3 {0}",
"TabPaths": "Directoris",
- "TabServer": "Server",
+ "TabServer": "Servidor",
"TabTranscoding": "Transcodificaci\u00f3",
"TitleAdvanced": "Avan\u00e7at",
"OptionRelease": "Versi\u00f3 Oficial",
@@ -400,8 +397,8 @@
"TabStatus": "Estat",
"TabSettings": "Prefer\u00e8ncies",
"ButtonRefreshGuideData": "Refresca les Dades de la Guia",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
+ "ButtonRefresh": "Refresca",
+ "ButtonAdvancedRefresh": "Refresc Avan\u00e7at",
"OptionPriority": "Prioritat",
"OptionRecordOnAllChannels": "Enregistra a tots els canals",
"OptionRecordAnytime": "Enregistra en qualsevol moment",
@@ -410,12 +407,12 @@
"HeaderDays": "Dies",
"HeaderActiveRecordings": "Enregistraments Actius",
"HeaderLatestRecordings": "Darrers Enregistraments",
- "HeaderAllRecordings": "All Recordings",
+ "HeaderAllRecordings": "Totes les Gravacions",
"ButtonPlay": "Reprodueix",
- "ButtonEdit": "Edit",
- "ButtonRecord": "Record",
+ "ButtonEdit": "Edita",
+ "ButtonRecord": "Grava",
"ButtonDelete": "Esborra",
- "ButtonRemove": "Remove",
+ "ButtonRemove": "Elimina",
"OptionRecordSeries": "Enregistra S\u00e8ries",
"HeaderDetails": "Detalls",
"TitleLiveTV": "TV en Directe",
@@ -627,7 +624,7 @@
"ButtonRestartNow": "Reinicia ara",
"ButtonRestart": "Reinicia",
"ButtonShutdown": "Atura",
- "ButtonUpdateNow": "Update Now",
+ "ButtonUpdateNow": "Actualitza Ara",
"TabHosting": "Hosting",
"PleaseUpdateManually": "Si et plau, apaga el servidor i actualitza manualment.",
"NewServerVersionAvailable": "Hi ha una nova versi\u00f3 del Servidor Emby disponible!",
@@ -649,7 +646,7 @@
"ButtonRetrieveKey": "Recupera Clau",
"LabelSupporterKey": "Clau d'Emby Premiere (enganxa des de l'email):",
"LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
- "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
+ "MessageInvalidKey": "La clau d'Emby Premiere no hi \u00e9s o \u00e9s inv\u00e0lida.",
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
"HeaderDisplaySettings": "Prefer\u00e8ncies de Visualitzaci\u00f3",
"TabPlayTo": "Reprodueix A",
@@ -708,8 +705,8 @@
"ButtonBack": "Darrera",
"ButtonInfo": "Info",
"ButtonOsd": "On screen display",
- "ButtonPageUp": "Page Up",
- "ButtonPageDown": "Page Down",
+ "ButtonPageUp": "P\u00e0gina Amunt",
+ "ButtonPageDown": "P\u00e0gina Avall",
"PageAbbreviation": "PG",
"ButtonHome": "Inici",
"ButtonSearch": "Cercar",
@@ -720,14 +717,14 @@
"PageButtonAbbreviation": "PG",
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Reprodu\u00efnt",
- "TabNavigation": "Navigation",
+ "TabNavigation": "Navegaci\u00f3",
"TabControls": "Controls",
"ButtonScenes": "Escenes",
"ButtonSubtitles": "Subt\u00edtols",
"ButtonPreviousTrack": "Pista anterior",
"ButtonNextTrack": "Pista seg\u00fcent",
- "ButtonStop": "Stop",
- "ButtonPause": "Pause",
+ "ButtonStop": "Atura",
+ "ButtonPause": "Pausa",
"ButtonNext": "Seg\u00fcent",
"ButtonPrevious": "Anterior",
"LabelGroupMoviesIntoCollections": "Agrupa pel\u00b7l\u00edcules a col\u00b7leccions",
@@ -1558,7 +1555,7 @@
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
"HeaderIdentifyItem": "Identify Item",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
- "LabelFromHelp": "Example: {0} (on the server)",
+ "LabelFromHelp": "Exemple: {0} (al servidor)",
"HeaderMyMedia": "Els Meus Multim\u00e8dia",
"ButtonRemoveFromCollection": "Remove from Collection",
"LabelAutomaticUpdateLevel": "Automatic update level:",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/cs.json b/dashboard-ui/strings/cs.json
index d66d817a6d..a97cef990d 100644
--- a/dashboard-ui/strings/cs.json
+++ b/dashboard-ui/strings/cs.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Zav\u0159\u00edt",
"LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/da.json b/dashboard-ui/strings/da.json
index ba11a8213b..d73a307fc2 100644
--- a/dashboard-ui/strings/da.json
+++ b/dashboard-ui/strings/da.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Afslut",
"LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/de.json b/dashboard-ui/strings/de.json
index 127dc14f41..14aeaa4c73 100644
--- a/dashboard-ui/strings/de.json
+++ b/dashboard-ui/strings/de.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Erlaube Hardware Transkodierung",
- "AllowHWTranscodingHelp": "Wenn aktiviert, erlaube dem tuner eine Transkodierung des Streams in Echtzeit vorzunehmen. Dadurch wird die Transkodierung des Emby Servers reduziert.",
- "OptionRequirePerfectSubtitleMatch": "Lade nur Untertitel die perfekt zu meinen Videos passen",
"LabelExit": "Beenden",
"LabelVisitCommunity": "Besuche die Community",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "Ich besitze Emby Premiere",
"IPurchasedThisApp": "Ich habe diese App gekauft",
"DrmChannelsNotImported": "Verschl\u00fcsselte Kan\u00e4le werden nicht importiert.",
- "ConfigureDateAdded": "Bestimmen Sie in den Bibliotheks-Einstellungen des Emby Server Dashboards, wie das Feld \"Hinzugef\u00fcgt am\" interpretiert werden soll."
+ "ConfigureDateAdded": "Bestimmen Sie in den Bibliotheks-Einstellungen des Emby Server Dashboards, wie das Feld \"Hinzugef\u00fcgt am\" interpretiert werden soll.",
+ "LabelAllowHWTranscoding": "Erlaube Hardware Transkodierung",
+ "AllowHWTranscodingHelp": "Wenn aktiviert, erlaube dem tuner eine Transkodierung des Streams in Echtzeit vorzunehmen. Dadurch wird die Transkodierung des Emby Servers reduziert.",
+ "OptionRequirePerfectSubtitleMatch": "Lade nur Untertitel die perfekt zu meinen Videos passen"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/el.json b/dashboard-ui/strings/el.json
index e9fd1e6f2b..8fbbea5434 100644
--- a/dashboard-ui/strings/el.json
+++ b/dashboard-ui/strings/el.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
"LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/en-GB.json b/dashboard-ui/strings/en-GB.json
index dffbc4742b..0fd89631e5 100644
--- a/dashboard-ui/strings/en-GB.json
+++ b/dashboard-ui/strings/en-GB.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Exit",
"LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/en-US.json b/dashboard-ui/strings/en-US.json
index 55b2cf84a9..b5d5bf80ec 100644
--- a/dashboard-ui/strings/en-US.json
+++ b/dashboard-ui/strings/en-US.json
@@ -1583,10 +1583,9 @@
"LabelMovie": "Movie",
"LabelMusicVideo": "Music Video",
"LabelEpisode": "Episode",
- "LabelSeries": "Series",
+ "Series": "Series",
"LabelStopping": "Stopping",
- "LabelCancelled": "(cancelled)",
- "LabelFailed": "(failed)",
+ "LabelCancelled": "Cancelled",
"ButtonDownload": "Download",
"SyncJobStatusQueued": "Queued",
"SyncJobStatusConverting": "Converting",
@@ -2332,5 +2331,8 @@
"ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
"LabelAllowHWTranscoding": "Allow hardware transcoding",
"AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
+ "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
+ "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.",
+ "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address."
}
diff --git a/dashboard-ui/strings/es-AR.json b/dashboard-ui/strings/es-AR.json
index 6bc85cbe96..57d0984050 100644
--- a/dashboard-ui/strings/es-AR.json
+++ b/dashboard-ui/strings/es-AR.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Salir",
"LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/es-MX.json b/dashboard-ui/strings/es-MX.json
index 40ca1bc46e..c5ad007aef 100644
--- a/dashboard-ui/strings/es-MX.json
+++ b/dashboard-ui/strings/es-MX.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Salir",
"LabelVisitCommunity": "Visitar la Comunidad",
"LabelGithub": "Github",
@@ -2188,7 +2185,7 @@
"HeaderUnlockSync": "Desbloquear Emby Sinc",
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.",
"MessageUnlockAppWithSupporter": "Desbloquee esta caracter\u00edstica con una suscripci\u00f3n activa de Emby Premier.",
- "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere.",
+ "MessageToValidateSupporter": "Si tiene una cuenta de Emby Premiere activa, aseg\u00farese de configurar Emby Premiere en el Panel de Control bajo Ayuda-> Emby Premiere.",
"MessagePaymentServicesUnavailable": "Los servicios de pago no se encuentran disponibles actualmente. Por favor intente de nuevo mas tarde.",
"MessagePleaseSignInLocalNetwork": "Antes de continuar, por favor aseg\u00farese de que esta conectado a su red local usando una conexi\u00f3n Wifi o LAN.",
"ButtonUnlockWithPurchase": "Desbloquear con una compra",
@@ -2260,7 +2257,7 @@
"ButtonRestorePreviousPurchase": "Restaurar Compra",
"AlreadyPaid": "\u00bfYa esta pagado?",
"AlreadyPaidHelp1": "Si ya ha pagado para instalar una versi\u00f3n antigua de Media Browser para Android, no necesita pagar de nuevo para activar esta app. De clic en OK para enviarnos un correo electr\u00f3nico a {0} y nosotros la activaremos por usted.",
- "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.",
+ "AlreadyPaidHelp2": "\u00bfYa cuenta con Emby Premiere? Solo cancele este cuadro de dialogo, configure Emby Premiere en su servidor Emby bajo Ayuda-> Emby Premiere, y se desbloqueara autom\u00e1ticamente.",
"ButtonForYou": "Para T\u00ed",
"ButtonLibrary": "Biblioteca",
"ButtonNowPlaying": "Reproduci\u00e9ndo Ahora",
@@ -2311,7 +2308,7 @@
"CoverArt": "Cover Art",
"ButtonOff": "Apagar",
"TitleHardwareAcceleration": "Aceleraci\u00f3n por Hardware",
- "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
+ "HardwareAccelerationWarning": "Habilitar la aceleraci\u00f3n por hardware podr\u00eda causar inestabilidad en algunos entornos, Aseg\u00farese de que su sistema operativo y controladores de video est\u00e1n actualizados. Si tiene dificultades reproduciendo vides despu\u00e9s de habilitar esto, necesita cambiar las configuraciones de nuevo a Auto,",
"HeaderSelectCodecIntrosPath": "Seleccionar Trayectoria de Intros de C\u00f3dec",
"ButtonLocalRefresh": "Actualizaci\u00f3n local",
"ButtonAddMissingData": "S\u00f3lo agregar datos faltantes",
@@ -2326,9 +2323,12 @@
"LabelOptionalM3uUrl": "url M3U (opcional):",
"LabelOptionalM3uUrlHelp": "Algunos dispositivos soportan un listado de canales M3U.",
"TabResumeSettings": "Configuraci\u00f3n para Continuar",
- "HowDidYouPay": "How did you pay?",
- "IHaveEmbyPremiere": "I have Emby Premiere",
- "IPurchasedThisApp": "I purchased this app",
- "DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "HowDidYouPay": "\u00bfCual sera su forma de pago?",
+ "IHaveEmbyPremiere": "Ya cuento con Emby Premiere",
+ "IPurchasedThisApp": "Ya he comprado esta app",
+ "DrmChannelsNotImported": "Los canales con DRM no ser\u00e1n importados.",
+ "ConfigureDateAdded": "Configure como la fecha de adici\u00f3n es determinada en el Panel de Control del Servidor Emby bajo la configuraci\u00f3n de Librerias",
+ "LabelAllowHWTranscoding": "Permitir transcodificacion de hardware",
+ "AllowHWTranscodingHelp": "Si se habilita, permite a la sintonizadora transcodificar transmisiones al vuelo. Esto podr\u00eda ayudar a reducir la transcodificacion requer\u00eda por el Servidor Emby.",
+ "OptionRequirePerfectSubtitleMatch": "Solo descargar subtitulos que corresponden perfectamente para mis archivos de video."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/es.json b/dashboard-ui/strings/es.json
index 11ab1f5496..daa07885f7 100644
--- a/dashboard-ui/strings/es.json
+++ b/dashboard-ui/strings/es.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Salir",
"LabelVisitCommunity": "Visitar la comunidad",
"LabelGithub": "Github",
@@ -18,18 +15,18 @@
"LabelFinish": "Terminar",
"LabelNext": "Siguiente",
"LabelYoureDone": "Ha Terminado!",
- "WelcomeToProject": "Bienvenidos a Emby!",
+ "WelcomeToProject": "\u00a1Bienvenido a Emby!",
"ThisWizardWillGuideYou": "Este asistente lo guiar\u00e1 en el proceso de instalaci\u00f3n. Para comenzar, seleccione su idioma preferido.",
"TellUsAboutYourself": "D\u00edganos acerca de usted",
"ButtonQuickStartGuide": "Gu\u00eda de inicio r\u00e1pido",
"LabelYourFirstName": "Su nombre:",
- "MoreUsersCanBeAddedLater": "M\u00e1s usuarios pueden agregarse m\u00e1s tarde en el panel de control.",
+ "MoreUsersCanBeAddedLater": "Se pueden agregar m\u00e1s usuarios desde el panel de control despu\u00e9s.",
"UserProfilesIntro": "Emby incluye soporte interno para perfiles de usuarios, permitiendo que cada usuario tenga sus propios ajustes, estado de reproducci\u00f3n y control parental.",
"LabelWindowsService": "Servicio de Windows",
"AWindowsServiceHasBeenInstalled": "Un servicio de Windows se ha instalado",
"WindowsServiceIntro1": "El Servidor Emby normalmente se inicia como una aplicacion con un icono en la bandeja, pero si usted prefiere que inicie como un servicio de fondo, entonces puede ser iniciado desde los servicios de Windows en el panel de control.",
- "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. When running as a service, you will need to ensure that the service account has access to your media folders.",
- "WizardCompleted": "Eso es todo lo que necesitamos por ahora. Emby a iniciado la colecci\u00f3n de su biblioteca digital. Vea algunos de nuestras aplicaciones, y despu\u00e9s haga clic
Finalizar<\/b>para ver el Panel de Servidor<\/b>.",
+ "WindowsServiceIntro2": "Si est\u00e1 utilizando el servicio de windows, no puede ejecutar a la vez el icono en la bandeja, tiene que finalizarlo para poder activar el servicio. El servicio tiene que configurarse con privilegios de administrador en el panel de control. Cuando ejecute el servicio, tiene que asegurarse que la cuenta desde la que se ejecuta el servicio tiene acceso a las carpetas de los medios.",
+ "WizardCompleted": "Eso es todo lo que necesitamos por ahora. Emby a empezado a recolectar informaci\u00f3n de su biblioteca. Echale un vistazo a nuestras aplicaciones, y despu\u00e9s presione 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.",
@@ -43,9 +40,9 @@
"ButtonPrivacyPolicy": "Politica de privacidad",
"ButtonTermsOfService": "Terminos de servicios",
"HeaderDeveloperOptions": "Recursos del Desarrollador",
- "OptionEnableWebClientResponseCache": "Enable web response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web resource minification",
+ "OptionEnableWebClientResponseCache": "Activar el cach\u00e9 de la respuesta web.",
+ "OptionDisableForDevelopmentHelp": "Configurarlos como necesarios para el desarrollo web.",
+ "OptionEnableWebClientResourceMinification": "Activar la minimizaci\u00f3n de los recursos web",
"LabelDashboardSourcePath": "Localizaci\u00f3n de la fuente del cliente web:",
"LabelDashboardSourcePathHelp": "Si est\u00e1 ejecutando el servidor desde la fuente, especifique la ruta de acceso a la carpeta dashboard-ui. Todos los archivos del cliente web ser\u00e1n atendidos desde esta ruta.",
"ButtonConvertMedia": "Convertir medios",
@@ -139,11 +136,11 @@
"LabelAudioLanguagePreference": "Preferencia de idioma de audio",
"LabelSubtitleLanguagePreference": "Preferencia de idioma de subtitulos",
"OptionDefaultSubtitles": "Por defecto",
- "OptionSmartSubtitles": "Smart",
- "OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionSmartSubtitles": "Listo",
+ "OptionSmartSubtitlesHelp": "Los subt\u00edtulos que coincidan con el idioma preferido se activar\u00e1n cuando el audio este en otro idioma.",
"OptionOnlyForcedSubtitles": "S\u00f3lo subt\u00edtulos forzados",
"OptionAlwaysPlaySubtitles": "Mostrar siempre subt\u00edtulos",
- "OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
+ "OptionDefaultSubtitlesHelp": "Los subt\u00edtulos se activan en funci\u00f3n de los ajustes por defecto y etiquetas en los metadatos integrados. Los ajustes de idioma se tienen en cuenta cuando hay varias opciones disponibles.",
"OptionOnlyForcedSubtitlesHelp": "S\u00f3lo se cargar\u00e1n los subt\u00edtulos marcados como forzados.",
"OptionAlwaysPlaySubtitlesHelp": "Los subt\u00edtulos que concuerden con la preferencia de idioma se cargar\u00e1n independientemente del idioma de audio.",
"OptionNoSubtitlesHelp": "Los subt\u00edtulos no se cargar\u00e1n de forma predeterminada.",
@@ -179,7 +176,7 @@
"TabPeople": "Gente",
"TabNetworks": "redes",
"HeaderUsers": "Usuarios",
- "HeaderFilters": "Filters",
+ "HeaderFilters": "Filtros",
"ButtonFilter": "Filtro",
"OptionFavorite": "Favoritos",
"OptionLikes": "Me gusta",
@@ -286,8 +283,8 @@
"TitleSupport": "Soporte",
"TabLog": "Log",
"TabAbout": "Acerca de",
- "TabSupporterKey": "Emby Premiere Key",
- "TabBecomeSupporter": "Get Emby Premiere",
+ "TabSupporterKey": "Clave de Emby Premiere",
+ "TabBecomeSupporter": "Consigue Emby Premiere",
"TabEmbyPremiere": "Emby Premiere",
"ProjectHasCommunity": "Emby tiene una pr\u00f3spera comunidad de usuarios y contribuidores.",
"CheckoutKnowledgeBase": "Vea nuestra base de conocimientos que le ayudar\u00e1 a obtener lo mejor de Emby.",
@@ -342,13 +339,13 @@
"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": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
+ "LabelCachePathHelp": "Especifica una ruta para los archivos del cach\u00e9 del servidor, como las im\u00e1genes. Vac\u00edo para usar la ruta por defecto.",
+ "LabelRecordingPath": "Ruta de grabaci\u00f3n:",
+ "LabelRecordingPathHelp": "Especifica una ruta para almacenar las grabaciones. Vac\u00edo para usar la ruta por defecto.",
"LabelImagesByNamePath": "Ruta de im\u00e1genes:",
"LabelImagesByNamePathHelp": "Especifique una localizaci\u00f3n personalizada para bajar imagenes de actor, genero y estudio.",
"LabelMetadataPath": "Ruta de Metadata:",
- "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
+ "LabelMetadataPathHelp": "Especifica una ruta para los p\u00f3steres y metadatos.",
"LabelTranscodingTempPath": "Ruta temporal de transcodificaci\u00f3n:",
"LabelTranscodingTempPathHelp": "Esta carpeta contiene achivos en uso por el transcodificador. Especificar una ruta personalizada, o dejarla vac\u00eda para usar la ruta predeterminada en la carpeta de datos del servidor.",
"TabBasics": "Basicos",
@@ -364,19 +361,19 @@
"LabelAutomaticUpdates": "Habilite actualizaciones automaticas",
"LabelAutomaticUpdatesTmdb": "Activar actualizaciones autom\u00e1ticas desde TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Activar actualizaciones autom\u00e1ticas desde TheTVDB.com",
- "LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
+ "LabelAutomaticUpdatesFanartHelp": "Si est\u00e1 activado, las nuevas im\u00e1genes ser\u00e1n descargadas seg\u00fan se a\u00f1adan en fanart.tv. Las im\u00e1genes existentes no se reemplazar\u00e1n. Esto har\u00e1 que el escaneo de la biblioteca tarde mas y aumente la actividad del disco duro.",
+ "LabelAutomaticUpdatesTmdbHelp": "Si est\u00e1 activado, las nuevas im\u00e1genes ser\u00e1n descargadas seg\u00fan se a\u00f1adan en TheMovieDB.org. Las im\u00e1genes existentes no se reemplazar\u00e1n. Esto har\u00e1 que el escaneo de la biblioteca tarde mas y aumente la actividad del disco duro.",
+ "LabelAutomaticUpdatesTvdbHelp": "Si est\u00e1 activado, las nuevas im\u00e1genes ser\u00e1n descargadas seg\u00fan se a\u00f1adan en TheTVDB.com. Las im\u00e1genes existentes no se reemplazar\u00e1n. Esto har\u00e1 que el escaneo de la biblioteca tarde mas y aumente la actividad del disco duro.",
"LabelFanartApiKey": "Clave personal de API:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
- "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 when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
+ "LabelFanartApiKeyHelp": "Las peticiones a fanart sin clave API personal dar\u00e1n resultados que fueron aprobados hace 7 d\u00edas. Con una clave API personal se reduce a 48 horas, y si eres un miembro VIP de fanart se reduce a 10 minutos aproximadamente.",
+ "ExtractChapterImagesHelp": "Extraer im\u00e1genes de los cap\u00edtulos permite a los clientes ver men\u00fas gr\u00e1ficos de elecci\u00f3n de escena. El proceso puede ser lento, hacer uso intenso del cpu y requerir gigabytes de espacio adicional. Se ejecuta cuando se detectan los v\u00eddeos y en las tareas nocturnas programadas. El horario se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea en las horas puntas de uso.",
"LabelMetadataDownloadLanguage": "Idioma preferido visualizado",
"ButtonAutoScroll": "Auto-desplazamiento",
"LabelImageSavingConvention": "Sistema de guardado de im\u00e1genes:",
"LabelImageSavingConventionHelp": "Emby reconoce im\u00e1genes de la mayor\u00eda de las principales aplicaciones de medios. Seleccionar su convenci\u00f3n de descarga es \u00fatil si tambi\u00e9n usa otros productos.",
- "ButtonSignIn": "Registrarse",
- "TitleSignIn": "Registrarse",
- "HeaderPleaseSignIn": "Por favor reg\u00edstrese",
+ "ButtonSignIn": "Iniciar sesi\u00f3n",
+ "TitleSignIn": "Iniciar sesi\u00f3n",
+ "HeaderPleaseSignIn": "Por favor inicie sesi\u00f3n",
"LabelUser": "Usuario:",
"LabelPassword": "Contrase\u00f1a:",
"ButtonManualLogin": "Acceder manualmente",
@@ -468,7 +465,7 @@
"LabelEnableRealtimeMonitor": "Activar monitoreo en tiempo real",
"LabelEnableRealtimeMonitorHelp": "Los cambios se procesar\u00e1n inmediatamente, en sistemas de archivo que lo soporten.",
"ButtonScanLibrary": "Escanear Librer\u00eda",
- "HeaderNumberOfPlayers": "Players",
+ "HeaderNumberOfPlayers": "Reproductores",
"OptionAnyNumberOfPlayers": "Cualquiera",
"Option1Player": "1+",
"Option2Player": "2+",
@@ -493,7 +490,7 @@
"HeaderTo": "Hasta",
"LabelFrom": "Desde:",
"LabelTo": "Hasta:",
- "LabelToHelp": "Example: \\\\MyServer\\Movies (a path clients can access)",
+ "LabelToHelp": "Ejemplo:\\\\MiServidor\\Peliculas (ruta a la que el cliente pueda acceder)",
"ButtonAddPathSubstitution": "A\u00f1adir ruta alternativa",
"OptionSpecialEpisode": "Especiales",
"OptionMissingEpisode": "Episodios que faltan",
@@ -535,8 +532,8 @@
"LabelFriendlyServerName": "Nombre informal del servidor:",
"LabelFriendlyServerNameHelp": "Este nombre se podr\u00e1 utilizar para identificar este servidor. Si se deja en blanco se usar\u00e1 el nombre del ordenador.",
"LabelPreferredDisplayLanguage": "Idioma preferido visualizado",
- "LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
- "LabelReadHowYouCanContribute": "Learn how you can contribute.",
+ "LabelPreferredDisplayLanguageHelp": "La traducci\u00f3n de Emby es un proyecto en marcha.",
+ "LabelReadHowYouCanContribute": "Aprenda c\u00f3mo contribuir.",
"HeaderNewCollection": "Nueva colecci\u00f3n",
"ButtonSubmit": "Enviar",
"ButtonCreate": "Crear",
@@ -568,8 +565,8 @@
"LabelMinResumeDurationHelp": "Los t\u00edtulos m\u00e1s cortos de esto no ser\u00e1n reanudables",
"TitleAutoOrganize": "Organizaci\u00f3n autom\u00e1tica",
"TabActivityLog": "Log de actividad",
- "TabSmartMatches": "Smart Matches",
- "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog",
+ "TabSmartMatches": "Emparejamientos inteligentes.",
+ "TabSmartMatchInfo": "Gestione sus emparejamientos inteligentes que se a\u00f1adieron usando el corrector del Organizador Autom\u00e1tico",
"HeaderName": "Nombre",
"HeaderDate": "Fecha",
"HeaderSource": "Origen",
@@ -582,16 +579,16 @@
"LabelSkipped": "Omitido",
"HeaderEpisodeOrganization": "Organizaci\u00f3n de episodios",
"LabelSeries": "Series:",
- "LabelSeasonNumber": "Season number",
- "LabelEpisodeNumber": "Episode number",
+ "LabelSeasonNumber": "Temporada",
+ "LabelEpisodeNumber": "Episodio",
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
- "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
+ "OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n para futuros archivos con el mismo nombre",
"HeaderSupportTheTeam": "Apoye al equipo de Emby",
"LabelSupportAmount": "Importe (USD)",
- "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
- "ButtonEnterSupporterKey": "Enter Emby Premiere key",
- "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
+ "HeaderSupportTheTeamHelp": "Ayuda a asegurar el continuo desarrollo de este proyecto mediante la compra de Emby Premiere. Una parte de los ingresos ir\u00e1n destinados a otras herramientas gratuitas de las que dependemos.",
+ "ButtonEnterSupporterKey": "Introduce tu clave de Emby Premiere",
+ "DonationNextStep": "Una vez completado, vuelve e introduce la clave de Emby Premiere que has recibido por correo.",
"AutoOrganizeHelp": "Organizaci\u00f3n autom\u00e1tica monitoriza sus carpetas de descarga en busca de nuevos archivos y los mueve a sus directorios de medios.",
"AutoOrganizeTvHelp": "La organizaci\u00f3n de archivos de TV s\u00f3lo a\u00f1adir\u00e1 episodios a series existentes. No crear\u00e1 carpetas para series nuevas.",
"OptionEnableEpisodeOrganization": "Activar la organizaci\u00f3n de nuevos episodios",
@@ -634,23 +631,23 @@
"ServerUpToDate": "El Servidor Emby est\u00e1 actualizado",
"LabelComponentsUpdated": "Los componentes siguientes se han instalado o actualizado:",
"MessagePleaseRestartServerToFinishUpdating": "Reinicie el servidor para acabar de aplicar las actualizaciones.",
- "LabelDownMixAudioScale": "Audio boost when downmixing:",
+ "LabelDownMixAudioScale": "Audio boost (potenciador de sonido) en downmixing:",
"LabelDownMixAudioScaleHelp": "Potenciador de audio. Establecer a 1 para preservar el volumen original.",
"ButtonLinkKeys": "Transferir Clave",
- "LabelOldSupporterKey": "Old Emby Premiere key",
- "LabelNewSupporterKey": "New Emby Premiere key",
+ "LabelOldSupporterKey": "Antigua clave de Emby Premiere",
+ "LabelNewSupporterKey": "Nueva clave de Emby Premiere",
"HeaderMultipleKeyLinking": "Trasferir a una Clave Nueva",
- "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
+ "MultipleKeyLinkingHelp": "Si has recibido una nueva clave de Emby Premiere, usa este formulario para transferir los registros de las claves antiguas a la nueva.",
"LabelCurrentEmailAddress": "Cuenta de correo actual",
"LabelCurrentEmailAddressHelp": "La direcci\u00f3n de correo electr\u00f3nico actual a la que se envi\u00f3 la nueva clave.",
"HeaderForgotKey": "Perd\u00ed mi clave",
"LabelEmailAddress": "Direcci\u00f3n de correo",
"LabelSupporterEmailAddress": "La direcci\u00f3n de correo que utliz\u00f3 para comprar la clave.",
"ButtonRetrieveKey": "Recuperar clave",
- "LabelSupporterKey": "Emby Premiere key (paste from email):",
- "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
- "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
- "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
+ "LabelSupporterKey": "Clave de Emby Premiere (pegar desde el correo):",
+ "LabelSupporterKeyHelp": "Introduce tu clave de Emby Premiere para empezar a disfrutar de los beneficios que la comunidad ha desarrollado para Emby.",
+ "MessageInvalidKey": "La clave de Emby Premiere falta o no es v\u00e1lida.",
+ "ErrorMessageInvalidKey": "Para que se registre cualquier contenido premium, tienes que tener una suscripci\u00f3n activa a Emby Premiere.",
"HeaderDisplaySettings": "Opciones de pantalla",
"TabPlayTo": "Reproducir en",
"LabelEnableDlnaServer": "Habilitar servidor Dlna",
@@ -668,7 +665,7 @@
"HeaderRequireManualLoginHelp": "Cuando est\u00e1 desactivado los clientes saldr\u00e1n en la pantalla de inicio para seleccionarlos visualmente.",
"OptionOtherApps": "Otras aplicaciones",
"OptionMobileApps": "Aplicaciones m\u00f3viles",
- "HeaderNotificationList": "Click on a notification to configure sending options.",
+ "HeaderNotificationList": "Haz clic en una notificaci\u00f3n para configurar las opciones de env\u00edo. ",
"NotificationOptionApplicationUpdateAvailable": "Disponible actualizaci\u00f3n de la aplicaci\u00f3n",
"NotificationOptionApplicationUpdateInstalled": "Se ha instalado la actualizaci\u00f3n de la aplicaci\u00f3n",
"NotificationOptionPluginUpdateInstalled": "Se ha instalado la actualizaci\u00f3n del plugin",
@@ -686,7 +683,7 @@
"NotificationOptionNewLibraryContentMultiple": "Nuevo contenido a\u00f1adido (multiple)",
"NotificationOptionCameraImageUploaded": "Imagen de camara se a carcado",
"NotificationOptionUserLockedOut": "Usuario bloqueado",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderSendNotificationHelp": "Las notificaciones se env\u00edan la tu bandeja de Emby. Se pueden instalar ajustes adicionales desde la pesta\u00f1a Servicios.",
"NotificationOptionServerRestartRequired": "Se requiere el reinicio del servidor",
"LabelNotificationEnabled": "Activar esta notificaci\u00f3n",
"LabelMonitorUsers": "Supervisar la actividad de:",
@@ -743,8 +740,8 @@
"LabelProfileContainersHelp": "Separados por comas. Esto se puede dejar vac\u00edo para aplicar a todos los contenedores.",
"HeaderResponseProfile": "Perfil de respuesta",
"LabelType": "Tipo:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPersonRole": "Rol:",
+ "LabelPersonRoleHelp": "Los roles son por lo general aplicados s\u00f3lo a los actores. ",
"LabelProfileContainer": "Contenedor:",
"LabelProfileVideoCodecs": "Codecs de video:",
"LabelProfileAudioCodecs": "Codecs de audio:",
@@ -784,18 +781,18 @@
"LabelIconMaxHeight": "Altura m\u00e1xima de icono:",
"LabelIconMaxHeightHelp": "Resoluci\u00f3n m\u00e1xima de los iconos expuestos via upnp:icon.",
"LabelIdentificationFieldHelp": "Una subcadena insensible a may\u00fasculas o min\u00fasculas o una expresi\u00f3n regex.",
- "HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
+ "HeaderProfileServerSettingsHelp": "Estos valores controlan como el servidor Emby se presenta al dispositivo.",
"LabelMaxBitrate": "Bitrate m\u00e1ximo:",
"LabelMaxBitrateHelp": "Especificar una tasa de bits m\u00e1xima en entornos de ancho de banda limitado, o si el dispositivo impone su propio l\u00edmite.",
"LabelMaxStreamingBitrate": "Bitrate m\u00e1ximo:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStreamingBitrateHelp": "Especificar tasa de bits m\u00e1xima en la transmisi\u00f3n.",
"LabelMaxChromecastBitrate": "Bitrate de reproducci\u00f3n Chromecast",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
+ "LabelMaxStaticBitrate": "Tasa de bits m\u00e1xima en la sincronizaci\u00f3n:",
+ "LabelMaxStaticBitrateHelp": "Especificar tasa de bits m\u00e1xima cuando se sincronice contenido en alta calidad.",
+ "LabelMusicStaticBitrate": "Tasa de bits de sincronizaci\u00f3n de la m\u00fasica:",
+ "LabelMusicStaticBitrateHelp": "Especificar tasa de bits cuando se sincronice m\u00fasica",
+ "LabelMusicStreamingTranscodingBitrate": "Tasa de bits de transcodificaci\u00f3n de m\u00fasica:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Especificar tasa de bits cuando se transmita m\u00fasica",
"OptionIgnoreTranscodeByteRangeRequests": "Ignorar las solicitudes de intervalo de bytes de transcodificaci\u00f3n",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Si est\u00e1 activado, estas solicitudes ser\u00e1n atendidas pero ignorar\u00e1n el encabezado de intervalo de bytes.",
"LabelFriendlyName": "Nombre amigable",
@@ -829,15 +826,15 @@
"OptionReportByteRangeSeekingWhenTranscoding": "Indicar que el servidor soporta la b\u00fasqueda de byte al transcodificar",
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Esto es necesario para algunos dispositivos que no buscan el tiempo muy bien.",
"HeaderDownloadSubtitlesFor": "Descarga subt\u00edtulos para:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
+ "MessageNoChapterProviders": "Instalar un proveedor de cap\u00edtulos como ChapterDb para activar ajustes adicionales de cap\u00edtulos.",
+ "LabelSkipIfGraphicalSubsPresent": "Saltar si el v\u00eddeo tiene subt\u00edtulos integrados",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Mantener versiones de texto de subt\u00edtulos dar\u00e1 lugar a una entrega m\u00e1s eficiente y a disminuir la probabilidad de transcodificaci\u00f3n de v\u00eddeo.",
"TabSubtitles": "Subt\u00edtulos",
"TabChapters": "Cap\u00edtulos",
"HeaderDownloadChaptersFor": "Descarga nombres de los cap\u00edtulos de:",
"LabelOpenSubtitlesUsername": "Usuario de Open Subtitles:",
"LabelOpenSubtitlesPassword": "Contrase\u00f1a de Open Subtitles:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
+ "HeaderChapterDownloadingHelp": "Cuando Emby escanea los archivos de v\u00eddeo se puede descargar los nombres de los cap\u00edtulos desde Internet utilizando plugins como ChapterDb.",
"LabelPlayDefaultAudioTrack": "\nReproducir pista de audio predeterminado, independientemente del idioma",
"LabelSubtitlePlaybackMode": "Modo de Subt\u00edtulo:",
"LabelDownloadLanguages": "Idiomas de descarga:",
@@ -852,22 +849,22 @@
"LabelDisplayPluginsFor": "Mostrar plugins para:",
"PluginTabAppClassic": "Emby Classic",
"PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
+ "LabelEpisodeNamePlain": "Nombre del episodio",
+ "LabelSeriesNamePlain": "Nombre de la serie",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "LabelSeasonNumberPlain": "Temporada n\u00famero",
+ "LabelEpisodeNumberPlain": "Episodio n\u00famero",
+ "LabelEndingEpisodeNumberPlain": "N\u00famero del \u00faltimo episodio",
"HeaderTypeText": "Entrar texto",
"LabelTypeText": "Texto",
"HeaderSearchForSubtitles": "B\u00fasqueda de Subt\u00edtulos",
"MessageNoSubtitleSearchResultsFound": "No se han encontrado resultados en la b\u00fasqueda.",
"TabDisplay": "Pantalla",
"TabLanguages": "Idiomas",
- "TabAppSettings": "App Settings",
+ "TabAppSettings": "Ajustes de la App",
"LabelEnableThemeSongs": "Habilitar temas musicales",
"LabelEnableBackdrops": "Habilitar im\u00e1genes de fondo",
"LabelEnableThemeSongsHelp": "Si est\u00e1 habilitado, se reproducir\u00e1n temas musicales de fondo mientras navega por la biblioteca.",
@@ -877,15 +874,15 @@
"OptionAuto": "Auto",
"OptionYes": "Si",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
- "LabelHomePageSection1": "Home page section 1:",
- "LabelHomePageSection2": "Home page section 2:",
- "LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
+ "HeaderOptions": "Opciones",
+ "HeaderIdentificationResult": "Resultado de la identificaci\u00f3n",
+ "LabelHomePageSection1": "P\u00e1gina de inicio secci\u00f3n 1:",
+ "LabelHomePageSection2": "P\u00e1gina de inicio secci\u00f3n 2:",
+ "LabelHomePageSection3": "P\u00e1gina de inicio secci\u00f3n 3:",
+ "LabelHomePageSection4": "P\u00e1gina de inicio secci\u00f3n 4:",
+ "OptionMyMediaButtons": "Mis contenidos (botones)",
+ "OptionMyMedia": "Mis contenidos",
+ "OptionMyMediaSmall": "Mis contenidos (peque\u00f1o)",
"OptionResumablemedia": "Continuar",
"OptionLatestMedia": "\u00daltimos medios",
"OptionLatestChannelMedia": "Ultimos elementos de canales",
@@ -894,22 +891,22 @@
"HeaderLiveTv": "TV en vivo",
"HeaderReports": "Informes",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
+ "HeaderSettings": "Ajustes",
"MessageLoadingChannels": "Cargando contenidos del canal...",
- "MessageLoadingContent": "Loading content...",
+ "MessageLoadingContent": "Cargando contenido...",
"ButtonMarkRead": "Marcar como le\u00eddo",
"OptionDefaultSort": "Por defecto",
"OptionCommunityMostWatchedSort": "M\u00e1s visto",
"TabNextUp": "Siguiendo",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Get Emby Premiere",
+ "PlaceholderUsername": "Usuario",
+ "HeaderBecomeProjectSupporter": "Conseguir Emby Premiere",
"MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles. Comience ver y calificar sus pel\u00edculas y vuelva para ver las recomendaciones.",
- "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "MessageNoCollectionsAvailable": "Las colecciones le permiten disfrutar de agrupaciones personalizadas de pel\u00edculas, series, \u00e1lbumes, libros y juegos. Haga clic en el bot\u00f3n + para empezar a crear colecciones.",
+ "MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenido para jugar consecutivamente a la vez. Para a\u00f1adir elementos a las listas de reproducci\u00f3n, haga clic o toque y mantenga, a continuaci\u00f3n, seleccione Agregar a la lista de reproducci\u00f3n.",
+ "MessageNoPlaylistItemsAvailable": "La lista de reproducci\u00f3n est\u00e1 vac\u00eda.",
"ButtonDismiss": "Descartar",
- "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
- "LabelChannelStreamQuality": "Preferred internet channel quality:",
+ "ButtonEditOtherUserPreferences": "Editar este perfil, la imagen y los ajustes personales.",
+ "LabelChannelStreamQuality": "Calidad del canal online preferida:",
"LabelChannelStreamQualityHelp": "En un entorno de bajo ancho de banda, limitar la calidad puede ayudar a asegurar una experiencia de streaming suave.",
"OptionBestAvailableStreamQuality": "Mejor disponible",
"LabelEnableChannelContentDownloadingFor": "Habilitar descargas de contenido para el canal:",
@@ -919,77 +916,77 @@
"LabelChannelDownloadAge": "Borrar contenido despues de: (d\u00edas)",
"LabelChannelDownloadAgeHelp": "Todo contenido descargado anterior se borrar\u00e1. Continuar\u00e1 estando disponible v\u00eda streaming de internet.",
"ChannelSettingsFormHelp": "Instale canales como Trailers y Vimeo desde el cat\u00e1logo de plugins.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonOptions": "Opciones",
+ "ViewTypePlaylists": "Listas de reproducci\u00f3n",
"ViewTypeMovies": "Pel\u00edculas",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Juegos",
"ViewTypeMusic": "M\u00fasica",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
+ "ViewTypeMusicGenres": "G\u00e9neros",
+ "ViewTypeMusicArtists": "Artistas",
"ViewTypeBoxSets": "Colecciones",
"ViewTypeChannels": "Canales",
"ViewTypeLiveTV": "Tv en vivo",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
+ "ViewTypeLiveTvNowPlaying": "Transmiti\u00e9ndose ahora",
+ "ViewTypeLatestGames": "\u00daltimos juegos",
+ "ViewTypeRecentlyPlayedGames": "Reproducido recientemente",
+ "ViewTypeGameFavorites": "Favoritos",
+ "ViewTypeGameSystems": "Sistemas de juego",
+ "ViewTypeGameGenres": "G\u00e9neros",
+ "ViewTypeTvResume": "Reanudar",
+ "ViewTypeTvNextUp": "Pr\u00f3ximamente",
+ "ViewTypeTvLatest": "\u00daltimas",
"ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
+ "ViewTypeTvGenres": "G\u00e9neros",
+ "ViewTypeTvFavoriteSeries": "Series favoritas",
+ "ViewTypeTvFavoriteEpisodes": "Episodios favoritos",
+ "ViewTypeMovieResume": "Reanudar",
+ "ViewTypeMovieLatest": "\u00daltimas",
+ "ViewTypeMovieMovies": "Pel\u00edculas",
+ "ViewTypeMovieCollections": "Colecciones",
+ "ViewTypeMovieFavorites": "Favoritos",
+ "ViewTypeMovieGenres": "G\u00e9neros",
+ "ViewTypeMusicLatest": "\u00daltimas",
+ "ViewTypeMusicPlaylists": "Lista",
+ "ViewTypeMusicAlbums": "\u00c1lbumes",
+ "ViewTypeMusicAlbumArtists": "\u00c1lbumes de artistas",
"HeaderOtherDisplaySettings": "Configuraci\u00f3n de pantalla",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ViewTypeMusicSongs": "Canciones",
+ "ViewTypeMusicFavorites": "Favoritos",
+ "ViewTypeMusicFavoriteAlbums": "\u00c1lbumes favoritos",
+ "ViewTypeMusicFavoriteArtists": "Artistas favoritos",
+ "ViewTypeMusicFavoriteSongs": "Canciones favoritas",
"HeaderMyViews": "Mis vistas",
- "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
- "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "LabelSelectFolderGroups": "Agrupar contenido autom\u00e1ticamente desde las siguientes carpetas en vistas como Pel\u00edculas, M\u00fasica y Series:",
+ "LabelSelectFolderGroupsHelp": "Las carpetas sin seleccionar se mostrar\u00e1n ellas mismas en su propia vista.",
"OptionDisplayAdultContent": "Mostrar contenido para adultos",
- "OptionLibraryFolders": "Media folders",
+ "OptionLibraryFolders": "Carpetas de medios",
"TitleRemoteControl": "Control remoto",
"OptionLatestTvRecordings": "\u00daltimas grabaciones",
"LabelProtocolInfo": "Informaci\u00f3n de protocolo:",
"LabelProtocolInfoHelp": "El valor que se utilizar\u00e1 cuando se responde a una solicitud GetProtocolInfo desde el dispositivo.",
- "TabNfoSettings": "Nfo Settings",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
- "LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "TabNfoSettings": "Ajustes de Nfo",
+ "HeaderKodiMetadataHelp": "Emby incluye soporte nativo para archivos de metadatos Nfo. Para activarlo o desactivarlo, utilice la pesta\u00f1a Avanzadas para configurar los ajustes de su tipo de medio.",
+ "LabelKodiMetadataUser": "Sincronizar los datos de reproducciones del usuario al nfo para:",
+ "LabelKodiMetadataUserHelp": "Active esto para mantener los datos de vistas sincronizados entre el servidor Emby y los archivos Nfo.",
+ "LabelKodiMetadataDateFormat": "Formato de fecha de lanzamiento:",
+ "LabelKodiMetadataDateFormatHelp": "Todas las fechas de los nfo's se leer\u00e1n y escribir\u00e1n usando este formato.",
+ "LabelKodiMetadataSaveImagePaths": "Guardar la ruta de las im\u00e1genes en los archivos nfo",
+ "LabelKodiMetadataSaveImagePathsHelp": "Esto se recomienda si tienes archivos de im\u00e1genes que no se ajustan a las directrices de Kodi.",
+ "LabelKodiMetadataEnablePathSubstitution": "Habilitar rutas de sustituci\u00f3n",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Permite la sustituci\u00f3n de las rutas de im\u00e1genes utilizando la configuraci\u00f3n de rutas de sustituci\u00f3n en las opciones del servidor.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Ver rutas de sustituci\u00f3n.",
+ "OptionDisplayChannelsInline": "Ver la l\u00ednea de los canales con mis vistas",
+ "OptionDisplayChannelsInlineHelp": "Si est\u00e1 activado, los canales se mostrar\u00e1n directamente con otras vistas. Si se desactiva, se mostrar\u00e1n con una vista de los canales separada.",
+ "LabelDisplayCollectionsView": "Muestra la vista de colecci\u00f3n para ver las colecciones de pel\u00edculass",
+ "LabelDisplayCollectionsViewHelp": "Esto crear\u00e1 una vista separada para mostrar las colecciones que has creado y tienes acceso. Para crear una colecci\u00f3n, haz clic derecho o presiona y mant\u00e9n en una pel\u00edcula y selecciona \"A\u00f1adir a la colecci\u00f3n\".",
+ "LabelKodiMetadataEnableExtraThumbs": "Copiar fanart extra en vistas previas extras",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Cuando se descarguen im\u00e1genes pueden ser guardadas tanto en extrafanart como en extrathumbs para maximizar la compatibilidad con los temas de Kodi.",
"TabServices": "Servicios",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Archivos de log del servidor:",
"TabBranding": "Branding",
- "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
+ "HeaderBrandingHelp": "Personalice la apariencia de Emby para que se ajuste a las necesidades de su grupo u organizaci\u00f3n.",
"LabelLoginDisclaimer": "Login renuncia:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"OptionList": "Lista",
@@ -1052,55 +1049,55 @@
"ButtonBrowseImages": "Browse Images",
"HeaderImages": "Images",
"HeaderBackdrops": "Backdrops",
- "HeaderScreenshots": "Screenshots",
- "HeaderAddUpdateImage": "Add\/Update Image",
+ "HeaderScreenshots": "Capturas de pantalla",
+ "HeaderAddUpdateImage": "A\u00f1adir\/Actualizar imagen",
"LabelDropImageHere": "Soltar imagen aqui",
- "LabelJpgPngOnly": "JPG\/PNG only",
- "LabelImageType": "Image type:",
- "OptionPrimary": "Primary",
- "OptionArt": "Art",
- "OptionBox": "Box",
- "OptionBoxRear": "Box rear",
- "OptionDisc": "Disc",
- "OptionIcon": "Icon",
+ "LabelJpgPngOnly": "S\u00f3lo JPG\/PNG",
+ "LabelImageType": "Tipo de imagen:",
+ "OptionPrimary": "Primaria",
+ "OptionArt": "Arte",
+ "OptionBox": "Caja",
+ "OptionBoxRear": "Trasera caja",
+ "OptionDisc": "Disco",
+ "OptionIcon": "Icono",
"OptionLogo": "Logo",
- "OptionMenu": "Menu",
- "OptionScreenshot": "Screenshot",
- "OptionLocked": "Locked",
- "OptionUnidentified": "Unidentified",
- "OptionMissingParentalRating": "Missing parental rating",
+ "OptionMenu": "Men\u00fa",
+ "OptionScreenshot": "Captura de pantalla",
+ "OptionLocked": "Bloqueado",
+ "OptionUnidentified": "Sin identificar",
+ "OptionMissingParentalRating": "Sin clasificaci\u00f3n parental",
"OptionStub": "Stub",
- "OptionSeason0": "Season 0",
- "LabelReport": "Report:",
- "OptionReportSongs": "Songs",
+ "OptionSeason0": "Temporada 0",
+ "LabelReport": "Informe:",
+ "OptionReportSongs": "Canciones",
"OptionReportSeries": "Series",
- "OptionReportSeasons": "Seasons",
+ "OptionReportSeasons": "Temporadas",
"OptionReportTrailers": "Trailers",
- "OptionReportMusicVideos": "Music videos",
- "OptionReportMovies": "Movies",
- "OptionReportHomeVideos": "Home videos",
- "OptionReportGames": "Games",
- "OptionReportEpisodes": "Episodes",
- "OptionReportCollections": "Collections",
- "OptionReportBooks": "Books",
- "OptionReportArtists": "Artists",
- "OptionReportAlbums": "Albums",
- "OptionReportAdultVideos": "Adult videos",
- "ButtonMore": "More",
- "HeaderActivity": "Activity",
- "ScheduledTaskStartedWithName": "{0} started",
- "ScheduledTaskCancelledWithName": "{0} was cancelled",
- "ScheduledTaskCompletedWithName": "{0} completed",
- "ScheduledTaskFailed": "Scheduled task completed",
- "PluginInstalledWithName": "{0} was installed",
- "PluginUpdatedWithName": "{0} was updated",
- "PluginUninstalledWithName": "{0} was uninstalled",
- "ScheduledTaskFailedWithName": "{0} failed",
- "ItemAddedWithName": "{0} was added to the library",
- "ItemRemovedWithName": "{0} was removed from the library",
- "DeviceOnlineWithName": "{0} is connected",
- "UserOnlineFromDevice": "{0} is online from {1}",
- "DeviceOfflineWithName": "{0} has disconnected",
+ "OptionReportMusicVideos": "V\u00eddeos musicales",
+ "OptionReportMovies": "Pel\u00edculas",
+ "OptionReportHomeVideos": "V\u00eddeos caseros",
+ "OptionReportGames": "Juegos",
+ "OptionReportEpisodes": "Episodios",
+ "OptionReportCollections": "Colecciones",
+ "OptionReportBooks": "Libros",
+ "OptionReportArtists": "Artistas",
+ "OptionReportAlbums": "Albumes",
+ "OptionReportAdultVideos": "V\u00eddeos de adultos",
+ "ButtonMore": "M\u00e1s",
+ "HeaderActivity": "Actividad",
+ "ScheduledTaskStartedWithName": "{0} iniciado",
+ "ScheduledTaskCancelledWithName": "{0} ha sido cancelado",
+ "ScheduledTaskCompletedWithName": "{0} completado",
+ "ScheduledTaskFailed": "Tarea programada completada",
+ "PluginInstalledWithName": "{0} ha sido instalado",
+ "PluginUpdatedWithName": "{0} ha sido actualizado",
+ "PluginUninstalledWithName": "{0} ha sido desinstalado",
+ "ScheduledTaskFailedWithName": "{0} fall\u00f3",
+ "ItemAddedWithName": "{0} ha sido a\u00f1adido a la biblioteca",
+ "ItemRemovedWithName": "{0} se ha eliminado de la biblioteca",
+ "DeviceOnlineWithName": "{0} est\u00e1 conectado",
+ "UserOnlineFromDevice": "{0} est\u00e1 conectado desde {1}",
+ "DeviceOfflineWithName": "{0} se ha desconectado",
"UserOfflineFromDevice": "{0} has disconnected from {1}",
"SubtitlesDownloadedForItem": "Subtitles downloaded for {0}",
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
@@ -1153,55 +1150,55 @@
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
- "LabelMetascore": "Metascore:",
- "LabelCriticRating": "Critic rating:",
- "LabelCriticRatingSummary": "Critic rating summary:",
- "LabelAwardSummary": "Award summary:",
- "LabelWebsite": "Website:",
- "LabelTagline": "Tagline:",
- "LabelOverview": "Overview:",
- "LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
- "LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
- "LabelAirDate": "Air days:",
- "LabelAirTime:": "Air time:",
- "LabelRuntimeMinutes": "Run time (minutes):",
- "LabelParentalRating": "Parental rating:",
- "LabelCustomRating": "Custom rating:",
- "LabelBudget": "Budget",
- "LabelRevenue": "Revenue ($):",
- "LabelOriginalAspectRatio": "Original aspect ratio:",
- "LabelPlayers": "Players:",
- "Label3DFormat": "3D format:",
- "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers",
- "HeaderSpecialEpisodeInfo": "Special Episode Info",
- "HeaderExternalIds": "External Id's:",
- "LabelDvdSeasonNumber": "Dvd season number:",
- "LabelDvdEpisodeNumber": "Dvd episode number:",
- "LabelAbsoluteEpisodeNumber": "Absolute episode number:",
- "LabelAirsBeforeSeason": "Airs before season:",
- "LabelAirsAfterSeason": "Airs after season:",
- "LabelAirsBeforeEpisode": "Airs before episode:",
- "LabelTreatImageAs": "Treat image as:",
- "LabelDisplayOrder": "Display order:",
- "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in",
- "HeaderCountries": "Countries",
- "HeaderGenres": "Genres",
- "HeaderPlotKeywords": "Plot Keywords",
- "HeaderStudios": "Studios",
- "HeaderTags": "Tags",
- "HeaderMetadataSettings": "Metadata Settings",
- "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
- "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "HeaderDonationType": "Donation type:",
- "OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionNoTrailer": "No Trailer",
- "OptionNoThemeSong": "No Theme Song",
- "OptionNoThemeVideo": "No Theme Video",
- "LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonPurchase": "Purchase",
+ "LabelMetascore": "Metapuntuaci\u00f3n:",
+ "LabelCriticRating": "Valoraci\u00f3n de la cr\u00edtica:",
+ "LabelCriticRatingSummary": "Resumen de la valoraci\u00f3n de la cr\u00edtica:",
+ "LabelAwardSummary": "Resumen de premios:",
+ "LabelWebsite": "Sitio web:",
+ "LabelTagline": "Lema:",
+ "LabelOverview": "Resumen:",
+ "LabelShortOverview": "Resumen corto:",
+ "LabelReleaseDate": "Fecha de lanzamiento:",
+ "LabelYear": "A\u00f1o:",
+ "LabelPlaceOfBirth": "Lugar de nacimiento:",
+ "LabelEndDate": "Fecha de fin:",
+ "LabelAirDate": "D\u00edas de emisi\u00f3n:",
+ "LabelAirTime:": "Tiempo de emisi\u00f3n:",
+ "LabelRuntimeMinutes": "Tiempo e ejecuci\u00f3n (minutos):",
+ "LabelParentalRating": "Clasificaci\u00f3n parental:",
+ "LabelCustomRating": "Valoraci\u00f3n pesonalizada:",
+ "LabelBudget": "Prespuesto",
+ "LabelRevenue": "ingresos ($):",
+ "LabelOriginalAspectRatio": "Relaci\u00f3n de aspecto original:",
+ "LabelPlayers": "Jugadores:",
+ "Label3DFormat": "Formato 3D:",
+ "HeaderAlternateEpisodeNumbers": "Alternar el n\u00famero de episodios",
+ "HeaderSpecialEpisodeInfo": "Informaci\u00f3n del episodio especial",
+ "HeaderExternalIds": "Id's externas:",
+ "LabelDvdSeasonNumber": "Temporada DVD n\u00famero:",
+ "LabelDvdEpisodeNumber": "Episodio DVD n\u00famero:",
+ "LabelAbsoluteEpisodeNumber": "N\u00famero absoluto de episodio:",
+ "LabelAirsBeforeSeason": "Se emite antes de la temporada:",
+ "LabelAirsAfterSeason": "Se emite despu\u00e9s de la temporada:",
+ "LabelAirsBeforeEpisode": "Se emite antes del episodio:",
+ "LabelTreatImageAs": "Tratar imagen como:",
+ "LabelDisplayOrder": "Mostrar orden:",
+ "LabelDisplaySpecialsWithinSeasons": "Mostrar episodios especiales con las temporadas que han sido emitidos",
+ "HeaderCountries": "Paises",
+ "HeaderGenres": "G\u00e9neros",
+ "HeaderPlotKeywords": "Palabras clave del reparto",
+ "HeaderStudios": "Estudios",
+ "HeaderTags": "Etiquetas",
+ "HeaderMetadataSettings": "Ajustes de metadatos",
+ "LabelLockItemToPreventChanges": "Bloquear este \u00edtem para evitar futuros cambios",
+ "MessageLeaveEmptyToInherit": "Dejar en blanco para heredar la configuraci\u00f3n de un elemento principal, o el valor predeterminado global.",
+ "HeaderDonationType": "Tipo de donaci\u00f3n:",
+ "OptionMakeOneTimeDonation": "Hacer una donaci\u00f3n por separado",
+ "OptionNoTrailer": "Sin trailer",
+ "OptionNoThemeSong": "Sin tema musical",
+ "OptionNoThemeVideo": "Sin tema de v\u00eddeo",
+ "LabelOneTimeDonationAmount": "Cantidad de la donaci\u00f3n:",
+ "ButtonPurchase": "Comprar",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
@@ -1253,56 +1250,56 @@
"TabPlayback": "Playback",
"HeaderAudioSettings": "Audio Settings",
"HeaderSubtitleSettings": "Subtitle Settings",
- "TabCinemaMode": "Cinema Mode",
- "TitlePlayback": "Playback",
- "LabelEnableCinemaModeFor": "Enable cinema mode for:",
- "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
- "OptionTrailersFromMyMovies": "Include trailers from movies in my library",
- "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies",
- "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
- "LabelEnableIntroParentalControl": "Enable smart parental control",
- "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
- "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
- "LabelCustomIntrosPath": "Custom intros path:",
- "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
- "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
- "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
- "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
- "LabelDisplayTrailersWithinMovieSuggestions": "Display trailers within movie suggestions",
- "LabelDisplayTrailersWithinMovieSuggestionsHelp": "Requires installation of the Trailer channel.",
- "CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.",
- "LabelEnableCinemaMode": "Enable cinema mode",
- "HeaderCinemaMode": "Cinema Mode",
- "LabelDateAddedBehavior": "Date added behavior for new content:",
- "OptionDateAddedImportTime": "Use date scanned into the library",
- "OptionDateAddedFileTime": "Use file creation date",
- "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
- "LabelNumberTrailerToPlay": "Number of trailers to play:",
- "TitleDevices": "Devices",
- "TabCameraUpload": "Camera Upload",
- "TabDevices": "Devices",
- "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.",
- "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.",
- "LabelCameraUploadPath": "Camera upload path:",
- "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
- "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
- "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
- "LabelCustomDeviceDisplayName": "Display name:",
- "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
- "HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
- "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
- "ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
- "HeaderGuests": "Guests",
- "HeaderLocalUsers": "Local Users",
- "HeaderPendingInvitations": "Pending Invitations",
- "TabParentalControl": "Parental Control",
- "HeaderAccessSchedule": "Access Schedule",
- "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.",
- "ButtonAddSchedule": "Add Schedule",
+ "TabCinemaMode": "Modo cine",
+ "TitlePlayback": "Reproducci\u00f3n",
+ "LabelEnableCinemaModeFor": "Activar el modo cine para:",
+ "CinemaModeConfigurationHelp": "El modo cine proporciona la experiencia del cine directamente en su sala de estar con la capacidad de reproducir trailers e introducciones personalizadas antes de la funci\u00f3n principal.",
+ "OptionTrailersFromMyMovies": "Incluir trailers de pel\u00edculas de mi biblioteca",
+ "OptionUpcomingMoviesInTheaters": "Incluir trailers de nuevas y pr\u00f3ximas pel\u00edculas",
+ "LabelLimitIntrosToUnwatchedContent": "Usar trailers s\u00f3lo para contenido que no haya sido visto",
+ "LabelEnableIntroParentalControl": "Activar el control parental inteligente",
+ "LabelEnableIntroParentalControlHelp": "Los trailers s\u00f3lo se podr\u00e1n seleccionar con una clasificaci\u00f3n parental igual o menor que el contenido que se est\u00e1 observando.",
+ "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "Estas caracter\u00edsticas requieren una suscripci\u00f3n activa de Emby Premiere y la instalaci\u00f3n del \"Trailer channel plugin\".",
+ "OptionTrailersFromMyMoviesHelp": "Requiere configuraci\u00f3n de los trailers locales.\n",
+ "LabelCustomIntrosPath": "Ruta de intros personalizada:",
+ "LabelCustomIntrosPathHelp": "Carpeta que contiene los archivos de v\u00eddeo. Un v\u00eddeo ser\u00e1 seleccionado al azar y reproducido despu\u00e9s de los trailers.",
+ "ValueSpecialEpisodeName": "Especial - {0}",
+ "LabelSelectInternetTrailersForCinemaMode": "Trailers de internet:",
+ "OptionUpcomingDvdMovies": "Incluir tr\u00e1ilers de nuevas y pr\u00f3ximas pel\u00edculas en DVD y Blu-ray",
+ "OptionUpcomingStreamingMovies": "Incluir tr\u00e1ilers de nuevas y pr\u00f3ximas pel\u00edculas en Netflix",
+ "LabelDisplayTrailersWithinMovieSuggestions": "Mostrar los trailers con las sugerencias de pel\u00edculas",
+ "LabelDisplayTrailersWithinMovieSuggestionsHelp": "Necesita la instalaci\u00f3n del canal \"Trailer channel\".",
+ "CinemaModeConfigurationHelp2": "Las aplicaciones de Emby tendr\u00e1n una opci\u00f3n para activar o desactivar el modo cine. Las aplicaciones de TV tienen el modo cine activado de forma predeterminada.",
+ "LabelEnableCinemaMode": "Activar modo cine",
+ "HeaderCinemaMode": "Modo cine",
+ "LabelDateAddedBehavior": "Comportamiento de la fecha a\u00f1adida para contenido nuevo:",
+ "OptionDateAddedImportTime": "Usar fecha escaneada de la biblioteca",
+ "OptionDateAddedFileTime": "Usar fecha de creaci\u00f3n del archivo",
+ "LabelDateAddedBehaviorHelp": "Si un valor de metadato est\u00e1 disponible su usar\u00e1 siempre antes que ninguna de esas opciones.",
+ "LabelNumberTrailerToPlay": "N\u00famero de tr\u00e1ilers a reproducir:",
+ "TitleDevices": "Dispositivos",
+ "TabCameraUpload": "Subidas de la c\u00e1mara",
+ "TabDevices": "Dispositivos",
+ "HeaderCameraUploadHelp": "Subir fotos y v\u00eddeos autom\u00e1ticamente hechos con dispositivos m\u00f3viles en Emby.",
+ "MessageNoDevicesSupportCameraUpload": "No tiene ning\u00fan dispositivo que suporte la subida desde la c\u00e1mara.",
+ "LabelCameraUploadPath": "Ruta de subidas desde la c\u00e1mara:",
+ "LabelCameraUploadPathHelp": "Seleccione una ruta personalizada de subida, si lo desea. Si no se especifica, se usar\u00e1 la carpeta por defecto. Si se usa una ruta personalizada, tiene que a\u00f1adirse tambi\u00e9n en los ajustes de la biblioteca.",
+ "LabelCreateCameraUploadSubfolder": "Crear subcarpetas para cada dispositivo",
+ "LabelCreateCameraUploadSubfolderHelp": "Carpetas espec\u00edficas pueden ser asignadas a un dispositivo haciendo clic en \u00e9l desde la p\u00e1gina de Dispositivos.",
+ "LabelCustomDeviceDisplayName": "Nombre para mostrar:",
+ "LabelCustomDeviceDisplayNameHelp": "Proporcione un nombre para mostrar o d\u00e9jelo vac\u00edo para usar el nombre comunicado por el dispositivo.",
+ "HeaderInviteUser": "Invitar usuario",
+ "LabelConnectGuestUserNameHelp": "Este es el nombre de usuario que tu amigo usa para iniciar sesi\u00f3n en la p\u00e1gina web de Emby, o su direcci\u00f3n de correo.",
+ "HeaderInviteUserHelp": "Compartir contenido con tus amigos es mas f\u00e1cil que nunca con Emby Connect.",
+ "ButtonSendInvitation": "Enviar Invitaci\u00f3n",
+ "HeaderSignInWithConnect": "Iniciar sesi\u00f3n con Emby Connect",
+ "HeaderGuests": "Invitados",
+ "HeaderLocalUsers": "Usuarios locales",
+ "HeaderPendingInvitations": "Invitaciones pendientes",
+ "TabParentalControl": "Control parental",
+ "HeaderAccessSchedule": "Horario de acceso",
+ "HeaderAccessScheduleHelp": "Crea un horario de acceso para limitar el acceso a determinadas horas.",
+ "ButtonAddSchedule": "A\u00f1adir horario",
"LabelAccessDay": "Day of week:",
"LabelAccessStart": "Start time:",
"LabelAccessEnd": "End time:",
@@ -1354,29 +1351,29 @@
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
"TabJobs": "Jobs",
- "TabSyncJobs": "Sync Jobs",
- "LabelTagFilterMode": "Mode:",
- "LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
- "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
- "MessageReenableUser": "See below to reenable",
- "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
- "OptionTVMovies": "TV Movies",
- "HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
- "HeaderUpcomingPrograms": "Upcoming Programs",
- "ButtonMoreItems": "More",
+ "TabSyncJobs": "Trabajos de sincronizaci\u00f3n",
+ "LabelTagFilterMode": "Modo:",
+ "LabelTagFilterAllowModeHelp": "Si las etiquetas permitidas forman parte de una estructura de carpetas anidadas, el contenido que esta etiquetado necesitar\u00e1 que las carpetas principales est\u00e9n etiquetadas tambi\u00e9n.",
+ "HeaderThisUserIsCurrentlyDisabled": "Este usuario est\u00e1 desactivado",
+ "MessageReenableUser": "Mira abajo para reactivarlo",
+ "LabelEnableInternetMetadataForTvPrograms": "Descargar metadatos de internet para:",
+ "OptionTVMovies": "Pel\u00edculas de TV",
+ "HeaderUpcomingMovies": "Pr\u00f3ximas pel\u00edculas",
+ "HeaderUpcomingSports": "Pr\u00f3ximos deportes",
+ "HeaderUpcomingPrograms": "Pr\u00f3ximos programas",
+ "ButtonMoreItems": "M\u00e1s",
"LabelShowLibraryTileNames": "Show library tile names",
- "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
- "OptionEnableTranscodingThrottle": "Enable throttling",
- "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
- "LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
- "OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
- "HeaderPlayback": "Media Playback",
- "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
- "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
- "TabStreaming": "Streaming",
- "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
+ "LabelShowLibraryTileNamesHelp": "Determina si las etiquetas se mostrar\u00e1n debajo de las pesta\u00f1as de la biblioteca en la p\u00e1gina de inicio",
+ "OptionEnableTranscodingThrottle": "Activar estrangulamiento",
+ "OptionEnableTranscodingThrottleHelp": "El estrangulamiento ajustar\u00e1 autom\u00e1ticamente la velocidad de transcodificaci\u00f3n para minimizar la carga del procesador durante la reproducci\u00f3n.",
+ "LabelUploadSpeedLimit": "L\u00edmite de velocidad de subida (Mbps):",
+ "OptionAllowSyncTranscoding": "Permitir sincronizar si requiere transcodificaci\u00f3n",
+ "HeaderPlayback": "Reproducci\u00f3n de contenido",
+ "OptionAllowAudioPlaybackTranscoding": "Permitir reproducci\u00f3n de audio que requiere transcodificaci\u00f3n",
+ "OptionAllowVideoPlaybackTranscoding": "Permitir reproducci\u00f3n de v\u00eddeo que requiere transcodificaci\u00f3n",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Los usuarios recibir\u00e1n un mensaje cuando no pueden reproducir contenido en base a los ajustes.",
+ "TabStreaming": "Transmisi\u00f3n",
+ "LabelRemoteClientBitrateLimit": "L\u00edmite de la transmisi\u00f3n de tasa de bits por internet (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
"LabelConversionCpuCoreLimit": "CPU core limit:",
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/fi.json b/dashboard-ui/strings/fi.json
index 60a43d7134..bfa76713aa 100644
--- a/dashboard-ui/strings/fi.json
+++ b/dashboard-ui/strings/fi.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Poistu",
"LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/fr-CA.json b/dashboard-ui/strings/fr-CA.json
index 6c41643626..faeec896f8 100644
--- a/dashboard-ui/strings/fr-CA.json
+++ b/dashboard-ui/strings/fr-CA.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/fr.json b/dashboard-ui/strings/fr.json
index 560a386f7b..c7604bb3bc 100644
--- a/dashboard-ui/strings/fr.json
+++ b/dashboard-ui/strings/fr.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/gsw.json b/dashboard-ui/strings/gsw.json
index 0d454d77f4..b2268a87fd 100644
--- a/dashboard-ui/strings/gsw.json
+++ b/dashboard-ui/strings/gsw.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Verlasse",
"LabelVisitCommunity": "Bsuech d'Community",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/he.json b/dashboard-ui/strings/he.json
index 06e5752f5e..d28c1d254a 100644
--- a/dashboard-ui/strings/he.json
+++ b/dashboard-ui/strings/he.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4",
"LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/hr.json b/dashboard-ui/strings/hr.json
index cbbcd7cdc5..6b9d61c20d 100644
--- a/dashboard-ui/strings/hr.json
+++ b/dashboard-ui/strings/hr.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Izlaz",
"LabelVisitCommunity": "Posjeti zajednicu",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/hu.json b/dashboard-ui/strings/hu.json
index a231fcfce8..88aaa4ce07 100644
--- a/dashboard-ui/strings/hu.json
+++ b/dashboard-ui/strings/hu.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Kil\u00e9p\u00e9s",
"LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g",
"LabelGithub": "Github",
@@ -467,7 +464,7 @@
"LabelSeasonZeroDisplayName": "Season 0 display name:",
"LabelEnableRealtimeMonitor": "Enable real time monitoring",
"LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.",
- "ButtonScanLibrary": "M\u00e9diat\u00e1r Beolvas\u00e1s",
+ "ButtonScanLibrary": "M\u00e9diat\u00e1r Beolvas\u00e1sa",
"HeaderNumberOfPlayers": "Players",
"OptionAnyNumberOfPlayers": "B\u00e1rmilyen",
"Option1Player": "1+",
@@ -1605,7 +1602,7 @@
"LabelSelectCollection": "V\u00e1lassz gy\u0171jtem\u00e9nyt:",
"HeaderDevices": "Eszk\u00f6z\u00f6k",
"ButtonScheduledTasks": "\u00dctemezett feladatok",
- "MessageItemsAdded": "Items added",
+ "MessageItemsAdded": "Elem hozz\u00e1adva",
"HeaderSelectCertificatePath": "Select Certificate Path",
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
"HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
@@ -1856,8 +1853,8 @@
"HeaderAlert": "Alert",
"MessagePleaseRestart": "Ind\u00edtsd \u00fajra a friss\u00edt\u00e9s befejez\u00e9s\u00e9hez.",
"MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.",
- "ButtonHide": "Hide",
- "MessageSettingsSaved": "Settings saved.",
+ "ButtonHide": "Elrejt",
+ "MessageSettingsSaved": "Be\u00e1ll\u00edt\u00e1sok mentve.",
"ButtonMyProfile": "My Profile",
"ButtonMyPreferences": "My Preferences",
"MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.",
@@ -2206,7 +2203,7 @@
"MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.",
"MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.",
"MessageNoItemsFound": "No items found.",
- "ButtonManageServer": "Manage Server",
+ "ButtonManageServer": "Szerver Kezel\u00e9s",
"ButtonEditSubtitles": "Feliratok szerkeszt\u00e9se",
"ButtonPreferences": "Preferences",
"ButtonViewArtist": "View artist",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/id.json b/dashboard-ui/strings/id.json
index d63b09a91e..67b4169547 100644
--- a/dashboard-ui/strings/id.json
+++ b/dashboard-ui/strings/id.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Keluar",
"LabelVisitCommunity": "Kunjungi Komunitas",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/it.json b/dashboard-ui/strings/it.json
index 664b5e7752..07f04a9bd9 100644
--- a/dashboard-ui/strings/it.json
+++ b/dashboard-ui/strings/it.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Esci",
"LabelVisitCommunity": "Visita la Community",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/kk.json b/dashboard-ui/strings/kk.json
index 30b31edbe6..50ebdabe2e 100644
--- a/dashboard-ui/strings/kk.json
+++ b/dashboard-ui/strings/kk.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u0428\u044b\u0493\u0443",
"LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\u0443",
"LabelGithub": "GitHub \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439\u0456",
@@ -1227,7 +1224,7 @@
"XmlDocumentAttributeListHelp": "\u041e\u0441\u044b \u0442\u04e9\u043b\u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440 \u04d9\u0440\u0431\u0456\u0440 XML \u04af\u043d \u049b\u0430\u0442\u0443\u043b\u0430\u0440\u0434\u044b\u04a3 \u0442\u04af\u0431\u0456\u0440 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0456 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b.",
"OptionSaveMetadataAsHidden": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043c\u0435\u043d \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u044b\u0440\u044b\u043d \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u0443",
"LabelExtractChaptersDuringLibraryScan": "\u0421\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443 \u043c\u0435\u0437\u0433\u0456\u043b\u0456\u043d\u0434\u0435 \u0448\u044b\u0493\u0430\u0440\u044b\u043f \u0430\u043b\u0443",
- "LabelExtractChaptersDuringLibraryScanHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443 \u043c\u0435\u0437\u0433\u0456\u043b\u0456\u043d\u0434\u0435, \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u0441\u044b\u0440\u0442\u0442\u0430\u043d \u0430\u043b\u044b\u043d\u0493\u0430\u043d\u0434\u0430, \u0431\u04e9\u043b\u0456\u043d\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0431\u04b1\u043b\u0430\u0440 \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d\u0435 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u0441\u044b \u043c\u0435\u0437\u0433\u0456\u043b\u0456\u043d\u0434\u0435, \u0442\u04b1\u0440\u0430\u049b\u0442\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0456\u043d \u0436\u044b\u043b\u0434\u0430\u043c\u044b\u0440\u0430\u049b \u0430\u044f\u049b\u0442\u0430\u043b\u0443\u044b \u04b1\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043f, \u0431\u04e9\u043b\u0456\u043d\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b.",
+ "LabelExtractChaptersDuringLibraryScanHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443 \u043c\u0435\u0437\u0433\u0456\u043b\u0456\u043d\u0434\u0435, \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u0448\u0435\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0433\u0435\u043d\u0434\u0435, \u0431\u04e9\u043b\u0456\u043d\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0431\u04b1\u043b\u0430\u0440 \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d\u0435 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u0441\u044b \u043c\u0435\u0437\u0433\u0456\u043b\u0456\u043d\u0434\u0435, \u0442\u04b1\u0440\u0430\u049b\u0442\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0456\u043d \u0436\u044b\u043b\u0434\u0430\u043c\u044b\u0440\u0430\u049b \u0430\u044f\u049b\u0442\u0430\u043b\u0443\u044b \u04b1\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043f, \u0431\u04e9\u043b\u0456\u043d\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b.",
"LabelConnectGuestUserName": "\u041e\u043d\u044b\u04a3 Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b:",
"LabelConnectUserName": "Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b:",
"LabelConnectUserNameHelp": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 IP \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0431\u0456\u043b\u043c\u0435\u0439 \u0442\u04b1\u0440\u044b\u043f \u04d9\u0440\u049b\u0430\u0439\u0441\u044b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b\u043d\u0430\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d \u043a\u0456\u0440\u0443-\u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u043e\u0441\u044b \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0436\u0435\u043b\u0456\u043b\u0456\u043a Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437.",
@@ -1442,10 +1439,10 @@
"LabelLineup": "\u0422\u0456\u0437\u0431\u0435\u043a:",
"MessageTunerDeviceNotListed": "\u0422\u044e\u043d\u0435\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u04a3\u044b\u0437 \u0442\u0456\u0437\u0456\u043c\u0434\u0435 \u0436\u043e\u049b \u043f\u0430? \u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0441\u044b\u0440\u0442\u049b\u044b \u049b\u044b\u0437\u043c\u0435\u0442 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.",
"LabelImportOnlyFavoriteChannels": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u043c\u0435\u043d \u0448\u0435\u043a\u0442\u0435\u0443",
- "ImportFavoriteChannelsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u044e\u043d\u0435\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0442\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0493\u0430\u043d\u0430 \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0431\u043e\u043b\u0430\u0434\u044b.",
+ "ImportFavoriteChannelsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u044e\u043d\u0435\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0442\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0493\u0430\u043d\u0430 \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0430\u0434\u044b.",
"ButtonRepeat": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443",
"LabelEnableThisTuner": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
- "LabelEnableThisTunerHelp": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0435\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u0443\u044b\u043d\u0430 \u0442\u0438\u044b\u043c \u0441\u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.",
+ "LabelEnableThisTunerHelp": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0435\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0443\u0433\u0435 \u0442\u0438\u044b\u043c \u0441\u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.",
"HeaderLocked": "\u049a\u04b1\u043b\u044b\u043f\u0442\u0430\u043b\u0493\u0430\u043d",
"HeaderUnidentified": "\u0410\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d",
"HeaderImagePrimary": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456",
@@ -1483,7 +1480,7 @@
"HeaderSetupTVGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443",
"LabelDataProvider": "\u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456:",
"OptionSendRecordingsToAutoOrganize": "\u0416\u0430\u04a3\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
- "OptionSendRecordingsToAutoOrganizeHelp": "\u0416\u0430\u04a3\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u044b\u043d\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u044b\u04a3\u044b\u0437\u0493\u0430 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u043b\u0430\u0434\u044b.",
+ "OptionSendRecordingsToAutoOrganizeHelp": "\u0416\u0430\u04a3\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u044b\u043d\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u044b\u04a3\u044b\u0437\u0493\u0430 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0435\u0434\u0456.",
"HeaderDefaultPadding": "\u04d8\u0434\u0435\u043f\u043a\u0456 \u0448\u0435\u0433\u0456\u043d\u0456\u0441",
"HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
"HeaderVideos": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
@@ -2326,9 +2323,12 @@
"LabelOptionalM3uUrl": "M3U URL (\u043c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441):",
"LabelOptionalM3uUrlHelp": "\u041a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 M3U \u0430\u0440\u043d\u0430 \u0442\u0456\u0437\u0431\u0435\u0441\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0439\u0434\u044b.",
"TabResumeSettings": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
- "HowDidYouPay": "How did you pay?",
- "IHaveEmbyPremiere": "I have Emby Premiere",
- "IPurchasedThisApp": "I purchased this app",
- "DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "HowDidYouPay": "\u049a\u0430\u043b\u0430\u0439 \u0442\u04e9\u043b\u0435\u0434\u0456\u04a3\u0456\u0437?",
+ "IHaveEmbyPremiere": "\u041c\u0435\u043d\u0434\u0435 Emby Premiere \u0431\u0430\u0440",
+ "IPurchasedThisApp": "\u041c\u0435\u043d \u043e\u0441\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0434\u044b\u043c",
+ "DrmChannelsNotImported": "DRM \u0431\u0430\u0440 \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0431\u0435\u0439\u0434\u0456.",
+ "ConfigureDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456 Emby Server \u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d\u0434\u0435 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b",
+ "LabelAllowHWTranscoding": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/ko.json b/dashboard-ui/strings/ko.json
index 2bc52d5531..57d0bbe870 100644
--- a/dashboard-ui/strings/ko.json
+++ b/dashboard-ui/strings/ko.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\uc885\ub8cc",
"LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/ms.json b/dashboard-ui/strings/ms.json
index 4f97c16bac..9f81d19e29 100644
--- a/dashboard-ui/strings/ms.json
+++ b/dashboard-ui/strings/ms.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Tutup",
"LabelVisitCommunity": "Melawat Masyarakat",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/nb.json b/dashboard-ui/strings/nb.json
index faa5538988..361986b855 100644
--- a/dashboard-ui/strings/nb.json
+++ b/dashboard-ui/strings/nb.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Avslutt",
"LabelVisitCommunity": "Bes\u00f8k oss",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/nl.json b/dashboard-ui/strings/nl.json
index a92d987435..db5acf38cd 100644
--- a/dashboard-ui/strings/nl.json
+++ b/dashboard-ui/strings/nl.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Afsluiten",
"LabelVisitCommunity": "Bezoek Gemeenschap",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "Ik heb Emby premi\u00e8re",
"IPurchasedThisApp": "Ik heb deze app gekocht\n",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/pl.json b/dashboard-ui/strings/pl.json
index fb824359a4..b17d54b16f 100644
--- a/dashboard-ui/strings/pl.json
+++ b/dashboard-ui/strings/pl.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Wyj\u015bcie",
"LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/pt-BR.json b/dashboard-ui/strings/pt-BR.json
index a052ad4467..b6cc48fa46 100644
--- a/dashboard-ui/strings/pt-BR.json
+++ b/dashboard-ui/strings/pt-BR.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Sair",
"LabelVisitCommunity": "Visitar a Comunidade",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/pt-PT.json b/dashboard-ui/strings/pt-PT.json
index 1856cb185e..b7a565156d 100644
--- a/dashboard-ui/strings/pt-PT.json
+++ b/dashboard-ui/strings/pt-PT.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Sair",
"LabelVisitCommunity": "Visitar a Comunidade",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/ro.json b/dashboard-ui/strings/ro.json
index c94fde9785..fa9344e39e 100644
--- a/dashboard-ui/strings/ro.json
+++ b/dashboard-ui/strings/ro.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Iesire",
"LabelVisitCommunity": "Viziteaza comunitatea",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/ru.json b/dashboard-ui/strings/ru.json
index f73f58f7d8..ee1f7c5d30 100644
--- a/dashboard-ui/strings/ru.json
+++ b/dashboard-ui/strings/ru.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443",
- "AllowHWTranscodingHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0442\u044e\u043d\u0435\u0440\u0443 \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0442\u043e\u043a\u0438 \"\u043d\u0430 \u043b\u0435\u0442\u0443\". \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443, \u0442\u0440\u0435\u0431\u0443\u0435\u043c\u0443\u044e \u0432 Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0443\u044e\u0449\u0438\u0435 \u043c\u043e\u0438\u043c \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430\u043c",
"LabelExit": "\u0412\u044b\u0445\u043e\u0434",
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u0435 \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430",
"LabelGithub": "GitHub",
@@ -71,9 +68,9 @@
"HeaderEasyPinCode": "\u041f\u0440\u043e\u0441\u0442\u043e\u0439 PIN-\u043a\u043e\u0434",
"HeaderGrownupsOnly": "\u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445!",
"DividerOr": "-- \u0438\u043b\u0438 --",
- "HeaderInstalledServices": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
- "HeaderAvailableServices": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
- "MessageNoServicesInstalled": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043d\u044b\u0445 \u0441\u043b\u0443\u0436\u0431",
+ "HeaderInstalledServices": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438",
+ "HeaderAvailableServices": "\u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0443\u0441\u043b\u0443\u0433\u0438",
+ "MessageNoServicesInstalled": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043d\u044b\u0445 \u0443\u0441\u043b\u0443\u0433",
"HeaderToAccessPleaseEnterEasyPinCode": "\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u0430\u0448 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 PIN-\u043a\u043e\u0434",
"KidsModeAdultInstruction": "\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0437\u043d\u0430\u0447\u043a\u0443 \u0437\u0430\u043c\u043a\u0430 \u0441\u043f\u0440\u0430\u0432\u0430 \u0432\u043d\u0438\u0437\u0443, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438\u043b\u0438 \u043f\u043e\u043a\u0438\u043d\u0443\u0442\u044c \u0434\u0435\u0442\u0441\u043a\u0438\u0439 \u0440\u0435\u0436\u0438\u043c. \u041f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0430\u0448 PIN-\u043a\u043e\u0434.",
"ButtonConfigurePinCode": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c PIN-\u043a\u043e\u0434",
@@ -143,7 +140,7 @@
"OptionSmartSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f, \u0435\u0441\u043b\u0438 \u0430\u0443\u0434\u0438\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0438\u043d\u043e\u044f\u0437\u044b\u0447\u043d\u044b\u043c.",
"OptionOnlyForcedSubtitles": "\u0422\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",
"OptionAlwaysPlaySubtitles": "\u0412\u0441\u0435\u0433\u0434\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0441 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0430\u043c\u0438",
- "OptionDefaultSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u044e\u0442\u0441\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u0444\u043b\u0430\u0433\u043e\u0432 \"\u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435\" \u0438 \"\u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435\" \u0432\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u042f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0442\u0441\u044f, \u043a\u043e\u0433\u0434\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043e\u0432.",
+ "OptionDefaultSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u044e\u0442\u0441\u044f \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u0444\u043b\u0430\u0433\u043e\u0432 \"\u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435\" \u0438 \"\u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435\" \u0432\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u042f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0442\u0441\u044f, \u043a\u043e\u0433\u0434\u0430 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043e\u0432.",
"OptionOnlyForcedSubtitlesHelp": "\u0411\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u043a\u0430\u043a \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435.",
"OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e.",
"OptionNoSubtitlesHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f.",
@@ -246,7 +243,7 @@
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "\u041c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b:",
- "LabelService": "\u0421\u043b\u0443\u0436\u0431\u0430:",
+ "LabelService": "\u0423\u0441\u043b\u0443\u0433\u0430:",
"LabelStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435:",
"LabelVersion": "\u0412\u0435\u0440\u0441\u0438\u044f:",
"LabelLastResult": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442:",
@@ -422,7 +419,7 @@
"LabelNumberOfGuideDays": "\u0427\u0438\u0441\u043b\u043e \u0434\u043d\u0435\u0439 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430:",
"LabelNumberOfGuideDaysHelp": "\u0411\u043e\u043b\u044c\u0448\u0435 \u0434\u043d\u0435\u0439 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0437\u0430\u0431\u043b\u0430\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043d\u0430\u0437\u043d\u0430\u0447\u0430\u0442\u044c \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043f\u0435\u0440\u0435\u0447\u043d\u0435\u0439, \u043e\u0434\u043d\u0430\u043a\u043e \u044d\u0442\u043e \u0437\u0430\u0439\u043c\u0451\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438. \u041f\u0440\u0438 \u00ab\u0410\u0432\u0442\u043e\u00bb \u0432\u044b\u0431\u043e\u0440 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u0447\u0438\u0441\u043b\u043e\u043c \u043a\u0430\u043d\u0430\u043b\u043e\u0432.",
"OptionAutomatic": "\u0410\u0432\u0442\u043e",
- "HeaderServices": "\u0421\u043b\u0443\u0436\u0431\u044b",
+ "HeaderServices": "\u0423\u0441\u043b\u0443\u0433\u0438",
"LiveTvPluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043b\u0430\u0433\u0438\u043d-\u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043b\u0443\u0433 \u0422\u0412-\u044d\u0444\u0438\u0440\u0430 \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.",
"LiveTvPluginRequiredHelp": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043e\u0434\u0438\u043d \u0438\u0437 \u0438\u043c\u0435\u044e\u0449\u0438\u0445\u0441\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, NextPVR \u0438\u043b\u0438 ServerWMC.",
"LabelCustomizeOptionsPerMediaType": "\u041f\u043e\u0434\u0433\u043e\u043d\u043a\u0430 \u043f\u043e \u0442\u0438\u043f\u0443 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
@@ -686,7 +683,7 @@
"NotificationOptionNewLibraryContentMultiple": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e (\u043c\u043d\u043e\u0433\u043e\u043a\u0440\u0430\u0442\u043d\u043e)",
"NotificationOptionCameraImageUploaded": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0430 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u043e\u0442\u0441\u043d\u044f\u0442\u043e\u0433\u043e \u0441 \u043a\u0430\u043c\u0435\u0440\u044b",
"NotificationOptionUserLockedOut": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d",
- "HeaderSendNotificationHelp": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043f\u0430\u043f\u043a\u0443 \u0412\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0432 Emby. \u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0438\u0437 \u0432\u043a\u043b\u0430\u0434\u043a\u0438 \u0421\u043b\u0443\u0436\u0431\u044b.",
+ "HeaderSendNotificationHelp": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043f\u0430\u043f\u043a\u0443 \u0412\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0432 Emby. \u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0438\u0437 \u0432\u043a\u043b\u0430\u0434\u043a\u0438 \u0423\u0441\u043b\u0443\u0433\u0438.",
"NotificationOptionServerRestartRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
"LabelNotificationEnabled": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435",
"LabelMonitorUsers": "\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043e\u0442:",
@@ -696,8 +693,8 @@
"CategorySystem": "\u0421\u0438\u0441\u0442\u0435\u043c\u0430",
"CategoryApplication": "\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435",
"CategoryPlugin": "\u041f\u043b\u0430\u0433\u0438\u043d",
- "LabelAvailableTokens": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u043c\u0430\u0440\u043a\u0435\u0440\u044b:",
- "AdditionalNotificationServices": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439.",
+ "LabelAvailableTokens": "\u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u043c\u0430\u0440\u043a\u0435\u0440\u044b:",
+ "AdditionalNotificationServices": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0443\u0441\u043b\u0443\u0433\u0438 \u0434\u043b\u044f \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439.",
"OptionAllUsers": "\u0412\u0441\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
"OptionAdminUsers": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b",
"OptionCustomUsers": "\u041d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435",
@@ -848,7 +845,7 @@
"ButtonSend": "\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c",
"LabelMessageText": "\u0422\u0435\u043a\u0441\u0442 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f:",
"LabelMessageTitle": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f:",
- "MessageNoAvailablePlugins": "\u041d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432.",
+ "MessageNoAvailablePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f.",
"LabelDisplayPluginsFor": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 \u0434\u043b\u044f:",
"PluginTabAppClassic": "Emby Classic",
"PluginTabAppTheater": "Emby Theater",
@@ -903,7 +900,7 @@
"TabNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
"PlaceholderUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"HeaderBecomeProjectSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere",
- "MessageNoMovieSuggestionsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u044b\u0445 \u0444\u0438\u043b\u044c\u043c\u043e\u0432. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0444\u0438\u043b\u044c\u043c\u044b, \u0438 \u0442\u043e\u0433\u0434\u0430 \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u043d\u0430\u0437\u0430\u0434, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0438.",
+ "MessageNoMovieSuggestionsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b \u043d\u0435 \u0438\u043c\u0435\u044e\u0442\u0441\u044f. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0444\u0438\u043b\u044c\u043c\u044b, \u0438 \u0442\u043e\u0433\u0434\u0430 \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u043d\u0430\u0437\u0430\u0434, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0438.",
"MessageNoCollectionsAvailable": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043e\u0431\u043e\u0441\u043e\u0431\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432, \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u0430\u043b\u044c\u0431\u043e\u043c\u043e\u0432, \u043a\u043d\u0438\u0433 \u0438 \u0438\u0433\u0440. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \"+\", \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u043a \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439.",
"MessageNoPlaylistsAvailable": "\u041f\u043b\u0435\u0439\u043b\u0438\u0441\u0442\u044b \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0438\u0437 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432 \u0441\u043f\u0438\u0441\u043a\u0438, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435, \u0437\u0430\u0442\u0435\u043c \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439\u043b\u0438\u0441\u0442\u00bb.",
"MessageNoPlaylistItemsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0435\u0439\u043b\u0438\u0441\u0442 \u043f\u0443\u0441\u0442.",
@@ -911,7 +908,7 @@
"ButtonEditOtherUserPreferences": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c, \u0440\u0438\u0441\u0443\u043d\u043e\u043a \u0438 \u043b\u0438\u0447\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.",
"LabelChannelStreamQuality": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u0430:",
"LabelChannelStreamQualityHelp": "\u041f\u0440\u0438 \u043d\u0438\u0437\u043a\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u0438 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043f\u043b\u0430\u0432\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.",
- "OptionBestAvailableStreamQuality": "\u041d\u0430\u0438\u043b\u0443\u0447\u0448\u0435\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0435",
+ "OptionBestAvailableStreamQuality": "\u041d\u0430\u0438\u043b\u0443\u0447\u0448\u0435\u0435 \u0438\u043c\u0435\u044e\u0449\u0435\u0435\u0441\u044f",
"LabelEnableChannelContentDownloadingFor": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u043a\u0430\u043d\u0430\u043b\u0430 \u0434\u043b\u044f:",
"LabelEnableChannelContentDownloadingForHelp": "\u041d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043a\u0430\u043d\u0430\u043b\u0430\u0445 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u044f\u044e\u0449\u0435\u0435 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440. \u0412\u043a\u043b\u044e\u0447\u0430\u0439\u0442\u0435 \u043f\u0440\u0438 \u0441\u0440\u0435\u0434\u0430\u0445 \u0441 \u043d\u0438\u0437\u043a\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043a\u0430\u043d\u0430\u043b\u0430 \u0432 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u0447\u0430\u0441\u044b. \u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u0447\u0430\u0441\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u00ab\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043a\u0430\u043d\u0430\u043b\u043e\u0432\u00bb.",
"LabelChannelDownloadPath": "\u041f\u0443\u0442\u044c \u0434\u043b\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432:",
@@ -985,7 +982,7 @@
"LabelDisplayCollectionsViewHelp": "\u042d\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0430\u043c\u0438 \u0438\u043b\u0438 \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0438\u043c\u0435\u0435\u0442\u0435 \u0434\u043e\u0441\u0442\u0443\u043f. \u0427\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435 \u043b\u044e\u0431\u043e\u0439 \u0444\u0438\u043b\u044c\u043c, \u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e\". ",
"LabelKodiMetadataEnableExtraThumbs": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c extrafanart \u0432\u043d\u0443\u0442\u0440\u044c extrathumbs",
"LabelKodiMetadataEnableExtraThumbsHelp": "\u041f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432, \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u044c extrafanart \u0438 extrathumbs \u0434\u043b\u044f \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0438 \u0441 \u043e\u0431\u043e\u043b\u043e\u0447\u043a\u043e\u0439 Kodi.",
- "TabServices": "\u0421\u043b\u0443\u0436\u0431\u044b",
+ "TabServices": "\u0423\u0441\u043b\u0443\u0433\u0438",
"TabLogs": "\u0416\u0443\u0440\u043d\u0430\u043b\u044b",
"HeaderServerLogFiles": "\u0424\u0430\u0439\u043b\u044b \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430:",
"TabBranding": "\u041e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435",
@@ -1233,7 +1230,7 @@
"LabelConnectUserNameHelp": "\u0421\u043e\u0435\u0434\u0438\u043d\u044f\u0435\u0442 \u044d\u0442\u043e\u0433\u043e \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f c \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e Emby, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u0434\u043e\u0431\u043d\u044b\u043c \u0432\u0445\u043e\u0434\u043e\u043c \u0438\u0437 \u043b\u044e\u0431\u043e\u0433\u043e Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043d\u0435 \u0437\u043d\u0430\u044f IP-\u0430\u0434\u0440\u0435\u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
"ButtonLearnMoreAboutEmbyConnect": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e\u0431 Emby Connect",
"LabelExternalPlayers": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0438:",
- "LabelExternalPlayersHelp": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442\u0441\u044f \u043a\u043d\u043e\u043f\u043a\u0438 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445. \u042d\u0442\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 URL Scheme, \u043e\u0431\u044b\u0447\u043d\u043e \u0432 Android \u0438 iOS. \u0412\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445, \u043a\u0430\u043a \u043f\u0440\u0430\u0432\u0438\u043b\u043e, \u043d\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f.",
+ "LabelExternalPlayersHelp": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442\u0441\u044f \u043a\u043d\u043e\u043f\u043a\u0438 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445. \u042d\u0442\u043e \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 URL Scheme, \u043e\u0431\u044b\u0447\u043d\u043e \u0432 Android \u0438 iOS. \u0412\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445, \u043a\u0430\u043a \u043f\u0440\u0430\u0432\u0438\u043b\u043e, \u043d\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f.",
"LabelNativeExternalPlayersHelp": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442\u0441\u044f \u043a\u043d\u043e\u043f\u043a\u0438 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445.",
"LabelEnableItemPreviews": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
"LabelEnableItemPreviewsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0441\u043a\u043e\u043b\u044c\u0437\u044f\u0449\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u044d\u043a\u0440\u0430\u043d\u0430\u0445, \u0435\u0441\u043b\u0438 \u0449\u0451\u043b\u043a\u043d\u0443\u0442\u044c \u043f\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443.",
@@ -1322,7 +1319,7 @@
"OptionDisableUserPreferences": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u043c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c",
"OptionDisableUserPreferencesHelp": "\u0415\u0441\u043b\u0438 \u0444\u043b\u0430\u0436\u043e\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u0442\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0440\u0438\u0441\u0443\u043d\u043a\u0438, \u043f\u0430\u0440\u043e\u043b\u0438 \u0438 \u044f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438.",
"HeaderSelectServer": "\u0412\u044b\u0431\u043e\u0440 \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
- "MessageNoServersAvailableToConnect": "\u041d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432 \u0434\u043b\u044f \u043f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f. \u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043a \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c\u0443 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0443, \u0442\u043e \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043e \u043f\u0440\u0438\u043d\u044f\u043b\u0438 \u0435\u0433\u043e, \u043d\u0438\u0436\u0435, \u0438\u043b\u0438 \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 \u0432 \u044d-\u043f\u043e\u0447\u0442\u0435.",
+ "MessageNoServersAvailableToConnect": "\u041d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432 \u0434\u043b\u044f \u043f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f. \u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043a \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c\u0443 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0443, \u0442\u043e \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043e \u043f\u0440\u0438\u043d\u044f\u043b\u0438 \u0435\u0433\u043e, \u043d\u0438\u0436\u0435, \u0438\u043b\u0438 \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 \u0432 \u044d-\u043f\u043e\u0447\u0442\u0435.",
"TitleNewUser": "\u041d\u043e\u0432\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c",
"ButtonConfigurePassword": "\u041d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c",
"HeaderDashboardUserPassword": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043b\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.",
@@ -1331,7 +1328,7 @@
"HeaderLatestItems": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b",
"LabelSelectLastestItemsFolders": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432 \u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0445",
"HeaderShareMediaFolders": "\u041e\u0431\u0449\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0430\u043c",
- "MessageGuestSharingPermissionsHelp": "\u041c\u043d\u043e\u0433\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0438\u0437\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0434\u043b\u044f \u0433\u043e\u0441\u0442\u0435\u0439, \u043d\u043e \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u043f\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438.",
+ "MessageGuestSharingPermissionsHelp": "\u041c\u043d\u043e\u0433\u0438\u0445 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432 \u0438\u0437\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0433\u043e\u0441\u0442\u0435\u0439 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f, \u043d\u043e \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u043f\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438.",
"HeaderInvitations": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f",
"LabelForgotPasswordUsernameHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0435\u0441\u043b\u0438 \u043f\u043e\u043c\u043d\u0438\u0442\u0435 \u0435\u0433\u043e.",
"HeaderForgotPassword": "\u0417\u0430\u0431\u044b\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c?",
@@ -1430,9 +1427,9 @@
"HeaderTunerDevices": "\u0422\u044e\u043d\u0435\u0440\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
"ButtonAddDevice": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e",
"HeaderAddDevice": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
- "HeaderExternalServices": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
+ "HeaderExternalServices": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0443\u0441\u043b\u0443\u0433\u0438",
"LabelTunerIpAddress": "IP-\u0430\u0434\u0440\u0435\u0441 \u0442\u044e\u043d\u0435\u0440\u0430",
- "TabExternalServices": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
+ "TabExternalServices": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0443\u0441\u043b\u0443\u0433\u0438",
"TabTuners": "\u0422\u044e\u043d\u0435\u0440\u044b",
"HeaderGuideProviders": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
"AddGuideProviderHelp": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
@@ -1440,7 +1437,7 @@
"GuideProviderSelectListings": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0435\u0440\u0435\u0447\u043d\u0435\u0439",
"GuideProviderLogin": "\u0412\u0445\u043e\u0434",
"LabelLineup": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f:",
- "MessageTunerDeviceNotListed": "\u0412\u0430\u0448\u0435\u0433\u043e \u0442\u044e\u043d\u0435\u0440\u0430 \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435? \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u043b\u0443\u0436\u0431\u044b \u0434\u043b\u044f \u0431\u043e\u043b\u044c\u0448\u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412.",
+ "MessageTunerDeviceNotListed": "\u0412\u0430\u0448\u0435\u0433\u043e \u0442\u044e\u043d\u0435\u0440\u0430 \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435? \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0443\u0441\u043b\u0443\u0433 \u0434\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412.",
"LabelImportOnlyFavoriteChannels": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043d\u0430\u043b\u0430\u043c\u0438 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u043c\u0438 \u043a\u0430\u043a \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
"ImportFavoriteChannelsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043a\u0430\u043d\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u044b \u043a\u0430\u043a \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u043d\u0430 \u0442\u044e\u043d\u0435\u0440\u043d\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435.",
"ButtonRepeat": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c",
@@ -1491,7 +1488,7 @@
"OptionEnableVideoFrameAnalysisHelp": "\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438.",
"LabelVideoFrameAnalysisLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043a \u0432\u0438\u0434\u0435\u043e \u043c\u0435\u043d\u044c\u0448\u0435 \u0447\u0435\u043c:",
"LabelHardwareAccelerationType": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435:",
- "LabelHardwareAccelerationTypeHelp": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0445.",
+ "LabelHardwareAccelerationTypeHelp": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0445.",
"ButtonServerDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
"HeaderAdmin": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"ButtonSignOut": "\u0412\u044b\u0439\u0442\u0438",
@@ -1632,7 +1629,7 @@
"LabelFree": "\u0411\u0435\u0441\u043f\u043b.",
"HeaderPlaybackError": "\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
"MessagePlaybackErrorNotAllowed": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0432\u044b \u043d\u0435 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f. \u0417\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0441\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u0432\u0430\u0448\u0438\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u043c \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c.",
- "MessagePlaybackErrorNoCompatibleStream": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0435 \u043f\u043e\u0442\u043e\u043a\u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435 \u0438\u043b\u0438 \u0437\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0432\u0430\u0448\u0435\u043c\u0443 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.",
+ "MessagePlaybackErrorNoCompatibleStream": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0445 \u043f\u043e\u0442\u043e\u043a\u043e\u0432 \u0432 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435 \u0438\u043b\u0438 \u0437\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0432\u0430\u0448\u0435\u043c\u0443 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.",
"MessagePlaybackErrorRateLimitExceeded": "\u0412\u0430\u0448\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0431\u044b\u043b\u0430 \u043f\u0440\u0435\u0432\u044b\u0448\u0435\u043d\u0430. \u0417\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0441\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u0432\u0430\u0448\u0438\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u043c \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c.",
"MessagePlaybackErrorPlaceHolder": "\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e \u0441 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.",
"HeaderSelectAudio": "\u0412\u044b\u0431\u043e\u0440 \u0430\u0443\u0434\u0438\u043e",
@@ -1742,8 +1739,8 @@
"MessageConfirmShutdown": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 Emby Server?",
"ValueItemCount": "{0} \u044d\u043b\u0435\u043c\u0435\u043d\u0442(\u0430\/\u043e\u0432)",
"ValueItemCountPlural": "{0} \u044d\u043b\u0435\u043c\u0435\u043d\u0442(\u0430\/\u043e\u0432)",
- "NewVersionOfSomethingAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f {0}!",
- "VersionXIsAvailableForDownload": "\u0412\u0435\u0440\u0441\u0438\u044f {0} \u0441\u0435\u0439\u0447\u0430\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438.",
+ "NewVersionOfSomethingAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u0434\u043b\u044f {0}!",
+ "VersionXIsAvailableForDownload": "\u0421\u0435\u0439\u0447\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0432\u0435\u0440\u0441\u0438\u044f {0}.",
"LabelVersionNumber": "\u0412\u0435\u0440\u0441\u0438\u044f {0}",
"LabelPlayMethodTranscoding": "\u041f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u0443\u0435\u0442\u0441\u044f",
"LabelPlayMethodDirectStream": "\u0422\u0440\u0430\u043d\u0441\u043b\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e",
@@ -1778,7 +1775,7 @@
"HeaderLibraries": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
"HeaderVideoQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u0438\u0434\u0435\u043e",
"MessageErrorPlayingVideo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e.",
- "MessageEnsureOpenTuner": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0442\u044e\u043d\u0435\u0440.",
+ "MessageEnsureOpenTuner": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0437\u0434\u0435\u0441\u044c \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0432 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0442\u044e\u043d\u0435\u0440.",
"ButtonDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c...",
"ButtonReports": "\u041e\u0442\u0447\u0451\u0442\u044b...",
"ButtonMetadataManager": "\u0414\u0438\u0441\u043f. \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445...",
@@ -2189,7 +2186,7 @@
"MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u0440\u0430\u0437\u043e\u0432\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .",
"MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.",
"MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \u0412\u0430\u0441 \u0435\u0441\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u043b\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u043b\u0438 Emby Premiere \u0432 \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u0438 \u0432\u0430\u0448\u0435\u0433\u043e Emby Server \u043f\u043e \u0421\u043f\u0440\u0430\u0432\u043a\u0430 -> Emby Premiere.",
- "MessagePaymentServicesUnavailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043b\u0443\u0436\u0431\u0430 \u043e\u043f\u043b\u0430\u0442\u044b \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.",
+ "MessagePaymentServicesUnavailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u044b\u0445 \u0443\u0441\u043b\u0443\u0433 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.",
"MessagePleaseSignInLocalNetwork": "\u041f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u044b \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u043a \u0432\u0430\u0448\u0435\u0439 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0447\u0435\u0440\u0435\u0437 Wifi- \u0438\u043b\u0438 LAN-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435.",
"ButtonUnlockWithPurchase": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043e\u043f\u043b\u0430\u0442\u044b",
"ButtonUnlockPrice": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c {0}",
@@ -2228,7 +2225,7 @@
"ErrorSavingTvProvider": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0422\u0412. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043e\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
"ErrorGettingTvLineups": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
"MessageCreateAccountAt": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430 {0}",
- "ErrorPleaseSelectLineup": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443. \u0415\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b, \u0442\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u044b\u043c\u0438.",
+ "ErrorPleaseSelectLineup": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443. \u0415\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f, \u0442\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u044b\u043c\u0438.",
"HeaderTryEmbyPremiere": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 Emby Premiere",
"ButtonBecomeSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere",
"ButtonClosePlayVideo": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0438 \u0432\u043e\u0441\u043f\u0440. \u043c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
@@ -2249,7 +2246,7 @@
"HeaderSortOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438",
"ButtonDisconnect": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f",
"ButtonMenu": "\u041c\u0435\u043d\u044e",
- "ForAdditionalLiveTvOptions": "\u0414\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412, \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0438\u043c\u0435\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0432\u043a\u043b\u0430\u0434\u043a\u0435 \u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b.",
+ "ForAdditionalLiveTvOptions": "\u0414\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412, \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0438\u043c\u0435\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0432\u043a\u043b\u0430\u0434\u043a\u0435 \u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0443\u0441\u043b\u0443\u0433\u0438.",
"ButtonGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434",
"ButtonRecordedTv": "\u0422\u0412-\u0437\u0430\u043f\u0438\u0441\u0438",
"HeaderDisconnectFromPlayer": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "\u0423 \u043c\u0435\u043d\u044f \u0438\u043c\u0435\u0435\u0442\u0441\u044f Emby Premiere",
"IPurchasedThisApp": "\u042f \u043f\u0440\u0438\u043e\u0431\u0440\u0451\u043b \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435",
"DrmChannelsNotImported": "\u041a\u0430\u043d\u0430\u043b\u044b \u0441 DRM \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f.",
- "ConfigureDateAdded": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0434\u0430\u0442\u044b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u0438 Emby \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u0445 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438"
+ "ConfigureDateAdded": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0434\u0430\u0442\u044b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u0438 Emby Server \u0432 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u0445 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
+ "LabelAllowHWTranscoding": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443",
+ "AllowHWTranscodingHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0442\u044e\u043d\u0435\u0440\u0443 \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0442\u043e\u043a\u0438 \"\u043d\u0430 \u043b\u0435\u0442\u0443\". \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443, \u0442\u0440\u0435\u0431\u0443\u0435\u043c\u0443\u044e \u0432 Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0443\u044e\u0449\u0438\u0435 \u043c\u043e\u0438\u043c \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430\u043c"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/server.json b/dashboard-ui/strings/server.json
deleted file mode 100644
index 55b2cf84a9..0000000000
--- a/dashboard-ui/strings/server.json
+++ /dev/null
@@ -1,2336 +0,0 @@
-{
- "LabelExit": "Exit",
- "LabelVisitCommunity": "Visit Community",
- "LabelGithub": "Github",
- "LabelSwagger": "Swagger",
- "LabelStandard": "Standard",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
- "LabelBrowseLibrary": "Browse Library",
- "LabelConfigureServer": "Configure Emby",
- "LabelOpenLibraryViewer": "Open Library Viewer",
- "LabelRestartServer": "Restart Server",
- "LabelShowLogWindow": "Show Log Window",
- "LabelPrevious": "Previous",
- "LabelFinish": "Finish",
- "LabelNext": "Next",
- "LabelYoureDone": "You're Done!",
- "WelcomeToProject": "Welcome to Emby!",
- "ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
- "TellUsAboutYourself": "Tell us about yourself",
- "ButtonQuickStartGuide": "Quick start guide",
- "LabelYourFirstName": "Your first name:",
- "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
- "UserProfilesIntro": "Emby 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": "Emby 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. When running as a service, you will need to ensure that the service account has access to your media folders.",
- "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.",
- "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, 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.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Emby Premiere Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
- "ButtonOk": "Ok",
- "ButtonCancel": "Cancel",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTaskTriggers": "Task Triggers",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "FolderTypeMixed": "Mixed content",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
- "HeaderSetupLibrary": "Setup your media libraries",
- "ButtonAddMediaFolder": "Add media folder",
- "LabelFolderType": "Folder type:",
- "ReferToMediaLibraryWiki": "Refer to the media library wiki.",
- "LabelCountry": "Country:",
- "LabelLanguage": "Language:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
- "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": "Emby Server can download information about your media to enable rich presentations.",
- "TabPreferences": "Preferences",
- "TabPassword": "Password",
- "TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
- "TabImage": "Image",
- "TabProfile": "Profile",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
- "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
- "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
- "HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
- "LabelAudioLanguagePreference": "Audio language preference:",
- "LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionSmartSubtitles": "Smart",
- "OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
- "TabProfiles": "Profiles",
- "TabSecurity": "Security",
- "ButtonAddUser": "Add User",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite 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.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
- "ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
- "ButtonUpload": "Upload",
- "HeaderUploadNewImage": "Upload New Image",
- "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.",
- "MessageNothingHere": "Nothing here.",
- "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
- "TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
- "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",
- "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",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
- "OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "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",
- "TitlePlugins": "Plugins",
- "HeaderAutomaticUpdates": "Automatic Updates",
- "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:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
- "OptionHasSubtitles": "Subtitles",
- "OptionHasTrailer": "Trailer",
- "OptionHasThemeSong": "Theme Song",
- "OptionHasThemeVideo": "Theme Video",
- "TabMovies": "Movies",
- "TabStudios": "Studios",
- "TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
- "HeaderLatestTrailers": "Latest Trailers",
- "OptionHasSpecialFeatures": "Special Features",
- "OptionImdbRating": "IMDb Rating",
- "OptionParentalRating": "Parental Rating",
- "OptionPremiereDate": "Premiere Date",
- "TabBasic": "Basic",
- "TabAdvanced": "Advanced",
- "OptionContinuing": "Continuing",
- "OptionEnded": "Ended",
- "HeaderAirDays": "Air Days",
- "OptionSunday": "Sunday",
- "OptionMonday": "Monday",
- "OptionTuesday": "Tuesday",
- "OptionWednesday": "Wednesday",
- "OptionThursday": "Thursday",
- "OptionFriday": "Friday",
- "OptionSaturday": "Saturday",
- "HeaderManagement": "Management",
- "LabelManagement": "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": "Emby Premiere Key",
- "TabBecomeSupporter": "Get Emby Premiere",
- "TabEmbyPremiere": "Emby Premiere",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
- "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
- "SearchKnowledgeBase": "Search the Knowledge Base",
- "VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
- "OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
- "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:",
- "ButtonHelp": "Help",
- "OptionAllowUserToManageServer": "Allow this user to manage the server",
- "HeaderFeatureAccess": "Feature Access",
- "OptionAllowMediaPlayback": "Allow media playback",
- "OptionAllowBrowsingLiveTv": "Allow Live TV access",
- "OptionAllowDeleteLibraryContent": "Allow media deletion",
- "OptionAllowManageLiveTv": "Allow Live TV recording management",
- "OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
- "OptionMissingTmdbId": "Missing Tmdb Id",
- "OptionIsHD": "HD",
- "OptionIsSD": "SD",
- "OptionMetascore": "Metascore",
- "ButtonSelect": "Select",
- "ButtonGroupVersions": "Group Versions",
- "ButtonAddToCollection": "Add to Collection",
- "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
- "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java/C# converters through a donated license.",
- "HeaderCredits": "Credits",
- "PleaseSupportOtherProduces": "Please support other free products we utilize:",
- "VersionNumber": "Version {0}",
- "TabPaths": "Paths",
- "TabServer": "Server",
- "TabTranscoding": "Transcoding",
- "TitleAdvanced": "Advanced",
- "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": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
- "LabelImagesByNamePath": "Images by name path:",
- "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
- "LabelMetadataPath": "Metadata path:",
- "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.",
- "LabelTranscodingTempPath": "Transcoding temporary path:",
- "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.",
- "TabBasics": "Basics",
- "TabTV": "TV",
- "TabGames": "Games",
- "TabMusic": "Music",
- "TabOthers": "Others",
- "HeaderExtractChapterImagesFor": "Extract chapter images for:",
- "OptionMovies": "Movies",
- "OptionEpisodes": "Episodes",
- "OptionOtherVideos": "Other Videos",
- "TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
- "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. This will cause library scans to take longer and will result in more disk activity.",
- "LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
- "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 when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
- "LabelMetadataDownloadLanguage": "Preferred download language:",
- "ButtonAutoScroll": "Auto-scroll",
- "LabelImageSavingConvention": "Image saving convention:",
- "LabelImageSavingConventionHelp": "Emby recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.",
- "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",
- "TabCollections": "Collections",
- "HeaderChannels": "Channels",
- "TabRecordings": "Recordings",
- "TabScheduled": "Scheduled",
- "TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
- "ButtonCancelRecording": "Cancel Recording",
- "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",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
- "OptionPriority": "Priority",
- "OptionRecordOnAllChannels": "Record on all channels",
- "OptionRecordAnytime": "Record at any time",
- "OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
- "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.",
- "OptionAutomatic": "Auto",
- "HeaderServices": "Services",
- "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.",
- "LabelCustomizeOptionsPerMediaType": "Customize for 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",
- "TabOther": "Other",
- "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 Trigger",
- "HeaderAddScheduledTaskTrigger": "Add 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:",
- "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.",
- "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": "Emby 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 between SSDP searches performed by Emby.",
- "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. Changes to a system profile will be saved to a new custom profile.",
- "TitleDashboard": "Dashboard",
- "TabHome": "Home",
- "TabInfo": "Info",
- "HeaderLinks": "Links",
- "HeaderSystemPaths": "System Paths",
- "LinkCommunity": "Community",
- "LinkGithub": "Github",
- "LinkApi": "Api",
- "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 Emby is an ongoing project.",
- "LabelReadHowYouCanContribute": "Learn how you can contribute.",
- "HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
- "ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
- "LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
- "LabelExternalDDNS": "External WAN Address:",
- "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
- "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",
- "TitleAutoOrganize": "Auto-Organize",
- "TabActivityLog": "Activity Log",
- "TabSmartMatches": "Smart Matches",
- "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog",
- "HeaderName": "Name",
- "HeaderDate": "Date",
- "HeaderSource": "Source",
- "HeaderStatus": "Status",
- "HeaderDestination": "Destination",
- "HeaderProgram": "Program",
- "HeaderClients": "Clients",
- "LabelCompleted": "Completed",
- "LabelFailed": "Failed",
- "LabelSkipped": "Skipped",
- "HeaderEpisodeOrganization": "Episode Organization",
- "LabelSeries": "Series:",
- "LabelSeasonNumber": "Season number:",
- "LabelEpisodeNumber": "Episode number:",
- "LabelEndingEpisodeNumber": "Ending episode number:",
- "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
- "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
- "HeaderSupportTheTeam": "Support the Emby Team",
- "LabelSupportAmount": "Amount (USD)",
- "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.",
- "ButtonEnterSupporterKey": "Enter Emby Premiere key",
- "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.",
- "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.",
- "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
- "OptionEnableEpisodeOrganization": "Enable new episode organization",
- "LabelWatchFolder": "Watch folder:",
- "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.",
- "ButtonViewScheduledTasks": "View scheduled tasks",
- "LabelMinFileSizeForOrganize": "Minimum file size (MB):",
- "LabelMinFileSizeForOrganizeHelp": "Files under this size will be ignored.",
- "LabelSeasonFolderPattern": "Season folder pattern:",
- "LabelSeasonZeroFolderName": "Season zero folder name:",
- "HeaderEpisodeFilePattern": "Episode file pattern",
- "LabelEpisodePattern": "Episode pattern:",
- "LabelMultiEpisodePattern": "Multi-Episode pattern:",
- "HeaderSupportedPatterns": "Supported Patterns",
- "HeaderTerm": "Term",
- "HeaderPattern": "Pattern",
- "HeaderResult": "Result",
- "LabelDeleteEmptyFolders": "Delete empty folders after organizing",
- "LabelDeleteEmptyFoldersHelp": "Enable this to keep the download directory clean.",
- "LabelDeleteLeftOverFiles": "Delete left over files with the following extensions:",
- "LabelDeleteLeftOverFilesHelp": "Separate with ;. For example: .nfo;.txt",
- "OptionOverwriteExistingEpisodes": "Overwrite existing episodes",
- "LabelTransferMethod": "Transfer method",
- "OptionCopy": "Copy",
- "OptionMove": "Move",
- "LabelTransferMethodHelp": "Copy or move files from the watch folder",
- "HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
- "HeaderRunningTasks": "Running Tasks",
- "HeaderActiveDevices": "Active Devices",
- "HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
- "ButtonRestartNow": "Restart Now",
- "ButtonRestart": "Restart",
- "ButtonShutdown": "Shutdown",
- "ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
- "PleaseUpdateManually": "Please shutdown the server and update manually.",
- "NewServerVersionAvailable": "A new version of Emby Server is available!",
- "ServerUpToDate": "Emby Server is up to date",
- "LabelComponentsUpdated": "The following components have been installed or updated:",
- "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.",
- "LabelDownMixAudioScale": "Audio boost when downmixing:",
- "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
- "ButtonLinkKeys": "Transfer Key",
- "LabelOldSupporterKey": "Old Emby Premiere key",
- "LabelNewSupporterKey": "New Emby Premiere key",
- "HeaderMultipleKeyLinking": "Transfer to New Key",
- "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.",
- "LabelCurrentEmailAddress": "Current email address",
- "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
- "HeaderForgotKey": "Forgot Key",
- "LabelEmailAddress": "Email address",
- "LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
- "ButtonRetrieveKey": "Retrieve Key",
- "LabelSupporterKey": "Emby Premiere key (paste from email):",
- "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.",
- "MessageInvalidKey": "Emby Premiere key is missing or invalid.",
- "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.",
- "HeaderDisplaySettings": "Display Settings",
- "TabPlayTo": "Play To",
- "LabelEnableDlnaServer": "Enable Dlna server",
- "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.",
- "LabelEnableBlastAliveMessages": "Blast alive messages",
- "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.",
- "LabelBlastMessageInterval": "Alive message interval (seconds)",
- "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
- "LabelDefaultUser": "Default user:",
- "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
- "TitleDlna": "DLNA",
- "TitleChannels": "Channels",
- "HeaderServerSettings": "Server Settings",
- "HeaderRequireManualLogin": "Require manual username entry for:",
- "HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
- "OptionOtherApps": "Other apps",
- "OptionMobileApps": "Mobile apps",
- "HeaderNotificationList": "Click on a notification to configure sending options.",
- "NotificationOptionApplicationUpdateAvailable": "Application update available",
- "NotificationOptionApplicationUpdateInstalled": "Application update installed",
- "NotificationOptionPluginUpdateInstalled": "Plugin update installed",
- "NotificationOptionPluginInstalled": "Plugin installed",
- "NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
- "NotificationOptionTaskFailed": "Scheduled task failure",
- "NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
- "CategoryUser": "User",
- "CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
- "LabelAvailableTokens": "Available tokens:",
- "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
- "OptionAllUsers": "All users",
- "OptionAdminUsers": "Administrators",
- "OptionCustomUsers": "Custom",
- "ButtonArrowUp": "Up",
- "ButtonArrowDown": "Down",
- "ButtonArrowLeft": "Left",
- "ButtonArrowRight": "Right",
- "ButtonBack": "Back",
- "ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
- "ButtonPageUp": "Page Up",
- "ButtonPageDown": "Page Down",
- "PageAbbreviation": "PG",
- "ButtonHome": "Home",
- "ButtonSearch": "Search",
- "ButtonSettings": "Settings",
- "ButtonTakeScreenshot": "Capture Screenshot",
- "ButtonLetterUp": "Letter Up",
- "ButtonLetterDown": "Letter Down",
- "PageButtonAbbreviation": "PG",
- "LetterButtonAbbreviation": "A",
- "TabNowPlaying": "Now Playing",
- "TabNavigation": "Navigation",
- "TabControls": "Controls",
- "ButtonScenes": "Scenes",
- "ButtonSubtitles": "Subtitles",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "ButtonStop": "Stop",
- "ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
- "LabelGroupMoviesIntoCollections": "Group movies into collections",
- "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
- "NotificationOptionPluginError": "Plugin failure",
- "ButtonVolumeUp": "Volume up",
- "ButtonVolumeDown": "Volume down",
- "HeaderLatestMedia": "Latest Media",
- "OptionNoSubtitles": "No Subtitles",
- "OptionSpecialFeatures": "Special Features",
- "HeaderCollections": "Collections",
- "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.",
- "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.",
- "HeaderResponseProfile": "Response Profile",
- "LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
- "LabelProfileContainer": "Container:",
- "LabelProfileVideoCodecs": "Video codecs:",
- "LabelProfileAudioCodecs": "Audio codecs:",
- "LabelProfileCodecs": "Codecs:",
- "HeaderDirectPlayProfile": "Direct Play Profile",
- "HeaderTranscodingProfile": "Transcoding Profile",
- "HeaderCodecProfile": "Codec Profile",
- "HeaderContainerProfile": "Container Profile",
- "OptionProfileVideo": "Video",
- "OptionProfileAudio": "Audio",
- "OptionProfileVideoAudio": "Video Audio",
- "OptionProfilePhoto": "Photo",
- "LabelUserLibrary": "User library:",
- "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.",
- "OptionPlainStorageFolders": "Display all folders as plain storage folders",
- "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".",
- "OptionPlainVideoItems": "Display all videos as plain video items",
- "OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
- "LabelSupportedMediaTypes": "Supported Media Types:",
- "TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
- "TabDirectPlay": "Direct Play",
- "TabContainers": "Containers",
- "TabCodecs": "Codecs",
- "TabResponses": "Responses",
- "HeaderProfileInformation": "Profile Information",
- "LabelEmbedAlbumArtDidl": "Embed album art in Didl",
- "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.",
- "LabelAlbumArtPN": "Album art PN:",
- "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some clients require a specific value, regardless of the size of the image.",
- "LabelAlbumArtMaxWidth": "Album art max width:",
- "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.",
- "LabelAlbumArtMaxHeight": "Album art max height:",
- "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.",
- "LabelIconMaxWidth": "Icon max width:",
- "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.",
- "LabelIconMaxHeight": "Icon max height:",
- "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.",
- "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.",
- "HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
- "LabelMaxBitrate": "Max bitrate:",
- "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
- "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
- "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
- "LabelFriendlyName": "Friendly name",
- "LabelManufacturer": "Manufacturer",
- "LabelManufacturerUrl": "Manufacturer url",
- "LabelModelName": "Model name",
- "LabelModelNumber": "Model number",
- "LabelModelDescription": "Model description",
- "LabelModelUrl": "Model url",
- "LabelSerialNumber": "Serial number",
- "LabelDeviceDescription": "Device description",
- "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.",
- "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.",
- "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.",
- "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.",
- "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.",
- "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.",
- "LabelXDlnaCap": "X-Dlna cap:",
- "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.",
- "LabelXDlnaDoc": "X-Dlna doc:",
- "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.",
- "LabelSonyAggregationFlags": "Sony aggregation flags:",
- "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.",
- "LabelTranscodingContainer": "Container:",
- "LabelTranscodingVideoCodec": "Video codec:",
- "LabelTranscodingVideoProfile": "Video profile:",
- "LabelTranscodingAudioCodec": "Audio codec:",
- "OptionEnableM2tsMode": "Enable M2ts mode",
- "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.",
- "OptionEstimateContentLength": "Estimate content length when transcoding",
- "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding",
- "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
- "HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
- "TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
- "LabelOpenSubtitlesUsername": "Open Subtitles username:",
- "LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
- "LabelDownloadLanguages": "Download languages:",
- "ButtonRegister": "Register",
- "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
- "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
- "HeaderSendMessage": "Send Message",
- "ButtonSend": "Send",
- "LabelMessageText": "Message text:",
- "LabelMessageTitle": "Message title:",
- "MessageNoAvailablePlugins": "No available plugins.",
- "LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
- "ValueSeriesNamePeriod": "Series.name",
- "ValueSeriesNameUnderscore": "Series_name",
- "ValueEpisodeNamePeriod": "Episode.name",
- "ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
- "HeaderTypeText": "Enter Text",
- "LabelTypeText": "Text",
- "HeaderSearchForSubtitles": "Search for Subtitles",
- "MessageNoSubtitleSearchResultsFound": "No search results founds.",
- "TabDisplay": "Display",
- "TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
- "LabelEnableThemeSongs": "Enable theme songs",
- "LabelEnableBackdrops": "Enable backdrops",
- "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
- "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
- "OptionAuto": "Auto",
- "OptionYes": "Yes",
- "OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
- "LabelHomePageSection1": "Home page section 1:",
- "LabelHomePageSection2": "Home page section 2:",
- "LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
- "OptionResumablemedia": "Resume",
- "OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
- "OptionNone": "None",
- "HeaderLiveTv": "Live TV",
- "HeaderReports": "Reports",
- "HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
- "MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
- "ButtonMarkRead": "Mark Read",
- "OptionDefaultSort": "Default",
- "OptionCommunityMostWatchedSort": "Most Watched",
- "TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
- "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
- "ButtonDismiss": "Dismiss",
- "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
- "LabelChannelStreamQuality": "Preferred internet channel quality:",
- "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
- "OptionBestAvailableStreamQuality": "Best available",
- "LabelEnableChannelContentDownloadingFor": "Enable channel content downloading for:",
- "LabelEnableChannelContentDownloadingForHelp": "Some channels support downloading content prior to viewing. Enable this in low bandwidth enviornments to download channel content during off hours. Content is downloaded as part of the channel download scheduled task.",
- "LabelChannelDownloadPath": "Channel content download path:",
- "LabelChannelDownloadPathHelp": "Specify a custom download path if desired. Leave empty to download to an internal program data folder.",
- "LabelChannelDownloadAge": "Delete content after: (days)",
- "LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
- "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
- "ViewTypeMovies": "Movies",
- "ViewTypeTvShows": "TV",
- "ViewTypeGames": "Games",
- "ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
- "ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
- "HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
- "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
- "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
- "OptionDisplayAdultContent": "Display adult content",
- "OptionLibraryFolders": "Media folders",
- "TitleRemoteControl": "Remote Control",
- "OptionLatestTvRecordings": "Latest recordings",
- "LabelProtocolInfo": "Protocol info:",
- "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfoSettings": "Nfo Settings",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
- "LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
- "TabServices": "Services",
- "TabLogs": "Logs",
- "HeaderServerLogFiles": "Server log files:",
- "TabBranding": "Branding",
- "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.",
- "LabelLoginDisclaimer": "Login disclaimer:",
- "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
- "OptionList": "List",
- "TabDashboard": "Dashboard",
- "TitleServer": "Server",
- "LabelCache": "Cache:",
- "LabelLogs": "Logs:",
- "LabelMetadata": "Metadata:",
- "LabelImagesByName": "Images by name:",
- "LabelTranscodingTemporaryFiles": "Transcoding temporary files:",
- "HeaderLatestMusic": "Latest Music",
- "HeaderBranding": "Branding",
- "HeaderApiKeys": "Api Keys",
- "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.",
- "HeaderApiKey": "Api Key",
- "HeaderApp": "App",
- "HeaderDevice": "Device",
- "HeaderUser": "User",
- "HeaderDateIssued": "Date Issued",
- "LabelChapterName": "Chapter {0}",
- "HeaderHttpHeaders": "Http Headers",
- "HeaderIdentificationHeader": "Identification Header",
- "LabelValue": "Value:",
- "LabelMatchType": "Match type:",
- "OptionEquals": "Equals",
- "OptionRegex": "Regex",
- "OptionSubstring": "Substring",
- "TabView": "View",
- "TabSort": "Sort",
- "TabFilter": "Filter",
- "ButtonView": "View",
- "LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
- "LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
- "HeaderFeatures": "Features",
- "HeaderAdvanced": "Advanced",
- "ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
- "HeaderChapters": "Chapters",
- "HeaderResumeSettings": "Resume Settings",
- "TabSync": "Sync",
- "TitleUsers": "Users",
- "LabelProtocol": "Protocol:",
- "OptionProtocolHttp": "Http",
- "OptionProtocolHls": "Http Live Streaming",
- "LabelContext": "Context:",
- "OptionContextStreaming": "Streaming",
- "OptionContextStatic": "Sync",
- "ButtonAddToPlaylist": "Add to playlist",
- "TabPlaylists": "Playlists",
- "ButtonClose": "Close",
- "LabelAllLanguages": "All languages",
- "HeaderBrowseOnlineImages": "Browse Online Images",
- "LabelSource": "Source:",
- "OptionAll": "All",
- "LabelImage": "Image:",
- "ButtonBrowseImages": "Browse Images",
- "HeaderImages": "Images",
- "HeaderBackdrops": "Backdrops",
- "HeaderScreenshots": "Screenshots",
- "HeaderAddUpdateImage": "Add/Update Image",
- "LabelDropImageHere": "Drop image here",
- "LabelJpgPngOnly": "JPG/PNG only",
- "LabelImageType": "Image type:",
- "OptionPrimary": "Primary",
- "OptionArt": "Art",
- "OptionBox": "Box",
- "OptionBoxRear": "Box rear",
- "OptionDisc": "Disc",
- "OptionIcon": "Icon",
- "OptionLogo": "Logo",
- "OptionMenu": "Menu",
- "OptionScreenshot": "Screenshot",
- "OptionLocked": "Locked",
- "OptionUnidentified": "Unidentified",
- "OptionMissingParentalRating": "Missing parental rating",
- "OptionStub": "Stub",
- "OptionSeason0": "Season 0",
- "LabelReport": "Report:",
- "OptionReportSongs": "Songs",
- "OptionReportSeries": "Series",
- "OptionReportSeasons": "Seasons",
- "OptionReportTrailers": "Trailers",
- "OptionReportMusicVideos": "Music videos",
- "OptionReportMovies": "Movies",
- "OptionReportHomeVideos": "Home videos",
- "OptionReportGames": "Games",
- "OptionReportEpisodes": "Episodes",
- "OptionReportCollections": "Collections",
- "OptionReportBooks": "Books",
- "OptionReportArtists": "Artists",
- "OptionReportAlbums": "Albums",
- "OptionReportAdultVideos": "Adult videos",
- "ButtonMore": "More",
- "HeaderActivity": "Activity",
- "ScheduledTaskStartedWithName": "{0} started",
- "ScheduledTaskCancelledWithName": "{0} was cancelled",
- "ScheduledTaskCompletedWithName": "{0} completed",
- "ScheduledTaskFailed": "Scheduled task completed",
- "PluginInstalledWithName": "{0} was installed",
- "PluginUpdatedWithName": "{0} was updated",
- "PluginUninstalledWithName": "{0} was uninstalled",
- "ScheduledTaskFailedWithName": "{0} failed",
- "ItemAddedWithName": "{0} was added to the library",
- "ItemRemovedWithName": "{0} was removed from the library",
- "DeviceOnlineWithName": "{0} is connected",
- "UserOnlineFromDevice": "{0} is online from {1}",
- "DeviceOfflineWithName": "{0} has disconnected",
- "UserOfflineFromDevice": "{0} has disconnected from {1}",
- "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}",
- "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
- "LabelRunningTimeValue": "Running time: {0}",
- "LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
- "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
- "UserCreatedWithName": "User {0} has been created",
- "UserPasswordChangedWithName": "Password has been changed for user {0}",
- "UserDeletedWithName": "User {0} has been deleted",
- "MessageServerConfigurationUpdated": "Server configuration has been updated",
- "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated",
- "MessageApplicationUpdated": "Emby Server has been updated",
- "AuthenticationSucceededWithUserName": "{0} successfully authenticated",
- "FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
- "UserStartedPlayingItemWithValues": "{0} has started playing {1}",
- "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
- "AppDeviceValues": "App: {0}, Device: {1}",
- "ProviderValue": "Provider: {0}",
- "LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
- "HeaderRecentActivity": "Recent Activity",
- "HeaderPeople": "People",
- "HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
- "OptionComposers": "Composers",
- "OptionOthers": "Others",
- "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.",
- "ViewTypeFolders": "Folders",
- "LabelDisplayFoldersView": "Display a folders view to show plain media folders",
- "ViewTypeLiveTvRecordingGroups": "Recordings",
- "ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
- "HeaderPassword": "Password",
- "HeaderLocalAccess": "Local Access",
- "HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
- "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
- "HeaderPersonInfo": "Person Info",
- "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
- "LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
- "LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
- "ButtonIdentify": "Identify",
- "LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
- "LabelAlbum": "Album:",
- "LabelCommunityRating": "Community rating:",
- "LabelVoteCount": "Vote count:",
- "LabelMetascore": "Metascore:",
- "LabelCriticRating": "Critic rating:",
- "LabelCriticRatingSummary": "Critic rating summary:",
- "LabelAwardSummary": "Award summary:",
- "LabelWebsite": "Website:",
- "LabelTagline": "Tagline:",
- "LabelOverview": "Overview:",
- "LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
- "LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
- "LabelAirDate": "Air days:",
- "LabelAirTime:": "Air time:",
- "LabelRuntimeMinutes": "Run time (minutes):",
- "LabelParentalRating": "Parental rating:",
- "LabelCustomRating": "Custom rating:",
- "LabelBudget": "Budget",
- "LabelRevenue": "Revenue ($):",
- "LabelOriginalAspectRatio": "Original aspect ratio:",
- "LabelPlayers": "Players:",
- "Label3DFormat": "3D format:",
- "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers",
- "HeaderSpecialEpisodeInfo": "Special Episode Info",
- "HeaderExternalIds": "External Id's:",
- "LabelDvdSeasonNumber": "Dvd season number:",
- "LabelDvdEpisodeNumber": "Dvd episode number:",
- "LabelAbsoluteEpisodeNumber": "Absolute episode number:",
- "LabelAirsBeforeSeason": "Airs before season:",
- "LabelAirsAfterSeason": "Airs after season:",
- "LabelAirsBeforeEpisode": "Airs before episode:",
- "LabelTreatImageAs": "Treat image as:",
- "LabelDisplayOrder": "Display order:",
- "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in",
- "HeaderCountries": "Countries",
- "HeaderGenres": "Genres",
- "HeaderPlotKeywords": "Plot Keywords",
- "HeaderStudios": "Studios",
- "HeaderTags": "Tags",
- "HeaderMetadataSettings": "Metadata Settings",
- "LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
- "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "HeaderDonationType": "Donation type:",
- "OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionNoTrailer": "No Trailer",
- "OptionNoThemeSong": "No Theme Song",
- "OptionNoThemeVideo": "No Theme Video",
- "LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonPurchase": "Purchase",
- "OptionActor": "Actor",
- "OptionComposer": "Composer",
- "OptionDirector": "Director",
- "OptionGuestStar": "Guest star",
- "OptionProducer": "Producer",
- "OptionWriter": "Writer",
- "LabelAirDays": "Air days:",
- "LabelAirTime": "Air time:",
- "HeaderMediaInfo": "Media Info",
- "HeaderPhotoInfo": "Photo Info",
- "HeaderInstall": "Install",
- "LabelSelectVersionToInstall": "Select version to install:",
- "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere",
- "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.",
- "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.",
- "HeaderReviews": "Reviews",
- "HeaderDeveloperInfo": "Developer Info",
- "HeaderRevisionHistory": "Revision History",
- "ButtonViewWebsite": "View website",
- "HeaderXmlSettings": "Xml Settings",
- "HeaderXmlDocumentAttributes": "Xml Document Attributes",
- "HeaderXmlDocumentAttribute": "Xml Document Attribute",
- "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
- "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
- "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
- "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
- "LabelConnectUserName": "Emby username or email address:",
- "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
- "LabelExternalPlayers": "External players:",
- "LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
- "HeaderSubtitleProfile": "Subtitle Profile",
- "HeaderSubtitleProfiles": "Subtitle Profiles",
- "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
- "LabelFormat": "Format:",
- "LabelMethod": "Method:",
- "LabelDidlMode": "Didl mode:",
- "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)",
- "OptionResElement": "res element",
- "OptionEmbedSubtitles": "Embed within container",
- "OptionExternallyDownloaded": "External download",
- "OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
- "LabelSubtitleFormatHelp": "Example: srt",
- "ButtonLearnMore": "Learn more",
- "TabPlayback": "Playback",
- "HeaderAudioSettings": "Audio Settings",
- "HeaderSubtitleSettings": "Subtitle Settings",
- "TabCinemaMode": "Cinema Mode",
- "TitlePlayback": "Playback",
- "LabelEnableCinemaModeFor": "Enable cinema mode for:",
- "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
- "OptionTrailersFromMyMovies": "Include trailers from movies in my library",
- "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies",
- "LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
- "LabelEnableIntroParentalControl": "Enable smart parental control",
- "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
- "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
- "LabelCustomIntrosPath": "Custom intros path:",
- "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
- "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
- "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
- "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
- "LabelDisplayTrailersWithinMovieSuggestions": "Display trailers within movie suggestions",
- "LabelDisplayTrailersWithinMovieSuggestionsHelp": "Requires installation of the Trailer channel.",
- "CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.",
- "LabelEnableCinemaMode": "Enable cinema mode",
- "HeaderCinemaMode": "Cinema Mode",
- "LabelDateAddedBehavior": "Date added behavior for new content:",
- "OptionDateAddedImportTime": "Use date scanned into the library",
- "OptionDateAddedFileTime": "Use file creation date",
- "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
- "LabelNumberTrailerToPlay": "Number of trailers to play:",
- "TitleDevices": "Devices",
- "TabCameraUpload": "Camera Upload",
- "TabDevices": "Devices",
- "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.",
- "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.",
- "LabelCameraUploadPath": "Camera upload path:",
- "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
- "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
- "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
- "LabelCustomDeviceDisplayName": "Display name:",
- "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
- "HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
- "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
- "ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
- "HeaderGuests": "Guests",
- "HeaderLocalUsers": "Local Users",
- "HeaderPendingInvitations": "Pending Invitations",
- "TabParentalControl": "Parental Control",
- "HeaderAccessSchedule": "Access Schedule",
- "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.",
- "ButtonAddSchedule": "Add Schedule",
- "LabelAccessDay": "Day of week:",
- "LabelAccessStart": "Start time:",
- "LabelAccessEnd": "End time:",
- "HeaderSchedule": "Schedule",
- "OptionEveryday": "Every day",
- "OptionWeekdays": "Weekdays",
- "OptionWeekends": "Weekends",
- "MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
- "ButtonTrailer": "Trailer",
- "OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
- "HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
- "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
- "HeaderNewUsers": "New Users",
- "ButtonSignUp": "Sign up",
- "ButtonForgotPassword": "Forgot password",
- "OptionDisableUserPreferences": "Disable access to user preferences",
- "OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
- "HeaderSelectServer": "Select Server",
- "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.",
- "TitleNewUser": "New User",
- "ButtonConfigurePassword": "Configure Password",
- "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.",
- "HeaderLibraryAccess": "Library Access",
- "HeaderChannelAccess": "Channel Access",
- "HeaderLatestItems": "Latest Items",
- "LabelSelectLastestItemsFolders": "Include media from the following sections in Latest Items",
- "HeaderShareMediaFolders": "Share Media Folders",
- "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
- "HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
- "HeaderForgotPassword": "Forgot Password",
- "TitleForgotPassword": "Forgot Password",
- "TitlePasswordReset": "Password Reset",
- "LabelPasswordRecoveryPinCode": "Pin code:",
- "HeaderPasswordReset": "Password Reset",
- "HeaderParentalRatings": "Parental Ratings",
- "HeaderVideoTypes": "Video Types",
- "HeaderYears": "Years",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
- "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
- "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
- "TabActivity": "Activity",
- "TitleSync": "Sync",
- "OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
- "NameSeasonUnknown": "Season Unknown",
- "NameSeasonNumber": "Season {0}",
- "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
- "TabJobs": "Jobs",
- "TabSyncJobs": "Sync Jobs",
- "LabelTagFilterMode": "Mode:",
- "LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
- "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
- "MessageReenableUser": "See below to reenable",
- "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
- "OptionTVMovies": "TV Movies",
- "HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
- "HeaderUpcomingPrograms": "Upcoming Programs",
- "ButtonMoreItems": "More",
- "LabelShowLibraryTileNames": "Show library tile names",
- "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
- "OptionEnableTranscodingThrottle": "Enable throttling",
- "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
- "LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
- "OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
- "HeaderPlayback": "Media Playback",
- "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
- "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
- "TabStreaming": "Streaming",
- "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
- "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
- "LabelConversionCpuCoreLimit": "CPU core limit:",
- "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
- "OptionEnableFullSpeedConversion": "Enable full speed conversion",
- "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
- "HeaderPlaylists": "Playlists",
- "HeaderViewStyles": "View Styles",
- "LabelSelectViewStyles": "Enable enhanced presentations for:",
- "LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
- "TabPhotos": "Photos",
- "TabVideos": "Videos",
- "HeaderWelcomeToEmby": "Welcome to Emby",
- "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
- "ButtonSkip": "Skip",
- "TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
- "ButtonConnect": "Connect",
- "LabelServerHost": "Host:",
- "LabelServerHostHelp": "192.168.1.100 or https://myserver.com",
- "LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
- "ButtonChangeServer": "Change Server",
- "HeaderConnectToServer": "Connect to Server",
- "OptionReportList": "List View",
- "OptionReportStatistics": "Statistics",
- "OptionReportGrouping": "Grouping",
- "HeaderExport": "Export",
- "HeaderColumns": "Columns",
- "ButtonReset": "Reset",
- "OptionEnableExternalVideoPlayers": "Enable external video players",
- "ButtonUnlockGuide": "Unlock Guide",
- "LabelEnableFullScreen": "Enable fullscreen mode",
- "LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
- "LabelEmail": "Email:",
- "LabelUsername": "Username:",
- "HeaderSignUp": "Sign Up",
- "LabelPasswordConfirm": "Password (confirm):",
- "ButtonAddServer": "Add Server",
- "TabHomeScreen": "Home Screen",
- "HeaderDisplay": "Display",
- "HeaderNavigation": "Navigation",
- "LegendTheseSettingsShared": "These settings are shared on all devices",
- "OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
- "OptionOtherTrailers": "Include trailers from older movies",
- "HeaderOverview": "Overview",
- "HeaderShortOverview": "Short Overview",
- "HeaderType": "Type",
- "HeaderSeverity": "Severity",
- "OptionReportActivities": "Activities Log",
- "HeaderTunerDevices": "Tuner Devices",
- "ButtonAddDevice": "Add Device",
- "HeaderAddDevice": "Add Device",
- "HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
- "TabExternalServices": "External Services",
- "TabTuners": "Tuners",
- "HeaderGuideProviders": "Guide Providers",
- "AddGuideProviderHelp": "Add a source for TV Guide information",
- "LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
- "LabelLineup": "Lineup:",
- "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
- "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
- "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
- "ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
- "HeaderUnidentified": "Unidentified",
- "HeaderImagePrimary": "Primary",
- "HeaderImageBackdrop": "Backdrop",
- "HeaderImageLogo": "Logo",
- "HeaderUserPrimaryImage": "User Image",
- "ButtonDisplaySettings": "Display settings",
- "ButtonHomeScreenSettings": "Home screen settings",
- "ButtonPlaybackSettings": "Playback settings",
- "ButtonProfile": "Profile",
- "ButtonDisplaySettingsHelp": "Your Emby display settings",
- "ButtonHomeScreenSettingsHelp": "Configure the display of your home screen",
- "ButtonPlaybackSettingsHelp": "Specify your audio and subtitle preferences, streaming quality, and more.",
- "ButtonProfileHelp": "Set your profile image and password.",
- "HeaderHomeScreenSettings": "Home Screen settings",
- "HeaderProfile": "Profile",
- "HeaderLanguage": "Language",
- "ButtonSyncSettings": "Sync settings",
- "ButtonSyncSettingsHelp": "Configure your sync settings",
- "LabelTranscodingThreadCount": "Transcoding thread count:",
- "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
- "OptionMax": "Max",
- "HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
- "OptionSyncOnlyOnWifi": "Sync only on Wifi",
- "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
- "HeaderMetadata": "Metadata",
- "HeaderRecordingOptions": "Recording Options",
- "HeaderUpcomingForKids": "Upcoming for Kids",
- "HeaderSetupLiveTV": "Setup Live TV",
- "LabelTunerType": "Tuner type:",
- "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
- "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
- "HeaderSetupTVGuide": "Setup TV Guide",
- "LabelDataProvider": "Data provider:",
- "OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
- "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
- "HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
- "HeaderVideos": "Videos",
- "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
- "OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
- "LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
- "LabelHardwareAccelerationType": "Hardware acceleration:",
- "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
- "ButtonServerDashboard": "Server Dashboard",
- "HeaderAdmin": "Admin",
- "ButtonSignOut": "Sign out",
- "HeaderCameraUpload": "Camera Upload",
- "SelectCameraUploadServers": "Upload camera photos to the following servers:",
- "ButtonClear": "Clear",
- "LabelFolder": "Folder:",
- "HeadersFolders": "Folders",
- "LabelDisplayName": "Display name:",
- "HeaderNewRecording": "New Recording",
- "ButtonAdvanced": "Advanced",
- "LabelCodecIntrosPath": "Codec intros path:",
- "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.",
- "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
- "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
- "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
- "FileExtension": "File extension",
- "OptionReplaceExistingImages": "Replace existing images",
- "OptionPlayNextEpisodeAutomatically": "Play next episode automatically",
- "OptionDownloadImagesInAdvance": "Download all images in advance",
- "SettingsSaved": "Settings saved.",
- "OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.",
- "Users": "Users",
- "Delete": "Delete",
- "Administrator": "Administrator",
- "Password": "Password",
- "DeleteImage": "Delete Image",
- "MessageThankYouForSupporting": "Thank you for supporting Emby.",
- "MessagePleaseSupportProject": "Please support Emby.",
- "DeleteImageConfirmation": "Are you sure you wish to delete this image?",
- "FileReadCancelled": "The file read has been canceled.",
- "FileNotFound": "File not found.",
- "FileReadError": "An error occurred while reading the file.",
- "DeleteUser": "Delete User",
- "DeleteUserConfirmation": "Are you sure you wish to delete this user?",
- "PasswordResetHeader": "Reset Password",
- "PasswordResetComplete": "The password has been reset.",
- "PinCodeResetComplete": "The pin code has been reset.",
- "PasswordResetConfirmation": "Are you sure you wish to reset the password?",
- "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?",
- "HeaderPinCodeReset": "Reset Pin Code",
- "PasswordSaved": "Password saved.",
- "PasswordMatchError": "Password and password confirmation must match.",
- "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.",
- "HeaderNewApiKey": "New Api Key",
- "LabelAppName": "App name",
- "LabelAppNameExample": "Example: Sickbeard, NzbDrone",
- "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
- "MessageKeyEmailedTo": "Key emailed to {0}.",
- "MessageKeysLinked": "Keys linked.",
- "HeaderConfirmation": "Confirmation",
- "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.",
- "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.",
- "TextEnjoyBonusFeatures": "Enjoy Bonus Features",
- "ButtonCancelSyncJob": "Cancel sync",
- "HeaderAddTag": "Add Tag",
- "LabelTag": "Tag:",
- "ButtonSelectView": "Select view",
- "HeaderSelectDate": "Select Date",
- "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
- "HeaderIdentifyItem": "Identify Item",
- "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
- "LabelFromHelp": "Example: {0} (on the server)",
- "HeaderMyMedia": "My Media",
- "ButtonRemoveFromCollection": "Remove from Collection",
- "LabelAutomaticUpdateLevel": "Automatic update level:",
- "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
- "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
- "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.",
- "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:",
- "HeaderConfirmRemoveUser": "Remove User",
- "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?",
- "ValueTimeLimitSingleHour": "Time limit: 1 hour",
- "ValueTimeLimitMultiHour": "Time limit: {0} hours",
- "PluginCategoryGeneral": "General",
- "PluginCategoryContentProvider": "Content Providers",
- "PluginCategoryScreenSaver": "Screen Savers",
- "PluginCategoryTheme": "Themes",
- "PluginCategorySync": "Sync",
- "PluginCategorySocialIntegration": "Social Networks",
- "PluginCategoryNotifications": "Notifications",
- "PluginCategoryMetadata": "Metadata",
- "PluginCategoryLiveTV": "Live TV",
- "PluginCategoryChannel": "Channels",
- "HeaderSearch": "Search",
- "ValueDateCreated": "Date created: {0}",
- "LabelArtist": "Artist",
- "LabelMovie": "Movie",
- "LabelMusicVideo": "Music Video",
- "LabelEpisode": "Episode",
- "LabelSeries": "Series",
- "LabelStopping": "Stopping",
- "LabelCancelled": "(cancelled)",
- "LabelFailed": "(failed)",
- "ButtonDownload": "Download",
- "SyncJobStatusQueued": "Queued",
- "SyncJobStatusConverting": "Converting",
- "SyncJobStatusFailed": "Failed",
- "SyncJobStatusCancelled": "Cancelled",
- "SyncJobStatusCompleted": "Synced",
- "SyncJobStatusReadyToTransfer": "Ready to Transfer",
- "SyncJobStatusTransferring": "Transferring",
- "SyncJobStatusCompletedWithError": "Synced with errors",
- "SyncJobItemStatusReadyToTransfer": "Ready to Transfer",
- "LabelCollection": "Collection",
- "HeaderAddToCollection": "Add to Collection",
- "NewCollectionNameExample": "Example: Star Wars Collection",
- "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata",
- "LabelSelectCollection": "Select collection:",
- "HeaderDevices": "Devices",
- "ButtonScheduledTasks": "Scheduled tasks",
- "MessageItemsAdded": "Items added",
- "HeaderSelectCertificatePath": "Select Certificate Path",
- "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
- "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
- "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
- "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
- "HeaderWelcomeToProjectWebClient": "Welcome to Emby",
- "ButtonTakeTheTour": "Take the tour",
- "HeaderWelcomeBack": "Welcome back!",
- "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
- "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
- "HeaderSelectDevices": "Select Devices",
- "ButtonCancelItem": "Cancel item",
- "ButtonQueueForRetry": "Queue for retry",
- "ButtonReenable": "Re-enable",
- "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal",
- "LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
- "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
- "HeaderDeleteTaskTrigger": "Delete Task Trigger",
- "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?",
- "MessageNoPluginsInstalled": "You have no plugins installed.",
- "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.",
- "LabelVersionInstalled": "{0} installed",
- "LabelNumberReviews": "{0} Reviews",
- "LabelFree": "Free",
- "HeaderPlaybackError": "Playback Error",
- "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.",
- "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.",
- "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.",
- "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.",
- "HeaderSelectAudio": "Select Audio",
- "HeaderSelectSubtitles": "Select Subtitles",
- "ButtonMarkForRemoval": "Remove from device",
- "ButtonUnmarkForRemoval": "Cancel removal from device",
- "LabelDefaultStream": "(Default)",
- "LabelForcedStream": "(Forced)",
- "LabelDefaultForcedStream": "(Default/Forced)",
- "LabelUnknownLanguage": "Unknown language",
- "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?",
- "ButtonMute": "Mute",
- "ButtonUnmute": "Unmute",
- "ButtonQueue": "Queue",
- "ButtonPlaylist": "Playlist",
- "LabelEnabled": "Enabled",
- "LabelDisabled": "Disabled",
- "ButtonMoreInformation": "More Information",
- "LabelNoUnreadNotifications": "No unread notifications.",
- "ButtonViewNotifications": "View notifications",
- "ButtonMarkTheseRead": "Mark these read",
- "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.",
- "MessageInvalidUser": "Invalid username or password. Please try again.",
- "HeaderLoginFailure": "Login Failure",
- "RecommendationBecauseYouLike": "Because you like {0}",
- "RecommendationBecauseYouWatched": "Because you watched {0}",
- "RecommendationDirectedBy": "Directed by {0}",
- "RecommendationStarring": "Starring {0}",
- "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation",
- "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?",
- "MessageRecordingCancelled": "Recording cancelled.",
- "MessageRecordingScheduled": "Recording scheduled.",
- "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation",
- "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?",
- "MessageSeriesCancelled": "Series cancelled.",
- "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion",
- "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?",
- "MessageRecordingDeleted": "Recording deleted.",
- "ButonCancelRecording": "Cancel Recording",
- "MessageRecordingSaved": "Recording saved.",
- "OptionWeekend": "Weekends",
- "OptionWeekday": "Weekdays",
- "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?",
- "LiveTvUpdateAvailable": "(Update available)",
- "LabelVersionUpToDate": "Up to date!",
- "ButtonResetTuner": "Reset tuner",
- "HeaderResetTuner": "Reset Tuner",
- "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.",
- "ButtonCancelSeries": "Cancel Series",
- "HeaderSeriesRecordings": "Series Recordings",
- "LabelAnytime": "Any time",
- "StatusRecording": "Recording",
- "StatusWatching": "Watching",
- "StatusRecordingProgram": "Recording {0}",
- "StatusWatchingProgram": "Watching {0}",
- "HeaderSplitMedia": "Split Media Apart",
- "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?",
- "HeaderError": "Error",
- "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.",
- "MessagePleaseSelectOneItem": "Please select at least one item.",
- "MessagePleaseSelectTwoItems": "Please select at least two items.",
- "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?",
- "HeaderLibraryFolders": "Media Folders",
- "HeaderFavoriteMovies": "Favorite Movies",
- "HeaderFavoriteShows": "Favorite Shows",
- "HeaderFavoriteEpisodes": "Favorite Episodes",
- "HeaderFavoriteGames": "Favorite Games",
- "HeaderRatingsDownloads": "Rating / Downloads",
- "HeaderConfirmProfileDeletion": "Confirm Profile Deletion",
- "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?",
- "HeaderSelectServerCachePath": "Select Server Cache Path",
- "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path",
- "HeaderSelectImagesByNamePath": "Select Images By Name Path",
- "HeaderSelectMetadataPath": "Select Metadata Path",
- "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.",
- "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.",
- "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.",
- "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.",
- "HeaderSelectChannelDownloadPath": "Select Channel Download Path",
- "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.",
- "OptionNewCollection": "New...",
- "LabelChapterDownloaders": "Chapter downloaders:",
- "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.",
- "HeaderFavoriteAlbums": "Favorite Albums",
- "HeaderLatestChannelMedia": "Latest Channel Items",
- "ButtonOrganizeFile": "Organize File",
- "ButtonDeleteFile": "Delete File",
- "HeaderOrganizeFile": "Organize File",
- "HeaderDeleteFile": "Delete File",
- "StatusSkipped": "Skipped",
- "StatusFailed": "Failed",
- "StatusSuccess": "Success",
- "MessageFileWillBeDeleted": "The following file will be deleted:",
- "MessageSureYouWishToProceed": "Are you sure you wish to proceed?",
- "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:",
- "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:",
- "MessageDestinationTo": "to:",
- "HeaderSelectWatchFolder": "Select Watch Folder",
- "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.",
- "OrganizePatternResult": "Result: {0}",
- "AutoOrganizeError": "Error Organizing File",
- "FileOrganizeManually": "Organize File",
- "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.",
- "HeaderRestart": "Restart",
- "HeaderShutdown": "Shutdown",
- "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?",
- "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?",
- "ValueItemCount": "{0} item",
- "ValueItemCountPlural": "{0} items",
- "NewVersionOfSomethingAvailable": "A new version of {0} is available!",
- "VersionXIsAvailableForDownload": "Version {0} is now available for download.",
- "LabelVersionNumber": "Version {0}",
- "LabelPlayMethodTranscoding": "Transcoding",
- "LabelPlayMethodDirectStream": "Direct Streaming",
- "LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelAudioCodec": "Audio: {0}",
- "LabelVideoCodec": "Video: {0}",
- "LabelLocalAccessUrl": "Local access: {0}",
- "LabelRemoteAccessUrl": "Remote access: {0}",
- "LabelRunningOnPort": "Running on http port {0}.",
- "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.",
- "HeaderLatestFromChannel": "Latest from {0}",
- "LabelUnknownLanaguage": "Unknown language",
- "HeaderCurrentSubtitles": "Current Subtitles",
- "MessageDownloadQueued": "The download has been queued.",
- "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?",
- "ButtonRemoteControl": "Remote Control",
- "HeaderLatestTvRecordings": "Latest Recordings",
- "LabelCurrentPath": "Current path:",
- "HeaderSelectMediaPath": "Select Media Path",
- "HeaderSelectPath": "Select Path",
- "ButtonNetwork": "Network",
- "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.",
- "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.",
- "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Emby system user at least read access to your storage locations.",
- "HeaderMenu": "Menu",
- "ButtonOpen": "Open",
- "ButtonOpenInNewTab": "Open in new tab",
- "ButtonShuffle": "Shuffle",
- "ButtonInstantMix": "Instant mix",
- "ButtonResume": "Resume",
- "HeaderAudioTracks": "Audio Tracks",
- "HeaderLibraries": "Libraries",
- "HeaderVideoQuality": "Video Quality",
- "MessageErrorPlayingVideo": "There was an error playing the video.",
- "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
- "ButtonDashboard": "Dashboard",
- "ButtonReports": "Reports",
- "ButtonMetadataManager": "Metadata Manager",
- "HeaderTime": "Time",
- "HeaderAlbum": "Album",
- "HeaderAlbumArtist": "Album Artist",
- "HeaderArtist": "Artist",
- "LabelAddedOnDate": "Added {0}",
- "ButtonStart": "Start",
- "OptionBlockOthers": "Others",
- "OptionBlockTvShows": "TV Shows",
- "OptionBlockTrailers": "Trailers",
- "OptionBlockMusic": "Music",
- "OptionBlockMovies": "Movies",
- "OptionBlockBooks": "Books",
- "OptionBlockGames": "Games",
- "OptionBlockLiveTvPrograms": "Live TV Programs",
- "OptionBlockLiveTvChannels": "Live TV Channels",
- "OptionBlockChannelContent": "Internet Channel Content",
- "ButtonRevoke": "Revoke",
- "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.",
- "HeaderConfirmRevokeApiKey": "Revoke Api Key",
- "ValueContainer": "Container: {0}",
- "ValueAudioCodec": "Audio Codec: {0}",
- "ValueVideoCodec": "Video Codec: {0}",
- "ValueCodec": "Codec: {0}",
- "ValueConditions": "Conditions: {0}",
- "LabelAll": "All",
- "HeaderDeleteImage": "Delete Image",
- "MessageFileNotFound": "File not found.",
- "MessageFileReadError": "An error occurred reading this file.",
- "ButtonNextPage": "Next Page",
- "ButtonPreviousPage": "Previous Page",
- "ButtonMoveLeft": "Move left",
- "ButtonMoveRight": "Move right",
- "ButtonBrowseOnlineImages": "Browse online images",
- "HeaderDeleteItem": "Delete Item",
- "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
- "HeaderDeleteItems": "Delete Items",
- "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
- "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
- "MessageValueNotCorrect": "The value entered is not correct. Please try again.",
- "MessageItemSaved": "Item saved.",
- "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.",
- "OptionOff": "Off",
- "OptionOn": "On",
- "ButtonUninstall": "Uninstall",
- "HeaderEnabledFields": "Enabled Fields",
- "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.",
- "HeaderLiveTV": "Live TV",
- "MissingLocalTrailer": "Missing local trailer.",
- "MissingPrimaryImage": "Missing primary image.",
- "MissingBackdropImage": "Missing backdrop image.",
- "MissingLogoImage": "Missing logo image.",
- "MissingEpisode": "Missing episode.",
- "OptionScreenshots": "Screenshots",
- "OptionBackdrops": "Backdrops",
- "OptionImages": "Images",
- "OptionKeywords": "Keywords",
- "OptionTags": "Tags",
- "OptionStudios": "Studios",
- "OptionName": "Name",
- "OptionOverview": "Overview",
- "OptionGenres": "Genres",
- "OptionPeople": "People",
- "OptionProductionLocations": "Production Locations",
- "OptionBirthLocation": "Birth Location",
- "LabelAllChannels": "All channels",
- "LabelLiveProgram": "LIVE",
- "LabelNewProgram": "NEW",
- "LabelPremiereProgram": "PREMIERE",
- "LabelHDProgram": "HD",
- "HeaderChangeFolderType": "Change Content Type",
- "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.",
- "HeaderAlert": "Alert",
- "MessagePleaseRestart": "Please restart to finish updating.",
- "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.",
- "ButtonHide": "Hide",
- "MessageSettingsSaved": "Settings saved.",
- "ButtonMyProfile": "My Profile",
- "ButtonMyPreferences": "My Preferences",
- "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.",
- "LabelInstallingPackage": "Installing {0}",
- "LabelPackageInstallCompleted": "{0} installation completed.",
- "LabelPackageInstallFailed": "{0} installation failed.",
- "LabelPackageInstallCancelled": "{0} installation cancelled.",
- "TabLibrary": "Library",
- "TabDLNA": "DLNA",
- "TabLiveTV": "Live TV",
- "TabAutoOrganize": "Auto-Organize",
- "TabPlugins": "Plugins",
- "TabHelp": "Help",
- "ButtonFullscreen": "Fullscreen",
- "ButtonAudioTracks": "Audio Tracks",
- "ButtonQuality": "Quality",
- "HeaderNotifications": "Notifications",
- "HeaderSelectPlayer": "Select Player",
- "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.",
- "HeaderVideoError": "Video Error",
- "HeaderAddToPlaylist": "Add to Playlist",
- "LabelSelectPlaylist": "Playlist:",
- "OptionNewPlaylist": "New playlist...",
- "MessageAddedToPlaylistSuccess": "Ok",
- "ButtonViewSeriesRecording": "View series recording",
- "ValueOriginalAirDate": "Original air date: {0}",
- "ButtonRemoveFromPlaylist": "Remove from playlist",
- "HeaderSpecials": "Specials",
- "HeaderTrailers": "Trailers",
- "HeaderResolution": "Resolution",
- "HeaderRuntime": "Runtime",
- "HeaderCommunityRating": "Community rating",
- "HeaderParentalRating": "Parental rating",
- "HeaderReleaseDate": "Release date",
- "HeaderDateAdded": "Date added",
- "HeaderSeries": "Series",
- "HeaderSeason": "Season",
- "HeaderSeasonNumber": "Season number",
- "HeaderNetwork": "Network",
- "HeaderYear": "Year",
- "HeaderGameSystem": "Game system",
- "HeaderPlayers": "Players",
- "HeaderEmbeddedImage": "Embedded image",
- "HeaderTrack": "Track",
- "HeaderDisc": "Disc",
- "OptionCollections": "Collections",
- "OptionSeries": "Series",
- "OptionSeasons": "Seasons",
- "OptionGames": "Games",
- "OptionGameSystems": "Game systems",
- "OptionMusicArtists": "Music artists",
- "OptionMusicAlbums": "Music albums",
- "OptionMusicVideos": "Music videos",
- "OptionSongs": "Songs",
- "OptionHomeVideos": "Home videos",
- "OptionBooks": "Books",
- "OptionAdultVideos": "Adult videos",
- "ButtonUp": "Up",
- "ButtonDown": "Down",
- "LabelMetadataReaders": "Metadata readers:",
- "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.",
- "LabelMetadataDownloaders": "Metadata downloaders:",
- "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.",
- "LabelMetadataSavers": "Metadata savers:",
- "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.",
- "LabelImageFetchers": "Image fetchers:",
- "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.",
- "ButtonQueueAllFromHere": "Queue all from here",
- "ButtonPlayAllFromHere": "Play all from here",
- "LabelDynamicExternalId": "{0} Id:",
- "HeaderIdentify": "Identify Item",
- "PersonTypePerson": "Person",
- "LabelTitleDisplayOrder": "Title display order:",
- "OptionSortName": "Sort name",
- "LabelDiscNumber": "Disc number",
- "LabelParentNumber": "Parent number",
- "LabelTrackNumber": "Track number:",
- "LabelNumber": "Number:",
- "LabelDateOfBirth": "Date of birth:",
- "LabelBirthYear": "Birth year:",
- "LabelBirthDate": "Birth date:",
- "LabelDeathDate": "Death date:",
- "HeaderRemoveMediaLocation": "Remove Media Location",
- "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?",
- "HeaderRenameMediaFolder": "Rename Media Folder",
- "LabelNewName": "New name:",
- "HeaderAddMediaFolder": "Add Media Folder",
- "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):",
- "HeaderRemoveMediaFolder": "Remove Media Folder",
- "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:",
- "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?",
- "ButtonRename": "Rename",
- "ButtonChangeContentType": "Change content type",
- "HeaderMediaLocations": "Media Locations",
- "LabelContentTypeValue": "Content type: {0}",
- "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
- "FolderTypeUnset": "Unset (mixed content)",
- "BirthPlaceValue": "Birth place: {0}",
- "DeathDateValue": "Died: {0}",
- "BirthDateValue": "Born: {0}",
- "HeaderLatestReviews": "Latest Reviews",
- "HeaderPluginInstallation": "Plugin Installation",
- "MessageAlreadyInstalled": "This version is already installed.",
- "ValueReviewCount": "{0} Reviews",
- "MessageYouHaveVersionInstalled": "You currently have version {0} installed.",
- "MessageTrialExpired": "The trial period for this feature has expired",
- "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
- "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
- "ValuePriceUSD": "Price: {0} (USD)",
- "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.",
- "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
- "HeaderEmbyAccountAdded": "Emby Account Added",
- "MessageEmbyAccountAdded": "The Emby account has been added to this user.",
- "MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
- "HeaderEmbyAccountRemoved": "Emby Account Removed",
- "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.",
- "TooltipLinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderUnrated": "Unrated",
- "ValueDiscNumber": "Disc {0}",
- "HeaderUnknownDate": "Unknown Date",
- "HeaderUnknownYear": "Unknown Year",
- "ValueMinutes": "{0} min",
- "ButtonPlayExternalPlayer": "Play with external player",
- "HeaderSelectExternalPlayer": "Select External Player",
- "HeaderExternalPlayerPlayback": "External Player Playback",
- "ButtonImDone": "I'm Done",
- "OptionWatched": "Watched",
- "OptionUnwatched": "Unwatched",
- "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.",
- "LabelMarkAs": "Mark as:",
- "OptionInProgress": "In-Progress",
- "LabelResumePoint": "Resume point:",
- "ValueOneMovie": "1 movie",
- "ValueMovieCount": "{0} movies",
- "ValueOneTrailer": "1 trailer",
- "ValueTrailerCount": "{0} trailers",
- "ValueOneSeries": "1 series",
- "ValueSeriesCount": "{0} series",
- "ValueOneEpisode": "1 episode",
- "ValueEpisodeCount": "{0} episodes",
- "ValueOneGame": "1 game",
- "ValueGameCount": "{0} games",
- "ValueOneAlbum": "1 album",
- "ValueAlbumCount": "{0} albums",
- "ValueOneSong": "1 song",
- "ValueSongCount": "{0} songs",
- "ValueOneMusicVideo": "1 music video",
- "ValueMusicVideoCount": "{0} music videos",
- "HeaderOffline": "Offline",
- "HeaderUnaired": "Unaired",
- "HeaderMissing": "Missing",
- "ButtonWebsite": "Website",
- "TooltipFavorite": "Favorite",
- "TooltipLike": "Like",
- "TooltipDislike": "Dislike",
- "TooltipPlayed": "Played",
- "ValueSeriesYearToPresent": "{0}-Present",
- "ValueAwards": "Awards: {0}",
- "ValueBudget": "Budget: {0}",
- "ValueRevenue": "Revenue: {0}",
- "ValuePremiered": "Premiered {0}",
- "ValuePremieres": "Premieres {0}",
- "ValueStudio": "Studio: {0}",
- "ValueStudios": "Studios: {0}",
- "ValueStatus": "Status: {0}",
- "LabelLimit": "Limit:",
- "ValueLinks": "Links: {0}",
- "HeaderCastAndCrew": "Cast & Crew",
- "ValueArtist": "Artist: {0}",
- "ValueArtists": "Artists: {0}",
- "MediaInfoCameraMake": "Camera make",
- "MediaInfoCameraModel": "Camera model",
- "MediaInfoAltitude": "Altitude",
- "MediaInfoAperture": "Aperture",
- "MediaInfoExposureTime": "Exposure time",
- "MediaInfoFocalLength": "Focal length",
- "MediaInfoOrientation": "Orientation",
- "MediaInfoIsoSpeedRating": "Iso speed rating",
- "MediaInfoLatitude": "Latitude",
- "MediaInfoLongitude": "Longitude",
- "MediaInfoShutterSpeed": "Shutter speed",
- "MediaInfoSoftware": "Software",
- "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...",
- "HeaderMovies": "Movies",
- "HeaderAlbums": "Albums",
- "HeaderGames": "Games",
- "HeaderBooks": "Books",
- "HeaderEpisodes": "Episodes",
- "HeaderSeasons": "Seasons",
- "HeaderTracks": "Tracks",
- "HeaderItems": "Items",
- "HeaderOtherItems": "Other Items",
- "ButtonFullReview": "Full review",
- "ValueAsRole": "as {0}",
- "ValueGuestStar": "Guest star",
- "MediaInfoSize": "Size",
- "MediaInfoPath": "Path",
- "MediaInfoFile": "File",
- "MediaInfoFormat": "Format",
- "MediaInfoContainer": "Container",
- "MediaInfoDefault": "Default",
- "MediaInfoForced": "Forced",
- "MediaInfoExternal": "External",
- "MediaInfoTimestamp": "Timestamp",
- "MediaInfoPixelFormat": "Pixel format",
- "MediaInfoBitDepth": "Bit depth",
- "MediaInfoSampleRate": "Sample rate",
- "MediaInfoBitrate": "Bitrate",
- "MediaInfoChannels": "Channels",
- "MediaInfoLayout": "Layout",
- "MediaInfoLanguage": "Language",
- "MediaInfoCodec": "Codec",
- "MediaInfoCodecTag": "Codec tag",
- "MediaInfoProfile": "Profile",
- "MediaInfoLevel": "Level",
- "MediaInfoAspectRatio": "Aspect ratio",
- "MediaInfoResolution": "Resolution",
- "MediaInfoAnamorphic": "Anamorphic",
- "MediaInfoInterlaced": "Interlaced",
- "MediaInfoFramerate": "Framerate",
- "MediaInfoStreamTypeAudio": "Audio",
- "MediaInfoStreamTypeData": "Data",
- "MediaInfoStreamTypeVideo": "Video",
- "MediaInfoStreamTypeSubtitle": "Subtitle",
- "MediaInfoStreamTypeEmbeddedImage": "Embedded Image",
- "MediaInfoRefFrames": "Ref frames",
- "TabExpert": "Expert",
- "HeaderSelectCustomIntrosPath": "Select Custom Intros Path",
- "HeaderRateAndReview": "Rate and Review",
- "HeaderThankYou": "Thank You",
- "MessageThankYouForYourReview": "Thank you for your review.",
- "LabelYourRating": "Your rating:",
- "LabelFullReview": "Full review:",
- "LabelShortRatingDescription": "Short rating summary:",
- "OptionIRecommendThisItem": "I recommend this item",
- "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
- "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
- "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
- "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu",
- "WebClientTourMetadataManager": "Click edit to open the metadata manager",
- "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device",
- "WebClientTourCollections": "Create movie collections to group box sets together",
- "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps",
- "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app",
- "WebClientTourUserPreferences3": "Design the web client home page to your liking",
- "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players",
- "WebClientTourMobile1": "The web client works great on smartphones and tablets...",
- "WebClientTourMobile2": "and easily controls other devices and Emby apps",
- "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.",
- "MessageEnjoyYourStay": "Enjoy your stay",
- "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.",
- "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
- "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.",
- "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
- "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
- "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.",
- "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.",
- "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.",
- "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.",
- "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.",
- "DashboardTourSync": "Sync your personal media to your devices for offline viewing.",
- "MessageRefreshQueued": "Refresh queued",
- "TabExtras": "Extras",
- "HeaderUploadImage": "Upload Image",
- "DeviceLastUsedByUserName": "Last used by {0}",
- "HeaderDeleteDevice": "Delete Device",
- "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.",
- "LabelEnableCameraUploadFor": "Enable camera upload for:",
- "HeaderSelectUploadPath": "Select Upload Path",
- "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.",
- "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.",
- "ButtonLibraryAccess": "Library access",
- "ButtonParentalControl": "Parental control",
- "HeaderInvitationSent": "Invitation Sent",
- "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.",
- "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.",
- "HeaderConnectionFailure": "Connection Failure",
- "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.",
- "ButtonSelectServer": "Select Server",
- "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.",
- "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.",
- "DefaultErrorMessage": "There was an error processing the request. Please try again later.",
- "ButtonAccept": "Accept",
- "ButtonReject": "Reject",
- "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.",
- "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.",
- "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:",
- "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.",
- "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.",
- "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.",
- "HeaderInviteGuest": "Invite Guest",
- "ButtonLinkMyEmbyAccount": "Link my account now",
- "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.",
- "SyncMedia": "Sync Media",
- "HeaderCancelSyncJob": "Cancel Sync",
- "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?",
- "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.",
- "MessageSyncJobCreated": "Sync job created.",
- "LabelSyncTo": "Sync to:",
- "LabelSyncJobName": "Sync job name:",
- "LabelQuality": "Quality:",
- "OptionAutomaticallySyncNewContent": "Automatically sync new content",
- "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.",
- "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only",
- "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.",
- "LabelItemLimit": "Item limit:",
- "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
- "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
- "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
- "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
- "SyncJobItemStatusQueued": "Queued",
- "SyncJobItemStatusConverting": "Converting",
- "SyncJobItemStatusTransferring": "Transferring",
- "SyncJobItemStatusSynced": "Synced",
- "SyncJobItemStatusFailed": "Failed",
- "SyncJobItemStatusRemovedFromDevice": "Removed from device",
- "SyncJobItemStatusCancelled": "Cancelled",
- "LabelProfile": "Profile:",
- "LabelBitrateMbps": "Bitrate (Mbps):",
- "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.",
- "EmbyIntroDownloadMessageWithoutLink": "To download and install Emby Server visit the Emby website.",
- "ButtonNewServer": "New Server",
- "MyDevice": "My Device",
- "ButtonRemote": "Remote",
- "TabCast": "Cast",
- "TabScenes": "Scenes",
- "HeaderUnlockApp": "Unlock App",
- "HeaderUnlockSync": "Unlock Emby Sync",
- "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
- "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
- "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere.",
- "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
- "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
- "ButtonUnlockWithPurchase": "Unlock with Purchase",
- "ButtonUnlockPrice": "Unlock {0}",
- "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.",
- "OptionEnableFullscreen": "Enable Fullscreen",
- "ButtonServer": "Server",
- "HeaderLibrary": "Library",
- "HeaderMedia": "Media",
- "ButtonInbox": "Inbox",
- "HeaderGroupVersions": "Group Versions",
- "HeaderSaySomethingLike": "Say Something Like...",
- "ButtonTryAgain": "Try Again",
- "HeaderYouSaid": "You Said...",
- "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.",
- "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.",
- "MessageNoItemsFound": "No items found.",
- "ButtonManageServer": "Manage Server",
- "ButtonEditSubtitles": "Edit subtitles",
- "ButtonPreferences": "Preferences",
- "ButtonViewArtist": "View artist",
- "ButtonViewAlbum": "View album",
- "ButtonEditImages": "Edit images",
- "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.",
- "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
- "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
- "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
- "HeaderShare": "Share",
- "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
- "ButtonShare": "Share",
- "HeaderConfirm": "Confirm",
- "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
- "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?",
- "HeaderDeleteProvider": "Delete Provider",
- "HeaderAddProvider": "Add Provider",
- "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.",
- "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.",
- "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.",
- "MessageCreateAccountAt": "Create an account at {0}",
- "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
- "HeaderTryEmbyPremiere": "Try Emby Premiere",
- "ButtonBecomeSupporter": "Get Emby Premiere",
- "ButtonClosePlayVideo": "Close and play my media",
- "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
- "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
- "OptionEnableDisplayMirroring": "Enable display mirroring",
- "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
- "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
- "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
- "LabelLocalSyncStatusValue": "Status: {0}",
- "MessageSyncStarted": "Sync started",
- "NoSlideshowContentFound": "No slideshow images were found.",
- "OptionPhotoSlideshow": "Photo slideshow",
- "OptionBackdropSlideshow": "Backdrop slideshow",
- "HeaderTopPlugins": "Top Plugins",
- "ButtonOther": "Other",
- "HeaderSortBy": "Sort By",
- "HeaderSortOrder": "Sort Order",
- "ButtonDisconnect": "Disconnect",
- "ButtonMenu": "Menu",
- "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.",
- "ButtonGuide": "Guide",
- "ButtonRecordedTv": "Recorded TV",
- "HeaderDisconnectFromPlayer": "Disconnect from Player",
- "ConfirmEndPlayerSession": "Would you like to close Emby on the device?",
- "ButtonYes": "Yes",
- "AddUser": "Add User",
- "ButtonNo": "No",
- "ButtonRestorePreviousPurchase": "Restore Purchase",
- "AlreadyPaid": "Already Paid?",
- "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.",
- "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.",
- "ButtonForYou": "For You",
- "ButtonLibrary": "Library",
- "ButtonNowPlaying": "Now Playing",
- "ButtonViewNewApp": "View new app",
- "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!",
- "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.",
- "HeaderLatestMovies": "Latest Movies",
- "EmbyPremiereMonthly": "Emby Premiere Monthly",
- "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
- "HeaderEmailAddress": "E-Mail Address",
- "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.",
- "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.",
- "TermsOfUse": "Terms of use",
- "HeaderTryMultiSelect": "Try Multi-Select",
- "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!",
- "NumLocationsValue": "{0} folders",
- "ButtonAddMediaLibrary": "Add Media Library",
- "ButtonManageFolders": "Manage folders",
- "HeaderTryDragAndDrop": "Try Drag and Drop",
- "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!",
- "HeaderTryMicrosoftEdge": "Try Microsoft Edge",
- "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.",
- "HeaderTryModernBrowser": "Try a Modern Web Browser",
- "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.",
- "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.",
- "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.",
- "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.",
- "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
- "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
- "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
- "HeaderFavoriteArtists": "Favorite Artists",
- "HeaderFavoriteSongs": "Favorite Songs",
- "HeaderConfirmPluginInstallation": "Confirm Plugin Installation",
- "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.",
- "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.",
- "ButtonPlayOneMinute": "Play one minute",
- "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.",
- "HeaderTryPlayback": "Try Playback",
- "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere",
- "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.",
- "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.",
- "HeaderMobileSync": "Mobile Sync",
- "HeaderCloudSync": "Cloud Sync",
- "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
- "HeaderFreeApps": "Free Emby Apps",
- "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.",
- "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
- "CoverArt": "Cover Art",
- "ButtonOff": "Off",
- "TitleHardwareAcceleration": "Hardware Acceleration",
- "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.",
- "HeaderSelectCodecIntrosPath": "Select Codec Intros Path",
- "ButtonLocalRefresh": "Local refresh",
- "ButtonAddMissingData": "Add missing data only",
- "ButtonFullRefresh": "Full refresh",
- "ValueExample": "1:00 PM",
- "ButtonGotIt": "Got It",
- "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting",
- "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.",
- "LabelFileOrUrl": "File or url:",
- "OptionEnableForAllTuners": "Enable for all tuner devices",
- "HeaderTuners": "Tuners",
- "LabelOptionalM3uUrl": "M3U url (optional):",
- "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.",
- "TabResumeSettings": "Resume Settings",
- "HowDidYouPay": "How did you pay?",
- "IHaveEmbyPremiere": "I have Emby Premiere",
- "IPurchasedThisApp": "I purchased this app",
- "DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
-}
diff --git a/dashboard-ui/strings/sl-SI.json b/dashboard-ui/strings/sl-SI.json
index c88e4aba27..25f3445c7c 100644
--- a/dashboard-ui/strings/sl-SI.json
+++ b/dashboard-ui/strings/sl-SI.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Izhod",
"LabelVisitCommunity": "Obiscite Skupnost",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/sv.json b/dashboard-ui/strings/sv.json
index 5efeb06bcc..90277e8c66 100644
--- a/dashboard-ui/strings/sv.json
+++ b/dashboard-ui/strings/sv.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Avsluta",
"LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/tr.json b/dashboard-ui/strings/tr.json
index 68779b823e..6b5f0514d4 100644
--- a/dashboard-ui/strings/tr.json
+++ b/dashboard-ui/strings/tr.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Cikis",
"LabelVisitCommunity": "Bizi Ziyaret Edin",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/uk.json b/dashboard-ui/strings/uk.json
index 0bc1499216..754d98d78b 100644
--- a/dashboard-ui/strings/uk.json
+++ b/dashboard-ui/strings/uk.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u0412\u0438\u0439\u0442\u0438",
"LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/vi.json b/dashboard-ui/strings/vi.json
index ecbb88811c..71b35038c8 100644
--- a/dashboard-ui/strings/vi.json
+++ b/dashboard-ui/strings/vi.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "Tho\u00e1t",
"LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/zh-CN.json b/dashboard-ui/strings/zh-CN.json
index 411c84cfc2..7d35573444 100644
--- a/dashboard-ui/strings/zh-CN.json
+++ b/dashboard-ui/strings/zh-CN.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u9000\u51fa",
"LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/zh-HK.json b/dashboard-ui/strings/zh-HK.json
index cd2c75f213..d97cea7e3a 100644
--- a/dashboard-ui/strings/zh-HK.json
+++ b/dashboard-ui/strings/zh-HK.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u96e2\u958b",
"LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/zh-TW.json b/dashboard-ui/strings/zh-TW.json
index 0f3e969d08..a9a7cfba1b 100644
--- a/dashboard-ui/strings/zh-TW.json
+++ b/dashboard-ui/strings/zh-TW.json
@@ -1,7 +1,4 @@
{
- "LabelAllowHWTranscoding": "Allow hardware transcoding",
- "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
- "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files",
"LabelExit": "\u96e2\u958b",
"LabelVisitCommunity": "\u8a2a\u554f\u793e\u5340",
"LabelGithub": "Github",
@@ -2330,5 +2327,8 @@
"IHaveEmbyPremiere": "I have Emby Premiere",
"IPurchasedThisApp": "I purchased this app",
"DrmChannelsNotImported": "Channels with DRM will not be imported.",
- "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings"
+ "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
+ "LabelAllowHWTranscoding": "Allow hardware transcoding",
+ "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.",
+ "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files"
}
\ No newline at end of file