Merge pull request #1751 from MediaBrowser/dev

Dev
This commit is contained in:
Luke 2016-05-20 15:46:28 -04:00
commit c593424313
75 changed files with 4641 additions and 2427 deletions

View file

@ -16,12 +16,12 @@
}, },
"devDependencies": {}, "devDependencies": {},
"ignore": [], "ignore": [],
"version": "1.3.49", "version": "1.3.52",
"_release": "1.3.49", "_release": "1.3.52",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "1.3.49", "tag": "1.3.52",
"commit": "9838b499815bcaf95d4d50c4476c3b95173ffc30" "commit": "c00f1f1e92a8572cd01145ad02137e3eb74442fd"
}, },
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.0", "_target": "^1.2.0",

View file

@ -22,7 +22,9 @@
flex-direction: column; flex-direction: column;
display: flex; display: flex;
justify-content: center; justify-content: center;
height: 100%; flex-grow: 1;
align-items: center;
text-align: center;
} }
.actionSheetMenuItem { .actionSheetMenuItem {
@ -40,8 +42,8 @@
} }
.layout-tv .actionSheetMenuItem { .layout-tv .actionSheetMenuItem {
padding-top: .2em; padding-top: .16em;
padding-bottom: .2em; padding-bottom: .16em;
} }
.actionSheetItemIcon { .actionSheetItemIcon {
@ -49,27 +51,24 @@
} }
.actionSheetScroller { .actionSheetScroller {
max-height: 60%;
overflow-x: hidden;
overflow-y: auto;
/* Override default style being applied by polymer */ /* Override default style being applied by polymer */
margin-bottom: 0 !important; margin-bottom: 0 !important;
scroll-behavior: smooth;
} }
.actionSheetScroller::-webkit-scrollbar, .actionSheetScroller::-webkit-scrollbar { .layout-tv .actionSheetScroller {
width: 0 !important; max-height: 60%;
display: none;
} }
h1.actionSheetTitle { h1.actionSheetTitle {
margin: .5em 0 1em !important; margin: .5em 0 1em !important;
padding: 0 1em; padding: 0 1em;
flex-grow: 0;
} }
h2.actionSheetTitle { h2.actionSheetTitle {
margin: .25em 0 .55em !important; margin: .25em 0 .55em !important;
padding: 0 1em; padding: 0 1em;
flex-grow: 0;
} }
.actionSheet.extraSpacing { .actionSheet.extraSpacing {

View file

@ -1,4 +1,4 @@
define(['dialogHelper', 'layoutManager', 'globalize', 'paper-button', 'css!./actionsheet', 'html!./../icons/nav.html'], function (dialogHelper, layoutManager, globalize) { define(['dialogHelper', 'layoutManager', 'globalize', 'paper-button', 'css!./actionsheet', 'html!./../icons/nav.html', 'scrollStyles'], function (dialogHelper, layoutManager, globalize) {
function parentWithClass(elem, className) { function parentWithClass(elem, className) {
@ -130,7 +130,7 @@
} }
} }
html += '<div class="actionSheetScroller">'; html += '<div class="actionSheetScroller hiddenScrollY">';
options.items.forEach(function (o) { options.items.forEach(function (o) {
o.ironIcon = o.selected ? 'nav:check' : null; o.ironIcon = o.selected ? 'nav:check' : null;
@ -148,15 +148,8 @@
dlg.classList.add('centered'); dlg.classList.add('centered');
} }
var enablePaperMenu = !layoutManager.tv;
enablePaperMenu = false;
var itemTagName = 'paper-button'; var itemTagName = 'paper-button';
if (enablePaperMenu) {
html += '<paper-menu>';
itemTagName = 'paper-menu-item';
}
for (var i = 0, length = options.items.length; i < length; i++) { for (var i = 0, length = options.items.length; i < length; i++) {
var option = options.items[i]; var option = options.items[i];
@ -174,10 +167,6 @@
html += '</' + itemTagName + '>'; html += '</' + itemTagName + '>';
} }
if (enablePaperMenu) {
html += '</paper-menu>';
}
if (options.showCancel) { if (options.showCancel) {
html += '<div class="buttons">'; html += '<div class="buttons">';
html += '<paper-button class="btnCancel">' + globalize.translate('sharedcomponents#ButtonCancel') + '</paper-button>'; html += '<paper-button class="btnCancel">' + globalize.translate('sharedcomponents#ButtonCancel') + '</paper-button>';

View file

@ -190,7 +190,7 @@
return null; return null;
} }
function getChannelProgramsHtml(context, date, channel, programs) { function getChannelProgramsHtml(context, date, channel, programs, options) {
var html = ''; var html = '';
@ -255,20 +255,20 @@
html += '<div class="' + guideProgramNameClass + '">'; html += '<div class="' + guideProgramNameClass + '">';
if (program.IsLive) { if (program.IsLive && options.showLiveIndicator) {
html += '<span class="liveTvProgram">' + globalize.translate('sharedcomponents#AttributeLive') + '&nbsp;</span>'; html += '<span class="liveTvProgram">' + globalize.translate('sharedcomponents#AttributeLive') + '&nbsp;</span>';
} }
else if (program.IsPremiere) { else if (program.IsPremiere && options.showPremiereIndicator) {
html += '<span class="premiereTvProgram">' + globalize.translate('sharedcomponents#AttributePremiere') + '&nbsp;</span>'; html += '<span class="premiereTvProgram">' + globalize.translate('sharedcomponents#AttributePremiere') + '&nbsp;</span>';
} }
else if (program.IsSeries && !program.IsRepeat) { else if (program.IsSeries && !program.IsRepeat && options.showNewIndicator) {
html += '<span class="newTvProgram">' + globalize.translate('sharedcomponents#AttributeNew') + '&nbsp;</span>'; html += '<span class="newTvProgram">' + globalize.translate('sharedcomponents#AttributeNew') + '&nbsp;</span>';
} }
html += program.Name; html += program.Name;
html += '</div>'; html += '</div>';
if (program.IsHD) { if (program.IsHD && options.showHdIcon) {
html += '<iron-icon class="guideHdIcon" icon="mediainfo:hd"></iron-icon>'; html += '<iron-icon class="guideHdIcon" icon="mediainfo:hd"></iron-icon>';
} }
@ -295,9 +295,21 @@
var html = []; var html = [];
// Normally we'd want to just let responsive css handle this,
// but since mobile browsers are often underpowered,
// it can help performance to get them out of the markup
var showIndicators = window.innerWidth >= 800;
var options = {
showHdIcon: showIndicators,
showLiveIndicator: showIndicators,
showPremiereIndicator: showIndicators,
showNewIndicator: showIndicators
};
for (var i = 0, length = channels.length; i < length; i++) { for (var i = 0, length = channels.length; i < length; i++) {
html.push(getChannelProgramsHtml(context, date, channels[i], programs)); html.push(getChannelProgramsHtml(context, date, channels[i], programs, options));
} }
var programGrid = context.querySelector('.programGrid'); var programGrid = context.querySelector('.programGrid');
@ -623,7 +635,7 @@
programGrid.addEventListener('focus', onProgramGridFocus, true); programGrid.addEventListener('focus', onProgramGridFocus, true);
addEventListenerWithOptions(programGrid, 'scroll', function () { addEventListenerWithOptions(programGrid, 'scroll', function (e) {
onProgramGridScroll(context, this, timeslotHeaders); onProgramGridScroll(context, this, timeslotHeaders);
}, { }, {
passive: true passive: true

View file

@ -18,6 +18,12 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
}, },
showSearch: function () { showSearch: function () {
skinManager.getCurrentSkin().search(); skinManager.getCurrentSkin().search();
},
showGuide: function () {
skinManager.getCurrentSkin().showGuide();
},
showLiveTV: function () {
skinManager.getCurrentSkin().showLiveTV();
} }
}; };

View file

@ -1,4 +1,7 @@
{ {
"Delete": "Delete",
"HeaderDeleteItem": "Delete Item",
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
"ValueSpecialEpisodeName": "Special - {0}", "ValueSpecialEpisodeName": "Special - {0}",
"Share": "Del", "Share": "Del",
"ServerUpdateNeeded": "Denne Emby server b\u00f8r opdateres. For at downloade den nyeste version bes\u00f8g venligst {0}", "ServerUpdateNeeded": "Denne Emby server b\u00f8r opdateres. For at downloade den nyeste version bes\u00f8g venligst {0}",

View file

@ -1,4 +1,7 @@
{ {
"Delete": "Delete",
"HeaderDeleteItem": "Delete Item",
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
"ValueSpecialEpisodeName": "Especial - {0}", "ValueSpecialEpisodeName": "Especial - {0}",
"Share": "Compartir", "Share": "Compartir",
"ServerUpdateNeeded": "Este Servidor Emby necesita ser actualizado. Para descargar la ultima versi\u00f3n, por favor visite {0}", "ServerUpdateNeeded": "Este Servidor Emby necesita ser actualizado. Para descargar la ultima versi\u00f3n, por favor visite {0}",

View file

@ -1,4 +1,7 @@
{ {
"Delete": "Delete",
"HeaderDeleteItem": "Delete Item",
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
"ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}", "ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443", "Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
"ServerUpdateNeeded": "\u041e\u0441\u044b Emby Server \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u04a3\u0493\u044b \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, {0} \u043a\u0456\u0440\u0456\u04a3\u0456\u0437", "ServerUpdateNeeded": "\u041e\u0441\u044b Emby Server \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u04a3\u0493\u044b \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, {0} \u043a\u0456\u0440\u0456\u04a3\u0456\u0437",

View file

@ -1,4 +1,7 @@
{ {
"Delete": "Slett",
"HeaderDeleteItem": "Slett element",
"ConfirmDeleteItem": "Ved \u00e5 slette dette element vil du b\u00e5de slette det fra statement og mediebiblioteket. Er du sikker p\u00e5 at du vil forsette?",
"ValueSpecialEpisodeName": "Spesial - {0}", "ValueSpecialEpisodeName": "Spesial - {0}",
"Share": "Del", "Share": "Del",
"ServerUpdateNeeded": "Denne Emby serveren trenger en oppdatering. For \u00e5 laste ned nyeste versjon, vennligst bes\u00f8k: {0}", "ServerUpdateNeeded": "Denne Emby serveren trenger en oppdatering. For \u00e5 laste ned nyeste versjon, vennligst bes\u00f8k: {0}",

View file

@ -1,4 +1,7 @@
{ {
"Delete": "Verwijder",
"HeaderDeleteItem": "Item verwijderen",
"ConfirmDeleteItem": "Verwijderen van dit item zal het verwijderen uit zowel het bestandssysteem als de Media Bibliotheek. Weet u zeker dat u wilt doorgaan?",
"ValueSpecialEpisodeName": "Speciaal - {0}", "ValueSpecialEpisodeName": "Speciaal - {0}",
"Share": "Delen", "Share": "Delen",
"ServerUpdateNeeded": "Deze Emby Server moet worden bijgewerkt. Om de laatste versie te downloaden, gaat u naar {0}", "ServerUpdateNeeded": "Deze Emby Server moet worden bijgewerkt. Om de laatste versie te downloaden, gaat u naar {0}",

View file

@ -1,4 +1,7 @@
{ {
"Delete": "Delete",
"HeaderDeleteItem": "Delete Item",
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
"ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}", "ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}",
"Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f", "Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
"ServerUpdateNeeded": "\u0414\u0430\u043d\u043d\u044b\u0439 Emby \u0421\u0435\u0440\u0432\u0435\u0440 \u043d\u0443\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0432 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0438. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u0432\u0435\u0440\u0441\u0438\u044e, \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 {0}", "ServerUpdateNeeded": "\u0414\u0430\u043d\u043d\u044b\u0439 Emby \u0421\u0435\u0440\u0432\u0435\u0440 \u043d\u0443\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0432 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0438. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u0432\u0435\u0440\u0441\u0438\u044e, \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 {0}",

View file

@ -93,7 +93,7 @@ define(['browser'], function (browser) {
function animate(newAnimatedPage, oldAnimatedPage, transition, isBack) { function animate(newAnimatedPage, oldAnimatedPage, transition, isBack) {
if (enableAnimation() && newAnimatedPage.animate) { if (enableAnimation() && oldAnimatedPage && newAnimatedPage.animate) {
if (transition == 'slide') { if (transition == 'slide') {
return slide(newAnimatedPage, oldAnimatedPage, transition, isBack); return slide(newAnimatedPage, oldAnimatedPage, transition, isBack);
} else if (transition == 'fade') { } else if (transition == 'fade') {

View file

@ -1,24 +0,0 @@
{
"name": "fastclick",
"main": "lib/fastclick.js",
"ignore": [
"**/.*",
"component.json",
"package.json",
"Makefile",
"tests",
"examples"
],
"homepage": "https://github.com/ftlabs/fastclick",
"version": "1.0.6",
"_release": "1.0.6",
"_resolution": {
"type": "version",
"tag": "v1.0.6",
"commit": "2ac7258407619398005ca720596f0d36ce66a6c8"
},
"_source": "git://github.com/ftlabs/fastclick.git",
"_target": "~1.0.6",
"_originalSource": "fastclick",
"_direct": true
}

View file

@ -1,22 +0,0 @@
Copyright (c) 2014 The Financial Times Ltd.
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

View file

@ -1,12 +0,0 @@
{
"name": "fastclick",
"main": "lib/fastclick.js",
"ignore": [
"**/.*",
"component.json",
"package.json",
"Makefile",
"tests",
"examples"
]
}

View file

@ -1,841 +0,0 @@
;(function () {
'use strict';
/**
* @preserve FastClick: polyfill to remove click delays on browsers with touch UIs.
*
* @codingstandard ftlabs-jsv2
* @copyright The Financial Times Limited [All Rights Reserved]
* @license MIT License (see LICENSE.txt)
*/
/*jslint browser:true, node:true*/
/*global define, Event, Node*/
/**
* Instantiate fast-clicking listeners on the specified layer.
*
* @constructor
* @param {Element} layer The layer to listen on
* @param {Object} [options={}] The options to override the defaults
*/
function FastClick(layer, options) {
var oldOnClick;
options = options || {};
/**
* Whether a click is currently being tracked.
*
* @type boolean
*/
this.trackingClick = false;
/**
* Timestamp for when click tracking started.
*
* @type number
*/
this.trackingClickStart = 0;
/**
* The element being tracked for a click.
*
* @type EventTarget
*/
this.targetElement = null;
/**
* X-coordinate of touch start event.
*
* @type number
*/
this.touchStartX = 0;
/**
* Y-coordinate of touch start event.
*
* @type number
*/
this.touchStartY = 0;
/**
* ID of the last touch, retrieved from Touch.identifier.
*
* @type number
*/
this.lastTouchIdentifier = 0;
/**
* Touchmove boundary, beyond which a click will be cancelled.
*
* @type number
*/
this.touchBoundary = options.touchBoundary || 10;
/**
* The FastClick layer.
*
* @type Element
*/
this.layer = layer;
/**
* The minimum time between tap(touchstart and touchend) events
*
* @type number
*/
this.tapDelay = options.tapDelay || 200;
/**
* The maximum time for a tap
*
* @type number
*/
this.tapTimeout = options.tapTimeout || 700;
if (FastClick.notNeeded(layer)) {
return;
}
// Some old versions of Android don't have Function.prototype.bind
function bind(method, context) {
return function() { return method.apply(context, arguments); };
}
var methods = ['onMouse', 'onClick', 'onTouchStart', 'onTouchMove', 'onTouchEnd', 'onTouchCancel'];
var context = this;
for (var i = 0, l = methods.length; i < l; i++) {
context[methods[i]] = bind(context[methods[i]], context);
}
// Set up event handlers as required
if (deviceIsAndroid) {
layer.addEventListener('mouseover', this.onMouse, true);
layer.addEventListener('mousedown', this.onMouse, true);
layer.addEventListener('mouseup', this.onMouse, true);
}
layer.addEventListener('click', this.onClick, true);
layer.addEventListener('touchstart', this.onTouchStart, false);
layer.addEventListener('touchmove', this.onTouchMove, false);
layer.addEventListener('touchend', this.onTouchEnd, false);
layer.addEventListener('touchcancel', this.onTouchCancel, false);
// Hack is required for browsers that don't support Event#stopImmediatePropagation (e.g. Android 2)
// which is how FastClick normally stops click events bubbling to callbacks registered on the FastClick
// layer when they are cancelled.
if (!Event.prototype.stopImmediatePropagation) {
layer.removeEventListener = function(type, callback, capture) {
var rmv = Node.prototype.removeEventListener;
if (type === 'click') {
rmv.call(layer, type, callback.hijacked || callback, capture);
} else {
rmv.call(layer, type, callback, capture);
}
};
layer.addEventListener = function(type, callback, capture) {
var adv = Node.prototype.addEventListener;
if (type === 'click') {
adv.call(layer, type, callback.hijacked || (callback.hijacked = function(event) {
if (!event.propagationStopped) {
callback(event);
}
}), capture);
} else {
adv.call(layer, type, callback, capture);
}
};
}
// If a handler is already declared in the element's onclick attribute, it will be fired before
// FastClick's onClick handler. Fix this by pulling out the user-defined handler function and
// adding it as listener.
if (typeof layer.onclick === 'function') {
// Android browser on at least 3.2 requires a new reference to the function in layer.onclick
// - the old one won't work if passed to addEventListener directly.
oldOnClick = layer.onclick;
layer.addEventListener('click', function(event) {
oldOnClick(event);
}, false);
layer.onclick = null;
}
}
/**
* Windows Phone 8.1 fakes user agent string to look like Android and iPhone.
*
* @type boolean
*/
var deviceIsWindowsPhone = navigator.userAgent.indexOf("Windows Phone") >= 0;
/**
* Android requires exceptions.
*
* @type boolean
*/
var deviceIsAndroid = navigator.userAgent.indexOf('Android') > 0 && !deviceIsWindowsPhone;
/**
* iOS requires exceptions.
*
* @type boolean
*/
var deviceIsIOS = /iP(ad|hone|od)/.test(navigator.userAgent) && !deviceIsWindowsPhone;
/**
* iOS 4 requires an exception for select elements.
*
* @type boolean
*/
var deviceIsIOS4 = deviceIsIOS && (/OS 4_\d(_\d)?/).test(navigator.userAgent);
/**
* iOS 6.0-7.* requires the target element to be manually derived
*
* @type boolean
*/
var deviceIsIOSWithBadTarget = deviceIsIOS && (/OS [6-7]_\d/).test(navigator.userAgent);
/**
* BlackBerry requires exceptions.
*
* @type boolean
*/
var deviceIsBlackBerry10 = navigator.userAgent.indexOf('BB10') > 0;
/**
* Determine whether a given element requires a native click.
*
* @param {EventTarget|Element} target Target DOM element
* @returns {boolean} Returns true if the element needs a native click
*/
FastClick.prototype.needsClick = function(target) {
switch (target.nodeName.toLowerCase()) {
// Don't send a synthetic click to disabled inputs (issue #62)
case 'button':
case 'select':
case 'textarea':
if (target.disabled) {
return true;
}
break;
case 'input':
// File inputs need real clicks on iOS 6 due to a browser bug (issue #68)
if ((deviceIsIOS && target.type === 'file') || target.disabled) {
return true;
}
break;
case 'label':
case 'iframe': // iOS8 homescreen apps can prevent events bubbling into frames
case 'video':
return true;
}
return (/\bneedsclick\b/).test(target.className);
};
/**
* Determine whether a given element requires a call to focus to simulate click into element.
*
* @param {EventTarget|Element} target Target DOM element
* @returns {boolean} Returns true if the element requires a call to focus to simulate native click.
*/
FastClick.prototype.needsFocus = function(target) {
switch (target.nodeName.toLowerCase()) {
case 'textarea':
return true;
case 'select':
return !deviceIsAndroid;
case 'input':
switch (target.type) {
case 'button':
case 'checkbox':
case 'file':
case 'image':
case 'radio':
case 'submit':
return false;
}
// No point in attempting to focus disabled inputs
return !target.disabled && !target.readOnly;
default:
return (/\bneedsfocus\b/).test(target.className);
}
};
/**
* Send a click event to the specified element.
*
* @param {EventTarget|Element} targetElement
* @param {Event} event
*/
FastClick.prototype.sendClick = function(targetElement, event) {
var clickEvent, touch;
// On some Android devices activeElement needs to be blurred otherwise the synthetic click will have no effect (#24)
if (document.activeElement && document.activeElement !== targetElement) {
document.activeElement.blur();
}
touch = event.changedTouches[0];
// Synthesise a click event, with an extra attribute so it can be tracked
clickEvent = document.createEvent('MouseEvents');
clickEvent.initMouseEvent(this.determineEventType(targetElement), true, true, window, 1, touch.screenX, touch.screenY, touch.clientX, touch.clientY, false, false, false, false, 0, null);
clickEvent.forwardedTouchEvent = true;
targetElement.dispatchEvent(clickEvent);
};
FastClick.prototype.determineEventType = function(targetElement) {
//Issue #159: Android Chrome Select Box does not open with a synthetic click event
if (deviceIsAndroid && targetElement.tagName.toLowerCase() === 'select') {
return 'mousedown';
}
return 'click';
};
/**
* @param {EventTarget|Element} targetElement
*/
FastClick.prototype.focus = function(targetElement) {
var length;
// Issue #160: on iOS 7, some input elements (e.g. date datetime month) throw a vague TypeError on setSelectionRange. These elements don't have an integer value for the selectionStart and selectionEnd properties, but unfortunately that can't be used for detection because accessing the properties also throws a TypeError. Just check the type instead. Filed as Apple bug #15122724.
if (deviceIsIOS && targetElement.setSelectionRange && targetElement.type.indexOf('date') !== 0 && targetElement.type !== 'time' && targetElement.type !== 'month') {
length = targetElement.value.length;
targetElement.setSelectionRange(length, length);
} else {
targetElement.focus();
}
};
/**
* Check whether the given target element is a child of a scrollable layer and if so, set a flag on it.
*
* @param {EventTarget|Element} targetElement
*/
FastClick.prototype.updateScrollParent = function(targetElement) {
var scrollParent, parentElement;
scrollParent = targetElement.fastClickScrollParent;
// Attempt to discover whether the target element is contained within a scrollable layer. Re-check if the
// target element was moved to another parent.
if (!scrollParent || !scrollParent.contains(targetElement)) {
parentElement = targetElement;
do {
if (parentElement.scrollHeight > parentElement.offsetHeight) {
scrollParent = parentElement;
targetElement.fastClickScrollParent = parentElement;
break;
}
parentElement = parentElement.parentElement;
} while (parentElement);
}
// Always update the scroll top tracker if possible.
if (scrollParent) {
scrollParent.fastClickLastScrollTop = scrollParent.scrollTop;
}
};
/**
* @param {EventTarget} targetElement
* @returns {Element|EventTarget}
*/
FastClick.prototype.getTargetElementFromEventTarget = function(eventTarget) {
// On some older browsers (notably Safari on iOS 4.1 - see issue #56) the event target may be a text node.
if (eventTarget.nodeType === Node.TEXT_NODE) {
return eventTarget.parentNode;
}
return eventTarget;
};
/**
* On touch start, record the position and scroll offset.
*
* @param {Event} event
* @returns {boolean}
*/
FastClick.prototype.onTouchStart = function(event) {
var targetElement, touch, selection;
// Ignore multiple touches, otherwise pinch-to-zoom is prevented if both fingers are on the FastClick element (issue #111).
if (event.targetTouches.length > 1) {
return true;
}
targetElement = this.getTargetElementFromEventTarget(event.target);
touch = event.targetTouches[0];
if (deviceIsIOS) {
// Only trusted events will deselect text on iOS (issue #49)
selection = window.getSelection();
if (selection.rangeCount && !selection.isCollapsed) {
return true;
}
if (!deviceIsIOS4) {
// Weird things happen on iOS when an alert or confirm dialog is opened from a click event callback (issue #23):
// when the user next taps anywhere else on the page, new touchstart and touchend events are dispatched
// with the same identifier as the touch event that previously triggered the click that triggered the alert.
// Sadly, there is an issue on iOS 4 that causes some normal touch events to have the same identifier as an
// immediately preceeding touch event (issue #52), so this fix is unavailable on that platform.
// Issue 120: touch.identifier is 0 when Chrome dev tools 'Emulate touch events' is set with an iOS device UA string,
// which causes all touch events to be ignored. As this block only applies to iOS, and iOS identifiers are always long,
// random integers, it's safe to to continue if the identifier is 0 here.
if (touch.identifier && touch.identifier === this.lastTouchIdentifier) {
event.preventDefault();
return false;
}
this.lastTouchIdentifier = touch.identifier;
// If the target element is a child of a scrollable layer (using -webkit-overflow-scrolling: touch) and:
// 1) the user does a fling scroll on the scrollable layer
// 2) the user stops the fling scroll with another tap
// then the event.target of the last 'touchend' event will be the element that was under the user's finger
// when the fling scroll was started, causing FastClick to send a click event to that layer - unless a check
// is made to ensure that a parent layer was not scrolled before sending a synthetic click (issue #42).
this.updateScrollParent(targetElement);
}
}
this.trackingClick = true;
this.trackingClickStart = event.timeStamp;
this.targetElement = targetElement;
this.touchStartX = touch.pageX;
this.touchStartY = touch.pageY;
// Prevent phantom clicks on fast double-tap (issue #36)
if ((event.timeStamp - this.lastClickTime) < this.tapDelay) {
event.preventDefault();
}
return true;
};
/**
* Based on a touchmove event object, check whether the touch has moved past a boundary since it started.
*
* @param {Event} event
* @returns {boolean}
*/
FastClick.prototype.touchHasMoved = function(event) {
var touch = event.changedTouches[0], boundary = this.touchBoundary;
if (Math.abs(touch.pageX - this.touchStartX) > boundary || Math.abs(touch.pageY - this.touchStartY) > boundary) {
return true;
}
return false;
};
/**
* Update the last position.
*
* @param {Event} event
* @returns {boolean}
*/
FastClick.prototype.onTouchMove = function(event) {
if (!this.trackingClick) {
return true;
}
// If the touch has moved, cancel the click tracking
if (this.targetElement !== this.getTargetElementFromEventTarget(event.target) || this.touchHasMoved(event)) {
this.trackingClick = false;
this.targetElement = null;
}
return true;
};
/**
* Attempt to find the labelled control for the given label element.
*
* @param {EventTarget|HTMLLabelElement} labelElement
* @returns {Element|null}
*/
FastClick.prototype.findControl = function(labelElement) {
// Fast path for newer browsers supporting the HTML5 control attribute
if (labelElement.control !== undefined) {
return labelElement.control;
}
// All browsers under test that support touch events also support the HTML5 htmlFor attribute
if (labelElement.htmlFor) {
return document.getElementById(labelElement.htmlFor);
}
// If no for attribute exists, attempt to retrieve the first labellable descendant element
// the list of which is defined here: http://www.w3.org/TR/html5/forms.html#category-label
return labelElement.querySelector('button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea');
};
/**
* On touch end, determine whether to send a click event at once.
*
* @param {Event} event
* @returns {boolean}
*/
FastClick.prototype.onTouchEnd = function(event) {
var forElement, trackingClickStart, targetTagName, scrollParent, touch, targetElement = this.targetElement;
if (!this.trackingClick) {
return true;
}
// Prevent phantom clicks on fast double-tap (issue #36)
if ((event.timeStamp - this.lastClickTime) < this.tapDelay) {
this.cancelNextClick = true;
return true;
}
if ((event.timeStamp - this.trackingClickStart) > this.tapTimeout) {
return true;
}
// Reset to prevent wrong click cancel on input (issue #156).
this.cancelNextClick = false;
this.lastClickTime = event.timeStamp;
trackingClickStart = this.trackingClickStart;
this.trackingClick = false;
this.trackingClickStart = 0;
// On some iOS devices, the targetElement supplied with the event is invalid if the layer
// is performing a transition or scroll, and has to be re-detected manually. Note that
// for this to function correctly, it must be called *after* the event target is checked!
// See issue #57; also filed as rdar://13048589 .
if (deviceIsIOSWithBadTarget) {
touch = event.changedTouches[0];
// In certain cases arguments of elementFromPoint can be negative, so prevent setting targetElement to null
targetElement = document.elementFromPoint(touch.pageX - window.pageXOffset, touch.pageY - window.pageYOffset) || targetElement;
targetElement.fastClickScrollParent = this.targetElement.fastClickScrollParent;
}
targetTagName = targetElement.tagName.toLowerCase();
if (targetTagName === 'label') {
forElement = this.findControl(targetElement);
if (forElement) {
this.focus(targetElement);
if (deviceIsAndroid) {
return false;
}
targetElement = forElement;
}
} else if (this.needsFocus(targetElement)) {
// Case 1: If the touch started a while ago (best guess is 100ms based on tests for issue #36) then focus will be triggered anyway. Return early and unset the target element reference so that the subsequent click will be allowed through.
// Case 2: Without this exception for input elements tapped when the document is contained in an iframe, then any inputted text won't be visible even though the value attribute is updated as the user types (issue #37).
if ((event.timeStamp - trackingClickStart) > 100 || (deviceIsIOS && window.top !== window && targetTagName === 'input')) {
this.targetElement = null;
return false;
}
this.focus(targetElement);
this.sendClick(targetElement, event);
// Select elements need the event to go through on iOS 4, otherwise the selector menu won't open.
// Also this breaks opening selects when VoiceOver is active on iOS6, iOS7 (and possibly others)
if (!deviceIsIOS || targetTagName !== 'select') {
this.targetElement = null;
event.preventDefault();
}
return false;
}
if (deviceIsIOS && !deviceIsIOS4) {
// Don't send a synthetic click event if the target element is contained within a parent layer that was scrolled
// and this tap is being used to stop the scrolling (usually initiated by a fling - issue #42).
scrollParent = targetElement.fastClickScrollParent;
if (scrollParent && scrollParent.fastClickLastScrollTop !== scrollParent.scrollTop) {
return true;
}
}
// Prevent the actual click from going though - unless the target node is marked as requiring
// real clicks or if it is in the whitelist in which case only non-programmatic clicks are permitted.
if (!this.needsClick(targetElement)) {
event.preventDefault();
this.sendClick(targetElement, event);
}
return false;
};
/**
* On touch cancel, stop tracking the click.
*
* @returns {void}
*/
FastClick.prototype.onTouchCancel = function() {
this.trackingClick = false;
this.targetElement = null;
};
/**
* Determine mouse events which should be permitted.
*
* @param {Event} event
* @returns {boolean}
*/
FastClick.prototype.onMouse = function(event) {
// If a target element was never set (because a touch event was never fired) allow the event
if (!this.targetElement) {
return true;
}
if (event.forwardedTouchEvent) {
return true;
}
// Programmatically generated events targeting a specific element should be permitted
if (!event.cancelable) {
return true;
}
// Derive and check the target element to see whether the mouse event needs to be permitted;
// unless explicitly enabled, prevent non-touch click events from triggering actions,
// to prevent ghost/doubleclicks.
if (!this.needsClick(this.targetElement) || this.cancelNextClick) {
// Prevent any user-added listeners declared on FastClick element from being fired.
if (event.stopImmediatePropagation) {
event.stopImmediatePropagation();
} else {
// Part of the hack for browsers that don't support Event#stopImmediatePropagation (e.g. Android 2)
event.propagationStopped = true;
}
// Cancel the event
event.stopPropagation();
event.preventDefault();
return false;
}
// If the mouse event is permitted, return true for the action to go through.
return true;
};
/**
* On actual clicks, determine whether this is a touch-generated click, a click action occurring
* naturally after a delay after a touch (which needs to be cancelled to avoid duplication), or
* an actual click which should be permitted.
*
* @param {Event} event
* @returns {boolean}
*/
FastClick.prototype.onClick = function(event) {
var permitted;
// It's possible for another FastClick-like library delivered with third-party code to fire a click event before FastClick does (issue #44). In that case, set the click-tracking flag back to false and return early. This will cause onTouchEnd to return early.
if (this.trackingClick) {
this.targetElement = null;
this.trackingClick = false;
return true;
}
// Very odd behaviour on iOS (issue #18): if a submit element is present inside a form and the user hits enter in the iOS simulator or clicks the Go button on the pop-up OS keyboard the a kind of 'fake' click event will be triggered with the submit-type input element as the target.
if (event.target.type === 'submit' && event.detail === 0) {
return true;
}
permitted = this.onMouse(event);
// Only unset targetElement if the click is not permitted. This will ensure that the check for !targetElement in onMouse fails and the browser's click doesn't go through.
if (!permitted) {
this.targetElement = null;
}
// If clicks are permitted, return true for the action to go through.
return permitted;
};
/**
* Remove all FastClick's event listeners.
*
* @returns {void}
*/
FastClick.prototype.destroy = function() {
var layer = this.layer;
if (deviceIsAndroid) {
layer.removeEventListener('mouseover', this.onMouse, true);
layer.removeEventListener('mousedown', this.onMouse, true);
layer.removeEventListener('mouseup', this.onMouse, true);
}
layer.removeEventListener('click', this.onClick, true);
layer.removeEventListener('touchstart', this.onTouchStart, false);
layer.removeEventListener('touchmove', this.onTouchMove, false);
layer.removeEventListener('touchend', this.onTouchEnd, false);
layer.removeEventListener('touchcancel', this.onTouchCancel, false);
};
/**
* Check whether FastClick is needed.
*
* @param {Element} layer The layer to listen on
*/
FastClick.notNeeded = function(layer) {
var metaViewport;
var chromeVersion;
var blackberryVersion;
var firefoxVersion;
// Devices that don't support touch don't need FastClick
if (typeof window.ontouchstart === 'undefined') {
return true;
}
// Chrome version - zero for other browsers
chromeVersion = +(/Chrome\/([0-9]+)/.exec(navigator.userAgent) || [,0])[1];
if (chromeVersion) {
if (deviceIsAndroid) {
metaViewport = document.querySelector('meta[name=viewport]');
if (metaViewport) {
// Chrome on Android with user-scalable="no" doesn't need FastClick (issue #89)
if (metaViewport.content.indexOf('user-scalable=no') !== -1) {
return true;
}
// Chrome 32 and above with width=device-width or less don't need FastClick
if (chromeVersion > 31 && document.documentElement.scrollWidth <= window.outerWidth) {
return true;
}
}
// Chrome desktop doesn't need FastClick (issue #15)
} else {
return true;
}
}
if (deviceIsBlackBerry10) {
blackberryVersion = navigator.userAgent.match(/Version\/([0-9]*)\.([0-9]*)/);
// BlackBerry 10.3+ does not require Fastclick library.
// https://github.com/ftlabs/fastclick/issues/251
if (blackberryVersion[1] >= 10 && blackberryVersion[2] >= 3) {
metaViewport = document.querySelector('meta[name=viewport]');
if (metaViewport) {
// user-scalable=no eliminates click delay.
if (metaViewport.content.indexOf('user-scalable=no') !== -1) {
return true;
}
// width=device-width (or less than device-width) eliminates click delay.
if (document.documentElement.scrollWidth <= window.outerWidth) {
return true;
}
}
}
}
// IE10 with -ms-touch-action: none or manipulation, which disables double-tap-to-zoom (issue #97)
if (layer.style.msTouchAction === 'none' || layer.style.touchAction === 'manipulation') {
return true;
}
// Firefox version - zero for other browsers
firefoxVersion = +(/Firefox\/([0-9]+)/.exec(navigator.userAgent) || [,0])[1];
if (firefoxVersion >= 27) {
// Firefox 27+ does not have tap delay if the content is not zoomable - https://bugzilla.mozilla.org/show_bug.cgi?id=922896
metaViewport = document.querySelector('meta[name=viewport]');
if (metaViewport && (metaViewport.content.indexOf('user-scalable=no') !== -1 || document.documentElement.scrollWidth <= window.outerWidth)) {
return true;
}
}
// IE11: prefixed -ms-touch-action is no longer supported and it's recomended to use non-prefixed version
// http://msdn.microsoft.com/en-us/library/windows/apps/Hh767313.aspx
if (layer.style.touchAction === 'none' || layer.style.touchAction === 'manipulation') {
return true;
}
return false;
};
/**
* Factory method for creating a FastClick object
*
* @param {Element} layer The layer to listen on
* @param {Object} [options={}] The options to override the defaults
*/
FastClick.attach = function(layer, options) {
return new FastClick(layer, options);
};
if (typeof define === 'function' && typeof define.amd === 'object' && define.amd) {
// AMD. Register as an anonymous module.
define(function() {
return FastClick;
});
} else if (typeof module !== 'undefined' && module.exports) {
module.exports = FastClick.attach;
module.exports.FastClick = FastClick;
} else {
window.FastClick = FastClick;
}
}());

View file

@ -1,6 +1,6 @@
{ {
"name": "hls.js", "name": "hls.js",
"version": "0.5.30", "version": "0.5.32",
"license": "Apache-2.0", "license": "Apache-2.0",
"description": "Media Source Extension - HLS library, by/for Dailymotion", "description": "Media Source Extension - HLS library, by/for Dailymotion",
"homepage": "https://github.com/dailymotion/hls.js", "homepage": "https://github.com/dailymotion/hls.js",
@ -16,11 +16,11 @@
"test", "test",
"tests" "tests"
], ],
"_release": "0.5.30", "_release": "0.5.32",
"_resolution": { "_resolution": {
"type": "version", "type": "version",
"tag": "v0.5.30", "tag": "v0.5.32",
"commit": "c8eab206bbd77040cbe9f35f64303775c2065608" "commit": "bceb5b05fb906e6877e48778828378c05353d2b8"
}, },
"_source": "git://github.com/dailymotion/hls.js.git", "_source": "git://github.com/dailymotion/hls.js.git",
"_target": "~0.5.7", "_target": "~0.5.7",

View file

@ -1,6 +1,6 @@
{ {
"name": "hls.js", "name": "hls.js",
"version": "0.5.30", "version": "0.5.32",
"license": "Apache-2.0", "license": "Apache-2.0",
"description": "Media Source Extension - HLS library, by/for Dailymotion", "description": "Media Source Extension - HLS library, by/for Dailymotion",
"homepage": "https://github.com/dailymotion/hls.js", "homepage": "https://github.com/dailymotion/hls.js",

View file

@ -1329,8 +1329,9 @@ var LevelController = function (_EventHandler) {
var details = data.details, var details = data.details,
hls = this.hls, hls = this.hls,
levelId, levelId = void 0,
level; level = void 0,
levelError = false;
// try to recover not fatal errors // try to recover not fatal errors
switch (details) { switch (details) {
case _errors.ErrorDetails.FRAG_LOAD_ERROR: case _errors.ErrorDetails.FRAG_LOAD_ERROR:
@ -1343,6 +1344,7 @@ var LevelController = function (_EventHandler) {
case _errors.ErrorDetails.LEVEL_LOAD_ERROR: case _errors.ErrorDetails.LEVEL_LOAD_ERROR:
case _errors.ErrorDetails.LEVEL_LOAD_TIMEOUT: case _errors.ErrorDetails.LEVEL_LOAD_TIMEOUT:
levelId = data.level; levelId = data.level;
levelError = true;
break; break;
default: default:
break; break;
@ -1366,6 +1368,10 @@ var LevelController = function (_EventHandler) {
hls.abrController.nextAutoLevel = 0; hls.abrController.nextAutoLevel = 0;
} else if (level && level.details && level.details.live) { } else if (level && level.details && level.details.live) {
_logger.logger.warn('level controller,' + details + ' on live stream, discard'); _logger.logger.warn('level controller,' + details + ' on live stream, discard');
if (levelError) {
// reset this._level so that another call to set level() will retrigger a frag load
this._level = undefined;
}
// FRAG_LOAD_ERROR and FRAG_LOAD_TIMEOUT are handled by mediaController // FRAG_LOAD_ERROR and FRAG_LOAD_TIMEOUT are handled by mediaController
} else if (details !== _errors.ErrorDetails.FRAG_LOAD_ERROR && details !== _errors.ErrorDetails.FRAG_LOAD_TIMEOUT) { } else if (details !== _errors.ErrorDetails.FRAG_LOAD_ERROR && details !== _errors.ErrorDetails.FRAG_LOAD_TIMEOUT) {
_logger.logger.error('cannot recover ' + details + ' error'); _logger.logger.error('cannot recover ' + details + ' error');
@ -1664,14 +1670,15 @@ var StreamController = function (_EventHandler) {
break; break;
case State.STARTING: case State.STARTING:
// determine load level // determine load level
this.startLevel = hls.startLevel; var startLevel = hls.startLevel;
if (this.startLevel === -1) { if (startLevel === -1) {
// -1 : guess start Level by doing a bitrate test by loading first fragment of lowest quality level // -1 : guess start Level by doing a bitrate test by loading first fragment of lowest quality level
this.startLevel = 0; startLevel = 0;
this.fragBitrateTest = true; this.fragBitrateTest = true;
} }
// set new level to playlist loader : this will trigger start level load // set new level to playlist loader : this will trigger start level load
this.level = hls.nextLoadLevel = this.startLevel; // hls.nextLoadLevel remains until it is set to a new value or until a new frag is successfully loaded
this.level = hls.nextLoadLevel = startLevel;
this.state = State.WAITING_LEVEL; this.state = State.WAITING_LEVEL;
this.loadedmetadata = false; this.loadedmetadata = false;
break; break;
@ -1692,13 +1699,7 @@ var StreamController = function (_EventHandler) {
} else { } else {
pos = this.nextLoadPosition; pos = this.nextLoadPosition;
} }
// determine next load level
if (this.startFragRequested === false) {
level = this.startLevel;
} else {
// we are not at playback start, get next load level from level Controller
level = hls.nextLoadLevel; level = hls.nextLoadLevel;
}
var bufferInfo = _bufferHelper2.default.bufferInfo(this.media, pos, config.maxBufferHole), var bufferInfo = _bufferHelper2.default.bufferInfo(this.media, pos, config.maxBufferHole),
bufferLen = bufferInfo.len, bufferLen = bufferInfo.len,
bufferEnd = bufferInfo.end, bufferEnd = bufferInfo.end,
@ -1827,9 +1828,15 @@ var StreamController = function (_EventHandler) {
} else { } else {
// have we reached end of VOD playlist ? // have we reached end of VOD playlist ?
if (!levelDetails.live) { if (!levelDetails.live) {
// Finalize the media stream
_this2.hls.trigger(_events2.default.BUFFER_EOS); _this2.hls.trigger(_events2.default.BUFFER_EOS);
// We might be loading the last fragment but actually the media
// is currently processing a seek command and waiting for new data to resume at another point.
// Going to ended state while media is seeking can spawn an infinite buffering broken state.
if (!_this2.media.seeking) {
_this2.state = State.ENDED; _this2.state = State.ENDED;
} }
}
frag = null; frag = null;
} }
} }
@ -2278,10 +2285,13 @@ var StreamController = function (_EventHandler) {
value: function onFragLoaded(data) { value: function onFragLoaded(data) {
var fragCurrent = this.fragCurrent; var fragCurrent = this.fragCurrent;
if (this.state === State.FRAG_LOADING && fragCurrent && data.frag.level === fragCurrent.level && data.frag.sn === fragCurrent.sn) { if (this.state === State.FRAG_LOADING && fragCurrent && data.frag.level === fragCurrent.level && data.frag.sn === fragCurrent.sn) {
_logger.logger.log('Loaded ' + fragCurrent.sn + ' of level ' + fragCurrent.level);
if (this.fragBitrateTest === true) { if (this.fragBitrateTest === true) {
// switch back to IDLE state ... we just loaded a fragment to determine adequate start bitrate and initialize autoswitch algo // switch back to IDLE state ... we just loaded a fragment to determine adequate start bitrate and initialize autoswitch algo
this.state = State.IDLE; this.state = State.IDLE;
this.fragBitrateTest = false; this.fragBitrateTest = false;
this.startFragRequested = false;
data.stats.tparsed = data.stats.tbuffered = performance.now(); data.stats.tparsed = data.stats.tbuffered = performance.now();
this.hls.trigger(_events2.default.FRAG_BUFFERED, { stats: data.stats, frag: fragCurrent }); this.hls.trigger(_events2.default.FRAG_BUFFERED, { stats: data.stats, frag: fragCurrent });
} else { } else {
@ -2606,8 +2616,16 @@ var StreamController = function (_EventHandler) {
} }
} }
} else { } else {
if (targetSeekPosition && media.currentTime !== targetSeekPosition) { var _currentTime = media.currentTime;
_logger.logger.log('adjust currentTime from ' + media.currentTime + ' to ' + targetSeekPosition); if (targetSeekPosition && _currentTime !== targetSeekPosition) {
if (bufferInfo.len === 0) {
var nextStart = bufferInfo.nextStart;
if (nextStart !== undefined && nextStart - targetSeekPosition < this.config.maxSeekHole) {
targetSeekPosition = nextStart;
_logger.logger.log('target seek position not buffered, seek to next buffered ' + targetSeekPosition);
}
}
_logger.logger.log('adjust currentTime from ' + _currentTime + ' to ' + targetSeekPosition);
media.currentTime = targetSeekPosition; media.currentTime = targetSeekPosition;
} }
} }
@ -4520,7 +4538,8 @@ var TSDemuxer = function () {
pid, pid,
atf, atf,
offset, offset,
codecsOnly = this.remuxer.passthrough; codecsOnly = this.remuxer.passthrough,
unknownPIDs = false;
this.audioCodec = audioCodec; this.audioCodec = audioCodec;
this.videoCodec = videoCodec; this.videoCodec = videoCodec;
@ -4634,6 +4653,15 @@ var TSDemuxer = function () {
avcId = this._avcTrack.id; avcId = this._avcTrack.id;
aacId = this._aacTrack.id; aacId = this._aacTrack.id;
id3Id = this._id3Track.id; id3Id = this._id3Track.id;
if (unknownPIDs) {
_logger.logger.log('reparse from beginning');
unknownPIDs = false;
// we set it to -188, the += 188 in the for loop will reset start to 0
start = -188;
}
} else {
_logger.logger.log('unknown PID found before PAT/PMT');
unknownPIDs = true;
} }
} }
} else { } else {
@ -4948,8 +4976,10 @@ var TSDemuxer = function () {
//build sample from PES //build sample from PES
// Annex B to MP4 conversion to be done // Annex B to MP4 conversion to be done
if (units2.length) { if (units2.length) {
// only push AVC sample if keyframe already found. browsers expect a keyframe at first to start decoding // only push AVC sample if keyframe already found in this fragment OR
if (key === true || track.sps) { // keyframe found in last fragment (track.sps) AND
// samples already appended (we already found a keyframe in this fragment) OR fragment is contiguous
if (key === true || track.sps && (samples.length || this.contiguous)) {
avcSample = { units: { units: units2, length: length }, pts: pes.pts, dts: pes.dts, key: key }; avcSample = { units: { units: units2, length: length }, pts: pes.pts, dts: pes.dts, key: key };
samples.push(avcSample); samples.push(avcSample);
track.len += length; track.len += length;
@ -8420,7 +8450,6 @@ var logger = exports.logger = exportedLogger;
'use strict'; 'use strict';
var URLHelper = { var URLHelper = {
// build an absolute URL from a relative one using the provided baseURL // build an absolute URL from a relative one using the provided baseURL
// if relativeURL is an absolute URL it will be returned as is. // if relativeURL is an absolute URL it will be returned as is.
buildAbsoluteURL: function buildAbsoluteURL(baseURL, relativeURL) { buildAbsoluteURL: function buildAbsoluteURL(baseURL, relativeURL) {
@ -8454,18 +8483,27 @@ var URLHelper = {
baseURL = baseURLQuerySplit[1]; baseURL = baseURLQuerySplit[1];
} }
var baseURLDomainSplit = /^((([a-z]+):)?\/\/[a-z0-9\.\-_~]+(:[0-9]+)?\/)(.*)$/i.exec(baseURL); var baseURLDomainSplit = /^(([a-z]+:)?\/\/[a-z0-9\.\-_~]+(:[0-9]+)?)?(\/.*)$/i.exec(baseURL);
var baseURLProtocol = baseURLDomainSplit[3]; if (!baseURLDomainSplit) {
var baseURLDomain = baseURLDomainSplit[1]; throw new Error('Error trying to parse base URL.');
var baseURLPath = baseURLDomainSplit[5]; }
// e.g. 'http:', 'https:', ''
var baseURLProtocol = baseURLDomainSplit[2] || '';
// e.g. 'http://example.com', '//example.com', ''
var baseURLProtocolDomain = baseURLDomainSplit[1] || '';
// e.g. '/a/b/c/playlist.m3u8'
var baseURLPath = baseURLDomainSplit[4];
var builtURL = null; var builtURL = null;
if (/^\/\//.test(relativeURL)) { if (/^\/\//.test(relativeURL)) {
builtURL = baseURLProtocol + '://' + URLHelper.buildAbsolutePath('', relativeURL.substring(2)); // relative url starts wth '//' so copy protocol (which may be '' if baseUrl didn't provide one)
builtURL = baseURLProtocol + '//' + URLHelper.buildAbsolutePath('', relativeURL.substring(2));
} else if (/^\//.test(relativeURL)) { } else if (/^\//.test(relativeURL)) {
builtURL = baseURLDomain + URLHelper.buildAbsolutePath('', relativeURL.substring(1)); // relative url starts with '/' so start from root of domain
builtURL = baseURLProtocolDomain + '/' + URLHelper.buildAbsolutePath('', relativeURL.substring(1));
} else { } else {
builtURL = URLHelper.buildAbsolutePath(baseURLDomain + baseURLPath, relativeURL); builtURL = URLHelper.buildAbsolutePath(baseURLProtocolDomain + baseURLPath, relativeURL);
} }
// put the query and hash parts back // put the query and hash parts back

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{ {
"name": "hls.js", "name": "hls.js",
"version": "0.5.30", "version": "0.5.32",
"license": "Apache-2.0", "license": "Apache-2.0",
"description": "Media Source Extension - HLS library, by/for Dailymotion", "description": "Media Source Extension - HLS library, by/for Dailymotion",
"homepage": "https://github.com/dailymotion/hls.js", "homepage": "https://github.com/dailymotion/hls.js",

View file

@ -186,7 +186,7 @@ class LevelController extends EventHandler {
return; return;
} }
var details = data.details, hls = this.hls, levelId, level; let details = data.details, hls = this.hls, levelId, level, levelError = false;
// try to recover not fatal errors // try to recover not fatal errors
switch(details) { switch(details) {
case ErrorDetails.FRAG_LOAD_ERROR: case ErrorDetails.FRAG_LOAD_ERROR:
@ -199,6 +199,7 @@ class LevelController extends EventHandler {
case ErrorDetails.LEVEL_LOAD_ERROR: case ErrorDetails.LEVEL_LOAD_ERROR:
case ErrorDetails.LEVEL_LOAD_TIMEOUT: case ErrorDetails.LEVEL_LOAD_TIMEOUT:
levelId = data.level; levelId = data.level;
levelError = true;
break; break;
default: default:
break; break;
@ -222,6 +223,10 @@ class LevelController extends EventHandler {
hls.abrController.nextAutoLevel = 0; hls.abrController.nextAutoLevel = 0;
} else if(level && level.details && level.details.live) { } else if(level && level.details && level.details.live) {
logger.warn(`level controller,${details} on live stream, discard`); logger.warn(`level controller,${details} on live stream, discard`);
if (levelError) {
// reset this._level so that another call to set level() will retrigger a frag load
this._level = undefined;
}
// FRAG_LOAD_ERROR and FRAG_LOAD_TIMEOUT are handled by mediaController // FRAG_LOAD_ERROR and FRAG_LOAD_TIMEOUT are handled by mediaController
} else if (details !== ErrorDetails.FRAG_LOAD_ERROR && details !== ErrorDetails.FRAG_LOAD_TIMEOUT) { } else if (details !== ErrorDetails.FRAG_LOAD_ERROR && details !== ErrorDetails.FRAG_LOAD_TIMEOUT) {
logger.error(`cannot recover ${details} error`); logger.error(`cannot recover ${details} error`);

View file

@ -128,14 +128,15 @@ class StreamController extends EventHandler {
break; break;
case State.STARTING: case State.STARTING:
// determine load level // determine load level
this.startLevel = hls.startLevel; let startLevel = hls.startLevel;
if (this.startLevel === -1) { if (startLevel === -1) {
// -1 : guess start Level by doing a bitrate test by loading first fragment of lowest quality level // -1 : guess start Level by doing a bitrate test by loading first fragment of lowest quality level
this.startLevel = 0; startLevel = 0;
this.fragBitrateTest = true; this.fragBitrateTest = true;
} }
// set new level to playlist loader : this will trigger start level load // set new level to playlist loader : this will trigger start level load
this.level = hls.nextLoadLevel = this.startLevel; // hls.nextLoadLevel remains until it is set to a new value or until a new frag is successfully loaded
this.level = hls.nextLoadLevel = startLevel;
this.state = State.WAITING_LEVEL; this.state = State.WAITING_LEVEL;
this.loadedmetadata = false; this.loadedmetadata = false;
break; break;
@ -157,13 +158,7 @@ class StreamController extends EventHandler {
} else { } else {
pos = this.nextLoadPosition; pos = this.nextLoadPosition;
} }
// determine next load level
if (this.startFragRequested === false) {
level = this.startLevel;
} else {
// we are not at playback start, get next load level from level Controller
level = hls.nextLoadLevel; level = hls.nextLoadLevel;
}
var bufferInfo = BufferHelper.bufferInfo(this.media,pos,config.maxBufferHole), var bufferInfo = BufferHelper.bufferInfo(this.media,pos,config.maxBufferHole),
bufferLen = bufferInfo.len, bufferLen = bufferInfo.len,
bufferEnd = bufferInfo.end, bufferEnd = bufferInfo.end,
@ -292,9 +287,15 @@ class StreamController extends EventHandler {
} else { } else {
// have we reached end of VOD playlist ? // have we reached end of VOD playlist ?
if (!levelDetails.live) { if (!levelDetails.live) {
// Finalize the media stream
this.hls.trigger(Event.BUFFER_EOS); this.hls.trigger(Event.BUFFER_EOS);
// We might be loading the last fragment but actually the media
// is currently processing a seek command and waiting for new data to resume at another point.
// Going to ended state while media is seeking can spawn an infinite buffering broken state.
if (!this.media.seeking) {
this.state = State.ENDED; this.state = State.ENDED;
} }
}
frag = null; frag = null;
} }
} }
@ -747,10 +748,13 @@ class StreamController extends EventHandler {
fragCurrent && fragCurrent &&
data.frag.level === fragCurrent.level && data.frag.level === fragCurrent.level &&
data.frag.sn === fragCurrent.sn) { data.frag.sn === fragCurrent.sn) {
logger.log(`Loaded ${fragCurrent.sn} of level ${fragCurrent.level}`);
if (this.fragBitrateTest === true) { if (this.fragBitrateTest === true) {
// switch back to IDLE state ... we just loaded a fragment to determine adequate start bitrate and initialize autoswitch algo // switch back to IDLE state ... we just loaded a fragment to determine adequate start bitrate and initialize autoswitch algo
this.state = State.IDLE; this.state = State.IDLE;
this.fragBitrateTest = false; this.fragBitrateTest = false;
this.startFragRequested = false;
data.stats.tparsed = data.stats.tbuffered = performance.now(); data.stats.tparsed = data.stats.tbuffered = performance.now();
this.hls.trigger(Event.FRAG_BUFFERED, {stats: data.stats, frag: fragCurrent}); this.hls.trigger(Event.FRAG_BUFFERED, {stats: data.stats, frag: fragCurrent});
} else { } else {
@ -1064,8 +1068,17 @@ _checkBuffer() {
} }
} }
} else { } else {
if (targetSeekPosition && media.currentTime !== targetSeekPosition) { let currentTime = media.currentTime;
logger.log(`adjust currentTime from ${media.currentTime} to ${targetSeekPosition}`); if (targetSeekPosition && currentTime !== targetSeekPosition) {
if(bufferInfo.len === 0) {
let nextStart = bufferInfo.nextStart;
if (nextStart !== undefined &&
(nextStart - targetSeekPosition) < this.config.maxSeekHole) {
targetSeekPosition = nextStart;
logger.log(`target seek position not buffered, seek to next buffered ${targetSeekPosition}`);
}
}
logger.log(`adjust currentTime from ${currentTime} to ${targetSeekPosition}`);
media.currentTime = targetSeekPosition; media.currentTime = targetSeekPosition;
} }
} }

View file

@ -55,7 +55,8 @@
push(data, audioCodec, videoCodec, timeOffset, cc, level, sn, duration) { push(data, audioCodec, videoCodec, timeOffset, cc, level, sn, duration) {
var avcData, aacData, id3Data, var avcData, aacData, id3Data,
start, len = data.length, stt, pid, atf, offset, start, len = data.length, stt, pid, atf, offset,
codecsOnly = this.remuxer.passthrough; codecsOnly = this.remuxer.passthrough,
unknownPIDs = false;
this.audioCodec = audioCodec; this.audioCodec = audioCodec;
this.videoCodec = videoCodec; this.videoCodec = videoCodec;
@ -169,6 +170,15 @@
avcId = this._avcTrack.id; avcId = this._avcTrack.id;
aacId = this._aacTrack.id; aacId = this._aacTrack.id;
id3Id = this._id3Track.id; id3Id = this._id3Track.id;
if (unknownPIDs) {
logger.log('reparse from beginning');
unknownPIDs = false;
// we set it to -188, the += 188 in the for loop will reset start to 0
start = -188;
}
} else {
logger.log('unknown PID found before PAT/PMT');
unknownPIDs = true;
} }
} }
} else { } else {
@ -472,8 +482,11 @@
//build sample from PES //build sample from PES
// Annex B to MP4 conversion to be done // Annex B to MP4 conversion to be done
if (units2.length) { if (units2.length) {
// only push AVC sample if keyframe already found. browsers expect a keyframe at first to start decoding // only push AVC sample if keyframe already found in this fragment OR
if (key === true || track.sps ) { // keyframe found in last fragment (track.sps) AND
// samples already appended (we already found a keyframe in this fragment) OR fragment is contiguous
if (key === true ||
(track.sps && (samples.length || this.contiguous))) {
avcSample = {units: { units : units2, length : length}, pts: pes.pts, dts: pes.dts, key: key}; avcSample = {units: { units : units2, length : length}, pts: pes.pts, dts: pes.dts, key: key};
samples.push(avcSample); samples.push(avcSample);
track.len += length; track.len += length;

View file

@ -1,5 +1,4 @@
var URLHelper = { var URLHelper = {
// build an absolute URL from a relative one using the provided baseURL // build an absolute URL from a relative one using the provided baseURL
// if relativeURL is an absolute URL it will be returned as is. // if relativeURL is an absolute URL it will be returned as is.
buildAbsoluteURL: function(baseURL, relativeURL) { buildAbsoluteURL: function(baseURL, relativeURL) {
@ -33,20 +32,29 @@ var URLHelper = {
baseURL = baseURLQuerySplit[1]; baseURL = baseURLQuerySplit[1];
} }
var baseURLDomainSplit = /^((([a-z]+):)?\/\/[a-z0-9\.\-_~]+(:[0-9]+)?\/)(.*)$/i.exec(baseURL); var baseURLDomainSplit = /^(([a-z]+:)?\/\/[a-z0-9\.\-_~]+(:[0-9]+)?)?(\/.*)$/i.exec(baseURL);
var baseURLProtocol = baseURLDomainSplit[3]; if (!baseURLDomainSplit) {
var baseURLDomain = baseURLDomainSplit[1]; throw new Error('Error trying to parse base URL.');
var baseURLPath = baseURLDomainSplit[5]; }
// e.g. 'http:', 'https:', ''
var baseURLProtocol = baseURLDomainSplit[2] || '';
// e.g. 'http://example.com', '//example.com', ''
var baseURLProtocolDomain = baseURLDomainSplit[1] || '';
// e.g. '/a/b/c/playlist.m3u8'
var baseURLPath = baseURLDomainSplit[4];
var builtURL = null; var builtURL = null;
if (/^\/\//.test(relativeURL)) { if (/^\/\//.test(relativeURL)) {
builtURL = baseURLProtocol+'://'+URLHelper.buildAbsolutePath('', relativeURL.substring(2)); // relative url starts wth '//' so copy protocol (which may be '' if baseUrl didn't provide one)
builtURL = baseURLProtocol+'//'+URLHelper.buildAbsolutePath('', relativeURL.substring(2));
} }
else if (/^\//.test(relativeURL)) { else if (/^\//.test(relativeURL)) {
builtURL = baseURLDomain+URLHelper.buildAbsolutePath('', relativeURL.substring(1)); // relative url starts with '/' so start from root of domain
builtURL = baseURLProtocolDomain+'/'+URLHelper.buildAbsolutePath('', relativeURL.substring(1));
} }
else { else {
builtURL = URLHelper.buildAbsolutePath(baseURLDomain+baseURLPath, relativeURL); builtURL = URLHelper.buildAbsolutePath(baseURLProtocolDomain+baseURLPath, relativeURL);
} }
// put the query and hash parts back // put the query and hash parts back

View file

@ -3,15 +3,15 @@ define(['browser'], function (browser) {
var allPages = document.querySelectorAll('.mainAnimatedPage'); var allPages = document.querySelectorAll('.mainAnimatedPage');
var currentUrls = []; var currentUrls = [];
var pageContainerCount = allPages.length; var pageContainerCount = allPages.length;
var allowAnimation = true;
var selectedPageIndex = -1; var selectedPageIndex = -1;
function enableAnimation() { function enableAnimation() {
if (!allowAnimation) { if (browser.tv) {
return false; return false;
} }
if (browser.tv) { if (browser.safari) {
// Right now they don't look good. Haven't figured out why yet.
return false; return false;
} }
@ -195,7 +195,7 @@ define(['browser'], function (browser) {
function animate(newAnimatedPage, oldAnimatedPage, transition, isBack) { function animate(newAnimatedPage, oldAnimatedPage, transition, isBack) {
if (enableAnimation() && newAnimatedPage.animate) { if (enableAnimation() && oldAnimatedPage && newAnimatedPage.animate) {
if (transition == 'slide') { if (transition == 'slide') {
return slide(newAnimatedPage, oldAnimatedPage, transition, isBack); return slide(newAnimatedPage, oldAnimatedPage, transition, isBack);
} else if (transition == 'fade') { } else if (transition == 'fade') {

View file

@ -62,6 +62,15 @@
</emby-collapsible> </emby-collapsible>
</div> </div>
<div class="healthMonitorSection hide" style="margin-top: 2em;">
<h1 style="display:flex;align-items:center;">
<div>${HeaderHealthMonitor}</div>
<button is="paper-icon-button-light" type="button" style="margin-left:.5em;"><iron-icon icon="refresh"></iron-icon></button>
</h1>
<div class="healthMonitor paperList">
</div>
</div>
<div class="activeDevicesCollapsible" style="margin-top: 2em;"> <div class="activeDevicesCollapsible" style="margin-top: 2em;">
<h1>${HeaderActiveDevices}</h1> <h1>${HeaderActiveDevices}</h1>
<div class="activeDevices"> <div class="activeDevices">

View file

@ -1,5 +1,21 @@
define(['datetime'], function (datetime) { define(['datetime'], function (datetime) {
function renderNoHealthAlertsMessage(page) {
var html = '<p style="padding:0 .5em;display:flex;align-items:center;">';
html += '<iron-icon icon="check" style="margin-right:.5em;background-color: #52B54B;border-radius:1em;color: #fff;"></iron-icon>';
html += Globalize.translate('HealthMonitorNoAlerts') + '</p>';
page.querySelector('.healthMonitor').innerHTML = html;
}
function refreshHealthMonitor(page) {
renderNoHealthAlertsMessage(page);
}
window.DashboardPage = { window.DashboardPage = {
newsStartIndex: 0, newsStartIndex: 0,
@ -44,6 +60,8 @@
$('.swaggerLink', page).attr('href', apiClient.getUrl('swagger-ui/index.html', { $('.swaggerLink', page).attr('href', apiClient.getUrl('swagger-ui/index.html', {
api_key: ApiClient.accessToken() api_key: ApiClient.accessToken()
})); }));
refreshHealthMonitor(page);
}, },
onPageHide: function () { onPageHide: function () {

View file

@ -35,21 +35,49 @@
config.EnableAutoOrganize = $('#chkOrganize', form).checked(); config.EnableAutoOrganize = $('#chkOrganize', form).checked();
config.EnableRecordingEncoding = $('#chkConvertRecordings', form).checked(); config.EnableRecordingEncoding = $('#chkConvertRecordings', form).checked();
config.EnableOriginalAudioWithEncodedRecordings = $('#chkPreserveAudio', form).checked(); config.EnableOriginalAudioWithEncodedRecordings = $('#chkPreserveAudio', form).checked();
config.RecordingPath = form.querySelector('#txtRecordingPath').value || null;
config.MovieRecordingPath = form.querySelector('#txtMovieRecordingPath').value || null; var recordingPath = form.querySelector('#txtRecordingPath').value || null;
config.SeriesRecordingPath = form.querySelector('#txtSeriesRecordingPath').value || null; var movieRecordingPath = form.querySelector('#txtMovieRecordingPath').value || null;
var seriesRecordingPath = form.querySelector('#txtSeriesRecordingPath').value || null;
var recordingPathChanged = recordingPath != config.RecordingPath ||
movieRecordingPath != config.MovieRecordingPath ||
seriesRecordingPath != config.SeriesRecordingPath;
config.RecordingPath = recordingPath;
config.MovieRecordingPath = movieRecordingPath;
config.SeriesRecordingPath = seriesRecordingPath;
config.PrePaddingSeconds = $('#txtPrePaddingMinutes', form).val() * 60; config.PrePaddingSeconds = $('#txtPrePaddingMinutes', form).val() * 60;
config.PostPaddingSeconds = $('#txtPostPaddingMinutes', form).val() * 60; config.PostPaddingSeconds = $('#txtPostPaddingMinutes', form).val() * 60;
config.EnableRecordingSubfolders = form.querySelector('#chkEnableRecordingSubfolders').checked; config.EnableRecordingSubfolders = form.querySelector('#chkEnableRecordingSubfolders').checked;
ApiClient.updateNamedConfiguration("livetv", config).then(Dashboard.processServerConfigurationUpdateResult); ApiClient.updateNamedConfiguration("livetv", config).then(function () {
Dashboard.processServerConfigurationUpdateResult();
showSaveMessage(recordingPathChanged);
});
}); });
// Disable default form submission // Disable default form submission
return false; return false;
} }
function showSaveMessage(recordingPathChanged) {
var msg = '';
if (recordingPathChanged) {
msg += Globalize.translate('RecordingPathChangeMessage');
}
if (msg) {
require(['alert'], function (alert) {
alert(msg);
});
}
}
function getTabs() { function getTabs() {
return [ return [
{ {

View file

@ -699,7 +699,7 @@
} }
html += LibraryBrowser.getPosterViewHtml({ html += LibraryBrowser.getPosterViewHtml({
items: result.Items, items: result.Items,
shape: enableScrollX() ? 'autoOverflow' : 'auto', shape: enableScrollX() ? 'autooverflow' : 'auto',
showTitle: true, showTitle: true,
showParentTitle: true, showParentTitle: true,
coverImage: true, coverImage: true,

View file

@ -1721,7 +1721,6 @@ var AppInfo = {};
humanedate: 'components/humanedate', humanedate: 'components/humanedate',
libraryBrowser: 'scripts/librarybrowser', libraryBrowser: 'scripts/librarybrowser',
chromecasthelpers: 'components/chromecasthelpers', chromecasthelpers: 'components/chromecasthelpers',
fastclick: bowerPath + '/fastclick/lib/fastclick',
events: apiClientBowerPath + '/events', events: apiClientBowerPath + '/events',
credentialprovider: apiClientBowerPath + '/credentials', credentialprovider: apiClientBowerPath + '/credentials',
apiclient: apiClientBowerPath + '/apiclient', apiclient: apiClientBowerPath + '/apiclient',
@ -2972,9 +2971,10 @@ var AppInfo = {};
defineRoute({ defineRoute({
path: '/wizardfinish.html', path: '/wizardfinish.html',
dependencies: [], dependencies: ['paper-button'],
autoFocus: false, autoFocus: false,
anonymous: true anonymous: true,
controller: 'scripts/wizardfinishpage'
}); });
defineRoute({ defineRoute({
@ -3073,10 +3073,6 @@ var AppInfo = {};
loadTheme(); loadTheme();
if (browserInfo.safari && browserInfo.mobile) {
//initFastClick();
}
if (Dashboard.isRunningInCordova()) { if (Dashboard.isRunningInCordova()) {
deps.push('registrationservices'); deps.push('registrationservices');

View file

@ -1,7 +1,9 @@
define(['jQuery'], function ($) { define(['loading'], function (loading) {
function onFinish() { function onFinish() {
loading.show();
ApiClient.ajax({ ApiClient.ajax({
url: ApiClient.getUrl('Startup/Complete'), url: ApiClient.getUrl('Startup/Complete'),
@ -10,12 +12,15 @@
}).then(function () { }).then(function () {
Dashboard.navigate('dashboard.html'); Dashboard.navigate('dashboard.html');
loading.hide();
}); });
} }
$(document).on('pageinit', '#wizardFinishPage', function(){ return function (view, params) {
$('.btnWizardNext', this).on('click', onFinish); var self = this;
});
view.querySelector('.btnWizardNext').addEventListener('click', onFinish);
};
}); });

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u062e\u0631\u0648\u062c", "LabelExit": "\u062e\u0631\u0648\u062c",
"LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639", "LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639",
"LabelGithub": "\u062c\u064a\u062a \u0647\u0628", "LabelGithub": "\u062c\u064a\u062a \u0647\u0628",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "\u0645\u064a\u0632\u0627\u0646\u064a\u0629", "OptionBudget": "\u0645\u064a\u0632\u0627\u0646\u064a\u0629",
"OptionRevenue": "\u0627\u064a\u0631\u0627\u062f\u0627\u062a", "OptionRevenue": "\u0627\u064a\u0631\u0627\u062f\u0627\u062a",
"OptionPoster": "\u0627\u0644\u0645\u0644\u0635\u0642", "OptionPoster": "\u0627\u0644\u0645\u0644\u0635\u0642",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649", "OptionTimeline": "\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u0418\u0437\u0445\u043e\u0434", "LabelExit": "\u0418\u0437\u0445\u043e\u0434",
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e", "LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 \u041f\u0418\u041d \u043a\u043e\u0434", "ButtonConfigurePinCode": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 \u041f\u0418\u041d \u043a\u043e\u0434",
"HeaderAdultsReadHere": "\u0412\u044a\u0437\u0440\u0430\u0441\u0442\u043d\u0438, \u043f\u0440\u043e\u0447\u0435\u0442\u0435\u0442\u0435 \u0442\u0443\u043a!", "HeaderAdultsReadHere": "\u0412\u044a\u0437\u0440\u0430\u0441\u0442\u043d\u0438, \u043f\u0440\u043e\u0447\u0435\u0442\u0435\u0442\u0435 \u0442\u0443\u043a!",
"RegisterWithPayPal": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0439 \u0441 PayPal", "RegisterWithPayPal": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0439 \u0441 PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "\u041d\u0430\u0441\u043b\u0430\u0434\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0431\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u0430 14 \u0434\u043d\u0435\u0432\u043d\u0430 \u043f\u0440\u043e\u0431\u0430", "HeaderEnjoyDayTrial": "\u041d\u0430\u0441\u043b\u0430\u0434\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0431\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u0430 14 \u0434\u043d\u0435\u0432\u043d\u0430 \u043f\u0440\u043e\u0431\u0430",
"LabelSyncTempPath": "\u0412\u0440\u0435\u043c\u0435\u043d\u0435\u043d \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u044a\u0442:", "LabelSyncTempPath": "\u0412\u0440\u0435\u043c\u0435\u043d\u0435\u043d \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u044a\u0442:",
"LabelSyncTempPathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u0430 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f.", "LabelSyncTempPathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u0430 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "\u0421\u043c\u0435\u0441\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435", "FolderTypeMixed": "\u0421\u043c\u0435\u0441\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
"FolderTypeMovies": "\u0424\u0438\u043b\u043c\u0438", "FolderTypeMovies": "\u0424\u0438\u043b\u043c\u0438",
"FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430", "FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430",
"FolderTypeAdultVideos": "\u041a\u043b\u0438\u043f\u043e\u0432\u0435 \u0437\u0430 \u0432\u044a\u0437\u0440\u0430\u0441\u0442\u043d\u0438",
"FolderTypePhotos": "\u0421\u043d\u0438\u043c\u043a\u0438", "FolderTypePhotos": "\u0421\u043d\u0438\u043c\u043a\u0438",
"FolderTypeMusicVideos": "\u041c\u0443\u0437\u0438\u043a\u0430\u043b\u043d\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435", "FolderTypeMusicVideos": "\u041c\u0443\u0437\u0438\u043a\u0430\u043b\u043d\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435",
"FolderTypeHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435", "FolderTypeHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435",
@ -202,7 +205,7 @@
"OptionAscending": "\u0412\u044a\u0437\u0445\u043e\u0434\u044f\u0449", "OptionAscending": "\u0412\u044a\u0437\u0445\u043e\u0434\u044f\u0449",
"OptionDescending": "\u041d\u0438\u0437\u0445\u043e\u0434\u044f\u0449", "OptionDescending": "\u041d\u0438\u0437\u0445\u043e\u0434\u044f\u0449",
"OptionRuntime": "\u0412\u0440\u0435\u043c\u0435\u0442\u0440\u0430\u0435\u043d\u0435", "OptionRuntime": "\u0412\u0440\u0435\u043c\u0435\u0442\u0440\u0430\u0435\u043d\u0435",
"OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0438\u0437\u0434\u0430\u0432\u0430\u043d\u0435", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "\u0411\u0440\u043e\u0439 \u043f\u0443\u0441\u043a\u0430\u043d\u0438\u044f", "OptionPlayCount": "\u0411\u0440\u043e\u0439 \u043f\u0443\u0441\u043a\u0430\u043d\u0438\u044f",
"OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435", "OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435",
"OptionDateAdded": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435", "OptionDateAdded": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435",
@ -216,6 +219,7 @@
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438", "OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
"OptionPoster": "\u041f\u043b\u0430\u043a\u0430\u0442", "OptionPoster": "\u041f\u043b\u0430\u043a\u0430\u0442",
"HeaderYears": "Years",
"OptionPosterCard": "\u041a\u0430\u0440\u0442\u0430 \u043f\u043b\u0430\u043a\u0430\u0442", "OptionPosterCard": "\u041a\u0430\u0440\u0442\u0430 \u043f\u043b\u0430\u043a\u0430\u0442",
"OptionBackdrop": "\u0424\u043e\u043d", "OptionBackdrop": "\u0424\u043e\u043d",
"OptionTimeline": "\u0413\u0440\u0430\u0444\u0438\u043a", "OptionTimeline": "\u0413\u0440\u0430\u0444\u0438\u043a",
@ -325,7 +329,7 @@
"OptionMetascore": "\u041c\u0435\u0442\u0430 \u0442\u043e\u0447\u043a\u0438", "OptionMetascore": "\u041c\u0435\u0442\u0430 \u0442\u043e\u0447\u043a\u0438",
"ButtonSelect": "\u0418\u0437\u0431\u0435\u0440\u0438", "ButtonSelect": "\u0418\u0437\u0431\u0435\u0440\u0438",
"ButtonGroupVersions": "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u0439 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435", "ButtonGroupVersions": "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u0439 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435",
"ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u043a\u043e\u043b\u0435\u043a\u0446\u0438\u044f\u0442\u0430", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Pismo File Mount \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.", "PismoMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Pismo File Mount \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.",
"TangibleSoftwareMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Tangible Solutions Java\/C# converters \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.", "TangibleSoftwareMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Tangible Solutions Java\/C# converters \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.",
"HeaderCredits": "\u041a\u0440\u0435\u0434\u0438\u0442\u0438", "HeaderCredits": "\u041a\u0440\u0435\u0434\u0438\u0442\u0438",
@ -347,8 +351,10 @@
"LabelCustomPaths": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043f\u044a\u0442\u0438\u0449\u0430 \u043f\u043e \u0438\u0437\u0431\u043e\u0440 \u043a\u044a\u0434\u0435\u0442\u043e \u0436\u0435\u043b\u0430\u0435\u0442\u0435. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u043e\u043b\u0435\u0442\u0430\u0442\u0430 \u043f\u0440\u0430\u0437\u043d\u0438 \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u043f\u044a\u0442\u0438\u0449\u0430\u0442\u0430 \u043f\u043e \u0438\u0437\u0431\u043e\u0440.", "LabelCustomPaths": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043f\u044a\u0442\u0438\u0449\u0430 \u043f\u043e \u0438\u0437\u0431\u043e\u0440 \u043a\u044a\u0434\u0435\u0442\u043e \u0436\u0435\u043b\u0430\u0435\u0442\u0435. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u043e\u043b\u0435\u0442\u0430\u0442\u0430 \u043f\u0440\u0430\u0437\u043d\u0438 \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u043f\u044a\u0442\u0438\u0449\u0430\u0442\u0430 \u043f\u043e \u0438\u0437\u0431\u043e\u0440.",
"LabelCachePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043a\u0435\u0448\u0430:", "LabelCachePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043a\u0435\u0448\u0430:",
"LabelCachePathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u0437\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u043d\u0438\u0442\u0435 \u043a\u0435\u0448 \u0444\u0430\u0439\u043b\u043e\u0432\u0435, \u043a\u0430\u0442\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u044f\u0441\u0442\u043e\u0442\u043e \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.", "LabelCachePathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u0437\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u043d\u0438\u0442\u0435 \u043a\u0435\u0448 \u0444\u0430\u0439\u043b\u043e\u0432\u0435, \u043a\u0430\u0442\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u044f\u0441\u0442\u043e\u0442\u043e \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
"LabelRecordingPath": "\u041f\u044a\u0442 \u043d\u0430 \u0437\u0430\u043f\u0438\u0441:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u043d\u0430 \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u0438\u043e\u043d\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u044f\u0441\u0442\u043e\u0442\u043e \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043f\u044a\u0442 \u043d\u0430 \u0438\u043c\u0435\u0442\u043e:", "LabelImagesByNamePath": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043f\u044a\u0442 \u043d\u0430 \u0438\u043c\u0435\u0442\u043e:",
"LabelImagesByNamePathHelp": "\u0417\u0430\u0434\u0430\u0439\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u043f\u043e \u0438\u0437\u0431\u043e\u0440 \u0437\u0430 \u0441\u0432\u0430\u043b\u0435\u043d\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0430\u043a\u0442\u044c\u043e\u0440\u0438, \u0436\u0430\u043d\u0440\u043e\u0432\u0435 \u0438 \u0441\u0442\u0443\u0434\u0438\u0430.", "LabelImagesByNamePathHelp": "\u0417\u0430\u0434\u0430\u0439\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u043f\u043e \u0438\u0437\u0431\u043e\u0440 \u0437\u0430 \u0441\u0432\u0430\u043b\u0435\u043d\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0430\u043a\u0442\u044c\u043e\u0440\u0438, \u0436\u0430\u043d\u0440\u043e\u0432\u0435 \u0438 \u0441\u0442\u0443\u0434\u0438\u0430.",
"LabelMetadataPath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430:", "LabelMetadataPath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "\u0423\u0435\u0431 \u0441\u043e\u043a\u0435\u0442 \u043f\u043e\u0440\u0442:", "LabelWebSocketPortNumber": "\u0423\u0435\u0431 \u0441\u043e\u043a\u0435\u0442 \u043f\u043e\u0440\u0442:",
"LabelEnableAutomaticPortMap": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d \u043c\u0430\u043f\u0438\u043d\u0433 \u043d\u0430 \u043f\u043e\u0440\u0442\u043e\u0432\u0435\u0442\u0435", "LabelEnableAutomaticPortMap": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d \u043c\u0430\u043f\u0438\u043d\u0433 \u043d\u0430 \u043f\u043e\u0440\u0442\u043e\u0432\u0435\u0442\u0435",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "\u0412\u044a\u043d\u0448\u0435\u043d WAN \u0430\u0434\u0440\u0435\u0441:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "\u0410\u043a\u043e \u0438\u043c\u0430\u0442\u0435 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u043d DNS \u0433\u043e \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0442\u0443\u043a. Emby \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0442\u0430 \u0449\u0435 \u0433\u043e \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u043f\u0440\u0438 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u043e \u0441\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e \u0437\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u043d\u0435.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0438", "TabResume": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0438",
"TabWeather": "\u0412\u0440\u0435\u043c\u0435\u0442\u043e", "TabWeather": "\u0412\u0440\u0435\u043c\u0435\u0442\u043e",
"TitleAppSettings": "App \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "TitleAppSettings": "App \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Sortir", "LabelExit": "Sortir",
"LabelVisitCommunity": "Visita la Comunitat", "LabelVisitCommunity": "Visita la Comunitat",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configura codi pin", "ButtonConfigurePinCode": "Configura codi pin",
"HeaderAdultsReadHere": "Adults Llegiu Aqu\u00ed!", "HeaderAdultsReadHere": "Adults Llegiu Aqu\u00ed!",
"RegisterWithPayPal": "Registra amb PayPal", "RegisterWithPayPal": "Registra amb PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Gaudeix una Prova Gratu\u00efta de 14 Dies", "HeaderEnjoyDayTrial": "Gaudeix una Prova Gratu\u00efta de 14 Dies",
"LabelSyncTempPath": "Directori de fitxers temporals:", "LabelSyncTempPath": "Directori de fitxers temporals:",
"LabelSyncTempPathHelp": "Especifica un directori de treball personalitzat per al sync. Els multim\u00e8dia convertits durant el proc\u00e9s de sincronitzaci\u00f3 es desaran aqu\u00ed.", "LabelSyncTempPathHelp": "Especifica un directori de treball personalitzat per al sync. Els multim\u00e8dia convertits durant el proc\u00e9s de sincronitzaci\u00f3 es desaran aqu\u00ed.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Habilita la visualitzaci\u00f3 millorada de pel\u00b7l\u00edcules", "LabelEnableEnhancedMovies": "Habilita la visualitzaci\u00f3 millorada de pel\u00b7l\u00edcules",
"LabelEnableEnhancedMoviesHelp": "Si s'habilita, les pel\u00b7l\u00edcules es mostraran com a directoris per a incloure tr\u00e0ilers, extres, elenc i equip i qualsevol altre contingut relacionat.", "LabelEnableEnhancedMoviesHelp": "Si s'habilita, les pel\u00b7l\u00edcules es mostraran com a directoris per a incloure tr\u00e0ilers, extres, elenc i equip i qualsevol altre contingut relacionat.",
"HeaderSyncJobInfo": "Feina del Sync", "HeaderSyncJobInfo": "Feina del Sync",
"FolderTypeMixed": "Contingut mesclat", "FolderTypeMixed": "Contingut barrejat",
"FolderTypeMovies": "Pel\u00b7l\u00edcules", "FolderTypeMovies": "Pel\u00b7l\u00edcules",
"FolderTypeMusic": "M\u00fasica", "FolderTypeMusic": "M\u00fasica",
"FolderTypeAdultVideos": "V\u00eddeos per adults",
"FolderTypePhotos": "Fotos", "FolderTypePhotos": "Fotos",
"FolderTypeMusicVideos": "V\u00eddeos musicals", "FolderTypeMusicVideos": "V\u00eddeos musicals",
"FolderTypeHomeVideos": "V\u00eddeos dom\u00e8stics", "FolderTypeHomeVideos": "V\u00eddeos dom\u00e8stics",
@ -202,7 +205,7 @@
"OptionAscending": "Ascendent", "OptionAscending": "Ascendent",
"OptionDescending": "Descendent", "OptionDescending": "Descendent",
"OptionRuntime": "Temps d'exec.", "OptionRuntime": "Temps d'exec.",
"OptionReleaseDate": "Data de Publicaci\u00f3", "OptionReleaseDate": "Data d'Estrena",
"OptionPlayCount": "Nombre de Reproduccions", "OptionPlayCount": "Nombre de Reproduccions",
"OptionDatePlayed": "Data de Reproducci\u00f3", "OptionDatePlayed": "Data de Reproducci\u00f3",
"OptionDateAdded": "Data afegida", "OptionDateAdded": "Data afegida",
@ -216,6 +219,7 @@
"OptionBudget": "Pressupost", "OptionBudget": "Pressupost",
"OptionRevenue": "Ingressos", "OptionRevenue": "Ingressos",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Tel\u00f3 de fons", "OptionBackdrop": "Tel\u00f3 de fons",
"OptionTimeline": "L\u00ednia temporal", "OptionTimeline": "L\u00ednia temporal",
@ -325,7 +329,7 @@
"OptionMetascore": "Metapuntuaci\u00f3", "OptionMetascore": "Metapuntuaci\u00f3",
"ButtonSelect": "Selecciona", "ButtonSelect": "Selecciona",
"ButtonGroupVersions": "Agrupar Versions", "ButtonGroupVersions": "Agrupar Versions",
"ButtonAddToCollection": "Afegir a Col\u00b7lecci\u00f3", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Cr\u00e8dits", "HeaderCredits": "Cr\u00e8dits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Especifica directoris personalitzats on vulguis. Deixa els camps en blanc per emprar els valors per defecte.", "LabelCustomPaths": "Especifica directoris personalitzats on vulguis. Deixa els camps en blanc per emprar els valors per defecte.",
"LabelCachePath": "Dir. de mem\u00f2ria cau:", "LabelCachePath": "Dir. de mem\u00f2ria cau:",
"LabelCachePathHelp": "Especifica una ubicaci\u00f3 personalitzada per als fitxers de mem\u00f2ria cau del servidor. Deixa-ho en blanc per emprar el valor per defecte del servidor.", "LabelCachePathHelp": "Especifica una ubicaci\u00f3 personalitzada per als fitxers de mem\u00f2ria cau del servidor. Deixa-ho en blanc per emprar el valor per defecte del servidor.",
"LabelRecordingPath": "Directori d'enregistraments:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Especifica un directori personalitzat on desar els enregistraments. Deixa-ho en blanc per emprar el valor per defecte del servidor.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Imatges per nom de directori:", "LabelImagesByNamePath": "Imatges per nom de directori:",
"LabelImagesByNamePathHelp": "Especifica una ubicaci\u00f3 personalitzada per a les imatges descarregades d'actors, g\u00e8neres i estudis.", "LabelImagesByNamePathHelp": "Especifica una ubicaci\u00f3 personalitzada per a les imatges descarregades d'actors, g\u00e8neres i estudis.",
"LabelMetadataPath": "Directori de metadades:", "LabelMetadataPath": "Directori de metadades:",
@ -489,7 +495,7 @@
"HeaderCastCrew": "Repartiment i Equip", "HeaderCastCrew": "Repartiment i Equip",
"HeaderAdditionalParts": "Parts addicionals", "HeaderAdditionalParts": "Parts addicionals",
"ButtonSplitVersionsApart": "Split Versions Apart", "ButtonSplitVersionsApart": "Split Versions Apart",
"ButtonPlayTrailer": "Tr\u00e0iler", "ButtonPlayTrailer": "Anunci",
"LabelMissing": "Manca", "LabelMissing": "Manca",
"LabelOffline": "Desconnectat", "LabelOffline": "Desconnectat",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Port del socket web:", "LabelWebSocketPortNumber": "Port del socket web:",
"LabelEnableAutomaticPortMap": "Habilita l'auto-mapatge de ports", "LabelEnableAutomaticPortMap": "Habilita l'auto-mapatge de ports",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "Adre\u00e7a WAN externa", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Reprendre", "TabResume": "Reprendre",
"TabWeather": "Temps", "TabWeather": "Temps",
"TitleAppSettings": "Prefer\u00e8ncies d'App", "TitleAppSettings": "Prefer\u00e8ncies d'App",
@ -586,8 +592,8 @@
"LabelSkipped": "Saltat", "LabelSkipped": "Saltat",
"HeaderEpisodeOrganization": "Organitzaci\u00f3 d'Episodis", "HeaderEpisodeOrganization": "Organitzaci\u00f3 d'Episodis",
"LabelSeries": "S\u00e8ries:", "LabelSeries": "S\u00e8ries:",
"LabelSeasonNumber": "N\u00famero de temporada", "LabelSeasonNumber": "Nombre de temporada:",
"LabelEpisodeNumber": "Nombre d'episodi", "LabelEpisodeNumber": "Nombre d'episodi:",
"LabelEndingEpisodeNumber": "Nombre d'episodi final", "LabelEndingEpisodeNumber": "Nombre d'episodi final",
"LabelEndingEpisodeNumberHelp": "Nom\u00e9s cal per als fitxers multi-episodi", "LabelEndingEpisodeNumberHelp": "Nom\u00e9s cal per als fitxers multi-episodi",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Reprodu\u00efnt", "TabNowPlaying": "Reprodu\u00efnt",
"TabNavigation": "Navegaci\u00f3", "TabNavigation": "Navegaci\u00f3",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Escenes", "ButtonScenes": "Escenes",
"ButtonSubtitles": "Subt\u00edtols", "ButtonSubtitles": "Subt\u00edtols",
"ButtonPreviousTrack": "Pista anterior", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Pista seg\u00fcent", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Atura", "ButtonStop": "Atura",
"ButtonPause": "Pausa", "ButtonPause": "Pausa",
"ButtonNext": "Seg\u00fcent", "ButtonNext": "Seg\u00fcent",
@ -912,6 +920,7 @@
"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.", "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": "Aquesta llista de reproducci\u00f3 \u00e9s buida actualment.", "MessageNoPlaylistItemsAvailable": "Aquesta llista de reproducci\u00f3 \u00e9s buida actualment.",
"ButtonDismiss": "Descarta", "ButtonDismiss": "Descarta",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Temporada 0", "OptionSeason0": "Temporada 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Can\u00e7ons", "OptionReportSongs": "Can\u00e7ons",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "V\u00eddeos per adults", "OptionReportAdultVideos": "V\u00eddeos per adults",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} ha estat cancel\u00b7lat", "ScheduledTaskCancelledWithName": "{0} ha estat cancel\u00b7lat",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Habilita Auto-Organitza per a nous enregistraments", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subt\u00edtols", "HeaderSubtitles": "Subt\u00edtols",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organitza", "TabAutoOrganize": "Auto-Organitza",
"TabPlugins": "Complements", "TabPlugins": "Complements",
"TabHelp": "Ajuda", "TabHelp": "Ajuda",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Pistes d'\u00e0udio",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notificacions", "HeaderNotifications": "Notificacions",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Valoraci\u00f3 Parental",
"HeaderReleaseDate": "Data de publicaci\u00f3", "HeaderReleaseDate": "Data de publicaci\u00f3",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Data afegida",
"HeaderSeries": "Series", "HeaderSeries": "S\u00e8ries:",
"HeaderSeason": "Temporada", "HeaderSeason": "Temporada",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Any:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Jugadors:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Jocs", "HeaderGames": "Jocs",
"HeaderBooks": "Llibres", "HeaderBooks": "Llibres",
"HeaderEpisodes": "Episodis:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "Aquest nom d'usuari ja est\u00e0 en \u00fas. Si et plau, escull un altre nom i torna a provar.", "ErrorMessageUsernameInUse": "Aquest nom d'usuari ja est\u00e0 en \u00fas. Si et plau, escull un altre nom i torna a provar.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Compartir", "HeaderShare": "Compartir",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Comparteix", "ButtonShare": "Comparteix",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync requereix una membresia de col\u00b7laborador",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Zav\u0159\u00edt", "LabelExit": "Zav\u0159\u00edt",
"LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu", "LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Konfigurace pin code", "ButtonConfigurePinCode": "Konfigurace pin code",
"HeaderAdultsReadHere": "Pro dosp\u011bl\u00e9 - \u010dt\u011bte zde!", "HeaderAdultsReadHere": "Pro dosp\u011bl\u00e9 - \u010dt\u011bte zde!",
"RegisterWithPayPal": "Zaregistrujte se pomoc\u00ed PayPal", "RegisterWithPayPal": "Zaregistrujte se pomoc\u00ed PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "U\u017eijte si 14 denn\u00ed zku\u0161ebn\u00ed verzi zdarma", "HeaderEnjoyDayTrial": "U\u017eijte si 14 denn\u00ed zku\u0161ebn\u00ed verzi zdarma",
"LabelSyncTempPath": "Slo\u017eka pro do\u010dasn\u00e9 soubory:", "LabelSyncTempPath": "Slo\u017eka pro do\u010dasn\u00e9 soubory:",
"LabelSyncTempPathHelp": "Zadejte vlastn\u00ed synchroniza\u010dn\u00ed pracovn\u00ed slo\u017eku. P\u0159eveden\u00e9 m\u00e9dia vytvo\u0159en\u00e9 b\u011bhem synchroniza\u010dn\u00edho procesu zde budou ulo\u017eeny.", "LabelSyncTempPathHelp": "Zadejte vlastn\u00ed synchroniza\u010dn\u00ed pracovn\u00ed slo\u017eku. P\u0159eveden\u00e9 m\u00e9dia vytvo\u0159en\u00e9 b\u011bhem synchroniza\u010dn\u00edho procesu zde budou ulo\u017eeny.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Sm\u00ed\u0161en\u00fd obsah", "FolderTypeMixed": "Sm\u00ed\u0161en\u00fd obsah",
"FolderTypeMovies": "Filmy", "FolderTypeMovies": "Filmy",
"FolderTypeMusic": "Hudba", "FolderTypeMusic": "Hudba",
"FolderTypeAdultVideos": "Filmy pro dosp\u011bl\u00e9",
"FolderTypePhotos": "Fotky", "FolderTypePhotos": "Fotky",
"FolderTypeMusicVideos": "Hudebn\u00ed klipy", "FolderTypeMusicVideos": "Hudebn\u00ed klipy",
"FolderTypeHomeVideos": "Dom\u00e1c\u00ed video", "FolderTypeHomeVideos": "Dom\u00e1c\u00ed video",
@ -216,6 +219,7 @@
"OptionBudget": "Rozpo\u010det", "OptionBudget": "Rozpo\u010det",
"OptionRevenue": "P\u0159\u00edjem", "OptionRevenue": "P\u0159\u00edjem",
"OptionPoster": "Plak\u00e1t", "OptionPoster": "Plak\u00e1t",
"HeaderYears": "Roky",
"OptionPosterCard": "Plak\u00e1t", "OptionPosterCard": "Plak\u00e1t",
"OptionBackdrop": "Pozad\u00ed", "OptionBackdrop": "Pozad\u00ed",
"OptionTimeline": "\u010casov\u00e1 osa", "OptionTimeline": "\u010casov\u00e1 osa",
@ -325,7 +329,7 @@
"OptionMetascore": "Metask\u00f3re", "OptionMetascore": "Metask\u00f3re",
"ButtonSelect": "Vybrat", "ButtonSelect": "Vybrat",
"ButtonGroupVersions": "Skupinov\u00e9 verze", "ButtonGroupVersions": "Skupinov\u00e9 verze",
"ButtonAddToCollection": "P\u0159idat do Kolekce", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Vyu\u017e\u00edv\u00e1me spr\u00e1vce soubor\u016f \"Pismo\" skrze dotovanou licenci.", "PismoMessage": "Vyu\u017e\u00edv\u00e1me spr\u00e1vce soubor\u016f \"Pismo\" skrze dotovanou licenci.",
"TangibleSoftwareMessage": "Pou\u017eit\u00e9 konkr\u00e9tn\u00ed \u0159e\u0161en\u00ed Java \/ C # p\u0159evodn\u00edk\u016f skrz p\u0159\u00edsp\u011bvkov\u00e9 licence.", "TangibleSoftwareMessage": "Pou\u017eit\u00e9 konkr\u00e9tn\u00ed \u0159e\u0161en\u00ed Java \/ C # p\u0159evodn\u00edk\u016f skrz p\u0159\u00edsp\u011bvkov\u00e9 licence.",
"HeaderCredits": "Kredity", "HeaderCredits": "Kredity",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specifikujte adres\u00e1\u0159. Nechte pr\u00e1zdn\u00e9 pro defaultn\u00ed nastaven\u00ed.", "LabelCustomPaths": "Specifikujte adres\u00e1\u0159. Nechte pr\u00e1zdn\u00e9 pro defaultn\u00ed nastaven\u00ed.",
"LabelCachePath": "Slo\u017eka pro cache:", "LabelCachePath": "Slo\u017eka pro cache:",
"LabelCachePathHelp": "Zadejte vlastn\u00ed um\u00edst\u011bn\u00ed pro serverov\u00e9 do\u010dasn\u00e9 soubory, jako jsou obr\u00e1zky. Ponechte pr\u00e1zdn\u00e9, pokud chcete pou\u017e\u00edt v\u00fdchoz\u00ed nastaven\u00ed serveru.", "LabelCachePathHelp": "Zadejte vlastn\u00ed um\u00edst\u011bn\u00ed pro serverov\u00e9 do\u010dasn\u00e9 soubory, jako jsou obr\u00e1zky. Ponechte pr\u00e1zdn\u00e9, pokud chcete pou\u017e\u00edt v\u00fdchoz\u00ed nastaven\u00ed serveru.",
"LabelRecordingPath": "Slo\u017eka pro nahr\u00e1vky:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Zadejte vlastn\u00ed um\u00edst\u011bn\u00ed pro ulo\u017een\u00ed nahr\u00e1vky. Ponechte pr\u00e1zdn\u00e9, pokud chcete pou\u017e\u00edt v\u00fdchoz\u00ed nastaven\u00ed serveru.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Obr\u00e1zky dle n\u00e1zvu cesty:", "LabelImagesByNamePath": "Obr\u00e1zky dle n\u00e1zvu cesty:",
"LabelImagesByNamePathHelp": "Zadejte vlastn\u00ed um\u00edst\u011bn\u00ed pro sta\u017een\u00ed obr\u00e1zk\u016f herc\u016f, \u017e\u00e1nr\u016f a studiov\u00fdch sn\u00edmk\u016f.", "LabelImagesByNamePathHelp": "Zadejte vlastn\u00ed um\u00edst\u011bn\u00ed pro sta\u017een\u00ed obr\u00e1zk\u016f herc\u016f, \u017e\u00e1nr\u016f a studiov\u00fdch sn\u00edmk\u016f.",
"LabelMetadataPath": "Slo\u017eka pro metadata:", "LabelMetadataPath": "Slo\u017eka pro metadata:",
@ -489,7 +495,7 @@
"HeaderCastCrew": "Herci a obsazen\u00ed", "HeaderCastCrew": "Herci a obsazen\u00ed",
"HeaderAdditionalParts": "Dal\u0161\u00ed sou\u010d\u00e1sti", "HeaderAdditionalParts": "Dal\u0161\u00ed sou\u010d\u00e1sti",
"ButtonSplitVersionsApart": "Rozd\u011blit verze", "ButtonSplitVersionsApart": "Rozd\u011blit verze",
"ButtonPlayTrailer": "Uk\u00e1zka", "ButtonPlayTrailer": "Uk\u00e1zka\/Trailer",
"LabelMissing": "Chyb\u00ed", "LabelMissing": "Chyb\u00ed",
"LabelOffline": "Offline", "LabelOffline": "Offline",
"PathSubstitutionHelp": "Nahrazen\u00ed cest se pou\u017e\u00edv\u00e1 pro namapov\u00e1n\u00ed cest k serveru, kter\u00e9 je p\u0159\u00edstupn\u00e9 u\u017eivateli. Povolen\u00edm p\u0159\u00edm\u00e9ho p\u0159\u00edstupu m\u016f\u017ee umo\u017enit u\u017eivateli jeho p\u0159ehr\u00e1n\u00ed bez u\u017eit\u00ed streamov\u00e1n\u00ed a p\u0159ek\u00f3dov\u00e1n\u00ed servru.", "PathSubstitutionHelp": "Nahrazen\u00ed cest se pou\u017e\u00edv\u00e1 pro namapov\u00e1n\u00ed cest k serveru, kter\u00e9 je p\u0159\u00edstupn\u00e9 u\u017eivateli. Povolen\u00edm p\u0159\u00edm\u00e9ho p\u0159\u00edstupu m\u016f\u017ee umo\u017enit u\u017eivateli jeho p\u0159ehr\u00e1n\u00ed bez u\u017eit\u00ed streamov\u00e1n\u00ed a p\u0159ek\u00f3dov\u00e1n\u00ed servru.",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "\u010c\u00edslo portu web socketu:", "LabelWebSocketPortNumber": "\u010c\u00edslo portu web socketu:",
"LabelEnableAutomaticPortMap": "Povolit automatick\u00e9 mapov\u00e1n\u00ed port\u016f", "LabelEnableAutomaticPortMap": "Povolit automatick\u00e9 mapov\u00e1n\u00ed port\u016f",
"LabelEnableAutomaticPortMapHelp": "Pokus\u00ed se automaticky namapovat ve\u0159ejn\u00fd port m\u00edstn\u00edho portu p\u0159es UPnP na va\u0161em routeru. Nemus\u00ed fungovat u n\u011bkter\u00fdch model\u016f routeru.", "LabelEnableAutomaticPortMapHelp": "Pokus\u00ed se automaticky namapovat ve\u0159ejn\u00fd port m\u00edstn\u00edho portu p\u0159es UPnP na va\u0161em routeru. Nemus\u00ed fungovat u n\u011bkter\u00fdch model\u016f routeru.",
"LabelExternalDDNS": "Extern\u00ed WAN adresa", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "M\u00e1te-li dynamick\u00e9 DNS zadejte jej zde. Emby aplikace jej vyu\u017eij\u00ed p\u0159i vzd\u00e1len\u00e9m p\u0159ipojen\u00ed. Nechte pr\u00e1zdn\u00e9 pro automatickou detekci.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "P\u0159eru\u0161it", "TabResume": "P\u0159eru\u0161it",
"TabWeather": "Po\u010das\u00ed", "TabWeather": "Po\u010das\u00ed",
"TitleAppSettings": "Nastaven\u00ed aplikace", "TitleAppSettings": "Nastaven\u00ed aplikace",
@ -585,9 +591,9 @@
"LabelFailed": "Selh\u00e1n\u00ed", "LabelFailed": "Selh\u00e1n\u00ed",
"LabelSkipped": "P\u0159esko\u010deno", "LabelSkipped": "P\u0159esko\u010deno",
"HeaderEpisodeOrganization": "Organizace epizod", "HeaderEpisodeOrganization": "Organizace epizod",
"LabelSeries": "Seri\u00e1ly", "LabelSeries": "Seri\u00e1ly:",
"LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny", "LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny",
"LabelEpisodeNumber": "\u010c\u00edslo epizody", "LabelEpisodeNumber": "\u010c\u00edslo epizody:",
"LabelEndingEpisodeNumber": "\u010c\u00edslo posledn\u00ed epizody:", "LabelEndingEpisodeNumber": "\u010c\u00edslo posledn\u00ed epizody:",
"LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami", "LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami",
"OptionRememberOrganizeCorrection": "Ulo\u017e a aplikuj tuto korekci pro budouc\u00ed soubory s podobn\u00fdmi jm\u00e9ny", "OptionRememberOrganizeCorrection": "Ulo\u017e a aplikuj tuto korekci pro budouc\u00ed soubory s podobn\u00fdmi jm\u00e9ny",
@ -726,10 +732,12 @@
"TabNowPlaying": "P\u0159ehr\u00e1v\u00e1 se", "TabNowPlaying": "P\u0159ehr\u00e1v\u00e1 se",
"TabNavigation": "Navigace", "TabNavigation": "Navigace",
"TabControls": "Ovl\u00e1d\u00e1n\u00ed", "TabControls": "Ovl\u00e1d\u00e1n\u00ed",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Sc\u00e9ny", "ButtonScenes": "Sc\u00e9ny",
"ButtonSubtitles": "Titulky", "ButtonSubtitles": "Titulky",
"ButtonPreviousTrack": "P\u0159edchoz\u00ed stopa", "ButtonPreviousTrack": "P\u0159edchoz\u00ed stopa",
"ButtonNextTrack": "N\u00e1sleduj\u00edc\u00ed stopa", "ButtonNextTrack": "Dal\u0161\u00ed stopa",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Zastavit", "ButtonStop": "Zastavit",
"ButtonPause": "Pozastavit", "ButtonPause": "Pozastavit",
"ButtonNext": "Dal\u0161\u00ed", "ButtonNext": "Dal\u0161\u00ed",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Playlisty umo\u017e\u0148uj\u00ed vytv\u00e1\u0159et seznamy obsahu pro postupn\u00e9 p\u0159ehr\u00e1n\u00ed. Chcete-li p\u0159idat polo\u017eky do playlist\u016f, klepn\u011bte prav\u00fdm tla\u010d\u00edtkem my\u0161i, nebo klepn\u011bte podr\u017ete, a pot\u00e9 vyberte mo\u017enost P\u0159idat do Playlistu.", "MessageNoPlaylistsAvailable": "Playlisty umo\u017e\u0148uj\u00ed vytv\u00e1\u0159et seznamy obsahu pro postupn\u00e9 p\u0159ehr\u00e1n\u00ed. Chcete-li p\u0159idat polo\u017eky do playlist\u016f, klepn\u011bte prav\u00fdm tla\u010d\u00edtkem my\u0161i, nebo klepn\u011bte podr\u017ete, a pot\u00e9 vyberte mo\u017enost P\u0159idat do Playlistu.",
"MessageNoPlaylistItemsAvailable": "Playlist je zat\u00edm pr\u00e1zdn\u00fd.", "MessageNoPlaylistItemsAvailable": "Playlist je zat\u00edm pr\u00e1zdn\u00fd.",
"ButtonDismiss": "Zam\u00edtnout", "ButtonDismiss": "Zam\u00edtnout",
"ButtonMore": "V\u00edce",
"ButtonEditOtherUserPreferences": "Editace u\u017eivatelsk\u00e9ho profilu, avataru a osobn\u00edch preferenc\u00ed.", "ButtonEditOtherUserPreferences": "Editace u\u017eivatelsk\u00e9ho profilu, avataru a osobn\u00edch preferenc\u00ed.",
"LabelChannelStreamQuality": "Preferovan\u00e1 kvalita pro vys\u00edl\u00e1n\u00ed p\u0159es internet:", "LabelChannelStreamQuality": "Preferovan\u00e1 kvalita pro vys\u00edl\u00e1n\u00ed p\u0159es internet:",
"LabelChannelStreamQualityHelp": "P\u0159i mal\u00e9 \u0161\u00ed\u0159ce p\u00e1sma, m\u016f\u017ee pomoci omezov\u00e1n\u00ed kvality pro hlad\u0161\u00ed streamov\u00e1n\u00ed videa.", "LabelChannelStreamQualityHelp": "P\u0159i mal\u00e9 \u0161\u00ed\u0159ce p\u00e1sma, m\u016f\u017ee pomoci omezov\u00e1n\u00ed kvality pro hlad\u0161\u00ed streamov\u00e1n\u00ed videa.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Neidentifikov\u00e1no", "OptionUnidentified": "Neidentifikov\u00e1no",
"OptionMissingParentalRating": "Chyb\u011bj\u00edc\u00ed rodi\u010dovsk\u00e9 hodnocen\u00ed", "OptionMissingParentalRating": "Chyb\u011bj\u00edc\u00ed rodi\u010dovsk\u00e9 hodnocen\u00ed",
"OptionStub": "Pah\u00fdl", "OptionStub": "Pah\u00fdl",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Sez\u00f3na 0", "OptionSeason0": "Sez\u00f3na 0",
"LabelReport": "Hl\u00e1\u0161en\u00ed:", "LabelReport": "Hl\u00e1\u0161en\u00ed:",
"OptionReportSongs": "Songy", "OptionReportSongs": "Songy",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "\u00dam\u011blci", "OptionReportArtists": "\u00dam\u011blci",
"OptionReportAlbums": "Alba", "OptionReportAlbums": "Alba",
"OptionReportAdultVideos": "Videa pro dosp\u011bl\u00e9", "OptionReportAdultVideos": "Videa pro dosp\u011bl\u00e9",
"ButtonMore": "V\u00edce", "ButtonMoreItems": "V\u00edce",
"HeaderActivity": "Aktivity", "HeaderActivity": "Aktivity",
"ScheduledTaskStartedWithName": "{0} zah\u00e1jeno", "ScheduledTaskStartedWithName": "{0} zah\u00e1jeno",
"ScheduledTaskCancelledWithName": "{0} bylo ukon\u010deno", "ScheduledTaskCancelledWithName": "{0} bylo ukon\u010deno",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Obnova hesla", "HeaderPasswordReset": "Obnova hesla",
"HeaderParentalRatings": "Rodi\u010dovsk\u00e1 hodnocen\u00ed", "HeaderParentalRatings": "Rodi\u010dovsk\u00e1 hodnocen\u00ed",
"HeaderVideoTypes": "Typ videa", "HeaderVideoTypes": "Typ videa",
"HeaderYears": "Roky",
"HeaderBlockItemsWithNoRating": "Blokovat obsah s \u017e\u00e1dnou nebo nerozpoznanou informac\u00ed o hodnocen\u00ed:", "HeaderBlockItemsWithNoRating": "Blokovat obsah s \u017e\u00e1dnou nebo nerozpoznanou informac\u00ed o hodnocen\u00ed:",
"LabelBlockContentWithTags": "Blokovat obsah dle tag\u016f:", "LabelBlockContentWithTags": "Blokovat obsah dle tag\u016f:",
"LabelEnableSingleImageInDidlLimit": "Limit na jednotliv\u00e9 vlo\u017een\u00ed obr\u00e1zku", "LabelEnableSingleImageInDidlLimit": "Limit na jednotliv\u00e9 vlo\u017een\u00ed obr\u00e1zku",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Nadch\u00e1zej\u00edc\u00ed filmy", "HeaderUpcomingMovies": "Nadch\u00e1zej\u00edc\u00ed filmy",
"HeaderUpcomingSports": "Nadch\u00e1zej\u00edc\u00ed sportovn\u00ed ud\u00e1losti", "HeaderUpcomingSports": "Nadch\u00e1zej\u00edc\u00ed sportovn\u00ed ud\u00e1losti",
"HeaderUpcomingPrograms": "Nadch\u00e1zej\u00edc\u00ed TV programy", "HeaderUpcomingPrograms": "Nadch\u00e1zej\u00edc\u00ed TV programy",
"ButtonMoreItems": "V\u00edce",
"LabelShowLibraryTileNames": "Zobrazit n\u00e1zvy dla\u017edic v knihovn\u011b", "LabelShowLibraryTileNames": "Zobrazit n\u00e1zvy dla\u017edic v knihovn\u011b",
"LabelShowLibraryTileNamesHelp": "Ur\u010d\u00edte, zda se zobraz\u00ed \u0161t\u00edtky s n\u00e1zvy pod dla\u017edic\u00ed v knihovn\u011b na domovsk\u00e9 str\u00e1nce", "LabelShowLibraryTileNamesHelp": "Ur\u010d\u00edte, zda se zobraz\u00ed \u0161t\u00edtky s n\u00e1zvy pod dla\u017edic\u00ed v knihovn\u011b na domovsk\u00e9 str\u00e1nce",
"OptionEnableTranscodingThrottle": "Povolit p\u0159i\u0161krcen\u00ed", "OptionEnableTranscodingThrottle": "Povolit p\u0159i\u0161krcen\u00ed",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere je zapot\u0159eb\u00ed pro vytvo\u0159en\u00ed automatick\u00e9ho nahr\u00e1v\u00e1n\u00ed \u0159ad.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere je zapot\u0159eb\u00ed pro vytvo\u0159en\u00ed automatick\u00e9ho nahr\u00e1v\u00e1n\u00ed \u0159ad.",
"HeaderSetupTVGuide": "Nastaven\u00ed TV pr\u016fvodce", "HeaderSetupTVGuide": "Nastaven\u00ed TV pr\u016fvodce",
"LabelDataProvider": "Poskytovatel dat:", "LabelDataProvider": "Poskytovatel dat:",
"OptionSendRecordingsToAutoOrganize": "Povolit auto-organizaci pro nov\u00e9 nahr\u00e1vky", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Nov\u00e9 nahr\u00e1vky automaticky uspo\u0159\u00e1dat a importovat do va\u0161ich knihoven.", "OptionSendRecordingsToAutoOrganizeHelp": "Nov\u00e9 nahr\u00e1vky automaticky uspo\u0159\u00e1dat a importovat do va\u0161ich knihoven.",
"HeaderDefaultPadding": "Standardn\u00ed odsazen\u00ed", "HeaderDefaultPadding": "Standardn\u00ed odsazen\u00ed",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Titulky", "HeaderSubtitles": "Titulky",
"HeaderVideos": "Videa", "HeaderVideos": "Videa",
"OptionEnableVideoFrameAnalysis": "Povolit anal\u00fdzu videa sn\u00edmek po sn\u00edmku", "OptionEnableVideoFrameAnalysis": "Povolit anal\u00fdzu videa sn\u00edmek po sn\u00edmku",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-organizace", "TabAutoOrganize": "Auto-organizace",
"TabPlugins": "Z\u00e1suvn\u00e9 moduly", "TabPlugins": "Z\u00e1suvn\u00e9 moduly",
"TabHelp": "N\u00e1pov\u011bda", "TabHelp": "N\u00e1pov\u011bda",
"ButtonFullscreen": "P\u0159epnout fullscreen",
"ButtonAudioTracks": "Audio stopy",
"ButtonQuality": "Kvalita", "ButtonQuality": "Kvalita",
"HeaderNotifications": "Ozn\u00e1men\u00ed", "HeaderNotifications": "Ozn\u00e1men\u00ed",
"HeaderSelectPlayer": "V\u00fdb\u011br p\u0159ehr\u00e1va\u010de", "HeaderSelectPlayer": "V\u00fdb\u011br p\u0159ehr\u00e1va\u010de",
@ -1897,14 +1904,14 @@
"HeaderCommunityRating": "Hodnocen\u00ed komunity", "HeaderCommunityRating": "Hodnocen\u00ed komunity",
"HeaderParentalRating": "Rodi\u010dovsk\u00e9 hodnocen\u00ed", "HeaderParentalRating": "Rodi\u010dovsk\u00e9 hodnocen\u00ed",
"HeaderReleaseDate": "Datum vyd\u00e1n\u00ed", "HeaderReleaseDate": "Datum vyd\u00e1n\u00ed",
"HeaderDateAdded": "Datum p\u0159id\u00e1n\u00ed", "HeaderDateAdded": "P\u0159id\u00e1no",
"HeaderSeries": "Seri\u00e1ly", "HeaderSeries": "Seri\u00e1l:",
"HeaderSeason": "Sez\u00f3na", "HeaderSeason": "Sez\u00f3na",
"HeaderSeasonNumber": "\u010c\u00edslo sez\u00f3ny", "HeaderSeasonNumber": "\u010c\u00edslo sez\u00f3ny",
"HeaderNetwork": "S\u00ed\u0165", "HeaderNetwork": "S\u00ed\u0165",
"HeaderYear": "Rok", "HeaderYear": "Rok:",
"HeaderGameSystem": "Syst\u00e9m hry", "HeaderGameSystem": "Syst\u00e9m hry",
"HeaderPlayers": "Hr\u00e1\u010di", "HeaderPlayers": "Hr\u00e1\u010di:",
"HeaderEmbeddedImage": "Vlo\u017een\u00fd obr\u00e1zek", "HeaderEmbeddedImage": "Vlo\u017een\u00fd obr\u00e1zek",
"HeaderTrack": "Stopa", "HeaderTrack": "Stopa",
"HeaderDisc": "Disk", "HeaderDisc": "Disk",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Alba", "HeaderAlbums": "Alba",
"HeaderGames": "Hry", "HeaderGames": "Hry",
"HeaderBooks": "Knihy", "HeaderBooks": "Knihy",
"HeaderEpisodes": "Epizody:",
"HeaderSeasons": "Sez\u00f3ny", "HeaderSeasons": "Sez\u00f3ny",
"HeaderTracks": "Stopy", "HeaderTracks": "Stopy",
"HeaderItems": "Polo\u017eky", "HeaderItems": "Polo\u017eky",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Cel\u00e1 recenze:", "LabelFullReview": "Cel\u00e1 recenze:",
"LabelShortRatingDescription": "Kr\u00e1tk\u00e9 shrnut\u00ed hodnocen\u00ed:", "LabelShortRatingDescription": "Kr\u00e1tk\u00e9 shrnut\u00ed hodnocen\u00ed:",
"OptionIRecommendThisItem": "Doporu\u010duji tuto polo\u017eku", "OptionIRecommendThisItem": "Doporu\u010duji tuto polo\u017eku",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Pod\u00edvejte se na sv\u00e9 ned\u00e1vno p\u0159idan\u00e1 m\u00e9dia, dal\u0161\u00ed epizody a dal\u0161\u00ed. Zelen\u00e9 kruhy ukazuj\u00ed, kolik nep\u0159ehran\u00fdch polo\u017eek m\u00e1te.", "WebClientTourContent": "Pod\u00edvejte se na sv\u00e9 ned\u00e1vno p\u0159idan\u00e1 m\u00e9dia, dal\u0161\u00ed epizody a dal\u0161\u00ed. Zelen\u00e9 kruhy ukazuj\u00ed, kolik nep\u0159ehran\u00fdch polo\u017eek m\u00e1te.",
"WebClientTourMovies": "P\u0159ehr\u00e1vat filmy, uk\u00e1zky a dal\u0161\u00ed z jak\u00e9hokoliv za\u0159\u00edzen\u00ed pomoc\u00ed webov\u00e9ho prohl\u00ed\u017ee\u010de", "WebClientTourMovies": "P\u0159ehr\u00e1vat filmy, uk\u00e1zky a dal\u0161\u00ed z jak\u00e9hokoliv za\u0159\u00edzen\u00ed pomoc\u00ed webov\u00e9ho prohl\u00ed\u017ee\u010de",
"WebClientTourMouseOver": "Podr\u017ete ukazatel my\u0161i nad jak\u00fdmkoliv plak\u00e1tem pro rychl\u00fd p\u0159\u00edstup k d\u016fle\u017eit\u00fdm informac\u00edm", "WebClientTourMouseOver": "Podr\u017ete ukazatel my\u0161i nad jak\u00fdmkoliv plak\u00e1tem pro rychl\u00fd p\u0159\u00edstup k d\u016fle\u017eit\u00fdm informac\u00edm",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "U\u017eivatelsk\u00e9 jm\u00e9no se ji\u017e pou\u017e\u00edv\u00e1. Pros\u00edm, vyberte nov\u00fd n\u00e1zev a zkuste to znovu.", "ErrorMessageUsernameInUse": "U\u017eivatelsk\u00e9 jm\u00e9no se ji\u017e pou\u017e\u00edv\u00e1. Pros\u00edm, vyberte nov\u00fd n\u00e1zev a zkuste to znovu.",
"ErrorMessageEmailInUse": "E-mailov\u00e1 adresa je ji\u017e pou\u017e\u00edv\u00e1na. Zadejte novou e-mailovou adresu a zkuste to znovu, nebo pou\u017eijte funkci zapomenut\u00e9ho hesla.", "ErrorMessageEmailInUse": "E-mailov\u00e1 adresa je ji\u017e pou\u017e\u00edv\u00e1na. Zadejte novou e-mailovou adresu a zkuste to znovu, nebo pou\u017eijte funkci zapomenut\u00e9ho hesla.",
"MessageThankYouForConnectSignUp": "D\u011bkujeme za p\u0159ihl\u00e1\u0161en\u00ed se k Emby Connect. Dal\u0161\u00ed pokyny, jak potvrdit sv\u016fj nov\u00fd \u00fa\u010det, V\u00e1m budou zasl\u00e1ny na va\u0161\u00ed emailovou adresu. Pros\u00edm potvr\u010fte \u00fa\u010det a pak se vr\u00e1\u0165te pro p\u0159ihl\u00e1\u0161en\u00ed.", "MessageThankYouForConnectSignUp": "D\u011bkujeme za p\u0159ihl\u00e1\u0161en\u00ed se k Emby Connect. Dal\u0161\u00ed pokyny, jak potvrdit sv\u016fj nov\u00fd \u00fa\u010det, V\u00e1m budou zasl\u00e1ny na va\u0161\u00ed emailovou adresu. Pros\u00edm potvr\u010fte \u00fa\u010det a pak se vr\u00e1\u0165te pro p\u0159ihl\u00e1\u0161en\u00ed.",
"Share": "Share",
"HeaderShare": "Sd\u00edlet", "HeaderShare": "Sd\u00edlet",
"ButtonShareHelp": "Pod\u011blte se o webovou str\u00e1nku obsahuj\u00edc\u00ed informace o m\u00e9di\u00edch se soci\u00e1ln\u00edmi m\u00e9dii. Medi\u00e1ln\u00ed soubory nejsou nikdy sd\u00edleny ve\u0159ejn\u011b.", "ButtonShareHelp": "Pod\u011blte se o webovou str\u00e1nku obsahuj\u00edc\u00ed informace o m\u00e9di\u00edch se soci\u00e1ln\u00edmi m\u00e9dii. Medi\u00e1ln\u00ed soubory nejsou nikdy sd\u00edleny ve\u0159ejn\u011b.",
"ButtonShare": "Sd\u00edlet", "ButtonShare": "Sd\u00edlet",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Vyberte za\u0159azen\u00ed a zkuste to znovu. Pokud nejsou k dispozici \u017e\u00e1dn\u00e1 za\u0159azen\u00ed, pak pros\u00edm zkontrolujte, zda va\u0161e u\u017eivatelsk\u00e9 jm\u00e9no, heslo a po\u0161tovn\u00ed sm\u011brovac\u00ed \u010d\u00edslo je spr\u00e1vn\u00e9.", "MessageDidYouKnowCinemaMode": "Vyberte za\u0159azen\u00ed a zkuste to znovu. Pokud nejsou k dispozici \u017e\u00e1dn\u00e1 za\u0159azen\u00ed, pak pros\u00edm zkontrolujte, zda va\u0161e u\u017eivatelsk\u00e9 jm\u00e9no, heslo a po\u0161tovn\u00ed sm\u011brovac\u00ed \u010d\u00edslo je spr\u00e1vn\u00e9.",
"MessageDidYouKnowCinemaMode2": "S re\u017eimem Kino budou p\u0159ed hlavn\u00edm programem p\u0159ehr\u00e1ny trailery a u\u017eivatelsk\u00e1 intra.", "MessageDidYouKnowCinemaMode2": "S re\u017eimem Kino budou p\u0159ed hlavn\u00edm programem p\u0159ehr\u00e1ny trailery a u\u017eivatelsk\u00e1 intra.",
"OptionEnableDisplayMirroring": "Povolit zrcadlen\u00ed zobrazen\u00ed", "OptionEnableDisplayMirroring": "Povolit zrcadlen\u00ed zobrazen\u00ed",
"HeaderSyncRequiresSupporterMembership": "Synchronizace vy\u017eaduje \u010dlenstv\u00ed v podpo\u0159e (supporter membership) ",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Synchronizace vy\u017eaduje p\u0159ipojen\u00ed k Emby serveru s aktivn\u00edm p\u0159edplatn\u00fdm Emby Premiere.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Synchronizace vy\u017eaduje p\u0159ipojen\u00ed k Emby serveru s aktivn\u00edm p\u0159edplatn\u00fdm Emby Premiere.",
"ErrorValidatingSupporterInfo": "Do\u0161lo k chyb\u011b p\u0159i ov\u011b\u0159ov\u00e1n\u00ed informac\u00ed o va\u0161em p\u0159edplatn\u00e9m Emby Premiere. Pros\u00edm zkuste to pozd\u011bji.", "ErrorValidatingSupporterInfo": "Do\u0161lo k chyb\u011b p\u0159i ov\u011b\u0159ov\u00e1n\u00ed informac\u00ed o va\u0161em p\u0159edplatn\u00e9m Emby Premiere. Pros\u00edm zkuste to pozd\u011bji.",
"LabelLocalSyncStatusValue": "Stav: {0}", "LabelLocalSyncStatusValue": "Stav: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Zm\u011bna nastaven\u00ed metadat bude m\u00edt vliv na nov\u00fd obsah, kter\u00fd bude p\u0159id\u00e1v\u00e1n. Chcete-li aktualizovat st\u00e1vaj\u00edc\u00ed obsah, otev\u0159te obrazovku s detailem a klepn\u011bte na tla\u010d\u00edtko Aktualizovat, nebo prove\u010fte hromadnou aktualizaci pomoc\u00ed spr\u00e1vce metadat.", "MetadataSettingChangeHelp": "Zm\u011bna nastaven\u00ed metadat bude m\u00edt vliv na nov\u00fd obsah, kter\u00fd bude p\u0159id\u00e1v\u00e1n. Chcete-li aktualizovat st\u00e1vaj\u00edc\u00ed obsah, otev\u0159te obrazovku s detailem a klepn\u011bte na tla\u010d\u00edtko Aktualizovat, nebo prove\u010fte hromadnou aktualizaci pomoc\u00ed spr\u00e1vce metadat.",
"LabelTitle": "N\u00e1zev:", "LabelTitle": "N\u00e1zev:",
"LabelOriginalTitle": "Origin\u00e1ln\u00ed n\u00e1zev:", "LabelOriginalTitle": "Origin\u00e1ln\u00ed n\u00e1zev:",
"LabelSortTitle": "T\u0159\u00eddit dle n\u00e1zvu:" "LabelSortTitle": "T\u0159\u00eddit dle n\u00e1zvu:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Afslut", "LabelExit": "Afslut",
"LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab", "LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Konfigurer pinkode", "ButtonConfigurePinCode": "Konfigurer pinkode",
"HeaderAdultsReadHere": "Voksne l\u00e6s her!", "HeaderAdultsReadHere": "Voksne l\u00e6s her!",
"RegisterWithPayPal": "Registrer med PayPal", "RegisterWithPayPal": "Registrer med PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode", "HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode",
"LabelSyncTempPath": "Sti for midlertidige filer:", "LabelSyncTempPath": "Sti for midlertidige filer:",
"LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.", "LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Aktiver udvidede filmvisninger", "LabelEnableEnhancedMovies": "Aktiver udvidede filmvisninger",
"LabelEnableEnhancedMoviesHelp": "Aktiver dette for at f\u00e5 vist film som mapper med trailere, medvirkende og andet relateret inhold.", "LabelEnableEnhancedMoviesHelp": "Aktiver dette for at f\u00e5 vist film som mapper med trailere, medvirkende og andet relateret inhold.",
"HeaderSyncJobInfo": "Sync Job", "HeaderSyncJobInfo": "Sync Job",
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Blandet indhold",
"FolderTypeMovies": "FIlm", "FolderTypeMovies": "FIlm",
"FolderTypeMusic": "Musik", "FolderTypeMusic": "Musik",
"FolderTypeAdultVideos": "Voksenfilm",
"FolderTypePhotos": "Fotos", "FolderTypePhotos": "Fotos",
"FolderTypeMusicVideos": "Musikvideoer", "FolderTypeMusicVideos": "Musikvideoer",
"FolderTypeHomeVideos": "Hjemmevideoer", "FolderTypeHomeVideos": "Hjemmevideoer",
@ -202,7 +205,7 @@
"OptionAscending": "Stigende", "OptionAscending": "Stigende",
"OptionDescending": "Faldende", "OptionDescending": "Faldende",
"OptionRuntime": "Varighed", "OptionRuntime": "Varighed",
"OptionReleaseDate": "Udgivelsesdato", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Gange afspillet", "OptionPlayCount": "Gange afspillet",
"OptionDatePlayed": "Dato for afspilning", "OptionDatePlayed": "Dato for afspilning",
"OptionDateAdded": "Dato for tilf\u00f8jelse", "OptionDateAdded": "Dato for tilf\u00f8jelse",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Indt\u00e6gt", "OptionRevenue": "Indt\u00e6gt",
"OptionPoster": "Plakat", "OptionPoster": "Plakat",
"HeaderYears": "Years",
"OptionPosterCard": "Plakat", "OptionPosterCard": "Plakat",
"OptionBackdrop": "Baggrund", "OptionBackdrop": "Baggrund",
"OptionTimeline": "Tidslinje", "OptionTimeline": "Tidslinje",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "V\u00e6lg", "ButtonSelect": "V\u00e6lg",
"ButtonGroupVersions": "Grupp\u00e9r versioner", "ButtonGroupVersions": "Grupp\u00e9r versioner",
"ButtonAddToCollection": "Tilf\u00f8j til samling", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Anerkendelser", "HeaderCredits": "Anerkendelser",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Angiv brugerdefinerede stier, hvor det \u00f8nskes. Lad felter st\u00e5 tomme for at bruge standardindstillingerne.", "LabelCustomPaths": "Angiv brugerdefinerede stier, hvor det \u00f8nskes. Lad felter st\u00e5 tomme for at bruge standardindstillingerne.",
"LabelCachePath": "Cachesti:", "LabelCachePath": "Cachesti:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Billeder efter navn-sti:", "LabelImagesByNamePath": "Billeder efter navn-sti:",
"LabelImagesByNamePathHelp": "Definer en alternativ mappe til nedhentede billeder af skuespillere, genrer og studier.", "LabelImagesByNamePathHelp": "Definer en alternativ mappe til nedhentede billeder af skuespillere, genrer og studier.",
"LabelMetadataPath": "Metadatasti:", "LabelMetadataPath": "Metadatasti:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket portnummer:", "LabelWebSocketPortNumber": "Web socket portnummer:",
"LabelEnableAutomaticPortMap": "Aktiver automatisk port mapping", "LabelEnableAutomaticPortMap": "Aktiver automatisk port mapping",
"LabelEnableAutomaticPortMapHelp": "Fors\u00f8g at mappe den offentlige port til den lokale port med uPnP. Dette virker ikke med alle routere.", "LabelEnableAutomaticPortMapHelp": "Fors\u00f8g at mappe den offentlige port til den lokale port med uPnP. Dette virker ikke med alle routere.",
"LabelExternalDDNS": "Ekstern WAN adresse:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Hvis du bruger en dynamisk DNS service, s\u00e5 skriv dit hostnavn her. Emby apps vil bruge det til at forbinde eksternt. Efterlad feltet tomt for at bruge automatisk opdagelse.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Forts\u00e6t", "TabResume": "Forts\u00e6t",
"TabWeather": "Vejr", "TabWeather": "Vejr",
"TitleAppSettings": "App indstillinger", "TitleAppSettings": "App indstillinger",
@ -582,12 +588,12 @@
"HeaderProgram": "Program", "HeaderProgram": "Program",
"HeaderClients": "Klienter", "HeaderClients": "Klienter",
"LabelCompleted": "F\u00e6rdig", "LabelCompleted": "F\u00e6rdig",
"LabelFailed": "Fejlet", "LabelFailed": "Failed",
"LabelSkipped": "Oversprunget", "LabelSkipped": "Oversprunget",
"HeaderEpisodeOrganization": "Organisation af episoder", "HeaderEpisodeOrganization": "Organisation af episoder",
"LabelSeries": "Serier", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "S\u00e6sonnummer",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episodenummer",
"LabelEndingEpisodeNumber": "Nummer p\u00e5 sidste episode", "LabelEndingEpisodeNumber": "Nummer p\u00e5 sidste episode",
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.", "LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Spiller nu", "TabNowPlaying": "Spiller nu",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Kontroller", "TabControls": "Kontroller",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scener", "ButtonScenes": "Scener",
"ButtonSubtitles": "Undertekster", "ButtonSubtitles": "Undertekster",
"ButtonPreviousTrack": "Forrige spor", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "N\u00e6ste spor", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "N\u00e6ste", "ButtonNext": "N\u00e6ste",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Afspilningslister lader dig lave lister af indhold der kan afspilles lige efter hinanden. For at tilf\u00f8je indhold til afspilningslisten, skal du h\u00f8jreklikke, eller trykke og holde, og derefter v\u00e6lge Tilf\u00f8j til afspilningsliste.", "MessageNoPlaylistsAvailable": "Afspilningslister lader dig lave lister af indhold der kan afspilles lige efter hinanden. For at tilf\u00f8je indhold til afspilningslisten, skal du h\u00f8jreklikke, eller trykke og holde, og derefter v\u00e6lge Tilf\u00f8j til afspilningsliste.",
"MessageNoPlaylistItemsAvailable": "Denne afspilningsliste er tom.", "MessageNoPlaylistItemsAvailable": "Denne afspilningsliste er tom.",
"ButtonDismiss": "Afvis", "ButtonDismiss": "Afvis",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Rediger denne brugers profil, billede og personlige indstillinger.", "ButtonEditOtherUserPreferences": "Rediger denne brugers profil, billede og personlige indstillinger.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "I omr\u00e5der med lav b\u00e5ndbredde kan begr\u00e6nsning af kvaliteten sikre en flydende streamingoplevelse.", "LabelChannelStreamQualityHelp": "I omr\u00e5der med lav b\u00e5ndbredde kan begr\u00e6nsning af kvaliteten sikre en flydende streamingoplevelse.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Uidentificeret", "OptionUnidentified": "Uidentificeret",
"OptionMissingParentalRating": "Mangler aldersgr\u00e6nse", "OptionMissingParentalRating": "Mangler aldersgr\u00e6nse",
"OptionStub": "P\u00e5begyndt", "OptionStub": "P\u00e5begyndt",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "S\u00e6son 0", "OptionSeason0": "S\u00e6son 0",
"LabelReport": "Rapport:", "LabelReport": "Rapport:",
"OptionReportSongs": "Sange", "OptionReportSongs": "Sange",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artister", "OptionReportArtists": "Artister",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Voksenfilm", "OptionReportAdultVideos": "Voksenfilm",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Aktivitet", "HeaderActivity": "Aktivitet",
"ScheduledTaskStartedWithName": "{0} startet", "ScheduledTaskStartedWithName": "{0} startet",
"ScheduledTaskCancelledWithName": "{0} blev afbrudt", "ScheduledTaskCancelledWithName": "{0} blev afbrudt",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Nulstil adgangskode", "HeaderPasswordReset": "Nulstil adgangskode",
"HeaderParentalRatings": "Aldersgr\u00e6nser", "HeaderParentalRatings": "Aldersgr\u00e6nser",
"HeaderVideoTypes": "Videotyper", "HeaderVideoTypes": "Videotyper",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Bloker indhold med disse tags:", "LabelBlockContentWithTags": "Bloker indhold med disse tags:",
"LabelEnableSingleImageInDidlLimit": "Begr\u00e6ns til et enkelt indlejret billede", "LabelEnableSingleImageInDidlLimit": "Begr\u00e6ns til et enkelt indlejret billede",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Kommende film", "HeaderUpcomingMovies": "Kommende film",
"HeaderUpcomingSports": "Kommende sportsudsendelser", "HeaderUpcomingSports": "Kommende sportsudsendelser",
"HeaderUpcomingPrograms": "Kommende programmer", "HeaderUpcomingPrograms": "Kommende programmer",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Vis navne p\u00e5 fliser i biblioteket", "LabelShowLibraryTileNames": "Vis navne p\u00e5 fliser i biblioteket",
"LabelShowLibraryTileNamesHelp": "Afg\u00f8r om der vises navn under hver flise p\u00e5 hjemmesiden", "LabelShowLibraryTileNamesHelp": "Afg\u00f8r om der vises navn under hver flise p\u00e5 hjemmesiden",
"OptionEnableTranscodingThrottle": "Aktiver neddrosling", "OptionEnableTranscodingThrottle": "Aktiver neddrosling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Undertekster", "HeaderSubtitles": "Undertekster",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1592,7 +1601,7 @@
"LabelEpisode": "Episode", "LabelEpisode": "Episode",
"Series": "Series", "Series": "Series",
"LabelStopping": "Standser", "LabelStopping": "Standser",
"LabelCancelled": "(annulleret)", "LabelCancelled": "Cancelled",
"ButtonDownload": "Hent", "ButtonDownload": "Hent",
"SyncJobStatusQueued": "Sat i k\u00f8", "SyncJobStatusQueued": "Sat i k\u00f8",
"SyncJobStatusConverting": "Konverterer", "SyncJobStatusConverting": "Konverterer",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Organiser automatisk", "TabAutoOrganize": "Organiser automatisk",
"TabPlugins": "Tilf\u00f8jelser", "TabPlugins": "Tilf\u00f8jelser",
"TabHelp": "Hj\u00e6lp", "TabHelp": "Hj\u00e6lp",
"ButtonFullscreen": "Skift fuldsk\u00e6rm",
"ButtonAudioTracks": "Lydspor",
"ButtonQuality": "Kvalitet", "ButtonQuality": "Kvalitet",
"HeaderNotifications": "Notifikationer", "HeaderNotifications": "Notifikationer",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Opl\u00f8sning", "HeaderResolution": "Opl\u00f8sning",
"HeaderRuntime": "Varighed", "HeaderRuntime": "Varighed",
"HeaderCommunityRating": "F\u00e6llesskabsvurdering", "HeaderCommunityRating": "F\u00e6llesskabsvurdering",
"HeaderParentalRating": "Aldersgr\u00e6nse", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Udgivelsesdato", "HeaderReleaseDate": "Udgivelsesdato",
"HeaderDateAdded": "Dato for tilf\u00f8jelse", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Serier", "HeaderSeries": "Series:",
"HeaderSeason": "S\u00e6son", "HeaderSeason": "S\u00e6son",
"HeaderSeasonNumber": "S\u00e6sonnummer", "HeaderSeasonNumber": "S\u00e6sonnummer",
"HeaderNetwork": "Netv\u00e6rk", "HeaderNetwork": "Netv\u00e6rk",
"HeaderYear": "\u00c5r", "HeaderYear": "Year:",
"HeaderGameSystem": "Spilsystem", "HeaderGameSystem": "Spilsystem",
"HeaderPlayers": "Afspillere", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Indlejret billede", "HeaderEmbeddedImage": "Indlejret billede",
"HeaderTrack": "Spor", "HeaderTrack": "Spor",
"HeaderDisc": "Disk", "HeaderDisc": "Disk",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Spil", "HeaderGames": "Spil",
"HeaderBooks": "B\u00f8ger", "HeaderBooks": "B\u00f8ger",
"HeaderEpisodes": "Episoder:",
"HeaderSeasons": "S\u00e6soner", "HeaderSeasons": "S\u00e6soner",
"HeaderTracks": "Spor", "HeaderTracks": "Spor",
"HeaderItems": "Element", "HeaderItems": "Element",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Fuld anmeldelse:", "LabelFullReview": "Fuld anmeldelse:",
"LabelShortRatingDescription": "Kort bed\u00f8mmelsesresum\u00e9:", "LabelShortRatingDescription": "Kort bed\u00f8mmelsesresum\u00e9:",
"OptionIRecommendThisItem": "Jeg anbefaler dette", "OptionIRecommendThisItem": "Jeg anbefaler dette",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Se dit seneste tilf\u00f8jet media, kommende episoder samt mere. Den gr\u00f8nne cirkel indikerer hvor mange uafspillet elementer du har.", "WebClientTourContent": "Se dit seneste tilf\u00f8jet media, kommende episoder samt mere. Den gr\u00f8nne cirkel indikerer hvor mange uafspillet elementer du har.",
"WebClientTourMovies": "Afspil film, trailere samt andet fra hvilken som helst enhed med en browser", "WebClientTourMovies": "Afspil film, trailere samt andet fra hvilken som helst enhed med en browser",
"WebClientTourMouseOver": "Hold musen over enhver plakat for hurtig adgang til vigtig information", "WebClientTourMouseOver": "Hold musen over enhver plakat for hurtig adgang til vigtig information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Beenden", "LabelExit": "Beenden",
"LabelVisitCommunity": "Besuche die Community", "LabelVisitCommunity": "Besuche die Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "PIN Code festlegen", "ButtonConfigurePinCode": "PIN Code festlegen",
"HeaderAdultsReadHere": "Eltern, bitte lesen!", "HeaderAdultsReadHere": "Eltern, bitte lesen!",
"RegisterWithPayPal": "Registrieren mit PayPal", "RegisterWithPayPal": "Registrieren mit PayPal",
"HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine aktive Emby Premiere Mitgliedschaft",
"HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion", "HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
"LabelSyncTempPath": "Verzeichnis f\u00fcr tempor\u00e4re Dateien", "LabelSyncTempPath": "Verzeichnis f\u00fcr tempor\u00e4re Dateien",
"LabelSyncTempPathHelp": "Legen Sie ein Arbeitsverzeichnis f\u00fcr die Synchronisation fest. Konvertierte Medien werden w\u00e4hrend der Synchronisation hier gespeichert.", "LabelSyncTempPathHelp": "Legen Sie ein Arbeitsverzeichnis f\u00fcr die Synchronisation fest. Konvertierte Medien werden w\u00e4hrend der Synchronisation hier gespeichert.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Aktiviere erweiterte Filmdarstellung.", "LabelEnableEnhancedMovies": "Aktiviere erweiterte Filmdarstellung.",
"LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.", "LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.",
"HeaderSyncJobInfo": "Synchronisationsaufgabe", "HeaderSyncJobInfo": "Synchronisationsaufgabe",
"FolderTypeMixed": "Gemischter Inhalt", "FolderTypeMixed": "Gemischte Inhalte",
"FolderTypeMovies": "Filme", "FolderTypeMovies": "Filme",
"FolderTypeMusic": "Musik", "FolderTypeMusic": "Musik",
"FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
"FolderTypePhotos": "Fotos", "FolderTypePhotos": "Fotos",
"FolderTypeMusicVideos": "Musikvideos", "FolderTypeMusicVideos": "Musikvideos",
"FolderTypeHomeVideos": "Heimvideos", "FolderTypeHomeVideos": "Heimvideos",
@ -202,7 +205,7 @@
"OptionAscending": "Aufsteigend", "OptionAscending": "Aufsteigend",
"OptionDescending": "Absteigend", "OptionDescending": "Absteigend",
"OptionRuntime": "Dauer", "OptionRuntime": "Dauer",
"OptionReleaseDate": "Ver\u00f6ffentlichungsdatum", "OptionReleaseDate": "Erscheinungsdatum",
"OptionPlayCount": "Z\u00e4hler", "OptionPlayCount": "Z\u00e4hler",
"OptionDatePlayed": "Abgespielt am", "OptionDatePlayed": "Abgespielt am",
"OptionDateAdded": "Hinzugef\u00fcgt am", "OptionDateAdded": "Hinzugef\u00fcgt am",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Einnahme", "OptionRevenue": "Einnahme",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Jahre",
"OptionPosterCard": "Poster Karte", "OptionPosterCard": "Poster Karte",
"OptionBackdrop": "Hintergrund", "OptionBackdrop": "Hintergrund",
"OptionTimeline": "Zeitlinie", "OptionTimeline": "Zeitlinie",
@ -266,13 +270,13 @@
"OptionContinuing": "Fortdauernd", "OptionContinuing": "Fortdauernd",
"OptionEnded": "Beendent", "OptionEnded": "Beendent",
"HeaderAirDays": "Ausstrahlungstage", "HeaderAirDays": "Ausstrahlungstage",
"OptionSundayShort": "Sun", "OptionSundayShort": "So",
"OptionMondayShort": "Mon", "OptionMondayShort": "Mo",
"OptionTuesdayShort": "Tue", "OptionTuesdayShort": "Di",
"OptionWednesdayShort": "Wed", "OptionWednesdayShort": "Mi",
"OptionThursdayShort": "Thu", "OptionThursdayShort": "Do",
"OptionFridayShort": "Fri", "OptionFridayShort": "Fr",
"OptionSaturdayShort": "Sat", "OptionSaturdayShort": "Sa",
"OptionSunday": "Sonntag", "OptionSunday": "Sonntag",
"OptionMonday": "Montag", "OptionMonday": "Montag",
"OptionTuesday": "Dienstag", "OptionTuesday": "Dienstag",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Ausw\u00e4hlen", "ButtonSelect": "Ausw\u00e4hlen",
"ButtonGroupVersions": "Gruppiere Versionen", "ButtonGroupVersions": "Gruppiere Versionen",
"ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Verwendet Pismo File Mount durch eine gespendete Lizenz.", "PismoMessage": "Verwendet Pismo File Mount durch eine gespendete Lizenz.",
"TangibleSoftwareMessage": "Verwendung konkreter L\u00f6sungen von Java\/C# Konvertern durch eine gespendete Lizenz.", "TangibleSoftwareMessage": "Verwendung konkreter L\u00f6sungen von Java\/C# Konvertern durch eine gespendete Lizenz.",
"HeaderCredits": "Herausgeber", "HeaderCredits": "Herausgeber",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Definiere eigene Pfade. Felder leer lassen um die Standardwerte zu nutzen.", "LabelCustomPaths": "Definiere eigene Pfade. Felder leer lassen um die Standardwerte zu nutzen.",
"LabelCachePath": "Cache Pfad:", "LabelCachePath": "Cache Pfad:",
"LabelCachePathHelp": "Legen Sie ein eigenes Verzeichnis f\u00fcr den Server Zwischenspeicher fest. (z.B. f\u00fcr Bilder) Lassen Sie dieses Feld leer um die Standardeinstellung zu verwenden.", "LabelCachePathHelp": "Legen Sie ein eigenes Verzeichnis f\u00fcr den Server Zwischenspeicher fest. (z.B. f\u00fcr Bilder) Lassen Sie dieses Feld leer um die Standardeinstellung zu verwenden.",
"LabelRecordingPath": "Aufnahmeverzeichnis:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Legen Sie einen eigenes Aufnahmeverzeichnis fest, lassen Sie das Feld leer um das Standardverzeichnis zu verwenden.", "LabelMovieRecordingPath": "Film Aufnahmepfad (Optional):",
"LabelSeriesRecordingPath": "Serien Aufnahmepfad (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name Pfad:", "LabelImagesByNamePath": "Images by name Pfad:",
"LabelImagesByNamePathHelp": "Spezifiziere eine individuelles Verzeichnis, f\u00fcr die heruntergeladenen Bilder der Darsteller, Genres und Studios.", "LabelImagesByNamePathHelp": "Spezifiziere eine individuelles Verzeichnis, f\u00fcr die heruntergeladenen Bilder der Darsteller, Genres und Studios.",
"LabelMetadataPath": "Metadata Pfad:", "LabelMetadataPath": "Metadata Pfad:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web Socket Port Nummer:", "LabelWebSocketPortNumber": "Web Socket Port Nummer:",
"LabelEnableAutomaticPortMap": "Aktiviere das automatische Port-Mapping", "LabelEnableAutomaticPortMap": "Aktiviere das automatische Port-Mapping",
"LabelEnableAutomaticPortMapHelp": "Versuche automatisch den \u00f6ffentlichen Port dem lokalen Port mit Hilfe von UPnP zuzuordnen. Dies kann mit einigen Router-Modellen nicht funktionieren.", "LabelEnableAutomaticPortMapHelp": "Versuche automatisch den \u00f6ffentlichen Port dem lokalen Port mit Hilfe von UPnP zuzuordnen. Dies kann mit einigen Router-Modellen nicht funktionieren.",
"LabelExternalDDNS": "Externe WAN Adresse:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Wenn Sie einen dynamischen DNS verwenden, geben Sie diesen hier ein. Emby Apps werden diese bei Internetverbindungen automatisch verwenden. Lassen Sie dieses Feld f\u00fcr eine automatische Erkennung leer.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Fortsetzen", "TabResume": "Fortsetzen",
"TabWeather": "Wetter", "TabWeather": "Wetter",
"TitleAppSettings": "App Einstellungen", "TitleAppSettings": "App Einstellungen",
@ -586,8 +592,8 @@
"LabelSkipped": "\u00dcbersprungen", "LabelSkipped": "\u00dcbersprungen",
"HeaderEpisodeOrganization": "Episodensortierung", "HeaderEpisodeOrganization": "Episodensortierung",
"LabelSeries": "Serien:", "LabelSeries": "Serien:",
"LabelSeasonNumber": "Staffelnummer", "LabelSeasonNumber": "Staffelnummer:",
"LabelEpisodeNumber": "Episodennummer", "LabelEpisodeNumber": "Episodennummer:",
"LabelEndingEpisodeNumber": "Nummer der letzten Episode:", "LabelEndingEpisodeNumber": "Nummer der letzten Episode:",
"LabelEndingEpisodeNumberHelp": "Nur erforderlich f\u00fcr Mehrfachepisoden", "LabelEndingEpisodeNumberHelp": "Nur erforderlich f\u00fcr Mehrfachepisoden",
"OptionRememberOrganizeCorrection": "Speichere und f\u00fchre diese Korrektur zuk\u00fcnftig bei Dateien mit \u00e4hnlichen Namen durch", "OptionRememberOrganizeCorrection": "Speichere und f\u00fchre diese Korrektur zuk\u00fcnftig bei Dateien mit \u00e4hnlichen Namen durch",
@ -726,10 +732,12 @@
"TabNowPlaying": "Aktuelle Wiedergabe", "TabNowPlaying": "Aktuelle Wiedergabe",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Vollbild",
"ButtonScenes": "Szenen", "ButtonScenes": "Szenen",
"ButtonSubtitles": "Untertitel", "ButtonSubtitles": "Untertitel",
"ButtonPreviousTrack": "Vorheriges St\u00fcck", "ButtonPreviousTrack": "Vorherige Tonspur",
"ButtonNextTrack": "N\u00e4chstes St\u00fcck", "ButtonNextTrack": "N\u00e4chste Tonspur",
"ButtonAudioTracks": "Audiospuren",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "N\u00e4chstes", "ButtonNext": "N\u00e4chstes",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Wiedergabeliste erlauben es dir eine Liste mit Inhalt zu erstellen der fortlaufend abgespielt wird. Um einer Wiedergabeliste Inhalte hinzuzuf\u00fcgen klicke rechts oder mache einen langen Tap und w\u00e4hle daraufhin \"Zur Wiedergabeliste hinzuf\u00fcgen\" aus.", "MessageNoPlaylistsAvailable": "Wiedergabeliste erlauben es dir eine Liste mit Inhalt zu erstellen der fortlaufend abgespielt wird. Um einer Wiedergabeliste Inhalte hinzuzuf\u00fcgen klicke rechts oder mache einen langen Tap und w\u00e4hle daraufhin \"Zur Wiedergabeliste hinzuf\u00fcgen\" aus.",
"MessageNoPlaylistItemsAvailable": "Diese Wiedergabeliste ist momentan leer.", "MessageNoPlaylistItemsAvailable": "Diese Wiedergabeliste ist momentan leer.",
"ButtonDismiss": "Verwerfen", "ButtonDismiss": "Verwerfen",
"ButtonMore": "Mehr",
"ButtonEditOtherUserPreferences": "Bearbeite dieses Benutzerprofil, das Benutzerbild und die pers\u00f6nlichen Einstellungen.", "ButtonEditOtherUserPreferences": "Bearbeite dieses Benutzerprofil, das Benutzerbild und die pers\u00f6nlichen Einstellungen.",
"LabelChannelStreamQuality": "Bevorzugte Qualit\u00e4t des Internetstreams:", "LabelChannelStreamQuality": "Bevorzugte Qualit\u00e4t des Internetstreams:",
"LabelChannelStreamQualityHelp": "In einer Umgebung mit langsamer Bandbreite kann die Beschr\u00e4nkung der Wiedergabequalit\u00e4t dazu beitragen eine fl\u00fcssige Darstellung sicherzustellen.", "LabelChannelStreamQualityHelp": "In einer Umgebung mit langsamer Bandbreite kann die Beschr\u00e4nkung der Wiedergabequalit\u00e4t dazu beitragen eine fl\u00fcssige Darstellung sicherzustellen.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Undefiniert", "OptionUnidentified": "Undefiniert",
"OptionMissingParentalRating": "Fehlende Altersfreigabe", "OptionMissingParentalRating": "Fehlende Altersfreigabe",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episoden",
"OptionSeason0": "Staffel 0", "OptionSeason0": "Staffel 0",
"LabelReport": "Bericht:", "LabelReport": "Bericht:",
"OptionReportSongs": "Lieder", "OptionReportSongs": "Lieder",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Interpreten", "OptionReportArtists": "Interpreten",
"OptionReportAlbums": "Alben", "OptionReportAlbums": "Alben",
"OptionReportAdultVideos": "Videos f\u00fcr Erwachsene", "OptionReportAdultVideos": "Videos f\u00fcr Erwachsene",
"ButtonMore": "Mehr", "ButtonMoreItems": "Mehr",
"HeaderActivity": "Aktivit\u00e4ten", "HeaderActivity": "Aktivit\u00e4ten",
"ScheduledTaskStartedWithName": "{0} gestartet", "ScheduledTaskStartedWithName": "{0} gestartet",
"ScheduledTaskCancelledWithName": "{0} wurde abgebrochen", "ScheduledTaskCancelledWithName": "{0} wurde abgebrochen",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Passwort zur\u00fccksetzen", "HeaderPasswordReset": "Passwort zur\u00fccksetzen",
"HeaderParentalRatings": "Altersbeschr\u00e4nkung", "HeaderParentalRatings": "Altersbeschr\u00e4nkung",
"HeaderVideoTypes": "Videotypen", "HeaderVideoTypes": "Videotypen",
"HeaderYears": "Jahre",
"HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit keiner oder nicht erkannter Altersfreigabe", "HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit keiner oder nicht erkannter Altersfreigabe",
"LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:", "LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:",
"LabelEnableSingleImageInDidlLimit": "Begrenze auf ein eingebundenes Bild", "LabelEnableSingleImageInDidlLimit": "Begrenze auf ein eingebundenes Bild",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Bevorstehende Filme", "HeaderUpcomingMovies": "Bevorstehende Filme",
"HeaderUpcomingSports": "Folgende Sportveranstaltungen", "HeaderUpcomingSports": "Folgende Sportveranstaltungen",
"HeaderUpcomingPrograms": "Bevorstehende Programme", "HeaderUpcomingPrograms": "Bevorstehende Programme",
"ButtonMoreItems": "Mehr",
"LabelShowLibraryTileNames": "Zeige Bibliothek Kachelnamen.", "LabelShowLibraryTileNames": "Zeige Bibliothek Kachelnamen.",
"LabelShowLibraryTileNamesHelp": "Legen Sie fest, ob Beschriftungen unter den Kacheln der Startseite angezeigt werden sollen.", "LabelShowLibraryTileNamesHelp": "Legen Sie fest, ob Beschriftungen unter den Kacheln der Startseite angezeigt werden sollen.",
"OptionEnableTranscodingThrottle": "aktiviere Drosselung", "OptionEnableTranscodingThrottle": "aktiviere Drosselung",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Ein aktives Emby Premium Abo wird benn\u00f6tigt um automatische Serienaufnahmen zu erstellen.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Ein aktives Emby Premium Abo wird benn\u00f6tigt um automatische Serienaufnahmen zu erstellen.",
"HeaderSetupTVGuide": "TV Guide einrichten", "HeaderSetupTVGuide": "TV Guide einrichten",
"LabelDataProvider": "Datenquelle:", "LabelDataProvider": "Datenquelle:",
"OptionSendRecordingsToAutoOrganize": "Aktiviere Auto-Organisation f\u00fcr neue Aufnahmen", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Neue Aufnahmen werden mittels automatischer Organisation in Ihrer Bibliothek importiert.", "OptionSendRecordingsToAutoOrganizeHelp": "Neue Aufnahmen werden mittels automatischer Organisation in Ihrer Bibliothek importiert.",
"HeaderDefaultPadding": "Standard Vor\/ Nachlauf", "HeaderDefaultPadding": "Standard Vor\/ Nachlauf",
"OptionEnableRecordingSubfolders": "Erstelle Unterverzeichnisse f\u00fcr Katerogien wie Sport, Kindersendungen etc.",
"HeaderSubtitles": "Untertitel", "HeaderSubtitles": "Untertitel",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Aktiviere Bild per Bild Videoanalyse.", "OptionEnableVideoFrameAnalysis": "Aktiviere Bild per Bild Videoanalyse.",
@ -1852,7 +1861,7 @@
"OptionProductionLocations": "Produktionsst\u00e4tten", "OptionProductionLocations": "Produktionsst\u00e4tten",
"OptionBirthLocation": "Geburtsort", "OptionBirthLocation": "Geburtsort",
"LabelAllChannels": "Alle Kan\u00e4le", "LabelAllChannels": "Alle Kan\u00e4le",
"AttributeNew": "New", "AttributeNew": "Neu",
"AttributePremiere": "Premiere", "AttributePremiere": "Premiere",
"AttributeLive": "Live", "AttributeLive": "Live",
"LabelHDProgram": "HD", "LabelHDProgram": "HD",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Autom.Organisation", "TabAutoOrganize": "Autom.Organisation",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Hilfe", "TabHelp": "Hilfe",
"ButtonFullscreen": "Vollbild umschalten",
"ButtonAudioTracks": "Audiospuren",
"ButtonQuality": "Qualit\u00e4t", "ButtonQuality": "Qualit\u00e4t",
"HeaderNotifications": "Benachrichtigungen", "HeaderNotifications": "Benachrichtigungen",
"HeaderSelectPlayer": "W\u00e4hle Videoplayer", "HeaderSelectPlayer": "W\u00e4hle Videoplayer",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Aufl\u00f6sung", "HeaderResolution": "Aufl\u00f6sung",
"HeaderRuntime": "Laufzeit", "HeaderRuntime": "Laufzeit",
"HeaderCommunityRating": "Community Bewertung", "HeaderCommunityRating": "Community Bewertung",
"HeaderParentalRating": "Alterseinstufung", "HeaderParentalRating": "Altersfreigabe",
"HeaderReleaseDate": "Ver\u00f6ffentlichungsdatum", "HeaderReleaseDate": "Ver\u00f6ffentlichungsdatum",
"HeaderDateAdded": "Hinzugef\u00fcgt am", "HeaderDateAdded": "Datum hinzugef\u00fcgt",
"HeaderSeries": "Serien", "HeaderSeries": "Serien:",
"HeaderSeason": "Staffel", "HeaderSeason": "Staffel",
"HeaderSeasonNumber": "Staffel Nummer", "HeaderSeasonNumber": "Staffel Nummer",
"HeaderNetwork": "Netzwerk", "HeaderNetwork": "Netzwerk",
"HeaderYear": "Jahr", "HeaderYear": "Jahr:",
"HeaderGameSystem": "Spielesystem", "HeaderGameSystem": "Spielesystem",
"HeaderPlayers": "Abspielger\u00e4te", "HeaderPlayers": "Spieler:",
"HeaderEmbeddedImage": "Integriertes Bild", "HeaderEmbeddedImage": "Integriertes Bild",
"HeaderTrack": "St\u00fcck", "HeaderTrack": "St\u00fcck",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Alben", "HeaderAlbums": "Alben",
"HeaderGames": "Spiele", "HeaderGames": "Spiele",
"HeaderBooks": "B\u00fccher", "HeaderBooks": "B\u00fccher",
"HeaderEpisodes": "Episoden:",
"HeaderSeasons": "Staffeln", "HeaderSeasons": "Staffeln",
"HeaderTracks": "Lieder", "HeaderTracks": "Lieder",
"HeaderItems": "Inhalte", "HeaderItems": "Inhalte",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Vollst\u00e4ndige Bewertung:", "LabelFullReview": "Vollst\u00e4ndige Bewertung:",
"LabelShortRatingDescription": "Kurze Zusammenfassung der Bewertung:", "LabelShortRatingDescription": "Kurze Zusammenfassung der Bewertung:",
"OptionIRecommendThisItem": "Ich schlage diesen Inhalt vor", "OptionIRecommendThisItem": "Ich schlage diesen Inhalt vor",
"EndsAtValue": "Endet um {0}",
"ReleaseYearValue": "Erscheinungsjahr: {0}",
"OriginalAirDateValue": "Erstausstrahlung: {0}",
"WebClientTourContent": "Schaue deine zuletzt hinzugef\u00fcgten Medien, n\u00e4chste Episoden und mehr an. Die gr\u00fcnen Kreise zeigen dir an, wie viele ungesehene Inhalte du hast.", "WebClientTourContent": "Schaue deine zuletzt hinzugef\u00fcgten Medien, n\u00e4chste Episoden und mehr an. Die gr\u00fcnen Kreise zeigen dir an, wie viele ungesehene Inhalte du hast.",
"WebClientTourMovies": "Spiele Filme, Trailer und mehr von jedem Ger\u00e4t mit einem Web-Browser", "WebClientTourMovies": "Spiele Filme, Trailer und mehr von jedem Ger\u00e4t mit einem Web-Browser",
"WebClientTourMouseOver": "Halte die Maus \u00fcber ein Plakat f\u00fcr den schnellen Zugriff auf wichtige Informationen", "WebClientTourMouseOver": "Halte die Maus \u00fcber ein Plakat f\u00fcr den schnellen Zugriff auf wichtige Informationen",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "Der Benutzername wird bereits verwenden. Bitte w\u00e4hlen Sie einen neuen Namen und versuchen Sie es erneut.", "ErrorMessageUsernameInUse": "Der Benutzername wird bereits verwenden. Bitte w\u00e4hlen Sie einen neuen Namen und versuchen Sie es erneut.",
"ErrorMessageEmailInUse": "Die Emailadresse wird bereits verwendet. Bitte verwenden Sie eine neue Emailadresse und versuchen Sie es erneut oder benutzen Sie die \"Passwort vergessen\" Funktion.", "ErrorMessageEmailInUse": "Die Emailadresse wird bereits verwendet. Bitte verwenden Sie eine neue Emailadresse und versuchen Sie es erneut oder benutzen Sie die \"Passwort vergessen\" Funktion.",
"MessageThankYouForConnectSignUp": "Vielen Dank f\u00fcr Ihre Anmeldung bei Emby Connect. Eine Emails mit weiteren Schritten zur Anmeldung Ihres neuen Kontos wird Ihnen in K\u00fcrze zugestellt. Bitte best\u00e4tigen Sie Ihr Konto und kehren Sie dann hier her zur\u00fcck um sich anzumelden.", "MessageThankYouForConnectSignUp": "Vielen Dank f\u00fcr Ihre Anmeldung bei Emby Connect. Eine Emails mit weiteren Schritten zur Anmeldung Ihres neuen Kontos wird Ihnen in K\u00fcrze zugestellt. Bitte best\u00e4tigen Sie Ihr Konto und kehren Sie dann hier her zur\u00fcck um sich anzumelden.",
"Share": "Teilen",
"HeaderShare": "Teilen", "HeaderShare": "Teilen",
"ButtonShareHelp": "Teilen Sie eine Website mit Medieninformationen in einem sozialen Netzwerk. Medien werden niemals \u00f6ffentlich geteilt.", "ButtonShareHelp": "Teilen Sie eine Website mit Medieninformationen in einem sozialen Netzwerk. Medien werden niemals \u00f6ffentlich geteilt.",
"ButtonShare": "Teilen", "ButtonShare": "Teilen",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Wussten Sie schon, das Sie mit Emby Premium, ihr Erlebnis mit Funktionen wie dem Kino-Modus, noch verbessern k\u00f6nnen?", "MessageDidYouKnowCinemaMode": "Wussten Sie schon, das Sie mit Emby Premium, ihr Erlebnis mit Funktionen wie dem Kino-Modus, noch verbessern k\u00f6nnen?",
"MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.", "MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.",
"OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung", "OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung",
"HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine Unterst\u00fctzer-Mitgliedschaft",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync ben\u00f6tigt eine Verbindung zu einem Emby Server mit aktivem Emby Premium Abo.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync ben\u00f6tigt eine Verbindung zu einem Emby Server mit aktivem Emby Premium Abo.",
"ErrorValidatingSupporterInfo": "Es gab einen Fehler beim Pr\u00fcfen ihrer Emby Premium Daten. Bitte versuche es sp\u00e4ter erneut.", "ErrorValidatingSupporterInfo": "Es gab einen Fehler beim Pr\u00fcfen ihrer Emby Premium Daten. Bitte versuche es sp\u00e4ter erneut.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Das Ver\u00e4ndern der Metadata-Einstellungen hat nur Einfluss auf neu hinzugef\u00fcgte Inhalte. Um eine Aktualisierung bereits hinzugef\u00fcgter Inhalte durchzuf\u00fchren, \u00f6ffnen Sie bitte die Detail Ansicht und klicken die Aktualisieren Schaltfl\u00e4che. Die Aktualisierung mehrerer Inhalte kann im Metadata Manager durchgef\u00fchrt werden.", "MetadataSettingChangeHelp": "Das Ver\u00e4ndern der Metadata-Einstellungen hat nur Einfluss auf neu hinzugef\u00fcgte Inhalte. Um eine Aktualisierung bereits hinzugef\u00fcgter Inhalte durchzuf\u00fchren, \u00f6ffnen Sie bitte die Detail Ansicht und klicken die Aktualisieren Schaltfl\u00e4che. Die Aktualisierung mehrerer Inhalte kann im Metadata Manager durchgef\u00fchrt werden.",
"LabelTitle": "Titel:", "LabelTitle": "Titel:",
"LabelOriginalTitle": "Original Titel:", "LabelOriginalTitle": "Original Titel:",
"LabelSortTitle": "Sortierungs Titel:" "LabelSortTitle": "Sortierungs Titel:",
"OptionConvertRecordingPreserveAudio": "Erh\u00f6he die Audiolautst\u00e4rke beim Heruntermischen. Setzte auf 1 um die original Lautst\u00e4rke zu erhalten.",
"OptionConvertRecordingPreserveAudioHelp": "Dies liefert eine bessere Audio Qualit\u00e4t, ben\u00f6tigt aber m\u00f6glicherweise eine Transkodierung w\u00e4hrend der Wiedergabe auf einigen Ger\u00e4ten.",
"CreateCollectionHelp": "Sammlungen erm\u00f6glichen personallisierte Gruppen von Filmen oder anderen Medien.",
"AddItemToCollectionHelp": "Um Medien Gruppen hinzuzuf\u00fcgen, verwende die Suche und benutze die Rechtsklick oder Tap-Men\u00fcs.",
"HeaderHealthMonitor": "Gesundheits Monitor",
"HealthMonitorNoAlerts": "Keine aktiven Wartnungen."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2", "LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
"LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1", "LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "\u039f\u03b9 \u03b5\u03bd\u03ae\u03bb\u03b9\u03ba\u03bf\u03b9 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03c4\u03b5!", "HeaderAdultsReadHere": "\u039f\u03b9 \u03b5\u03bd\u03ae\u03bb\u03b9\u03ba\u03bf\u03b9 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03c4\u03b5!",
"RegisterWithPayPal": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b5 Paypal", "RegisterWithPayPal": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b5 Paypal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "\u0391\u03c0\u03bf\u03bb\u03b1\u03cd\u03c3\u03c4\u03b5 14 \u039c\u03ad\u03c1\u03b5\u03c2 \u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae\u03c2 \u03a0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5", "HeaderEnjoyDayTrial": "\u0391\u03c0\u03bf\u03bb\u03b1\u03cd\u03c3\u03c4\u03b5 14 \u039c\u03ad\u03c1\u03b5\u03c2 \u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae\u03c2 \u03a0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5",
"LabelSyncTempPath": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ce\u03bd \u0391\u03c1\u03c7\u03b5\u03af\u03c9\u03bd", "LabelSyncTempPath": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ce\u03bd \u0391\u03c1\u03c7\u03b5\u03af\u03c9\u03bd",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Enable enhanced movie displays", "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
"HeaderSyncJobInfo": "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd", "HeaderSyncJobInfo": "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd",
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "\u0391\u03bd\u03ac\u03bc\u03b5\u03b9\u03ba\u03c4\u03bf \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf",
"FolderTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", "FolderTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
"FolderTypeMusic": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae", "FolderTypeMusic": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae",
"FolderTypeAdultVideos": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2 \u0395\u03bd\u03b7\u03bb\u03af\u03ba\u03c9\u03bd",
"FolderTypePhotos": "\u03a6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2", "FolderTypePhotos": "\u03a6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2",
"FolderTypeMusicVideos": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ac \u0392\u03af\u03bd\u03c4\u03b5\u03bf", "FolderTypeMusicVideos": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ac \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
"FolderTypeHomeVideos": "\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ac \u0392\u03af\u03bd\u03c4\u03b5\u03bf", "FolderTypeHomeVideos": "\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ac \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
@ -202,7 +205,7 @@
"OptionAscending": "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1", "OptionAscending": "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1",
"OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1", "OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1",
"OptionRuntime": "Runtime", "OptionRuntime": "Runtime",
"OptionReleaseDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae\u03c2", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "\u03a6\u03bf\u03c1\u03ad\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", "OptionPlayCount": "\u03a6\u03bf\u03c1\u03ad\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
"OptionDatePlayed": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", "OptionDatePlayed": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
"OptionDateAdded": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2", "OptionDateAdded": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2",
@ -216,6 +219,7 @@
"OptionBudget": "\u03a0\u03c1\u03bf\u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2", "OptionBudget": "\u03a0\u03c1\u03bf\u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1", "OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "\u03a7\u03c1\u03bf\u03bd\u03bf\u03b4\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1", "OptionTimeline": "\u03a7\u03c1\u03bf\u03bd\u03bf\u03b4\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1",
@ -325,7 +329,7 @@
"OptionMetascore": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1", "OptionMetascore": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1",
"ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae", "ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Exit", "LabelExit": "Exit",
"LabelVisitCommunity": "Visit Community", "LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organise", "TabAutoOrganize": "Auto-Organise",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -562,7 +562,7 @@
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External domain:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom https certificate.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -2353,5 +2353,8 @@
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection." "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts.",
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Salir", "LabelExit": "Salir",
"LabelVisitCommunity": "Visit Community", "LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Salir", "LabelExit": "Salir",
"LabelVisitCommunity": "Visitar la Comunidad", "LabelVisitCommunity": "Visitar la Comunidad",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin", "ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
"HeaderAdultsReadHere": "\u00a1Adultos Leer Esto!", "HeaderAdultsReadHere": "\u00a1Adultos Leer Esto!",
"RegisterWithPayPal": "Registrar con PayPal", "RegisterWithPayPal": "Registrar con PayPal",
"HeaderSyncRequiresSupporterMembership": "Sincronizacion requiere de una Membres\u00eda de Aficionado",
"HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas", "HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas",
"LabelSyncTempPath": "Ruta de archivos temporales:", "LabelSyncTempPath": "Ruta de archivos temporales:",
"LabelSyncTempPathHelp": "Especifique una carpeta de trabajo personalizada para sinc. Los medios convertidos creados durante el proceso de sinc ser\u00e1n almacenados en este lugar.", "LabelSyncTempPathHelp": "Especifique una carpeta de trabajo personalizada para sinc. Los medios convertidos creados durante el proceso de sinc ser\u00e1n almacenados en este lugar.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Contenido mezclado", "FolderTypeMixed": "Contenido mezclado",
"FolderTypeMovies": "Pel\u00edculas", "FolderTypeMovies": "Pel\u00edculas",
"FolderTypeMusic": "M\u00fasica", "FolderTypeMusic": "M\u00fasica",
"FolderTypeAdultVideos": "Videos para adultos",
"FolderTypePhotos": "Fotos", "FolderTypePhotos": "Fotos",
"FolderTypeMusicVideos": "Videos musicales", "FolderTypeMusicVideos": "Videos musicales",
"FolderTypeHomeVideos": "Videos caseros", "FolderTypeHomeVideos": "Videos caseros",
@ -202,7 +205,7 @@
"OptionAscending": "Ascendente", "OptionAscending": "Ascendente",
"OptionDescending": "Descendente", "OptionDescending": "Descendente",
"OptionRuntime": "Duraci\u00f3n", "OptionRuntime": "Duraci\u00f3n",
"OptionReleaseDate": "Fecha de Liberaci\u00f3n", "OptionReleaseDate": "Fecha de Estreno",
"OptionPlayCount": "Contador", "OptionPlayCount": "Contador",
"OptionDatePlayed": "Fecha de Reproducci\u00f3n", "OptionDatePlayed": "Fecha de Reproducci\u00f3n",
"OptionDateAdded": "Fecha de Adici\u00f3n", "OptionDateAdded": "Fecha de Adici\u00f3n",
@ -216,6 +219,7 @@
"OptionBudget": "Presupuesto", "OptionBudget": "Presupuesto",
"OptionRevenue": "Recaudaci\u00f3n", "OptionRevenue": "Recaudaci\u00f3n",
"OptionPoster": "P\u00f3ster", "OptionPoster": "P\u00f3ster",
"HeaderYears": "A\u00f1os",
"OptionPosterCard": "Tarjeta de P\u00f3ster", "OptionPosterCard": "Tarjeta de P\u00f3ster",
"OptionBackdrop": "Imagen de Fondo", "OptionBackdrop": "Imagen de Fondo",
"OptionTimeline": "L\u00ednea de Tiempo", "OptionTimeline": "L\u00ednea de Tiempo",
@ -266,13 +270,13 @@
"OptionContinuing": "Continuando", "OptionContinuing": "Continuando",
"OptionEnded": "Finalizado", "OptionEnded": "Finalizado",
"HeaderAirDays": "D\u00edas de Emisi\u00f3n", "HeaderAirDays": "D\u00edas de Emisi\u00f3n",
"OptionSundayShort": "Sun", "OptionSundayShort": "Dom",
"OptionMondayShort": "Mon", "OptionMondayShort": "Lun",
"OptionTuesdayShort": "Tue", "OptionTuesdayShort": "Mar",
"OptionWednesdayShort": "Wed", "OptionWednesdayShort": "Mie",
"OptionThursdayShort": "Thu", "OptionThursdayShort": "Jue",
"OptionFridayShort": "Fri", "OptionFridayShort": "Vie",
"OptionSaturdayShort": "Sat", "OptionSaturdayShort": "Sab",
"OptionSunday": "Domingo", "OptionSunday": "Domingo",
"OptionMonday": "Lunes", "OptionMonday": "Lunes",
"OptionTuesday": "Martes", "OptionTuesday": "Martes",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Seleccionar", "ButtonSelect": "Seleccionar",
"ButtonGroupVersions": "Agrupar Versiones", "ButtonGroupVersions": "Agrupar Versiones",
"ButtonAddToCollection": "Agregar a Colecci\u00f3n", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizando Pismo File Mount a trav\u00e9s de una licencia donada.", "PismoMessage": "Utilizando Pismo File Mount a trav\u00e9s de una licencia donada.",
"TangibleSoftwareMessage": "Utilizando convertidores Java\/C# de Tangible Solutions por medio de una licencia donada.", "TangibleSoftwareMessage": "Utilizando convertidores Java\/C# de Tangible Solutions por medio de una licencia donada.",
"HeaderCredits": "Cr\u00e9ditos", "HeaderCredits": "Cr\u00e9ditos",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Especificar rutas personalizadas cuando se desee. Deje los campos vac\u00edos para usar los valores predeterminados.", "LabelCustomPaths": "Especificar rutas personalizadas cuando se desee. Deje los campos vac\u00edos para usar los valores predeterminados.",
"LabelCachePath": "Ruta para el Cach\u00e9:", "LabelCachePath": "Ruta para el Cach\u00e9:",
"LabelCachePathHelp": "Especifique una ubicaci\u00f3n personalizada para los archivos de cach\u00e9 del servidor, tales como im\u00e1genes. Dejar en blanco para usar la configuraci\u00f3n por defecto.", "LabelCachePathHelp": "Especifique una ubicaci\u00f3n personalizada para los archivos de cach\u00e9 del servidor, tales como im\u00e1genes. Dejar en blanco para usar la configuraci\u00f3n por defecto.",
"LabelRecordingPath": "Ruta para grabaciones:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Especifique una ubicaci\u00f3n personalizada para almacenar las grabaciones. Dejar en blanco para usar la configuraci\u00f3n por defecto.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Ruta para Im\u00e1genes por nombre:", "LabelImagesByNamePath": "Ruta para Im\u00e1genes por nombre:",
"LabelImagesByNamePathHelp": "Especifique una ubicaci\u00f3n personalizada para im\u00e1genes descargadas de actores, artistas, g\u00e9neros y estudios.", "LabelImagesByNamePathHelp": "Especifique una ubicaci\u00f3n personalizada para im\u00e1genes descargadas de actores, artistas, g\u00e9neros y estudios.",
"LabelMetadataPath": "Ruta para metadatos:", "LabelMetadataPath": "Ruta para metadatos:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "N\u00famero de puerto WebSocket:", "LabelWebSocketPortNumber": "N\u00famero de puerto WebSocket:",
"LabelEnableAutomaticPortMap": "Habilitar mapeo autom\u00e1tico de puertos", "LabelEnableAutomaticPortMap": "Habilitar mapeo autom\u00e1tico de puertos",
"LabelEnableAutomaticPortMapHelp": "Intentar mapear autom\u00e1ticamente el puerto p\u00fablico con el puerto local via UPnP. Esto podr\u00eda no funcionar con algunos modelos de ruteadores.", "LabelEnableAutomaticPortMapHelp": "Intentar mapear autom\u00e1ticamente el puerto p\u00fablico con el puerto local via UPnP. Esto podr\u00eda no funcionar con algunos modelos de ruteadores.",
"LabelExternalDDNS": "Direcci\u00f3n WAN externa:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Si tiene un DNS din\u00e1mico introduzcalo aqu\u00ed. Las aplicaciones Emby lo usaran cuando se conecte remotamente. D\u00e9jelo en blanco para detectar autom\u00e1ticamente.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Continuar", "TabResume": "Continuar",
"TabWeather": "El tiempo", "TabWeather": "El tiempo",
"TitleAppSettings": "Configuraci\u00f3n de la App", "TitleAppSettings": "Configuraci\u00f3n de la App",
@ -586,8 +592,8 @@
"LabelSkipped": "Omitido", "LabelSkipped": "Omitido",
"HeaderEpisodeOrganization": "Organizaci\u00f3n de Episodios", "HeaderEpisodeOrganization": "Organizaci\u00f3n de Episodios",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Temporada numero", "LabelSeasonNumber": "N\u00famero de temporada:",
"LabelEpisodeNumber": "Episodio numero", "LabelEpisodeNumber": "N\u00famero de episodio:",
"LabelEndingEpisodeNumber": "N\u00famero episodio final:", "LabelEndingEpisodeNumber": "N\u00famero episodio final:",
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio", "LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
"OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n en archivos futuros con nombres similares", "OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n en archivos futuros con nombres similares",
@ -726,10 +732,12 @@
"TabNowPlaying": "Reproduci\u00e9ndo Ahora", "TabNowPlaying": "Reproduci\u00e9ndo Ahora",
"TabNavigation": "Navegaci\u00f3n", "TabNavigation": "Navegaci\u00f3n",
"TabControls": "Controles", "TabControls": "Controles",
"ButtonFullscreen": "Pantalla completa",
"ButtonScenes": "Escenas", "ButtonScenes": "Escenas",
"ButtonSubtitles": "Subt\u00edtulos", "ButtonSubtitles": "Subt\u00edtulos",
"ButtonPreviousTrack": "Pista anterior", "ButtonPreviousTrack": "Pista anterior",
"ButtonNextTrack": "Pista siguiente", "ButtonNextTrack": "Pista siguiente",
"ButtonAudioTracks": "Pistas de Audio",
"ButtonStop": "Detener", "ButtonStop": "Detener",
"ButtonPause": "Pausar", "ButtonPause": "Pausar",
"ButtonNext": "Siguiente", "ButtonNext": "Siguiente",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenidos a ser reproducidos de manera consecutiva. Para agregar \u00edtems a una lista de reproducci\u00f3n, haga clic derecho o seleccione y mantenga, despu\u00e9s seleccione Agregar a Lista de Reproducci\u00f3n.", "MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenidos a ser reproducidos de manera consecutiva. Para agregar \u00edtems a una lista de reproducci\u00f3n, haga clic derecho o seleccione y mantenga, despu\u00e9s seleccione Agregar a Lista de Reproducci\u00f3n.",
"MessageNoPlaylistItemsAvailable": "Esta lista de reproducci\u00f3n se encuentra vac\u00eda.", "MessageNoPlaylistItemsAvailable": "Esta lista de reproducci\u00f3n se encuentra vac\u00eda.",
"ButtonDismiss": "Descartar", "ButtonDismiss": "Descartar",
"ButtonMore": "M\u00e1s",
"ButtonEditOtherUserPreferences": "Editar el perf\u00edl de este usuario. im\u00e1gen y preferencias personales.", "ButtonEditOtherUserPreferences": "Editar el perf\u00edl de este usuario. im\u00e1gen y preferencias personales.",
"LabelChannelStreamQuality": "Calidad preferida para canal de internet:", "LabelChannelStreamQuality": "Calidad preferida para canal de internet:",
"LabelChannelStreamQualityHelp": "En un ambiente de ancho de banda limitado, limitar la calidad puede ayudar a asegurar una experiencia de transimisi\u00f3n en tiempo real fluida.", "LabelChannelStreamQualityHelp": "En un ambiente de ancho de banda limitado, limitar la calidad puede ayudar a asegurar una experiencia de transimisi\u00f3n en tiempo real fluida.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "No Identificado", "OptionUnidentified": "No Identificado",
"OptionMissingParentalRating": "Falta clasificaci\u00f3n parental", "OptionMissingParentalRating": "Falta clasificaci\u00f3n parental",
"OptionStub": "Plantilla", "OptionStub": "Plantilla",
"HeaderEpisodes": "Episodios",
"OptionSeason0": "Temporada 0", "OptionSeason0": "Temporada 0",
"LabelReport": "Reporte:", "LabelReport": "Reporte:",
"OptionReportSongs": "Canciones", "OptionReportSongs": "Canciones",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artistas", "OptionReportArtists": "Artistas",
"OptionReportAlbums": "\u00c1lbumes", "OptionReportAlbums": "\u00c1lbumes",
"OptionReportAdultVideos": "Videos para Adultos", "OptionReportAdultVideos": "Videos para Adultos",
"ButtonMore": "M\u00e1s", "ButtonMoreItems": "Mas",
"HeaderActivity": "Actividad", "HeaderActivity": "Actividad",
"ScheduledTaskStartedWithName": "{0} Iniciado", "ScheduledTaskStartedWithName": "{0} Iniciado",
"ScheduledTaskCancelledWithName": "{0} fue cancelado", "ScheduledTaskCancelledWithName": "{0} fue cancelado",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Restablecer Contrase\u00f1a", "HeaderPasswordReset": "Restablecer Contrase\u00f1a",
"HeaderParentalRatings": "Clasificaci\u00f3n Parental", "HeaderParentalRatings": "Clasificaci\u00f3n Parental",
"HeaderVideoTypes": "Tipos de Video", "HeaderVideoTypes": "Tipos de Video",
"HeaderYears": "A\u00f1os",
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:", "HeaderBlockItemsWithNoRating": "Bloquear contenido sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:",
"LabelBlockContentWithTags": "Bloquear contenidos con etiquetas:", "LabelBlockContentWithTags": "Bloquear contenidos con etiquetas:",
"LabelEnableSingleImageInDidlLimit": "Limitar a una sola imagen incrustada.", "LabelEnableSingleImageInDidlLimit": "Limitar a una sola imagen incrustada.",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Pel\u00edculas por Estrenar", "HeaderUpcomingMovies": "Pel\u00edculas por Estrenar",
"HeaderUpcomingSports": "Deportes por Estrenar", "HeaderUpcomingSports": "Deportes por Estrenar",
"HeaderUpcomingPrograms": "Programas por Estrenar", "HeaderUpcomingPrograms": "Programas por Estrenar",
"ButtonMoreItems": "Mas",
"LabelShowLibraryTileNames": "Mostrar nombres de t\u00edtulo de las bibliotecas", "LabelShowLibraryTileNames": "Mostrar nombres de t\u00edtulo de las bibliotecas",
"LabelShowLibraryTileNamesHelp": "Determina si se desplegar\u00e1n etiquetas debajo de los t\u00edtulos de las bibliotecas con la p\u00e1gina principal", "LabelShowLibraryTileNamesHelp": "Determina si se desplegar\u00e1n etiquetas debajo de los t\u00edtulos de las bibliotecas con la p\u00e1gina principal",
"OptionEnableTranscodingThrottle": "Habilitar contenci\u00f3n", "OptionEnableTranscodingThrottle": "Habilitar contenci\u00f3n",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Se requiere de una suscripci\u00f3n de Emby Premier para crear grabaciones automatizadas de series.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Se requiere de una suscripci\u00f3n de Emby Premier para crear grabaciones automatizadas de series.",
"HeaderSetupTVGuide": "Configurar Gu\u00eda de TV", "HeaderSetupTVGuide": "Configurar Gu\u00eda de TV",
"LabelDataProvider": "Proveedor de datos:", "LabelDataProvider": "Proveedor de datos:",
"OptionSendRecordingsToAutoOrganize": "Habilitar Auto-Organizaci\u00f3n para nuevas grabaciones", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Las nuevas grabaciones ser\u00e1n enviadas a la funci\u00f3n de Auto-Organizar e importadas a tu librer\u00eda de medios.", "OptionSendRecordingsToAutoOrganizeHelp": "Las nuevas grabaciones ser\u00e1n enviadas a la funci\u00f3n de Auto-Organizar e importadas a tu librer\u00eda de medios.",
"HeaderDefaultPadding": "Rellenado Predeterminado", "HeaderDefaultPadding": "Rellenado Predeterminado",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subt\u00edtulos", "HeaderSubtitles": "Subt\u00edtulos",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lisis de video cuadro por cuadro", "OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lisis de video cuadro por cuadro",
@ -1852,9 +1861,9 @@
"OptionProductionLocations": "Lugares de Producci\u00f3n", "OptionProductionLocations": "Lugares de Producci\u00f3n",
"OptionBirthLocation": "Lugar de Nacimiento", "OptionBirthLocation": "Lugar de Nacimiento",
"LabelAllChannels": "Todos los canales", "LabelAllChannels": "Todos los canales",
"AttributeNew": "New", "AttributeNew": "Nuevo",
"AttributePremiere": "Premiere", "AttributePremiere": "Premier",
"AttributeLive": "Live", "AttributeLive": "En Vivo",
"LabelHDProgram": "HD", "LabelHDProgram": "HD",
"HeaderChangeFolderType": "Cambiar Tipo de Contenido", "HeaderChangeFolderType": "Cambiar Tipo de Contenido",
"HeaderChangeFolderTypeHelp": "Para cambiar el tipo, por favor elimine y reconstruya la biblioteca con el nuevo tipo.", "HeaderChangeFolderTypeHelp": "Para cambiar el tipo, por favor elimine y reconstruya la biblioteca con el nuevo tipo.",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organizar", "TabAutoOrganize": "Auto-Organizar",
"TabPlugins": "Complementos", "TabPlugins": "Complementos",
"TabHelp": "Ayuda", "TabHelp": "Ayuda",
"ButtonFullscreen": "Cambiar a pantalla completa",
"ButtonAudioTracks": "Pistas de audio",
"ButtonQuality": "Calidad", "ButtonQuality": "Calidad",
"HeaderNotifications": "Notificaciones", "HeaderNotifications": "Notificaciones",
"HeaderSelectPlayer": "Seleccionar Reproductor", "HeaderSelectPlayer": "Seleccionar Reproductor",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resoluci\u00f3n", "HeaderResolution": "Resoluci\u00f3n",
"HeaderRuntime": "Duraci\u00f3n", "HeaderRuntime": "Duraci\u00f3n",
"HeaderCommunityRating": "Calificaci\u00f3n de la comunidad", "HeaderCommunityRating": "Calificaci\u00f3n de la comunidad",
"HeaderParentalRating": "Clasificaci\u00f3n parental", "HeaderParentalRating": "Clasificaci\u00f3n Parental",
"HeaderReleaseDate": "Fecha de estreno", "HeaderReleaseDate": "Fecha de estreno",
"HeaderDateAdded": "Fecha de adici\u00f3n", "HeaderDateAdded": "Fecha de Adici\u00f3n",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Temporada", "HeaderSeason": "Temporada",
"HeaderSeasonNumber": "N\u00famero de temporada", "HeaderSeasonNumber": "N\u00famero de temporada",
"HeaderNetwork": "Cadena", "HeaderNetwork": "Cadena",
"HeaderYear": "A\u00f1o", "HeaderYear": "A\u00f1o:",
"HeaderGameSystem": "Sistema de juegos", "HeaderGameSystem": "Sistema de juegos",
"HeaderPlayers": "Reproductores", "HeaderPlayers": "Reproductores:",
"HeaderEmbeddedImage": "Im\u00e1gen embebida", "HeaderEmbeddedImage": "Im\u00e1gen embebida",
"HeaderTrack": "Pista", "HeaderTrack": "Pista",
"HeaderDisc": "Disco", "HeaderDisc": "Disco",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "\u00c1lbumes", "HeaderAlbums": "\u00c1lbumes",
"HeaderGames": "Juegos", "HeaderGames": "Juegos",
"HeaderBooks": "Libros", "HeaderBooks": "Libros",
"HeaderEpisodes": "Episodios:",
"HeaderSeasons": "Temporadas", "HeaderSeasons": "Temporadas",
"HeaderTracks": "Pistas", "HeaderTracks": "Pistas",
"HeaderItems": "\u00cdtems", "HeaderItems": "\u00cdtems",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Rese\u00f1a completa:", "LabelFullReview": "Rese\u00f1a completa:",
"LabelShortRatingDescription": "Res\u00famen corto de calificaci\u00f3n:", "LabelShortRatingDescription": "Res\u00famen corto de calificaci\u00f3n:",
"OptionIRecommendThisItem": "Yo recomiendo este \u00edtem", "OptionIRecommendThisItem": "Yo recomiendo este \u00edtem",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Vea sus medios recientemente a\u00f1adidos, siguientes ep\u00ecsodios y m\u00e1s. Los c\u00edrculos verdes indican cuantos medios sin reproducir tiene.", "WebClientTourContent": "Vea sus medios recientemente a\u00f1adidos, siguientes ep\u00ecsodios y m\u00e1s. Los c\u00edrculos verdes indican cuantos medios sin reproducir tiene.",
"WebClientTourMovies": "Reproduzca pel\u00edculas, tr\u00e1ilers y m\u00e1s desde cualquier dispositivo con un navegador web.", "WebClientTourMovies": "Reproduzca pel\u00edculas, tr\u00e1ilers y m\u00e1s desde cualquier dispositivo con un navegador web.",
"WebClientTourMouseOver": "Mantenga el rat\u00f3n sobre cualquier p\u00f3ster para un acceso r\u00e1pido a informaci\u00f3n importante.", "WebClientTourMouseOver": "Mantenga el rat\u00f3n sobre cualquier p\u00f3ster para un acceso r\u00e1pido a informaci\u00f3n importante.",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "El Nombre de Usuario ya esta en uso. Por favor seleccione un nuevo nombre e intente de nuevo.", "ErrorMessageUsernameInUse": "El Nombre de Usuario ya esta en uso. Por favor seleccione un nuevo nombre e intente de nuevo.",
"ErrorMessageEmailInUse": "La direcci\u00f3n de correo electr\u00f3nico ya esta en uso. Por favor ingrese un correo electr\u00f3nico nuevo e intente de nuevo, o si olvido la contrase\u00f1a use la opci\u00f3n \"Olvide mi contrase\u00f1a\".", "ErrorMessageEmailInUse": "La direcci\u00f3n de correo electr\u00f3nico ya esta en uso. Por favor ingrese un correo electr\u00f3nico nuevo e intente de nuevo, o si olvido la contrase\u00f1a use la opci\u00f3n \"Olvide mi contrase\u00f1a\".",
"MessageThankYouForConnectSignUp": "Gracias por registrarse a Emby Connect. Un correo electr\u00f3nico sera enviado a su direcci\u00f3n con instrucciones de como confirmar su nueva cuenta. Por favor confirme la cuente y regrese aqu\u00ed para iniciar sesi\u00f3n.", "MessageThankYouForConnectSignUp": "Gracias por registrarse a Emby Connect. Un correo electr\u00f3nico sera enviado a su direcci\u00f3n con instrucciones de como confirmar su nueva cuenta. Por favor confirme la cuente y regrese aqu\u00ed para iniciar sesi\u00f3n.",
"Share": "Share",
"HeaderShare": "Compartir", "HeaderShare": "Compartir",
"ButtonShareHelp": "Compartir paginas web que contengan informaci\u00f3n sobre los medios con redes sociales. Los archivos de los medios nunca son compartidos p\u00fablicamente.", "ButtonShareHelp": "Compartir paginas web que contengan informaci\u00f3n sobre los medios con redes sociales. Los archivos de los medios nunca son compartidos p\u00fablicamente.",
"ButtonShare": "Compartir", "ButtonShare": "Compartir",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "\u00bfSab\u00eda que con Emby Premier, puede mejorar su experiencia con caracter\u00edsticas como Modo Cine?", "MessageDidYouKnowCinemaMode": "\u00bfSab\u00eda que con Emby Premier, puede mejorar su experiencia con caracter\u00edsticas como Modo Cine?",
"MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.", "MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.",
"OptionEnableDisplayMirroring": "Habilitar duplicaci\u00f3n de pantalla", "OptionEnableDisplayMirroring": "Habilitar duplicaci\u00f3n de pantalla",
"HeaderSyncRequiresSupporterMembership": "Sinc requiere de una Membres\u00eda de Aficionado",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sinc requiere conectarse a un Servidor Emby con una suscripci\u00f3n activa de Emby Premier.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sinc requiere conectarse a un Servidor Emby con una suscripci\u00f3n activa de Emby Premier.",
"ErrorValidatingSupporterInfo": "Ha ocurrido un error al validar su informaci\u00f3n de Emby Premier. Por favor int\u00e9ntelo nuevamente m\u00e1s tarde.", "ErrorValidatingSupporterInfo": "Ha ocurrido un error al validar su informaci\u00f3n de Emby Premier. Por favor int\u00e9ntelo nuevamente m\u00e1s tarde.",
"LabelLocalSyncStatusValue": "Estado: {0}", "LabelLocalSyncStatusValue": "Estado: {0}",
@ -2347,7 +2356,13 @@
"Yesterday": "Ayer", "Yesterday": "Ayer",
"DownloadImagesInAdvanceWarning": "Descargar todas las im\u00e1genes por adelantado resultar\u00e1 en un tiempo m\u00e1s largo para escanear la biblioteca.", "DownloadImagesInAdvanceWarning": "Descargar todas las im\u00e1genes por adelantado resultar\u00e1 en un tiempo m\u00e1s largo para escanear la biblioteca.",
"MetadataSettingChangeHelp": "Cambiar los ajustes de metadata afectar\u00e1 al contenido nuevo a\u00f1adido a partir de ahora. Para actualizar el contenido existente, abra la pantalla de detalles y haga clic en actualizar, o realice actualizaciones masivas usando el administrador de metadata.", "MetadataSettingChangeHelp": "Cambiar los ajustes de metadata afectar\u00e1 al contenido nuevo a\u00f1adido a partir de ahora. Para actualizar el contenido existente, abra la pantalla de detalles y haga clic en actualizar, o realice actualizaciones masivas usando el administrador de metadata.",
"LabelTitle": "Title:", "LabelTitle": "Titulo:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Titulo original:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Titulo para ordenar:",
"OptionConvertRecordingPreserveAudio": "Conserve el audio original cuando convierta grabaciones.",
"OptionConvertRecordingPreserveAudioHelp": "Esto proveer\u00e1 mejor audio pero podr\u00eda requerir transcodificar durante la reproducci\u00f3n en algunos dispositivos.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Salir", "LabelExit": "Salir",
"LabelVisitCommunity": "Visitar la comunidad", "LabelVisitCommunity": "Visitar la comunidad",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configurar contrase\u00f1a", "ButtonConfigurePinCode": "Configurar contrase\u00f1a",
"HeaderAdultsReadHere": "Adultos Leer Aqui!", "HeaderAdultsReadHere": "Adultos Leer Aqui!",
"RegisterWithPayPal": "Registrese con PayPal", "RegisterWithPayPal": "Registrese con PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba", "HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba",
"LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:", "LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:",
"LabelSyncTempPathHelp": "Especificar una carpeta personalizada para archivos en sincronizaci\u00f3n. Medios convertidos creados durante el proceso de sincronizaci\u00f3n ser\u00e1n guardados aqu\u00ed.", "LabelSyncTempPathHelp": "Especificar una carpeta personalizada para archivos en sincronizaci\u00f3n. Medios convertidos creados durante el proceso de sincronizaci\u00f3n ser\u00e1n guardados aqu\u00ed.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Habilite presentaciones de peliculas mejoradas", "LabelEnableEnhancedMovies": "Habilite presentaciones de peliculas mejoradas",
"LabelEnableEnhancedMoviesHelp": "Cuando est\u00e9 habilitado, las pel\u00edculas ser\u00e1n mostradas como carpetas para incluir tr\u00e1ilers, extras, elenco, equipo y otros contenidos relacionados.", "LabelEnableEnhancedMoviesHelp": "Cuando est\u00e9 habilitado, las pel\u00edculas ser\u00e1n mostradas como carpetas para incluir tr\u00e1ilers, extras, elenco, equipo y otros contenidos relacionados.",
"HeaderSyncJobInfo": "Trabajo de Sync", "HeaderSyncJobInfo": "Trabajo de Sync",
"FolderTypeMixed": "Contenido mixto", "FolderTypeMixed": "Contenido mezclado",
"FolderTypeMovies": "Peliculas", "FolderTypeMovies": "Peliculas",
"FolderTypeMusic": "Musica", "FolderTypeMusic": "Musica",
"FolderTypeAdultVideos": "Videos para adultos",
"FolderTypePhotos": "Fotos", "FolderTypePhotos": "Fotos",
"FolderTypeMusicVideos": "Videos Musicales", "FolderTypeMusicVideos": "Videos Musicales",
"FolderTypeHomeVideos": "Videos caseros", "FolderTypeHomeVideos": "Videos caseros",
@ -202,7 +205,7 @@
"OptionAscending": "Ascendente", "OptionAscending": "Ascendente",
"OptionDescending": "Descendente", "OptionDescending": "Descendente",
"OptionRuntime": "Tiempo", "OptionRuntime": "Tiempo",
"OptionReleaseDate": "Fecha de Lanzamiento", "OptionReleaseDate": "Fecha de lanzamiento",
"OptionPlayCount": "N\u00famero de reproducc.", "OptionPlayCount": "N\u00famero de reproducc.",
"OptionDatePlayed": "Fecha de reproducci\u00f3n", "OptionDatePlayed": "Fecha de reproducci\u00f3n",
"OptionDateAdded": "A\u00f1adido el", "OptionDateAdded": "A\u00f1adido el",
@ -216,6 +219,7 @@
"OptionBudget": "Presupuesto", "OptionBudget": "Presupuesto",
"OptionRevenue": "Recaudaci\u00f3n", "OptionRevenue": "Recaudaci\u00f3n",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "A\u00f1os",
"OptionPosterCard": "Cartelera", "OptionPosterCard": "Cartelera",
"OptionBackdrop": "Imagen de fondo", "OptionBackdrop": "Imagen de fondo",
"OptionTimeline": "L\u00ednea de tiempo", "OptionTimeline": "L\u00ednea de tiempo",
@ -325,7 +329,7 @@
"OptionMetascore": "Metavalor", "OptionMetascore": "Metavalor",
"ButtonSelect": "Seleccionar", "ButtonSelect": "Seleccionar",
"ButtonGroupVersions": "Versiones de Grupo", "ButtonGroupVersions": "Versiones de Grupo",
"ButtonAddToCollection": "Agregar a la colecci\u00f3n", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Usando Pismo File Mount a trav\u00e9s de una licencia donada.", "PismoMessage": "Usando Pismo File Mount a trav\u00e9s de una licencia donada.",
"TangibleSoftwareMessage": "Utilizamos convertidores Java\/C# de Tangible Solutions a trav\u00e9s de una licencia donada.", "TangibleSoftwareMessage": "Utilizamos convertidores Java\/C# de Tangible Solutions a trav\u00e9s de una licencia donada.",
"HeaderCredits": "Cr\u00e9ditos", "HeaderCredits": "Cr\u00e9ditos",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Especificar las rutas personalizadas que desee. D\u00e9jelo en blanco para usar las rutas por defecto.", "LabelCustomPaths": "Especificar las rutas personalizadas que desee. D\u00e9jelo en blanco para usar las rutas por defecto.",
"LabelCachePath": "Ruta del cach\u00e9:", "LabelCachePath": "Ruta del cach\u00e9:",
"LabelCachePathHelp": "Especifica una ruta para los archivos del cach\u00e9 del servidor, como las im\u00e1genes. Vac\u00edo para usar la ruta por defecto.", "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:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Especifica una ruta para almacenar las grabaciones. Vac\u00edo para usar la ruta por defecto.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Ruta de im\u00e1genes:", "LabelImagesByNamePath": "Ruta de im\u00e1genes:",
"LabelImagesByNamePathHelp": "Especifique una localizaci\u00f3n personalizada para bajar imagenes de actor, genero y estudio.", "LabelImagesByNamePathHelp": "Especifique una localizaci\u00f3n personalizada para bajar imagenes de actor, genero y estudio.",
"LabelMetadataPath": "Ruta de Metadata:", "LabelMetadataPath": "Ruta de Metadata:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "N\u00famero de puerto WebSocket:", "LabelWebSocketPortNumber": "N\u00famero de puerto WebSocket:",
"LabelEnableAutomaticPortMap": "Habilitar asignaci\u00f3n de puertos autom\u00e1tico", "LabelEnableAutomaticPortMap": "Habilitar asignaci\u00f3n de puertos autom\u00e1tico",
"LabelEnableAutomaticPortMapHelp": "UPnP permite la configuraci\u00f3n del router para acceso externo de forma f\u00e1cil y autom\u00e1tica. Esto puede no funcionar en algunos modelos de routers.", "LabelEnableAutomaticPortMapHelp": "UPnP permite la configuraci\u00f3n del router para acceso externo de forma f\u00e1cil y autom\u00e1tica. Esto puede no funcionar en algunos modelos de routers.",
"LabelExternalDDNS": "Direccion externa del WAN:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Ponga aqui su DNS dinamico si tiene uno. las aplicaciones de Emby lo usar\u00e1n para conectarse remotamente. Deje en blanco para detecci\u00f3n autom\u00e1tica.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Continuar", "TabResume": "Continuar",
"TabWeather": "El tiempo", "TabWeather": "El tiempo",
"TitleAppSettings": "Opciones de la App", "TitleAppSettings": "Opciones de la App",
@ -582,12 +588,12 @@
"HeaderProgram": "Programa", "HeaderProgram": "Programa",
"HeaderClients": "Clientes", "HeaderClients": "Clientes",
"LabelCompleted": "Completado", "LabelCompleted": "Completado",
"LabelFailed": "Error", "LabelFailed": "Fallido",
"LabelSkipped": "Omitido", "LabelSkipped": "Omitido",
"HeaderEpisodeOrganization": "Organizaci\u00f3n de episodios", "HeaderEpisodeOrganization": "Organizaci\u00f3n de episodios",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Temporada", "LabelSeasonNumber": "Temporada n\u00famero:",
"LabelEpisodeNumber": "Episodio", "LabelEpisodeNumber": "N\u00famero de cap\u00edtulo:",
"LabelEndingEpisodeNumber": "N\u00famero episodio final:", "LabelEndingEpisodeNumber": "N\u00famero episodio final:",
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio", "LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
"OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n para futuros archivos con el mismo nombre", "OptionRememberOrganizeCorrection": "Guardar y aplicar esta correcci\u00f3n para futuros archivos con el mismo nombre",
@ -726,10 +732,12 @@
"TabNowPlaying": "Reproduciendo ahora", "TabNowPlaying": "Reproduciendo ahora",
"TabNavigation": "Navegaci\u00f3n", "TabNavigation": "Navegaci\u00f3n",
"TabControls": "Controles", "TabControls": "Controles",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Escenas", "ButtonScenes": "Escenas",
"ButtonSubtitles": "Subt\u00edtulos", "ButtonSubtitles": "Subt\u00edtulos",
"ButtonPreviousTrack": "Pista anterior", "ButtonPreviousTrack": "Pista anterior",
"ButtonNextTrack": "Pista siguiente", "ButtonNextTrack": "Pista siguiente",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Detener", "ButtonStop": "Detener",
"ButtonPause": "Pausa", "ButtonPause": "Pausa",
"ButtonNext": "Siguiente", "ButtonNext": "Siguiente",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "La lista de reproducci\u00f3n est\u00e1 vac\u00eda.",
"ButtonDismiss": "Descartar", "ButtonDismiss": "Descartar",
"ButtonMore": "M\u00e1s",
"ButtonEditOtherUserPreferences": "Editar este perfil, la imagen y los ajustes personales.", "ButtonEditOtherUserPreferences": "Editar este perfil, la imagen y los ajustes personales.",
"LabelChannelStreamQuality": "Calidad del canal online preferida:", "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.", "LabelChannelStreamQualityHelp": "En un entorno de bajo ancho de banda, limitar la calidad puede ayudar a asegurar una experiencia de streaming suave.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Sin identificar", "OptionUnidentified": "Sin identificar",
"OptionMissingParentalRating": "Sin clasificaci\u00f3n parental", "OptionMissingParentalRating": "Sin clasificaci\u00f3n parental",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Temporada 0", "OptionSeason0": "Temporada 0",
"LabelReport": "Informe:", "LabelReport": "Informe:",
"OptionReportSongs": "Canciones", "OptionReportSongs": "Canciones",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artistas", "OptionReportArtists": "Artistas",
"OptionReportAlbums": "Albumes", "OptionReportAlbums": "Albumes",
"OptionReportAdultVideos": "V\u00eddeos de adultos", "OptionReportAdultVideos": "V\u00eddeos de adultos",
"ButtonMore": "M\u00e1s", "ButtonMoreItems": "M\u00e1s",
"HeaderActivity": "Actividad", "HeaderActivity": "Actividad",
"ScheduledTaskStartedWithName": "{0} iniciado", "ScheduledTaskStartedWithName": "{0} iniciado",
"ScheduledTaskCancelledWithName": "{0} ha sido cancelado", "ScheduledTaskCancelledWithName": "{0} ha sido cancelado",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Reestablecer contrase\u00f1a", "HeaderPasswordReset": "Reestablecer contrase\u00f1a",
"HeaderParentalRatings": "Clasificaci\u00f3n parental", "HeaderParentalRatings": "Clasificaci\u00f3n parental",
"HeaderVideoTypes": "Tipos de v\u00eddeos", "HeaderVideoTypes": "Tipos de v\u00eddeos",
"HeaderYears": "A\u00f1os",
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin valoraciones o si son desconocidas:", "HeaderBlockItemsWithNoRating": "Bloquear contenido sin valoraciones o si son desconocidas:",
"LabelBlockContentWithTags": "Bloquear contenido sin etiquetas:", "LabelBlockContentWithTags": "Bloquear contenido sin etiquetas:",
"LabelEnableSingleImageInDidlLimit": "Limitar a una imagen integrada", "LabelEnableSingleImageInDidlLimit": "Limitar a una imagen integrada",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Pr\u00f3ximas pel\u00edculas", "HeaderUpcomingMovies": "Pr\u00f3ximas pel\u00edculas",
"HeaderUpcomingSports": "Pr\u00f3ximos deportes", "HeaderUpcomingSports": "Pr\u00f3ximos deportes",
"HeaderUpcomingPrograms": "Pr\u00f3ximos programas", "HeaderUpcomingPrograms": "Pr\u00f3ximos programas",
"ButtonMoreItems": "M\u00e1s",
"LabelShowLibraryTileNames": "Mostrar nombres de pesta\u00f1as de la biblioteca", "LabelShowLibraryTileNames": "Mostrar nombres de pesta\u00f1as de la biblioteca",
"LabelShowLibraryTileNamesHelp": "Determina si las etiquetas se mostrar\u00e1n debajo de las pesta\u00f1as de la biblioteca en la p\u00e1gina de inicio", "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", "OptionEnableTranscodingThrottle": "Activar estrangulamiento",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Se necesita una suscripci\u00f3n a Emby Premiere para poder crear grabaciones autom\u00e1ticas.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Se necesita una suscripci\u00f3n a Emby Premiere para poder crear grabaciones autom\u00e1ticas.",
"HeaderSetupTVGuide": "Configurar gu\u00eda de TV", "HeaderSetupTVGuide": "Configurar gu\u00eda de TV",
"LabelDataProvider": "Proveedor de datos:", "LabelDataProvider": "Proveedor de datos:",
"OptionSendRecordingsToAutoOrganize": "Activar organizaci\u00f3n autom\u00e1tica para las nuevas grabaciones", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Las nuevas grabaciones se enviar\u00e1n al organizador autom\u00e1tico y se importar\u00e1n a tu biblioteca.", "OptionSendRecordingsToAutoOrganizeHelp": "Las nuevas grabaciones se enviar\u00e1n al organizador autom\u00e1tico y se importar\u00e1n a tu biblioteca.",
"HeaderDefaultPadding": "Relleno por defecto", "HeaderDefaultPadding": "Relleno por defecto",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subt\u00edtulos", "HeaderSubtitles": "Subt\u00edtulos",
"HeaderVideos": "V\u00eddeos", "HeaderVideos": "V\u00eddeos",
"OptionEnableVideoFrameAnalysis": "Activar an\u00e1lisis fotograma a fotograma", "OptionEnableVideoFrameAnalysis": "Activar an\u00e1lisis fotograma a fotograma",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Pistas de Audio",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Poistu", "LabelExit": "Poistu",
"LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4", "LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Quitter", "LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9", "LabelVisitCommunity": "Visiter la Communaut\u00e9",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Quitter", "LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9", "LabelVisitCommunity": "Visiter la Communaut\u00e9",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Titre:", "LabelTitle": "Titre:",
"LabelOriginalTitle": "Titre Original:", "LabelOriginalTitle": "Titre Original:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Quitter", "LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9", "LabelVisitCommunity": "Visiter la Communaut\u00e9",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configurer le code PIN", "ButtonConfigurePinCode": "Configurer le code PIN",
"HeaderAdultsReadHere": "Section r\u00e9serv\u00e9e aux adultes!", "HeaderAdultsReadHere": "Section r\u00e9serv\u00e9e aux adultes!",
"RegisterWithPayPal": "S'enregistrer avec PayPal", "RegisterWithPayPal": "S'enregistrer avec PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours", "HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours",
"LabelSyncTempPath": "R\u00e9pertoire de fichiers temporaires :", "LabelSyncTempPath": "R\u00e9pertoire de fichiers temporaires :",
"LabelSyncTempPathHelp": "Sp\u00e9cifiez un r\u00e9pertoire de travail pour la synchronisation. Les fichiers r\u00e9sultant de la conversion de m\u00e9dias au cours du processus de synchronisation seront stock\u00e9s ici.", "LabelSyncTempPathHelp": "Sp\u00e9cifiez un r\u00e9pertoire de travail pour la synchronisation. Les fichiers r\u00e9sultant de la conversion de m\u00e9dias au cours du processus de synchronisation seront stock\u00e9s ici.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Activer le mode d'affichage am\u00e9lior\u00e9 des films", "LabelEnableEnhancedMovies": "Activer le mode d'affichage am\u00e9lior\u00e9 des films",
"LabelEnableEnhancedMoviesHelp": "Lorsque ce mode est activ\u00e9, les films seront affich\u00e9s comme des dossiers et incluront les bandes-annonces, les bonus, l'\u00e9quipe de tournage et les autre contenus li\u00e9s.", "LabelEnableEnhancedMoviesHelp": "Lorsque ce mode est activ\u00e9, les films seront affich\u00e9s comme des dossiers et incluront les bandes-annonces, les bonus, l'\u00e9quipe de tournage et les autre contenus li\u00e9s.",
"HeaderSyncJobInfo": "T\u00e2che de synchronisation", "HeaderSyncJobInfo": "T\u00e2che de synchronisation",
"FolderTypeMixed": "Contenu m\u00e9lang\u00e9", "FolderTypeMixed": "Contenus m\u00e9lang\u00e9s",
"FolderTypeMovies": "Films", "FolderTypeMovies": "Films",
"FolderTypeMusic": "Musique", "FolderTypeMusic": "Musique",
"FolderTypeAdultVideos": "Vid\u00e9os Adultes",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Vid\u00e9os Musical", "FolderTypeMusicVideos": "Vid\u00e9os Musical",
"FolderTypeHomeVideos": "Vid\u00e9os personnelles", "FolderTypeHomeVideos": "Vid\u00e9os personnelles",
@ -202,7 +205,7 @@
"OptionAscending": "Ascendant", "OptionAscending": "Ascendant",
"OptionDescending": "Descendant", "OptionDescending": "Descendant",
"OptionRuntime": "Dur\u00e9e", "OptionRuntime": "Dur\u00e9e",
"OptionReleaseDate": "Date de sortie", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Nombre de lectures", "OptionPlayCount": "Nombre de lectures",
"OptionDatePlayed": "Date lu", "OptionDatePlayed": "Date lu",
"OptionDateAdded": "Date d'ajout", "OptionDateAdded": "Date d'ajout",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Recettes", "OptionRevenue": "Recettes",
"OptionPoster": "Affiche", "OptionPoster": "Affiche",
"HeaderYears": "Ann\u00e9es",
"OptionPosterCard": "Carte Affiche", "OptionPosterCard": "Carte Affiche",
"OptionBackdrop": "Image d'arri\u00e8re-plan", "OptionBackdrop": "Image d'arri\u00e8re-plan",
"OptionTimeline": "Chronologie", "OptionTimeline": "Chronologie",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "S\u00e9lectionner", "ButtonSelect": "S\u00e9lectionner",
"ButtonGroupVersions": "Versions des groupes", "ButtonGroupVersions": "Versions des groupes",
"ButtonAddToCollection": "Ajouter \u00e0 une collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilisation de \"Pismo File Mount\" par une licence fournie.", "PismoMessage": "Utilisation de \"Pismo File Mount\" par une licence fournie.",
"TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.", "TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.",
"HeaderCredits": "Cr\u00e9dits", "HeaderCredits": "Cr\u00e9dits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Sp\u00e9cifier des chemins d'acc\u00e8s personnalis\u00e9s. Laissez vide pour conserver les chemins d'acc\u00e8s par d\u00e9faut.", "LabelCustomPaths": "Sp\u00e9cifier des chemins d'acc\u00e8s personnalis\u00e9s. Laissez vide pour conserver les chemins d'acc\u00e8s par d\u00e9faut.",
"LabelCachePath": "Chemin du cache :", "LabelCachePath": "Chemin du cache :",
"LabelCachePathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les fichier temporaires du serveur, comme par exemple les images. Laissez vide pour utiliser la valeur par d\u00e9faut.", "LabelCachePathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les fichier temporaires du serveur, comme par exemple les images. Laissez vide pour utiliser la valeur par d\u00e9faut.",
"LabelRecordingPath": "Enregistrement de l'adresse :", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Pr\u00e9cisez un endroit personnalis\u00e9 pour la sauvegarde des enregistrements. Laissez vide pour utiliser l'endroit par d\u00e9faut du serveur.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "R\u00e9pertoire de stockage des images t\u00e9l\u00e9charg\u00e9es :", "LabelImagesByNamePath": "R\u00e9pertoire de stockage des images t\u00e9l\u00e9charg\u00e9es :",
"LabelImagesByNamePathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les images t\u00e9l\u00e9charg\u00e9es d'acteurs, artistes, genre, et studios .", "LabelImagesByNamePathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les images t\u00e9l\u00e9charg\u00e9es d'acteurs, artistes, genre, et studios .",
"LabelMetadataPath": "Chemin des m\u00e9tadonn\u00e9es :", "LabelMetadataPath": "Chemin des m\u00e9tadonn\u00e9es :",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Num\u00e9ro de port \"Web socket\":", "LabelWebSocketPortNumber": "Num\u00e9ro de port \"Web socket\":",
"LabelEnableAutomaticPortMap": "Autoriser le mapping automatique de port", "LabelEnableAutomaticPortMap": "Autoriser le mapping automatique de port",
"LabelEnableAutomaticPortMapHelp": "Essayer de mapper automatiquement le port public au port local via UPnP. Cela peut ne pas fonctionner avec certains mod\u00e8les de routeurs.", "LabelEnableAutomaticPortMapHelp": "Essayer de mapper automatiquement le port public au port local via UPnP. Cela peut ne pas fonctionner avec certains mod\u00e8les de routeurs.",
"LabelExternalDDNS": "Adresse WAN externe :", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Si vous avez un DNS dynamique, entrez le ici. Les applications Emby l'utiliseront pour se connecter \u00e0 distance. Laissez vide pour conserver la d\u00e9tection automatique.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Reprendre", "TabResume": "Reprendre",
"TabWeather": "M\u00e9t\u00e9o", "TabWeather": "M\u00e9t\u00e9o",
"TitleAppSettings": "Param\u00e8tre de l'application", "TitleAppSettings": "Param\u00e8tre de l'application",
@ -582,12 +588,12 @@
"HeaderProgram": "Programme", "HeaderProgram": "Programme",
"HeaderClients": "Clients", "HeaderClients": "Clients",
"LabelCompleted": "Termin\u00e9 avec succ\u00e8s", "LabelCompleted": "Termin\u00e9 avec succ\u00e8s",
"LabelFailed": "\u00c9chou\u00e9", "LabelFailed": "Failed",
"LabelSkipped": "Saut\u00e9", "LabelSkipped": "Saut\u00e9",
"HeaderEpisodeOrganization": "Organisation des \u00e9pisodes", "HeaderEpisodeOrganization": "Organisation des \u00e9pisodes",
"LabelSeries": "S\u00e9ries :", "LabelSeries": "Series:",
"LabelSeasonNumber": "Num\u00e9ro de saison", "LabelSeasonNumber": "Num\u00e9ro de la saison:",
"LabelEpisodeNumber": "Num\u00e9ro d'\u00e9pisode", "LabelEpisodeNumber": "Num\u00e9ro de l'\u00e9pisode:",
"LabelEndingEpisodeNumber": "Num\u00e9ro d'\u00e9pisode final:", "LabelEndingEpisodeNumber": "Num\u00e9ro d'\u00e9pisode final:",
"LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes", "LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes",
"OptionRememberOrganizeCorrection": "Enregistrer et appliquer cette correction aux fichiers futurs avec des noms similaires", "OptionRememberOrganizeCorrection": "Enregistrer et appliquer cette correction aux fichiers futurs avec des noms similaires",
@ -726,10 +732,12 @@
"TabNowPlaying": "Lecture en cours", "TabNowPlaying": "Lecture en cours",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Contr\u00f4les", "TabControls": "Contr\u00f4les",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Sc\u00e8nes", "ButtonScenes": "Sc\u00e8nes",
"ButtonSubtitles": "Sous-titres", "ButtonSubtitles": "Sous-titres",
"ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente", "ButtonPreviousTrack": "Piste Pr\u00e9c\u00e9dente",
"ButtonNextTrack": "Piste suivante", "ButtonNextTrack": "Piste suivante",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Arr\u00eat", "ButtonStop": "Arr\u00eat",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Suivant", "ButtonNext": "Suivant",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Les listes de lectures vous permettent de cr\u00e9er des listes de contenus \u00e0 lire en continu en une fois. Pour ajouter un \u00e9l\u00e9ment \u00e0 la liste, faire un clic droit ou appuyer et maintenez, puis s\u00e9lectionnez Ajouter \u00e0 la liste de lecture", "MessageNoPlaylistsAvailable": "Les listes de lectures vous permettent de cr\u00e9er des listes de contenus \u00e0 lire en continu en une fois. Pour ajouter un \u00e9l\u00e9ment \u00e0 la liste, faire un clic droit ou appuyer et maintenez, puis s\u00e9lectionnez Ajouter \u00e0 la liste de lecture",
"MessageNoPlaylistItemsAvailable": "Cette liste de lecture est actuellement vide.", "MessageNoPlaylistItemsAvailable": "Cette liste de lecture est actuellement vide.",
"ButtonDismiss": "Annuler", "ButtonDismiss": "Annuler",
"ButtonMore": "Plus",
"ButtonEditOtherUserPreferences": "Modifier ce profil utilisateur, son avatar et ses pr\u00e9f\u00e9rences personnelles.", "ButtonEditOtherUserPreferences": "Modifier ce profil utilisateur, son avatar et ses pr\u00e9f\u00e9rences personnelles.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "Avec une bande passante faible, limiter la qualit\u00e9 garantit un confort d'utilisation du streaming.", "LabelChannelStreamQualityHelp": "Avec une bande passante faible, limiter la qualit\u00e9 garantit un confort d'utilisation du streaming.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Non identifi\u00e9", "OptionUnidentified": "Non identifi\u00e9",
"OptionMissingParentalRating": "Note de contr\u00f4le parental manquante", "OptionMissingParentalRating": "Note de contr\u00f4le parental manquante",
"OptionStub": "Coupure", "OptionStub": "Coupure",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Saison 0", "OptionSeason0": "Saison 0",
"LabelReport": "Rapport:", "LabelReport": "Rapport:",
"OptionReportSongs": "Chansons", "OptionReportSongs": "Chansons",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artistes", "OptionReportArtists": "Artistes",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Vid\u00e9os adultes", "OptionReportAdultVideos": "Vid\u00e9os adultes",
"ButtonMore": "Plus", "ButtonMoreItems": "Plus",
"HeaderActivity": "Activit\u00e9", "HeaderActivity": "Activit\u00e9",
"ScheduledTaskStartedWithName": "{0} a commenc\u00e9", "ScheduledTaskStartedWithName": "{0} a commenc\u00e9",
"ScheduledTaskCancelledWithName": "{0} a \u00e9t\u00e9 annul\u00e9", "ScheduledTaskCancelledWithName": "{0} a \u00e9t\u00e9 annul\u00e9",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Mot de passe r\u00e9initialis\u00e9", "HeaderPasswordReset": "Mot de passe r\u00e9initialis\u00e9",
"HeaderParentalRatings": "Note parentale", "HeaderParentalRatings": "Note parentale",
"HeaderVideoTypes": "Types de vid\u00e9o", "HeaderVideoTypes": "Types de vid\u00e9o",
"HeaderYears": "Ann\u00e9es",
"HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classement inconnues ou n'en disposant pas:", "HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classement inconnues ou n'en disposant pas:",
"LabelBlockContentWithTags": "Bloquer le contenu comportant les tags suivants :", "LabelBlockContentWithTags": "Bloquer le contenu comportant les tags suivants :",
"LabelEnableSingleImageInDidlLimit": "Limiter \u00e0 une seule image int\u00e9gr\u00e9e", "LabelEnableSingleImageInDidlLimit": "Limiter \u00e0 une seule image int\u00e9gr\u00e9e",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Films \u00e0 venir", "HeaderUpcomingMovies": "Films \u00e0 venir",
"HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir", "HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir",
"HeaderUpcomingPrograms": "Programmes \u00e0 venir", "HeaderUpcomingPrograms": "Programmes \u00e0 venir",
"ButtonMoreItems": "Plus",
"LabelShowLibraryTileNames": "Voir les noms des affiches de la biblioth\u00e8que", "LabelShowLibraryTileNames": "Voir les noms des affiches de la biblioth\u00e8que",
"LabelShowLibraryTileNamesHelp": "D\u00e9termine si les noms doivent \u00eatre affich\u00e9s en dessous des affiches de la biblioth\u00e8que sur la page d'accueil", "LabelShowLibraryTileNamesHelp": "D\u00e9termine si les noms doivent \u00eatre affich\u00e9s en dessous des affiches de la biblioth\u00e8que sur la page d'accueil",
"OptionEnableTranscodingThrottle": "Activer le throttling", "OptionEnableTranscodingThrottle": "Activer le throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Une souscription Emby Premiere active est n\u00e9cessaire pour cr\u00e9er des enregistrements automatiques de s\u00e9ries.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Une souscription Emby Premiere active est n\u00e9cessaire pour cr\u00e9er des enregistrements automatiques de s\u00e9ries.",
"HeaderSetupTVGuide": "Configuration du Guide TV", "HeaderSetupTVGuide": "Configuration du Guide TV",
"LabelDataProvider": "Fournisseur de donn\u00e9es :", "LabelDataProvider": "Fournisseur de donn\u00e9es :",
"OptionSendRecordingsToAutoOrganize": "Activer l'auto-organisation pour les nouveaux enregistrements", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Les nouveaux enregistrements seront envoy\u00e9s au service d'auto-organisation et import\u00e9s dans votre biblioth\u00e8que de m\u00e9dias.", "OptionSendRecordingsToAutoOrganizeHelp": "Les nouveaux enregistrements seront envoy\u00e9s au service d'auto-organisation et import\u00e9s dans votre biblioth\u00e8que de m\u00e9dias.",
"HeaderDefaultPadding": "Temporisation par d\u00e9faut", "HeaderDefaultPadding": "Temporisation par d\u00e9faut",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Sous-titres", "HeaderSubtitles": "Sous-titres",
"HeaderVideos": "Vid\u00e9os", "HeaderVideos": "Vid\u00e9os",
"OptionEnableVideoFrameAnalysis": "Activer l'analyse vid\u00e9o image par image", "OptionEnableVideoFrameAnalysis": "Activer l'analyse vid\u00e9o image par image",
@ -1592,7 +1601,7 @@
"LabelEpisode": "\u00c9pisode", "LabelEpisode": "\u00c9pisode",
"Series": "Series", "Series": "Series",
"LabelStopping": "En cours d'arr\u00eat", "LabelStopping": "En cours d'arr\u00eat",
"LabelCancelled": "(annul\u00e9)", "LabelCancelled": "Cancelled",
"ButtonDownload": "T\u00e9l\u00e9chargement", "ButtonDownload": "T\u00e9l\u00e9chargement",
"SyncJobStatusQueued": "Mis en file d'attente", "SyncJobStatusQueued": "Mis en file d'attente",
"SyncJobStatusConverting": "Conversion en cours", "SyncJobStatusConverting": "Conversion en cours",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-organisation", "TabAutoOrganize": "Auto-organisation",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Aide", "TabHelp": "Aide",
"ButtonFullscreen": "Basculer en plein \u00e9cran",
"ButtonAudioTracks": "Pistes audio",
"ButtonQuality": "Qualit\u00e9", "ButtonQuality": "Qualit\u00e9",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "S\u00e9lectionnez le lecteur", "HeaderSelectPlayer": "S\u00e9lectionnez le lecteur",
@ -1898,13 +1905,13 @@
"HeaderParentalRating": "Classification parentale", "HeaderParentalRating": "Classification parentale",
"HeaderReleaseDate": "Date de sortie ", "HeaderReleaseDate": "Date de sortie ",
"HeaderDateAdded": "Date d'ajout", "HeaderDateAdded": "Date d'ajout",
"HeaderSeries": "S\u00e9ries", "HeaderSeries": "S\u00e9ries :",
"HeaderSeason": "Saison", "HeaderSeason": "Saison",
"HeaderSeasonNumber": "Num\u00e9ro de saison", "HeaderSeasonNumber": "Num\u00e9ro de saison",
"HeaderNetwork": "R\u00e9seau", "HeaderNetwork": "R\u00e9seau",
"HeaderYear": "Ann\u00e9e", "HeaderYear": "Ann\u00e9e :",
"HeaderGameSystem": "Plateforme de jeu", "HeaderGameSystem": "Plateforme de jeu",
"HeaderPlayers": "Lecteurs", "HeaderPlayers": "Lecteurs :",
"HeaderEmbeddedImage": "Image int\u00e9gr\u00e9e", "HeaderEmbeddedImage": "Image int\u00e9gr\u00e9e",
"HeaderTrack": "Piste", "HeaderTrack": "Piste",
"HeaderDisc": "Disque", "HeaderDisc": "Disque",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Jeux", "HeaderGames": "Jeux",
"HeaderBooks": "Livres", "HeaderBooks": "Livres",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Saisons", "HeaderSeasons": "Saisons",
"HeaderTracks": "Pistes", "HeaderTracks": "Pistes",
"HeaderItems": "El\u00e9ments", "HeaderItems": "El\u00e9ments",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Revue compl\u00e8te :", "LabelFullReview": "Revue compl\u00e8te :",
"LabelShortRatingDescription": "Evaluation courte:", "LabelShortRatingDescription": "Evaluation courte:",
"OptionIRecommendThisItem": "Je recommande cet article", "OptionIRecommendThisItem": "Je recommande cet article",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Voir les m\u00e9dias ajout\u00e9s r\u00e9cemment, les prochains \u00e9pisodes et bien plus. Les cercles verts indiquent le nombre d'\u00e9l\u00e9ments que vous n'avez pas vu.", "WebClientTourContent": "Voir les m\u00e9dias ajout\u00e9s r\u00e9cemment, les prochains \u00e9pisodes et bien plus. Les cercles verts indiquent le nombre d'\u00e9l\u00e9ments que vous n'avez pas vu.",
"WebClientTourMovies": "Lire les films, bandes-annonces et plus depuis n'importe quel appareil avec un navigateur Web", "WebClientTourMovies": "Lire les films, bandes-annonces et plus depuis n'importe quel appareil avec un navigateur Web",
"WebClientTourMouseOver": "Laisser la souris au dessus des posters pour un acc\u00e8s rapide aux informations essentiels", "WebClientTourMouseOver": "Laisser la souris au dessus des posters pour un acc\u00e8s rapide aux informations essentiels",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "Ce nom d'utilisateur est d\u00e9j\u00e0 utilis\u00e9. Veuillez en choisir un autre et r\u00e9essayer.", "ErrorMessageUsernameInUse": "Ce nom d'utilisateur est d\u00e9j\u00e0 utilis\u00e9. Veuillez en choisir un autre et r\u00e9essayer.",
"ErrorMessageEmailInUse": "Cette adresse email est d\u00e9j\u00e0 utilis\u00e9e. Veuillez en saisir une autre et r\u00e9essayer, ou bien utiliser la fonction du mot de passe oubli\u00e9.", "ErrorMessageEmailInUse": "Cette adresse email est d\u00e9j\u00e0 utilis\u00e9e. Veuillez en saisir une autre et r\u00e9essayer, ou bien utiliser la fonction du mot de passe oubli\u00e9.",
"MessageThankYouForConnectSignUp": "Merci de vous \u00eatre inscrits sur Emby Connect. Un email va vous \u00eatre envoy\u00e9, avec les instructions pour confirmer votre nouveau compte. Merci de confirmer ce compte puis de revenir \u00e0 cet endroit pour vous connecter.", "MessageThankYouForConnectSignUp": "Merci de vous \u00eatre inscrits sur Emby Connect. Un email va vous \u00eatre envoy\u00e9, avec les instructions pour confirmer votre nouveau compte. Merci de confirmer ce compte puis de revenir \u00e0 cet endroit pour vous connecter.",
"Share": "Share",
"HeaderShare": "Partager", "HeaderShare": "Partager",
"ButtonShareHelp": "Partager un page web contenant les informations sur les m\u00e9dias \u00e0 travers les m\u00e9dias sociaux. Les fichiers de m\u00e9dias ne sont jamais partag\u00e9s publiquement.", "ButtonShareHelp": "Partager un page web contenant les informations sur les m\u00e9dias \u00e0 travers les m\u00e9dias sociaux. Les fichiers de m\u00e9dias ne sont jamais partag\u00e9s publiquement.",
"ButtonShare": "Partager", "ButtonShare": "Partager",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Saviez-vous qu'avec Emby Premi\u00e8re, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur gr\u00e2ce \u00e0 des fonctionnalit\u00e9s comme le Mode Cin\u00e9ma ?", "MessageDidYouKnowCinemaMode": "Saviez-vous qu'avec Emby Premi\u00e8re, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur gr\u00e2ce \u00e0 des fonctionnalit\u00e9s comme le Mode Cin\u00e9ma ?",
"MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.", "MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.",
"OptionEnableDisplayMirroring": "Activer la recopie d'\u00e9cran", "OptionEnableDisplayMirroring": "Activer la recopie d'\u00e9cran",
"HeaderSyncRequiresSupporterMembership": "La synchronisation n\u00e9cessite un abonnement comme supporteur",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync n\u00e9cessite une connexion avec un serveur Emby et une souscription Emby Premiere active.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync n\u00e9cessite une connexion avec un serveur Emby et une souscription Emby Premiere active.",
"ErrorValidatingSupporterInfo": "Une erreur s'est produite lors de la validation de vos informations Emby Premiere. Veuillez r\u00e9essayer plus tard.", "ErrorValidatingSupporterInfo": "Une erreur s'est produite lors de la validation de vos informations Emby Premiere. Veuillez r\u00e9essayer plus tard.",
"LabelLocalSyncStatusValue": "Status : {0}", "LabelLocalSyncStatusValue": "Status : {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Verlasse", "LabelExit": "Verlasse",
"LabelVisitCommunity": "Bsuech d'Community", "LabelVisitCommunity": "Bsuech d'Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Konfigurier de Pin Code", "ButtonConfigurePinCode": "Konfigurier de Pin Code",
"HeaderAdultsReadHere": "Erwachseni bitte do lese!", "HeaderAdultsReadHere": "Erwachseni bitte do lese!",
"RegisterWithPayPal": "Registrier di mit PayPal", "RegisterWithPayPal": "Registrier di mit PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste", "HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste",
"LabelSyncTempPath": "Pfad f\u00f6r tempor\u00e4ri Date:", "LabelSyncTempPath": "Pfad f\u00f6r tempor\u00e4ri Date:",
"LabelSyncTempPathHelp": "Gib en eigene Arbetsordner f\u00f6r d'Synchronisierig a. Konvertierti Medie werded w\u00e4hrend em Sync-Prozess det gspeichered.", "LabelSyncTempPathHelp": "Gib en eigene Arbetsordner f\u00f6r d'Synchronisierig a. Konvertierti Medie werded w\u00e4hrend em Sync-Prozess det gspeichered.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Aktivier erwiiterti Filmasichte", "LabelEnableEnhancedMovies": "Aktivier erwiiterti Filmasichte",
"LabelEnableEnhancedMoviesHelp": "Falls aktiviert, werded Film als ganzi Ordner inkl Trailer, Extras wie Casting & Crew und anderi wichtigi Date azeigt.", "LabelEnableEnhancedMoviesHelp": "Falls aktiviert, werded Film als ganzi Ordner inkl Trailer, Extras wie Casting & Crew und anderi wichtigi Date azeigt.",
"HeaderSyncJobInfo": "Sync Job", "HeaderSyncJobInfo": "Sync Job",
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Verschiedeni Sache",
"FolderTypeMovies": "Film", "FolderTypeMovies": "Film",
"FolderTypeMusic": "Musig", "FolderTypeMusic": "Musig",
"FolderTypeAdultVideos": "Erwachseni Film",
"FolderTypePhotos": "F\u00f6teli", "FolderTypePhotos": "F\u00f6teli",
"FolderTypeMusicVideos": "Musigvideos", "FolderTypeMusicVideos": "Musigvideos",
"FolderTypeHomeVideos": "Heimvideos", "FolderTypeHomeVideos": "Heimvideos",
@ -202,7 +205,7 @@
"OptionAscending": "Ufstiigend", "OptionAscending": "Ufstiigend",
"OptionDescending": "Abstiigend", "OptionDescending": "Abstiigend",
"OptionRuntime": "Laufziit", "OptionRuntime": "Laufziit",
"OptionReleaseDate": "Release Ziit:", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Z\u00e4hler", "OptionPlayCount": "Z\u00e4hler",
"OptionDatePlayed": "Abgspellt am", "OptionDatePlayed": "Abgspellt am",
"OptionDateAdded": "Dezue gf\u00fcegt am", "OptionDateAdded": "Dezue gf\u00fcegt am",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "iinahme", "OptionRevenue": "iinahme",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Postercharte", "OptionPosterCard": "Postercharte",
"OptionBackdrop": "Hindergrund", "OptionBackdrop": "Hindergrund",
"OptionTimeline": "Ziitlinie", "OptionTimeline": "Ziitlinie",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4", "LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4",
"LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4", "LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "\u05ea\u05d4\u05e0\u05d4 \u05de 14 \u05d9\u05de\u05d9 \u05e0\u05e1\u05d9\u05d5\u05df \u05d7\u05d9\u05e0\u05dd", "HeaderEnjoyDayTrial": "\u05ea\u05d4\u05e0\u05d4 \u05de 14 \u05d9\u05de\u05d9 \u05e0\u05e1\u05d9\u05d5\u05df \u05d7\u05d9\u05e0\u05dd",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Enable enhanced movie displays", "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
"HeaderSyncJobInfo": "Sync Job", "HeaderSyncJobInfo": "Sync Job",
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "\u05ea\u05d5\u05db\u05df \u05de\u05e2\u05d5\u05e8\u05d1",
"FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "\u05ea\u05e7\u05e6\u05d9\u05d1", "OptionBudget": "\u05ea\u05e7\u05e6\u05d9\u05d1",
"OptionRevenue": "\u05d4\u05db\u05e0\u05e1\u05d5\u05ea", "OptionRevenue": "\u05d4\u05db\u05e0\u05e1\u05d5\u05ea",
"OptionPoster": "\u05e4\u05d5\u05e1\u05d8\u05e8", "OptionPoster": "\u05e4\u05d5\u05e1\u05d8\u05e8",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2", "OptionBackdrop": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2",
"OptionTimeline": "\u05e6\u05d9\u05e8 \u05d6\u05de\u05df", "OptionTimeline": "\u05e6\u05d9\u05e8 \u05d6\u05de\u05df",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "\u05d1\u05d7\u05e8", "ButtonSelect": "\u05d1\u05d7\u05e8",
"ButtonGroupVersions": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea", "ButtonGroupVersions": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "\u05d0\u05e4\u05e9\u05e8 \u05d8\u05e2\u05d9\u05e0\u05ea \u05e7\u05d1\u05e6\u05d9 Pismo \u05d3\u05e8\u05da \u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05ea\u05e8\u05d5\u05de\u05d4.", "PismoMessage": "\u05d0\u05e4\u05e9\u05e8 \u05d8\u05e2\u05d9\u05e0\u05ea \u05e7\u05d1\u05e6\u05d9 Pismo \u05d3\u05e8\u05da \u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05ea\u05e8\u05d5\u05de\u05d4.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05d4\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d4\u05e8\u05e6\u05d5\u05d9\u05d9\u05dd. \u05d4\u05e9\u05d0\u05e8 \u05e9\u05d3\u05d5\u05ea \u05e8\u05d9\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc.", "LabelCustomPaths": "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05d4\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d4\u05e8\u05e6\u05d5\u05d9\u05d9\u05dd. \u05d4\u05e9\u05d0\u05e8 \u05e9\u05d3\u05d5\u05ea \u05e8\u05d9\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc.",
"LabelCachePath": "\u05e0\u05ea\u05d9\u05d1 cache:", "LabelCachePath": "\u05e0\u05ea\u05d9\u05d1 cache:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "\u05e0\u05ea\u05d9\u05d1 \u05d4\u05e7\u05dc\u05d8\u05d5\u05ea", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "\u05e0\u05ea\u05d9\u05d1 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea Images by name:", "LabelImagesByNamePath": "\u05e0\u05ea\u05d9\u05d1 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea Images by name:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "\u05e0\u05ea\u05d9\u05d1 Metadata:", "LabelMetadataPath": "\u05e0\u05ea\u05d9\u05d1 Metadata:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "\u05e4\u05d5\u05e8\u05d8 Web socket:", "LabelWebSocketPortNumber": "\u05e4\u05d5\u05e8\u05d8 Web socket:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "\u05d4\u05de\u05e9\u05da", "TabResume": "\u05d4\u05de\u05e9\u05da",
"TabWeather": "\u05de\u05d6\u05d2 \u05d0\u05d5\u05d5\u05d9\u05e8", "TabWeather": "\u05de\u05d6\u05d2 \u05d0\u05d5\u05d5\u05d9\u05e8",
"TitleAppSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d4", "TitleAppSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d4",
@ -582,12 +588,12 @@
"HeaderProgram": "\u05ea\u05d5\u05db\u05e0\u05d4", "HeaderProgram": "\u05ea\u05d5\u05db\u05e0\u05d4",
"HeaderClients": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", "HeaderClients": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
"LabelCompleted": "\u05d4\u05d5\u05e9\u05dc\u05dd", "LabelCompleted": "\u05d4\u05d5\u05e9\u05dc\u05dd",
"LabelFailed": "\u05e0\u05db\u05e9\u05dc", "LabelFailed": "Failed",
"LabelSkipped": "\u05d3\u05d5\u05dc\u05d2", "LabelSkipped": "\u05d3\u05d5\u05dc\u05d2",
"HeaderEpisodeOrganization": "\u05d0\u05d9\u05e8\u05d2\u05d5\u05df \u05e4\u05e8\u05e7\u05d9\u05dd", "HeaderEpisodeOrganization": "\u05d0\u05d9\u05e8\u05d2\u05d5\u05df \u05e4\u05e8\u05e7\u05d9\u05dd",
"LabelSeries": "\u05e1\u05d3\u05e8\u05d4", "LabelSeries": "Series:",
"LabelSeasonNumber": "\u05de\u05e1\u05e4\u05e8 \u05e2\u05d5\u05e0\u05d4", "LabelSeasonNumber": "\u05de\u05e1\u05e4\u05e8 \u05e2\u05d5\u05e0\u05d4:",
"LabelEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e4\u05e8\u05e7", "LabelEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e4\u05e8\u05e7:",
"LabelEndingEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e1\u05d9\u05d5\u05dd \u05e4\u05e8\u05e7:", "LabelEndingEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e1\u05d9\u05d5\u05dd \u05e4\u05e8\u05e7:",
"LabelEndingEpisodeNumberHelp": "\u05d4\u05db\u05e8\u05d7\u05d9 \u05e8\u05e7 \u05e2\u05d1\u05d5\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e9\u05dc \u05e4\u05e8\u05e7\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd", "LabelEndingEpisodeNumberHelp": "\u05d4\u05db\u05e8\u05d7\u05d9 \u05e8\u05e7 \u05e2\u05d1\u05d5\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e9\u05dc \u05e4\u05e8\u05e7\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "\u05d4\u05d1\u05d0", "ButtonNext": "\u05d4\u05d1\u05d0",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd", "HeaderUpcomingMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4",
"HeaderSeries": "Series", "HeaderSeries": "\u05e1\u05d3\u05e8\u05d4",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "\u05e9\u05e0\u05d4",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "\u05e9\u05dd \u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05ea\u05e4\u05d5\u05e1. \u05d0\u05e0\u05d0 \u05d1\u05d7\u05e8 \u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9 \u05d7\u05d3\u05e9 \u05d5\u05e0\u05e1\u05d4 \u05e9\u05d5\u05d1", "ErrorMessageUsernameInUse": "\u05e9\u05dd \u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05ea\u05e4\u05d5\u05e1. \u05d0\u05e0\u05d0 \u05d1\u05d7\u05e8 \u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9 \u05d7\u05d3\u05e9 \u05d5\u05e0\u05e1\u05d4 \u05e9\u05d5\u05d1",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "\u05e9\u05ea\u05e3", "HeaderShare": "\u05e9\u05ea\u05e3",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "\u05e9\u05ea\u05e3", "ButtonShare": "\u05e9\u05ea\u05e3",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Izlaz", "LabelExit": "Izlaz",
"LabelVisitCommunity": "Posjeti zajednicu", "LabelVisitCommunity": "Posjeti zajednicu",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Bud\u017eet", "OptionBudget": "Bud\u017eet",
"OptionRevenue": "Prihod", "OptionRevenue": "Prihod",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Pozadina", "OptionBackdrop": "Pozadina",
"OptionTimeline": "Vremenska linija", "OptionTimeline": "Vremenska linija",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Odaberi", "ButtonSelect": "Odaberi",
"ButtonGroupVersions": "Verzija grupe", "ButtonGroupVersions": "Verzija grupe",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Port Web priklju\u010dka:", "LabelWebSocketPortNumber": "Port Web priklju\u010dka:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Nastavi", "TabResume": "Nastavi",
"TabWeather": "Vrijeme", "TabWeather": "Vrijeme",
"TitleAppSettings": "Postavke aplikacije", "TitleAppSettings": "Postavke aplikacije",
@ -586,8 +592,8 @@
"LabelSkipped": "Presko\u010deno", "LabelSkipped": "Presko\u010deno",
"HeaderEpisodeOrganization": "Organizacija epizoda", "HeaderEpisodeOrganization": "Organizacija epizoda",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Broj sezone:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Broj epizode:",
"LabelEndingEpisodeNumber": "Broj kraja epizode:", "LabelEndingEpisodeNumber": "Broj kraja epizode:",
"LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda", "LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Sad se izvodi", "TabNowPlaying": "Sad se izvodi",
"TabNavigation": "Navigacija", "TabNavigation": "Navigacija",
"TabControls": "Kontrole", "TabControls": "Kontrole",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scene", "ButtonScenes": "Scene",
"ButtonSubtitles": "Titlovi", "ButtonSubtitles": "Titlovi",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pauza", "ButtonPause": "Pauza",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Kil\u00e9p\u00e9s", "LabelExit": "Kil\u00e9p\u00e9s",
"LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g", "LabelVisitCommunity": "K\u00f6z\u00f6ss\u00e9g",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -35,7 +36,7 @@
"LabelEnableAutomaticPortMapping": "Automatikus port mapping enged\u00e9lyez\u00e9se", "LabelEnableAutomaticPortMapping": "Automatikus port mapping enged\u00e9lyez\u00e9se",
"LabelEnableAutomaticPortMappingHelp": "Az UPnP enged\u00e9lyezi az automatikus routert be\u00e1ll\u00edt\u00e1st a k\u00f6nny\u0171 t\u00e1voli el\u00e9r\u00e9shez. Nem mindegyik routerrel m\u0171k\u00f6dik.", "LabelEnableAutomaticPortMappingHelp": "Az UPnP enged\u00e9lyezi az automatikus routert be\u00e1ll\u00edt\u00e1st a k\u00f6nny\u0171 t\u00e1voli el\u00e9r\u00e9shez. Nem mindegyik routerrel m\u0171k\u00f6dik.",
"HeaderTermsOfService": "Emby felhaszn\u00e1l\u00e1si felt\u00e9telek", "HeaderTermsOfService": "Emby felhaszn\u00e1l\u00e1si felt\u00e9telek",
"MessagePleaseAcceptTermsOfService": "K\u00e9rlek fogadd el a felhaszn\u00e1l\u00e1s \u00e9s felt\u00e9teleket \u00e9s az adatv\u00e9delmi szab\u00e1lyzatot a folytat\u00e1shoz", "MessagePleaseAcceptTermsOfService": "K\u00e9rlek fogadd el a felhaszn\u00e1l\u00e1s \u00e9s felt\u00e9teleket \u00e9s az adatv\u00e9delmi szab\u00e1lyzatot a folytat\u00e1shoz.",
"OptionIAcceptTermsOfService": "Elfogadom a felhaszn\u00e1l\u00e1si felt\u00e9teleket", "OptionIAcceptTermsOfService": "Elfogadom a felhaszn\u00e1l\u00e1si felt\u00e9teleket",
"ButtonPrivacyPolicy": "Adatv\u00e9delmi szab\u00e1lyzat", "ButtonPrivacyPolicy": "Adatv\u00e9delmi szab\u00e1lyzat",
"ButtonTermsOfService": "Felhaszn\u00e1l\u00e1si felt\u00e9telek", "ButtonTermsOfService": "Felhaszn\u00e1l\u00e1si felt\u00e9telek",
@ -47,7 +48,7 @@
"LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
"ButtonConvertMedia": "M\u00e9dia konvert\u00e1l\u00e1s", "ButtonConvertMedia": "M\u00e9dia konvert\u00e1l\u00e1s",
"ButtonOrganize": "Rendez\u00e9s", "ButtonOrganize": "Rendez\u00e9s",
"LinkedToEmbyConnect": "Linked to Emby Connect", "LinkedToEmbyConnect": "Kapcsol\u00f3dva az Emby Connect-hez",
"HeaderSupporterBenefits": "Emby Premiere el\u0151ny\u00f6k", "HeaderSupporterBenefits": "Emby Premiere el\u0151ny\u00f6k",
"HeaderAddUser": "\u00daj felhaszn\u00e1l\u00f3", "HeaderAddUser": "\u00daj felhaszn\u00e1l\u00f3",
"LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Pin k\u00f3d be\u00e1ll\u00edt\u00e1sa", "ButtonConfigurePinCode": "Pin k\u00f3d be\u00e1ll\u00edt\u00e1sa",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Regisztr\u00e1ci\u00f3 PayPal haszn\u00e1lat\u00e1val", "RegisterWithPayPal": "Regisztr\u00e1ci\u00f3 PayPal haszn\u00e1lat\u00e1val",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Ideiglenes f\u00e1jlok \u00fatvonala:", "LabelSyncTempPath": "Ideiglenes f\u00e1jlok \u00fatvonala:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Vegyes tartalom", "FolderTypeMixed": "Vegyes tartalom",
"FolderTypeMovies": "Filmek", "FolderTypeMovies": "Filmek",
"FolderTypeMusic": "Zen\u00e9k", "FolderTypeMusic": "Zen\u00e9k",
"FolderTypeAdultVideos": "Feln\u0151tt vide\u00f3k",
"FolderTypePhotos": "F\u00e9nyk\u00e9pek", "FolderTypePhotos": "F\u00e9nyk\u00e9pek",
"FolderTypeMusicVideos": "Zenei vide\u00f3k", "FolderTypeMusicVideos": "Zenei vide\u00f3k",
"FolderTypeHomeVideos": "H\u00e1zi vide\u00f3k", "FolderTypeHomeVideos": "H\u00e1zi vide\u00f3k",
@ -202,7 +205,7 @@
"OptionAscending": "N\u00f6vekv\u0151", "OptionAscending": "N\u00f6vekv\u0151",
"OptionDescending": "Cs\u00f6kken\u0151", "OptionDescending": "Cs\u00f6kken\u0151",
"OptionRuntime": "J\u00e1t\u00e9kid\u0151", "OptionRuntime": "J\u00e1t\u00e9kid\u0151",
"OptionReleaseDate": "Megjelen\u00e9s d\u00e1tuma", "OptionReleaseDate": "Megjelen\u00e9s D\u00e1tuma",
"OptionPlayCount": "Play Count", "OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played", "OptionDatePlayed": "Date Played",
"OptionDateAdded": "Hozz\u00e1adva", "OptionDateAdded": "Hozz\u00e1adva",
@ -216,6 +219,7 @@
"OptionBudget": "K\u00f6lts\u00e9g", "OptionBudget": "K\u00f6lts\u00e9g",
"OptionRevenue": "Bev\u00e9tel", "OptionRevenue": "Bev\u00e9tel",
"OptionPoster": "Poszter", "OptionPoster": "Poszter",
"HeaderYears": "\u00c9v",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "V\u00e1lassz", "ButtonSelect": "V\u00e1lassz",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Hozz\u00e1ad\u00e1s a gy\u0171jtem\u00e9nyhez", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Gyors\u00edt\u00f3t\u00e1r \u00fatvonal:", "LabelCachePath": "Gyors\u00edt\u00f3t\u00e1r \u00fatvonal:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Felv\u00e9tel \u00fatvonala:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metaadat \u00fatvonal:", "LabelMetadataPath": "Metaadat \u00fatvonal:",
@ -527,7 +533,7 @@
"HeaderSystemDlnaProfiles": "System Profiles", "HeaderSystemDlnaProfiles": "System Profiles",
"CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.",
"SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.",
"TitleDashboard": "Dashboard", "TitleDashboard": "Vez\u00e9rl\u0151pult",
"TabHome": "Kezd\u0151lap", "TabHome": "Kezd\u0151lap",
"TabInfo": "Inf\u00f3", "TabInfo": "Inf\u00f3",
"HeaderLinks": "Linkek", "HeaderLinks": "Linkek",
@ -535,7 +541,7 @@
"LinkCommunity": "Community", "LinkCommunity": "Community",
"LinkGithub": "Github", "LinkGithub": "Github",
"LinkApi": "Api", "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation", "LinkApiDocumentation": "Api dokument\u00e1ci\u00f3",
"LabelFriendlyServerName": "Friendly server name:", "LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
"LabelPreferredDisplayLanguage": "Preferred display language:", "LabelPreferredDisplayLanguage": "Preferred display language:",
@ -557,10 +563,10 @@
"LabelHttpsPort": "Local https port number:", "LabelHttpsPort": "Local https port number:",
"LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.", "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Automatikus port mapping enged\u00e9lyez\u00e9se",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Folytat\u00e1s", "TabResume": "Folytat\u00e1s",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -570,7 +576,7 @@
"LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time",
"LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time",
"LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable",
"TitleAutoOrganize": "Auto-Organize", "TitleAutoOrganize": "Auto-Rendez\u00e9s",
"TabActivityLog": "Activity Log", "TabActivityLog": "Activity Log",
"TabSmartMatches": "Smart Matches", "TabSmartMatches": "Smart Matches",
"TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog",
@ -582,12 +588,12 @@
"HeaderProgram": "Program", "HeaderProgram": "Program",
"HeaderClients": "Clients", "HeaderClients": "Clients",
"LabelCompleted": "Completed", "LabelCompleted": "Completed",
"LabelFailed": "Failed", "LabelFailed": "Sikertelen",
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Sorozatok:",
"LabelSeasonNumber": "\u00c9vad sz\u00e1ma", "LabelSeasonNumber": "\u00c9vad sz\u00e1ma:",
"LabelEpisodeNumber": "Epiz\u00f3d sz\u00e1ma", "LabelEpisodeNumber": "Epiz\u00f3d sz\u00e1ma:",
"LabelEndingEpisodeNumber": "Befejez\u0151 epiz\u00f3d sz\u00e1ma:", "LabelEndingEpisodeNumber": "Befejez\u0151 epiz\u00f3d sz\u00e1ma:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,14 +732,16 @@
"TabNowPlaying": "Most j\u00e1tszott", "TabNowPlaying": "Most j\u00e1tszott",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Vez\u00e9rl\u00e9s", "TabControls": "Vez\u00e9rl\u00e9s",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Jelenetek", "ButtonScenes": "Jelenetek",
"ButtonSubtitles": "Feliratok", "ButtonSubtitles": "Feliratok",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "El\u0151z\u0151 s\u00e1v",
"ButtonNextTrack": "K\u00f6vetkez\u0151 s\u00e1v", "ButtonNextTrack": "K\u00f6vetkez\u0151 s\u00e1v",
"ButtonAudioTracks": "Audi\u00f3 S\u00e1vok",
"ButtonStop": "Le\u00e1ll\u00edt", "ButtonStop": "Le\u00e1ll\u00edt",
"ButtonPause": "Sz\u00fcnet", "ButtonPause": "Sz\u00fcnet",
"ButtonNext": "K\u00f6vetkez\u0151", "ButtonNext": "K\u00f6vetkez\u0151",
"ButtonPrevious": "Previous", "ButtonPrevious": "El\u0151z\u0151",
"LabelGroupMoviesIntoCollections": "Filmek csoportos\u00edt\u00e1sa gy\u0171jtem\u00e9nyekbe", "LabelGroupMoviesIntoCollections": "Filmek csoportos\u00edt\u00e1sa gy\u0171jtem\u00e9nyekbe",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
"NotificationOptionPluginError": "B\u0151v\u00edtm\u00e9ny hiba", "NotificationOptionPluginError": "B\u0151v\u00edtm\u00e9ny hiba",
@ -896,7 +904,7 @@
"HeaderLatestChannelItems": "Latest Channel Items", "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None", "OptionNone": "None",
"HeaderLiveTv": "Live TV", "HeaderLiveTv": "Live TV",
"HeaderReports": "Jelent\u00e9sek", "HeaderReports": "Napl\u00f3k",
"HeaderMetadataManager": "Metaadat Kezel\u0151", "HeaderMetadataManager": "Metaadat Kezel\u0151",
"HeaderSettings": "Be\u00e1ll\u00edt\u00e1sok", "HeaderSettings": "Be\u00e1ll\u00edt\u00e1sok",
"MessageLoadingChannels": "Loading channel content...", "MessageLoadingChannels": "Loading channel content...",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "T\u00f6bbi",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -997,7 +1006,7 @@
"LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimer": "Login disclaimer:",
"LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.",
"OptionList": "Lista", "OptionList": "Lista",
"TabDashboard": "Dashboard", "TabDashboard": "Vez\u00e9rl\u0151pult",
"TitleServer": "Server", "TitleServer": "Server",
"LabelCache": "Cache:", "LabelCache": "Cache:",
"LabelLogs": "Logs:", "LabelLogs": "Logs:",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Hi\u00e1nyz\u00f3 korhat\u00e1r besorol\u00e1s", "OptionMissingParentalRating": "Hi\u00e1nyz\u00f3 korhat\u00e1r besorol\u00e1s",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Jelent\u00e9s:", "LabelReport": "Jelent\u00e9s:",
"OptionReportSongs": "Dalok", "OptionReportSongs": "Dalok",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "M\u0171v\u00e9szek", "OptionReportArtists": "M\u0171v\u00e9szek",
"OptionReportAlbums": "Albumok", "OptionReportAlbums": "Albumok",
"OptionReportAdultVideos": "Feln\u0151tt vide\u00f3k", "OptionReportAdultVideos": "Feln\u0151tt vide\u00f3k",
"ButtonMore": "T\u00f6bbi", "ButtonMoreItems": "T\u00f6bbi",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} elkezdve", "ScheduledTaskStartedWithName": "{0} elkezdve",
"ScheduledTaskCancelledWithName": "{0} megszak\u00edtva", "ScheduledTaskCancelledWithName": "{0} megszak\u00edtva",
@ -1137,14 +1147,14 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders", "LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Felv\u00e9telek", "ViewTypeLiveTvRecordingGroups": "Felv\u00e9telek",
"ViewTypeLiveTvChannels": "Csatorn\u00e1k", "ViewTypeLiveTvChannels": "Csatorn\u00e1k",
"LabelEasyPinCode": "Easy pin code:", "LabelEasyPinCode": "Pin k\u00f3d:",
"EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
"LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
"LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Jelsz\u00f3", "HeaderPassword": "Jelsz\u00f3",
"HeaderLocalAccess": "Local Access", "HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order", "HeaderViewOrder": "View Order",
"ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetEasyPassword": "Pin k\u00f3d vissza\u00e1ll\u00edt\u00e1sa",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps", "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
"HeaderPersonInfo": "Person Info", "HeaderPersonInfo": "Person Info",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.", "HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
@ -1285,11 +1295,11 @@
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:", "LabelNumberTrailerToPlay": "Number of trailers to play:",
"TitleDevices": "Eszk\u00f6z\u00f6k", "TitleDevices": "Eszk\u00f6z\u00f6k",
"TabCameraUpload": "Camera Upload", "TabCameraUpload": "Kamera Felt\u00f6lt\u00e9s",
"TabDevices": "Eszk\u00f6z\u00f6k", "TabDevices": "Eszk\u00f6z\u00f6k",
"HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.", "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.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.",
"LabelCameraUploadPath": "Camera upload path:", "LabelCameraUploadPath": "Kamera felt\u00f6lt\u00e9si \u00fatvonal:",
"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.", "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", "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
@ -1341,11 +1351,10 @@
"HeaderForgotPassword": "Elfelejtett Jelsz\u00f3", "HeaderForgotPassword": "Elfelejtett Jelsz\u00f3",
"TitleForgotPassword": "Elfelejtett Jelsz\u00f3", "TitleForgotPassword": "Elfelejtett Jelsz\u00f3",
"TitlePasswordReset": "Password Reset", "TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:", "LabelPasswordRecoveryPinCode": "Pin k\u00f3d:",
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Korhat\u00e1r besorol\u00e1s", "HeaderParentalRatings": "Korhat\u00e1r besorol\u00e1s",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "\u00c9v",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "K\u00f6zelg\u0151 Filmek", "HeaderUpcomingMovies": "K\u00f6zelg\u0151 Filmek",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "T\u00f6bbi",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Feliratok", "HeaderSubtitles": "Feliratok",
"HeaderVideos": "Vide\u00f3k", "HeaderVideos": "Vide\u00f3k",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1496,10 +1505,10 @@
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:", "LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
"LabelHardwareAccelerationType": "Hardware acceleration:", "LabelHardwareAccelerationType": "Hardware acceleration:",
"LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.",
"ButtonServerDashboard": "Server Dashboard", "ButtonServerDashboard": "Szerver Vez\u00e9rl\u0151pult",
"HeaderAdmin": "Admin", "HeaderAdmin": "Admin",
"ButtonSignOut": "Kijelentkez\u00e9s", "ButtonSignOut": "Kijelentkez\u00e9s",
"HeaderCameraUpload": "Camera Upload", "HeaderCameraUpload": "Kamera Felt\u00f6lt\u00e9s",
"SelectCameraUploadServers": "Upload camera photos to the following servers:", "SelectCameraUploadServers": "Upload camera photos to the following servers:",
"ButtonClear": "Clear", "ButtonClear": "Clear",
"LabelFolder": "Folder:", "LabelFolder": "Folder:",
@ -1536,7 +1545,7 @@
"PinCodeResetComplete": "The pin code has been reset.", "PinCodeResetComplete": "The pin code has been reset.",
"PasswordResetConfirmation": "Are you sure you wish to reset the password?", "PasswordResetConfirmation": "Are you sure you wish to reset the password?",
"PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?",
"HeaderPinCodeReset": "Reset Pin Code", "HeaderPinCodeReset": "Pin k\u00f3d vissza\u00e1ll\u00edt\u00e1sa",
"PasswordSaved": "Password saved.", "PasswordSaved": "Password saved.",
"PasswordMatchError": "Password and password confirmation must match.", "PasswordMatchError": "Password and password confirmation must match.",
"UninstallPluginHeader": "B\u0151v\u00edtm\u00e9ny Elt\u00e1vol\u00edt\u00e1sa", "UninstallPluginHeader": "B\u0151v\u00edtm\u00e9ny Elt\u00e1vol\u00edt\u00e1sa",
@ -1615,7 +1624,7 @@
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", "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}.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectServerDashboard": "\u00dcdv\u00f6z\u00f6llek az Emby Szerver Vez\u00e9rl\u0151pultj\u00e1ban",
"HeaderWelcomeToProjectWebClient": "Welcome to Emby", "HeaderWelcomeToProjectWebClient": "Welcome to Emby",
"ButtonTakeTheTour": "Take the tour", "ButtonTakeTheTour": "Take the tour",
"HeaderWelcomeBack": "Welcome back!", "HeaderWelcomeBack": "Welcome back!",
@ -1784,8 +1793,8 @@
"HeaderVideoQuality": "Vide\u00f3 min\u0151s\u00e9g", "HeaderVideoQuality": "Vide\u00f3 min\u0151s\u00e9g",
"MessageErrorPlayingVideo": "There was an error playing the video.", "MessageErrorPlayingVideo": "There was an error playing the video.",
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
"ButtonDashboard": "Dashboard", "ButtonDashboard": "Vez\u00e9rl\u0151pult",
"ButtonReports": "Jelent\u00e9sek", "ButtonReports": "Napl\u00f3k",
"ButtonMetadataManager": "Metaadat Kezel\u0151", "ButtonMetadataManager": "Metaadat Kezel\u0151",
"HeaderTime": "Time", "HeaderTime": "Time",
"HeaderAlbum": "Album", "HeaderAlbum": "Album",
@ -1816,7 +1825,7 @@
"MessageFileNotFound": "File not found.", "MessageFileNotFound": "File not found.",
"MessageFileReadError": "An error occurred reading this file.", "MessageFileReadError": "An error occurred reading this file.",
"ButtonNextPage": "K\u00f6vetkez\u0151 oldal", "ButtonNextPage": "K\u00f6vetkez\u0151 oldal",
"ButtonPreviousPage": "Previous Page", "ButtonPreviousPage": "El\u0151z\u0151 oldal",
"ButtonMoveLeft": "Move left", "ButtonMoveLeft": "Move left",
"ButtonMoveRight": "Move right", "ButtonMoveRight": "Move right",
"ButtonBrowseOnlineImages": "Browse online images", "ButtonBrowseOnlineImages": "Browse online images",
@ -1827,7 +1836,7 @@
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
"MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageValueNotCorrect": "The value entered is not correct. Please try again.",
"MessageItemSaved": "Item saved.", "MessageItemSaved": "Item saved.",
"MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "K\u00e9rlek fogadd el a felhaszn\u00e1l\u00e1si felt\u00e9teleket a folytat\u00e1shoz.",
"OptionOff": "Off", "OptionOff": "Off",
"OptionOn": "On", "OptionOn": "On",
"ButtonUninstall": "Elt\u00e1vol\u00edt\u00e1s", "ButtonUninstall": "Elt\u00e1vol\u00edt\u00e1s",
@ -1873,11 +1882,9 @@
"TabLibrary": "M\u00e9diat\u00e1r", "TabLibrary": "M\u00e9diat\u00e1r",
"TabDLNA": "DLNA", "TabDLNA": "DLNA",
"TabLiveTV": "Live TV", "TabLiveTV": "Live TV",
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Rendez\u00e9s",
"TabPlugins": "B\u0151v\u00edtm\u00e9nyek", "TabPlugins": "B\u0151v\u00edtm\u00e9nyek",
"TabHelp": "Seg\u00edts\u00e9g", "TabHelp": "Seg\u00edts\u00e9g",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audi\u00f3 s\u00e1vok",
"ButtonQuality": "Min\u0151s\u00e9g", "ButtonQuality": "Min\u0151s\u00e9g",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "V\u00e1lassz lej\u00e1tsz\u00f3t: ", "HeaderSelectPlayer": "V\u00e1lassz lej\u00e1tsz\u00f3t: ",
@ -1898,13 +1905,13 @@
"HeaderParentalRating": "Korhat\u00e1r besorol\u00e1s", "HeaderParentalRating": "Korhat\u00e1r besorol\u00e1s",
"HeaderReleaseDate": "Megjelen\u00e9s d\u00e1tuma", "HeaderReleaseDate": "Megjelen\u00e9s d\u00e1tuma",
"HeaderDateAdded": "Hozz\u00e1adva", "HeaderDateAdded": "Hozz\u00e1adva",
"HeaderSeries": "Series", "HeaderSeries": "Sorozatok:",
"HeaderSeason": "\u00c9vad", "HeaderSeason": "\u00c9vad",
"HeaderSeasonNumber": "\u00c9vad sz\u00e1ma", "HeaderSeasonNumber": "\u00c9vad sz\u00e1ma",
"HeaderNetwork": "H\u00e1l\u00f3zat", "HeaderNetwork": "H\u00e1l\u00f3zat",
"HeaderYear": "\u00c9v", "HeaderYear": "\u00c9v:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Be\u00e1gyazott k\u00e9p", "HeaderEmbeddedImage": "Be\u00e1gyazott k\u00e9p",
"HeaderTrack": "S\u00e1v", "HeaderTrack": "S\u00e1v",
"HeaderDisc": "Lemez", "HeaderDisc": "Lemez",
@ -1979,7 +1986,7 @@
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", "MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
"HeaderEmbyAccountRemoved": "Emby Account Removed", "HeaderEmbyAccountRemoved": "Emby Account Removed",
"MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.",
"TooltipLinkedToEmbyConnect": "Linked to Emby Connect", "TooltipLinkedToEmbyConnect": "Kapcsol\u00f3dva az Emby Connect-hez",
"HeaderUnrated": "Unrated", "HeaderUnrated": "Unrated",
"ValueDiscNumber": "Disc {0}", "ValueDiscNumber": "Disc {0}",
"HeaderUnknownDate": "Unknown Date", "HeaderUnknownDate": "Unknown Date",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albumok", "HeaderAlbums": "Albumok",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "\u00c9vad", "HeaderSeasons": "\u00c9vad",
"HeaderTracks": "S\u00e1vok", "HeaderTracks": "S\u00e1vok",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2130,7 +2139,7 @@
"DeviceLastUsedByUserName": "Last used by {0}", "DeviceLastUsedByUserName": "Last used by {0}",
"HeaderDeleteDevice": "Delete Device", "HeaderDeleteDevice": "Delete Device",
"DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.",
"LabelEnableCameraUploadFor": "Enable camera upload for:", "LabelEnableCameraUploadFor": "Kamera felt\u00f6lt\u00e9s enged\u00e9lyez\u00e9se a k\u00f6vetkez\u0151knek:",
"HeaderSelectUploadPath": "Select Upload Path", "HeaderSelectUploadPath": "Select Upload Path",
"LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.",
"ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Megoszt\u00e1s", "HeaderShare": "Megoszt\u00e1s",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Megoszt\u00e1s", "ButtonShare": "Megoszt\u00e1s",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2260,7 +2269,7 @@
"HeaderDisconnectFromPlayer": "Disconnect from Player", "HeaderDisconnectFromPlayer": "Disconnect from Player",
"ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?",
"ButtonYes": "Yes", "ButtonYes": "Yes",
"AddUser": "Add User", "AddUser": "\u00daj felhaszn\u00e1l\u00f3",
"ButtonNo": "No", "ButtonNo": "No",
"ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonRestorePreviousPurchase": "Restore Purchase",
"AlreadyPaid": "Already Paid?", "AlreadyPaid": "Already Paid?",
@ -2322,7 +2331,7 @@
"ButtonAddMissingData": "Add missing data only", "ButtonAddMissingData": "Add missing data only",
"ButtonFullRefresh": "Full refresh", "ButtonFullRefresh": "Full refresh",
"ValueExample": "1:00 PM", "ValueExample": "1:00 PM",
"ButtonGotIt": "Got It", "ButtonGotIt": "\u00c9rtettem",
"OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting",
"OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.",
"LabelFileOrUrl": "File or url:", "LabelFileOrUrl": "File or url:",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Keluar", "LabelExit": "Keluar",
"LabelVisitCommunity": "Kunjungi Komunitas", "LabelVisitCommunity": "Kunjungi Komunitas",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Atur kode pin", "ButtonConfigurePinCode": "Atur kode pin",
"HeaderAdultsReadHere": "Dewasa Baca Disini!", "HeaderAdultsReadHere": "Dewasa Baca Disini!",
"RegisterWithPayPal": "Registrasi menggunakan PayPal", "RegisterWithPayPal": "Registrasi menggunakan PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Nikmati percobaan gratis selama 14 hari", "HeaderEnjoyDayTrial": "Nikmati percobaan gratis selama 14 hari",
"LabelSyncTempPath": "Alamat file sementara:", "LabelSyncTempPath": "Alamat file sementara:",
"LabelSyncTempPathHelp": "Tentukan sendiri folder kerja sinkron. Media dikonversi diciptakan selama proses sinkronisasi akan disimpan di sini.", "LabelSyncTempPathHelp": "Tentukan sendiri folder kerja sinkron. Media dikonversi diciptakan selama proses sinkronisasi akan disimpan di sini.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Aktifkan menampilkan film ditingkatkan", "LabelEnableEnhancedMovies": "Aktifkan menampilkan film ditingkatkan",
"LabelEnableEnhancedMoviesHelp": "Saat diaktifkan, film akan ditampilkan sebagai folder untuk memasukkan trailer, ektra, pemain & kru, dan konten terkait lainnya.", "LabelEnableEnhancedMoviesHelp": "Saat diaktifkan, film akan ditampilkan sebagai folder untuk memasukkan trailer, ektra, pemain & kru, dan konten terkait lainnya.",
"HeaderSyncJobInfo": "Kerja Sinkron", "HeaderSyncJobInfo": "Kerja Sinkron",
"FolderTypeMixed": "Kontent Campuran", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Esci", "LabelExit": "Esci",
"LabelVisitCommunity": "Visita la Community", "LabelVisitCommunity": "Visita la Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configura codice pin", "ButtonConfigurePinCode": "Configura codice pin",
"HeaderAdultsReadHere": "Adulti leggete qui!", "HeaderAdultsReadHere": "Adulti leggete qui!",
"RegisterWithPayPal": "Registrati con PayPal", "RegisterWithPayPal": "Registrati con PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni", "HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni",
"LabelSyncTempPath": "Percorso file temporanei:", "LabelSyncTempPath": "Percorso file temporanei:",
"LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I file multimediali convertiti durante la sincronizzazione verranno memorizzati qui.", "LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I file multimediali convertiti durante la sincronizzazione verranno memorizzati qui.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "contenuto misto", "FolderTypeMixed": "contenuto misto",
"FolderTypeMovies": "Film", "FolderTypeMovies": "Film",
"FolderTypeMusic": "Musica", "FolderTypeMusic": "Musica",
"FolderTypeAdultVideos": "Video per adulti",
"FolderTypePhotos": "Foto", "FolderTypePhotos": "Foto",
"FolderTypeMusicVideos": "Video musicali", "FolderTypeMusicVideos": "Video musicali",
"FolderTypeHomeVideos": "Video personali", "FolderTypeHomeVideos": "Video personali",
@ -202,7 +205,7 @@
"OptionAscending": "Ascendente", "OptionAscending": "Ascendente",
"OptionDescending": "Discentente", "OptionDescending": "Discentente",
"OptionRuntime": "Durata", "OptionRuntime": "Durata",
"OptionReleaseDate": "Data di rilascio", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Visto N\u00b0", "OptionPlayCount": "Visto N\u00b0",
"OptionDatePlayed": "Visto il", "OptionDatePlayed": "Visto il",
"OptionDateAdded": "Aggiunto il", "OptionDateAdded": "Aggiunto il",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Recensione", "OptionRevenue": "Recensione",
"OptionPoster": "Locandina", "OptionPoster": "Locandina",
"HeaderYears": "Anni",
"OptionPosterCard": "Scheda locandina", "OptionPosterCard": "Scheda locandina",
"OptionBackdrop": "Sfondo", "OptionBackdrop": "Sfondo",
"OptionTimeline": "Cronologia", "OptionTimeline": "Cronologia",
@ -325,7 +329,7 @@
"OptionMetascore": "Punteggio", "OptionMetascore": "Punteggio",
"ButtonSelect": "Seleziona", "ButtonSelect": "Seleziona",
"ButtonGroupVersions": "Versione Gruppo", "ButtonGroupVersions": "Versione Gruppo",
"ButtonAddToCollection": "Aggiungi alla collezione", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Dona per avere una licenza di Pismo", "PismoMessage": "Dona per avere una licenza di Pismo",
"TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.", "TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.",
"HeaderCredits": "Crediti", "HeaderCredits": "Crediti",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specifica un percorso personalizzato.Lasciare vuoto per usare quello predefinito", "LabelCustomPaths": "Specifica un percorso personalizzato.Lasciare vuoto per usare quello predefinito",
"LabelCachePath": "Percorso Cache:", "LabelCachePath": "Percorso Cache:",
"LabelCachePathHelp": "Specificare un percorso personalizzato per i file della cache del server, ad esempio immagini. Lasciare vuoto per usare il server predefinito.", "LabelCachePathHelp": "Specificare un percorso personalizzato per i file della cache del server, ad esempio immagini. Lasciare vuoto per usare il server predefinito.",
"LabelRecordingPath": "Percorso di registrazione:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specificare un percorso personalizzato per salvare le registrazioni. Lasciare vuoto per usare il server predefinito.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Percorso immagini per nome:", "LabelImagesByNamePath": "Percorso immagini per nome:",
"LabelImagesByNamePathHelp": "Specificare un percorso personalizzato per le immagini di attori, artisti, generi e case cinematografiche scaricate.", "LabelImagesByNamePathHelp": "Specificare un percorso personalizzato per le immagini di attori, artisti, generi e case cinematografiche scaricate.",
"LabelMetadataPath": "Percorso dei file con i metadati:", "LabelMetadataPath": "Percorso dei file con i metadati:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Numero porta web socket:", "LabelWebSocketPortNumber": "Numero porta web socket:",
"LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte", "LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte",
"LabelEnableAutomaticPortMapHelp": "Tenta di mappare automaticamente la porta pubblica sulla porta locale tramite UPnP. Questo potrebbe non funzionare con alcuni modelli di router.", "LabelEnableAutomaticPortMapHelp": "Tenta di mappare automaticamente la porta pubblica sulla porta locale tramite UPnP. Questo potrebbe non funzionare con alcuni modelli di router.",
"LabelExternalDDNS": "Indirizzo WAN esterno", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Se hai un DNS dinamico inserisci l'indirizzo qui. Le app di Emby lo utilizzeranno nelle connessioni remote. Lascia il campo vuoto per sfruttare la rilevazione automatica", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Riprendi", "TabResume": "Riprendi",
"TabWeather": "Tempo", "TabWeather": "Tempo",
"TitleAppSettings": "Impostazioni delle app", "TitleAppSettings": "Impostazioni delle app",
@ -582,12 +588,12 @@
"HeaderProgram": "Programma", "HeaderProgram": "Programma",
"HeaderClients": "Dispositivi", "HeaderClients": "Dispositivi",
"LabelCompleted": "Completato", "LabelCompleted": "Completato",
"LabelFailed": "Fallito", "LabelFailed": "Failed",
"LabelSkipped": "Saltato", "LabelSkipped": "Saltato",
"HeaderEpisodeOrganization": "Organizzazione Episodi", "HeaderEpisodeOrganization": "Organizzazione Episodi",
"LabelSeries": "Serie:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Numero Stagione", "LabelSeasonNumber": "Numero Stagione:",
"LabelEpisodeNumber": "Episodio numero", "LabelEpisodeNumber": "Numero Episodio :",
"LabelEndingEpisodeNumber": "Numero ultimo episodio:", "LabelEndingEpisodeNumber": "Numero ultimo episodio:",
"LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio", "LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "In esecuzione", "TabNowPlaying": "In esecuzione",
"TabNavigation": "Navigazione", "TabNavigation": "Navigazione",
"TabControls": "Controlli", "TabControls": "Controlli",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scene", "ButtonScenes": "Scene",
"ButtonSubtitles": "Sottotitoli", "ButtonSubtitles": "Sottotitoli",
"ButtonPreviousTrack": "Traccia Precedente", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Traccia Successiva", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pausa", "ButtonPause": "Pausa",
"ButtonNext": "Prossimo", "ButtonNext": "Prossimo",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Playlist ti permettere di mettere in coda gli elementi da riprodurre.Usa il tasto destro o tap e tieni premuto quindi seleziona elemento da aggiungere", "MessageNoPlaylistsAvailable": "Playlist ti permettere di mettere in coda gli elementi da riprodurre.Usa il tasto destro o tap e tieni premuto quindi seleziona elemento da aggiungere",
"MessageNoPlaylistItemsAvailable": "Questa playlist al momento \u00e8 vuota", "MessageNoPlaylistItemsAvailable": "Questa playlist al momento \u00e8 vuota",
"ButtonDismiss": "Cancella", "ButtonDismiss": "Cancella",
"ButtonMore": "Piu",
"ButtonEditOtherUserPreferences": "Modifica questo utente di profilo, l'immagine e le preferenze personali.", "ButtonEditOtherUserPreferences": "Modifica questo utente di profilo, l'immagine e le preferenze personali.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In un ambiente a bassa larghezza di banda, limitando la qualit\u00e0 pu\u00f2 contribuire a garantire un'esperienza di streaming continuo.", "LabelChannelStreamQualityHelp": "In un ambiente a bassa larghezza di banda, limitando la qualit\u00e0 pu\u00f2 contribuire a garantire un'esperienza di streaming continuo.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Non identificata", "OptionUnidentified": "Non identificata",
"OptionMissingParentalRating": "Voto genitori mancante", "OptionMissingParentalRating": "Voto genitori mancante",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Stagione 0", "OptionSeason0": "Stagione 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Canzoni", "OptionReportSongs": "Canzoni",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Cantanti", "OptionReportArtists": "Cantanti",
"OptionReportAlbums": "Album", "OptionReportAlbums": "Album",
"OptionReportAdultVideos": "Video x adulti", "OptionReportAdultVideos": "Video x adulti",
"ButtonMore": "Piu", "ButtonMoreItems": "Dettagli",
"HeaderActivity": "Attivit\u00e0", "HeaderActivity": "Attivit\u00e0",
"ScheduledTaskStartedWithName": "{0} Avviati", "ScheduledTaskStartedWithName": "{0} Avviati",
"ScheduledTaskCancelledWithName": "{0} cancellati", "ScheduledTaskCancelledWithName": "{0} cancellati",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Reset della Password", "HeaderPasswordReset": "Reset della Password",
"HeaderParentalRatings": "Valutazioni genitori", "HeaderParentalRatings": "Valutazioni genitori",
"HeaderVideoTypes": "Tipi Video", "HeaderVideoTypes": "Tipi Video",
"HeaderYears": "Anni",
"HeaderBlockItemsWithNoRating": "Blocca contenuti sconosciuti o senza informazione", "HeaderBlockItemsWithNoRating": "Blocca contenuti sconosciuti o senza informazione",
"LabelBlockContentWithTags": "Blocco dei contenuti con le etichette:", "LabelBlockContentWithTags": "Blocco dei contenuti con le etichette:",
"LabelEnableSingleImageInDidlLimit": "Limitato a singola immagine incorporata", "LabelEnableSingleImageInDidlLimit": "Limitato a singola immagine incorporata",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Film in arrivo", "HeaderUpcomingMovies": "Film in arrivo",
"HeaderUpcomingSports": "Sport in arrivo", "HeaderUpcomingSports": "Sport in arrivo",
"HeaderUpcomingPrograms": "Programmi in arrivo", "HeaderUpcomingPrograms": "Programmi in arrivo",
"ButtonMoreItems": "Dettagli",
"LabelShowLibraryTileNames": "Mostra i nomi di file di libreria", "LabelShowLibraryTileNames": "Mostra i nomi di file di libreria",
"LabelShowLibraryTileNamesHelp": "Determina se le etichette vengono visualizzate sotto le locandine della libreria sulla home page", "LabelShowLibraryTileNamesHelp": "Determina se le etichette vengono visualizzate sotto le locandine della libreria sulla home page",
"OptionEnableTranscodingThrottle": "Abilita il throttling", "OptionEnableTranscodingThrottle": "Abilita il throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Un abbonamento a Emby Premiere \u00e8 necessario per creare registrazioni personalizzate delle serie tv", "MessageActiveSubscriptionRequiredSeriesRecordings": "Un abbonamento a Emby Premiere \u00e8 necessario per creare registrazioni personalizzate delle serie tv",
"HeaderSetupTVGuide": "Guida all'installazione TV", "HeaderSetupTVGuide": "Guida all'installazione TV",
"LabelDataProvider": "Fornitore di dati:", "LabelDataProvider": "Fornitore di dati:",
"OptionSendRecordingsToAutoOrganize": "Attiva Auto-Organizza per nuove registrazioni", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Le nuove registrazioni saranno inviati alla Auto-Organizzare caratteristica ed importato nella libreria multimediale.", "OptionSendRecordingsToAutoOrganizeHelp": "Le nuove registrazioni saranno inviati alla Auto-Organizzare caratteristica ed importato nella libreria multimediale.",
"HeaderDefaultPadding": "Imbottitura predefinito", "HeaderDefaultPadding": "Imbottitura predefinito",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Sottotitoli", "HeaderSubtitles": "Sottotitoli",
"HeaderVideos": "Video", "HeaderVideos": "Video",
"OptionEnableVideoFrameAnalysis": "Abilita fotogramma per fotogramma analisi video", "OptionEnableVideoFrameAnalysis": "Abilita fotogramma per fotogramma analisi video",
@ -1592,7 +1601,7 @@
"LabelEpisode": "Episodio", "LabelEpisode": "Episodio",
"Series": "Series", "Series": "Series",
"LabelStopping": "Sto fermando", "LabelStopping": "Sto fermando",
"LabelCancelled": "(cancellato)", "LabelCancelled": "Cancelled",
"ButtonDownload": "Download", "ButtonDownload": "Download",
"SyncJobStatusQueued": "In Coda", "SyncJobStatusQueued": "In Coda",
"SyncJobStatusConverting": "Conversione", "SyncJobStatusConverting": "Conversione",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Organizza Autom.", "TabAutoOrganize": "Organizza Autom.",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Aiuto", "TabHelp": "Aiuto",
"ButtonFullscreen": "Tutto Schermo",
"ButtonAudioTracks": "Tracce audio",
"ButtonQuality": "Qualit\u00e0", "ButtonQuality": "Qualit\u00e0",
"HeaderNotifications": "Notifiche", "HeaderNotifications": "Notifiche",
"HeaderSelectPlayer": "Utente selezionato :", "HeaderSelectPlayer": "Utente selezionato :",
@ -1895,14 +1902,14 @@
"HeaderResolution": "Risoluzione", "HeaderResolution": "Risoluzione",
"HeaderRuntime": "Durata", "HeaderRuntime": "Durata",
"HeaderCommunityRating": "Voto Comunit\u00e0", "HeaderCommunityRating": "Voto Comunit\u00e0",
"HeaderParentalRating": "Voto genitore", "HeaderParentalRating": "Valutazione parentale",
"HeaderReleaseDate": "Data Rilascio", "HeaderReleaseDate": "Data Rilascio",
"HeaderDateAdded": "Aggiunto il", "HeaderDateAdded": "Aggiunto il",
"HeaderSeries": "Serie", "HeaderSeries": "Serie:",
"HeaderSeason": "Stagione", "HeaderSeason": "Stagione",
"HeaderSeasonNumber": "Stagione Numero", "HeaderSeasonNumber": "Stagione Numero",
"HeaderNetwork": "Rete", "HeaderNetwork": "Rete",
"HeaderYear": "Anno", "HeaderYear": "Anno:",
"HeaderGameSystem": "Gioco Sistema", "HeaderGameSystem": "Gioco Sistema",
"HeaderPlayers": "Giocatori", "HeaderPlayers": "Giocatori",
"HeaderEmbeddedImage": "Immagine incorporata", "HeaderEmbeddedImage": "Immagine incorporata",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Album", "HeaderAlbums": "Album",
"HeaderGames": "Giochi", "HeaderGames": "Giochi",
"HeaderBooks": "Libri", "HeaderBooks": "Libri",
"HeaderEpisodes": "Episodi:",
"HeaderSeasons": "Stagioni", "HeaderSeasons": "Stagioni",
"HeaderTracks": "Traccia", "HeaderTracks": "Traccia",
"HeaderItems": "Elementi", "HeaderItems": "Elementi",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Recensione completa:", "LabelFullReview": "Recensione completa:",
"LabelShortRatingDescription": "Breve riassunto Valutazione:", "LabelShortRatingDescription": "Breve riassunto Valutazione:",
"OptionIRecommendThisItem": "Consiglio questo elemento", "OptionIRecommendThisItem": "Consiglio questo elemento",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Visualizza i file multimediali aggiunti di recente, i prossimi episodi, e altro ancora. I cerchi verdi indicano quanti oggetti unplayed avete.", "WebClientTourContent": "Visualizza i file multimediali aggiunti di recente, i prossimi episodi, e altro ancora. I cerchi verdi indicano quanti oggetti unplayed avete.",
"WebClientTourMovies": "Riprodurre filmati, trailer e altro da qualsiasi dispositivo con un browser web", "WebClientTourMovies": "Riprodurre filmati, trailer e altro da qualsiasi dispositivo con un browser web",
"WebClientTourMouseOver": "Tenete il mouse su ogni manifesto per un rapido accesso alle informazioni importanti", "WebClientTourMouseOver": "Tenete il mouse su ogni manifesto per un rapido accesso alle informazioni importanti",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "L' username \u00e8 gi\u00e0 usato. Per favore scegli un nuovo nome e riprova.", "ErrorMessageUsernameInUse": "L' username \u00e8 gi\u00e0 usato. Per favore scegli un nuovo nome e riprova.",
"ErrorMessageEmailInUse": "L'indirizzo email \u00e8 gi\u00e0 usato.Per favore inserisci un nuovo indirizzo email e riprova, o usa la funzione password dimenticata.", "ErrorMessageEmailInUse": "L'indirizzo email \u00e8 gi\u00e0 usato.Per favore inserisci un nuovo indirizzo email e riprova, o usa la funzione password dimenticata.",
"MessageThankYouForConnectSignUp": "Grazie per esserti registrato si Emby Connect. Ti verr\u00e0 invita un email al tuo indirizzo con le istruzioni su come confermare il tuo nuovo account. Per favore conferma il nuovo account e poi ritorna qui per fare il log in.", "MessageThankYouForConnectSignUp": "Grazie per esserti registrato si Emby Connect. Ti verr\u00e0 invita un email al tuo indirizzo con le istruzioni su come confermare il tuo nuovo account. Per favore conferma il nuovo account e poi ritorna qui per fare il log in.",
"Share": "Share",
"HeaderShare": "Condividi", "HeaderShare": "Condividi",
"ButtonShareHelp": "Condividi una pagina web contenente informazioni multimediali con i social media. I file multimediali non verranno mai condivisi pubblicamente.", "ButtonShareHelp": "Condividi una pagina web contenente informazioni multimediali con i social media. I file multimediali non verranno mai condivisi pubblicamente.",
"ButtonShare": "Condividi", "ButtonShare": "Condividi",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Lo sapevi che con Emby Premiere puoi migilorare la tua esperienza con funzionalit\u00e0 come la Modalit\u00e0 Cinema?", "MessageDidYouKnowCinemaMode": "Lo sapevi che con Emby Premiere puoi migilorare la tua esperienza con funzionalit\u00e0 come la Modalit\u00e0 Cinema?",
"MessageDidYouKnowCinemaMode2": "La Modalit\u00e0 Cinema ti d\u00e0 la vera una esperienza da cinema con trailers e intro personalizzati prima delle funzioni principali.", "MessageDidYouKnowCinemaMode2": "La Modalit\u00e0 Cinema ti d\u00e0 la vera una esperienza da cinema con trailers e intro personalizzati prima delle funzioni principali.",
"OptionEnableDisplayMirroring": "Abilita visualizzazione remota", "OptionEnableDisplayMirroring": "Abilita visualizzazione remota",
"HeaderSyncRequiresSupporterMembership": "Sync richiede un abbonamento Supporter",
"HeaderSyncRequiresSupporterMembershipAppVersion": "La sincronizzazione richiede la connessione con Emby Server, e un abbonamento Emby Premiere attivo.", "HeaderSyncRequiresSupporterMembershipAppVersion": "La sincronizzazione richiede la connessione con Emby Server, e un abbonamento Emby Premiere attivo.",
"ErrorValidatingSupporterInfo": "C'\u00e8 stato un errore nella convalida delle informazioni sul tuo abonamento Emby Premiere. Riprova pi\u00f9 tardi.", "ErrorValidatingSupporterInfo": "C'\u00e8 stato un errore nella convalida delle informazioni sul tuo abonamento Emby Premiere. Riprova pi\u00f9 tardi.",
"LabelLocalSyncStatusValue": "Stato {0}", "LabelLocalSyncStatusValue": "Stato {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u0428\u044b\u0493\u0443", "LabelExit": "\u0428\u044b\u0493\u0443",
"LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\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", "LabelGithub": "GitHub \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439\u0456",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "PIN-\u043a\u043e\u0434\u0442\u044b \u0442\u0435\u04a3\u0448\u0435\u0443", "ButtonConfigurePinCode": "PIN-\u043a\u043e\u0434\u0442\u044b \u0442\u0435\u04a3\u0448\u0435\u0443",
"HeaderAdultsReadHere": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0435\u0440, \u043c\u044b\u043d\u0430\u043d\u044b \u043e\u049b\u044b\u04a3\u044b\u0437!", "HeaderAdultsReadHere": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0435\u0440, \u043c\u044b\u043d\u0430\u043d\u044b \u043e\u049b\u044b\u04a3\u044b\u0437!",
"RegisterWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u0440\u043a\u0435\u043b\u0443", "RegisterWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u0440\u043a\u0435\u043b\u0443",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "\u0422\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u0443\u0434\u044b 14 \u043a\u04af\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0456\u0437", "HeaderEnjoyDayTrial": "\u0422\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u0443\u0434\u044b 14 \u043a\u04af\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0456\u0437",
"LabelSyncTempPath": "\u0423\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b \u0436\u043e\u043b\u044b:", "LabelSyncTempPath": "\u0423\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b \u0436\u043e\u043b\u044b:",
"LabelSyncTempPathHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u049b\u0430\u043b\u0442\u0430\u043d\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0441\u044b \u043e\u0440\u044b\u043d\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.", "LabelSyncTempPathHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u049b\u0430\u043b\u0442\u0430\u043d\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0441\u044b \u043e\u0440\u044b\u043d\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d", "FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d",
"FolderTypeMovies": "\u041a\u0438\u043d\u043e", "FolderTypeMovies": "\u041a\u0438\u043d\u043e",
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", "FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
"FolderTypeAdultVideos": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0456\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
"FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440", "FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440",
"FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440", "FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
"FolderTypeHomeVideos": "\u04ae\u0439 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456", "FolderTypeHomeVideos": "\u04ae\u0439 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456",
@ -216,6 +219,7 @@
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"OptionRevenue": "\u0422\u0430\u0431\u044b\u0441", "OptionRevenue": "\u0422\u0430\u0431\u044b\u0441",
"OptionPoster": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437", "OptionPoster": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437",
"HeaderYears": "\u0416\u044b\u043b\u0434\u0430\u0440",
"OptionPosterCard": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437-\u043a\u0430\u0440\u0442\u0430", "OptionPosterCard": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437-\u043a\u0430\u0440\u0442\u0430",
"OptionBackdrop": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442", "OptionBackdrop": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442",
"OptionTimeline": "\u0423\u0430\u049b\u044b\u0442 \u0448\u043a\u0430\u043b\u0430\u0441\u044b", "OptionTimeline": "\u0423\u0430\u049b\u044b\u0442 \u0448\u043a\u0430\u043b\u0430\u0441\u044b",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b", "OptionMetascore": "Metascore \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b",
"ButtonSelect": "\u0411\u04e9\u043b\u0435\u043a\u0442\u0435\u0443", "ButtonSelect": "\u0411\u04e9\u043b\u0435\u043a\u0442\u0435\u0443",
"ButtonGroupVersions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443", "ButtonGroupVersions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443",
"ButtonAddToCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Pismo File Mount \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.", "PismoMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Pismo File Mount \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.",
"TangibleSoftwareMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Tangible Solutions Java\/C# \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0433\u0456\u0448\u0442\u0435\u0440\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.", "TangibleSoftwareMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Tangible Solutions Java\/C# \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0433\u0456\u0448\u0442\u0435\u0440\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.",
"HeaderCredits": "\u049a\u04b1\u049b\u044b\u049b \u0438\u0435\u043b\u0435\u043d\u0443\u0448\u0456\u043b\u0435\u0440", "HeaderCredits": "\u049a\u04b1\u049b\u044b\u049b \u0438\u0435\u043b\u0435\u043d\u0443\u0448\u0456\u043b\u0435\u0440",
@ -347,8 +351,10 @@
"LabelCustomPaths": "\u049a\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u043e\u043b\u0434\u0430\u0440\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04d8\u0434\u0435\u043f\u043a\u0456\u043b\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u04e9\u0440\u0456\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.", "LabelCustomPaths": "\u049a\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u043e\u043b\u0434\u0430\u0440\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04d8\u0434\u0435\u043f\u043a\u0456\u043b\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u04e9\u0440\u0456\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
"LabelCachePath": "\u041a\u044d\u0448\u043a\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:", "LabelCachePath": "\u041a\u044d\u0448\u043a\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:",
"LabelCachePathHelp": "\u0421\u0443\u0440\u0435\u0442 \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u043a\u044d\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.", "LabelCachePathHelp": "\u0421\u0443\u0440\u0435\u0442 \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u043a\u044d\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
"LabelRecordingPath": "\u0416\u0430\u0437\u044b\u043b\u0443 \u0436\u043e\u043b\u044b:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "\u0410\u0442\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0433\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:", "LabelImagesByNamePath": "\u0410\u0442\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0433\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:",
"LabelImagesByNamePathHelp": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d \u0430\u043a\u0442\u0435\u0440, \u0436\u0430\u043d\u0440, \u0436\u04d9\u043d\u0435 \u0441\u0442\u0443\u0434\u0438\u044f \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.", "LabelImagesByNamePathHelp": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d \u0430\u043a\u0442\u0435\u0440, \u0436\u0430\u043d\u0440, \u0436\u04d9\u043d\u0435 \u0441\u0442\u0443\u0434\u0438\u044f \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
"LabelMetadataPath": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:", "LabelMetadataPath": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:",
@ -489,7 +495,7 @@
"HeaderCastCrew": "\u0421\u043e\u043c\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0443\u0448\u0456\u043b\u0435\u0440", "HeaderCastCrew": "\u0421\u043e\u043c\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0443\u0448\u0456\u043b\u0435\u0440",
"HeaderAdditionalParts": "\u0416\u0430\u043b\u0493\u0430\u0441\u0430\u0442\u044b\u043d \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", "HeaderAdditionalParts": "\u0416\u0430\u043b\u0493\u0430\u0441\u0430\u0442\u044b\u043d \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
"ButtonSplitVersionsApart": "\u041d\u04af\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0439\u0442\u0430 \u0431\u04e9\u043b\u0443", "ButtonSplitVersionsApart": "\u041d\u04af\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0439\u0442\u0430 \u0431\u04e9\u043b\u0443",
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0433\u0435", "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440",
"LabelMissing": "\u0416\u043e\u049b", "LabelMissing": "\u0416\u043e\u049b",
"LabelOffline": "\u0414\u0435\u0440\u0431\u0435\u0441", "LabelOffline": "\u0414\u0435\u0440\u0431\u0435\u0441",
"PathSubstitutionHelp": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u043b\u0430\u0440\u044b\u043d \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u044b \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u043e\u043b\u043c\u0435\u043d \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u0433\u0435\u043d\u0434\u0435, \u0431\u04b1\u043b\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0442\u044b \u0436\u0435\u043b\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u0440\u0435\u0441\u0443\u0440\u0441\u0442\u0430\u0440\u044b\u043d \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430\u043d \u0436\u0430\u043b\u0442\u0430\u0440\u0430\u0434\u044b.", "PathSubstitutionHelp": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u043b\u0430\u0440\u044b\u043d \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u044b \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u043e\u043b\u043c\u0435\u043d \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u0433\u0435\u043d\u0434\u0435, \u0431\u04b1\u043b\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0442\u044b \u0436\u0435\u043b\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u0440\u0435\u0441\u0443\u0440\u0441\u0442\u0430\u0440\u044b\u043d \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430\u043d \u0436\u0430\u043b\u0442\u0430\u0440\u0430\u0434\u044b.",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "\u0412\u0435\u0431-\u0441\u043e\u043a\u0435\u0442 \u043f\u043e\u0440\u0442\u044b\u043d\u044b\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456:", "LabelWebSocketPortNumber": "\u0412\u0435\u0431-\u0441\u043e\u043a\u0435\u0442 \u043f\u043e\u0440\u0442\u044b\u043d\u044b\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456:",
"LabelEnableAutomaticPortMap": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u043f\u043e\u0440\u0442 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443", "LabelEnableAutomaticPortMap": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u043f\u043e\u0440\u0442 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443",
"LabelEnableAutomaticPortMapHelp": "\u0416\u0430\u0440\u0438\u044f \u043f\u043e\u0440\u0442\u0442\u044b \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u043e\u0440\u0442\u049b\u0430 UPnP \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04d9\u0440\u0435\u043a\u0435\u0442\u0456. \u0411\u04b1\u043b \u043a\u0435\u0439\u0431\u0456\u0440 \u0436\u043e\u043b \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u044b\u0448 \u04b1\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u043c\u0435\u0439\u0442\u0456\u043d\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", "LabelEnableAutomaticPortMapHelp": "\u0416\u0430\u0440\u0438\u044f \u043f\u043e\u0440\u0442\u0442\u044b \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u043e\u0440\u0442\u049b\u0430 UPnP \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04d9\u0440\u0435\u043a\u0435\u0442\u0456. \u0411\u04b1\u043b \u043a\u0435\u0439\u0431\u0456\u0440 \u0436\u043e\u043b \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u044b\u0448 \u04b1\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u043c\u0435\u0439\u0442\u0456\u043d\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
"LabelExternalDDNS": "\u0421\u044b\u0440\u0442\u049b\u044b WAN-\u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "\u0415\u0433\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 dynamic DNS \u0431\u043e\u043b\u0441\u0430, \u0431\u04b1\u043d\u044b \u043e\u0441\u044b \u0436\u0435\u0440\u0434\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u0441\u044b\u0440\u0442\u0442\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430 \u043e\u0441\u044b\u043d\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b", "TabResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
"TabWeather": "\u0410\u0443\u0430 \u0440\u0430\u0439\u044b", "TabWeather": "\u0410\u0443\u0430 \u0440\u0430\u0439\u044b",
"TitleAppSettings": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", "TitleAppSettings": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
@ -586,8 +592,8 @@
"LabelSkipped": "\u04e8\u0442\u043a\u0456\u0437\u0456\u043b\u0433\u0435\u043d", "LabelSkipped": "\u04e8\u0442\u043a\u0456\u0437\u0456\u043b\u0433\u0435\u043d",
"HeaderEpisodeOrganization": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0456 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", "HeaderEpisodeOrganization": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0456 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443",
"LabelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f:", "LabelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f:",
"LabelSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456", "LabelSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456:",
"LabelEpisodeNumber": "\u042d\u043f\u0438\u0437\u043e\u0434 \u043d\u04e9\u043c\u0456\u0440\u0456", "LabelEpisodeNumber": "\u0411\u04e9\u043b\u0456\u043c \u043d\u04e9\u043c\u0456\u0440\u0456:",
"LabelEndingEpisodeNumber": "\u0410\u044f\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0456\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456:", "LabelEndingEpisodeNumber": "\u0410\u044f\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0456\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456:",
"LabelEndingEpisodeNumberHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0431\u04e9\u043b\u0456\u043c\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u04af\u0448\u0456\u043d", "LabelEndingEpisodeNumberHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0431\u04e9\u043b\u0456\u043c\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u04af\u0448\u0456\u043d",
"OptionRememberOrganizeCorrection": "\u0421\u0430\u049b\u0442\u0430\u0443 \u0436\u04d9\u043d\u0435 \u0430\u0442\u0442\u0430\u0440\u044b \u04b1\u049b\u0441\u0430\u0441 \u0431\u043e\u043b\u0430\u0448\u0430\u049b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0493\u0430 \u043e\u0441\u044b \u0442\u04af\u0437\u0435\u0442\u0443\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u0443", "OptionRememberOrganizeCorrection": "\u0421\u0430\u049b\u0442\u0430\u0443 \u0436\u04d9\u043d\u0435 \u0430\u0442\u0442\u0430\u0440\u044b \u04b1\u049b\u0441\u0430\u0441 \u0431\u043e\u043b\u0430\u0448\u0430\u049b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0493\u0430 \u043e\u0441\u044b \u0442\u04af\u0437\u0435\u0442\u0443\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u0443",
@ -726,10 +732,12 @@
"TabNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430", "TabNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
"TabNavigation": "\u0428\u0430\u0440\u043b\u0430\u0443", "TabNavigation": "\u0428\u0430\u0440\u043b\u0430\u0443",
"TabControls": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456", "TabControls": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0493\u0430", "ButtonScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0493\u0430",
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435", "ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
"ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430", "ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
"ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430", "ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "\u0422\u043e\u049b\u0442\u0430\u0442\u0443", "ButtonStop": "\u0422\u043e\u049b\u0442\u0430\u0442\u0443",
"ButtonPause": "\u04ae\u0437\u0443", "ButtonPause": "\u04ae\u0437\u0443",
"ButtonNext": "\u041a\u0435\u043b\u0435\u0441\u0456\u0433\u0435", "ButtonNext": "\u041a\u0435\u043b\u0435\u0441\u0456\u0433\u0435",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0456\u0440 \u043a\u0435\u0437\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u0436\u0430\u0441\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0433\u0435 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u043f \u0436\u04d9\u043d\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.", "MessageNoPlaylistsAvailable": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0456\u0440 \u043a\u0435\u0437\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u0436\u0430\u0441\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0433\u0435 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u043f \u0436\u04d9\u043d\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
"MessageNoPlaylistItemsAvailable": "\u041e\u0441\u044b \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c \u0430\u0493\u044b\u043c\u0434\u0430\u0493\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0431\u043e\u0441.", "MessageNoPlaylistItemsAvailable": "\u041e\u0441\u044b \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c \u0430\u0493\u044b\u043c\u0434\u0430\u0493\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0431\u043e\u0441.",
"ButtonDismiss": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u043c\u0430\u0443", "ButtonDismiss": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u043c\u0430\u0443",
"ButtonMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
"ButtonEditOtherUserPreferences": "\u041e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b\u04a3 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043d, \u0441\u0443\u0440\u0435\u0442\u0456\u043d \u0436\u04d9\u043d\u0435 \u04e9\u0437\u0456\u043d\u0434\u0456\u043a \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u04e9\u04a3\u0434\u0435\u0443.", "ButtonEditOtherUserPreferences": "\u041e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b\u04a3 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043d, \u0441\u0443\u0440\u0435\u0442\u0456\u043d \u0436\u04d9\u043d\u0435 \u04e9\u0437\u0456\u043d\u0434\u0456\u043a \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u04e9\u04a3\u0434\u0435\u0443.",
"LabelChannelStreamQuality": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u043d\u0430\u0441\u044b\u043d\u044b\u04a3 \u0441\u0430\u043f\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:", "LabelChannelStreamQuality": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u043d\u0430\u0441\u044b\u043d\u044b\u04a3 \u0441\u0430\u043f\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:",
"LabelChannelStreamQualityHelp": "\u04e8\u0442\u043a\u0456\u0437\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456 \u0442\u04e9\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u0434\u0430, \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u0442\u044b\u049b \u04d9\u0441\u0435\u0440\u0433\u0435 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0441\u0430\u043f\u0430\u043d\u044b \u0448\u0435\u043a\u0442\u0435\u0443 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.", "LabelChannelStreamQualityHelp": "\u04e8\u0442\u043a\u0456\u0437\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456 \u0442\u04e9\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u0434\u0430, \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0493\u0430\u043d\u0434\u0430 \u0436\u0430\u0442\u044b\u049b \u04d9\u0441\u0435\u0440\u0433\u0435 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0441\u0430\u043f\u0430\u043d\u044b \u0448\u0435\u043a\u0442\u0435\u0443 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "\u0410\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d\u0434\u0430\u0440", "OptionUnidentified": "\u0410\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d\u0434\u0430\u0440",
"OptionMissingParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442 \u0436\u043e\u049b", "OptionMissingParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442 \u0436\u043e\u049b",
"OptionStub": "\u0422\u044b\u0493\u044b\u043d", "OptionStub": "\u0422\u044b\u0493\u044b\u043d",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "0-\u043c\u0430\u0443\u0441\u044b\u043c", "OptionSeason0": "0-\u043c\u0430\u0443\u0441\u044b\u043c",
"LabelReport": "\u0411\u0430\u044f\u043d\u0430\u0442:", "LabelReport": "\u0411\u0430\u044f\u043d\u0430\u0442:",
"OptionReportSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440", "OptionReportSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440", "OptionReportArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
"OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440", "OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
"OptionReportAdultVideos": "\u0415\u0440\u0435\u0441\u0435\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456", "OptionReportAdultVideos": "\u0415\u0440\u0435\u0441\u0435\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456",
"ButtonMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a", "ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
"HeaderActivity": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440", "HeaderActivity": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440",
"ScheduledTaskStartedWithName": "{0} \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0434\u044b", "ScheduledTaskStartedWithName": "{0} \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0434\u044b",
"ScheduledTaskCancelledWithName": "{0} \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b", "ScheduledTaskCancelledWithName": "{0} \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443", "HeaderPasswordReset": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443",
"HeaderParentalRatings": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u0442\u0430\u0440", "HeaderParentalRatings": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u0442\u0430\u0440",
"HeaderVideoTypes": "\u0411\u0435\u0439\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u0440\u0456", "HeaderVideoTypes": "\u0411\u0435\u0439\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u0440\u0456",
"HeaderYears": "\u0416\u044b\u043b\u0434\u0430\u0440",
"HeaderBlockItemsWithNoRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b \u0436\u043e\u049b \u043d\u0435\u043c\u0435\u0441\u0435 \u043e\u043b \u0442\u0430\u043d\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:", "HeaderBlockItemsWithNoRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b \u0436\u043e\u049b \u043d\u0435\u043c\u0435\u0441\u0435 \u043e\u043b \u0442\u0430\u043d\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:",
"LabelBlockContentWithTags": "\u041c\u044b\u043d\u0430 \u0442\u0435\u0433\u0442\u0435\u0440\u0456 \u0431\u0430\u0440 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:", "LabelBlockContentWithTags": "\u041c\u044b\u043d\u0430 \u0442\u0435\u0433\u0442\u0435\u0440\u0456 \u0431\u0430\u0440 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:",
"LabelEnableSingleImageInDidlLimit": "\u0416\u0430\u043b\u0493\u044b\u0437 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0443\u0440\u0435\u0442\u043a\u0435 \u0448\u0435\u043a\u0442\u0435\u0443", "LabelEnableSingleImageInDidlLimit": "\u0416\u0430\u043b\u0493\u044b\u0437 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0443\u0440\u0435\u0442\u043a\u0435 \u0448\u0435\u043a\u0442\u0435\u0443",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440", "HeaderUpcomingMovies": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
"HeaderUpcomingSports": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0441\u043f\u043e\u0440\u0442", "HeaderUpcomingSports": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0441\u043f\u043e\u0440\u0442",
"HeaderUpcomingPrograms": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0431\u0435\u0440\u043b\u0456\u043c\u0434\u0435\u0440", "HeaderUpcomingPrograms": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0431\u0435\u0440\u043b\u0456\u043c\u0434\u0435\u0440",
"ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
"LabelShowLibraryTileNames": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0430\u049b\u0442\u0430\u0439\u0448\u0430\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u0430\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443", "LabelShowLibraryTileNames": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0430\u049b\u0442\u0430\u0439\u0448\u0430\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u0430\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443",
"LabelShowLibraryTileNamesHelp": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442\u0442\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0430\u049b\u0442\u0430\u0439\u0448\u0430\u043b\u0430\u0440\u044b \u0430\u0441\u0442\u044b\u043d\u0434\u0430 \u0436\u0430\u0437\u0443\u043b\u0430\u0440 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435 \u043c\u0435 \u0435\u043a\u0435\u043d\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b.", "LabelShowLibraryTileNamesHelp": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442\u0442\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0430\u049b\u0442\u0430\u0439\u0448\u0430\u043b\u0430\u0440\u044b \u0430\u0441\u0442\u044b\u043d\u0434\u0430 \u0436\u0430\u0437\u0443\u043b\u0430\u0440 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435 \u043c\u0435 \u0435\u043a\u0435\u043d\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
"OptionEnableTranscodingThrottle": "\u0420\u0435\u0442\u0442\u0435\u0443\u0434\u0456 \u049b\u043e\u0441\u0443", "OptionEnableTranscodingThrottle": "\u0420\u0435\u0442\u0442\u0435\u0443\u0434\u0456 \u049b\u043e\u0441\u0443",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u0437\u0431\u0430\u0441\u044b\u043d \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442.", "MessageActiveSubscriptionRequiredSeriesRecordings": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u0437\u0431\u0430\u0441\u044b\u043d \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442.",
"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", "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:", "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", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"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.", "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", "HeaderDefaultPadding": "\u04d8\u0434\u0435\u043f\u043a\u0456 \u0448\u0435\u0433\u0456\u043d\u0456\u0441",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440", "HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
"HeaderVideos": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440", "HeaderVideos": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
"OptionEnableVideoFrameAnalysis": "\u0411\u0435\u0439\u043d\u0435\u043d\u0456 \u0434\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443", "OptionEnableVideoFrameAnalysis": "\u0411\u0435\u0439\u043d\u0435\u043d\u0456 \u0434\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", "TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443",
"TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440", "TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440",
"TabHelp": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430", "TabHelp": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430",
"ButtonFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d\u0493\u0430",
"ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430",
"ButtonQuality": "\u0421\u0430\u043f\u0430\u0441\u044b\u043d\u0430", "ButtonQuality": "\u0421\u0430\u043f\u0430\u0441\u044b\u043d\u0430",
"HeaderNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440", "HeaderNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440",
"HeaderSelectPlayer": "\u041e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443", "HeaderSelectPlayer": "\u041e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443",
@ -1902,9 +1909,9 @@
"HeaderSeason": "\u041c\u0430\u0443\u0441\u044b\u043c", "HeaderSeason": "\u041c\u0430\u0443\u0441\u044b\u043c",
"HeaderSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456", "HeaderSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
"HeaderNetwork": "\u0422\u0435\u043b\u0435\u0436\u0435\u043b\u0456", "HeaderNetwork": "\u0422\u0435\u043b\u0435\u0436\u0435\u043b\u0456",
"HeaderYear": "\u0416\u044b\u043b\u044b", "HeaderYear": "\u0416\u044b\u043b:",
"HeaderGameSystem": "\u041e\u0439\u044b\u043d \u0436\u04af\u0439\u0435\u0441\u0456", "HeaderGameSystem": "\u041e\u0439\u044b\u043d \u0436\u04af\u0439\u0435\u0441\u0456",
"HeaderPlayers": "\u041e\u0439\u044b\u043d\u0448\u044b\u043b\u0430\u0440", "HeaderPlayers": "\u041e\u0439\u044b\u043d\u0448\u044b\u043b\u0430\u0440:",
"HeaderEmbeddedImage": "\u0415\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0443\u0440\u0435\u0442", "HeaderEmbeddedImage": "\u0415\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0443\u0440\u0435\u0442",
"HeaderTrack": "\u0416\u043e\u043b\u0448\u044b\u049b", "HeaderTrack": "\u0416\u043e\u043b\u0448\u044b\u049b",
"HeaderDisc": "\u0414\u0438\u0441\u043a\u0456", "HeaderDisc": "\u0414\u0438\u0441\u043a\u0456",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440", "HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
"HeaderGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440", "HeaderGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440",
"HeaderBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440", "HeaderBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440",
"HeaderEpisodes": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0435\u0440:",
"HeaderSeasons": "\u041c\u0430\u0443\u0441\u044b\u043c\u0434\u0430\u0440", "HeaderSeasons": "\u041c\u0430\u0443\u0441\u044b\u043c\u0434\u0430\u0440",
"HeaderTracks": "\u0416\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440", "HeaderTracks": "\u0416\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440",
"HeaderItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440", "HeaderItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440",
@ -2098,6 +2104,9 @@
"LabelFullReview": "\u041f\u0456\u043a\u0456\u0440 \u0442\u043e\u043b\u044b\u0493\u044b\u043c\u0435\u043d:", "LabelFullReview": "\u041f\u0456\u043a\u0456\u0440 \u0442\u043e\u043b\u044b\u0493\u044b\u043c\u0435\u043d:",
"LabelShortRatingDescription": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b\u04a3 \u049b\u044b\u0441\u049b\u0430 \u0430\u049b\u043f\u0430\u0440\u044b:", "LabelShortRatingDescription": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b\u04a3 \u049b\u044b\u0441\u049b\u0430 \u0430\u049b\u043f\u0430\u0440\u044b:",
"OptionIRecommendThisItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u04b1\u0441\u044b\u043d\u0430\u043c\u044b\u043d", "OptionIRecommendThisItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u04b1\u0441\u044b\u043d\u0430\u043c\u044b\u043d",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456, \u043a\u0435\u043b\u0435\u0441\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u049b\u0430\u0440\u0430\u04a3\u044b\u0437. \u0416\u0430\u0441\u044b\u043b \u0448\u0435\u043d\u0431\u0435\u0440\u043b\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u049b\u0430\u043d\u0448\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0431\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456.", "WebClientTourContent": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456, \u043a\u0435\u043b\u0435\u0441\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u049b\u0430\u0440\u0430\u04a3\u044b\u0437. \u0416\u0430\u0441\u044b\u043b \u0448\u0435\u043d\u0431\u0435\u0440\u043b\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u049b\u0430\u043d\u0448\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0431\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456.",
"WebClientTourMovies": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0456 \u0431\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u043e\u0439\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", "WebClientTourMovies": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0456 \u0431\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u043e\u0439\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
"WebClientTourMouseOver": "\u041c\u0430\u04a3\u044b\u0437\u0434\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430 \u0436\u044b\u043b\u0434\u0430\u043c \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u0436\u0430\u0440\u049b\u0430\u0493\u0430\u0437\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u043d\u0434\u0435 \u0442\u0456\u043d\u0442\u0443\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0440\u0441\u0435\u0442\u043a\u0456\u0448\u0456\u043d \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437", "WebClientTourMouseOver": "\u041c\u0430\u04a3\u044b\u0437\u0434\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430 \u0436\u044b\u043b\u0434\u0430\u043c \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u0436\u0430\u0440\u049b\u0430\u0493\u0430\u0437\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u043d\u0434\u0435 \u0442\u0456\u043d\u0442\u0443\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0440\u0441\u0435\u0442\u043a\u0456\u0448\u0456\u043d \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u0434\u0430. \u0416\u0430\u04a3\u0430 \u0430\u0442\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0434\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "ErrorMessageUsernameInUse": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u0434\u0430. \u0416\u0430\u04a3\u0430 \u0430\u0442\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0434\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
"ErrorMessageEmailInUse": "\u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u0434\u0430. \u0416\u0430\u04a3\u0430 \u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0434\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437, \u043d\u0435\u043c\u0435\u0441\u0435 \u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0435\u0441\u043a\u0435 \u0441\u0430\u043b\u0443 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", "ErrorMessageEmailInUse": "\u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u0434\u0430. \u0416\u0430\u04a3\u0430 \u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0434\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437, \u043d\u0435\u043c\u0435\u0441\u0435 \u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0435\u0441\u043a\u0435 \u0441\u0430\u043b\u0443 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.",
"MessageThankYouForConnectSignUp": "Emby Connect \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0435\u043d\u0433\u0435 \u0430\u043b\u0493\u044b\u0441. \u041c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0493\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u042d-\u043f\u043e\u0448\u0442\u0430 \u0445\u0430\u0431\u0430\u0440\u044b\u043d\u0434\u0430 \u0436\u0430\u04a3\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u0430\u043b\u0430\u0439 \u0440\u0430\u0441\u0442\u0430\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440 \u0431\u043e\u043b\u0430\u0434\u044b. \u041a\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043d\u0456 \u0440\u0430\u0441\u0442\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d \u043e\u0441\u044b\u043d\u0434\u0430 \u049b\u0430\u0439\u0442\u0430 \u043e\u0440\u0430\u043b\u044b\u04a3\u044b\u0437.", "MessageThankYouForConnectSignUp": "Emby Connect \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0435\u043d\u0433\u0435 \u0430\u043b\u0493\u044b\u0441. \u041c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0493\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u042d-\u043f\u043e\u0448\u0442\u0430 \u0445\u0430\u0431\u0430\u0440\u044b\u043d\u0434\u0430 \u0436\u0430\u04a3\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u0430\u043b\u0430\u0439 \u0440\u0430\u0441\u0442\u0430\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440 \u0431\u043e\u043b\u0430\u0434\u044b. \u041a\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043d\u0456 \u0440\u0430\u0441\u0442\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d \u043e\u0441\u044b\u043d\u0434\u0430 \u049b\u0430\u0439\u0442\u0430 \u043e\u0440\u0430\u043b\u044b\u04a3\u044b\u0437.",
"Share": "Share",
"HeaderShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443", "HeaderShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
"ButtonShareHelp": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442\u0442\u0456\u043a \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0432\u0435\u0431-\u0431\u0435\u0442\u0456\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443. \u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0435\u0448\u049b\u0430\u0448\u0430\u043d \u043e\u0440\u0442\u0430\u049b \u0436\u0430\u0440\u0438\u044f\u043b\u0430\u043d\u0431\u0430\u0439\u0434\u044b.", "ButtonShareHelp": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442\u0442\u0456\u043a \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0432\u0435\u0431-\u0431\u0435\u0442\u0456\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443. \u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0435\u0448\u049b\u0430\u0448\u0430\u043d \u043e\u0440\u0442\u0430\u049b \u0436\u0430\u0440\u0438\u044f\u043b\u0430\u043d\u0431\u0430\u0439\u0434\u044b.",
"ButtonShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443", "ButtonShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Emby Premiere \u0430\u0440\u049b\u044b\u043b\u044b, \u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u0443\u0440\u0430\u043b\u044b \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?", "MessageDidYouKnowCinemaMode": "Emby Premiere \u0430\u0440\u049b\u044b\u043b\u044b, \u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u0443\u0440\u0430\u043b\u044b \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?",
"MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", "MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.",
"OptionEnableDisplayMirroring": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0456\u04a3 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u049b\u043e\u0441\u0443", "OptionEnableDisplayMirroring": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0456\u04a3 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u049b\u043e\u0441\u0443",
"HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u043a \u049b\u0430\u0436\u0435\u0442",
"HeaderSyncRequiresSupporterMembershipAppVersion": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b\u043c\u0435\u043d Emby Server \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0443 \u049b\u0430\u0436\u0435\u0442", "HeaderSyncRequiresSupporterMembershipAppVersion": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b\u043c\u0435\u043d Emby Server \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0443 \u049b\u0430\u0436\u0435\u0442",
"ErrorValidatingSupporterInfo": "Emby Premiere \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "ErrorValidatingSupporterInfo": "Emby Premiere \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
"LabelLocalSyncStatusValue": "\u041a\u04af\u0439\u0456: {0}", "LabelLocalSyncStatusValue": "\u041a\u04af\u0439\u0456: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "\u0410\u0442\u0430\u0443\u044b:", "LabelTitle": "\u0410\u0442\u0430\u0443\u044b:",
"LabelOriginalTitle": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0430\u0442\u0430\u0443\u044b:", "LabelOriginalTitle": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0430\u0442\u0430\u0443\u044b:",
"LabelSortTitle": "\u0410\u0442\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u04b1\u0440\u044b\u043f\u0442\u0430\u0443" "LabelSortTitle": "\u0410\u0442\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u04b1\u0440\u044b\u043f\u0442\u0430\u0443",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\uc885\ub8cc", "LabelExit": "\uc885\ub8cc",
"LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38", "LabelVisitCommunity": "\ucee4\ubba4\ub2c8\ud2f0 \ubc29\ubb38",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "PIN \ucf54\ub4dc \uc124\uc815", "ButtonConfigurePinCode": "PIN \ucf54\ub4dc \uc124\uc815",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "PayPal\ub85c \ub4f1\ub85d\ud558\uae30", "RegisterWithPayPal": "PayPal\ub85c \ub4f1\ub85d\ud558\uae30",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "14\uc77c \ubb34\ub8cc \uccb4\ud5d8\ud558\uae30", "HeaderEnjoyDayTrial": "14\uc77c \ubb34\ub8cc \uccb4\ud5d8\ud558\uae30",
"LabelSyncTempPath": "\uc784\uc2dc \ud30c\uc77c \uacbd\ub85c:", "LabelSyncTempPath": "\uc784\uc2dc \ud30c\uc77c \uacbd\ub85c:",
"LabelSyncTempPathHelp": "\uc0ac\uc6a9\uc790 \ub3d9\uae30\ud654 \uc791\uc5c5 \ud3f4\ub354\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \ub3d9\uae30\ud654 \uacfc\uc815\uc5d0\uc11c \ub9cc\ub4e4\uc5b4\uc9c4 \ubcc0\ud658\ub41c \ubbf8\ub514\uc5b4\uac00 \uc5ec\uae30\uc5d0 \uc800\uc7a5\ub429\ub2c8\ub2e4.", "LabelSyncTempPathHelp": "\uc0ac\uc6a9\uc790 \ub3d9\uae30\ud654 \uc791\uc5c5 \ud3f4\ub354\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \ub3d9\uae30\ud654 \uacfc\uc815\uc5d0\uc11c \ub9cc\ub4e4\uc5b4\uc9c4 \ubcc0\ud658\ub41c \ubbf8\ub514\uc5b4\uac00 \uc5ec\uae30\uc5d0 \uc800\uc7a5\ub429\ub2c8\ub2e4.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "\ud5a5\uc0c1\ub41c \uc601\ud654 \ud654\uba74 \uc0ac\uc6a9", "LabelEnableEnhancedMovies": "\ud5a5\uc0c1\ub41c \uc601\ud654 \ud654\uba74 \uc0ac\uc6a9",
"LabelEnableEnhancedMoviesHelp": "\uc601\ud654 \uc608\uace0\ud3b8, \ucd94\uac00\uc815\ubcf4, \ubc30\uc5ed \ub4f1\uc758 \uad00\ub828 \ucf58\ud150\uce20\uac00 \ud3ec\ud568\ub41c \ud3f4\ub354\ub85c \ud45c\uc2dc\ud569\ub2c8\ub2e4.", "LabelEnableEnhancedMoviesHelp": "\uc601\ud654 \uc608\uace0\ud3b8, \ucd94\uac00\uc815\ubcf4, \ubc30\uc5ed \ub4f1\uc758 \uad00\ub828 \ucf58\ud150\uce20\uac00 \ud3ec\ud568\ub41c \ud3f4\ub354\ub85c \ud45c\uc2dc\ud569\ub2c8\ub2e4.",
"HeaderSyncJobInfo": "\ub3d9\uae30\ud654 \uc791\uc5c5", "HeaderSyncJobInfo": "\ub3d9\uae30\ud654 \uc791\uc5c5",
"FolderTypeMixed": "\ud63c\ud569 \ucf58\ud150\uce20", "FolderTypeMixed": "\ud63c\ud569 \ucf58\ud150\ud2b8",
"FolderTypeMovies": "\uc601\ud654", "FolderTypeMovies": "\uc601\ud654",
"FolderTypeMusic": "\uc74c\uc545", "FolderTypeMusic": "\uc74c\uc545",
"FolderTypeAdultVideos": "\uc131\uc778 \ube44\ub514\uc624",
"FolderTypePhotos": "\uc0ac\uc9c4", "FolderTypePhotos": "\uc0ac\uc9c4",
"FolderTypeMusicVideos": "\ubba4\uc9c1 \ube44\ub514\uc624", "FolderTypeMusicVideos": "\ubba4\uc9c1 \ube44\ub514\uc624",
"FolderTypeHomeVideos": "\ud648 \ube44\ub514\uc624", "FolderTypeHomeVideos": "\ud648 \ube44\ub514\uc624",
@ -202,7 +205,7 @@
"OptionAscending": "\uc624\ub984\ucc28\uc21c", "OptionAscending": "\uc624\ub984\ucc28\uc21c",
"OptionDescending": "\ub0b4\ub9bc\ucc28\uc21c", "OptionDescending": "\ub0b4\ub9bc\ucc28\uc21c",
"OptionRuntime": "\uc0c1\uc601 \uc2dc\uac04", "OptionRuntime": "\uc0c1\uc601 \uc2dc\uac04",
"OptionReleaseDate": "\uac1c\ubd09\uc77c", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "\uc7ac\uc0dd \ud69f\uc218", "OptionPlayCount": "\uc7ac\uc0dd \ud69f\uc218",
"OptionDatePlayed": "Date Played", "OptionDatePlayed": "Date Played",
"OptionDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc", "OptionDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc",
@ -216,6 +219,7 @@
"OptionBudget": "\uc608\uc0b0", "OptionBudget": "\uc608\uc0b0",
"OptionRevenue": "\uc218\uc775", "OptionRevenue": "\uc218\uc775",
"OptionPoster": "\ud3ec\uc2a4\ud130", "OptionPoster": "\ud3ec\uc2a4\ud130",
"HeaderYears": "\uc5f0\ub3c4",
"OptionPosterCard": "\ud3ec\uc2a4\ud130 \uce74\ub4dc", "OptionPosterCard": "\ud3ec\uc2a4\ud130 \uce74\ub4dc",
"OptionBackdrop": "\ubc30\uacbd", "OptionBackdrop": "\ubc30\uacbd",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "\uc120\ud0dd", "ButtonSelect": "\uc120\ud0dd",
"ButtonGroupVersions": "\uadf8\ub8f9 \ubc84\uc804", "ButtonGroupVersions": "\uadf8\ub8f9 \ubc84\uc804",
"ButtonAddToCollection": "\uceec\ub809\uc158\uc5d0 \ucd94\uac00", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "\ud06c\ub808\ub514\ud2b8", "HeaderCredits": "\ud06c\ub808\ub514\ud2b8",
@ -347,8 +351,10 @@
"LabelCustomPaths": "\uc0ac\uc6a9\uc790 \uacbd\ub85c\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \uae30\ubcf8\uac12\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 \ube44\uc6cc\ub461\ub2c8\ub2e4.", "LabelCustomPaths": "\uc0ac\uc6a9\uc790 \uacbd\ub85c\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \uae30\ubcf8\uac12\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 \ube44\uc6cc\ub461\ub2c8\ub2e4.",
"LabelCachePath": "\uce90\uc2dc \uacbd\ub85c:", "LabelCachePath": "\uce90\uc2dc \uacbd\ub85c:",
"LabelCachePathHelp": "\uc774\ubbf8\uc9c0\uc640 \uac19\uc740 \uc11c\ubc84 \uce90\uc2dc \ud30c\uc77c\uc744 \uc704\ud55c \uc0ac\uc6a9\uc790 \uc704\uce58\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \uc11c\ubc84 \uae30\ubcf8\uac12\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 \ube44\uc6cc\ub461\ub2c8\ub2e4.", "LabelCachePathHelp": "\uc774\ubbf8\uc9c0\uc640 \uac19\uc740 \uc11c\ubc84 \uce90\uc2dc \ud30c\uc77c\uc744 \uc704\ud55c \uc0ac\uc6a9\uc790 \uc704\uce58\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \uc11c\ubc84 \uae30\ubcf8\uac12\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 \ube44\uc6cc\ub461\ub2c8\ub2e4.",
"LabelRecordingPath": "\ub179\ud654 \uacbd\ub85c:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "\ub179\ud654\ub97c \uc800\uc7a5\ud560 \uc0ac\uc6a9\uc790 \uc704\uce58\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \uc11c\ubc84 \uae30\ubcf8\uac12\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 \ube44\uc6cc\ub461\ub2c8\ub2e4.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "\uc774\ub984\ubcc4 \uc774\ubbf8\uc9c0 \uacbd\ub85c:", "LabelImagesByNamePath": "\uc774\ub984\ubcc4 \uc774\ubbf8\uc9c0 \uacbd\ub85c:",
"LabelImagesByNamePathHelp": "\ub2e4\uc6b4\ub85c\ub4dc\ud55c \ubc30\uc6b0, \uc7a5\ub974, \uc2a4\ud29c\ub514\uc624 \uc774\ubbf8\uc9c0\ub97c \uc800\uc7a5\ud560 \uc0ac\uc6a9\uc790 \uc704\uce58\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4.", "LabelImagesByNamePathHelp": "\ub2e4\uc6b4\ub85c\ub4dc\ud55c \ubc30\uc6b0, \uc7a5\ub974, \uc2a4\ud29c\ub514\uc624 \uc774\ubbf8\uc9c0\ub97c \uc800\uc7a5\ud560 \uc0ac\uc6a9\uc790 \uc704\uce58\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4.",
"LabelMetadataPath": "\uba54\ud0c0\ub370\uc774\ud130 \uacbd\ub85c:", "LabelMetadataPath": "\uba54\ud0c0\ub370\uc774\ud130 \uacbd\ub85c:",
@ -489,7 +495,7 @@
"HeaderCastCrew": "\ubc30\uc5ed \ubc0f \uc81c\uc791\uc9c4", "HeaderCastCrew": "\ubc30\uc5ed \ubc0f \uc81c\uc791\uc9c4",
"HeaderAdditionalParts": "Additional Parts", "HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart", "ButtonSplitVersionsApart": "Split Versions Apart",
"ButtonPlayTrailer": "\uc608\uace0\ud3b8", "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing", "LabelMissing": "Missing",
"LabelOffline": "\uc624\ud504\ub77c\uc778", "LabelOffline": "\uc624\ud504\ub77c\uc778",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket \ud3ec\ud2b8 \ubc88\ud638:", "LabelWebSocketPortNumber": "Web socket \ud3ec\ud2b8 \ubc88\ud638:",
"LabelEnableAutomaticPortMap": "\uc790\ub3d9 \ud3ec\ud2b8 \ub9f5\ud551 \uc0ac\uc6a9", "LabelEnableAutomaticPortMap": "\uc790\ub3d9 \ud3ec\ud2b8 \ub9f5\ud551 \uc0ac\uc6a9",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "\uc678\ubd80 WAN \uc8fc\uc18c:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "\ub0a0\uc528", "TabWeather": "\ub0a0\uc528",
"TitleAppSettings": "\uc571 \uc124\uc815", "TitleAppSettings": "\uc571 \uc124\uc815",
@ -582,12 +588,12 @@
"HeaderProgram": "\ud504\ub85c\uadf8\ub7a8", "HeaderProgram": "\ud504\ub85c\uadf8\ub7a8",
"HeaderClients": "\ud074\ub77c\uc774\uc5b8\ud2b8", "HeaderClients": "\ud074\ub77c\uc774\uc5b8\ud2b8",
"LabelCompleted": "\uc644\ub8cc", "LabelCompleted": "\uc644\ub8cc",
"LabelFailed": "\uc2e4\ud328", "LabelFailed": "Failed",
"LabelSkipped": "\uac74\ub108\ub700", "LabelSkipped": "\uac74\ub108\ub700",
"HeaderEpisodeOrganization": "\uc5d0\ud53c\uc18c\ub4dc \uad6c\uc131", "HeaderEpisodeOrganization": "\uc5d0\ud53c\uc18c\ub4dc \uad6c\uc131",
"LabelSeries": "\uc2dc\ub9ac\uc988:", "LabelSeries": "Series:",
"LabelSeasonNumber": "\uc2dc\uc98c \ubc88\ud638", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "\uc5d0\ud53c\uc18c\ub4dc \ubc88\ud638", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "\ub9c8\uc9c0\ub9c9 \uc5d0\ud53c\uc18c\ub4dc \ubc88\ud638:", "LabelEndingEpisodeNumber": "\ub9c8\uc9c0\ub9c9 \uc5d0\ud53c\uc18c\ub4dc \ubc88\ud638:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911", "TabNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911",
"TabNavigation": "\ud0d0\uc0c9", "TabNavigation": "\ud0d0\uc0c9",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "\uc7a5\uba74", "ButtonScenes": "\uc7a5\uba74",
"ButtonSubtitles": "\uc790\ub9c9", "ButtonSubtitles": "\uc790\ub9c9",
"ButtonPreviousTrack": "\uc774\uc804 \ud2b8\ub799", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "\ub2e4\uc74c \ud2b8\ub799", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "\uc911\uc9c0", "ButtonStop": "\uc911\uc9c0",
"ButtonPause": "\uc77c\uc2dc \uc911\uc9c0", "ButtonPause": "\uc77c\uc2dc \uc911\uc9c0",
"ButtonNext": "\ub2e4\uc74c", "ButtonNext": "\ub2e4\uc74c",
@ -912,6 +920,7 @@
"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.", "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": "\uc774 \uc7ac\uc0dd\ubaa9\ub85d\uc740 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.", "MessageNoPlaylistItemsAvailable": "\uc774 \uc7ac\uc0dd\ubaa9\ub85d\uc740 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "\uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c, \uc774\ubbf8\uc9c0, \uac1c\uc778 \uc124\uc815\uc744 \ud3b8\uc9d1\ud569\ub2c8\ub2e4.", "ButtonEditOtherUserPreferences": "\uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c, \uc774\ubbf8\uc9c0, \uac1c\uc778 \uc124\uc815\uc744 \ud3b8\uc9d1\ud569\ub2c8\ub2e4.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "\ub300\uc5ed\ud3ed\uc774 \ub0ae\uc740 \ud658\uacbd\uc5d0\uc11c \ud488\uc9c8\uc744 \uc81c\ud55c\ud558\uba74 \ubd80\ub4dc\ub7ec\uc6b4 \uc2a4\ud2b8\ub9ac\ubc0d\uc744 \uc720\uc9c0\ud558\ub294\ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.", "LabelChannelStreamQualityHelp": "\ub300\uc5ed\ud3ed\uc774 \ub0ae\uc740 \ud658\uacbd\uc5d0\uc11c \ud488\uc9c8\uc744 \uc81c\ud55c\ud558\uba74 \ubd80\ub4dc\ub7ec\uc6b4 \uc2a4\ud2b8\ub9ac\ubc0d\uc744 \uc720\uc9c0\ud558\ub294\ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "\uc2dc\uc98c 0", "OptionSeason0": "\uc2dc\uc98c 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "\ub178\ub798", "OptionReportSongs": "\ub178\ub798",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "\uc544\ud2f0\uc2a4\ud2b8", "OptionReportArtists": "\uc544\ud2f0\uc2a4\ud2b8",
"OptionReportAlbums": "\uc568\ubc94", "OptionReportAlbums": "\uc568\ubc94",
"OptionReportAdultVideos": "\uc131\uc778 \ube44\ub514\uc624", "OptionReportAdultVideos": "\uc131\uc778 \ube44\ub514\uc624",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} \uc2dc\uc791\ub428", "ScheduledTaskStartedWithName": "{0} \uc2dc\uc791\ub428",
"ScheduledTaskCancelledWithName": "{0} \ucde8\uc18c\ub428", "ScheduledTaskCancelledWithName": "{0} \ucde8\uc18c\ub428",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "\ube44\ubc00\ubc88\ud638 \ucd08\uae30\ud654", "HeaderPasswordReset": "\ube44\ubc00\ubc88\ud638 \ucd08\uae30\ud654",
"HeaderParentalRatings": "\uc790\ub140 \ubcf4\ud638 \ub4f1\uae09", "HeaderParentalRatings": "\uc790\ub140 \ubcf4\ud638 \ub4f1\uae09",
"HeaderVideoTypes": "\ube44\ub514\uc624 \uc885\ub958", "HeaderVideoTypes": "\ube44\ub514\uc624 \uc885\ub958",
"HeaderYears": "\uc5f0\ub3c4",
"HeaderBlockItemsWithNoRating": "\ub4f1\uae09 \uc815\ubcf4\uac00 \uc5c6\uac70\ub098 \uc54c \uc218 \uc5c6\ub294 \ucf58\ud14c\ud2b8 \ucc28\ub2e8:", "HeaderBlockItemsWithNoRating": "\ub4f1\uae09 \uc815\ubcf4\uac00 \uc5c6\uac70\ub098 \uc54c \uc218 \uc5c6\ub294 \ucf58\ud14c\ud2b8 \ucc28\ub2e8:",
"LabelBlockContentWithTags": "\ub2e4\uc74c \ud0dc\uadf8\uac00 \uc788\ub294 \ucf58\ud150\ud2b8 \ucc28\ub2e8:", "LabelBlockContentWithTags": "\ub2e4\uc74c \ud0dc\uadf8\uac00 \uc788\ub294 \ucf58\ud150\ud2b8 \ucc28\ub2e8:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "\uac1c\ubd09 \uc608\uc815 \uc601\ud654", "HeaderUpcomingMovies": "\uac1c\ubd09 \uc608\uc815 \uc601\ud654",
"HeaderUpcomingSports": "\uc608\uc815 \uc2a4\ud3ec\uce20", "HeaderUpcomingSports": "\uc608\uc815 \uc2a4\ud3ec\uce20",
"HeaderUpcomingPrograms": "\uc608\uc815 \ud504\ub85c\uadf8\ub7a8", "HeaderUpcomingPrograms": "\uc608\uc815 \ud504\ub85c\uadf8\ub7a8",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "throttling \uc0ac\uc6a9", "OptionEnableTranscodingThrottle": "throttling \uc0ac\uc6a9",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "\uc790\ub3d9 \uc2dc\ub9ac\uc988 \ub179\ud654\ub97c \uc608\uc57d\ud558\ub824\uba74 Emby \ud504\ub9ac\ubbf8\uc5b4 \uac00\uc785\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.", "MessageActiveSubscriptionRequiredSeriesRecordings": "\uc790\ub3d9 \uc2dc\ub9ac\uc988 \ub179\ud654\ub97c \uc608\uc57d\ud558\ub824\uba74 Emby \ud504\ub9ac\ubbf8\uc5b4 \uac00\uc785\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.",
"HeaderSetupTVGuide": "TV \uac00\uc774\ub4dc \uc124\uc815", "HeaderSetupTVGuide": "TV \uac00\uc774\ub4dc \uc124\uc815",
"LabelDataProvider": "\ub370\uc774\ud130 \uc81c\uacf5\uc790:", "LabelDataProvider": "\ub370\uc774\ud130 \uc81c\uacf5\uc790:",
"OptionSendRecordingsToAutoOrganize": "\uc0c8 \ub179\ud654\uc5d0 \uc790\ub3d9 \uad6c\uc131 \uc0ac\uc6a9", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "\uc0c8 \ub179\ud654\ub97c \uc790\ub3d9 \uad6c\uc131 \uae30\ub2a5\uc744 \uac70\uce5c \ud6c4 \ubbf8\ub514\uc5b4 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c \uac00\uc838\uc635\ub2c8\ub2e4.", "OptionSendRecordingsToAutoOrganizeHelp": "\uc0c8 \ub179\ud654\ub97c \uc790\ub3d9 \uad6c\uc131 \uae30\ub2a5\uc744 \uac70\uce5c \ud6c4 \ubbf8\ub514\uc5b4 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c \uac00\uc838\uc635\ub2c8\ub2e4.",
"HeaderDefaultPadding": "\uae30\ubcf8 \uc5ec\ubc31", "HeaderDefaultPadding": "\uae30\ubcf8 \uc5ec\ubc31",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "\uc790\ub9c9", "HeaderSubtitles": "\uc790\ub9c9",
"HeaderVideos": "\ube44\ub514\uc624", "HeaderVideos": "\ube44\ub514\uc624",
"OptionEnableVideoFrameAnalysis": "\ud504\ub808\uc784 \ub2e8\uc704 \ube44\ub514\uc624 \ubd84\uc11d \uc0ac\uc6a9", "OptionEnableVideoFrameAnalysis": "\ud504\ub808\uc784 \ub2e8\uc704 \ube44\ub514\uc624 \ubd84\uc11d \uc0ac\uc6a9",
@ -1592,7 +1601,7 @@
"LabelEpisode": "\uc5d0\ud53c\uc18c\ub4dc", "LabelEpisode": "\uc5d0\ud53c\uc18c\ub4dc",
"Series": "Series", "Series": "Series",
"LabelStopping": "Stopping", "LabelStopping": "Stopping",
"LabelCancelled": "(\ucde8\uc18c\ub428)", "LabelCancelled": "Cancelled",
"ButtonDownload": "\ub2e4\uc6b4\ub85c\ub4dc", "ButtonDownload": "\ub2e4\uc6b4\ub85c\ub4dc",
"SyncJobStatusQueued": "\ub300\uae30", "SyncJobStatusQueued": "\ub300\uae30",
"SyncJobStatusConverting": "\ubcc0\ud658 \uc911", "SyncJobStatusConverting": "\ubcc0\ud658 \uc911",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "\uc790\ub3d9 \uad6c\uc131", "TabAutoOrganize": "\uc790\ub3d9 \uad6c\uc131",
"TabPlugins": "\ud50c\ub7ec\uadf8\uc778", "TabPlugins": "\ud50c\ub7ec\uadf8\uc778",
"TabHelp": "\ub3c4\uc6c0\ub9d0", "TabHelp": "\ub3c4\uc6c0\ub9d0",
"ButtonFullscreen": "\uc804\uccb4\ud654\uba74 \uc804\ud658",
"ButtonAudioTracks": "\uc624\ub514\uc624 \ud2b8\ub799",
"ButtonQuality": "\ud488\uc9c8", "ButtonQuality": "\ud488\uc9c8",
"HeaderNotifications": "\uc54c\ub9bc", "HeaderNotifications": "\uc54c\ub9bc",
"HeaderSelectPlayer": "\ud50c\ub808\uc774\uc5b4 \uc120\ud0dd", "HeaderSelectPlayer": "\ud50c\ub808\uc774\uc5b4 \uc120\ud0dd",
@ -1895,16 +1902,16 @@
"HeaderResolution": "\ud574\uc0c1\ub3c4", "HeaderResolution": "\ud574\uc0c1\ub3c4",
"HeaderRuntime": "\uc0c1\uc601 \uc2dc\uac04", "HeaderRuntime": "\uc0c1\uc601 \uc2dc\uac04",
"HeaderCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810", "HeaderCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "\uac1c\ubd09\uc77c", "HeaderReleaseDate": "\uac1c\ubd09\uc77c",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "\uc2dc\uc98c", "HeaderSeason": "\uc2dc\uc98c",
"HeaderSeasonNumber": "\uc2dc\uc98c \ubc88\ud638", "HeaderSeasonNumber": "\uc2dc\uc98c \ubc88\ud638",
"HeaderNetwork": "\ub124\ud2b8\uc6cc\ud06c", "HeaderNetwork": "\ub124\ud2b8\uc6cc\ud06c",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "\uac8c\uc784 \uc2dc\uc2a4\ud15c", "HeaderGameSystem": "\uac8c\uc784 \uc2dc\uc2a4\ud15c",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "\ub0b4\uc7a5 \uc774\ubbf8\uc9c0", "HeaderEmbeddedImage": "\ub0b4\uc7a5 \uc774\ubbf8\uc9c0",
"HeaderTrack": "\ud2b8\ub799", "HeaderTrack": "\ud2b8\ub799",
"HeaderDisc": "\ub514\uc2a4\ud06c", "HeaderDisc": "\ub514\uc2a4\ud06c",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "\uc568\ubc94", "HeaderAlbums": "\uc568\ubc94",
"HeaderGames": "\uac8c\uc784", "HeaderGames": "\uac8c\uc784",
"HeaderBooks": "\ucc45", "HeaderBooks": "\ucc45",
"HeaderEpisodes": "\uc5d0\ud53c\uc18c\ub4dc:",
"HeaderSeasons": "\uc2dc\uc98c", "HeaderSeasons": "\uc2dc\uc98c",
"HeaderTracks": "\ud2b8\ub799", "HeaderTracks": "\ud2b8\ub799",
"HeaderItems": "\ud56d\ubaa9", "HeaderItems": "\ud56d\ubaa9",
@ -2098,6 +2104,9 @@
"LabelFullReview": "\uc0c1\uc138 \ub9ac\ubdf0:", "LabelFullReview": "\uc0c1\uc138 \ub9ac\ubdf0:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "\uc774 \ud56d\ubaa9 \ucd94\ucc9c", "OptionIRecommendThisItem": "\uc774 \ud56d\ubaa9 \ucd94\ucc9c",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "\uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc778 \uc0ac\uc6a9\uc790\uba85\uc785\ub2c8\ub2e4. \ub2e4\ub978 \uc774\ub984\uc73c\ub85c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", "ErrorMessageUsernameInUse": "\uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc778 \uc0ac\uc6a9\uc790\uba85\uc785\ub2c8\ub2e4. \ub2e4\ub978 \uc774\ub984\uc73c\ub85c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.",
"ErrorMessageEmailInUse": "\uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc778 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4. \ub2e4\ub978 \uc774\uba54\uc77c \uc8fc\uc18c\ub85c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uac70\ub098 \ube44\ubc00\ubc88\ud638 \ubd84\uc2e4 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc138\uc694.", "ErrorMessageEmailInUse": "\uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc778 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4. \ub2e4\ub978 \uc774\uba54\uc77c \uc8fc\uc18c\ub85c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uac70\ub098 \ube44\ubc00\ubc88\ud638 \ubd84\uc2e4 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc138\uc694.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "\uacf5\uc720", "HeaderShare": "\uacf5\uc720",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "\uacf5\uc720", "ButtonShare": "\uacf5\uc720",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "\ub3d9\uae30\ud654\ub294 \uc11c\ud3ec\ud130 \uba64\ubc84\uc2ed\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Tutup", "LabelExit": "Tutup",
"LabelVisitCommunity": "Melawat Masyarakat", "LabelVisitCommunity": "Melawat Masyarakat",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Afsluiten", "LabelExit": "Afsluiten",
"LabelVisitCommunity": "Bezoek Gemeenschap", "LabelVisitCommunity": "Bezoek Gemeenschap",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configureer pincode", "ButtonConfigurePinCode": "Configureer pincode",
"HeaderAdultsReadHere": "Volwassenen Lees hier!", "HeaderAdultsReadHere": "Volwassenen Lees hier!",
"RegisterWithPayPal": "Registreer met PayPal", "RegisterWithPayPal": "Registreer met PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync Vereist een actief Premiere lidmaatschap.",
"HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie", "HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie",
"LabelSyncTempPath": "Pad voor tijdelijke bestanden:", "LabelSyncTempPath": "Pad voor tijdelijke bestanden:",
"LabelSyncTempPathHelp": "Geef een afwijkende sync werk directory op. Tijdens het sync proces aangemaakte geconverteerde media zal hier opgeslagen worden.", "LabelSyncTempPathHelp": "Geef een afwijkende sync werk directory op. Tijdens het sync proces aangemaakte geconverteerde media zal hier opgeslagen worden.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Gemengde inhoud", "FolderTypeMixed": "Gemengde inhoud",
"FolderTypeMovies": "Films", "FolderTypeMovies": "Films",
"FolderTypeMusic": "Muziek", "FolderTypeMusic": "Muziek",
"FolderTypeAdultVideos": "Adult video's",
"FolderTypePhotos": "Foto's", "FolderTypePhotos": "Foto's",
"FolderTypeMusicVideos": "Muziek video's", "FolderTypeMusicVideos": "Muziek video's",
"FolderTypeHomeVideos": "Thuis video's", "FolderTypeHomeVideos": "Thuis video's",
@ -202,7 +205,7 @@
"OptionAscending": "Oplopend", "OptionAscending": "Oplopend",
"OptionDescending": "Aflopend", "OptionDescending": "Aflopend",
"OptionRuntime": "Speelduur", "OptionRuntime": "Speelduur",
"OptionReleaseDate": "Uitgave datum", "OptionReleaseDate": "Datum van uitgifte",
"OptionPlayCount": "Afspeel telling", "OptionPlayCount": "Afspeel telling",
"OptionDatePlayed": "Datum afgespeeld", "OptionDatePlayed": "Datum afgespeeld",
"OptionDateAdded": "Datum toegevoegd", "OptionDateAdded": "Datum toegevoegd",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Inkomsten", "OptionRevenue": "Inkomsten",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Jaren",
"OptionPosterCard": "Poster kaart", "OptionPosterCard": "Poster kaart",
"OptionBackdrop": "Achtergrond", "OptionBackdrop": "Achtergrond",
"OptionTimeline": "Tijdlijn", "OptionTimeline": "Tijdlijn",
@ -266,13 +270,13 @@
"OptionContinuing": "Wordt vervolgd...", "OptionContinuing": "Wordt vervolgd...",
"OptionEnded": "Gestopt", "OptionEnded": "Gestopt",
"HeaderAirDays": "Uitzend Dagen", "HeaderAirDays": "Uitzend Dagen",
"OptionSundayShort": "Sun", "OptionSundayShort": "Zo",
"OptionMondayShort": "Mon", "OptionMondayShort": "Ma",
"OptionTuesdayShort": "Tue", "OptionTuesdayShort": "Di",
"OptionWednesdayShort": "Wed", "OptionWednesdayShort": "Wo",
"OptionThursdayShort": "Thu", "OptionThursdayShort": "Do",
"OptionFridayShort": "Fri", "OptionFridayShort": "Vr",
"OptionSaturdayShort": "Sat", "OptionSaturdayShort": "Za",
"OptionSunday": "Zondag", "OptionSunday": "Zondag",
"OptionMonday": "Maandag", "OptionMonday": "Maandag",
"OptionTuesday": "Dinsdag", "OptionTuesday": "Dinsdag",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Selecteer", "ButtonSelect": "Selecteer",
"ButtonGroupVersions": "Groepeer Versies", "ButtonGroupVersions": "Groepeer Versies",
"ButtonAddToCollection": "Toevoegen aan Collectie", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Pismo File Mount (met een geschonken licentie).", "PismoMessage": "Pismo File Mount (met een geschonken licentie).",
"TangibleSoftwareMessage": "Gebruik makend van concrete oplossingen als Java \/ C converters door een geschonken licentie.", "TangibleSoftwareMessage": "Gebruik makend van concrete oplossingen als Java \/ C converters door een geschonken licentie.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Geef aangepaste paden op waar gewenst. Laat velden leeg om de standaardinstellingen te gebruiken.", "LabelCustomPaths": "Geef aangepaste paden op waar gewenst. Laat velden leeg om de standaardinstellingen te gebruiken.",
"LabelCachePath": "Cache pad:", "LabelCachePath": "Cache pad:",
"LabelCachePathHelp": "Geef een aangepaste lokatie voor cache bestanden zoals afbeeldingen. Laat leeg om de standaard lokatie te gebruiken.", "LabelCachePathHelp": "Geef een aangepaste lokatie voor cache bestanden zoals afbeeldingen. Laat leeg om de standaard lokatie te gebruiken.",
"LabelRecordingPath": "Opname pad:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Geef een aangepaste lokatie voor opnamen. Laat leeg om de standaard lokatie te gebruiken.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Afbeeldingen op naam pad:", "LabelImagesByNamePath": "Afbeeldingen op naam pad:",
"LabelImagesByNamePathHelp": "Geef een locatie op voor gedownloade afbeeldingen van acteurs, genre en studio.", "LabelImagesByNamePathHelp": "Geef een locatie op voor gedownloade afbeeldingen van acteurs, genre en studio.",
"LabelMetadataPath": "Metadata pad:", "LabelMetadataPath": "Metadata pad:",
@ -489,7 +495,7 @@
"HeaderCastCrew": "Cast & Crew", "HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Extra onderdelen", "HeaderAdditionalParts": "Extra onderdelen",
"ButtonSplitVersionsApart": "Splits Versies Apart", "ButtonSplitVersionsApart": "Splits Versies Apart",
"ButtonPlayTrailer": "Trailer", "ButtonPlayTrailer": "Trailer afspelen",
"LabelMissing": "Ontbreekt", "LabelMissing": "Ontbreekt",
"LabelOffline": "Offline", "LabelOffline": "Offline",
"PathSubstitutionHelp": "Pad vervangingen worden gebruikt om een pad op de server te vertalen naar een pad dat de client in staat stelt om toegang te krijgen. Doordat de client directe toegang tot de media op de server heeft is deze in staat om ze direct af te spelen via het netwerk. Daardoor wordt het gebruik van server resources om te streamen en te transcoderen vermeden.", "PathSubstitutionHelp": "Pad vervangingen worden gebruikt om een pad op de server te vertalen naar een pad dat de client in staat stelt om toegang te krijgen. Doordat de client directe toegang tot de media op de server heeft is deze in staat om ze direct af te spelen via het netwerk. Daardoor wordt het gebruik van server resources om te streamen en te transcoderen vermeden.",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket poortnummer:", "LabelWebSocketPortNumber": "Web socket poortnummer:",
"LabelEnableAutomaticPortMap": "Schakel automatisch poort vertalen in", "LabelEnableAutomaticPortMap": "Schakel automatisch poort vertalen in",
"LabelEnableAutomaticPortMapHelp": "Probeer om de publieke poort automatisch te vertalen naar de lokale poort via UPnP. Dit werkt niet op alle routers.", "LabelEnableAutomaticPortMapHelp": "Probeer om de publieke poort automatisch te vertalen naar de lokale poort via UPnP. Dit werkt niet op alle routers.",
"LabelExternalDDNS": "Extern WAN Adres:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Als u een dynamische DNS heeft moet dit hier worden ingevoerd. Emby apps zullen het gebruiken als externe verbinding. Laat leeg voor automatische detectie", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Hervatten", "TabResume": "Hervatten",
"TabWeather": "Weer", "TabWeather": "Weer",
"TitleAppSettings": "App Instellingen", "TitleAppSettings": "App Instellingen",
@ -586,8 +592,8 @@
"LabelSkipped": "Overgeslagen", "LabelSkipped": "Overgeslagen",
"HeaderEpisodeOrganization": "Afleveringen Organisatie", "HeaderEpisodeOrganization": "Afleveringen Organisatie",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Seizoensnummer", "LabelSeasonNumber": "Seizoen nummer:",
"LabelEpisodeNumber": "Afleveringsnummer", "LabelEpisodeNumber": "Aflevering nummer:",
"LabelEndingEpisodeNumber": "Laatste aflevering nummer:", "LabelEndingEpisodeNumber": "Laatste aflevering nummer:",
"LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen", "LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen",
"OptionRememberOrganizeCorrection": "Bewaar correctie en gebruik deze bij toekomstige bestanden met een lijkende naam", "OptionRememberOrganizeCorrection": "Bewaar correctie en gebruik deze bij toekomstige bestanden met een lijkende naam",
@ -726,10 +732,12 @@
"TabNowPlaying": "Wordt nu afgespeeld", "TabNowPlaying": "Wordt nu afgespeeld",
"TabNavigation": "Navigatie", "TabNavigation": "Navigatie",
"TabControls": "Besturing", "TabControls": "Besturing",
"ButtonFullscreen": "Volledig scherm",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Ondertiteling", "ButtonSubtitles": "Ondertiteling",
"ButtonPreviousTrack": "Vorige track", "ButtonPreviousTrack": "Vorig nummer",
"ButtonNextTrack": "Volgende track", "ButtonNextTrack": "Volgend nummer",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pauze", "ButtonPause": "Pauze",
"ButtonNext": "Volgende", "ButtonNext": "Volgende",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Met afspeellijsten kunt u een lijst maken waarvan de items achter elkaar afgespeeld worden. Om een item toe te voegen klikt u met rechts of tik en houd het vast om het te selecteren, klik vervolgens op Toevoegen aan afspeellijst.", "MessageNoPlaylistsAvailable": "Met afspeellijsten kunt u een lijst maken waarvan de items achter elkaar afgespeeld worden. Om een item toe te voegen klikt u met rechts of tik en houd het vast om het te selecteren, klik vervolgens op Toevoegen aan afspeellijst.",
"MessageNoPlaylistItemsAvailable": "De afspeellijst is momenteel leeg.", "MessageNoPlaylistItemsAvailable": "De afspeellijst is momenteel leeg.",
"ButtonDismiss": "Afwijzen", "ButtonDismiss": "Afwijzen",
"ButtonMore": "Meer",
"ButtonEditOtherUserPreferences": "Wijzig het profiel, afbeelding en persoonlijke voorkeuren van deze gebruiker.", "ButtonEditOtherUserPreferences": "Wijzig het profiel, afbeelding en persoonlijke voorkeuren van deze gebruiker.",
"LabelChannelStreamQuality": "Voorkeurs kwaliteit voor internet kanaal:", "LabelChannelStreamQuality": "Voorkeurs kwaliteit voor internet kanaal:",
"LabelChannelStreamQualityHelp": "Bij weinig beschikbare bandbreedte kan het verminderen van de kwaliteit betere streams opleveren.", "LabelChannelStreamQualityHelp": "Bij weinig beschikbare bandbreedte kan het verminderen van de kwaliteit betere streams opleveren.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Onge\u00efdentificeerd", "OptionUnidentified": "Onge\u00efdentificeerd",
"OptionMissingParentalRating": "Ontbrekende kijkwijzer classificatie", "OptionMissingParentalRating": "Ontbrekende kijkwijzer classificatie",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Afleveringen",
"OptionSeason0": "Seizoen 0", "OptionSeason0": "Seizoen 0",
"LabelReport": "Rapport:", "LabelReport": "Rapport:",
"OptionReportSongs": "Nummers", "OptionReportSongs": "Nummers",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artiesten", "OptionReportArtists": "Artiesten",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult video's", "OptionReportAdultVideos": "Adult video's",
"ButtonMore": "Meer", "ButtonMoreItems": "Meer",
"HeaderActivity": "Activiteit", "HeaderActivity": "Activiteit",
"ScheduledTaskStartedWithName": "{0} is gestart", "ScheduledTaskStartedWithName": "{0} is gestart",
"ScheduledTaskCancelledWithName": "{0} is geannuleerd", "ScheduledTaskCancelledWithName": "{0} is geannuleerd",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Wachtwoord resetten", "HeaderPasswordReset": "Wachtwoord resetten",
"HeaderParentalRatings": "Ouderlijke toezicht", "HeaderParentalRatings": "Ouderlijke toezicht",
"HeaderVideoTypes": "Video types", "HeaderVideoTypes": "Video types",
"HeaderYears": "Jaren",
"HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder- of met niet herkende classificatiegegevens:", "HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder- of met niet herkende classificatiegegevens:",
"LabelBlockContentWithTags": "Blokkeer inhoud met labels:", "LabelBlockContentWithTags": "Blokkeer inhoud met labels:",
"LabelEnableSingleImageInDidlLimit": "Beperk tot \u00e9\u00e9n enkele ingesloten afbeelding", "LabelEnableSingleImageInDidlLimit": "Beperk tot \u00e9\u00e9n enkele ingesloten afbeelding",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Films binnenkort", "HeaderUpcomingMovies": "Films binnenkort",
"HeaderUpcomingSports": "Sport binnenkort", "HeaderUpcomingSports": "Sport binnenkort",
"HeaderUpcomingPrograms": "Programma's binnenkort", "HeaderUpcomingPrograms": "Programma's binnenkort",
"ButtonMoreItems": "Meer",
"LabelShowLibraryTileNames": "Toon bibliotheek tegel namen", "LabelShowLibraryTileNames": "Toon bibliotheek tegel namen",
"LabelShowLibraryTileNamesHelp": "Bepaalt of labels onder de bibliotheek tegels zullen worden weergegeven op de startpagina", "LabelShowLibraryTileNamesHelp": "Bepaalt of labels onder de bibliotheek tegels zullen worden weergegeven op de startpagina",
"OptionEnableTranscodingThrottle": "Throtteling inschakelen", "OptionEnableTranscodingThrottle": "Throtteling inschakelen",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Emby Premiere abonnement benodigd om een automatische serie opname aan te maken.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Emby Premiere abonnement benodigd om een automatische serie opname aan te maken.",
"HeaderSetupTVGuide": "TV Gids configureren", "HeaderSetupTVGuide": "TV Gids configureren",
"LabelDataProvider": "Gegevensleverancier:", "LabelDataProvider": "Gegevensleverancier:",
"OptionSendRecordingsToAutoOrganize": "Schakel Automatisch Organiseren in voor nieuwe opnamen", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Nieuwe opnamen zullen door de Automatisch Organiseren functionaliteit in uw media bilbiliotheek ge\u00efmporteerd worden.", "OptionSendRecordingsToAutoOrganizeHelp": "Nieuwe opnamen zullen door de Automatisch Organiseren functionaliteit in uw media bilbiliotheek ge\u00efmporteerd worden.",
"HeaderDefaultPadding": "Standaard 'Padding'", "HeaderDefaultPadding": "Standaard 'Padding'",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Ondertiteling", "HeaderSubtitles": "Ondertiteling",
"HeaderVideos": "Video's", "HeaderVideos": "Video's",
"OptionEnableVideoFrameAnalysis": "Frame voor frame video-analyse inschakelen", "OptionEnableVideoFrameAnalysis": "Frame voor frame video-analyse inschakelen",
@ -1852,8 +1861,8 @@
"OptionProductionLocations": "Productie Locaties", "OptionProductionLocations": "Productie Locaties",
"OptionBirthLocation": "Geboorte Locatie", "OptionBirthLocation": "Geboorte Locatie",
"LabelAllChannels": "Alle kanalen", "LabelAllChannels": "Alle kanalen",
"AttributeNew": "New", "AttributeNew": "Nieuw",
"AttributePremiere": "Premiere", "AttributePremiere": "Premi\u00e8re",
"AttributeLive": "Live", "AttributeLive": "Live",
"LabelHDProgram": "HD", "LabelHDProgram": "HD",
"HeaderChangeFolderType": "Verander Content Type", "HeaderChangeFolderType": "Verander Content Type",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Autom. Organiseren", "TabAutoOrganize": "Autom. Organiseren",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Hulp", "TabHelp": "Hulp",
"ButtonFullscreen": "Schakelen tussen volledig scherm ",
"ButtonAudioTracks": "Geluidssporen",
"ButtonQuality": "Kwaliteit", "ButtonQuality": "Kwaliteit",
"HeaderNotifications": "Meldingen", "HeaderNotifications": "Meldingen",
"HeaderSelectPlayer": "Selecteer Speler", "HeaderSelectPlayer": "Selecteer Speler",
@ -1898,13 +1905,13 @@
"HeaderParentalRating": "Kijkwijzer classificatie", "HeaderParentalRating": "Kijkwijzer classificatie",
"HeaderReleaseDate": "Uitgave datum", "HeaderReleaseDate": "Uitgave datum",
"HeaderDateAdded": "Datum toegevoegd", "HeaderDateAdded": "Datum toegevoegd",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Seizoen", "HeaderSeason": "Seizoen",
"HeaderSeasonNumber": "Seizoen nummer", "HeaderSeasonNumber": "Seizoen nummer",
"HeaderNetwork": "Zender", "HeaderNetwork": "Zender",
"HeaderYear": "Jaar", "HeaderYear": "Jaar:",
"HeaderGameSystem": "Game systeem", "HeaderGameSystem": "Game systeem",
"HeaderPlayers": "Spelers", "HeaderPlayers": "Spelers:",
"HeaderEmbeddedImage": "Ingesloten afbeelding", "HeaderEmbeddedImage": "Ingesloten afbeelding",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Schijf", "HeaderDisc": "Schijf",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Boeken", "HeaderBooks": "Boeken",
"HeaderEpisodes": "Afleveringen:",
"HeaderSeasons": "Seizoenen", "HeaderSeasons": "Seizoenen",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Volledige beoordeling:", "LabelFullReview": "Volledige beoordeling:",
"LabelShortRatingDescription": "Korte beoordeling overzicht:", "LabelShortRatingDescription": "Korte beoordeling overzicht:",
"OptionIRecommendThisItem": "Ik beveel dit item aan", "OptionIRecommendThisItem": "Ik beveel dit item aan",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Bekijk uw recent toegevoegde media, volgende afleveringen, en meer. De groene cirkels geven aan hoeveel afgespeelde items u heeft.", "WebClientTourContent": "Bekijk uw recent toegevoegde media, volgende afleveringen, en meer. De groene cirkels geven aan hoeveel afgespeelde items u heeft.",
"WebClientTourMovies": "Speel films, trailers en meer van elk apparaat met een webbrowser", "WebClientTourMovies": "Speel films, trailers en meer van elk apparaat met een webbrowser",
"WebClientTourMouseOver": "Houd de muis over een poster voor snelle toegang tot belangrijke informatie", "WebClientTourMouseOver": "Houd de muis over een poster voor snelle toegang tot belangrijke informatie",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "Deze gebruikersnaam is al in gebruik. Kies een andere en probeer het opnieuw.", "ErrorMessageUsernameInUse": "Deze gebruikersnaam is al in gebruik. Kies een andere en probeer het opnieuw.",
"ErrorMessageEmailInUse": "Dit emailadres is al in gebruik. Kies een ander en probeer het opnieuw, of gebruik de vergeten wachtwoord functie.", "ErrorMessageEmailInUse": "Dit emailadres is al in gebruik. Kies een ander en probeer het opnieuw, of gebruik de vergeten wachtwoord functie.",
"MessageThankYouForConnectSignUp": "Bedankt voor het aanmelden bij Emby Connect. Een e-mail met instructies hoe uw account bevestigd moet worden wordt verstuurd. Bevestig het account en keer terug om aan te melden.", "MessageThankYouForConnectSignUp": "Bedankt voor het aanmelden bij Emby Connect. Een e-mail met instructies hoe uw account bevestigd moet worden wordt verstuurd. Bevestig het account en keer terug om aan te melden.",
"Share": "Share",
"HeaderShare": "Delen", "HeaderShare": "Delen",
"ButtonShareHelp": "Deel een webpagina met media-informatie met sociale media. Media-bestanden worden nooit publiekelijk gedeeld.", "ButtonShareHelp": "Deel een webpagina met media-informatie met sociale media. Media-bestanden worden nooit publiekelijk gedeeld.",
"ButtonShare": "Delen", "ButtonShare": "Delen",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Wist u dat u met Emby Premiere uw ervaring met functies zoals Cinema Mode kunt verbeteren?", "MessageDidYouKnowCinemaMode": "Wist u dat u met Emby Premiere uw ervaring met functies zoals Cinema Mode kunt verbeteren?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.", "MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.",
"OptionEnableDisplayMirroring": "Schakel beeld spiegeling in", "OptionEnableDisplayMirroring": "Schakel beeld spiegeling in",
"HeaderSyncRequiresSupporterMembership": "Synchroniseren vereist een Supporter Lidmaatschap",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync vereist een verbinding met een Emby Server met een actief Emby Premiere abonnement.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync vereist een verbinding met een Emby Server met een actief Emby Premiere abonnement.",
"ErrorValidatingSupporterInfo": "Er is een fout bij het valideren van uw Emby Premiere gegevens . Probeer het later opnieuw.", "ErrorValidatingSupporterInfo": "Er is een fout bij het valideren van uw Emby Premiere gegevens . Probeer het later opnieuw.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2342,12 +2351,18 @@
"ErrorAddingGuestAccount1": "Er is een fout opgetreden bij het toevoegen van het Emby Connect-account. Heeft uw gast een Emby-account aangemaakt? Zij kunnen zich aanmelden op {0}.", "ErrorAddingGuestAccount1": "Er is een fout opgetreden bij het toevoegen van het Emby Connect-account. Heeft uw gast een Emby-account aangemaakt? Zij kunnen zich aanmelden op {0}.",
"ErrorAddingGuestAccount2": "Zorg ervoor dat uw gasten activering voltooien door het volgen van de instructies in de verzonden e-mail nadat u de account hebt gemaakt. Als ze deze e-mail niet ontvangen stuur dan alstublieft een mailtje naar {0}, met daarin uw e-mailadres, als ook het e-mailadres van uw gast.", "ErrorAddingGuestAccount2": "Zorg ervoor dat uw gasten activering voltooien door het volgen van de instructies in de verzonden e-mail nadat u de account hebt gemaakt. Als ze deze e-mail niet ontvangen stuur dan alstublieft een mailtje naar {0}, met daarin uw e-mailadres, als ook het e-mailadres van uw gast.",
"GuestUserNotFound": "Gebruiker is niet gevonden. Zorg er voor dat de naam klopt en probeer het opnieuw, of probeer hun e-mailadres in te voeren.", "GuestUserNotFound": "Gebruiker is niet gevonden. Zorg er voor dat de naam klopt en probeer het opnieuw, of probeer hun e-mailadres in te voeren.",
"MarkPlayed": "Mark played", "MarkPlayed": "Markeren als Afgespeeld",
"MarkUnplayed": "Mark unplayed", "MarkUnplayed": "Markeren als Niet Afgespeeld",
"Yesterday": "Yesterday", "Yesterday": "Gisteren",
"DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", "DownloadImagesInAdvanceWarning": "Alle foto's van te voren downloaden zal resulteren in langere bibliotheek scantijden.",
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Veranderen van metadata instellingen zal nieuwe content die wordt toegevoegd be\u00efnvloeden. Om de bestaande inhoud te vernieuwen, opent u het detail scherm en klik op de knop Vernieuwen, of doe een bulk vernieuwing met behulp van de metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Titel:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Orginele titel:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sorteer titel:",
"OptionConvertRecordingPreserveAudio": "Behoud van originele audio bij het converteren opnamen",
"OptionConvertRecordingPreserveAudioHelp": "Dit zal betere audio leveren, maar kan transcodering nodig hebben tijdens het afspelen op sommige apparaten.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Wyj\u015bcie", "LabelExit": "Wyj\u015bcie",
"LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107", "LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Konfiguruj kod pin", "ButtonConfigurePinCode": "Konfiguruj kod pin",
"HeaderAdultsReadHere": "Doro\u015bli czyta\u0107!", "HeaderAdultsReadHere": "Doro\u015bli czyta\u0107!",
"RegisterWithPayPal": "Zarejestruj z PayPal", "RegisterWithPayPal": "Zarejestruj z PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Mi\u0142ego 14 dniowego okresu pr\u00f3bnego", "HeaderEnjoyDayTrial": "Mi\u0142ego 14 dniowego okresu pr\u00f3bnego",
"LabelSyncTempPath": "\u015acie\u017cka do plik\u00f3w tymczasowych:", "LabelSyncTempPath": "\u015acie\u017cka do plik\u00f3w tymczasowych:",
"LabelSyncTempPathHelp": "Okre\u015b w\u0142asny folder synchronizacji. Utworzone skonwertowane media podczas synchronizacji b\u0119d\u0105 zapisywane tutaj.", "LabelSyncTempPathHelp": "Okre\u015b w\u0142asny folder synchronizacji. Utworzone skonwertowane media podczas synchronizacji b\u0119d\u0105 zapisywane tutaj.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "W\u0142\u0105cz rozszerzone wy\u015bwietlanie film\u00f3w", "LabelEnableEnhancedMovies": "W\u0142\u0105cz rozszerzone wy\u015bwietlanie film\u00f3w",
"LabelEnableEnhancedMoviesHelp": "Je\u015bli w\u0142\u0105czone, filmy bed\u0105 wy\u015bwitlane jako foldery aby zawiera\u0107 trailery, dodatki, obsade i ekip\u0119, oraz inn\u0105 powi\u0105zan\u0105 zawarto\u015b\u0107.", "LabelEnableEnhancedMoviesHelp": "Je\u015bli w\u0142\u0105czone, filmy bed\u0105 wy\u015bwitlane jako foldery aby zawiera\u0107 trailery, dodatki, obsade i ekip\u0119, oraz inn\u0105 powi\u0105zan\u0105 zawarto\u015b\u0107.",
"HeaderSyncJobInfo": "Zadanie synchronizacji", "HeaderSyncJobInfo": "Zadanie synchronizacji",
"FolderTypeMixed": "R\u00f3\u017cna zawarto\u015b\u0107", "FolderTypeMixed": "Zawarto\u015b\u0107 mieszana",
"FolderTypeMovies": "Filmy", "FolderTypeMovies": "Filmy",
"FolderTypeMusic": "Muzyka", "FolderTypeMusic": "Muzyka",
"FolderTypeAdultVideos": "Filmy dla doros\u0142ych",
"FolderTypePhotos": "Zdj\u0119cia", "FolderTypePhotos": "Zdj\u0119cia",
"FolderTypeMusicVideos": "Teledyski", "FolderTypeMusicVideos": "Teledyski",
"FolderTypeHomeVideos": "Filmy domowe", "FolderTypeHomeVideos": "Filmy domowe",
@ -202,7 +205,7 @@
"OptionAscending": "Rosn\u0105co", "OptionAscending": "Rosn\u0105co",
"OptionDescending": "Malej\u0105co", "OptionDescending": "Malej\u0105co",
"OptionRuntime": "D\u0142ugo\u015b\u0107 filmu", "OptionRuntime": "D\u0142ugo\u015b\u0107 filmu",
"OptionReleaseDate": "Data Wydania", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144", "OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144",
"OptionDatePlayed": "Data odtworzenia", "OptionDatePlayed": "Data odtworzenia",
"OptionDateAdded": "Data dodania", "OptionDateAdded": "Data dodania",
@ -216,6 +219,7 @@
"OptionBudget": "Bud\u017cet", "OptionBudget": "Bud\u017cet",
"OptionRevenue": "Doch\u00f3d", "OptionRevenue": "Doch\u00f3d",
"OptionPoster": "Plakat", "OptionPoster": "Plakat",
"HeaderYears": "Lata",
"OptionPosterCard": "Plakat", "OptionPosterCard": "Plakat",
"OptionBackdrop": "Zrzut", "OptionBackdrop": "Zrzut",
"OptionTimeline": "O\u015b czasu", "OptionTimeline": "O\u015b czasu",
@ -325,7 +329,7 @@
"OptionMetascore": "Metawynik", "OptionMetascore": "Metawynik",
"ButtonSelect": "Wybierz", "ButtonSelect": "Wybierz",
"ButtonGroupVersions": "Grupa Wersji", "ButtonGroupVersions": "Grupa Wersji",
"ButtonAddToCollection": "Dodaj do Kolekcji", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "U\u017cycie Pismo File Mount poprzed licencj\u0119 dotowan\u0105.", "PismoMessage": "U\u017cycie Pismo File Mount poprzed licencj\u0119 dotowan\u0105.",
"TangibleSoftwareMessage": "u\u017cycie Tangible Solutions Java\/C# converters poprzez licecj\u0119 dotowan\u0105.", "TangibleSoftwareMessage": "u\u017cycie Tangible Solutions Java\/C# converters poprzez licecj\u0119 dotowan\u0105.",
"HeaderCredits": "Zas\u0142ugi", "HeaderCredits": "Zas\u0142ugi",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Okre\u015bl w\u0142asne \u015bcie\u017cki. Pozostaw puste aby u\u017cy\u0107 domy\u015blnych.", "LabelCustomPaths": "Okre\u015bl w\u0142asne \u015bcie\u017cki. Pozostaw puste aby u\u017cy\u0107 domy\u015blnych.",
"LabelCachePath": "\u015acie\u017cka Cache:", "LabelCachePath": "\u015acie\u017cka Cache:",
"LabelCachePathHelp": "Okre\u015bl w\u0142asn\u0105 lokalizacje dla plik\u00f3w cache serwera, takich jak obrazy. Pozostaw puste aby u\u017cy\u0107 domy\u015blnych serwera.", "LabelCachePathHelp": "Okre\u015bl w\u0142asn\u0105 lokalizacje dla plik\u00f3w cache serwera, takich jak obrazy. Pozostaw puste aby u\u017cy\u0107 domy\u015blnych serwera.",
"LabelRecordingPath": "\u015acie\u017cka nagra\u0144:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Okre\u015bl domy\u015blna lokalizacje do zapisu nagra\u0144. Pozostaw puste aby u\u017cy\u0107 domy\u015blnej serwera.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Obrazy wed\u0142ug nazwy \u015bcie\u017cki:", "LabelImagesByNamePath": "Obrazy wed\u0142ug nazwy \u015bcie\u017cki:",
"LabelImagesByNamePathHelp": "Okre\u015bl w\u0142asn\u0105 lokalizacje dla pobranych aktor\u00f3w, gatunk\u00f3w i obraz\u00f3w studyjnych.", "LabelImagesByNamePathHelp": "Okre\u015bl w\u0142asn\u0105 lokalizacje dla pobranych aktor\u00f3w, gatunk\u00f3w i obraz\u00f3w studyjnych.",
"LabelMetadataPath": "\u015acie\u017cka metadanych:", "LabelMetadataPath": "\u015acie\u017cka metadanych:",
@ -489,7 +495,7 @@
"HeaderCastCrew": "Obsada & Eikpa", "HeaderCastCrew": "Obsada & Eikpa",
"HeaderAdditionalParts": "Dodatkowe Cz\u0119\u015bci", "HeaderAdditionalParts": "Dodatkowe Cz\u0119\u015bci",
"ButtonSplitVersionsApart": "Podziel Wersje", "ButtonSplitVersionsApart": "Podziel Wersje",
"ButtonPlayTrailer": "Zwiastun", "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Brakuj\u0105cy", "LabelMissing": "Brakuj\u0105cy",
"LabelOffline": "Offline", "LabelOffline": "Offline",
"PathSubstitutionHelp": "Podmiana \u015bcie\u017cek jest u\u017cywana do mapowania \u015bcie\u017cek na serwerze do \u015bcie\u017cek do kt\u00f3rych klienci maj\u0105 dost\u0119p. Pozwalaj\u0105c klientom na bezpo\u015bredni dost\u0119p do medi\u00f3w na serwerze, mog\u0105 oni odtwarza\u0107 bezpo\u015brednio po sieci, unikaj\u0105c w ten spos\u00f3b u\u017cywania zasob\u00f3w serwera na streaming i transkodowanie ich.", "PathSubstitutionHelp": "Podmiana \u015bcie\u017cek jest u\u017cywana do mapowania \u015bcie\u017cek na serwerze do \u015bcie\u017cek do kt\u00f3rych klienci maj\u0105 dost\u0119p. Pozwalaj\u0105c klientom na bezpo\u015bredni dost\u0119p do medi\u00f3w na serwerze, mog\u0105 oni odtwarza\u0107 bezpo\u015brednio po sieci, unikaj\u0105c w ten spos\u00f3b u\u017cywania zasob\u00f3w serwera na streaming i transkodowanie ich.",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "W\u0142\u0105cz automatyczne mapowanie portu", "LabelEnableAutomaticPortMap": "W\u0142\u0105cz automatyczne mapowanie portu",
"LabelEnableAutomaticPortMapHelp": "Pr\u00f3bowa\u0107 automatycznie zmapowa\u0107 publiczny nr portu do lokalnego numeru portu przez UPnP. Opcja ta mo\u017ce nie dzia\u0142a z niekt\u00f3rymi modelami router\u00f3w.", "LabelEnableAutomaticPortMapHelp": "Pr\u00f3bowa\u0107 automatycznie zmapowa\u0107 publiczny nr portu do lokalnego numeru portu przez UPnP. Opcja ta mo\u017ce nie dzia\u0142a z niekt\u00f3rymi modelami router\u00f3w.",
"LabelExternalDDNS": "Zewn\u0119trzny adres WAN:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Je\u017celi u\u017cywasz dynamicznego DNS wprowad\u017a go tutaj. Aplikacje Emby b\u0119d\u0105 u\u017cywa\u0107 go do po\u0142\u0105cze\u0144 zdalnych. Pozostaw puste dla wykrycia automatycznego.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Wzn\u00f3w", "TabResume": "Wzn\u00f3w",
"TabWeather": "Pogoda", "TabWeather": "Pogoda",
"TitleAppSettings": "Ustawienia Aplikacji", "TitleAppSettings": "Ustawienia Aplikacji",
@ -582,12 +588,12 @@
"HeaderProgram": "Program", "HeaderProgram": "Program",
"HeaderClients": "Klienci", "HeaderClients": "Klienci",
"LabelCompleted": "Zako\u0144czono", "LabelCompleted": "Zako\u0144czono",
"LabelFailed": "Nieudane", "LabelFailed": "Failed",
"LabelSkipped": "Pomini\u0119te", "LabelSkipped": "Pomini\u0119te",
"HeaderEpisodeOrganization": "Organizacja Odcink\u00f3w", "HeaderEpisodeOrganization": "Organizacja Odcink\u00f3w",
"LabelSeries": "Seriale:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Numer sezonu", "LabelSeasonNumber": "Numer sezonu:",
"LabelEpisodeNumber": "Numer Odcinka", "LabelEpisodeNumber": "Numer epizodu:",
"LabelEndingEpisodeNumber": "Numer ostatniego odcinka:", "LabelEndingEpisodeNumber": "Numer ostatniego odcinka:",
"LabelEndingEpisodeNumberHelp": "Wymagane tylko dla wielo-odcinkowych plik\u00f3w", "LabelEndingEpisodeNumberHelp": "Wymagane tylko dla wielo-odcinkowych plik\u00f3w",
"OptionRememberOrganizeCorrection": "Zapisz i zastosuj t\u0119 korekcj\u0119 na plikach z podobnymi nazwami dodanymi w przysz\u0142o\u015bci", "OptionRememberOrganizeCorrection": "Zapisz i zastosuj t\u0119 korekcj\u0119 na plikach z podobnymi nazwami dodanymi w przysz\u0142o\u015bci",
@ -726,10 +732,12 @@
"TabNowPlaying": "Odtwarzane teraz", "TabNowPlaying": "Odtwarzane teraz",
"TabNavigation": "Nawigacja", "TabNavigation": "Nawigacja",
"TabControls": "Kotrolki", "TabControls": "Kotrolki",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Sceny", "ButtonScenes": "Sceny",
"ButtonSubtitles": "Napisy", "ButtonSubtitles": "Napisy",
"ButtonPreviousTrack": "Poprzednia \u015bcie\u017cka", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Nast\u0119pna \u015bcie\u017cka", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pauza", "ButtonPause": "Pauza",
"ButtonNext": "Nast\u0119pny", "ButtonNext": "Nast\u0119pny",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Playlisty pozwalaj\u0105 na tworzenie list z zawarto\u015bci\u0105 do odtwarzania kolejno w czasie. Aby doda\u0107 pozycje do playlisty, kliknij prawym guzikiem lub naci\u015bnij i przytrzymaj, a nast\u0119pnie wybierz dodaj do Playlisty.", "MessageNoPlaylistsAvailable": "Playlisty pozwalaj\u0105 na tworzenie list z zawarto\u015bci\u0105 do odtwarzania kolejno w czasie. Aby doda\u0107 pozycje do playlisty, kliknij prawym guzikiem lub naci\u015bnij i przytrzymaj, a nast\u0119pnie wybierz dodaj do Playlisty.",
"MessageNoPlaylistItemsAvailable": "Playlista jest obecnie pusta.", "MessageNoPlaylistItemsAvailable": "Playlista jest obecnie pusta.",
"ButtonDismiss": "Odrzu\u0107", "ButtonDismiss": "Odrzu\u0107",
"ButtonMore": "Wi\u0119cej",
"ButtonEditOtherUserPreferences": "Edytuj profil, obrazy i ustawienia osobiste tego u\u017cytkownika.", "ButtonEditOtherUserPreferences": "Edytuj profil, obrazy i ustawienia osobiste tego u\u017cytkownika.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "W \u015brodowisku z s\u0142abym \u0142\u0105czem, ograniczenie jako\u015bci mo\u017ce zapewni\u0107 lepsze do\u015bwiadczenia w streamowaniu.", "LabelChannelStreamQualityHelp": "W \u015brodowisku z s\u0142abym \u0142\u0105czem, ograniczenie jako\u015bci mo\u017ce zapewni\u0107 lepsze do\u015bwiadczenia w streamowaniu.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Niezidentyfikowane", "OptionUnidentified": "Niezidentyfikowane",
"OptionMissingParentalRating": "Brak oceny rodzicielskiej", "OptionMissingParentalRating": "Brak oceny rodzicielskiej",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Sezon 0", "OptionSeason0": "Sezon 0",
"LabelReport": "Zg\u0142o\u015b:", "LabelReport": "Zg\u0142o\u015b:",
"OptionReportSongs": "Utwory", "OptionReportSongs": "Utwory",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Wykonawcy", "OptionReportArtists": "Wykonawcy",
"OptionReportAlbums": "Albumy", "OptionReportAlbums": "Albumy",
"OptionReportAdultVideos": "Filmy dla doros\u0142ych", "OptionReportAdultVideos": "Filmy dla doros\u0142ych",
"ButtonMore": "Wi\u0119cej", "ButtonMoreItems": "Wi\u0119cej",
"HeaderActivity": "Aktywno\u015b\u0107", "HeaderActivity": "Aktywno\u015b\u0107",
"ScheduledTaskStartedWithName": "{0} rozpocz\u0119te", "ScheduledTaskStartedWithName": "{0} rozpocz\u0119te",
"ScheduledTaskCancelledWithName": "{0} anulowane", "ScheduledTaskCancelledWithName": "{0} anulowane",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Zresetuj has\u0142o", "HeaderPasswordReset": "Zresetuj has\u0142o",
"HeaderParentalRatings": "Ocena rodzicielska", "HeaderParentalRatings": "Ocena rodzicielska",
"HeaderVideoTypes": "Typy Video", "HeaderVideoTypes": "Typy Video",
"HeaderYears": "Lata",
"HeaderBlockItemsWithNoRating": "Blokuj zawarto\u015b\u0107 bez informacji o ocenie rodzicielskiej b\u0105d\u017a gdy jest ona nierozpoznana:", "HeaderBlockItemsWithNoRating": "Blokuj zawarto\u015b\u0107 bez informacji o ocenie rodzicielskiej b\u0105d\u017a gdy jest ona nierozpoznana:",
"LabelBlockContentWithTags": "Zablokuj materia\u0142 z tagami:", "LabelBlockContentWithTags": "Zablokuj materia\u0142 z tagami:",
"LabelEnableSingleImageInDidlLimit": "Ogranicz do jednego osadzonego obrazka", "LabelEnableSingleImageInDidlLimit": "Ogranicz do jednego osadzonego obrazka",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Przysz\u0142e filmy", "HeaderUpcomingMovies": "Przysz\u0142e filmy",
"HeaderUpcomingSports": "Przysz\u0142e wydarzenia sportowe", "HeaderUpcomingSports": "Przysz\u0142e wydarzenia sportowe",
"HeaderUpcomingPrograms": "Przysz\u0142e programy", "HeaderUpcomingPrograms": "Przysz\u0142e programy",
"ButtonMoreItems": "Wi\u0119cej",
"LabelShowLibraryTileNames": "Pokazuj nazwy bibliotek", "LabelShowLibraryTileNames": "Pokazuj nazwy bibliotek",
"LabelShowLibraryTileNamesHelp": "Okre\u015bla czy okre\u015blenia b\u0119d\u0105 wy\u015bwietlane poni\u017cej biblioteki na stronie g\u0142\u00f3wnej", "LabelShowLibraryTileNamesHelp": "Okre\u015bla czy okre\u015blenia b\u0119d\u0105 wy\u015bwietlane poni\u017cej biblioteki na stronie g\u0142\u00f3wnej",
"OptionEnableTranscodingThrottle": "W\u0142\u0105cz CPU throttling serwera", "OptionEnableTranscodingThrottle": "W\u0142\u0105cz CPU throttling serwera",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Aktywna subskrypcja Emby Premiere jest wymagana aby tworzy\u0107 automatyczne nagrania seriali.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Aktywna subskrypcja Emby Premiere jest wymagana aby tworzy\u0107 automatyczne nagrania seriali.",
"HeaderSetupTVGuide": "Skonfiguruj Program TV", "HeaderSetupTVGuide": "Skonfiguruj Program TV",
"LabelDataProvider": "Dostawca danych:", "LabelDataProvider": "Dostawca danych:",
"OptionSendRecordingsToAutoOrganize": "W\u0142\u0105cz Auto-Organizacje dla nowych nagra\u0144", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Nowe nagrania b\u0119d\u0105 wysy\u0142ane do funkcji Auto-Organizacji i importowane do twojej biblioteki medi\u00f3w.", "OptionSendRecordingsToAutoOrganizeHelp": "Nowe nagrania b\u0119d\u0105 wysy\u0142ane do funkcji Auto-Organizacji i importowane do twojej biblioteki medi\u00f3w.",
"HeaderDefaultPadding": "Domy\u015blny Padding", "HeaderDefaultPadding": "Domy\u015blny Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Napisy", "HeaderSubtitles": "Napisy",
"HeaderVideos": "Wideo", "HeaderVideos": "Wideo",
"OptionEnableVideoFrameAnalysis": "W\u0142\u0105cz analiz\u0119 wideo klatka po klatce", "OptionEnableVideoFrameAnalysis": "W\u0142\u0105cz analiz\u0119 wideo klatka po klatce",
@ -1592,7 +1601,7 @@
"LabelEpisode": "Odcinek", "LabelEpisode": "Odcinek",
"Series": "Series", "Series": "Series",
"LabelStopping": "Zatrzymywanie", "LabelStopping": "Zatrzymywanie",
"LabelCancelled": "(anulowano)", "LabelCancelled": "Cancelled",
"ButtonDownload": "Pobierz", "ButtonDownload": "Pobierz",
"SyncJobStatusQueued": "Zakolejkowane", "SyncJobStatusQueued": "Zakolejkowane",
"SyncJobStatusConverting": "Konwertowanie", "SyncJobStatusConverting": "Konwertowanie",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organizuj", "TabAutoOrganize": "Auto-Organizuj",
"TabPlugins": "Wtyczki", "TabPlugins": "Wtyczki",
"TabHelp": "Pomoc", "TabHelp": "Pomoc",
"ButtonFullscreen": "Zmie\u0144 Pe\u0142ny ekran",
"ButtonAudioTracks": "\u015acie\u017cki audio",
"ButtonQuality": "Jako\u015b\u0107", "ButtonQuality": "Jako\u015b\u0107",
"HeaderNotifications": "Powiadomienia", "HeaderNotifications": "Powiadomienia",
"HeaderSelectPlayer": "Wybierz Odtworzacz", "HeaderSelectPlayer": "Wybierz Odtworzacz",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Rozdzielczo\u015b\u0107", "HeaderResolution": "Rozdzielczo\u015b\u0107",
"HeaderRuntime": "D\u0142ugo\u015b\u0107 filmu", "HeaderRuntime": "D\u0142ugo\u015b\u0107 filmu",
"HeaderCommunityRating": "Ocena spo\u0142eczno\u015bci", "HeaderCommunityRating": "Ocena spo\u0142eczno\u015bci",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Data wydania", "HeaderReleaseDate": "Data wydania",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Data dodania",
"HeaderSeries": "Series", "HeaderSeries": "Seriale:",
"HeaderSeason": "Sezon", "HeaderSeason": "Sezon",
"HeaderSeasonNumber": "Numer sezonu", "HeaderSeasonNumber": "Numer sezonu",
"HeaderNetwork": "Sie\u0107", "HeaderNetwork": "Sie\u0107",
"HeaderYear": "Year", "HeaderYear": "Rok:",
"HeaderGameSystem": "Systemy Gier Wideo", "HeaderGameSystem": "Systemy Gier Wideo",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Osadzony obraz", "HeaderEmbeddedImage": "Osadzony obraz",
"HeaderTrack": "\u015acie\u017cka", "HeaderTrack": "\u015acie\u017cka",
"HeaderDisc": "P\u0142yta", "HeaderDisc": "P\u0142yta",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albumy", "HeaderAlbums": "Albumy",
"HeaderGames": "Gry", "HeaderGames": "Gry",
"HeaderBooks": "Ksi\u0105\u017cki", "HeaderBooks": "Ksi\u0105\u017cki",
"HeaderEpisodes": "Odcinki:",
"HeaderSeasons": "Sezony", "HeaderSeasons": "Sezony",
"HeaderTracks": "Utwory", "HeaderTracks": "Utwory",
"HeaderItems": "Pozycje", "HeaderItems": "Pozycje",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Pe\u0142na recenzja:", "LabelFullReview": "Pe\u0142na recenzja:",
"LabelShortRatingDescription": "Kr\u00f3tkie podsumowanie oceny:", "LabelShortRatingDescription": "Kr\u00f3tkie podsumowanie oceny:",
"OptionIRecommendThisItem": "Polecam t\u0105 pozycje", "OptionIRecommendThisItem": "Polecam t\u0105 pozycje",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Obejrzyj swoje niedawno dodane media, nast\u0119pne odcinki i wi\u0119cej. Zielone k\u00f3\u0142ka oznaczaj\u0105 jak wiele nie odtworzonych pozycji zosta\u0142o.", "WebClientTourContent": "Obejrzyj swoje niedawno dodane media, nast\u0119pne odcinki i wi\u0119cej. Zielone k\u00f3\u0142ka oznaczaj\u0105 jak wiele nie odtworzonych pozycji zosta\u0142o.",
"WebClientTourMovies": "Odtwarzaj filmy, zwiastuny i wiele wi\u0119cej z ka\u017cdego urz\u0105dzeni i przegl\u0105darki", "WebClientTourMovies": "Odtwarzaj filmy, zwiastuny i wiele wi\u0119cej z ka\u017cdego urz\u0105dzeni i przegl\u0105darki",
"WebClientTourMouseOver": "zatrzymaj mysz nad plakatem aby uzyska\u0107 szybk\u0105 informacj\u0119", "WebClientTourMouseOver": "zatrzymaj mysz nad plakatem aby uzyska\u0107 szybk\u0105 informacj\u0119",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "Nazwa u\u017cytkownika jest aktualnie zaj\u0119ta. Wybierz inna nazw\u0119 i spr\u00f3buj ponownie.", "ErrorMessageUsernameInUse": "Nazwa u\u017cytkownika jest aktualnie zaj\u0119ta. Wybierz inna nazw\u0119 i spr\u00f3buj ponownie.",
"ErrorMessageEmailInUse": "Adres e-mail jest ju\u017c aktualnie w u\u017cyciu. Wprowad\u017a nowy adres e-mail i spr\u00f3buj ponownie lub u\u017cyj opcji przywracania has\u0142a.", "ErrorMessageEmailInUse": "Adres e-mail jest ju\u017c aktualnie w u\u017cyciu. Wprowad\u017a nowy adres e-mail i spr\u00f3buj ponownie lub u\u017cyj opcji przywracania has\u0142a.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Udost\u0119pnij", "HeaderShare": "Udost\u0119pnij",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Udost\u0119pnij", "ButtonShare": "Udost\u0119pnij",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Synchronizacja wymaga cz\u0142onkowstwa Supporter",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Sair", "LabelExit": "Sair",
"LabelVisitCommunity": "Visitar a Comunidade", "LabelVisitCommunity": "Visitar a Comunidade",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin", "ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
"HeaderAdultsReadHere": "Adultos Leiam Aqui!", "HeaderAdultsReadHere": "Adultos Leiam Aqui!",
"RegisterWithPayPal": "Registrar com PayPal", "RegisterWithPayPal": "Registrar com PayPal",
"HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o requer uma subscri\u00e7\u00e3o ativa do Emby Premiere.",
"HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes", "HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes",
"LabelSyncTempPath": "Local do arquivo tempor\u00e1rio:", "LabelSyncTempPath": "Local do arquivo tempor\u00e1rio:",
"LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. M\u00eddias convertidas criadas durante o processo de sincroniza\u00e7\u00e3o ser\u00e3o aqui armazenadas.", "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. M\u00eddias convertidas criadas durante o processo de sincroniza\u00e7\u00e3o ser\u00e3o aqui armazenadas.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Conte\u00fado misto", "FolderTypeMixed": "Conte\u00fado misto",
"FolderTypeMovies": "Filmes", "FolderTypeMovies": "Filmes",
"FolderTypeMusic": "M\u00fasica", "FolderTypeMusic": "M\u00fasica",
"FolderTypeAdultVideos": "V\u00eddeos adultos",
"FolderTypePhotos": "Fotos", "FolderTypePhotos": "Fotos",
"FolderTypeMusicVideos": "V\u00eddeos musicais", "FolderTypeMusicVideos": "V\u00eddeos musicais",
"FolderTypeHomeVideos": "V\u00eddeos caseiros", "FolderTypeHomeVideos": "V\u00eddeos caseiros",
@ -216,6 +219,7 @@
"OptionBudget": "Or\u00e7amento", "OptionBudget": "Or\u00e7amento",
"OptionRevenue": "Faturamento", "OptionRevenue": "Faturamento",
"OptionPoster": "Capa", "OptionPoster": "Capa",
"HeaderYears": "Anos",
"OptionPosterCard": "Cart\u00e3o da capa", "OptionPosterCard": "Cart\u00e3o da capa",
"OptionBackdrop": "Imagem de Fundo", "OptionBackdrop": "Imagem de Fundo",
"OptionTimeline": "Linha do tempo", "OptionTimeline": "Linha do tempo",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Selecionar", "ButtonSelect": "Selecionar",
"ButtonGroupVersions": "Agrupar Vers\u00f5es", "ButtonGroupVersions": "Agrupar Vers\u00f5es",
"ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizando Pismo File Mount atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o", "PismoMessage": "Utilizando Pismo File Mount atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o",
"TangibleSoftwareMessage": "Utilizando conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o.", "TangibleSoftwareMessage": "Utilizando conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o.",
"HeaderCredits": "Cr\u00e9ditos", "HeaderCredits": "Cr\u00e9ditos",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Defina locais personalizados. Deixe os campos em branco para usar o padr\u00e3o.", "LabelCustomPaths": "Defina locais personalizados. Deixe os campos em branco para usar o padr\u00e3o.",
"LabelCachePath": "Local do cache:", "LabelCachePath": "Local do cache:",
"LabelCachePathHelp": "Defina uma localiza\u00e7\u00e3o para os arquivos de cache como, por exemplo, imagens. Por favor, deixe em branco para usar o padr\u00e3o do servidor.", "LabelCachePathHelp": "Defina uma localiza\u00e7\u00e3o para os arquivos de cache como, por exemplo, imagens. Por favor, deixe em branco para usar o padr\u00e3o do servidor.",
"LabelRecordingPath": "Local da grava\u00e7\u00e3o:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Defina uma localiza\u00e7\u00e3o personalizada para salvar as grava\u00e7\u00f5es. Deixe em branco para usar o padr\u00e3o do servidor.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Local do Images by name:", "LabelImagesByNamePath": "Local do Images by name:",
"LabelImagesByNamePathHelp": "Defina uma localiza\u00e7\u00e3o para imagens baixadas para ator, g\u00eanero e est\u00fadio.", "LabelImagesByNamePathHelp": "Defina uma localiza\u00e7\u00e3o para imagens baixadas para ator, g\u00eanero e est\u00fadio.",
"LabelMetadataPath": "Local dos Metadados:", "LabelMetadataPath": "Local dos Metadados:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "N\u00famero da porta do web socket:", "LabelWebSocketPortNumber": "N\u00famero da porta do web socket:",
"LabelEnableAutomaticPortMap": "Ativar mapeamento autom\u00e1tico de portas", "LabelEnableAutomaticPortMap": "Ativar mapeamento autom\u00e1tico de portas",
"LabelEnableAutomaticPortMapHelp": "Tentativa de mapear automaticamente a porta p\u00fablica para a porta local atrav\u00e9s de UPnP. Isto poder\u00e1 n\u00e3o funcionar em alguns modelos de roteadores.", "LabelEnableAutomaticPortMapHelp": "Tentativa de mapear automaticamente a porta p\u00fablica para a porta local atrav\u00e9s de UPnP. Isto poder\u00e1 n\u00e3o funcionar em alguns modelos de roteadores.",
"LabelExternalDDNS": "Endere\u00e7o WAN externo:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Se possuir um DNS din\u00e2mico digite aqui. As apps do Emby o usar\u00e3o para conectar-se remotamente. Deixe em branco para detec\u00e7\u00e3o autom\u00e1tica.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Retomar", "TabResume": "Retomar",
"TabWeather": "Tempo", "TabWeather": "Tempo",
"TitleAppSettings": "Configura\u00e7\u00f5es do App", "TitleAppSettings": "Configura\u00e7\u00f5es do App",
@ -586,8 +592,8 @@
"LabelSkipped": "Ignorada", "LabelSkipped": "Ignorada",
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o do Epis\u00f3dio", "HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o do Epis\u00f3dio",
"LabelSeries": "S\u00e9rie:", "LabelSeries": "S\u00e9rie:",
"LabelSeasonNumber": "N\u00famero da temporada", "LabelSeasonNumber": "N\u00famero da temporada:",
"LabelEpisodeNumber": "N\u00famero do epis\u00f3dio", "LabelEpisodeNumber": "N\u00famero do epis\u00f3dio:",
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:", "LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios", "LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
"OptionRememberOrganizeCorrection": "Salvar e aplicar esta corre\u00e7\u00e3o para arquivos futuros com nomes similares", "OptionRememberOrganizeCorrection": "Salvar e aplicar esta corre\u00e7\u00e3o para arquivos futuros com nomes similares",
@ -726,10 +732,12 @@
"TabNowPlaying": "Reproduzindo Agora", "TabNowPlaying": "Reproduzindo Agora",
"TabNavigation": "Navega\u00e7\u00e3o", "TabNavigation": "Navega\u00e7\u00e3o",
"TabControls": "Controles", "TabControls": "Controles",
"ButtonFullscreen": "Tela cheia",
"ButtonScenes": "Cenas", "ButtonScenes": "Cenas",
"ButtonSubtitles": "Legendas", "ButtonSubtitles": "Legendas",
"ButtonPreviousTrack": "Faixa anterior", "ButtonPreviousTrack": "Faixa anterior",
"ButtonNextTrack": "Faixa seguinte", "ButtonNextTrack": "Faixa seguinte",
"ButtonAudioTracks": "Faixas de \u00c1udio",
"ButtonStop": "Parar", "ButtonStop": "Parar",
"ButtonPause": "Pausar", "ButtonPause": "Pausar",
"ButtonNext": "Pr\u00f3xima", "ButtonNext": "Pr\u00f3xima",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.", "MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.",
"MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.", "MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.",
"ButtonDismiss": "Descartar", "ButtonDismiss": "Descartar",
"ButtonMore": "Mais",
"ButtonEditOtherUserPreferences": "Editar este perfil de usu\u00e1rio, imagem e prefer\u00eancias pessoais.", "ButtonEditOtherUserPreferences": "Editar este perfil de usu\u00e1rio, imagem e prefer\u00eancias pessoais.",
"LabelChannelStreamQuality": "Qualidade preferida do canal da internet:", "LabelChannelStreamQuality": "Qualidade preferida do canal da internet:",
"LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.", "LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "N\u00e3o identificada", "OptionUnidentified": "N\u00e3o identificada",
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental", "OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Temporada 0", "OptionSeason0": "Temporada 0",
"LabelReport": "Relat\u00f3rio:", "LabelReport": "Relat\u00f3rio:",
"OptionReportSongs": "M\u00fasicas", "OptionReportSongs": "M\u00fasicas",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artistas", "OptionReportArtists": "Artistas",
"OptionReportAlbums": "\u00c1lbuns", "OptionReportAlbums": "\u00c1lbuns",
"OptionReportAdultVideos": "V\u00eddeos adultos", "OptionReportAdultVideos": "V\u00eddeos adultos",
"ButtonMore": "Mais", "ButtonMoreItems": "Mais",
"HeaderActivity": "Atividade", "HeaderActivity": "Atividade",
"ScheduledTaskStartedWithName": "{0} iniciado", "ScheduledTaskStartedWithName": "{0} iniciado",
"ScheduledTaskCancelledWithName": "{0} foi cancelado", "ScheduledTaskCancelledWithName": "{0} foi cancelado",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha", "HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais", "HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
"HeaderVideoTypes": "Tipos de V\u00eddeo", "HeaderVideoTypes": "Tipos de V\u00eddeo",
"HeaderYears": "Anos",
"HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o ou que n\u00e3o seja reconhecida:", "HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o ou que n\u00e3o seja reconhecida:",
"LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:", "LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:",
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada", "LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Filmes Por Estrear", "HeaderUpcomingMovies": "Filmes Por Estrear",
"HeaderUpcomingSports": "Esportes Por Estrear", "HeaderUpcomingSports": "Esportes Por Estrear",
"HeaderUpcomingPrograms": "Programas Por Estrear", "HeaderUpcomingPrograms": "Programas Por Estrear",
"ButtonMoreItems": "Mais",
"LabelShowLibraryTileNames": "Mostrar os nomes dos mosaicos da biblioteca", "LabelShowLibraryTileNames": "Mostrar os nomes dos mosaicos da biblioteca",
"LabelShowLibraryTileNamesHelp": "Determina se os t\u00edtulos ser\u00e3o exibidos embaixo dos mosaicos da biblioteca na p\u00e1gina in\u00edcio", "LabelShowLibraryTileNamesHelp": "Determina se os t\u00edtulos ser\u00e3o exibidos embaixo dos mosaicos da biblioteca na p\u00e1gina in\u00edcio",
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo", "OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscri\u00e7\u00e3o ativa do Emby Premiere \u00e9 requerida para criar a grava\u00e7\u00e3o automatizada de s\u00e9ries.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscri\u00e7\u00e3o ativa do Emby Premiere \u00e9 requerida para criar a grava\u00e7\u00e3o automatizada de s\u00e9ries.",
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV", "HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
"LabelDataProvider": "Provedor de dados:", "LabelDataProvider": "Provedor de dados:",
"OptionSendRecordingsToAutoOrganize": "Ativar Auto-Organizar para novas grava\u00e7\u00f5es", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Novas grava\u00e7\u00f5es ser\u00e3o enviadas para o recurso Auto-Organizar e importadas para sua biblioteca de m\u00eddias.", "OptionSendRecordingsToAutoOrganizeHelp": "Novas grava\u00e7\u00f5es ser\u00e3o enviadas para o recurso Auto-Organizar e importadas para sua biblioteca de m\u00eddias.",
"HeaderDefaultPadding": "Padding Padr\u00e3o", "HeaderDefaultPadding": "Padding Padr\u00e3o",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Legendas", "HeaderSubtitles": "Legendas",
"HeaderVideos": "V\u00eddeos", "HeaderVideos": "V\u00eddeos",
"OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lise de v\u00eddeo quadro a quadro", "OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lise de v\u00eddeo quadro a quadro",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organizar", "TabAutoOrganize": "Auto-Organizar",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Ajuda", "TabHelp": "Ajuda",
"ButtonFullscreen": "Alternar para tela cheia",
"ButtonAudioTracks": "Faixas de \u00e1udio",
"ButtonQuality": "Qualidade", "ButtonQuality": "Qualidade",
"HeaderNotifications": "Avisos", "HeaderNotifications": "Avisos",
"HeaderSelectPlayer": "Selecione onde Reproduzir", "HeaderSelectPlayer": "Selecione onde Reproduzir",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolu\u00e7\u00e3o", "HeaderResolution": "Resolu\u00e7\u00e3o",
"HeaderRuntime": "Dura\u00e7\u00e3o", "HeaderRuntime": "Dura\u00e7\u00e3o",
"HeaderCommunityRating": "Avalia\u00e7\u00e3o da Comunidade", "HeaderCommunityRating": "Avalia\u00e7\u00e3o da Comunidade",
"HeaderParentalRating": "Classifica\u00e7\u00e3o parental", "HeaderParentalRating": "Classifica\u00e7\u00e3o Parental",
"HeaderReleaseDate": "Data de lan\u00e7amento", "HeaderReleaseDate": "Data de lan\u00e7amento",
"HeaderDateAdded": "Data de adi\u00e7\u00e3o", "HeaderDateAdded": "Data da Adi\u00e7\u00e3o",
"HeaderSeries": "S\u00e9rie", "HeaderSeries": "S\u00e9rie:",
"HeaderSeason": "Temporada", "HeaderSeason": "Temporada",
"HeaderSeasonNumber": "N\u00famero da temporada", "HeaderSeasonNumber": "N\u00famero da temporada",
"HeaderNetwork": "Rede de TV", "HeaderNetwork": "Rede de TV",
"HeaderYear": "Ano", "HeaderYear": "Ano:",
"HeaderGameSystem": "Sistema do jogo", "HeaderGameSystem": "Sistema do jogo",
"HeaderPlayers": "Jogadores", "HeaderPlayers": "Jogadores:",
"HeaderEmbeddedImage": "Imagem incorporada", "HeaderEmbeddedImage": "Imagem incorporada",
"HeaderTrack": "Faixa", "HeaderTrack": "Faixa",
"HeaderDisc": "Disco", "HeaderDisc": "Disco",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "\u00c1lbuns", "HeaderAlbums": "\u00c1lbuns",
"HeaderGames": "Jogos", "HeaderGames": "Jogos",
"HeaderBooks": "Livros", "HeaderBooks": "Livros",
"HeaderEpisodes": "Epis\u00f3dios",
"HeaderSeasons": "Temporadas", "HeaderSeasons": "Temporadas",
"HeaderTracks": "Faixas", "HeaderTracks": "Faixas",
"HeaderItems": "Itens", "HeaderItems": "Itens",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Coment\u00e1rio completo:", "LabelFullReview": "Coment\u00e1rio completo:",
"LabelShortRatingDescription": "Resumo da avalia\u00e7\u00e3o:", "LabelShortRatingDescription": "Resumo da avalia\u00e7\u00e3o:",
"OptionIRecommendThisItem": "Eu recomendo este item", "OptionIRecommendThisItem": "Eu recomendo este item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Veja suas m\u00eddias adicionadas recentemente, pr\u00f3ximos epis\u00f3dios e mais. Os c\u00edrculos verdes indicam quantos itens n\u00e3o reproduzidos voc\u00ea tem.", "WebClientTourContent": "Veja suas m\u00eddias adicionadas recentemente, pr\u00f3ximos epis\u00f3dios e mais. Os c\u00edrculos verdes indicam quantos itens n\u00e3o reproduzidos voc\u00ea tem.",
"WebClientTourMovies": "Reproduza filmes, trailers e mais em qualquer dispositivo com um browser web.", "WebClientTourMovies": "Reproduza filmes, trailers e mais em qualquer dispositivo com um browser web.",
"WebClientTourMouseOver": "Posicione o mouse sobre qualquer capa para acessar rapidamente informa\u00e7\u00f5es importantes", "WebClientTourMouseOver": "Posicione o mouse sobre qualquer capa para acessar rapidamente informa\u00e7\u00f5es importantes",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "O nome do usu\u00e1rio j\u00e1 est\u00e1 em uso. Por favor, escolha um novo nome e tente novamente.", "ErrorMessageUsernameInUse": "O nome do usu\u00e1rio j\u00e1 est\u00e1 em uso. Por favor, escolha um novo nome e tente novamente.",
"ErrorMessageEmailInUse": "O endere\u00e7o de email j\u00e1 est\u00e1 em uso. Por favor, digite um novo endere\u00e7o de email e tente novamente ou use o recurso de senha esquecida.", "ErrorMessageEmailInUse": "O endere\u00e7o de email j\u00e1 est\u00e1 em uso. Por favor, digite um novo endere\u00e7o de email e tente novamente ou use o recurso de senha esquecida.",
"MessageThankYouForConnectSignUp": "Obrigado por inscrever-se no Emby Connect. Um email ser\u00e1 enviado para seu endere\u00e7o com as instru\u00e7\u00f5es para confirmar sua nova conta. Por favor, confirme a conta e ent\u00e3o volte aqui para entrar.", "MessageThankYouForConnectSignUp": "Obrigado por inscrever-se no Emby Connect. Um email ser\u00e1 enviado para seu endere\u00e7o com as instru\u00e7\u00f5es para confirmar sua nova conta. Por favor, confirme a conta e ent\u00e3o volte aqui para entrar.",
"Share": "Share",
"HeaderShare": "Compartilhar", "HeaderShare": "Compartilhar",
"ButtonShareHelp": "Compartilhe uma p\u00e1gina web contendo informa\u00e7\u00f5es de m\u00eddia com uma m\u00eddia social. Os arquivos de m\u00eddia nunca ser\u00e3o compartilhados publicamente.", "ButtonShareHelp": "Compartilhe uma p\u00e1gina web contendo informa\u00e7\u00f5es de m\u00eddia com uma m\u00eddia social. Os arquivos de m\u00eddia nunca ser\u00e3o compartilhados publicamente.",
"ButtonShare": "Compartilhar", "ButtonShare": "Compartilhar",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que com o Emby Premiere voc\u00ea pode enriquecer sua experi\u00eancia com recursos como o CInema Mode?", "MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que com o Emby Premiere voc\u00ea pode enriquecer sua experi\u00eancia com recursos como o CInema Mode?",
"MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.", "MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.",
"OptionEnableDisplayMirroring": "Ativar espelhamento da tela", "OptionEnableDisplayMirroring": "Ativar espelhamento da tela",
"HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o Requer uma Ades\u00e3o de Colaborador",
"HeaderSyncRequiresSupporterMembershipAppVersion": "A Sincroniza\u00e7\u00e3o requer a conex\u00e3o com um Servidor Emby com uma subscric\u00e3o ativa do Emby Premiere.", "HeaderSyncRequiresSupporterMembershipAppVersion": "A Sincroniza\u00e7\u00e3o requer a conex\u00e3o com um Servidor Emby com uma subscric\u00e3o ativa do Emby Premiere.",
"ErrorValidatingSupporterInfo": "Ocorreu um erro ao validar sua informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.", "ErrorValidatingSupporterInfo": "Ocorreu um erro ao validar sua informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Alterar as defini\u00e7\u00f5es dos metadados afetar\u00e1 o novo conte\u00fado que ser\u00e1 adicionado. Para atualizar o conte\u00fado existente, abra a tela de detalhes e clique no bot\u00e3o atualizar ou execute atualiza\u00e7\u00f5es em bloco usando o gerenciador de metadados.", "MetadataSettingChangeHelp": "Alterar as defini\u00e7\u00f5es dos metadados afetar\u00e1 o novo conte\u00fado que ser\u00e1 adicionado. Para atualizar o conte\u00fado existente, abra a tela de detalhes e clique no bot\u00e3o atualizar ou execute atualiza\u00e7\u00f5es em bloco usando o gerenciador de metadados.",
"LabelTitle": "T\u00edtulo:", "LabelTitle": "T\u00edtulo:",
"LabelOriginalTitle": "T\u00edtulo original:", "LabelOriginalTitle": "T\u00edtulo original:",
"LabelSortTitle": "T\u00edtulo para ordena\u00e7\u00e3o:" "LabelSortTitle": "T\u00edtulo para ordena\u00e7\u00e3o:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Sair", "LabelExit": "Sair",
"LabelVisitCommunity": "Visitar a Comunidade", "LabelVisitCommunity": "Visitar a Comunidade",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configurar c\u00f3digo PIN", "ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
"HeaderAdultsReadHere": "Adultos Leiam Aqui!", "HeaderAdultsReadHere": "Adultos Leiam Aqui!",
"RegisterWithPayPal": "Registar com PayPal", "RegisterWithPayPal": "Registar com PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia", "HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia",
"LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:", "LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
"LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. Multim\u00e9dia convertida, criada durante o processo de sincroniza\u00e7\u00e3o, ser\u00e1 aqui armazenada.", "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. Multim\u00e9dia convertida, criada durante o processo de sincroniza\u00e7\u00e3o, ser\u00e1 aqui armazenada.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Conte\u00fado misto", "FolderTypeMixed": "Conte\u00fado misto",
"FolderTypeMovies": "Filmes", "FolderTypeMovies": "Filmes",
"FolderTypeMusic": "M\u00fasica", "FolderTypeMusic": "M\u00fasica",
"FolderTypeAdultVideos": "V\u00eddeos adultos",
"FolderTypePhotos": "Fotos", "FolderTypePhotos": "Fotos",
"FolderTypeMusicVideos": "V\u00eddeos musicais", "FolderTypeMusicVideos": "V\u00eddeos musicais",
"FolderTypeHomeVideos": "V\u00eddeos caseiros", "FolderTypeHomeVideos": "V\u00eddeos caseiros",
@ -202,7 +205,7 @@
"OptionAscending": "Ascendente", "OptionAscending": "Ascendente",
"OptionDescending": "Descendente", "OptionDescending": "Descendente",
"OptionRuntime": "Dura\u00e7\u00e3o", "OptionRuntime": "Dura\u00e7\u00e3o",
"OptionReleaseDate": "Data de Lan\u00e7amento:", "OptionReleaseDate": "Data de Lan\u00e7amento",
"OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es", "OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es",
"OptionDatePlayed": "Data de reprodu\u00e7\u00e3o", "OptionDatePlayed": "Data de reprodu\u00e7\u00e3o",
"OptionDateAdded": "Data de adi\u00e7\u00e3o", "OptionDateAdded": "Data de adi\u00e7\u00e3o",
@ -216,6 +219,7 @@
"OptionBudget": "Or\u00e7amento", "OptionBudget": "Or\u00e7amento",
"OptionRevenue": "Receita", "OptionRevenue": "Receita",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Anos",
"OptionPosterCard": "Cart\u00e3o da capa", "OptionPosterCard": "Cart\u00e3o da capa",
"OptionBackdrop": "Imagem de fundo", "OptionBackdrop": "Imagem de fundo",
"OptionTimeline": "Linha de tempo", "OptionTimeline": "Linha de tempo",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Selecionar", "ButtonSelect": "Selecionar",
"ButtonGroupVersions": "Agrupar Vers\u00f5es", "ButtonGroupVersions": "Agrupar Vers\u00f5es",
"ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Usar o Prismo File Mount atrav\u00e9s de uma licen\u00e7a doada.", "PismoMessage": "Usar o Prismo File Mount atrav\u00e9s de uma licen\u00e7a doada.",
"TangibleSoftwareMessage": "A utilizar conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a doada.", "TangibleSoftwareMessage": "A utilizar conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a doada.",
"HeaderCredits": "Cr\u00e9ditos", "HeaderCredits": "Cr\u00e9ditos",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Defina localiza\u00e7\u00f5es personalizadas. Deixe os campos em branco para usar os valores padr\u00e3o.", "LabelCustomPaths": "Defina localiza\u00e7\u00f5es personalizadas. Deixe os campos em branco para usar os valores padr\u00e3o.",
"LabelCachePath": "Localiza\u00e7\u00e3o da cache:", "LabelCachePath": "Localiza\u00e7\u00e3o da cache:",
"LabelCachePathHelp": "Defina uma localiza\u00e7\u00e3o para os arquivos de cache como, por exemplo, imagens. Por favor, deixe em branco para usar o padr\u00e3o do servidor.", "LabelCachePathHelp": "Defina uma localiza\u00e7\u00e3o para os arquivos de cache como, por exemplo, imagens. Por favor, deixe em branco para usar o padr\u00e3o do servidor.",
"LabelRecordingPath": "Local da grava\u00e7\u00e3o:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Defina uma localiza\u00e7\u00e3o personalizada para salvar as grava\u00e7\u00f5es. Deixe em branco para usar o padr\u00e3o do servidor.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Localiza\u00e7\u00e3o das imagens por nome:", "LabelImagesByNamePath": "Localiza\u00e7\u00e3o das imagens por nome:",
"LabelImagesByNamePathHelp": "Defina uma localiza\u00e7\u00e3o para imagens baixadas para ator, g\u00eanero e est\u00fadio.", "LabelImagesByNamePathHelp": "Defina uma localiza\u00e7\u00e3o para imagens baixadas para ator, g\u00eanero e est\u00fadio.",
"LabelMetadataPath": "Localiza\u00e7\u00e3o dos metadados:", "LabelMetadataPath": "Localiza\u00e7\u00e3o dos metadados:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "N\u00famero da porta da Web socket:", "LabelWebSocketPortNumber": "N\u00famero da porta da Web socket:",
"LabelEnableAutomaticPortMap": "Ativar mapeamento autom\u00e1tico de portas", "LabelEnableAutomaticPortMap": "Ativar mapeamento autom\u00e1tico de portas",
"LabelEnableAutomaticPortMapHelp": "Tentativa de mapear automaticamente a porta p\u00fablica para a porta local atrav\u00e9s de UPnP. Isto poder\u00e1 n\u00e3o funcionar em alguns modelos de roteadores.", "LabelEnableAutomaticPortMapHelp": "Tentativa de mapear automaticamente a porta p\u00fablica para a porta local atrav\u00e9s de UPnP. Isto poder\u00e1 n\u00e3o funcionar em alguns modelos de roteadores.",
"LabelExternalDDNS": "Endere\u00e7o WAN Externo:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Se possuir um DNS din\u00e2mico digite aqui. As apps do Emby o usar\u00e3o para conectar-se remotamente. Deixe em branco para detec\u00e7\u00e3o autom\u00e1tica.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Retomar", "TabResume": "Retomar",
"TabWeather": "Tempo", "TabWeather": "Tempo",
"TitleAppSettings": "Configura\u00e7\u00f5es da Aplica\u00e7\u00e3o", "TitleAppSettings": "Configura\u00e7\u00f5es da Aplica\u00e7\u00e3o",
@ -586,8 +592,8 @@
"LabelSkipped": "Ignorado", "LabelSkipped": "Ignorado",
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o dos Epis\u00f3dios", "HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o dos Epis\u00f3dios",
"LabelSeries": "S\u00e9rie:", "LabelSeries": "S\u00e9rie:",
"LabelSeasonNumber": "N\u00famero da temporada", "LabelSeasonNumber": "N\u00famero da temporada:",
"LabelEpisodeNumber": "N\u00famero do epis\u00f3dio", "LabelEpisodeNumber": "N\u00famero do epis\u00f3dio:",
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:", "LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios", "LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
"OptionRememberOrganizeCorrection": "Salvar e aplicar esta corre\u00e7\u00e3o para arquivos futuros com nomes semelhantes", "OptionRememberOrganizeCorrection": "Salvar e aplicar esta corre\u00e7\u00e3o para arquivos futuros com nomes semelhantes",
@ -726,10 +732,12 @@
"TabNowPlaying": "A reproduzir agora", "TabNowPlaying": "A reproduzir agora",
"TabNavigation": "Navega\u00e7\u00e3o", "TabNavigation": "Navega\u00e7\u00e3o",
"TabControls": "Controlos", "TabControls": "Controlos",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Cenas", "ButtonScenes": "Cenas",
"ButtonSubtitles": "Legendas", "ButtonSubtitles": "Legendas",
"ButtonPreviousTrack": "Faixa anterior", "ButtonPreviousTrack": "Faixa anterior",
"ButtonNextTrack": "Faixa seguinte", "ButtonNextTrack": "Faixa seguinte",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Parar", "ButtonStop": "Parar",
"ButtonPause": "Pausar", "ButtonPause": "Pausar",
"ButtonNext": "Pr\u00f3xima", "ButtonNext": "Pr\u00f3xima",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.", "MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.",
"MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.", "MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.",
"ButtonDismiss": "Descartar", "ButtonDismiss": "Descartar",
"ButtonMore": "Mais",
"ButtonEditOtherUserPreferences": "Editar este perfil de utilizador, imagem e prefer\u00eancias pessoais.", "ButtonEditOtherUserPreferences": "Editar este perfil de utilizador, imagem e prefer\u00eancias pessoais.",
"LabelChannelStreamQuality": "Qualidade preferida do canal da internet:", "LabelChannelStreamQuality": "Qualidade preferida do canal da internet:",
"LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.", "LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "N\u00e3o identificada", "OptionUnidentified": "N\u00e3o identificada",
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental", "OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Temporada 0", "OptionSeason0": "Temporada 0",
"LabelReport": "Relat\u00f3rio:", "LabelReport": "Relat\u00f3rio:",
"OptionReportSongs": "M\u00fasicas", "OptionReportSongs": "M\u00fasicas",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artistas", "OptionReportArtists": "Artistas",
"OptionReportAlbums": "\u00c1lbuns", "OptionReportAlbums": "\u00c1lbuns",
"OptionReportAdultVideos": "V\u00eddeos adultos", "OptionReportAdultVideos": "V\u00eddeos adultos",
"ButtonMore": "Mais", "ButtonMoreItems": "Mais",
"HeaderActivity": "Atividade", "HeaderActivity": "Atividade",
"ScheduledTaskStartedWithName": "{0} iniciado", "ScheduledTaskStartedWithName": "{0} iniciado",
"ScheduledTaskCancelledWithName": "{0} foi cancelado", "ScheduledTaskCancelledWithName": "{0} foi cancelado",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha", "HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais", "HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
"HeaderVideoTypes": "Tipos de V\u00eddeo", "HeaderVideoTypes": "Tipos de V\u00eddeo",
"HeaderYears": "Anos",
"HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o ou que n\u00e3o seja reconhecida:", "HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o ou que n\u00e3o seja reconhecida:",
"LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:", "LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:",
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada", "LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Filmes Por Estrear", "HeaderUpcomingMovies": "Filmes Por Estrear",
"HeaderUpcomingSports": "Esportes Por Estrear", "HeaderUpcomingSports": "Esportes Por Estrear",
"HeaderUpcomingPrograms": "Programas Por Estrear", "HeaderUpcomingPrograms": "Programas Por Estrear",
"ButtonMoreItems": "Mais",
"LabelShowLibraryTileNames": "Mostrar os nomes dos mosaicos da biblioteca", "LabelShowLibraryTileNames": "Mostrar os nomes dos mosaicos da biblioteca",
"LabelShowLibraryTileNamesHelp": "Determina se os t\u00edtulos ser\u00e3o exibidos embaixo dos mosaicos da biblioteca na p\u00e1gina in\u00edcio", "LabelShowLibraryTileNamesHelp": "Determina se os t\u00edtulos ser\u00e3o exibidos embaixo dos mosaicos da biblioteca na p\u00e1gina in\u00edcio",
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo", "OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscri\u00e7\u00e3o Emby Premiere \u00e9 necess\u00e1ria para criar a grava\u00e7\u00e3o autom\u00e1tica de s\u00e9ries.", "MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscri\u00e7\u00e3o Emby Premiere \u00e9 necess\u00e1ria para criar a grava\u00e7\u00e3o autom\u00e1tica de s\u00e9ries.",
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV", "HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
"LabelDataProvider": "Provedor de dados:", "LabelDataProvider": "Provedor de dados:",
"OptionSendRecordingsToAutoOrganize": "Ativar Auto-Organizar para novas grava\u00e7\u00f5es", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Novas grava\u00e7\u00f5es ser\u00e3o enviadas para o recurso Auto-Organizar e importadas para sua biblioteca multim\u00e9dia.", "OptionSendRecordingsToAutoOrganizeHelp": "Novas grava\u00e7\u00f5es ser\u00e3o enviadas para o recurso Auto-Organizar e importadas para sua biblioteca multim\u00e9dia.",
"HeaderDefaultPadding": "Padding Padr\u00e3o", "HeaderDefaultPadding": "Padding Padr\u00e3o",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Legendas", "HeaderSubtitles": "Legendas",
"HeaderVideos": "V\u00eddeos", "HeaderVideos": "V\u00eddeos",
"OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lise de v\u00eddeo quadro a quadro", "OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lise de v\u00eddeo quadro a quadro",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Organiza\u00e7\u00e3o Autom\u00e1tica", "TabAutoOrganize": "Organiza\u00e7\u00e3o Autom\u00e1tica",
"TabPlugins": "Extens\u00f5es", "TabPlugins": "Extens\u00f5es",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Faixas de \u00e1udio",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifica\u00e7\u00f5es", "HeaderNotifications": "Notifica\u00e7\u00f5es",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Veja os seus ficheiros adicionados recentemente, pr\u00f3ximos epis\u00f3dios e mais. Os c\u00edrculos verdes indicam quantos itens n\u00e3o reproduzidos voc\u00ea tem.", "WebClientTourContent": "Veja os seus ficheiros adicionados recentemente, pr\u00f3ximos epis\u00f3dios e mais. Os c\u00edrculos verdes indicam quantos itens n\u00e3o reproduzidos voc\u00ea tem.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "O nome do utilizador j\u00e1 est\u00e1 em uso. Por favor, escolha um novo nome e tente novamente.", "ErrorMessageUsernameInUse": "O nome do utilizador j\u00e1 est\u00e1 em uso. Por favor, escolha um novo nome e tente novamente.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Compartilhe uma p\u00e1gina web contendo informa\u00e7\u00f5es multim\u00e9dia com um website social. Os arquivos de multim\u00e9dia nunca ser\u00e3o compartilhados publicamente.", "ButtonShareHelp": "Compartilhe uma p\u00e1gina web contendo informa\u00e7\u00f5es multim\u00e9dia com um website social. Os arquivos de multim\u00e9dia nunca ser\u00e3o compartilhados publicamente.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Iesire", "LabelExit": "Iesire",
"LabelVisitCommunity": "Viziteaza comunitatea", "LabelVisitCommunity": "Viziteaza comunitatea",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configureaza codul pin", "ButtonConfigurePinCode": "Configureaza codul pin",
"HeaderAdultsReadHere": "Adultii Cititi Aici!", "HeaderAdultsReadHere": "Adultii Cititi Aici!",
"RegisterWithPayPal": "Inregistreaza-te cu PayPal", "RegisterWithPayPal": "Inregistreaza-te cu PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita", "HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita",
"LabelSyncTempPath": "Cale fisier temporara", "LabelSyncTempPath": "Cale fisier temporara",
"LabelSyncTempPathHelp": "Specifica\u021bi un dosar de sincronizare personalizat de lucru. Media convertite create \u00een timpul procesului de sincronizare vor fi stocate aici.", "LabelSyncTempPathHelp": "Specifica\u021bi un dosar de sincronizare personalizat de lucru. Media convertite create \u00een timpul procesului de sincronizare vor fi stocate aici.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Activati afisarea imbunatatita a filmelor", "LabelEnableEnhancedMovies": "Activati afisarea imbunatatita a filmelor",
"LabelEnableEnhancedMoviesHelp": "C\u00e2nd este activat, filmele vor fi afi\u0219ate ca dosare pentru a include trailere, figuranti, distributie si echipa, si alte tipuri de con\u021binut.", "LabelEnableEnhancedMoviesHelp": "C\u00e2nd este activat, filmele vor fi afi\u0219ate ca dosare pentru a include trailere, figuranti, distributie si echipa, si alte tipuri de con\u021binut.",
"HeaderSyncJobInfo": "Activitate de sincronizare", "HeaderSyncJobInfo": "Activitate de sincronizare",
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Continut mixt",
"FolderTypeMovies": "Filme", "FolderTypeMovies": "Filme",
"FolderTypeMusic": "Muzica", "FolderTypeMusic": "Muzica",
"FolderTypeAdultVideos": "Filme Porno",
"FolderTypePhotos": "Fotografii", "FolderTypePhotos": "Fotografii",
"FolderTypeMusicVideos": "Videoclipuri", "FolderTypeMusicVideos": "Videoclipuri",
"FolderTypeHomeVideos": "Video Personale", "FolderTypeHomeVideos": "Video Personale",
@ -202,7 +205,7 @@
"OptionAscending": "Crescator", "OptionAscending": "Crescator",
"OptionDescending": "Descrescator", "OptionDescending": "Descrescator",
"OptionRuntime": "Timp Rulare", "OptionRuntime": "Timp Rulare",
"OptionReleaseDate": "Data Aparitie", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Contorizari rulari", "OptionPlayCount": "Contorizari rulari",
"OptionDatePlayed": "Data Rulare", "OptionDatePlayed": "Data Rulare",
"OptionDateAdded": "Data Adaugare", "OptionDateAdded": "Data Adaugare",
@ -216,6 +219,7 @@
"OptionBudget": "Buget", "OptionBudget": "Buget",
"OptionRevenue": "Incasari", "OptionRevenue": "Incasari",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u0412\u044b\u0445\u043e\u0434", "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", "LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u0435 \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430",
"LabelGithub": "GitHub", "LabelGithub": "GitHub",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c PIN-\u043a\u043e\u0434", "ButtonConfigurePinCode": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c PIN-\u043a\u043e\u0434",
"HeaderAdultsReadHere": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435, \u043f\u0440\u043e\u0447\u0442\u0438\u0442\u0435 \u044d\u0442\u043e!", "HeaderAdultsReadHere": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435, \u043f\u0440\u043e\u0447\u0442\u0438\u0442\u0435 \u044d\u0442\u043e!",
"RegisterWithPayPal": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal", "RegisterWithPayPal": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal",
"HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.",
"HeaderEnjoyDayTrial": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e \u043d\u0430 14 \u0434\u043d\u0435\u0439", "HeaderEnjoyDayTrial": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e \u043d\u0430 14 \u0434\u043d\u0435\u0439",
"LabelSyncTempPath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0441 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438 \u0444\u0430\u0439\u043b\u0430\u043c\u0438:", "LabelSyncTempPath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0441 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438 \u0444\u0430\u0439\u043b\u0430\u043c\u0438:",
"LabelSyncTempPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c.", "LabelSyncTempPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "\u0421\u043c\u0435\u0448\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "FolderTypeMixed": "\u0421\u043c\u0435\u0448\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
"FolderTypeMovies": "\u041a\u0438\u043d\u043e", "FolderTypeMovies": "\u041a\u0438\u043d\u043e",
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", "FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
"FolderTypeAdultVideos": "\u0414\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445",
"FolderTypePhotos": "\u0424\u043e\u0442\u043e", "FolderTypePhotos": "\u0424\u043e\u0442\u043e",
"FolderTypeMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e", "FolderTypeMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e",
"FolderTypeHomeVideos": "\u0414\u043e\u043c. \u0432\u0438\u0434\u0435\u043e", "FolderTypeHomeVideos": "\u0414\u043e\u043c. \u0432\u0438\u0434\u0435\u043e",
@ -216,6 +219,7 @@
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"OptionRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430", "OptionRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430",
"OptionPoster": "\u041f\u043e\u0441\u0442\u0435\u0440", "OptionPoster": "\u041f\u043e\u0441\u0442\u0435\u0440",
"HeaderYears": "\u0413\u043e\u0434\u044b",
"OptionPosterCard": "\u041f\u043e\u0441\u0442\u0435\u0440-\u043a\u0430\u0440\u0442\u0430", "OptionPosterCard": "\u041f\u043e\u0441\u0442\u0435\u0440-\u043a\u0430\u0440\u0442\u0430",
"OptionBackdrop": "\u0417\u0430\u0434\u043d\u0438\u043a", "OptionBackdrop": "\u0417\u0430\u0434\u043d\u0438\u043a",
"OptionTimeline": "\u0425\u0440\u043e\u043d\u043e\u043b\u043e\u0433\u0438\u044f", "OptionTimeline": "\u0425\u0440\u043e\u043d\u043e\u043b\u043e\u0433\u0438\u044f",
@ -266,13 +270,13 @@
"OptionContinuing": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f", "OptionContinuing": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f",
"OptionEnded": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u0441\u044f", "OptionEnded": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u0441\u044f",
"HeaderAirDays": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430", "HeaderAirDays": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430",
"OptionSundayShort": "Sun", "OptionSundayShort": "\u0432\u0441\u043a",
"OptionMondayShort": "Mon", "OptionMondayShort": "\u043f\u043d\u0434",
"OptionTuesdayShort": "Tue", "OptionTuesdayShort": "\u0432\u0442\u0440",
"OptionWednesdayShort": "Wed", "OptionWednesdayShort": "\u0441\u0440\u0434",
"OptionThursdayShort": "Thu", "OptionThursdayShort": "\u0447\u0442\u0432",
"OptionFridayShort": "Fri", "OptionFridayShort": "\u043f\u0442\u043d",
"OptionSaturdayShort": "Sat", "OptionSaturdayShort": "\u0441\u0431\u0442",
"OptionSunday": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435", "OptionSunday": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435",
"OptionMonday": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a", "OptionMonday": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a",
"OptionTuesday": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", "OptionTuesday": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
@ -347,8 +351,10 @@
"LabelCustomPaths": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0435 \u043f\u0443\u0442\u0438 \u043a\u0443\u0434\u0430 \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u044f \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c\u0438, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435.", "LabelCustomPaths": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0435 \u043f\u0443\u0442\u0438 \u043a\u0443\u0434\u0430 \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u044f \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c\u0438, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435.",
"LabelCachePath": "\u041f\u0443\u0442\u044c \u043a \u043a\u0435\u0448\u0443:", "LabelCachePath": "\u041f\u0443\u0442\u044c \u043a \u043a\u0435\u0448\u0443:",
"LabelCachePathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432 \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0435 \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044f.", "LabelCachePathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432 \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0435 \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044f.",
"LabelRecordingPath": "\u041f\u0443\u0442\u044c \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438:", "LabelRecordingPath": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438:",
"LabelRecordingPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0435 \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044f.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439. \u0415\u0441\u043b\u0438 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u0430 program data \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
"LabelImagesByNamePath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u00abImages by name\u00bb:", "LabelImagesByNamePath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u00abImages by name\u00bb:",
"LabelImagesByNamePathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0430\u043a\u0442\u0451\u0440\u043e\u0432, \u0436\u0430\u043d\u0440\u043e\u0432 \u0438 \u0441\u0442\u0443\u0434\u0438\u0439.", "LabelImagesByNamePathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0430\u043a\u0442\u0451\u0440\u043e\u0432, \u0436\u0430\u043d\u0440\u043e\u0432 \u0438 \u0441\u0442\u0443\u0434\u0438\u0439.",
"LabelMetadataPath": "\u041f\u0443\u0442\u044c \u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c:", "LabelMetadataPath": "\u041f\u0443\u0442\u044c \u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c:",
@ -489,7 +495,7 @@
"HeaderCastCrew": "\u0421\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u0438 \u0441\u043d\u0438\u043c\u0430\u043b\u0438", "HeaderCastCrew": "\u0421\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u0438 \u0441\u043d\u0438\u043c\u0430\u043b\u0438",
"HeaderAdditionalParts": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0447\u0430\u0441\u0442\u0438", "HeaderAdditionalParts": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0447\u0430\u0441\u0442\u0438",
"ButtonSplitVersionsApart": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438", "ButtonSplitVersionsApart": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438",
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440...", "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440",
"LabelMissing": "\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442", "LabelMissing": "\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442",
"LabelOffline": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e", "LabelOffline": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e",
"PathSubstitutionHelp": "\u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u0441 \u043f\u0443\u0442\u0451\u043c, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f. \u041f\u0440\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435, \u043e\u043d\u0438 \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0438\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043f\u043e \u0441\u0435\u0442\u0438, \u0438 \u0438\u0437\u0431\u0435\u0433\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u043d\u0430 \u0438\u0445 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044e \u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443.", "PathSubstitutionHelp": "\u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u0441 \u043f\u0443\u0442\u0451\u043c, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f. \u041f\u0440\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435, \u043e\u043d\u0438 \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0438\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043f\u043e \u0441\u0435\u0442\u0438, \u0438 \u0438\u0437\u0431\u0435\u0433\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u043d\u0430 \u0438\u0445 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044e \u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443.",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "\u041d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u0430:", "LabelWebSocketPortNumber": "\u041d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u0430:",
"LabelEnableAutomaticPortMap": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432", "LabelEnableAutomaticPortMap": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432",
"LabelEnableAutomaticPortMapHelp": "\u041f\u043e\u043f\u044b\u0442\u0430\u0442\u044c\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0440\u0442\u043e\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e UPnP. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.", "LabelEnableAutomaticPortMapHelp": "\u041f\u043e\u043f\u044b\u0442\u0430\u0442\u044c\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0440\u0442\u043e\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e UPnP. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.",
"LabelExternalDDNS": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 WAN-\u0430\u0434\u0440\u0435\u0441:", "LabelExternalDDNS": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u0434\u043e\u043c\u0435\u043d:",
"LabelExternalDDNSHelp": "\u0415\u0441\u043b\u0438 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 DNS, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0435\u0433\u043e \u0437\u0434\u0435\u0441\u044c. \u042d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438. \u041d\u0435 \u0437\u0430\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435 \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u044f.", "LabelExternalDDNSHelp": "\u0415\u0441\u043b\u0438 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 DNS, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0435\u0433\u043e \u0437\u0434\u0435\u0441\u044c. \u042d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438. \u042d\u0442\u043e \u043f\u043e\u043b\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f, \u043a\u043e\u0433\u0434\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u043c ssl-\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u043c.",
"TabResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435", "TabResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435",
"TabWeather": "\u041f\u043e\u0433\u043e\u0434\u0430", "TabWeather": "\u041f\u043e\u0433\u043e\u0434\u0430",
"TitleAppSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "TitleAppSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
@ -586,8 +592,8 @@
"LabelSkipped": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043e", "LabelSkipped": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043e",
"HeaderEpisodeOrganization": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u0430", "HeaderEpisodeOrganization": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
"LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:", "LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:",
"LabelSeasonNumber": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430", "LabelSeasonNumber": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430:",
"LabelEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u0430", "LabelEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u0430:",
"LabelEndingEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u0430:", "LabelEndingEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u0430:",
"LabelEndingEpisodeNumberHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432", "LabelEndingEpisodeNumberHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432",
"OptionRememberOrganizeCorrection": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u0442\u0443 \u043a\u043e\u0440\u0440\u0435\u043a\u0446\u0438\u044e \u043a \u0431\u0443\u0434\u0443\u0449\u0438\u043c \u0444\u0430\u0439\u043b\u0430\u043c \u0441 \u043f\u043e\u0445\u043e\u0436\u0438\u043c\u0438 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f\u043c\u0438", "OptionRememberOrganizeCorrection": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u0442\u0443 \u043a\u043e\u0440\u0440\u0435\u043a\u0446\u0438\u044e \u043a \u0431\u0443\u0434\u0443\u0449\u0438\u043c \u0444\u0430\u0439\u043b\u0430\u043c \u0441 \u043f\u043e\u0445\u043e\u0436\u0438\u043c\u0438 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f\u043c\u0438",
@ -726,10 +732,12 @@
"TabNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f", "TabNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f",
"TabNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "TabNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f",
"TabControls": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "TabControls": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
"ButtonFullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d...",
"ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...", "ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...",
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b...", "ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b...",
"ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...", "ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
"ButtonNextTrack": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...", "ButtonNextTrack": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
"ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
"ButtonStop": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c", "ButtonStop": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c",
"ButtonPause": "\u041f\u0430\u0443\u0437\u0430", "ButtonPause": "\u041f\u0430\u0443\u0437\u0430",
"ButtonNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435...", "ButtonNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435...",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b (\u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f) \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\u043e \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.", "MessageNoPlaylistsAvailable": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b (\u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f) \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\u043e \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.", "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.",
"ButtonDismiss": "\u041f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u0442\u044c", "ButtonDismiss": "\u041f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u0442\u044c",
"ButtonMore": "\u0415\u0449\u0451",
"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.", "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:", "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.", "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.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "\u041d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435", "OptionUnidentified": "\u041d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435",
"OptionMissingParentalRating": "\u041d\u0435\u0442 \u0432\u043e\u0437\u0440\u0430\u0441\u0442. \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438", "OptionMissingParentalRating": "\u041d\u0435\u0442 \u0432\u043e\u0437\u0440\u0430\u0441\u0442. \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"OptionStub": "\u0417\u0430\u0433\u043b\u0443\u0448\u043a\u0430", "OptionStub": "\u0417\u0430\u0433\u043b\u0443\u0448\u043a\u0430",
"HeaderEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
"OptionSeason0": "\u0421\u0435\u0437\u043e\u043d 0", "OptionSeason0": "\u0421\u0435\u0437\u043e\u043d 0",
"LabelReport": "\u041e\u0442\u0447\u0451\u0442:", "LabelReport": "\u041e\u0442\u0447\u0451\u0442:",
"OptionReportSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "OptionReportSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438", "OptionReportArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
"OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", "OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
"OptionReportAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "OptionReportAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
"ButtonMore": "\u0415\u0449\u0451", "ButtonMoreItems": "\u0415\u0449\u0451...",
"HeaderActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f", "HeaderActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
"ScheduledTaskStartedWithName": "{0} - \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430", "ScheduledTaskStartedWithName": "{0} - \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430",
"ScheduledTaskCancelledWithName": "{0} - \u0431\u044b\u043b\u0430 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430", "ScheduledTaskCancelledWithName": "{0} - \u0431\u044b\u043b\u0430 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "\u0421\u0431\u0440\u043e\u0441 \u043f\u0430\u0440\u043e\u043b\u044f", "HeaderPasswordReset": "\u0421\u0431\u0440\u043e\u0441 \u043f\u0430\u0440\u043e\u043b\u044f",
"HeaderParentalRatings": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", "HeaderParentalRatings": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"HeaderVideoTypes": "\u0422\u0438\u043f\u044b \u0432\u0438\u0434\u0435\u043e", "HeaderVideoTypes": "\u0422\u0438\u043f\u044b \u0432\u0438\u0434\u0435\u043e",
"HeaderYears": "\u0413\u043e\u0434\u044b",
"HeaderBlockItemsWithNoRating": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u0438\u043b\u0438 \u043d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438:", "HeaderBlockItemsWithNoRating": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u0438\u043b\u0438 \u043d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438:",
"LabelBlockContentWithTags": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u0442\u0435\u0433\u0430\u043c\u0438:", "LabelBlockContentWithTags": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u0442\u0435\u0433\u0430\u043c\u0438:",
"LabelEnableSingleImageInDidlLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c \u0434\u043e \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430", "LabelEnableSingleImageInDidlLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c \u0434\u043e \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b", "HeaderUpcomingMovies": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b",
"HeaderUpcomingSports": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435 \u0438\u0437 \u0441\u043f\u043e\u0440\u0442\u0430", "HeaderUpcomingSports": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435 \u0438\u0437 \u0441\u043f\u043e\u0440\u0442\u0430",
"HeaderUpcomingPrograms": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438", "HeaderUpcomingPrograms": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438",
"ButtonMoreItems": "\u0415\u0449\u0451...",
"LabelShowLibraryTileNames": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u043f\u043b\u0438\u0442\u043e\u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438", "LabelShowLibraryTileNames": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u043f\u043b\u0438\u0442\u043e\u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
"LabelShowLibraryTileNamesHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0431\u0443\u0434\u0443\u0442 \u043b\u0438 \u043d\u0430\u0434\u043f\u0438\u0441\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u044b \u043f\u043e\u0434 \u043f\u043b\u0438\u0442\u043a\u0430\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435.", "LabelShowLibraryTileNamesHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0431\u0443\u0434\u0443\u0442 \u043b\u0438 \u043d\u0430\u0434\u043f\u0438\u0441\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u044b \u043f\u043e\u0434 \u043f\u043b\u0438\u0442\u043a\u0430\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435.",
"OptionEnableTranscodingThrottle": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0440\u043e\u0441\u0441\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "OptionEnableTranscodingThrottle": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0440\u043e\u0441\u0441\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0439.", "MessageActiveSubscriptionRequiredSeriesRecordings": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0439.",
"HeaderSetupTVGuide": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430", "HeaderSetupTVGuide": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
"LabelDataProvider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0434\u0430\u043d\u043d\u044b\u0445:", "LabelDataProvider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0434\u0430\u043d\u043d\u044b\u0445:",
"OptionSendRecordingsToAutoOrganize": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439", "OptionSendRecordingsToAutoOrganize": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432\u043d\u0443\u0442\u0440\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043f\u0430\u043f\u043e\u043a \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u0432 \u0434\u0440\u0443\u0433\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u0445.",
"OptionSendRecordingsToAutoOrganizeHelp": "\u041d\u043e\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u043a \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443 \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a \u0438 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443.", "OptionSendRecordingsToAutoOrganizeHelp": "\u041d\u043e\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u043a \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443 \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a \u0438 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443.",
"HeaderDefaultPadding": "\u041e\u0442\u0431\u0438\u0432\u043a\u0438 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", "HeaderDefaultPadding": "\u041e\u0442\u0431\u0438\u0432\u043a\u0438 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "\u0421\u0443\u0431\u0442.", "HeaderSubtitles": "\u0421\u0443\u0431\u0442.",
"HeaderVideos": "\u0412\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b", "HeaderVideos": "\u0412\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b",
"OptionEnableVideoFrameAnalysis": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0432\u0438\u0434\u0435\u043e", "OptionEnableVideoFrameAnalysis": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0432\u0438\u0434\u0435\u043e",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a", "TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a",
"TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b", "TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
"TabHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430", "TabHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430",
"ButtonFullscreen": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430...",
"ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
"ButtonQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e...", "ButtonQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e...",
"HeaderNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", "HeaderNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
"HeaderSelectPlayer": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f", "HeaderSelectPlayer": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f",
@ -1898,13 +1905,13 @@
"HeaderParentalRating": "\u0412\u043e\u0437\u0440. \u043a\u0430\u0442.", "HeaderParentalRating": "\u0412\u043e\u0437\u0440. \u043a\u0430\u0442.",
"HeaderReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f.", "HeaderReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f.",
"HeaderDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431.", "HeaderDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431.",
"HeaderSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b", "HeaderSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:",
"HeaderSeason": "\u0421\u0435\u0437\u043e\u043d", "HeaderSeason": "\u0421\u0435\u0437\u043e\u043d",
"HeaderSeasonNumber": "\u2116 \u0441\u0435\u0437\u043e\u043d\u0430", "HeaderSeasonNumber": "\u2116 \u0441\u0435\u0437\u043e\u043d\u0430",
"HeaderNetwork": "\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u044c", "HeaderNetwork": "\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u044c",
"HeaderYear": "\u0413\u043e\u0434", "HeaderYear": "\u0413\u043e\u0434:",
"HeaderGameSystem": "\u0418\u0433\u0440. \u0441\u0438\u0441\u0442.", "HeaderGameSystem": "\u0418\u0433\u0440. \u0441\u0438\u0441\u0442.",
"HeaderPlayers": "\u0418\u0433\u0440\u043e\u043a\u0438", "HeaderPlayers": "\u0418\u0433\u0440\u043e\u043a\u0438:",
"HeaderEmbeddedImage": "\u0412\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0439 \u0440\u0438\u0441\u0443\u043d\u043e\u043a", "HeaderEmbeddedImage": "\u0412\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0439 \u0440\u0438\u0441\u0443\u043d\u043e\u043a",
"HeaderTrack": "\u0414\u043e\u0440-\u043a\u0430", "HeaderTrack": "\u0414\u043e\u0440-\u043a\u0430",
"HeaderDisc": "\u0414\u0438\u0441\u043a", "HeaderDisc": "\u0414\u0438\u0441\u043a",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", "HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
"HeaderGames": "\u0418\u0433\u0440\u044b", "HeaderGames": "\u0418\u0433\u0440\u044b",
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438", "HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
"HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b:",
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u044b", "HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u044b",
"HeaderTracks": "\u0414\u043e\u0440-\u043a\u0438", "HeaderTracks": "\u0414\u043e\u0440-\u043a\u0438",
"HeaderItems": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b", "HeaderItems": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b",
@ -2098,6 +2104,9 @@
"LabelFullReview": "\u041e\u0442\u0437\u044b\u0432 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e:", "LabelFullReview": "\u041e\u0442\u0437\u044b\u0432 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e:",
"LabelShortRatingDescription": "\u041a\u0440\u0430\u0442\u043a\u0430\u044f \u0441\u0432\u043e\u0434\u043a\u0430 \u043e\u0446\u0435\u043d\u043a\u0438:", "LabelShortRatingDescription": "\u041a\u0440\u0430\u0442\u043a\u0430\u044f \u0441\u0432\u043e\u0434\u043a\u0430 \u043e\u0446\u0435\u043d\u043a\u0438:",
"OptionIRecommendThisItem": "\u042f \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442", "OptionIRecommendThisItem": "\u042f \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "\u0421\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0438 \u0442.\u0434. \u0417\u0435\u043b\u0451\u043d\u044b\u0435 \u043a\u0440\u0443\u0436\u043e\u0447\u043a\u0438 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.", "WebClientTourContent": "\u0421\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0438 \u0442.\u0434. \u0417\u0435\u043b\u0451\u043d\u044b\u0435 \u043a\u0440\u0443\u0436\u043e\u0447\u043a\u0438 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.",
"WebClientTourMovies": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435 \u0444\u0438\u043b\u044c\u043c\u044b, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0438 \u0442.\u0434., \u0441 \u043b\u044e\u0431\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0438\u043c\u0435\u044e\u0449\u0435\u0433\u043e \u0431\u0440\u0430\u0443\u0437\u0435\u0440.", "WebClientTourMovies": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435 \u0444\u0438\u043b\u044c\u043c\u044b, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0438 \u0442.\u0434., \u0441 \u043b\u044e\u0431\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0438\u043c\u0435\u044e\u0449\u0435\u0433\u043e \u0431\u0440\u0430\u0443\u0437\u0435\u0440.",
"WebClientTourMouseOver": "\u0417\u0430\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u0443\u0440\u0441\u043e\u0440 \u043c\u044b\u0448\u0438 \u043d\u0430\u0434 \u043b\u044e\u0431\u044b\u043c \u043f\u043e\u0441\u0442\u0435\u0440\u043e\u043c \u0434\u043b\u044f \u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0432\u0430\u0436\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438", "WebClientTourMouseOver": "\u0417\u0430\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u0443\u0440\u0441\u043e\u0440 \u043c\u044b\u0448\u0438 \u043d\u0430\u0434 \u043b\u044e\u0431\u044b\u043c \u043f\u043e\u0441\u0442\u0435\u0440\u043e\u043c \u0434\u043b\u044f \u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0432\u0430\u0436\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0434\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u043e\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", "ErrorMessageUsernameInUse": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0434\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u043e\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
"ErrorMessageEmailInUse": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0434\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443, \u0438\u043b\u0438 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u043c \u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c.", "ErrorMessageEmailInUse": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0434\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443, \u0438\u043b\u0438 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u043c \u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c.",
"MessageThankYouForConnectSignUp": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044e \u0432 Emby Connect. \u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u042d-\u043f\u043e\u0447\u0442\u044b \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u043c\u0438 \u043a\u0430\u043a \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0432\u0430\u0448\u0443 \u043d\u043e\u0432\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u043d\u0430 \u0432\u0430\u0448 \u0430\u0434\u0440\u0435\u0441. \u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c, \u0430 \u043f\u043e\u0442\u043e\u043c \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0441\u044e\u0434\u0430, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0439\u0442\u0438.", "MessageThankYouForConnectSignUp": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044e \u0432 Emby Connect. \u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u042d-\u043f\u043e\u0447\u0442\u044b \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u043c\u0438 \u043a\u0430\u043a \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0432\u0430\u0448\u0443 \u043d\u043e\u0432\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u043d\u0430 \u0432\u0430\u0448 \u0430\u0434\u0440\u0435\u0441. \u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c, \u0430 \u043f\u043e\u0442\u043e\u043c \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0441\u044e\u0434\u0430, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0439\u0442\u0438.",
"Share": "Share",
"HeaderShare": "\u041e\u0431\u0449\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f", "HeaderShare": "\u041e\u0431\u0449\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f",
"ButtonShareHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u0441\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435.", "ButtonShareHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u0441\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435.",
"ButtonShare": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f", "ButtonShare": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441 Emby Premiere \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0420\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430?", "MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441 Emby Premiere \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0420\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430?",
"MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u044d\u0444\u0444\u0435\u043a\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.", "MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u044d\u0444\u0444\u0435\u043a\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.",
"OptionEnableDisplayMirroring": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "OptionEnableDisplayMirroring": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
"HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
"HeaderSyncRequiresSupporterMembershipAppVersion": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a Emby Server \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.", "HeaderSyncRequiresSupporterMembershipAppVersion": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a Emby Server \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.",
"ErrorValidatingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 Emby Premiere. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", "ErrorValidatingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 Emby Premiere. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.",
"LabelLocalSyncStatusValue": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}", "LabelLocalSyncStatusValue": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u0432\u043b\u0438\u044f\u0435\u0442 \u043d\u0430 \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u043c. \u0427\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043e\u0442\u043a\u0440\u043e\u0439\u0442\u0435 \u044d\u043a\u0440\u0430\u043d \u0441 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c, \u0438\u043b\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0435 \u043f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445.", "MetadataSettingChangeHelp": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u0432\u043b\u0438\u044f\u0435\u0442 \u043d\u0430 \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u043c. \u0427\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043e\u0442\u043a\u0440\u043e\u0439\u0442\u0435 \u044d\u043a\u0440\u0430\u043d \u0441 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c, \u0438\u043b\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0435 \u043f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445.",
"LabelTitle": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:", "LabelTitle": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
"LabelOriginalTitle": "\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:", "LabelOriginalTitle": "\u041e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
"LabelSortTitle": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044e:" "LabelSortTitle": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044e:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

2368
dashboard-ui/strings/sk.json Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Izhod", "LabelExit": "Izhod",
"LabelVisitCommunity": "Obiscite Skupnost", "LabelVisitCommunity": "Obiscite Skupnost",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Nastavi pin kodo", "ButtonConfigurePinCode": "Nastavi pin kodo",
"HeaderAdultsReadHere": "Odrasli, preberite tukaj!", "HeaderAdultsReadHere": "Odrasli, preberite tukaj!",
"RegisterWithPayPal": "Registriraj se z PayPal-om", "RegisterWithPayPal": "Registriraj se z PayPal-om",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Uzivaje v 14 Dnevni preizkusni razlicici", "HeaderEnjoyDayTrial": "Uzivaje v 14 Dnevni preizkusni razlicici",
"LabelSyncTempPath": "Zacasna pot do datoteke:", "LabelSyncTempPath": "Zacasna pot do datoteke:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -89,9 +91,10 @@
"LabelEnableEnhancedMovies": "Enable enhanced movie displays", "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
"HeaderSyncJobInfo": "Sync Job", "HeaderSyncJobInfo": "Sync Job",
"FolderTypeMixed": "Mesane vsebine", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -202,7 +205,7 @@
"OptionAscending": "Ascending", "OptionAscending": "Ascending",
"OptionDescending": "Descending", "OptionDescending": "Descending",
"OptionRuntime": "Runtime", "OptionRuntime": "Runtime",
"OptionReleaseDate": "Datum Izdaje", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count", "OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played", "OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added", "OptionDateAdded": "Date Added",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Dodaj v Zbirko", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Avsluta", "LabelExit": "Avsluta",
"LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum", "LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Konfigurera pinkod", "ButtonConfigurePinCode": "Konfigurera pinkod",
"HeaderAdultsReadHere": "Vuxna L\u00e4s H\u00e4r!", "HeaderAdultsReadHere": "Vuxna L\u00e4s H\u00e4r!",
"RegisterWithPayPal": "Registrera med PayPal", "RegisterWithPayPal": "Registrera med PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod", "HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod",
"LabelSyncTempPath": "Tempor\u00e4r fils\u00f6kv\u00e4g:", "LabelSyncTempPath": "Tempor\u00e4r fils\u00f6kv\u00e4g:",
"LabelSyncTempPathHelp": "Ange en anpassad s\u00f6kv\u00e4g f\u00f6r synkronisering. Omkodad media som skapas under synkroniseringsprocessen kommer lagras h\u00e4r.", "LabelSyncTempPathHelp": "Ange en anpassad s\u00f6kv\u00e4g f\u00f6r synkronisering. Omkodad media som skapas under synkroniseringsprocessen kommer lagras h\u00e4r.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Blandat inneh\u00e5ll", "FolderTypeMixed": "Blandat inneh\u00e5ll",
"FolderTypeMovies": "Filmer", "FolderTypeMovies": "Filmer",
"FolderTypeMusic": "Musik", "FolderTypeMusic": "Musik",
"FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna",
"FolderTypePhotos": "Foton", "FolderTypePhotos": "Foton",
"FolderTypeMusicVideos": "Musikvideor", "FolderTypeMusicVideos": "Musikvideor",
"FolderTypeHomeVideos": "Hemvideor", "FolderTypeHomeVideos": "Hemvideor",
@ -202,7 +205,7 @@
"OptionAscending": "Stigande", "OptionAscending": "Stigande",
"OptionDescending": "Sjunkande", "OptionDescending": "Sjunkande",
"OptionRuntime": "Speltid", "OptionRuntime": "Speltid",
"OptionReleaseDate": "Premi\u00e4rdatum", "OptionReleaseDate": "Releasedatum",
"OptionPlayCount": "Antal visningar", "OptionPlayCount": "Antal visningar",
"OptionDatePlayed": "Senast visad", "OptionDatePlayed": "Senast visad",
"OptionDateAdded": "Inlagd den", "OptionDateAdded": "Inlagd den",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Int\u00e4kter", "OptionRevenue": "Int\u00e4kter",
"OptionPoster": "Affisch", "OptionPoster": "Affisch",
"HeaderYears": "Years",
"OptionPosterCard": "Affischkort", "OptionPosterCard": "Affischkort",
"OptionBackdrop": "Fondbild", "OptionBackdrop": "Fondbild",
"OptionTimeline": "Tidslinje", "OptionTimeline": "Tidslinje",
@ -325,7 +329,7 @@
"OptionMetascore": "Metabetyg", "OptionMetascore": "Metabetyg",
"ButtonSelect": "V\u00e4lj", "ButtonSelect": "V\u00e4lj",
"ButtonGroupVersions": "Gruppera versioner", "ButtonGroupVersions": "Gruppera versioner",
"ButtonAddToCollection": "L\u00e4gg till samling", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Anv\u00e4nder Pismo File Mount baserat p\u00e5 en sk\u00e4nkt licens", "PismoMessage": "Anv\u00e4nder Pismo File Mount baserat p\u00e5 en sk\u00e4nkt licens",
"TangibleSoftwareMessage": "Anv\u00e4nder Tangible Solutions Java\/C#-konverterare baserat p\u00e5 en sk\u00e4nkt licens.", "TangibleSoftwareMessage": "Anv\u00e4nder Tangible Solutions Java\/C#-konverterare baserat p\u00e5 en sk\u00e4nkt licens.",
"HeaderCredits": "Tack till", "HeaderCredits": "Tack till",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Ange anpassade s\u00f6kv\u00e4gar d\u00e4r s\u00e5 \u00f6nskas. L\u00e4mna tomt f\u00f6r att anv\u00e4nda standardv\u00e4rdena.", "LabelCustomPaths": "Ange anpassade s\u00f6kv\u00e4gar d\u00e4r s\u00e5 \u00f6nskas. L\u00e4mna tomt f\u00f6r att anv\u00e4nda standardv\u00e4rdena.",
"LabelCachePath": "Plats f\u00f6r cache:", "LabelCachePath": "Plats f\u00f6r cache:",
"LabelCachePathHelp": "Ange en s\u00f6kv\u00e4g f\u00f6r cachefiler som till exempel bilder. L\u00e4mna tomt f\u00f6r att anv\u00e4nda serverns standardv\u00e4rde.", "LabelCachePathHelp": "Ange en s\u00f6kv\u00e4g f\u00f6r cachefiler som till exempel bilder. L\u00e4mna tomt f\u00f6r att anv\u00e4nda serverns standardv\u00e4rde.",
"LabelRecordingPath": "S\u00f6kv\u00e4g f\u00f6r inspelningar:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Ange en s\u00f6kv\u00e4g f\u00f6r att spara inspelningar. L\u00e4mna tomt f\u00f6r att anv\u00e4nda serverns standardv\u00e4rde.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Plats f\u00f6r bilddatabasen (ImagesByName):", "LabelImagesByNamePath": "Plats f\u00f6r bilddatabasen (ImagesByName):",
"LabelImagesByNamePathHelp": "Ange s\u00e4rskild s\u00f6kv\u00e4g f\u00f6r h\u00e4mtade bilder p\u00e5 sk\u00e5despelare, genre och studios.", "LabelImagesByNamePathHelp": "Ange s\u00e4rskild s\u00f6kv\u00e4g f\u00f6r h\u00e4mtade bilder p\u00e5 sk\u00e5despelare, genre och studios.",
"LabelMetadataPath": "Plats f\u00f6r metadata:", "LabelMetadataPath": "Plats f\u00f6r metadata:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Webanslutningens portnummer:", "LabelWebSocketPortNumber": "Webanslutningens portnummer:",
"LabelEnableAutomaticPortMap": "Aktivera automatisk koppling av portar", "LabelEnableAutomaticPortMap": "Aktivera automatisk koppling av portar",
"LabelEnableAutomaticPortMapHelp": "Automatisk l\u00e4nkning av publik och lokal port via UPnP. Detta kanske inte fungerar med alla routrar.", "LabelEnableAutomaticPortMapHelp": "Automatisk l\u00e4nkning av publik och lokal port via UPnP. Detta kanske inte fungerar med alla routrar.",
"LabelExternalDDNS": "Extern WAN adress:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "Om du anv\u00e4nder ett dynamisk DNS-namn kan du fylla i det h\u00e4r. Embyappar anv\u00e4nder det n\u00e4r de kopplar upp utanf\u00f6r ditt n\u00e4tv\u00e4rk. L\u00e4mna tomt f\u00f6r att autodetektera.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "\u00c5teruppta", "TabResume": "\u00c5teruppta",
"TabWeather": "V\u00e4der", "TabWeather": "V\u00e4der",
"TitleAppSettings": "Programinst\u00e4llningar", "TitleAppSettings": "Programinst\u00e4llningar",
@ -582,12 +588,12 @@
"HeaderProgram": "Program", "HeaderProgram": "Program",
"HeaderClients": "Klienter", "HeaderClients": "Klienter",
"LabelCompleted": "Klar", "LabelCompleted": "Klar",
"LabelFailed": "Misslyckades", "LabelFailed": "Failed",
"LabelSkipped": "Hoppades \u00f6ver", "LabelSkipped": "Hoppades \u00f6ver",
"HeaderEpisodeOrganization": "Katalogisering av avsnitt", "HeaderEpisodeOrganization": "Katalogisering av avsnitt",
"LabelSeries": "Serie:", "LabelSeries": "Serie",
"LabelSeasonNumber": "S\u00e4song nummer", "LabelSeasonNumber": "S\u00e4songsnummer:",
"LabelEpisodeNumber": "Avsnittsnummer", "LabelEpisodeNumber": "Avsnittsnummer:",
"LabelEndingEpisodeNumber": "Avslutande avsnittsnummer:", "LabelEndingEpisodeNumber": "Avslutande avsnittsnummer:",
"LabelEndingEpisodeNumberHelp": "Kr\u00e4vs endast f\u00f6r filer som inneh\u00e5ller flera avsnitt", "LabelEndingEpisodeNumberHelp": "Kr\u00e4vs endast f\u00f6r filer som inneh\u00e5ller flera avsnitt",
"OptionRememberOrganizeCorrection": "Spara och applicera den h\u00e4r \u00e4ndringen p\u00e5 framtida filer mad liknande namn", "OptionRememberOrganizeCorrection": "Spara och applicera den h\u00e4r \u00e4ndringen p\u00e5 framtida filer mad liknande namn",
@ -726,10 +732,12 @@
"TabNowPlaying": "Nu spelas", "TabNowPlaying": "Nu spelas",
"TabNavigation": "Navigering", "TabNavigation": "Navigering",
"TabControls": "Kontroller", "TabControls": "Kontroller",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scener", "ButtonScenes": "Scener",
"ButtonSubtitles": "Undertexter", "ButtonSubtitles": "Undertexter",
"ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r:", "ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r",
"ButtonNextTrack": "N\u00e4sta sp\u00e5r:", "ButtonNextTrack": "N\u00e4sta sp\u00e5r",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stopp", "ButtonStop": "Stopp",
"ButtonPause": "Paus", "ButtonPause": "Paus",
"ButtonNext": "N\u00e4sta", "ButtonNext": "N\u00e4sta",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "Spellistor l\u00e5ter dig skapa listor med inneh\u00e5ll att spela upp i ordning. F\u00f6r att l\u00e4gga till objekt i spellistor, h\u00f6gerklicka eller tryck-och-h\u00e5ll och v\u00e4lj \"l\u00e4gg till i spellista\".", "MessageNoPlaylistsAvailable": "Spellistor l\u00e5ter dig skapa listor med inneh\u00e5ll att spela upp i ordning. F\u00f6r att l\u00e4gga till objekt i spellistor, h\u00f6gerklicka eller tryck-och-h\u00e5ll och v\u00e4lj \"l\u00e4gg till i spellista\".",
"MessageNoPlaylistItemsAvailable": "Den h\u00e4r spellistan \u00e4r tom.", "MessageNoPlaylistItemsAvailable": "Den h\u00e4r spellistan \u00e4r tom.",
"ButtonDismiss": "Avvisa", "ButtonDismiss": "Avvisa",
"ButtonMore": "Mer",
"ButtonEditOtherUserPreferences": "\u00c4ndra den h\u00e4r anv\u00e4ndarens profil, bild och personliga inst\u00e4llningar.", "ButtonEditOtherUserPreferences": "\u00c4ndra den h\u00e4r anv\u00e4ndarens profil, bild och personliga inst\u00e4llningar.",
"LabelChannelStreamQuality": "F\u00f6redragen kvalitet p\u00e5 internetkanaler:", "LabelChannelStreamQuality": "F\u00f6redragen kvalitet p\u00e5 internetkanaler:",
"LabelChannelStreamQualityHelp": "N\u00e4r bandbredden \u00e4r begr\u00e4nsad kan en l\u00e4gre kvalitet ge en mera st\u00f6rningsfri upplevelse.", "LabelChannelStreamQualityHelp": "N\u00e4r bandbredden \u00e4r begr\u00e4nsad kan en l\u00e4gre kvalitet ge en mera st\u00f6rningsfri upplevelse.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Oidentifierad", "OptionUnidentified": "Oidentifierad",
"OptionMissingParentalRating": "\u00c5ldersgr\u00e4ns saknas", "OptionMissingParentalRating": "\u00c5ldersgr\u00e4ns saknas",
"OptionStub": "Stump", "OptionStub": "Stump",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "S\u00e4song 0", "OptionSeason0": "S\u00e4song 0",
"LabelReport": "Rapport:", "LabelReport": "Rapport:",
"OptionReportSongs": "L\u00e5tar", "OptionReportSongs": "L\u00e5tar",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artister", "OptionReportArtists": "Artister",
"OptionReportAlbums": "Album", "OptionReportAlbums": "Album",
"OptionReportAdultVideos": "Vuxen videos", "OptionReportAdultVideos": "Vuxen videos",
"ButtonMore": "Mer", "ButtonMoreItems": "More",
"HeaderActivity": "Aktivitet", "HeaderActivity": "Aktivitet",
"ScheduledTaskStartedWithName": "{0} startad", "ScheduledTaskStartedWithName": "{0} startad",
"ScheduledTaskCancelledWithName": "{0} avbr\u00f6ts", "ScheduledTaskCancelledWithName": "{0} avbr\u00f6ts",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "\u00c5terst\u00e4llning av l\u00f6senordet", "HeaderPasswordReset": "\u00c5terst\u00e4llning av l\u00f6senordet",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Videotyper", "HeaderVideoTypes": "Videotyper",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Blockera inneh\u00e5ll med ingen eller ej k\u00e4nd \u00e5ldersgr\u00e4ns:", "HeaderBlockItemsWithNoRating": "Blockera inneh\u00e5ll med ingen eller ej k\u00e4nd \u00e5ldersgr\u00e4ns:",
"LabelBlockContentWithTags": "Blockera inneh\u00e5ll med etiketter:", "LabelBlockContentWithTags": "Blockera inneh\u00e5ll med etiketter:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Aktivera strypning", "OptionEnableTranscodingThrottle": "Aktivera strypning",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Aktivera automatisk katalogisering f\u00f6r nya inspelningar.", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "Nya inspelningar kommer katalogiseras automatiskt och importeras till ditt mediabibliotek.", "OptionSendRecordingsToAutoOrganizeHelp": "Nya inspelningar kommer katalogiseras automatiskt och importeras till ditt mediabibliotek.",
"HeaderDefaultPadding": "Tidsmarginaler", "HeaderDefaultPadding": "Tidsmarginaler",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Undertexter", "HeaderSubtitles": "Undertexter",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1592,7 +1601,7 @@
"LabelEpisode": "Avsnitt", "LabelEpisode": "Avsnitt",
"Series": "Series", "Series": "Series",
"LabelStopping": "Avbryter", "LabelStopping": "Avbryter",
"LabelCancelled": "(avbr\u00f6ts)", "LabelCancelled": "Cancelled",
"ButtonDownload": "Ladda ned", "ButtonDownload": "Ladda ned",
"SyncJobStatusQueued": "Queued", "SyncJobStatusQueued": "Queued",
"SyncJobStatusConverting": "Converting", "SyncJobStatusConverting": "Converting",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Katalogisera automatiskt", "TabAutoOrganize": "Katalogisera automatiskt",
"TabPlugins": "Till\u00e4gg", "TabPlugins": "Till\u00e4gg",
"TabHelp": "Hj\u00e4lp", "TabHelp": "Hj\u00e4lp",
"ButtonFullscreen": "V\u00e4xla fullsk\u00e4rmsl\u00e4ge",
"ButtonAudioTracks": "Ljudsp\u00e5r",
"ButtonQuality": "Kvalitet", "ButtonQuality": "Kvalitet",
"HeaderNotifications": "Meddelanden", "HeaderNotifications": "Meddelanden",
"HeaderSelectPlayer": "V\u00e4lj spelare", "HeaderSelectPlayer": "V\u00e4lj spelare",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Uppl\u00f6sning", "HeaderResolution": "Uppl\u00f6sning",
"HeaderRuntime": "Speltid", "HeaderRuntime": "Speltid",
"HeaderCommunityRating": "Anv\u00e4ndaromd\u00f6me", "HeaderCommunityRating": "Anv\u00e4ndaromd\u00f6me",
"HeaderParentalRating": "\u00c5ldersgr\u00e4ns", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Premi\u00e4rdatum:", "HeaderReleaseDate": "Premi\u00e4rdatum:",
"HeaderDateAdded": "Inlagd den", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Serie", "HeaderSeries": "Serie:",
"HeaderSeason": "S\u00e4song", "HeaderSeason": "S\u00e4song",
"HeaderSeasonNumber": "S\u00e4songsnummer:", "HeaderSeasonNumber": "S\u00e4songsnummer:",
"HeaderNetwork": "TV-bolag", "HeaderNetwork": "TV-bolag",
"HeaderYear": "\u00c5r", "HeaderYear": "\u00c5r:",
"HeaderGameSystem": "Spelsystem", "HeaderGameSystem": "Spelsystem",
"HeaderPlayers": "Spelare", "HeaderPlayers": "Spelare:",
"HeaderEmbeddedImage": "Infogad bild", "HeaderEmbeddedImage": "Infogad bild",
"HeaderTrack": "Sp\u00e5r", "HeaderTrack": "Sp\u00e5r",
"HeaderDisc": "Skiva", "HeaderDisc": "Skiva",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Album", "HeaderAlbums": "Album",
"HeaderGames": "Spel", "HeaderGames": "Spel",
"HeaderBooks": "B\u00f6cker", "HeaderBooks": "B\u00f6cker",
"HeaderEpisodes": "Avsnitt:",
"HeaderSeasons": "S\u00e4songer", "HeaderSeasons": "S\u00e4songer",
"HeaderTracks": "Sp\u00e5r", "HeaderTracks": "Sp\u00e5r",
"HeaderItems": "Objekt", "HeaderItems": "Objekt",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Fullst\u00e4ndig recension:", "LabelFullReview": "Fullst\u00e4ndig recension:",
"LabelShortRatingDescription": "Kort summering av betyg:", "LabelShortRatingDescription": "Kort summering av betyg:",
"OptionIRecommendThisItem": "Jag rekommenderar detta", "OptionIRecommendThisItem": "Jag rekommenderar detta",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "Se nytillkommet inneh\u00e5ll, kommande avsnitt m m. De gr\u00f6na ringarna anger hur m\u00e5nga ej visade objekt som finns.", "WebClientTourContent": "Se nytillkommet inneh\u00e5ll, kommande avsnitt m m. De gr\u00f6na ringarna anger hur m\u00e5nga ej visade objekt som finns.",
"WebClientTourMovies": "Se filmer, trailers och mycket mera p\u00e5 vilken enhet som helst som har en webbl\u00e4sare", "WebClientTourMovies": "Se filmer, trailers och mycket mera p\u00e5 vilken enhet som helst som har en webbl\u00e4sare",
"WebClientTourMouseOver": "H\u00e5ll muspekaren \u00f6ver en affisch f\u00f6r att se den viktigaste informationen", "WebClientTourMouseOver": "H\u00e5ll muspekaren \u00f6ver en affisch f\u00f6r att se den viktigaste informationen",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "Anv\u00e4ndarnamnet anv\u00e4nds redan. V\u00e4lj ett nytt anv\u00e4ndarnamn och f\u00f6rs\u00f6k igen.", "ErrorMessageUsernameInUse": "Anv\u00e4ndarnamnet anv\u00e4nds redan. V\u00e4lj ett nytt anv\u00e4ndarnamn och f\u00f6rs\u00f6k igen.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Cikis", "LabelExit": "Cikis",
"LabelVisitCommunity": "Bizi Ziyaret Edin", "LabelVisitCommunity": "Bizi Ziyaret Edin",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Budget", "OptionBudget": "Budget",
"OptionRevenue": "Revenue", "OptionRevenue": "Revenue",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Se\u00e7im", "ButtonSelect": "Se\u00e7im",
"ButtonGroupVersions": "Grup Versionlar\u0131", "ButtonGroupVersions": "Grup Versionlar\u0131",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor", "TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
"TabNavigation": "Navigasyon", "TabNavigation": "Navigasyon",
"TabControls": "Kontrol", "TabControls": "Kontrol",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Sahneler", "ButtonScenes": "Sahneler",
"ButtonSubtitles": "Altyaz\u0131lar", "ButtonSubtitles": "Altyaz\u0131lar",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Durdur", "ButtonStop": "Durdur",
"ButtonPause": "Duraklat", "ButtonPause": "Duraklat",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u0412\u0438\u0439\u0442\u0438", "LabelExit": "\u0412\u0438\u0439\u0442\u0438",
"LabelVisitCommunity": "Visit Community", "LabelVisitCommunity": "Visit Community",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", "FolderTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438",
"FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430", "FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "\u0421\u0432\u0456\u0442\u043b\u0438\u043d\u0438", "FolderTypePhotos": "\u0421\u0432\u0456\u0442\u043b\u0438\u043d\u0438",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"OptionRevenue": "\u0417\u0431\u043e\u0440\u0438", "OptionRevenue": "\u0417\u0431\u043e\u0440\u0438",
"OptionPoster": "Poster", "OptionPoster": "Poster",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline", "OptionTimeline": "Timeline",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "Select", "ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "Skipped", "LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "\u0414\u043e\u0434\u0430\u0442\u043a\u0438", "TabPlugins": "\u0414\u043e\u0434\u0430\u0442\u043a\u0438",
"TabHelp": "\u0414\u043e\u0432\u0456\u0434\u043a\u0430", "TabHelp": "\u0414\u043e\u0432\u0456\u0434\u043a\u0430",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "\u042f\u043a\u0456\u0441\u0442\u044c", "ButtonQuality": "\u042f\u043a\u0456\u0441\u0442\u044c",
"HeaderNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", "HeaderNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "\u0421\u0435\u0440\u0456\u0457", "HeaderSeries": "Series:",
"HeaderSeason": "\u0421\u0435\u0437\u043e\u043d", "HeaderSeason": "\u0421\u0435\u0437\u043e\u043d",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "\u0420\u0456\u043a", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "\u0414\u043e\u0440\u0456\u0436\u043a\u0430", "HeaderTrack": "\u0414\u043e\u0440\u0456\u0436\u043a\u0430",
"HeaderDisc": "\u0414\u0438\u0441\u043a", "HeaderDisc": "\u0414\u0438\u0441\u043a",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0438", "HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0438",
"HeaderGames": "\u0406\u0433\u0440\u0438", "HeaderGames": "\u0406\u0433\u0440\u0438",
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438", "HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u0438", "HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u0438",
"HeaderTracks": "\u0414\u043e\u0440\u0456\u0436\u043a\u0438", "HeaderTracks": "\u0414\u043e\u0440\u0456\u0436\u043a\u0438",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "Tho\u00e1t", "LabelExit": "Tho\u00e1t",
"LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng", "LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -92,6 +94,7 @@
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -216,6 +219,7 @@
"OptionBudget": "Ng\u00e2n s\u00e1ch", "OptionBudget": "Ng\u00e2n s\u00e1ch",
"OptionRevenue": "Doanh thu", "OptionRevenue": "Doanh thu",
"OptionPoster": "\u00c1p ph\u00edch", "OptionPoster": "\u00c1p ph\u00edch",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "Backdrop", "OptionBackdrop": "Backdrop",
"OptionTimeline": "D\u00f2ng th\u1eddi gian", "OptionTimeline": "D\u00f2ng th\u1eddi gian",
@ -325,7 +329,7 @@
"OptionMetascore": "Metascore", "OptionMetascore": "Metascore",
"ButtonSelect": "L\u1ef1a ch\u1ecdn", "ButtonSelect": "L\u1ef1a ch\u1ecdn",
"ButtonGroupVersions": "Group Versions", "ButtonGroupVersions": "Group Versions",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.", "PismoMessage": "Utilizing Pismo File Mount through a donated license.",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.", "LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:", "LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "Images by name path:", "LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:", "LabelMetadataPath": "Metadata path:",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web socket port number:", "LabelWebSocketPortNumber": "Web socket port number:",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "Resume", "TabResume": "Resume",
"TabWeather": "Weather", "TabWeather": "Weather",
"TitleAppSettings": "App Settings", "TitleAppSettings": "App Settings",
@ -586,8 +592,8 @@
"LabelSkipped": "B\u1ecf qua", "LabelSkipped": "B\u1ecf qua",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u9000\u51fa", "LabelExit": "\u9000\u51fa",
"LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a", "LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "\u914d\u7f6e\u7b80\u6613PIN\u7801\uff1a", "ButtonConfigurePinCode": "\u914d\u7f6e\u7b80\u6613PIN\u7801\uff1a",
"HeaderAdultsReadHere": "\u6210\u4eba\u9605\u8bfb\u8fd9\u91cc\uff01", "HeaderAdultsReadHere": "\u6210\u4eba\u9605\u8bfb\u8fd9\u91cc\uff01",
"RegisterWithPayPal": "\u6ce8\u518cPayPal", "RegisterWithPayPal": "\u6ce8\u518cPayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528", "HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528",
"LabelSyncTempPath": "\u4e34\u65f6\u6587\u4ef6\u8def\u5f84\uff1a", "LabelSyncTempPath": "\u4e34\u65f6\u6587\u4ef6\u8def\u5f84\uff1a",
"LabelSyncTempPathHelp": "\u6307\u5b9a\u540c\u6b65\u65f6\u7684\u5de5\u4f5c\u6587\u4ef6\u5939\u3002\u5728\u540c\u6b65\u8fc7\u7a0b\u4e2d\u521b\u5efa\u7684\u8f6c\u6362\u5a92\u4f53\u6587\u4ef6\u5c06\u88ab\u5b58\u653e\u5728\u8fd9\u91cc\u3002", "LabelSyncTempPathHelp": "\u6307\u5b9a\u540c\u6b65\u65f6\u7684\u5de5\u4f5c\u6587\u4ef6\u5939\u3002\u5728\u540c\u6b65\u8fc7\u7a0b\u4e2d\u521b\u5efa\u7684\u8f6c\u6362\u5a92\u4f53\u6587\u4ef6\u5c06\u88ab\u5b58\u653e\u5728\u8fd9\u91cc\u3002",
@ -92,6 +94,7 @@
"FolderTypeMixed": "\u6df7\u5408\u5185\u5bb9", "FolderTypeMixed": "\u6df7\u5408\u5185\u5bb9",
"FolderTypeMovies": "\u7535\u5f71", "FolderTypeMovies": "\u7535\u5f71",
"FolderTypeMusic": "\u97f3\u4e50", "FolderTypeMusic": "\u97f3\u4e50",
"FolderTypeAdultVideos": "\u6210\u4eba\u89c6\u9891",
"FolderTypePhotos": "\u56fe\u7247", "FolderTypePhotos": "\u56fe\u7247",
"FolderTypeMusicVideos": "\u97f3\u4e50\u89c6\u9891", "FolderTypeMusicVideos": "\u97f3\u4e50\u89c6\u9891",
"FolderTypeHomeVideos": "\u5bb6\u5ead\u89c6\u9891", "FolderTypeHomeVideos": "\u5bb6\u5ead\u89c6\u9891",
@ -202,7 +205,7 @@
"OptionAscending": "\u5347\u5e8f", "OptionAscending": "\u5347\u5e8f",
"OptionDescending": "\u964d\u5e8f", "OptionDescending": "\u964d\u5e8f",
"OptionRuntime": "\u64ad\u653e\u65f6\u95f4", "OptionRuntime": "\u64ad\u653e\u65f6\u95f4",
"OptionReleaseDate": "\u53d1\u884c\u65e5\u671f", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "\u64ad\u653e\u6b21\u6570", "OptionPlayCount": "\u64ad\u653e\u6b21\u6570",
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f", "OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
"OptionDateAdded": "\u52a0\u5165\u65e5\u671f", "OptionDateAdded": "\u52a0\u5165\u65e5\u671f",
@ -216,6 +219,7 @@
"OptionBudget": "\u9884\u7b97", "OptionBudget": "\u9884\u7b97",
"OptionRevenue": "\u6536\u5165", "OptionRevenue": "\u6536\u5165",
"OptionPoster": "\u6d77\u62a5", "OptionPoster": "\u6d77\u62a5",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "\u80cc\u666f", "OptionBackdrop": "\u80cc\u666f",
"OptionTimeline": "\u65f6\u95f4\u8868", "OptionTimeline": "\u65f6\u95f4\u8868",
@ -325,7 +329,7 @@
"OptionMetascore": "\u8bc4\u5206", "OptionMetascore": "\u8bc4\u5206",
"ButtonSelect": "\u9009\u62e9", "ButtonSelect": "\u9009\u62e9",
"ButtonGroupVersions": "\u7248\u672c\u53f7", "ButtonGroupVersions": "\u7248\u672c\u53f7",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "\u901a\u8fc7\u6350\u8d60\u83b7\u53d6Pismo File Mount\u7684\u4f7f\u7528\u6388\u6743\u3002", "PismoMessage": "\u901a\u8fc7\u6350\u8d60\u83b7\u53d6Pismo File Mount\u7684\u4f7f\u7528\u6388\u6743\u3002",
"TangibleSoftwareMessage": "\u901a\u8fc7\u6350\u8d60\u7684\u8bb8\u53ef\u8bc1\u4f7f\u7528Java \/ C\uff03\u8f6c\u6362\u5668\u5207\u5b9e\u53ef\u884c\u7684\u89e3\u51b3\u65b9\u6848\u3002", "TangibleSoftwareMessage": "\u901a\u8fc7\u6350\u8d60\u7684\u8bb8\u53ef\u8bc1\u4f7f\u7528Java \/ C\uff03\u8f6c\u6362\u5668\u5207\u5b9e\u53ef\u884c\u7684\u89e3\u51b3\u65b9\u6848\u3002",
"HeaderCredits": "\u5236\u4f5c\u4eba\u5458\u540d\u5355", "HeaderCredits": "\u5236\u4f5c\u4eba\u5458\u540d\u5355",
@ -347,8 +351,10 @@
"LabelCustomPaths": "\u81ea\u5b9a\u4e49\u6240\u9700\u7684\u8def\u5f84\uff0c\u5982\u679c\u5b57\u6bb5\u4e3a\u7a7a\u5219\u4f7f\u7528\u9ed8\u8ba4\u503c\u3002", "LabelCustomPaths": "\u81ea\u5b9a\u4e49\u6240\u9700\u7684\u8def\u5f84\uff0c\u5982\u679c\u5b57\u6bb5\u4e3a\u7a7a\u5219\u4f7f\u7528\u9ed8\u8ba4\u503c\u3002",
"LabelCachePath": "\u7f13\u5b58\u8def\u5f84\uff1a", "LabelCachePath": "\u7f13\u5b58\u8def\u5f84\uff1a",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "\u6309\u540d\u79f0\u5f52\u7c7b\u7684\u56fe\u7247\u8def\u5f84\uff1a", "LabelImagesByNamePath": "\u6309\u540d\u79f0\u5f52\u7c7b\u7684\u56fe\u7247\u8def\u5f84\uff1a",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "\u5a92\u4f53\u8d44\u6599\u8def\u5f84\uff1a", "LabelMetadataPath": "\u5a92\u4f53\u8d44\u6599\u8def\u5f84\uff1a",
@ -489,7 +495,7 @@
"HeaderCastCrew": "\u6f14\u804c\u4eba\u5458", "HeaderCastCrew": "\u6f14\u804c\u4eba\u5458",
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u5206", "HeaderAdditionalParts": "\u9644\u52a0\u90e8\u5206",
"ButtonSplitVersionsApart": "\u652f\u7ebf\u7248\u672c", "ButtonSplitVersionsApart": "\u652f\u7ebf\u7248\u672c",
"ButtonPlayTrailer": "\u9884\u544a\u7247", "ButtonPlayTrailer": "Trailer",
"LabelMissing": "\u7f3a\u5931", "LabelMissing": "\u7f3a\u5931",
"LabelOffline": "\u79bb\u7ebf", "LabelOffline": "\u79bb\u7ebf",
"PathSubstitutionHelp": "\u8def\u5f84\u66ff\u6362\u7528\u4e8e\u628a\u670d\u52a1\u5668\u4e0a\u7684\u8def\u5f84\u6620\u5c04\u5230\u5ba2\u6237\u7aef\u80fd\u591f\u8bbf\u95ee\u7684\u8def\u5f84\u3002\u5141\u8bb8\u7528\u6237\u76f4\u63a5\u8bbf\u95ee\u670d\u52a1\u5668\u4e0a\u7684\u5a92\u4f53\uff0c\u5e76\u80fd\u591f\u76f4\u63a5\u901a\u8fc7\u7f51\u7edc\u4e0a\u64ad\u653e\uff0c\u53ef\u4ee5\u4e0d\u8fdb\u884c\u8f6c\u6d41\u548c\u8f6c\u7801\uff0c\u4ece\u800c\u8282\u7ea6\u670d\u52a1\u5668\u8d44\u6e90\u3002", "PathSubstitutionHelp": "\u8def\u5f84\u66ff\u6362\u7528\u4e8e\u628a\u670d\u52a1\u5668\u4e0a\u7684\u8def\u5f84\u6620\u5c04\u5230\u5ba2\u6237\u7aef\u80fd\u591f\u8bbf\u95ee\u7684\u8def\u5f84\u3002\u5141\u8bb8\u7528\u6237\u76f4\u63a5\u8bbf\u95ee\u670d\u52a1\u5668\u4e0a\u7684\u5a92\u4f53\uff0c\u5e76\u80fd\u591f\u76f4\u63a5\u901a\u8fc7\u7f51\u7edc\u4e0a\u64ad\u653e\uff0c\u53ef\u4ee5\u4e0d\u8fdb\u884c\u8f6c\u6d41\u548c\u8f6c\u7801\uff0c\u4ece\u800c\u8282\u7ea6\u670d\u52a1\u5668\u8d44\u6e90\u3002",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "Web Socket\u7aef\u53e3\u53f7\uff1a", "LabelWebSocketPortNumber": "Web Socket\u7aef\u53e3\u53f7\uff1a",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "\u6062\u590d\u64ad\u653e", "TabResume": "\u6062\u590d\u64ad\u653e",
"TabWeather": "\u5929\u6c14", "TabWeather": "\u5929\u6c14",
"TitleAppSettings": "\u5ba2\u6237\u7aef\u7a0b\u5e8f\u8bbe\u7f6e", "TitleAppSettings": "\u5ba2\u6237\u7aef\u7a0b\u5e8f\u8bbe\u7f6e",
@ -582,12 +588,12 @@
"HeaderProgram": "\u7a0b\u5e8f", "HeaderProgram": "\u7a0b\u5e8f",
"HeaderClients": "\u5ba2\u6237\u7aef", "HeaderClients": "\u5ba2\u6237\u7aef",
"LabelCompleted": "\u5b8c\u6210", "LabelCompleted": "\u5b8c\u6210",
"LabelFailed": "\u5931\u8d25", "LabelFailed": "Failed",
"LabelSkipped": "\u8df3\u8fc7", "LabelSkipped": "\u8df3\u8fc7",
"HeaderEpisodeOrganization": "\u5267\u96c6\u6574\u7406", "HeaderEpisodeOrganization": "\u5267\u96c6\u6574\u7406",
"LabelSeries": "\u7535\u89c6\u5267\uff1a", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "\u591a\u5c11\u5b63\uff1a",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "\u591a\u5c11\u96c6\uff1a",
"LabelEndingEpisodeNumber": "\u6700\u540e\u4e00\u96c6\u6570\u5b57\uff1a", "LabelEndingEpisodeNumber": "\u6700\u540e\u4e00\u96c6\u6570\u5b57\uff1a",
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6", "LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "\u73b0\u5728\u64ad\u653e", "TabNowPlaying": "\u73b0\u5728\u64ad\u653e",
"TabNavigation": "\u5bfc\u822a", "TabNavigation": "\u5bfc\u822a",
"TabControls": "\u63a7\u5236", "TabControls": "\u63a7\u5236",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "\u573a\u666f", "ButtonScenes": "\u573a\u666f",
"ButtonSubtitles": "\u5b57\u5e55", "ButtonSubtitles": "\u5b57\u5e55",
"ButtonPreviousTrack": "\u4e0a\u4e00\u97f3\u8f68", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "\u4e0b\u4e00\u97f3\u8f68", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "\u505c\u6b62", "ButtonStop": "\u505c\u6b62",
"ButtonPause": "\u6682\u505c", "ButtonPause": "\u6682\u505c",
"ButtonNext": "\u4e0b\u4e00\u4e2a", "ButtonNext": "\u4e0b\u4e00\u4e2a",
@ -912,6 +920,7 @@
"MessageNoPlaylistsAvailable": "\u64ad\u653e\u5217\u8868\u5141\u8bb8\u60a8\u521b\u5efa\u4e00\u4e2a\u5185\u5bb9\u5217\u8868\u6765\u8fde\u7eed\u64ad\u653e\u3002\u5c06\u9879\u76ee\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\uff0c\u53f3\u952e\u5355\u51fb\u6216\u70b9\u51fb\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\u201d\u3002", "MessageNoPlaylistsAvailable": "\u64ad\u653e\u5217\u8868\u5141\u8bb8\u60a8\u521b\u5efa\u4e00\u4e2a\u5185\u5bb9\u5217\u8868\u6765\u8fde\u7eed\u64ad\u653e\u3002\u5c06\u9879\u76ee\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\uff0c\u53f3\u952e\u5355\u51fb\u6216\u70b9\u51fb\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\u201d\u3002",
"MessageNoPlaylistItemsAvailable": "\u64ad\u653e\u5217\u8868\u76ee\u524d\u662f\u7a7a\u7684\u3002", "MessageNoPlaylistItemsAvailable": "\u64ad\u653e\u5217\u8868\u76ee\u524d\u662f\u7a7a\u7684\u3002",
"ButtonDismiss": "\u89e3\u6563", "ButtonDismiss": "\u89e3\u6563",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "\u5728\u4f4e\u5e26\u5bbd\u73af\u5883\u4e0b\uff0c\u9650\u5236\u8d28\u91cf\u6709\u52a9\u4e8e\u786e\u4fdd\u987a\u7545\u7684\u6d41\u5a92\u4f53\u4f53\u9a8c\u3002", "LabelChannelStreamQualityHelp": "\u5728\u4f4e\u5e26\u5bbd\u73af\u5883\u4e0b\uff0c\u9650\u5236\u8d28\u91cf\u6709\u52a9\u4e8e\u786e\u4fdd\u987a\u7545\u7684\u6d41\u5a92\u4f53\u4f53\u9a8c\u3002",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "\u672a\u7ecf\u786e\u8ba4\u7684", "OptionUnidentified": "\u672a\u7ecf\u786e\u8ba4\u7684",
"OptionMissingParentalRating": "\u7f3a\u5c11\u5bb6\u957f\u5206\u7ea7", "OptionMissingParentalRating": "\u7f3a\u5c11\u5bb6\u957f\u5206\u7ea7",
"OptionStub": "\u5b58\u6839", "OptionStub": "\u5b58\u6839",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "0\u5b63", "OptionSeason0": "0\u5b63",
"LabelReport": "\u62a5\u544a\uff1a", "LabelReport": "\u62a5\u544a\uff1a",
"OptionReportSongs": "\u6b4c\u66f2", "OptionReportSongs": "\u6b4c\u66f2",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "\u827a\u672f\u5bb6", "OptionReportArtists": "\u827a\u672f\u5bb6",
"OptionReportAlbums": "\u4e13\u8f91", "OptionReportAlbums": "\u4e13\u8f91",
"OptionReportAdultVideos": "\u6210\u4eba\u89c6\u9891", "OptionReportAdultVideos": "\u6210\u4eba\u89c6\u9891",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "\u6d3b\u52a8", "HeaderActivity": "\u6d3b\u52a8",
"ScheduledTaskStartedWithName": "{0} \u5f00\u59cb", "ScheduledTaskStartedWithName": "{0} \u5f00\u59cb",
"ScheduledTaskCancelledWithName": "{0} \u88ab\u53d6\u6d88", "ScheduledTaskCancelledWithName": "{0} \u88ab\u53d6\u6d88",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e", "HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e",
"HeaderParentalRatings": "\u5bb6\u957f\u5206\u7ea7", "HeaderParentalRatings": "\u5bb6\u957f\u5206\u7ea7",
"HeaderVideoTypes": "\u89c6\u9891\u7c7b\u578b", "HeaderVideoTypes": "\u89c6\u9891\u7c7b\u578b",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "\u4ec5\u9650\u5355\u4e00\u7684\u5d4c\u5165\u5f0f\u56fe\u50cf", "LabelEnableSingleImageInDidlLimit": "\u4ec5\u9650\u5355\u4e00\u7684\u5d4c\u5165\u5f0f\u56fe\u50cf",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "\u5b57\u5e55", "HeaderSubtitles": "\u5b57\u5e55",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1592,7 +1601,7 @@
"LabelEpisode": "\u5267\u96c6", "LabelEpisode": "\u5267\u96c6",
"Series": "Series", "Series": "Series",
"LabelStopping": "\u505c\u6b62", "LabelStopping": "\u505c\u6b62",
"LabelCancelled": "(\u5df2\u53d6\u6d88)", "LabelCancelled": "Cancelled",
"ButtonDownload": "\u4e0b\u8f7d", "ButtonDownload": "\u4e0b\u8f7d",
"SyncJobStatusQueued": "Queued", "SyncJobStatusQueued": "Queued",
"SyncJobStatusConverting": "Converting", "SyncJobStatusConverting": "Converting",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "\u81ea\u52a8\u6574\u7406", "TabAutoOrganize": "\u81ea\u52a8\u6574\u7406",
"TabPlugins": "\u63d2\u4ef6", "TabPlugins": "\u63d2\u4ef6",
"TabHelp": "\u5e2e\u52a9", "TabHelp": "\u5e2e\u52a9",
"ButtonFullscreen": "\u5207\u6362\u5168\u5c4f",
"ButtonAudioTracks": "\u97f3\u8f68",
"ButtonQuality": "\u8d28\u91cf", "ButtonQuality": "\u8d28\u91cf",
"HeaderNotifications": "\u901a\u77e5", "HeaderNotifications": "\u901a\u77e5",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1895,16 +1902,16 @@
"HeaderResolution": "\u5206\u8fa8\u7387", "HeaderResolution": "\u5206\u8fa8\u7387",
"HeaderRuntime": "\u64ad\u653e\u65f6\u95f4", "HeaderRuntime": "\u64ad\u653e\u65f6\u95f4",
"HeaderCommunityRating": "\u516c\u4f17\u8bc4\u5206", "HeaderCommunityRating": "\u516c\u4f17\u8bc4\u5206",
"HeaderParentalRating": "\u5bb6\u957f\u5206\u7ea7", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "\u53d1\u884c\u65e5\u671f", "HeaderReleaseDate": "\u53d1\u884c\u65e5\u671f",
"HeaderDateAdded": "\u52a0\u5165\u65e5\u671f", "HeaderDateAdded": "Date Added",
"HeaderSeries": "\u7535\u89c6\u5267", "HeaderSeries": "Series:",
"HeaderSeason": "\u5b63", "HeaderSeason": "\u5b63",
"HeaderSeasonNumber": "\u591a\u5c11\u5b63", "HeaderSeasonNumber": "\u591a\u5c11\u5b63",
"HeaderNetwork": "\u7f51\u7edc", "HeaderNetwork": "\u7f51\u7edc",
"HeaderYear": "\u5e74", "HeaderYear": "Year:",
"HeaderGameSystem": "\u6e38\u620f\u7cfb\u7edf", "HeaderGameSystem": "\u6e38\u620f\u7cfb\u7edf",
"HeaderPlayers": "\u64ad\u653e\u5668", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "\u5d4c\u5165\u5f0f\u56fe\u50cf", "HeaderEmbeddedImage": "\u5d4c\u5165\u5f0f\u56fe\u50cf",
"HeaderTrack": "\u97f3\u8f68", "HeaderTrack": "\u97f3\u8f68",
"HeaderDisc": "\u5149\u76d8", "HeaderDisc": "\u5149\u76d8",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "\u4e13\u8f91", "HeaderAlbums": "\u4e13\u8f91",
"HeaderGames": "\u6e38\u620f", "HeaderGames": "\u6e38\u620f",
"HeaderBooks": "\u4e66\u7c4d", "HeaderBooks": "\u4e66\u7c4d",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "\u5b63", "HeaderSeasons": "\u5b63",
"HeaderTracks": "\u97f3\u8f68", "HeaderTracks": "\u97f3\u8f68",
"HeaderItems": "\u9879\u76ee", "HeaderItems": "\u9879\u76ee",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "\u67e5\u770b\u60a8\u6700\u8fd1\u6dfb\u52a0\u7684\u5a92\u4f53\uff0c\u4e0b\u4e00\u96c6\u5267\u96c6\uff0c\u548c\u5176\u4ed6\u66f4\u591a\u4fe1\u606f\u3002\u7eff\u8272\u5706\u5708\u63d0\u793a\u60a8\u6709\u591a\u5c11\u9879\u76ee\u5c1a\u672a\u64ad\u653e\u3002", "WebClientTourContent": "\u67e5\u770b\u60a8\u6700\u8fd1\u6dfb\u52a0\u7684\u5a92\u4f53\uff0c\u4e0b\u4e00\u96c6\u5267\u96c6\uff0c\u548c\u5176\u4ed6\u66f4\u591a\u4fe1\u606f\u3002\u7eff\u8272\u5706\u5708\u63d0\u793a\u60a8\u6709\u591a\u5c11\u9879\u76ee\u5c1a\u672a\u64ad\u653e\u3002",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "\u540c\u6b65\u529f\u80fd\u4ec5\u5bf9\u652f\u6301\u8005\u4f1a\u5458\u5f00\u653e",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u96e2\u958b", "LabelExit": "\u96e2\u958b",
"LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340", "LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
"LabelGithub": "Github", "LabelGithub": "Github",
@ -33,7 +34,7 @@
"LabelEnableChapterImageExtractionForMovies": "\u622a\u5716\u96fb\u5f71\u7ae0\u7bc0\u5716\u7247", "LabelEnableChapterImageExtractionForMovies": "\u622a\u5716\u96fb\u5f71\u7ae0\u7bc0\u5716\u7247",
"LabelChapterImageExtractionForMoviesHelp": "\u622a\u5716\u96fb\u5f71\u7ae0\u7bc0\u5716\u7247\u5c07\u5141\u8a31\u5ba2\u6236\u7aef\u986f\u793a\u9078\u64c7\u5716\u50cf\u5834\u666f\u83dc\u55ae\u3002\u9019\u500b\u904e\u7a0b\u53ef\u80fd\u6703\u5f88\u6162\uff0c\u9020\u6210 CPU \u8ca0\u8f09\uff0c\u4e5f\u9700\u8981\u5e7e GB \u7a7a\u9593\u3002\u6bcf\u665a\u904b\u884c\u9810\u5b9a\u4efb\u52d9\uff0c\u96d6\u7136\u9019\u53ef\u4ee5\u5728\u4efb\u52d9\u6642\u9593\u8868\u8a2d\u7f6e\u3002\u4f46\u4e0d\u5efa\u8b70\u5728\u9ad8\u5cf0\u6642\u6bb5\u904b\u884c\u3002", "LabelChapterImageExtractionForMoviesHelp": "\u622a\u5716\u96fb\u5f71\u7ae0\u7bc0\u5716\u7247\u5c07\u5141\u8a31\u5ba2\u6236\u7aef\u986f\u793a\u9078\u64c7\u5716\u50cf\u5834\u666f\u83dc\u55ae\u3002\u9019\u500b\u904e\u7a0b\u53ef\u80fd\u6703\u5f88\u6162\uff0c\u9020\u6210 CPU \u8ca0\u8f09\uff0c\u4e5f\u9700\u8981\u5e7e GB \u7a7a\u9593\u3002\u6bcf\u665a\u904b\u884c\u9810\u5b9a\u4efb\u52d9\uff0c\u96d6\u7136\u9019\u53ef\u4ee5\u5728\u4efb\u52d9\u6642\u9593\u8868\u8a2d\u7f6e\u3002\u4f46\u4e0d\u5efa\u8b70\u5728\u9ad8\u5cf0\u6642\u6bb5\u904b\u884c\u3002",
"LabelEnableAutomaticPortMapping": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u6620\u5c04", "LabelEnableAutomaticPortMapping": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u6620\u5c04",
"LabelEnableAutomaticPortMappingHelp": "UPnP \u5f88\u5bb9\u6613\u8b93\u8def\u7531\u5668\u81ea\u52d5\u8a2d\u7f6e\u4f3a\u670d\u5668\u7684\u9060\u7a0b\u8a2a\u554f\u3002\u9019\u53ef\u80fd\u7121\u6cd5\u9069\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u3002", "LabelEnableAutomaticPortMappingHelp": "\u4f7f\u7528 UPnP \u8a2d\u5b9a\uff0c\u8b93\u8def\u7531\u5668\u81ea\u52d5\u8a2d\u7f6e\u9060\u7aef\u8a2a\u554f\u3002\u9019\u6216\u6703\u4e0d\u9069\u7528\u65bc\u4e00\u4e9b\u8def\u7531\u5668\u3002",
"HeaderTermsOfService": "Emby \u670d\u52d9\u689d\u6b3e", "HeaderTermsOfService": "Emby \u670d\u52d9\u689d\u6b3e",
"MessagePleaseAcceptTermsOfService": "\u7e7c\u7e8c\u4e4b\u524d\uff0c\u8acb\u5148\u63a5\u53d7\u670d\u52d9\u548c\u79c1\u96b1\u653f\u7b56\u689d\u6b3e\u3002", "MessagePleaseAcceptTermsOfService": "\u7e7c\u7e8c\u4e4b\u524d\uff0c\u8acb\u5148\u63a5\u53d7\u670d\u52d9\u548c\u79c1\u96b1\u653f\u7b56\u689d\u6b3e\u3002",
"OptionIAcceptTermsOfService": "\u6211\u9858\u610f\u63a5\u53d7\u670d\u52d9\u689d\u6b3e", "OptionIAcceptTermsOfService": "\u6211\u9858\u610f\u63a5\u53d7\u670d\u52d9\u689d\u6b3e",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc", "ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc",
"HeaderAdultsReadHere": "\u6210\u4eba\u89c0\u8cde\uff01", "HeaderAdultsReadHere": "\u6210\u4eba\u89c0\u8cde\uff01",
"RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a", "RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f", "HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f",
"LabelSyncTempPath": "\u81e8\u6642\u6587\u4ef6\u7684\u8def\u5f91\uff1a", "LabelSyncTempPath": "\u81e8\u6642\u6587\u4ef6\u7684\u8def\u5f91\uff1a",
"LabelSyncTempPathHelp": "\u9078\u64c7\u81ea\u5b9a\u540c\u6b65\u5de5\u4f5c\u7684\u6587\u4ef6\u593e\u3002\u5728\u540c\u6b65\u904e\u7a0b\u4e2d\u5efa\u7acb\u7684\u8f49\u63db\u5a92\u9ad4\u5c07\u88ab\u5b58\u653e\u5230\u9019\u88e1\u3002", "LabelSyncTempPathHelp": "\u9078\u64c7\u81ea\u5b9a\u540c\u6b65\u5de5\u4f5c\u7684\u6587\u4ef6\u593e\u3002\u5728\u540c\u6b65\u904e\u7a0b\u4e2d\u5efa\u7acb\u7684\u8f49\u63db\u5a92\u9ad4\u5c07\u88ab\u5b58\u653e\u5230\u9019\u88e1\u3002",
@ -92,6 +94,7 @@
"FolderTypeMixed": "\u6df7\u5408\u5167\u5bb9", "FolderTypeMixed": "\u6df7\u5408\u5167\u5bb9",
"FolderTypeMovies": "\u96fb\u5f71", "FolderTypeMovies": "\u96fb\u5f71",
"FolderTypeMusic": "\u97f3\u6a02", "FolderTypeMusic": "\u97f3\u6a02",
"FolderTypeAdultVideos": "\u6210\u4eba\u5f71\u7247",
"FolderTypePhotos": "\u76f8\u7247", "FolderTypePhotos": "\u76f8\u7247",
"FolderTypeMusicVideos": "MV", "FolderTypeMusicVideos": "MV",
"FolderTypeHomeVideos": "\u500b\u4eba\u5f71\u7247", "FolderTypeHomeVideos": "\u500b\u4eba\u5f71\u7247",
@ -202,7 +205,7 @@
"OptionAscending": "\u905e\u5347", "OptionAscending": "\u905e\u5347",
"OptionDescending": "\u905e\u964d", "OptionDescending": "\u905e\u964d",
"OptionRuntime": "\u904b\u884c\u6642\u9593", "OptionRuntime": "\u904b\u884c\u6642\u9593",
"OptionReleaseDate": "\u767c\u4f48\u65e5\u671f", "OptionReleaseDate": "Release Date",
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578", "OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
"OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f", "OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f",
"OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f", "OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f",
@ -216,6 +219,7 @@
"OptionBudget": "\u9810\u7b97", "OptionBudget": "\u9810\u7b97",
"OptionRevenue": "\u6536\u5165", "OptionRevenue": "\u6536\u5165",
"OptionPoster": "\u6d77\u5831", "OptionPoster": "\u6d77\u5831",
"HeaderYears": "Years",
"OptionPosterCard": "\u6d77\u5831\u5361\u7247", "OptionPosterCard": "\u6d77\u5831\u5361\u7247",
"OptionBackdrop": "\u80cc\u666f", "OptionBackdrop": "\u80cc\u666f",
"OptionTimeline": "\u6642\u9593\u8ef8", "OptionTimeline": "\u6642\u9593\u8ef8",
@ -298,7 +302,7 @@
"SearchKnowledgeBase": "\u641c\u5c0b\u77e5\u8b58\u5eab", "SearchKnowledgeBase": "\u641c\u5c0b\u77e5\u8b58\u5eab",
"VisitTheCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340", "VisitTheCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
"VisitProjectWebsite": "\u8a2a\u554f Emby \u7db2\u7ad9", "VisitProjectWebsite": "\u8a2a\u554f Emby \u7db2\u7ad9",
"VisitProjectWebsiteLong": "\u6355\u6349 Emby \u6700\u65b0\u52d5\u614b\uff0c\u4e26\u8ffd\u96a8\u958b\u767c\u8005\u7684 Blog \u3002", "VisitProjectWebsiteLong": "\u8981\u6355\u6349 Emby \u6700\u65b0\u6d88\u606f\u3001\u958b\u767c\u8005\u52d5\u5411 \uff0c\u8acb\u53c3\u95b1\u5b98\u65b9\u7db2\u7ad9",
"OptionHideUser": "\u7531\u767b\u9304\u9801\u9762\u96b1\u85cf\u6b64\u7528\u6236", "OptionHideUser": "\u7531\u767b\u9304\u9801\u9762\u96b1\u85cf\u6b64\u7528\u6236",
"OptionHideUserFromLoginHelp": "\u6709\u6548\u79c1\u4eba\u6216\u96b1\u85cf\u7684\u7ba1\u7406\u54e1\u5e33\u6236\u3002\u7528\u6236\u9700\u624b\u52d5\u8f38\u5165\u7528\u6236\u540d\u548c\u5bc6\u78bc\u767b\u9304\u3002", "OptionHideUserFromLoginHelp": "\u6709\u6548\u79c1\u4eba\u6216\u96b1\u85cf\u7684\u7ba1\u7406\u54e1\u5e33\u6236\u3002\u7528\u6236\u9700\u624b\u52d5\u8f38\u5165\u7528\u6236\u540d\u548c\u5bc6\u78bc\u767b\u9304\u3002",
"OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236", "OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236",
@ -325,7 +329,7 @@
"OptionMetascore": "\u5c08\u6b04\u8a55\u5206", "OptionMetascore": "\u5c08\u6b04\u8a55\u5206",
"ButtonSelect": "\u9078\u64c7", "ButtonSelect": "\u9078\u64c7",
"ButtonGroupVersions": "\u7248\u672c", "ButtonGroupVersions": "\u7248\u672c",
"ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf\u5eab", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528 Pismo File Mount \u3002", "PismoMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528 Pismo File Mount \u3002",
"TangibleSoftwareMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528\u53ef\u884c\u89e3\u6c7a\u7684 Java\/C\uff03 \u8f49\u63db\u5668\u3002", "TangibleSoftwareMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528\u53ef\u884c\u89e3\u6c7a\u7684 Java\/C\uff03 \u8f49\u63db\u5668\u3002",
"HeaderCredits": "\u7a4d\u5206", "HeaderCredits": "\u7a4d\u5206",
@ -347,8 +351,10 @@
"LabelCustomPaths": "\u9078\u64c7\u81ea\u5b9a\u7fa9\u6240\u9700\u8def\u5f91\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002", "LabelCustomPaths": "\u9078\u64c7\u81ea\u5b9a\u7fa9\u6240\u9700\u8def\u5f91\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002",
"LabelCachePath": "\u7de9\u5b58\u8def\u5f91\uff1a", "LabelCachePath": "\u7de9\u5b58\u8def\u5f91\uff1a",
"LabelCachePathHelp": "\u9078\u64c7\u6307\u5b9a\u6240\u9700\u7684\u7de9\u5b58\u6587\u4ef6\u8def\u5f91\uff0c\u5982\u5716\u50cf\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u8a2d\u5b9a\u3002", "LabelCachePathHelp": "\u9078\u64c7\u6307\u5b9a\u6240\u9700\u7684\u7de9\u5b58\u6587\u4ef6\u8def\u5f91\uff0c\u5982\u5716\u50cf\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u8a2d\u5b9a\u3002",
"LabelRecordingPath": "\u9304\u5f71\u8def\u5f91\uff1a", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "\u9078\u64c7\u81ea\u5b9a\u7fa9\u4f4d\u7f6e\u4f86\u4fdd\u5b58\u9304\u5f71\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "\u540d\u7a31\u5716\u50cf\u6587\u4ef6\u593e\u8def\u5f91\uff1a", "LabelImagesByNamePath": "\u540d\u7a31\u5716\u50cf\u6587\u4ef6\u593e\u8def\u5f91\uff1a",
"LabelImagesByNamePathHelp": "\u9078\u64c7\u6f14\u54e1\u3001\u98a8\u683c\u548c\u5de5\u4f5c\u5ba4\u5716\u50cf\u4e0b\u8f09\u7684\u81ea\u5b9a\u7fa9\u4f4d\u7f6e\u3002", "LabelImagesByNamePathHelp": "\u9078\u64c7\u6f14\u54e1\u3001\u98a8\u683c\u548c\u5de5\u4f5c\u5ba4\u5716\u50cf\u4e0b\u8f09\u7684\u81ea\u5b9a\u7fa9\u4f4d\u7f6e\u3002",
"LabelMetadataPath": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027\u8def\u5f91\uff1a", "LabelMetadataPath": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027\u8def\u5f91\uff1a",
@ -489,7 +495,7 @@
"HeaderCastCrew": "\u6f14\u54e1\u9663\u5bb9", "HeaderCastCrew": "\u6f14\u54e1\u9663\u5bb9",
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd", "HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd",
"ButtonSplitVersionsApart": "\u9664\u4e86\u5206\u62c6\u7248\u672c", "ButtonSplitVersionsApart": "\u9664\u4e86\u5206\u62c6\u7248\u672c",
"ButtonPlayTrailer": "\u9810\u544a\u7247", "ButtonPlayTrailer": "Trailer",
"LabelMissing": "\u7f3a\u5c11", "LabelMissing": "\u7f3a\u5c11",
"LabelOffline": "\u96e2\u7dda", "LabelOffline": "\u96e2\u7dda",
"PathSubstitutionHelp": "\u66ff\u63db\u8def\u5f91\u66f4\u6539\u8def\u5f91\u8b93\u5ba2\u6236\u7aef\u80fd\u5920\u8a2a\u554f\u3002\u5141\u8a31\u5ba2\u6236\u7aef\u76f4\u63a5\u64ad\u653e\uff0c\u907f\u514d\u6d88\u8017\u8cc7\u6e90\u65bc\u4e32\u6d41\u548c\u8f49\u78bc\u3002", "PathSubstitutionHelp": "\u66ff\u63db\u8def\u5f91\u66f4\u6539\u8def\u5f91\u8b93\u5ba2\u6236\u7aef\u80fd\u5920\u8a2a\u554f\u3002\u5141\u8a31\u5ba2\u6236\u7aef\u76f4\u63a5\u64ad\u653e\uff0c\u907f\u514d\u6d88\u8017\u8cc7\u6e90\u65bc\u4e32\u6d41\u548c\u8f49\u78bc\u3002",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "WebSocket \u9023\u63a5\u57e0\u865f\u78bc\uff1a", "LabelWebSocketPortNumber": "WebSocket \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
"LabelEnableAutomaticPortMap": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u6620\u5c04", "LabelEnableAutomaticPortMap": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u6620\u5c04",
"LabelEnableAutomaticPortMapHelp": "\u81ea\u52d5\u5617\u8a66\u6620\u5c04\u516c\u5171\u9023\u63a5\u57e0\u5230 UPnP \u672c\u5730\u9023\u63a5\u57e0\u3002\u9019\u53ef\u80fd\u7121\u6cd5\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u3002", "LabelEnableAutomaticPortMapHelp": "\u81ea\u52d5\u5617\u8a66\u6620\u5c04\u516c\u5171\u9023\u63a5\u57e0\u5230 UPnP \u672c\u5730\u9023\u63a5\u57e0\u3002\u9019\u53ef\u80fd\u7121\u6cd5\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u3002",
"LabelExternalDDNS": "\u5916\u90e8 WAN \u5730\u5740\uff1a", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "\u5982\u679c\u4f60\u5728\u6b64\u8f38\u5165\u4e00\u500b\u52d5\u614b DNS\u3002\u7576\u9060\u7a0b\u9023\u63a5 Emby \u61c9\u7528\u7a0b\u5f0f\u6642\u5c07\u6703\u4f7f\u7528\u5b83\u3002\u7559\u7a7a\u70ba\u81ea\u52d5\u6aa2\u6e2c\u3002", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "\u6062\u5fa9\u64ad\u653e", "TabResume": "\u6062\u5fa9\u64ad\u653e",
"TabWeather": "\u5929\u6c23", "TabWeather": "\u5929\u6c23",
"TitleAppSettings": "\u5ba2\u6236\u7aef\u8a2d\u7f6e", "TitleAppSettings": "\u5ba2\u6236\u7aef\u8a2d\u7f6e",
@ -582,12 +588,12 @@
"HeaderProgram": "\u7a0b\u5f0f", "HeaderProgram": "\u7a0b\u5f0f",
"HeaderClients": "\u5ba2\u6236\u7aef", "HeaderClients": "\u5ba2\u6236\u7aef",
"LabelCompleted": "\u5df2\u5b8c\u6210", "LabelCompleted": "\u5df2\u5b8c\u6210",
"LabelFailed": "\u5931\u6557", "LabelFailed": "Failed",
"LabelSkipped": "\u7565\u904e", "LabelSkipped": "\u7565\u904e",
"HeaderEpisodeOrganization": "\u6574\u7406\u5287\u96c6", "HeaderEpisodeOrganization": "\u6574\u7406\u5287\u96c6",
"LabelSeries": "\u96fb\u8996\u5287\uff1a", "LabelSeries": "Series:",
"LabelSeasonNumber": "\u5b63\u5ea6\u5287\u96c6\u96c6\u6578", "LabelSeasonNumber": "\u5b63\u5ea6\u6232\u96c6\u96c6\u6578\uff1a",
"LabelEpisodeNumber": "\u6232\u96c6\u96c6\u6578", "LabelEpisodeNumber": "\u6232\u96c6\u96c6\u6578\uff1a",
"LabelEndingEpisodeNumber": "\u5df2\u5b8c\u7d50\u6232\u96c6\u96c6\u6578\uff1a", "LabelEndingEpisodeNumber": "\u5df2\u5b8c\u7d50\u6232\u96c6\u96c6\u6578\uff1a",
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6", "LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -625,7 +631,7 @@
"HeaderLatestNews": "\u6700\u65b0\u6d88\u606f", "HeaderLatestNews": "\u6700\u65b0\u6d88\u606f",
"HeaderHelpImproveProject": "\u5e6b\u52a9\u6539\u5584 Emby", "HeaderHelpImproveProject": "\u5e6b\u52a9\u6539\u5584 Emby",
"HeaderRunningTasks": "\u904b\u884c\u4efb\u52d9", "HeaderRunningTasks": "\u904b\u884c\u4efb\u52d9",
"HeaderActiveDevices": "\u6709\u6548\u88dd\u7f6e", "HeaderActiveDevices": "\u751f\u6548\u88dd\u7f6e",
"HeaderPendingInstallations": "\u7b49\u5f85\u5b89\u88dd", "HeaderPendingInstallations": "\u7b49\u5f85\u5b89\u88dd",
"HeaderServerInformation": "\u4f3a\u670d\u5668\u8cc7\u8a0a", "HeaderServerInformation": "\u4f3a\u670d\u5668\u8cc7\u8a0a",
"ButtonRestartNow": "\u7acb\u523b\u91cd\u65b0\u555f\u52d5", "ButtonRestartNow": "\u7acb\u523b\u91cd\u65b0\u555f\u52d5",
@ -634,7 +640,7 @@
"ButtonUpdateNow": "Update Now", "ButtonUpdateNow": "Update Now",
"TabHosting": "Hosting", "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.", "PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!", "NewServerVersionAvailable": "\u66f4\u65b0\u767c\u4f48\u4e86!",
"ServerUpToDate": "\u5df2\u7d93\u662f\u6700\u65b0\u7248\u672c", "ServerUpToDate": "\u5df2\u7d93\u662f\u6700\u65b0\u7248\u672c",
"LabelComponentsUpdated": "The following components have been installed or updated:", "LabelComponentsUpdated": "The following components have been installed or updated:",
"MessagePleaseRestartServerToFinishUpdating": "\u8acb\u91cd\u65b0\u555f\u52d5\u4f86\u78ba\u8a8d\u66f4\u65b0", "MessagePleaseRestartServerToFinishUpdating": "\u8acb\u91cd\u65b0\u555f\u52d5\u4f86\u78ba\u8a8d\u66f4\u65b0",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "\u5b57\u5e55", "ButtonSubtitles": "\u5b57\u5e55",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1001,7 +1010,7 @@
"TitleServer": "Server", "TitleServer": "Server",
"LabelCache": "\u7de9\u5b58\uff1a", "LabelCache": "\u7de9\u5b58\uff1a",
"LabelLogs": "\u65e5\u8a8c\uff1a", "LabelLogs": "\u65e5\u8a8c\uff1a",
"LabelMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027\uff1a", "LabelMetadata": "\u8cc7\u6599\u5c6c\u6027\uff1a",
"LabelImagesByName": "Images by name:", "LabelImagesByName": "Images by name:",
"LabelTranscodingTemporaryFiles": "\u66ab\u5b58\u8f49\u78bc\u6587\u4ef6\uff1a", "LabelTranscodingTemporaryFiles": "\u66ab\u5b58\u8f49\u78bc\u6587\u4ef6\uff1a",
"HeaderLatestMusic": "Latest Music", "HeaderLatestMusic": "Latest Music",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "\u9996\u5b63", "OptionSeason0": "\u9996\u5b63",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "\u6b4c\u66f2", "OptionReportSongs": "\u6b4c\u66f2",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "\u6210\u4eba\u5f71\u7247", "OptionReportAdultVideos": "\u6210\u4eba\u5f71\u7247",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1127,7 +1137,7 @@
"ProviderValue": "Provider: {0}", "ProviderValue": "Provider: {0}",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):", "LabelChannelDownloadSizeLimit": "Download size limit (GB):",
"LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.", "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"HeaderRecentActivity": "\u73fe\u6642\u52d5\u614b", "HeaderRecentActivity": "\u6700\u8fd1\u52d5\u614b",
"HeaderPeople": "\u4eba\u7269", "HeaderPeople": "\u4eba\u7269",
"HeaderDownloadPeopleMetadataFor": "\u4e0b\u8f09\u50b3\u8a18\u548c\u5716\u7247\uff1a", "HeaderDownloadPeopleMetadataFor": "\u4e0b\u8f09\u50b3\u8a18\u548c\u5716\u7247\uff1a",
"OptionComposers": "Composers", "OptionComposers": "Composers",
@ -1142,7 +1152,7 @@
"LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
"LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password", "HeaderPassword": "Password",
"HeaderLocalAccess": "\u672c\u5730\u5730\u5740", "HeaderLocalAccess": "\u672c\u5730\u4f4d\u5740",
"HeaderViewOrder": "View Order", "HeaderViewOrder": "View Order",
"ButtonResetEasyPassword": "Reset easy pin code", "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps", "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
@ -1155,7 +1165,7 @@
"LabelAlbumArtist": "Album artist:", "LabelAlbumArtist": "Album artist:",
"LabelAlbumArtists": "Album artists:", "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:", "LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:", "LabelCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
"LabelVoteCount": "Vote count:", "LabelVoteCount": "Vote count:",
"LabelMetascore": "Metascore:", "LabelMetascore": "Metascore:",
"LabelCriticRating": "Critic rating:", "LabelCriticRating": "Critic rating:",
@ -1345,7 +1355,6 @@
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1382,10 +1390,10 @@
"TabStreaming": "Streaming", "TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.", "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:", "LabelConversionCpuCoreLimit": "CPU \u6838\u5fc3\u6578\u76ee\u9650\u5236\uff1a",
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", "LabelConversionCpuCoreLimitHelp": "\u8f49\u6a94\u6642\uff0c\u53ea\u6703\u4f7f\u7528\u9650\u5236 CPU \u6838\u5fc3\u6578\u76ee",
"OptionEnableFullSpeedConversion": "Enable full speed conversion", "OptionEnableFullSpeedConversion": "\u5141\u8a31\u5168\u901f\u8f49\u6a94",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", "OptionEnableFullSpeedConversionHelp": "\u9810\u8a2d\u8f49\u6a94\u6642\uff0c\u53ea\u6703\u9650\u5236 CPU \u6642\u8108\u901f\u5ea6\uff0c\u4f86\u6e1b\u4f4e\u6548\u80fd\u6d88\u8017",
"HeaderPlaylists": "Playlists", "HeaderPlaylists": "Playlists",
"HeaderViewStyles": "View Styles", "HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:", "LabelSelectViewStyles": "Enable enhanced presentations for:",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide", "HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "\u5b57\u5e55", "HeaderSubtitles": "\u5b57\u5e55",
"HeaderVideos": "\u5f71\u7247", "HeaderVideos": "\u5f71\u7247",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1524,7 +1533,7 @@
"Password": "Password", "Password": "Password",
"DeleteImage": "Delete Image", "DeleteImage": "Delete Image",
"MessageThankYouForSupporting": "Thank you for supporting Emby.", "MessageThankYouForSupporting": "Thank you for supporting Emby.",
"MessagePleaseSupportProject": "\u652f\u6301 Emby \u767c\u5c55.", "MessagePleaseSupportProject": "\u8acb\u652f\u6301 Emby",
"DeleteImageConfirmation": "Are you sure you wish to delete this image?", "DeleteImageConfirmation": "Are you sure you wish to delete this image?",
"FileReadCancelled": "The file read has been canceled.", "FileReadCancelled": "The file read has been canceled.",
"FileNotFound": "File not found.", "FileNotFound": "File not found.",
@ -1615,9 +1624,9 @@
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", "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}.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
"HeaderWelcomeToProjectServerDashboard": "\u6b61\u8fce\u4f86\u5230 Emby \u4f3a\u670d\u5668\u72c0\u614b\u9801", "HeaderWelcomeToProjectServerDashboard": "\u6b61\u8fce\u4f86\u5230 Emby \u4f3a\u670d\u5668\u7cfb\u7d71\u6982\u89bd",
"HeaderWelcomeToProjectWebClient": "Welcome to Emby", "HeaderWelcomeToProjectWebClient": "Welcome to Emby",
"ButtonTakeTheTour": "\u6aa2\u67e5\u72c0\u6cc1", "ButtonTakeTheTour": "\u6559\u5b78",
"HeaderWelcomeBack": "Welcome back!", "HeaderWelcomeBack": "Welcome back!",
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
@ -1632,7 +1641,7 @@
"MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?",
"MessageNoPluginsInstalled": "You have no plugins installed.", "MessageNoPluginsInstalled": "You have no plugins installed.",
"MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.",
"LabelVersionInstalled": "{0} installed", "LabelVersionInstalled": "\u5df2\u5b89\u88dd {0}",
"LabelNumberReviews": "{0} Reviews", "LabelNumberReviews": "{0} Reviews",
"LabelFree": "Free", "LabelFree": "Free",
"HeaderPlaybackError": "Playback Error", "HeaderPlaybackError": "Playback Error",
@ -1682,7 +1691,7 @@
"OptionWeekday": "Weekdays", "OptionWeekday": "Weekdays",
"MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?",
"LiveTvUpdateAvailable": "(Update available)", "LiveTvUpdateAvailable": "(Update available)",
"LabelVersionUpToDate": "\u8acb\u76e1\u5feb\u66f4\u65b0", "LabelVersionUpToDate": "\u5df2\u662f\u6700\u65b0\u7248\u672c!",
"ButtonResetTuner": "Reset tuner", "ButtonResetTuner": "Reset tuner",
"HeaderResetTuner": "Reset Tuner", "HeaderResetTuner": "Reset Tuner",
"MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.",
@ -1747,16 +1756,16 @@
"MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?",
"ValueItemCount": "{0} item", "ValueItemCount": "{0} item",
"ValueItemCountPlural": "{0} items", "ValueItemCountPlural": "{0} items",
"NewVersionOfSomethingAvailable": "A new version of {0} is available!", "NewVersionOfSomethingAvailable": "\u7248\u672c{0}\u66f4\u65b0\u767c\u4f48\u4e86",
"VersionXIsAvailableForDownload": "Version {0} is now available for download.", "VersionXIsAvailableForDownload": "\u7248\u672c{0}\u53ef\u4ee5\u4e0b\u8f09\u4e86",
"LabelVersionNumber": "Version {0}", "LabelVersionNumber": "\u7248\u672c {0}",
"LabelPlayMethodTranscoding": "Transcoding", "LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming", "LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing", "LabelPlayMethodDirectPlay": "Direct Playing",
"LabelAudioCodec": "\u97f3\u8a0a\uff1a{0}", "LabelAudioCodec": "\u97f3\u8a0a\uff1a{0}",
"LabelVideoCodec": "\u5f71\u7247\uff1a{0}", "LabelVideoCodec": "\u5f71\u7247\uff1a{0}",
"LabelLocalAccessUrl": "\u672c\u5730\u5730\u5740: {0}", "LabelLocalAccessUrl": "\u672c\u5730\u4f4d\u5740: {0}",
"LabelRemoteAccessUrl": "\u9060\u7aef\u5730\u5740: {0}", "LabelRemoteAccessUrl": "\u9060\u7aef\u4f4d\u5740: {0}",
"LabelRunningOnPort": "\u904b\u884c\u65bc http \u9023\u63a5\u57e0 {0}.", "LabelRunningOnPort": "\u904b\u884c\u65bc http \u9023\u63a5\u57e0 {0}.",
"LabelRunningOnPorts": "\u904b\u884c\u65bc http \u9023\u63a5\u57e0 {0}, \u548c https \u9023\u63a5\u57e0 {1}.", "LabelRunningOnPorts": "\u904b\u884c\u65bc http \u9023\u63a5\u57e0 {0}, \u548c https \u9023\u63a5\u57e0 {1}.",
"HeaderLatestFromChannel": "Latest from {0}", "HeaderLatestFromChannel": "Latest from {0}",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "\u901a\u77e5", "HeaderNotifications": "\u901a\u77e5",
"HeaderSelectPlayer": "Select Player", "HeaderSelectPlayer": "Select Player",
@ -1894,17 +1901,17 @@
"HeaderTrailers": "Trailers", "HeaderTrailers": "Trailers",
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "\u96fb\u8996\u5287\uff1a",
"HeaderSeason": "\u5287\u96c6\u5b63\u5ea6", "HeaderSeason": "\u5287\u96c6\u5b63\u5ea6",
"HeaderSeasonNumber": "\u5287\u96c6\u5b63\u5ea6\u6578\u76ee", "HeaderSeasonNumber": "\u5287\u96c6\u5b63\u5ea6\u6578\u76ee",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "\u904a\u6232\u7cfb\u7d71", "HeaderGameSystem": "\u904a\u6232\u7cfb\u7d71",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "\u904a\u6232", "HeaderGames": "\u904a\u6232",
"HeaderBooks": "\u66f8\u7c4d", "HeaderBooks": "\u66f8\u7c4d",
"HeaderEpisodes": "\u6232\u96c6\uff1a",
"HeaderSeasons": "\u5b63\u5ea6\u5287\u96c6", "HeaderSeasons": "\u5b63\u5ea6\u5287\u96c6",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "\u67e5\u770b\u6700\u8fd1\u6dfb\u52a0\u7684\u5a92\u9ad4\uff0c\u4e0b\u96c6\u5287\u96c6\uff0c\u548c\u5176\u4ed6\u8cc7\u8a0a\u3002\u7da0\u8272\u5713\u5708\u6703\u63d0\u793a\u5c1a\u672a\u64ad\u653e\u7684\u9805\u76ee\u3002", "WebClientTourContent": "\u67e5\u770b\u6700\u8fd1\u6dfb\u52a0\u7684\u5a92\u9ad4\uff0c\u4e0b\u96c6\u5287\u96c6\uff0c\u548c\u5176\u4ed6\u8cc7\u8a0a\u3002\u7da0\u8272\u5713\u5708\u6703\u63d0\u793a\u5c1a\u672a\u64ad\u653e\u7684\u9805\u76ee\u3002",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2221,6 +2230,7 @@
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "Share", "HeaderShare": "Share",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "Share", "ButtonShare": "Share",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "\u540c\u6b65\u9700\u8981\u6703\u54e1",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,5 @@
{ {
"RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.",
"LabelExit": "\u96e2\u958b", "LabelExit": "\u96e2\u958b",
"LabelVisitCommunity": "\u8a2a\u554f\u793e\u7fa4", "LabelVisitCommunity": "\u8a2a\u554f\u793e\u7fa4",
"LabelGithub": "GitHub", "LabelGithub": "GitHub",
@ -76,6 +77,7 @@
"ButtonConfigurePinCode": "Configure pin code", "ButtonConfigurePinCode": "Configure pin code",
"HeaderAdultsReadHere": "Adults Read Here!", "HeaderAdultsReadHere": "Adults Read Here!",
"RegisterWithPayPal": "Register with PayPal", "RegisterWithPayPal": "Register with PayPal",
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.",
"HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPath": "Temporary file path:",
"LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
@ -85,13 +87,14 @@
"OptionDetectArchiveFilesAsMedia": "Detect archive files as media", "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
"OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
"LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserName": "Username or email:",
"LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", "LabelEnterConnectUserNameHelp": "\u9019\u662f\u60a8\u7684Emby\u5e33\u865f\u7684\u4f7f\u7528\u8005\u540d\u7a31\u6216\u96fb\u5b50\u90f5\u4ef6",
"LabelEnableEnhancedMovies": "Enable enhanced movie displays", "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
"HeaderSyncJobInfo": "Sync Job", "HeaderSyncJobInfo": "Sync Job",
"FolderTypeMixed": "Mixed content", "FolderTypeMixed": "Mixed content",
"FolderTypeMovies": "Movies", "FolderTypeMovies": "Movies",
"FolderTypeMusic": "Music", "FolderTypeMusic": "Music",
"FolderTypeAdultVideos": "Adult videos",
"FolderTypePhotos": "Photos", "FolderTypePhotos": "Photos",
"FolderTypeMusicVideos": "Music videos", "FolderTypeMusicVideos": "Music videos",
"FolderTypeHomeVideos": "Home videos", "FolderTypeHomeVideos": "Home videos",
@ -146,7 +149,7 @@
"OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.", "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "\u914d\u7f6e", "TabProfiles": "\u914d\u7f6e",
"TabSecurity": "\u5b89\u5168\u6027", "TabSecurity": "\u5b89\u5168\u6027",
"ButtonAddUser": "\u6dfb\u52a0\u7528\u6236", "ButtonAddUser": "\u6dfb\u52a0\u4f7f\u7528\u8005",
"ButtonAddLocalUser": "Add Local User", "ButtonAddLocalUser": "Add Local User",
"ButtonInviteUser": "Invite User", "ButtonInviteUser": "Invite User",
"ButtonSave": "\u4fdd\u5b58", "ButtonSave": "\u4fdd\u5b58",
@ -175,7 +178,7 @@
"TabGenres": "\u985e\u578b", "TabGenres": "\u985e\u578b",
"TabPeople": "\u4eba\u7269", "TabPeople": "\u4eba\u7269",
"TabNetworks": "\u7db2\u7d61", "TabNetworks": "\u7db2\u7d61",
"HeaderUsers": "\u7528\u6236", "HeaderUsers": "\u4f7f\u7528\u8005",
"HeaderFilters": "Filters", "HeaderFilters": "Filters",
"ButtonFilter": "\u904e\u6ffe", "ButtonFilter": "\u904e\u6ffe",
"OptionFavorite": "\u6211\u7684\u6700\u611b", "OptionFavorite": "\u6211\u7684\u6700\u611b",
@ -216,6 +219,7 @@
"OptionBudget": "\u9810\u7b97", "OptionBudget": "\u9810\u7b97",
"OptionRevenue": "\u6536\u5165", "OptionRevenue": "\u6536\u5165",
"OptionPoster": "\u6d77\u5831", "OptionPoster": "\u6d77\u5831",
"HeaderYears": "Years",
"OptionPosterCard": "Poster card", "OptionPosterCard": "Poster card",
"OptionBackdrop": "\u80cc\u666f", "OptionBackdrop": "\u80cc\u666f",
"OptionTimeline": "\u6642\u9593\u8ef8", "OptionTimeline": "\u6642\u9593\u8ef8",
@ -299,7 +303,7 @@
"VisitTheCommunity": "\u8a2a\u554f\u793e\u5340", "VisitTheCommunity": "\u8a2a\u554f\u793e\u5340",
"VisitProjectWebsite": "Visit the Emby Web Site", "VisitProjectWebsite": "Visit the Emby Web Site",
"VisitProjectWebsiteLong": "\u6b61\u8fce\u81f3Emby\u5b98\u65b9\u7db2\u7ad9\u53d6\u5f97\u6700\u65b0\u6d88\u606f\uff0c\u4ee5\u53ca\u8ffd\u8e64\u6211\u5011\u7684\u958b\u767c\u4eba\u54e1\u90e8\u843d\u683c", "VisitProjectWebsiteLong": "\u6b61\u8fce\u81f3Emby\u5b98\u65b9\u7db2\u7ad9\u53d6\u5f97\u6700\u65b0\u6d88\u606f\uff0c\u4ee5\u53ca\u8ffd\u8e64\u6211\u5011\u7684\u958b\u767c\u4eba\u54e1\u90e8\u843d\u683c",
"OptionHideUser": "\u5f9e\u767b\u9304\u9801\u9762\u96b1\u85cf\u6b64\u7528\u6236", "OptionHideUser": "\u5728\u767b\u5165\u9801\u9762\u96b1\u85cf\u6b64\u4f7f\u7528\u8005",
"OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236", "OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236",
"OptionDisableUserHelp": "\u88ab\u7981\u7528\u7684\u7528\u6236\u5c07\u4e0d\u5141\u8a31\u9023\u63a5\u4f3a\u670d\u5668\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002", "OptionDisableUserHelp": "\u88ab\u7981\u7528\u7684\u7528\u6236\u5c07\u4e0d\u5141\u8a31\u9023\u63a5\u4f3a\u670d\u5668\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002",
@ -325,7 +329,7 @@
"OptionMetascore": "\u8a55\u5206", "OptionMetascore": "\u8a55\u5206",
"ButtonSelect": "\u9078\u64c7", "ButtonSelect": "\u9078\u64c7",
"ButtonGroupVersions": "\u7248\u672c", "ButtonGroupVersions": "\u7248\u672c",
"ButtonAddToCollection": "Add to Collection", "ButtonAddToCollection": "Add to collection",
"PismoMessage": "\u901a\u904e\u6350\u8d08\u7684\u8edf\u4ef6\u8a31\u53ef\u8b49\u4f7f\u7528Pismo File Mount\u3002", "PismoMessage": "\u901a\u904e\u6350\u8d08\u7684\u8edf\u4ef6\u8a31\u53ef\u8b49\u4f7f\u7528Pismo File Mount\u3002",
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
"HeaderCredits": "Credits", "HeaderCredits": "Credits",
@ -347,8 +351,10 @@
"LabelCustomPaths": "\u6307\u5b9a\u6240\u9700\u7684\u81ea\u5b9a\u7fa9\u8def\u5f91\u3002\u7559\u7a7a\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002", "LabelCustomPaths": "\u6307\u5b9a\u6240\u9700\u7684\u81ea\u5b9a\u7fa9\u8def\u5f91\u3002\u7559\u7a7a\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002",
"LabelCachePath": "\u7de9\u5b58\u8def\u5f91\uff1a", "LabelCachePath": "\u7de9\u5b58\u8def\u5f91\uff1a",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
"LabelRecordingPath": "Recording path:", "LabelRecordingPath": "Default recording path:",
"LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.", "LabelMovieRecordingPath": "Movie recording path (optional):",
"LabelSeriesRecordingPath": "Series recording path (optional):",
"LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.",
"LabelImagesByNamePath": "\u540d\u7a31\u5716\u50cf\u6587\u4ef6\u593e\u8def\u5f91\uff1a", "LabelImagesByNamePath": "\u540d\u7a31\u5716\u50cf\u6587\u4ef6\u593e\u8def\u5f91\uff1a",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.", "LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "\u5a92\u9ad4\u8cc7\u6599\u6587\u4ef6\u593e\u8def\u5f91\uff1a", "LabelMetadataPath": "\u5a92\u9ad4\u8cc7\u6599\u6587\u4ef6\u593e\u8def\u5f91\uff1a",
@ -381,7 +387,7 @@
"ButtonSignIn": "\u767b\u9304", "ButtonSignIn": "\u767b\u9304",
"TitleSignIn": "\u767b\u9304", "TitleSignIn": "\u767b\u9304",
"HeaderPleaseSignIn": "\u8acb\u767b\u9304", "HeaderPleaseSignIn": "\u8acb\u767b\u9304",
"LabelUser": "\u7528\u6236\uff1a", "LabelUser": "\u4f7f\u7528\u8005\uff1a",
"LabelPassword": "\u5bc6\u78bc\uff1a", "LabelPassword": "\u5bc6\u78bc\uff1a",
"ButtonManualLogin": "Manual Login", "ButtonManualLogin": "Manual Login",
"PasswordLocalhostMessage": "\u5f9e\u672c\u5730\u767b\u9304\u6642\uff0c\u5bc6\u78bc\u4e0d\u662f\u5fc5\u9700\u7684\u3002", "PasswordLocalhostMessage": "\u5f9e\u672c\u5730\u767b\u9304\u6642\uff0c\u5bc6\u78bc\u4e0d\u662f\u5fc5\u9700\u7684\u3002",
@ -559,8 +565,8 @@
"LabelWebSocketPortNumber": "\u7db2\u7d61\u5957\u63a5\u7aef\u53e3\uff1a", "LabelWebSocketPortNumber": "\u7db2\u7d61\u5957\u63a5\u7aef\u53e3\uff1a",
"LabelEnableAutomaticPortMap": "Enable automatic port mapping", "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:", "LabelExternalDDNS": "External domain:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.",
"TabResume": "\u6062\u5fa9\u64ad\u653e", "TabResume": "\u6062\u5fa9\u64ad\u653e",
"TabWeather": "\u5929\u6c23", "TabWeather": "\u5929\u6c23",
"TitleAppSettings": "\u5ba2\u6236\u7aef\u8a2d\u7f6e", "TitleAppSettings": "\u5ba2\u6236\u7aef\u8a2d\u7f6e",
@ -583,11 +589,11 @@
"HeaderClients": "Clients", "HeaderClients": "Clients",
"LabelCompleted": "Completed", "LabelCompleted": "Completed",
"LabelFailed": "Failed", "LabelFailed": "Failed",
"LabelSkipped": "Skipped", "LabelSkipped": "\u5df2\u8df3\u904e",
"HeaderEpisodeOrganization": "Episode Organization", "HeaderEpisodeOrganization": "Episode Organization",
"LabelSeries": "Series:", "LabelSeries": "Series:",
"LabelSeasonNumber": "Season number", "LabelSeasonNumber": "Season number:",
"LabelEpisodeNumber": "Episode number", "LabelEpisodeNumber": "Episode number:",
"LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names",
@ -726,10 +732,12 @@
"TabNowPlaying": "Now Playing", "TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation", "TabNavigation": "Navigation",
"TabControls": "Controls", "TabControls": "Controls",
"ButtonFullscreen": "Fullscreen",
"ButtonScenes": "Scenes", "ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles", "ButtonSubtitles": "Subtitles",
"ButtonPreviousTrack": "Previous track", "ButtonPreviousTrack": "Previous track",
"ButtonNextTrack": "Next track", "ButtonNextTrack": "Next track",
"ButtonAudioTracks": "Audio Tracks",
"ButtonStop": "Stop", "ButtonStop": "Stop",
"ButtonPause": "Pause", "ButtonPause": "Pause",
"ButtonNext": "Next", "ButtonNext": "Next",
@ -912,6 +920,7 @@
"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.", "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.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"ButtonDismiss": "Dismiss", "ButtonDismiss": "Dismiss",
"ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
"LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQuality": "Preferred internet channel quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
@ -1074,6 +1083,7 @@
"OptionUnidentified": "Unidentified", "OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating", "OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub", "OptionStub": "Stub",
"HeaderEpisodes": "Episodes",
"OptionSeason0": "Season 0", "OptionSeason0": "Season 0",
"LabelReport": "Report:", "LabelReport": "Report:",
"OptionReportSongs": "Songs", "OptionReportSongs": "Songs",
@ -1090,7 +1100,7 @@
"OptionReportArtists": "Artists", "OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums", "OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos", "OptionReportAdultVideos": "Adult videos",
"ButtonMore": "More", "ButtonMoreItems": "More",
"HeaderActivity": "Activity", "HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started", "ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled", "ScheduledTaskCancelledWithName": "{0} was cancelled",
@ -1299,7 +1309,7 @@
"LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.", "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.", "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation", "ButtonSendInvitation": "Send Invitation",
"HeaderSignInWithConnect": "Sign in with Emby Connect", "HeaderSignInWithConnect": "\u4f7f\u7528Emby Connect\u767b\u5165",
"HeaderGuests": "Guests", "HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users", "HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations", "HeaderPendingInvitations": "Pending Invitations",
@ -1320,9 +1330,9 @@
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers", "OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.", "HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users", "HeaderNewUsers": "\u65b0\u4f7f\u7528\u8005",
"ButtonSignUp": "Sign up", "ButtonSignUp": "\u8a3b\u518a",
"ButtonForgotPassword": "Forgot password", "ButtonForgotPassword": "\u5fd8\u8a18\u5bc6\u78bc",
"OptionDisableUserPreferences": "Disable access to user preferences", "OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.", "OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
"HeaderSelectServer": "\u9078\u64c7\u4f3a\u670d\u5668", "HeaderSelectServer": "\u9078\u64c7\u4f3a\u670d\u5668",
@ -1338,14 +1348,13 @@
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations", "HeaderInvitations": "Invitations",
"LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password", "HeaderForgotPassword": "\u5fd8\u8a18\u5bc6\u78bc",
"TitleForgotPassword": "Forgot Password", "TitleForgotPassword": "\u5fd8\u8a18\u5bc6\u78bc",
"TitlePasswordReset": "Password Reset", "TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:", "LabelPasswordRecoveryPinCode": "Pin code:",
"HeaderPasswordReset": "Password Reset", "HeaderPasswordReset": "Password Reset",
"HeaderParentalRatings": "Parental Ratings", "HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types", "HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
"HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelBlockContentWithTags": "Block content with tags:", "LabelBlockContentWithTags": "Block content with tags:",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
@ -1368,7 +1377,6 @@
"HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingMovies": "Upcoming Movies",
"HeaderUpcomingSports": "Upcoming Sports", "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs", "HeaderUpcomingPrograms": "Upcoming Programs",
"ButtonMoreItems": "More",
"LabelShowLibraryTileNames": "Show library tile names", "LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page", "LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
"OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottle": "Enable throttling",
@ -1394,9 +1402,9 @@
"TabVideos": "Videos", "TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby", "HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip", "ButtonSkip": "\u8df3\u904e",
"TextConnectToServerManually": "Connect to server manually", "TextConnectToServerManually": "\u624b\u52d5\u9023\u7dda\u5230\u4f3a\u670d\u5668",
"ButtonSignInWithConnect": "Sign in with Emby Connect", "ButtonSignInWithConnect": "\u4f7f\u7528Emby Connect\u767b\u5165",
"ButtonConnect": "Connect", "ButtonConnect": "Connect",
"LabelServerHost": "Host:", "LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
@ -1417,9 +1425,9 @@
"OptionSyncToSDCard": "Synced to external SD card", "OptionSyncToSDCard": "Synced to external SD card",
"LabelEmail": "Email:", "LabelEmail": "Email:",
"LabelUsername": "Username:", "LabelUsername": "Username:",
"HeaderSignUp": "Sign Up", "HeaderSignUp": "\u8a3b\u518a",
"LabelPasswordConfirm": "Password (confirm):", "LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server", "ButtonAddServer": "\u65b0\u589e\u4f3a\u670d\u5668",
"TabHomeScreen": "Home Screen", "TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display", "HeaderDisplay": "Display",
"HeaderNavigation": "Navigation", "HeaderNavigation": "Navigation",
@ -1486,9 +1494,10 @@
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "\u96fb\u8996\u8a2d\u5b9a\u6307\u5357", "HeaderSetupTVGuide": "\u96fb\u8996\u8a2d\u5b9a\u6307\u5357",
"LabelDataProvider": "Data provider:", "LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.", "OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding", "HeaderDefaultPadding": "Default Padding",
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
"HeaderSubtitles": "Subtitles", "HeaderSubtitles": "Subtitles",
"HeaderVideos": "Videos", "HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis", "OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
@ -1518,7 +1527,7 @@
"OptionDownloadImagesInAdvance": "Download all images in advance", "OptionDownloadImagesInAdvance": "Download all images in advance",
"SettingsSaved": "\u8a2d\u7f6e\u5df2\u4fdd\u5b58\u3002", "SettingsSaved": "\u8a2d\u7f6e\u5df2\u4fdd\u5b58\u3002",
"OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", "OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.",
"Users": "\u7528\u6236", "Users": "\u4f7f\u7528\u8005",
"Delete": "\u522a\u9664", "Delete": "\u522a\u9664",
"Administrator": "\u7ba1\u7406\u54e1", "Administrator": "\u7ba1\u7406\u54e1",
"Password": "\u5bc6\u78bc", "Password": "\u5bc6\u78bc",
@ -1727,7 +1736,7 @@
"ButtonDeleteFile": "Delete File", "ButtonDeleteFile": "Delete File",
"HeaderOrganizeFile": "Organize File", "HeaderOrganizeFile": "Organize File",
"HeaderDeleteFile": "Delete File", "HeaderDeleteFile": "Delete File",
"StatusSkipped": "Skipped", "StatusSkipped": "\u5df2\u8df3\u904e",
"StatusFailed": "Failed", "StatusFailed": "Failed",
"StatusSuccess": "Success", "StatusSuccess": "Success",
"MessageFileWillBeDeleted": "The following file will be deleted:", "MessageFileWillBeDeleted": "The following file will be deleted:",
@ -1876,8 +1885,6 @@
"TabAutoOrganize": "Auto-Organize", "TabAutoOrganize": "Auto-Organize",
"TabPlugins": "Plugins", "TabPlugins": "Plugins",
"TabHelp": "Help", "TabHelp": "Help",
"ButtonFullscreen": "Toggle fullscreen",
"ButtonAudioTracks": "Audio tracks",
"ButtonQuality": "Quality", "ButtonQuality": "Quality",
"HeaderNotifications": "Notifications", "HeaderNotifications": "Notifications",
"HeaderSelectPlayer": "\u9078\u64c7\u64ad\u653e\u88dd\u7f6e", "HeaderSelectPlayer": "\u9078\u64c7\u64ad\u653e\u88dd\u7f6e",
@ -1895,16 +1902,16 @@
"HeaderResolution": "Resolution", "HeaderResolution": "Resolution",
"HeaderRuntime": "Runtime", "HeaderRuntime": "Runtime",
"HeaderCommunityRating": "Community rating", "HeaderCommunityRating": "Community rating",
"HeaderParentalRating": "Parental rating", "HeaderParentalRating": "Parental Rating",
"HeaderReleaseDate": "Release date", "HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added", "HeaderDateAdded": "Date Added",
"HeaderSeries": "Series", "HeaderSeries": "Series:",
"HeaderSeason": "Season", "HeaderSeason": "Season",
"HeaderSeasonNumber": "Season number", "HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network", "HeaderNetwork": "Network",
"HeaderYear": "Year", "HeaderYear": "Year:",
"HeaderGameSystem": "Game system", "HeaderGameSystem": "Game system",
"HeaderPlayers": "Players", "HeaderPlayers": "Players:",
"HeaderEmbeddedImage": "Embedded image", "HeaderEmbeddedImage": "Embedded image",
"HeaderTrack": "Track", "HeaderTrack": "Track",
"HeaderDisc": "Disc", "HeaderDisc": "Disc",
@ -2050,7 +2057,6 @@
"HeaderAlbums": "Albums", "HeaderAlbums": "Albums",
"HeaderGames": "Games", "HeaderGames": "Games",
"HeaderBooks": "Books", "HeaderBooks": "Books",
"HeaderEpisodes": "Episodes:",
"HeaderSeasons": "Seasons", "HeaderSeasons": "Seasons",
"HeaderTracks": "Tracks", "HeaderTracks": "Tracks",
"HeaderItems": "Items", "HeaderItems": "Items",
@ -2098,6 +2104,9 @@
"LabelFullReview": "Full review:", "LabelFullReview": "Full review:",
"LabelShortRatingDescription": "Short rating summary:", "LabelShortRatingDescription": "Short rating summary:",
"OptionIRecommendThisItem": "I recommend this item", "OptionIRecommendThisItem": "I recommend this item",
"EndsAtValue": "Ends at {0}",
"ReleaseYearValue": "Release year: {0}",
"OriginalAirDateValue": "Original air date: {0}",
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
@ -2152,7 +2161,7 @@
"MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:",
"MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.",
"MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.",
"MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", "MessagePasswordResetForUsers": "\u8a72\u4f7f\u7528\u8005\u7684\u5bc6\u78bc\u5df2\u7d93\u88ab\u79fb\u9664\u3002\u8981\u4ee5\u8a72\u4f7f\u7528\u8005\u767b\u5165\u6642\uff0c\u8acb\u5c07\u5bc6\u78bc\u6b04\u4f4d\u7559\u767d",
"HeaderInviteGuest": "Invite Guest", "HeaderInviteGuest": "Invite Guest",
"ButtonLinkMyEmbyAccount": "Link my account now", "ButtonLinkMyEmbyAccount": "Link my account now",
"MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.",
@ -2219,8 +2228,9 @@
"ButtonEditImages": "\u7de8\u8f2f\u5716\u7247", "ButtonEditImages": "\u7de8\u8f2f\u5716\u7247",
"ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.",
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "ErrorMessageEmailInUse": "\u6b64\u96fb\u5b50\u90f5\u4ef6\u5e33\u865f\u5df2\u88ab\u4f7f\u7528\u904e\uff0c\u8acb\u8f38\u5165\u5176\u4ed6\u7684\u96fb\u5b50\u90f5\u4ef6\u5e33\u865f\uff0c\u7136\u5f8c\u518d\u8a66\u4e00\u6b21\uff0c\u6216\u4f7f\u7528\u300c\u5fd8\u8a18\u5bc6\u78bc\u300d\u529f\u80fd\u627e\u56de\u5bc6\u78bc\u3002",
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
"Share": "Share",
"HeaderShare": "\u5206\u4eab", "HeaderShare": "\u5206\u4eab",
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
"ButtonShare": "\u5206\u4eab", "ButtonShare": "\u5206\u4eab",
@ -2240,7 +2250,6 @@
"MessageDidYouKnowCinemaMode": "\u4f60\u77e5\u9053\u55ce\uff1f\u6709\u4e86Emby\u8c6a\u83ef\u7248\uff0c\u60a8\u5c31\u53ef\u4ee5\u4eab\u6709\u66f4\u597d\u7684\u4f7f\u7528\u9ad4\u9a57", "MessageDidYouKnowCinemaMode": "\u4f60\u77e5\u9053\u55ce\uff1f\u6709\u4e86Emby\u8c6a\u83ef\u7248\uff0c\u60a8\u5c31\u53ef\u4ee5\u4eab\u6709\u66f4\u597d\u7684\u4f7f\u7528\u9ad4\u9a57",
"MessageDidYouKnowCinemaMode2": "\u50cf\u662f\u5176\u4e2d\u4e4b\u4e00\u7684\u5287\u9662\u6a21\u5f0f\uff0c\u5c31\u80fd\u8b93\u60a8\u5728\u5a92\u9ad4\u64ad\u653e\u524d\uff0c\u5148\u64ad\u653e\u81ea\u8a02\u7684\u524d\u5c0e\u7247\u6216\u9810\u544a\u7247\u3002", "MessageDidYouKnowCinemaMode2": "\u50cf\u662f\u5176\u4e2d\u4e4b\u4e00\u7684\u5287\u9662\u6a21\u5f0f\uff0c\u5c31\u80fd\u8b93\u60a8\u5728\u5a92\u9ad4\u64ad\u653e\u524d\uff0c\u5148\u64ad\u653e\u81ea\u8a02\u7684\u524d\u5c0e\u7247\u6216\u9810\u544a\u7247\u3002",
"OptionEnableDisplayMirroring": "Enable display mirroring", "OptionEnableDisplayMirroring": "Enable display mirroring",
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.",
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.",
"LabelLocalSyncStatusValue": "Status: {0}", "LabelLocalSyncStatusValue": "Status: {0}",
@ -2277,7 +2286,7 @@
"EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}",
"HeaderEmailAddress": "E-Mail Address", "HeaderEmailAddress": "E-Mail Address",
"TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.",
"LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "LoginDisclaimer": "Emby\u53ef\u4ee5\u5354\u52a9\u4f60\u7ba1\u7406\u4f60\u7684\u500b\u4eba\u5a92\u9ad4\uff0c\u50cf\u662f\u5f71\u7247\u6216\u7167\u7247\u3002\u4f7f\u7528Emby\u7684\u4efb\u4f55\u8edf\u9ad4\u8868\u793a\u60a8\u5df2\u95b1\u8b80\u4e26\u540c\u610f\u6211\u5011\u7684\u670d\u52d9\u689d\u6b3e\u3002",
"TermsOfUse": "Terms of use", "TermsOfUse": "Terms of use",
"HeaderTryMultiSelect": "Try Multi-Select", "HeaderTryMultiSelect": "Try Multi-Select",
"TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!",
@ -2349,5 +2358,11 @@
"MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.",
"LabelTitle": "Title:", "LabelTitle": "Title:",
"LabelOriginalTitle": "Original title:", "LabelOriginalTitle": "Original title:",
"LabelSortTitle": "Sort title:" "LabelSortTitle": "Sort title:",
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
"HeaderHealthMonitor": "Health Monitor",
"HealthMonitorNoAlerts": "There are no active alerts."
} }

View file

@ -1,4 +1,4 @@
<div id="wizardFinishPage" data-role="page" class="page standalonePage wizardPage" data-require="scripts/wizardfinishpage,paper-button"> <div id="wizardFinishPage" data-role="page" class="page standalonePage wizardPage">
<div data-role="content"> <div data-role="content">