1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #1642 from MediaBrowser/dev

Dev
This commit is contained in:
Luke 2016-04-11 10:13:50 -04:00
commit 20515a6990
79 changed files with 880 additions and 3069 deletions

View file

@ -16,14 +16,15 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.0.50",
"_release": "1.0.50",
"version": "1.1.51",
"_release": "1.1.51",
"_resolution": {
"type": "version",
"tag": "1.0.50",
"commit": "7988bb63ffe48f61c7a1b69fb5f7ab73a8d30fdd"
"tag": "1.1.51",
"commit": "b118029cf5077fc940b3a651054357cbd4f7d04e"
},
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
"_target": "~1.0.3",
"_originalSource": "emby-apiclient"
"_target": "^1.1.51",
"_originalSource": "emby-apiclient",
"_direct": true
}

View file

@ -215,7 +215,7 @@
return connectUser;
};
var minServerVersion = '3.0.5724';
var minServerVersion = '3.0.5781';
self.minServerVersion = function (val) {
if (val) {

View file

@ -16,12 +16,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.2.8",
"_release": "1.2.8",
"version": "1.2.17",
"_release": "1.2.17",
"_resolution": {
"type": "version",
"tag": "1.2.8",
"commit": "ab69b1f6c75888a55b4baa100f2d3c527633bf49"
"tag": "1.2.17",
"commit": "3b194aa81bb6bb5303e5e42a4687f6a3b486a3eb"
},
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.0",

View file

@ -1,6 +1,31 @@
.actionSheet {
display: flex;
justify-content: center;
padding: 0;
border: none;
border-radius: 2px;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
/*opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
z-index: 999;
transform-origin: 100% 0;
display: block;
background: #fff;
margin: 0;
padding: 0;
border: none;
border-radius: 2px;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
will-change: transform;
transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1);
transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1);
z-index: -1;*/
}
.actionSheet.centered .actionSheetContent {
@ -10,7 +35,7 @@
.actionSheetContent {
margin: 0 !important;
padding: 1em 1em !important;
padding: .4em 0 !important;
flex-direction: column;
display: flex;
justify-content: center;
@ -18,7 +43,7 @@
}
.actionSheetMenuItem {
padding: .5em .5em;
padding: .7em 1.5em;
margin: 0;
text-transform: none;
text-align: inherit;
@ -47,8 +72,14 @@
h1.actionSheetTitle {
margin: .5em 0 1em !important;
padding: 0 1em;
}
h2.actionSheetTitle {
margin: .25em 0 .55em !important;
padding: 0 1em;
}
.actionSheet.extraSpacing {
font-size: 108%;
}

View file

@ -22,18 +22,6 @@
return results;
}
var docElem = doc.documentElement;
var docElemValues = {
clientTop: docElem.clientTop,
clientLeft: docElem.clientLeft
};
var win = doc.defaultView;
var winValues = {
pageXOffset: win.pageXOffset,
pageYOffset: win.pageYOffset
};
var box;
var elem;
@ -57,7 +45,7 @@
return results;
}
function getPosition(options) {
function getPosition(options, dlg) {
var windowHeight = window.innerHeight;
@ -70,9 +58,9 @@
pos.top += options.positionTo.offsetHeight / 2;
pos.left += options.positionTo.offsetWidth / 2;
// Account for popup size - we can't predict this yet so just estimate
pos.top -= (45 * options.items.length) / 2;
pos.left -= 80;
// Account for popup size
pos.top -= ((dlg.offsetHeight || 300) / 2);
pos.left -= ((dlg.offsetWidth || 160) / 2);
// Avoid showing too close to the bottom
pos.top = Math.min(pos.top, windowHeight - 300);
@ -94,16 +82,13 @@
function show(options) {
var pos = options.positionTo ? getPosition(options) : null;
// items
// positionTo
// showCancel
// title
var dialogOptions = {
removeOnClose: true,
enableHistory: options.enableHistory,
refit: pos == null
enableHistory: options.enableHistory
};
var backButton = false;
@ -122,6 +107,10 @@
var dlg = dialogHelper.createDialog(dialogOptions);
if (!layoutManager.tv) {
dlg.classList.add('extraSpacing');
}
dlg.classList.add('actionSheet');
var html = '';
@ -142,6 +131,10 @@
html += '<div class="actionSheetScroller">';
options.items.forEach(function (o) {
o.ironIcon = o.selected ? 'check' : null;
});
var itemsWithIcons = options.items.filter(function (o) {
return o.ironIcon;
});
@ -155,7 +148,6 @@
}
var enablePaperMenu = !layoutManager.tv;
enablePaperMenu = false;
var itemTagName = 'paper-button';
if (enablePaperMenu) {
@ -168,7 +160,7 @@
var option = options.items[i];
var autoFocus = option.selected ? ' autoFocus' : '';
html += '<' + itemTagName + autoFocus + ' noink class="actionSheetMenuItem" data-id="' + option.id + '" style="display:block;">';
html += '<' + itemTagName + autoFocus + ' class="actionSheetMenuItem" data-id="' + option.id + '" style="display:block;">';
if (option.ironIcon) {
html += '<iron-icon class="actionSheetItemIcon" icon="' + option.ironIcon + '"></iron-icon>';
@ -231,6 +223,8 @@
dialogHelper.open(dlg);
var pos = options.positionTo ? getPosition(options, dlg) : null;
if (pos) {
dlg.style.position = 'fixed';
dlg.style.margin = 0;

View file

@ -44,7 +44,9 @@ define(['dialogHelper', 'layoutManager', 'dialogText', 'html!./../prompt/icons.h
html += '</h2>';
}
if (options.text) {
var text = options.html || options.text;
if (text) {
if (options.title) {
html += '<p style="margin-top:2em;">';
@ -52,7 +54,7 @@ define(['dialogHelper', 'layoutManager', 'dialogText', 'html!./../prompt/icons.h
html += '<p>';
}
html += options.text;
html += text;
html += '</p>';
}

View file

@ -66,8 +66,10 @@ define(['layoutManager', 'dialogText'], function (layoutManager, dialogText) {
html += '<h2>' + options.title + '</h2>';
}
if (options.text) {
html += '<div>' + options.text + '</div>';
var text = options.html || options.text;
if (text) {
html += '<div>' + text + '</div>';
}
html += '<div class="buttons">';

View file

@ -1,6 +1,6 @@
.dialog {
margin: 0;
border-radius: 3px;
border-radius: 2px;
z-index: 999999 !important;
position: fixed;
margin: 24px 40px;
@ -10,6 +10,7 @@
height: auto;
border: 0;
padding: 0;
will-change: transform;
}
.dialog.fixedSize {

View file

@ -5,13 +5,17 @@ define([], function () {
var element = view.querySelector('*[autofocus]');
if (element) {
focus(element);
return element;
} else if (defaultToFirst !== false) {
element = getFocusableElements(view)[0];
if (element) {
focus(element);
return element;
}
}
return null;
}
function focus(element) {
@ -58,7 +62,8 @@ define([], function () {
return elem;
}
function isFocusableElementValid(elem) {
// Determines if a focusable element can be focused at a given point in time
function isCurrentlyFocusable(elem) {
if (elem.disabled) {
return false;
@ -84,7 +89,7 @@ define([], function () {
var elem = elems[i];
if (isFocusableElementValid(elem)) {
if (isCurrentlyFocusable(elem)) {
focusableElements.push(elem);
}
}
@ -203,7 +208,7 @@ define([], function () {
continue;
}
if (!isFocusableElementValid(curr)) {
if (!isCurrentlyFocusable(curr)) {
continue;
}
@ -480,6 +485,7 @@ define([], function () {
moveDown: function (sourceElement) {
nav(sourceElement, 3);
},
sendText: sendText
sendText: sendText,
isCurrentlyFocusable: isCurrentlyFocusable
};
});

View file

@ -1,23 +1,64 @@
define(['browser'], function (browser) {
define(['browser', 'appSettings'], function (browser, appSettings) {
function setLayout(self, layout, selectedLayout) {
if (layout == selectedLayout) {
self[layout] = true;
document.documentElement.classList.add('layout-' + layout);
} else {
self[layout] = false;
document.documentElement.classList.remove('layout-' + layout);
}
}
function layoutManager() {
var self = this;
self.setFormFactor = function (formFactor) {
self.setLayout = function (layout, save) {
self.mobile = false;
self.tv = false;
if (!layout || layout == 'auto') {
self.autoLayout();
self[formFactor] = true;
if (save !== false) {
appSettings.set('layout', '');
}
} else {
setLayout(self, 'mobile', layout);
setLayout(self, 'tv', layout);
setLayout(self, 'desktop', layout);
if (save !== false) {
appSettings.set('layout', layout);
}
}
};
// Take a guess at initial layout. The consuming app can override
if (browser.mobile) {
self.setFormFactor('mobile');
} else {
self.setFormFactor('desktop');
}
self.getSavedLayout = function (layout) {
return appSettings.get('layout');
};
self.autoLayout = function () {
// Take a guess at initial layout. The consuming app can override
if (browser.mobile) {
self.setLayout('mobile', false);
} else if (browser.tv) {
self.setLayout('tv', false);
} else {
self.setLayout(self.undetectedAutoLayout || 'desktop', false);
}
};
self.init = function () {
var saved = self.getSavedLayout();
if (saved) {
self.setLayout(saved, false);
} else {
self.autoLayout();
}
};
};
return new layoutManager();

View file

@ -69,7 +69,12 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
case MediaBrowser.ConnectionState.ServerUpdateNeeded:
{
require(['alert'], function (alert) {
alert(Globalize.translate('core#ServerUpdateNeeded', '<a href="https://emby.media">https://emby.media</a>')).then(function () {
alert({
text: Globalize.translate('core#ServerUpdateNeeded', 'https://emby.media'),
html: Globalize.translate('core#ServerUpdateNeeded', '<a href="https://emby.media">https://emby.media</a>')
}).then(function () {
embyRouter.showSelectServer();
});
});

View file

@ -0,0 +1,49 @@
.smoothScrollX {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
overflow-y: hidden;
scroll-behavior: smooth;
}
.hiddenScrollX {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
overflow-y: hidden;
white-space: nowrap;
scroll-behavior: smooth;
}
.hiddenScrollX, .layout-tv .smoothScrollX, .layout-mobile .smoothScrollX {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
.hiddenScrollX::-webkit-scrollbar, .layout-tv .smoothScrollX::-webkit-scrollbar, .layout-mobile .smoothScrollX::-webkit-scrollbar {
height: 0 !important;
display: none;
}
.smoothScrollY {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
scroll-behavior: smooth;
}
.hiddenScrollY, .layout-tv .smoothScrollY, .layout-mobile .smoothScrollY {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
scroll-behavior: smooth;
}
.hiddenScrollY {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
.hiddenScrollY::-webkit-scrollbar, .layout-tv .smoothScrollY::-webkit-scrollbar, .layout-mobile .smoothScrollY::-webkit-scrollbar {
width: 0 !important;
display: none;
}

View file

@ -1,4 +1,4 @@
define(['dialogHelper', 'inputManager', 'connectionManager', 'browser', 'css!./style', 'html!./icons', 'iron-icon-set', 'paper-fab', 'paper-icon-button', 'paper-spinner'], function (dialogHelper, inputmanager, connectionManager, browser) {
define(['dialogHelper', 'inputManager', 'connectionManager', 'layoutManager', 'css!./style', 'html!./icons', 'iron-icon-set', 'paper-fab', 'paper-icon-button', 'paper-spinner'], function (dialogHelper, inputmanager, connectionManager, layoutManager) {
return function (options) {
@ -90,7 +90,7 @@ define(['dialogHelper', 'inputManager', 'connectionManager', 'browser', 'css!./s
swiperInstance.on('onLazyImageLoad', onSlideChangeStart);
swiperInstance.on('onLazyImageReady', onSlideChangeEnd);
if (browser.mobile) {
if (layoutManager.mobile) {
pause();
} else {
play();

View file

@ -7,7 +7,11 @@ define(['viewcontainer', 'focusManager', 'queryString', 'connectionManager', 'ev
var lastView = currentView;
if (lastView) {
dispatchViewEvent(lastView, 'viewbeforehide');
var beforeHideResult = dispatchViewEvent(lastView, 'viewbeforehide', null, true);
if (!beforeHideResult) {
// todo: cancel
}
}
if (!newView.initComplete) {
@ -47,8 +51,12 @@ define(['viewcontainer', 'focusManager', 'queryString', 'connectionManager', 'ev
focusManager.autoFocus(view);
}
}
else if (view.activeElement) {
view.activeElement.focus();
else {
if (view.activeElement && document.body.contains(view.activeElement) && focusManager.isCurrentlyFocusable(view.activeElement)) {
focusManager.focus(view.activeElement);
} else {
focusManager.autoFocus(view);
}
}
view.dispatchEvent(new CustomEvent('viewshow', eventDetail));
@ -58,15 +66,15 @@ define(['viewcontainer', 'focusManager', 'queryString', 'connectionManager', 'ev
}
}
function dispatchViewEvent(view, eventName, isRestored) {
function dispatchViewEvent(view, eventName, isRestored, isCancellable) {
view.dispatchEvent(new CustomEvent(eventName, {
var eventResult = view.dispatchEvent(new CustomEvent(eventName, {
detail: {
type: view.getAttribute('data-type'),
isRestored: isRestored
},
bubbles: true,
cancelable: false
cancelable: isCancellable || false
}));
if (dispatchPageEvents) {
@ -79,6 +87,8 @@ define(['viewcontainer', 'focusManager', 'queryString', 'connectionManager', 'ev
cancelable: false
}));
}
return eventResult;
}
function getViewEventDetail(view, options, isRestore) {

View file

@ -45,7 +45,7 @@
"tag": "v1.0.11",
"commit": "e3c1ab0c72905b58fb4d9adc2921ea73b5c085a5"
},
"_source": "git://github.com/PolymerElements/paper-behaviors.git",
"_source": "git://github.com/polymerelements/paper-behaviors.git",
"_target": "^1.0.0",
"_originalSource": "PolymerElements/paper-behaviors"
"_originalSource": "polymerelements/paper-behaviors"
}

View file

@ -32,14 +32,14 @@
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0"
},
"ignore": [],
"homepage": "https://github.com/PolymerElements/paper-ripple",
"homepage": "https://github.com/polymerelements/paper-ripple",
"_release": "1.0.5",
"_resolution": {
"type": "version",
"tag": "v1.0.5",
"commit": "d72e7a9a8ab518b901ed18dde492df3b87a93be5"
},
"_source": "git://github.com/PolymerElements/paper-ripple.git",
"_source": "git://github.com/polymerelements/paper-ripple.git",
"_target": "^1.0.0",
"_originalSource": "PolymerElements/paper-ripple"
"_originalSource": "polymerelements/paper-ripple"
}

View file

@ -1,4 +1,4 @@
define(['libraryBrowser'], function (libraryBrowser) {
define(['libraryBrowser', 'scrollStyles'], function (libraryBrowser) {
function enableScrollX() {
return browserInfo.mobile && AppInfo.enableAppLayouts;

View file

@ -62,6 +62,47 @@
showNewUserInviteMessage(dlg, result);
}, function (response) {
Dashboard.hideLoadingMsg();
if (!response.status) {
// General error
require(['alert'], function (alert) {
alert({
text: Globalize.translate('DefaultErrorMessage')
});
});
} else if (response.status == 404) {
// User doesn't exist
require(['alert'], function (alert) {
alert({
text: Globalize.translate('GuestUserNotFound')
});
});
} else {
// status 400 = account not activated
// General error
showAccountErrorMessage();
}
});
});
}
function showAccountErrorMessage() {
var html = Globalize.translate('ErrorAddingGuestAccount1', '<a href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>');
html += '<br/><br/>' + Globalize.translate('ErrorAddingGuestAccount2', 'apps@emby.media');
var text = Globalize.translate('ErrorAddingGuestAccount1', 'https://emby.media/connect');
text += '\n\n' + Globalize.translate('ErrorAddingGuestAccount2', 'apps@emby.media');
require(['alert'], function (alert) {
alert({
text: text,
html: html
});
});
}
@ -78,9 +119,11 @@
Globalize.translate('MessageInvitationSentToNewUser', result.GuestDisplayName) :
Globalize.translate('MessageInvitationSentToUser', result.GuestDisplayName);
Dashboard.alert({
message: message,
title: Globalize.translate('HeaderInvitationSent')
require(['alert'], function (alert) {
alert({
text: message,
title: Globalize.translate('HeaderInvitationSent')
});
});
}

View file

@ -132,7 +132,7 @@
var key = 'servertestermessagetime';
var lastShown = parseInt(appSettings.get(key) || '0');
if ((new Date().getTime() - lastShown) < 172800000) {
if ((new Date().getTime() - lastShown) < 86400000) {
return;
}
@ -145,7 +145,7 @@
apiClient.getPublicSystemInfo().then(function (info) {
if (compareVersions(info.Version, '3.0.5912') == 1) {
if (compareVersions(info.Version, '3.0.5913') == 1) {
showInternal();
}
});

View file

@ -1,4 +1,4 @@
define(['jQuery', 'livetvcss', 'scripts/livetvcomponents'], function ($) {
define(['jQuery', 'livetvcss', 'scripts/livetvcomponents', 'scrollStyles'], function ($) {
return function (options) {

View file

@ -5,11 +5,11 @@
<a class="btnSelectDate" href="#" style="display:block;padding-left:5px;color:#fff;text-decoration:none;font-weight:normal!important;padding:5px 10px 4px 0;font-size:13px;"><iron-icon icon="schedule" style="margin-right:3px;width:18px;height:18px;"></iron-icon><span class="currentDate" style="vertical-align: middle;"></span></a>
</div>
</div>
<div class="timeslotHeaders hiddenScrollX"></div>
<div class="timeslotHeaders smoothScrollX"></div>
</div>
<div class="programContainer">
<div class="channelList"></div>
<div class="programGrid hiddenScrollX"></div>
<div class="programGrid smoothScrollX"></div>
</div>
<div class="channelPaging"></div>
</div>

View file

@ -563,52 +563,6 @@ div[data-role="controlgroup"] a.ui-btn-active {
color: #fff !important;
}
.smoothScrollX {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
overflow-y: hidden;
}
.hiddenScrollX {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
overflow-y: hidden;
white-space: nowrap;
}
.touch .hiddenScrollX {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
.touch .hiddenScrollX::-webkit-scrollbar {
height: 0 !important;
display: none;
}
.smoothScrollY {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
}
.hiddenScrollY, .ui-panel-inner {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
}
.touch .hiddenScrollY {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
.touch .hiddenScrollY::-webkit-scrollbar, .touch .ui-panel-inner::-webkit-scrollbar {
width: 0 !important;
display: none;
}
/**
* Note: I have omitted any vendor-prefixes for clarity.
* Adding them is left as an exercise for the reader.

View file

@ -1,4 +1,4 @@
<div id="metadataImagesConfigurationPage" data-role="page" class="page type-interior metadataConfigurationPage" data-require="jqmcollapsible,scripts/metadataimagespage,jqmcheckbox,paper-checkbox,paper-input">
<div id="metadataImagesConfigurationPage" data-role="page" class="page type-interior metadataConfigurationPage" data-require="emby-collapsible,scripts/metadataimagespage,jqmcheckbox,paper-checkbox,paper-input">
<div data-role="content">
@ -21,46 +21,43 @@
<div class="imageFetchers" style="margin-bottom: 2em;">
</div>
<div data-role="collapsible">
<h2>${HeaderImageSettings}</h2>
<div>
<emby-collapsible title="${HeaderImageSettings}">
<br />
<div class="backdropFields" style="margin-bottom: 2em; display: none;">
<div>
<paper-input type="number" id="txtMaxBackdrops" pattern="[0-9]*" required="required" min="0" label="${LabelMaxBackdropsPerItem}"></paper-input>
</div>
<br />
<div class="backdropFields" style="margin-bottom: 2em; display: none;">
<div>
<paper-input type="number" id="txtMaxBackdrops" pattern="[0-9]*" required="required" min="0" label="${LabelMaxBackdropsPerItem}"></paper-input>
</div>
<br />
<div>
<paper-input type="number" id="txtMinBackdropDownloadWidth" pattern="[0-9]*" required="required" min="0" label="${LabelMinBackdropDownloadWidth}"></paper-input>
</div>
</div>
<div class="screenshotFields" style="margin-bottom: 2em; display: none;">
<div>
<paper-input type="number" id="txtMaxScreenshots" pattern="[0-9]*" required="required" min="0" label="${LabelMaxScreenshotsPerItem}"></paper-input>
</div>
<div>
<paper-input type="number" id="txtMinScreenshotDownloadWidth" pattern="[0-9]*" required="required" min="0" label="${LabelMinScreenshotDownloadWidth}"></paper-input>
</div>
</div>
<div class="paperCheckboxListLabel">${HeaderFetchImages}</div>
<div class="imageSelections paperCheckboxList">
<paper-checkbox class="imageType hide" data-imagetype="Primary">${OptionDownloadPrimaryImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Art">${OptionDownloadArtImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="BoxRear">${OptionDownloadBackImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Banner">${OptionDownloadBannerImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Box">${OptionDownloadBoxImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Disc">${OptionDownloadDiscImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Logo">${OptionDownloadLogoImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Menu">${OptionDownloadMenuImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Thumb">${OptionDownloadThumbImage}</paper-checkbox>
<div>
<paper-input type="number" id="txtMinBackdropDownloadWidth" pattern="[0-9]*" required="required" min="0" label="${LabelMinBackdropDownloadWidth}"></paper-input>
</div>
</div>
</div>
<div class="screenshotFields" style="margin-bottom: 2em; display: none;">
<div>
<paper-input type="number" id="txtMaxScreenshots" pattern="[0-9]*" required="required" min="0" label="${LabelMaxScreenshotsPerItem}"></paper-input>
</div>
<div>
<paper-input type="number" id="txtMinScreenshotDownloadWidth" pattern="[0-9]*" required="required" min="0" label="${LabelMinScreenshotDownloadWidth}"></paper-input>
</div>
</div>
<div class="paperCheckboxListLabel">${HeaderFetchImages}</div>
<div class="imageSelections paperCheckboxList">
<paper-checkbox class="imageType hide" data-imagetype="Primary">${OptionDownloadPrimaryImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Art">${OptionDownloadArtImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="BoxRear">${OptionDownloadBackImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Banner">${OptionDownloadBannerImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Box">${OptionDownloadBoxImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Disc">${OptionDownloadDiscImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Logo">${OptionDownloadLogoImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Menu">${OptionDownloadMenuImage}</paper-checkbox>
<paper-checkbox class="imageType hide" data-imagetype="Thumb">${OptionDownloadThumbImage}</paper-checkbox>
</div>
</emby-collapsible>
<br />
<br />

View file

@ -1,4 +1,4 @@
define(['jQuery'], function ($) {
define(['jQuery', 'scrollStyles'], function ($) {
function loadUpcoming(page) {
Dashboard.showLoadingMsg();

View file

@ -1,4 +1,4 @@
define(['layoutManager', 'jQuery'], function (layoutManager, $) {
define(['layoutManager', 'jQuery', 'scrollStyles'], function (layoutManager, $) {
var currentItem;

View file

@ -1,4 +1,4 @@
define(['playlistManager', 'appSettings', 'appStorage', 'jQuery'], function (playlistManager, appSettings, appStorage, $) {
define(['playlistManager', 'appSettings', 'appStorage', 'jQuery', 'scrollStyles'], function (playlistManager, appSettings, appStorage, $) {
var libraryBrowser = (function (window, document, screen) {

View file

@ -1,4 +1,4 @@
define(['jQuery'], function ($) {
define(['jQuery', 'scrollStyles'], function ($) {
function enableScrollX() {
return browserInfo.mobile && AppInfo.enableAppLayouts;

View file

@ -1,4 +1,4 @@
define(['appSettings', 'jQuery'], function (appSettings, $) {
define(['appSettings', 'jQuery', 'scrollStyles'], function (appSettings, $) {
function createVideoPlayer(self) {
@ -465,7 +465,7 @@
html += '</div>';
if (item.Chapters && item.Chapters.length) {
html += '<div class="tabScenes nowPlayingTab hiddenScrollX" style="display:none;white-space:nowrap;margin-bottom:2em;">';
html += '<div class="tabScenes nowPlayingTab smoothScrollX" style="display:none;white-space:nowrap;margin-bottom:2em;">';
var chapterIndex = 0;
html += item.Chapters.map(function (c) {
@ -512,7 +512,7 @@
}
if (item.People && item.People.length) {
html += '<div class="tabCast nowPlayingTab hiddenScrollX" style="display:none;white-space:nowrap;">';
html += '<div class="tabCast nowPlayingTab smoothScrollX" style="display:none;white-space:nowrap;">';
html += item.People.map(function (cast) {
var personHtml = '<div class="tileItem smallPosterTileItem" style="width:300px;">';

View file

@ -1,4 +1,4 @@
define(['jQuery', 'libraryBrowser'], function ($, libraryBrowser) {
define(['jQuery', 'libraryBrowser', 'scrollStyles'], function ($, libraryBrowser) {
function getView() {

View file

@ -1,4 +1,4 @@
define(['jQuery'], function ($) {
define(['jQuery', 'scrollStyles'], function ($) {
function itemsPerRow() {

View file

@ -127,10 +127,10 @@
.replace("{1}", humane_elapsed(task.LastExecutionResult.StartTimeUtc, task.LastExecutionResult.EndTimeUtc));
if (task.LastExecutionResult.Status == "Failed") {
html += " <span style='color:#FF0000;'>" + Globalize.translate('LabelFailed') + "</span>";
html += " <span style='color:#FF0000;'>(" + Globalize.translate('LabelFailed') + ")</span>";
}
else if (task.LastExecutionResult.Status == "Cancelled") {
html += " <span style='color:#0026FF;'>" + Globalize.translate('LabelCancelled') + "</span>";
html += " <span style='color:#0026FF;'>(" + Globalize.translate('LabelCancelled') + ")</span>";
}
else if (task.LastExecutionResult.Status == "Aborted") {
html += " <span style='color:#FF0000;'>" + Globalize.translate('LabelAbortedByServerShutdown') + "</span>";

View file

@ -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") {

View file

@ -1,4 +1,4 @@
define(['libraryBrowser', 'jQuery'], function (LibraryBrowser, $) {
define(['libraryBrowser', 'jQuery', 'scrollStyles'], function (LibraryBrowser, $) {
function getUserViews(userId) {

View file

@ -26,9 +26,12 @@
break;
case MediaBrowser.ConnectionState.ServerUpdateNeeded:
{
Dashboard.alert({
message: Globalize.translate('ServerUpdateNeeded', '<a href="https://emby.media">https://emby.media</a>')
});
Dashboard.alert(alert({
text: Globalize.translate('core#ServerUpdateNeeded', 'https://emby.media'),
html: Globalize.translate('core#ServerUpdateNeeded', '<a href="https://emby.media">https://emby.media</a>')
}));
}
break;
default:

View file

@ -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;

View file

@ -59,10 +59,10 @@
var lastResult = task.LastExecutionResult ? task.LastExecutionResult.Status : '';
if (lastResult == "Failed") {
options.lastResultElem.html('<span style="color:#FF0000;">' + Globalize.translate('LabelFailed') + '</span>');
options.lastResultElem.html('<span style="color:#FF0000;">(' + Globalize.translate('LabelFailed') + ')</span>');
}
else if (lastResult == "Cancelled") {
options.lastResultElem.html('<span style="color:#0026FF;">' + Globalize.translate('LabelCancelled') + '</span>');
options.lastResultElem.html('<span style="color:#0026FF;">(' + Globalize.translate('LabelCancelled') + ')</span>');
}
else if (lastResult == "Aborted") {
options.lastResultElem.html('<span style="color:#FF0000;">' + Globalize.translate('LabelAbortedByServerShutdown') + '</span>');

View file

@ -1,4 +1,4 @@
define(['libraryBrowser', 'scripts/alphapicker'], function (libraryBrowser) {
define(['libraryBrowser', 'scripts/alphapicker', 'scrollStyles'], function (libraryBrowser) {
return function (view, params) {

View file

@ -1,4 +1,4 @@
define([], function () {
define(['scrollStyles'], function () {
function loadUpcoming(context, params) {

View file

@ -123,21 +123,26 @@
}
} function showEmbyConnectErrorMessage(username) {
var msg;
var html;
var text;
if (username) {
msg = Globalize.translate('ErrorAddingEmbyConnectAccount1', '<a href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>');
msg += '<br/><br/>' + Globalize.translate('ErrorAddingEmbyConnectAccount2', 'apps@emby.media');
html = Globalize.translate('ErrorAddingEmbyConnectAccount1', '<a href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>');
html += '<br/><br/>' + 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
});
});
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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."
}

View file

@ -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"
}

View file

@ -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."
}

View file

@ -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 <b>Finalizar<\/b>para ver el <b>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 <b>Finalizar<\/b> para ver el <b>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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

File diff suppressed because it is too large Load diff

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}

View file

@ -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"
}