mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix chromecast mirror feature
This commit is contained in:
parent
27e8d4fb0a
commit
e1e4881f0e
51 changed files with 360 additions and 324 deletions
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["browser","dom","layoutManager","css!./emby-button","registerElement"],function(browser,dom,layoutManager){"use strict";function animateButtonInternal(e,btn){for(var div=document.createElement("div"),i=0,length=btn.classList.length;i<length;i++)div.classList.add(btn.classList[i]+"-ripple-effect");var offsetX=e.offsetX||0,offsetY=e.offsetY||0;offsetX>0&&offsetY>0&&(div.style.left=offsetX+"px",div.style.top=offsetY+"px");var firstChild=btn.firstChild;firstChild?btn.insertBefore(div,btn.firstChild):btn.appendChild(div),div.addEventListener(dom.whichAnimationEvent(),function(){div.parentNode.removeChild(div)},!1)}function animateButton(e,btn){requestAnimationFrame(function(){animateButtonInternal(e,btn)})}function onKeyDown(e){13===e.keyCode&&animateButton(e,this)}function onMouseDown(e){0===e.button&&animateButton(e,this)}function onClick(e){animateButton(e,this)}function enableAnimation(){return!browser.tv}var EmbyButtonPrototype=Object.create(HTMLButtonElement.prototype);EmbyButtonPrototype.createdCallback=function(){this.classList.contains("emby-button")||(this.classList.add("emby-button"),(browser.firefox||browser.safari)&&this.classList.add("emby-button-noflex"),layoutManager.tv&&this.classList.add("emby-button-focusscale"),enableAnimation()&&(dom.addEventListener(this,"keydown",onKeyDown,{passive:!0}),browser.safari?dom.addEventListener(this,"click",onClick,{passive:!0}):dom.addEventListener(this,"mousedown",onMouseDown,{passive:!0})))},document.registerElement("emby-button",{prototype:EmbyButtonPrototype,extends:"button"})});
|
define(["browser","dom","layoutManager","css!./emby-button","registerElement"],function(browser,dom,layoutManager){"use strict";function animateButtonInternal(e,btn){for(var div=document.createElement("div"),i=0,length=btn.classList.length;i<length;i++)div.classList.add(btn.classList[i]+"-ripple-effect");var offsetX=e.offsetX||0,offsetY=e.offsetY||0;offsetX>0&&offsetY>0&&(div.style.left=offsetX+"px",div.style.top=offsetY+"px");var firstChild=btn.firstChild;firstChild?btn.insertBefore(div,btn.firstChild):btn.appendChild(div),div.addEventListener(dom.whichAnimationEvent(),function(){div.parentNode.removeChild(div)},!1)}function animateButton(e,btn){requestAnimationFrame(function(){animateButtonInternal(e,btn)})}function onKeyDown(e){13===e.keyCode&&animateButton(e,this)}function onMouseDown(e){0===e.button&&animateButton(e,this)}function onClick(e){animateButton(e,this)}function enableAnimation(){return!browser.tv}var EmbyButtonPrototype=Object.create(HTMLButtonElement.prototype);EmbyButtonPrototype.createdCallback=function(){this.classList.contains("emby-button")||(this.classList.add("emby-button"),(browser.firefox||browser.safari)&&this.classList.add("emby-button-noflex"),layoutManager.tv&&(this.classList.add("emby-button-focusscale"),this.classList.add("emby-button-tv")),enableAnimation()&&(dom.addEventListener(this,"keydown",onKeyDown,{passive:!0}),browser.safari?dom.addEventListener(this,"click",onClick,{passive:!0}):dom.addEventListener(this,"mousedown",onMouseDown,{passive:!0})))},document.registerElement("emby-button",{prototype:EmbyButtonPrototype,extends:"button"})});
|
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["appSettings","events","browser","loading","playbackManager","embyRouter","globalize","apphost"],function(appSettings,events,browser,loading,playbackManager,embyRouter,globalize,appHost){"use strict";function mirrorItem(info,player){var item=info.item;playbackManager.displayContent({ItemName:item.Name,ItemId:item.Id,ItemType:item.Type,Context:info.context},player)}function mirrorIfEnabled(info){if(info=info||currentDisplayInfo,info&&playbackManager.enableDisplayMirroring()){var player=playbackManager.getPlayerInfo();player&&(player.isLocalPlayer||player.supportedCommands.indexOf("DisplayContent")===-1||mirrorItem(info,player))}}function emptyCallback(){}function showPlayerSelection(button){var currentPlayerInfo=playbackManager.getPlayerInfo();if(currentPlayerInfo&&!currentPlayerInfo.isLocalPlayer)return void showActivePlayerMenu(currentPlayerInfo);var currentPlayerId=currentPlayerInfo?currentPlayerInfo.id:null;loading.show(),playbackManager.getTargets().then(function(targets){var menuItems=targets.map(function(t){var name=t.name;return t.appName&&t.appName!==t.name&&(name+=" - "+t.appName),{name:name,id:t.id,selected:currentPlayerId===t.id}});require(["actionsheet"],function(actionsheet){loading.hide();var menuOptions={title:globalize.translate("sharedcomponents#HeaderSelectPlayer"),items:menuItems,positionTo:button,resolveOnClick:!0};browser.chrome&&!appHost.supports("castmenuhashchange")&&(menuOptions.enableHistory=!1),actionsheet.show(menuOptions).then(function(id){var target=targets.filter(function(t){return t.id===id})[0];playbackManager.trySetActivePlayer(target.playerName,target),mirrorIfEnabled()},emptyCallback)})})}function showActivePlayerMenu(playerInfo){require(["dialogHelper","dialog","emby-checkbox","emby-button"],function(dialogHelper){showActivePlayerMenuInternal(dialogHelper,playerInfo)})}function showActivePlayerMenuInternal(dialogHelper,playerInfo){var html="",dialogOptions={removeOnClose:!0};dialogOptions.modal=!1,dialogOptions.entryAnimationDuration=160,dialogOptions.exitAnimationDuration=160,dialogOptions.autoFocus=!1;var dlg=dialogHelper.createDialog(dialogOptions);if(dlg.classList.add("promptDialog"),html+='<div class="promptDialogContent" style="padding:1.5em;">',html+='<h2 style="margin-top:.5em;">',html+=playerInfo.deviceName||playerInfo.name,html+="</h2>",html+="<div>",playerInfo.supportedCommands.indexOf("DisplayContent")!==-1){html+='<label class="checkboxContainer">';var checkedHtml=playbackManager.enableDisplayMirroring()?" checked":"";html+='<input type="checkbox" is="emby-checkbox" class="chkMirror"'+checkedHtml+"/>",html+="<span>"+globalize.translate("sharedcomponents#EnableDisplayMirroring")+"</span>",html+="</label>"}html+="</div>",html+='<div style="margin-top:1em;display:flex;justify-content: flex-end;">',html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnRemoteControl promptDialogButton">'+globalize.translate("sharedcomponents#HeaderRemoteControl")+"</button>",html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnDisconnect promptDialogButton ">'+globalize.translate("sharedcomponents#Disconnect")+"</button>",html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnCancel promptDialogButton">'+globalize.translate("sharedcomponents#ButtonCancel")+"</button>",html+="</div>",html+="</div>",dlg.innerHTML=html;var chkMirror=dlg.querySelector(".chkMirror");chkMirror&&chkMirror.addEventListener("change",onMirrorChange);var destination="",btnRemoteControl=dlg.querySelector(".btnRemoteControl");btnRemoteControl&&btnRemoteControl.addEventListener("click",function(){destination="nowplaying.html",dialogHelper.close(dlg)}),dlg.querySelector(".btnDisconnect").addEventListener("click",function(){playbackManager.disconnectFromPlayer(),dialogHelper.close(dlg)}),dlg.querySelector(".btnCancel").addEventListener("click",function(){dialogHelper.close(dlg)}),dialogHelper.open(dlg).then(function(){destination&&embyRouter.show(destination)},emptyCallback)}function onMirrorChange(){playbackManager.enableDisplayMirroring(this.checked)}var currentDisplayInfo;return document.addEventListener("viewbeforeshow",function(){currentDisplayInfo=null}),document.addEventListener("viewshow",function(e){var state=e.detail.state||{},item=state.item;if(item&&item.ServerId)return void mirrorIfEnabled({item:item})}),events.on(appSettings,"change",function(e,name){"displaymirror"===name&&mirrorIfEnabled()}),{show:showPlayerSelection}});
|
define(["appSettings","events","browser","loading","playbackManager","embyRouter","globalize","apphost"],function(appSettings,events,browser,loading,playbackManager,embyRouter,globalize,appHost){"use strict";function mirrorItem(info,player){var item=info.item;playbackManager.displayContent({ItemName:item.Name,ItemId:item.Id,ItemType:item.Type,Context:info.context},player)}function mirrorIfEnabled(info){if(info=info||currentDisplayInfo,info&&playbackManager.enableDisplayMirroring()){var getPlayerInfo=playbackManager.getPlayerInfo();getPlayerInfo&&(getPlayerInfo.isLocalPlayer||getPlayerInfo.supportedCommands.indexOf("DisplayContent")===-1||mirrorItem(info,playbackManager.getCurrentPlayer()))}}function emptyCallback(){}function showPlayerSelection(button){var currentPlayerInfo=playbackManager.getPlayerInfo();if(currentPlayerInfo&&!currentPlayerInfo.isLocalPlayer)return void showActivePlayerMenu(currentPlayerInfo);var currentPlayerId=currentPlayerInfo?currentPlayerInfo.id:null;loading.show(),playbackManager.getTargets().then(function(targets){var menuItems=targets.map(function(t){var name=t.name;return t.appName&&t.appName!==t.name&&(name+=" - "+t.appName),{name:name,id:t.id,selected:currentPlayerId===t.id}});require(["actionsheet"],function(actionsheet){loading.hide();var menuOptions={title:globalize.translate("sharedcomponents#HeaderSelectPlayer"),items:menuItems,positionTo:button,resolveOnClick:!0};browser.chrome&&!appHost.supports("castmenuhashchange")&&(menuOptions.enableHistory=!1),actionsheet.show(menuOptions).then(function(id){var target=targets.filter(function(t){return t.id===id})[0];playbackManager.trySetActivePlayer(target.playerName,target),mirrorIfEnabled()},emptyCallback)})})}function showActivePlayerMenu(playerInfo){require(["dialogHelper","dialog","emby-checkbox","emby-button"],function(dialogHelper){showActivePlayerMenuInternal(dialogHelper,playerInfo)})}function showActivePlayerMenuInternal(dialogHelper,playerInfo){var html="",dialogOptions={removeOnClose:!0};dialogOptions.modal=!1,dialogOptions.entryAnimationDuration=160,dialogOptions.exitAnimationDuration=160,dialogOptions.autoFocus=!1;var dlg=dialogHelper.createDialog(dialogOptions);if(dlg.classList.add("promptDialog"),html+='<div class="promptDialogContent" style="padding:1.5em;">',html+='<h2 style="margin-top:.5em;">',html+=playerInfo.deviceName||playerInfo.name,html+="</h2>",html+="<div>",playerInfo.supportedCommands.indexOf("DisplayContent")!==-1){html+='<label class="checkboxContainer">';var checkedHtml=playbackManager.enableDisplayMirroring()?" checked":"";html+='<input type="checkbox" is="emby-checkbox" class="chkMirror"'+checkedHtml+"/>",html+="<span>"+globalize.translate("sharedcomponents#EnableDisplayMirroring")+"</span>",html+="</label>"}html+="</div>",html+='<div style="margin-top:1em;display:flex;justify-content: flex-end;">',html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnRemoteControl promptDialogButton">'+globalize.translate("sharedcomponents#HeaderRemoteControl")+"</button>",html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnDisconnect promptDialogButton ">'+globalize.translate("sharedcomponents#Disconnect")+"</button>",html+='<button is="emby-button" type="button" class="button-flat button-accent-flat btnCancel promptDialogButton">'+globalize.translate("sharedcomponents#ButtonCancel")+"</button>",html+="</div>",html+="</div>",dlg.innerHTML=html;var chkMirror=dlg.querySelector(".chkMirror");chkMirror&&chkMirror.addEventListener("change",onMirrorChange);var destination="",btnRemoteControl=dlg.querySelector(".btnRemoteControl");btnRemoteControl&&btnRemoteControl.addEventListener("click",function(){destination="nowplaying.html",dialogHelper.close(dlg)}),dlg.querySelector(".btnDisconnect").addEventListener("click",function(){playbackManager.disconnectFromPlayer(),dialogHelper.close(dlg)}),dlg.querySelector(".btnCancel").addEventListener("click",function(){dialogHelper.close(dlg)}),dialogHelper.open(dlg).then(function(){destination&&embyRouter.show(destination)},emptyCallback)}function onMirrorChange(){playbackManager.enableDisplayMirroring(this.checked)}var currentDisplayInfo;return document.addEventListener("viewbeforeshow",function(){currentDisplayInfo=null}),document.addEventListener("viewshow",function(e){var state=e.detail.state||{},item=state.item;if(item&&item.ServerId)return void mirrorIfEnabled({item:item})}),events.on(appSettings,"change",function(e,name){"displaymirror"===name&&mirrorIfEnabled()}),{show:showPlayerSelection}});
|
|
@ -33,7 +33,6 @@
|
||||||
<div id="activeRecordings" class="homePageSection hide">
|
<div id="activeRecordings" class="homePageSection hide">
|
||||||
<h1 class="listHeader">${HeaderActiveRecordings}</h1>
|
<h1 class="listHeader">${HeaderActiveRecordings}</h1>
|
||||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
<div id="activePrograms" class="homePageSection">
|
<div id="activePrograms" class="homePageSection">
|
||||||
<div>
|
<div>
|
||||||
|
@ -84,7 +83,6 @@
|
||||||
<div id="activeRecordings" class="homePageSection hide">
|
<div id="activeRecordings" class="homePageSection hide">
|
||||||
<h1 class="listHeader">${HeaderActiveRecordings}</h1>
|
<h1 class="listHeader">${HeaderActiveRecordings}</h1>
|
||||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
<div id="latestRecordings" class="homePageSection hide">
|
<div id="latestRecordings" class="homePageSection hide">
|
||||||
<div>
|
<div>
|
||||||
|
@ -95,7 +93,6 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
<div id="movieRecordings" class="homePageSection hide">
|
<div id="movieRecordings" class="homePageSection hide">
|
||||||
<div>
|
<div>
|
||||||
|
@ -103,7 +100,6 @@
|
||||||
<button is="emby-button" type="button" class="raised more mini" data-type="movies">${ButtonMore}</button>
|
<button is="emby-button" type="button" class="raised more mini" data-type="movies">${ButtonMore}</button>
|
||||||
</div>
|
</div>
|
||||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
<div id="episodeRecordings" class="homePageSection hide">
|
<div id="episodeRecordings" class="homePageSection hide">
|
||||||
<div>
|
<div>
|
||||||
|
@ -111,7 +107,6 @@
|
||||||
<button is="emby-button" type="button" class="raised more mini" data-type="episodes">${ButtonMore}</button>
|
<button is="emby-button" type="button" class="raised more mini" data-type="episodes">${ButtonMore}</button>
|
||||||
</div>
|
</div>
|
||||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
<div id="sportsRecordings" class="homePageSection hide">
|
<div id="sportsRecordings" class="homePageSection hide">
|
||||||
<div>
|
<div>
|
||||||
|
@ -119,7 +114,6 @@
|
||||||
<button is="emby-button" type="button" class="raised more mini" data-type="sports">${ButtonMore}</button>
|
<button is="emby-button" type="button" class="raised more mini" data-type="sports">${ButtonMore}</button>
|
||||||
</div>
|
</div>
|
||||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
<div id="kidsRecordings" class="homePageSection hide">
|
<div id="kidsRecordings" class="homePageSection hide">
|
||||||
<div>
|
<div>
|
||||||
|
@ -127,7 +121,6 @@
|
||||||
<button is="emby-button" type="button" class="raised more mini" data-type="kids">${ButtonMore}</button>
|
<button is="emby-button" type="button" class="raised more mini" data-type="kids">${ButtonMore}</button>
|
||||||
</div>
|
</div>
|
||||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
<div id="recordingGroups" class="hide homePageSection">
|
<div id="recordingGroups" class="hide homePageSection">
|
||||||
<div>
|
<div>
|
||||||
|
@ -140,11 +133,9 @@
|
||||||
<div id="activeRecordings" class="homePageSection hide">
|
<div id="activeRecordings" class="homePageSection hide">
|
||||||
<h1 class="listHeader">${HeaderActiveRecordings}</h1>
|
<h1 class="listHeader">${HeaderActiveRecordings}</h1>
|
||||||
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
<div is="emby-itemscontainer" class="recordingItems itemsContainer"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
<div id="upcomingRecordings" class="homePageSection hide">
|
<div id="upcomingRecordings" class="homePageSection hide">
|
||||||
<div class="recordingItems"></div>
|
<div class="recordingItems"></div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="pageTabContent ehsContent" id="seriesTab" data-index="5">
|
<div class="pageTabContent ehsContent" id="seriesTab" data-index="5">
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0645\u0644\u0641 XmlTV . \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0648\u062c\u0648\u062f \u0627\u0644\u0645\u0644\u0641 \u062b\u0645 \u062d\u0627\u0648\u0644 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.",
|
"ErrorAddingXmlTvFile": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0645\u0644\u0641 XmlTV . \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0648\u062c\u0648\u062f \u0627\u0644\u0645\u0644\u0641 \u062b\u0645 \u062d\u0627\u0648\u0644 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.",
|
||||||
"OptionAutomaticallyGroupSeries": "\u0625\u062f\u0645\u062c \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0648\u0632\u0639\u0629 \u0628\u064a\u0646 \u0639\u062f\u0629 \u0645\u062c\u0644\u062f\u0627\u062a \u0625\u0644\u0649 \u0645\u062c\u0644\u062f \u0648\u0627\u062d\u062f \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b.",
|
"OptionAutomaticallyGroupSeries": "\u0625\u062f\u0645\u062c \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0648\u0632\u0639\u0629 \u0628\u064a\u0646 \u0639\u062f\u0629 \u0645\u062c\u0644\u062f\u0627\u062a \u0625\u0644\u0649 \u0645\u062c\u0644\u062f \u0648\u0627\u062d\u062f \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b.",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "\u0641\u064a \u062d\u0627\u0644 \u0627\u0644\u062a\u0641\u0639\u064a\u0644 \u0641\u0625\u0646 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0648\u0632\u0639\u0629 \u0628\u064a\u0646 \u0639\u062f\u0629 \u0645\u062c\u0644\u062f\u0627\u062a \u0633\u062a\u062f\u0645\u062c \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b \u0641\u064a \u0645\u062c\u0644\u062f \u0645\u0633\u0644\u0633\u0644 \u0648\u0627\u062d\u062f.",
|
"OptionAutomaticallyGroupSeriesHelp": "\u0641\u064a \u062d\u0627\u0644 \u0627\u0644\u062a\u0641\u0639\u064a\u0644 \u0641\u0625\u0646 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0648\u0632\u0639\u0629 \u0628\u064a\u0646 \u0639\u062f\u0629 \u0645\u062c\u0644\u062f\u0627\u062a \u0633\u062a\u062f\u0645\u062c \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b \u0641\u064a \u0645\u062c\u0644\u062f \u0645\u0633\u0644\u0633\u0644 \u0648\u0627\u062d\u062f.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -7,7 +7,7 @@
|
||||||
"ThisWizardWillGuideYou": "Tento pr\u016fvodce V\u00e1m pom\u016f\u017ee proj\u00edt procesem nastaven\u00ed. Pro za\u010d\u00e1tek vyberte jazyk.",
|
"ThisWizardWillGuideYou": "Tento pr\u016fvodce V\u00e1m pom\u016f\u017ee proj\u00edt procesem nastaven\u00ed. Pro za\u010d\u00e1tek vyberte jazyk.",
|
||||||
"TellUsAboutYourself": "\u0158ekn\u011bte n\u00e1m n\u011bco o sob\u011b",
|
"TellUsAboutYourself": "\u0158ekn\u011bte n\u00e1m n\u011bco o sob\u011b",
|
||||||
"ButtonQuickStartGuide": "Rychl\u00fd pr\u016fvodce",
|
"ButtonQuickStartGuide": "Rychl\u00fd pr\u016fvodce",
|
||||||
"LabelYourFirstName": "Va\u0161e k\u0159estn\u00ed jm\u00e9no:",
|
"LabelYourFirstName": "Va\u0161e jm\u00e9no:",
|
||||||
"MoreUsersCanBeAddedLater": "Dal\u0161\u00ed u\u017eivatele m\u016f\u017eete p\u0159idat pozd\u011bji na Hlavn\u00ed nab\u00eddce.",
|
"MoreUsersCanBeAddedLater": "Dal\u0161\u00ed u\u017eivatele m\u016f\u017eete p\u0159idat pozd\u011bji na Hlavn\u00ed nab\u00eddce.",
|
||||||
"UserProfilesIntro": "Emby obsahuje zabudovanou podporu u\u017eivatelsk\u00fdch profil\u016f, umo\u017e\u0148uj\u00edc\u00ed ka\u017ed\u00e9mu u\u017eivateli m\u00edt sv\u00e9 vlastn\u00ed nastaven\u00ed zobrazen\u00ed, stav p\u0159ehr\u00e1n\u00ed a rodi\u010dovsk\u00e9 kontroly.",
|
"UserProfilesIntro": "Emby obsahuje zabudovanou podporu u\u017eivatelsk\u00fdch profil\u016f, umo\u017e\u0148uj\u00edc\u00ed ka\u017ed\u00e9mu u\u017eivateli m\u00edt sv\u00e9 vlastn\u00ed nastaven\u00ed zobrazen\u00ed, stav p\u0159ehr\u00e1n\u00ed a rodi\u010dovsk\u00e9 kontroly.",
|
||||||
"WizardCompleted": "To je v\u0161e, co nyn\u00ed pot\u0159ebujeme. Emby za\u010dala shroma\u017e\u010fovat informace o va\u0161\u00ed knihovn\u011b m\u00e9di\u00ed. Pod\u00edvejte se na n\u011bkter\u00e9 z na\u0161ich aplikac\u00ed, a potom klepn\u011bte na tla\u010d\u00edtko <b> Dokon\u010dit <\/b> pro zobrazen\u00ed <b> Server Dashboard <\/b>.",
|
"WizardCompleted": "To je v\u0161e, co nyn\u00ed pot\u0159ebujeme. Emby za\u010dala shroma\u017e\u010fovat informace o va\u0161\u00ed knihovn\u011b m\u00e9di\u00ed. Pod\u00edvejte se na n\u011bkter\u00e9 z na\u0161ich aplikac\u00ed, a potom klepn\u011bte na tla\u010d\u00edtko <b> Dokon\u010dit <\/b> pro zobrazen\u00ed <b> Server Dashboard <\/b>.",
|
||||||
|
@ -15,7 +15,7 @@
|
||||||
"HeaderTermsOfService": "Podm\u00ednky slu\u017eby Emby",
|
"HeaderTermsOfService": "Podm\u00ednky slu\u017eby Emby",
|
||||||
"MessagePleaseAcceptTermsOfService": "Ne\u017e budete pokra\u010dovat, p\u0159ijm\u011bte pros\u00edm podm\u00ednky slu\u017eby a z\u00e1sady ochrany osobn\u00edch \u00fadaj\u016f.",
|
"MessagePleaseAcceptTermsOfService": "Ne\u017e budete pokra\u010dovat, p\u0159ijm\u011bte pros\u00edm podm\u00ednky slu\u017eby a z\u00e1sady ochrany osobn\u00edch \u00fadaj\u016f.",
|
||||||
"OptionIAcceptTermsOfService": "Souhlas\u00edm s podm\u00ednkami slu\u017eby",
|
"OptionIAcceptTermsOfService": "Souhlas\u00edm s podm\u00ednkami slu\u017eby",
|
||||||
"ButtonPrivacyPolicy": "Ochrana osobn\u00edch \u00fadaj\u016f",
|
"ButtonPrivacyPolicy": "Z\u00e1sady ochrany osobn\u00edch \u00fadaj\u016f",
|
||||||
"ButtonTermsOfService": "Podm\u00ednky slu\u017eby",
|
"ButtonTermsOfService": "Podm\u00ednky slu\u017eby",
|
||||||
"ButtonConvertMedia": "Konverze m\u00e9di\u00ed",
|
"ButtonConvertMedia": "Konverze m\u00e9di\u00ed",
|
||||||
"ButtonOrganize": "Organizovat",
|
"ButtonOrganize": "Organizovat",
|
||||||
|
@ -24,22 +24,22 @@
|
||||||
"LabelAddConnectSupporterHelp": "Chcete-li p\u0159idat u\u017eivatele, kter\u00fd nen\u00ed uveden v seznamu, budete muset nejprve propojit sv\u016fj \u00fa\u010det Emby Connect ze strany profilu u\u017eivatele.",
|
"LabelAddConnectSupporterHelp": "Chcete-li p\u0159idat u\u017eivatele, kter\u00fd nen\u00ed uveden v seznamu, budete muset nejprve propojit sv\u016fj \u00fa\u010det Emby Connect ze strany profilu u\u017eivatele.",
|
||||||
"LabelPinCode": "Pin k\u00f3d:",
|
"LabelPinCode": "Pin k\u00f3d:",
|
||||||
"OptionHideWatchedContentFromLatestMedia": "Skr\u00fdt p\u0159ehran\u00e9 polo\u017eky ze seznamu naposledy p\u0159idan\u00fdch m\u00e9di\u00ed",
|
"OptionHideWatchedContentFromLatestMedia": "Skr\u00fdt p\u0159ehran\u00e9 polo\u017eky ze seznamu naposledy p\u0159idan\u00fdch m\u00e9di\u00ed",
|
||||||
"DeleteMedia": "Delete media",
|
"DeleteMedia": "Odstranit m\u00e9dia",
|
||||||
"HeaderSync": "Synchronizace",
|
"HeaderSync": "Synchronizace",
|
||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Zru\u0161it",
|
"ButtonCancel": "Zru\u0161it",
|
||||||
"ButtonExit": "Zav\u0159\u00edt",
|
"ButtonExit": "Zav\u0159\u00edt",
|
||||||
"ButtonNew": "Nov\u00e9",
|
"ButtonNew": "Nov\u00e9",
|
||||||
"OptionDev": "Dev (Nestabiln\u00ed\/V\u00fdvoj\u00e1\u0159sk\u00e1)",
|
"OptionDev": "V\u00fdvoj\u00e1\u0159sk\u00e1",
|
||||||
"OptionBeta": "Betaverze",
|
"OptionBeta": "Betaverze",
|
||||||
"HeaderTaskTriggers": "Spou\u0161t\u011b\u010de \u00faloh",
|
"HeaderTaskTriggers": "Spou\u0161t\u011b\u010de \u00faloh",
|
||||||
"HeaderTV": "TV",
|
"HeaderTV": "TV",
|
||||||
"HeaderAudio": "Zvuk",
|
"HeaderAudio": "Audio",
|
||||||
"HeaderVideo": "Video",
|
"HeaderVideo": "Video",
|
||||||
"HeaderPaths": "Cesty",
|
"HeaderPaths": "Cesty",
|
||||||
"CategorySync": "Synchronizace",
|
"CategorySync": "Synchronizace",
|
||||||
"TabPlaylist": "Playlist",
|
"TabPlaylist": "Playlist",
|
||||||
"HeaderInstantMix": "Instant Mix",
|
"HeaderInstantMix": "Okam\u017eit\u00e9 m\u00edch\u00e1n\u00ed",
|
||||||
"HeaderEasyPinCode": "K\u00f3d Ease Pin",
|
"HeaderEasyPinCode": "K\u00f3d Ease Pin",
|
||||||
"HeaderInstalledServices": "Instalovan\u00e9 slu\u017eby",
|
"HeaderInstalledServices": "Instalovan\u00e9 slu\u017eby",
|
||||||
"HeaderAvailableServices": "Dostupn\u00e9 slu\u017eby",
|
"HeaderAvailableServices": "Dostupn\u00e9 slu\u017eby",
|
||||||
|
@ -93,11 +93,11 @@
|
||||||
"OptionEnableAccessToAllLibraries": "Povolit p\u0159\u00edstup ke v\u0161em knihovn\u00e1m",
|
"OptionEnableAccessToAllLibraries": "Povolit p\u0159\u00edstup ke v\u0161em knihovn\u00e1m",
|
||||||
"DeviceAccessHelp": "Plat\u00ed pouze pro za\u0159\u00edzen\u00ed, kter\u00e1 mohou b\u00fdt jednozna\u010dn\u011b identifikov\u00e1na. T\u011bmto za\u0159\u00edzen\u00edm nebude br\u00e1n\u011bno v p\u0159\u00edstupu. Filtrov\u00e1n\u00ed p\u0159\u00edstupu u\u017eivatelsk\u00fdch za\u0159\u00edzen\u00ed bude br\u00e1nit v u\u017e\u00edv\u00e1n\u00ed nov\u00fdch za\u0159\u00edzen\u00ed, dokud nebudou schv\u00e1leny.",
|
"DeviceAccessHelp": "Plat\u00ed pouze pro za\u0159\u00edzen\u00ed, kter\u00e1 mohou b\u00fdt jednozna\u010dn\u011b identifikov\u00e1na. T\u011bmto za\u0159\u00edzen\u00edm nebude br\u00e1n\u011bno v p\u0159\u00edstupu. Filtrov\u00e1n\u00ed p\u0159\u00edstupu u\u017eivatelsk\u00fdch za\u0159\u00edzen\u00ed bude br\u00e1nit v u\u017e\u00edv\u00e1n\u00ed nov\u00fdch za\u0159\u00edzen\u00ed, dokud nebudou schv\u00e1leny.",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasons": "Zobrazit chyb\u011bj\u00edc\u00ed epizody",
|
"LabelDisplayMissingEpisodesWithinSeasons": "Zobrazit chyb\u011bj\u00edc\u00ed epizody",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.",
|
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "Mus\u00ed b\u00fdt zapnuto pro knihovny TV v nastaven\u00ed Emby Server",
|
||||||
"LabelUnairedMissingEpisodesWithinSeasons": "Zobrazit neodvys\u00edlan\u00e9 epizody v r\u00e1mci sez\u00f3n",
|
"LabelUnairedMissingEpisodesWithinSeasons": "Zobrazit neodvys\u00edlan\u00e9 epizody v r\u00e1mci sez\u00f3n",
|
||||||
"ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.",
|
"ImportMissingEpisodesHelp": "Pokud je povoleno, budou informace o chyb\u011bj\u00edc\u00edch epizod\u00e1ch importov\u00e1ny do datab\u00e1ze Emby a zobraz\u00ed se v sez\u00f3n\u00e1ch seri\u00e1lu. To m\u016f\u017ee zp\u016fsobit podstatn\u011b del\u0161\u00ed skenov\u00e1n\u00ed knihovny.",
|
||||||
"HeaderVideoPlaybackSettings": "Nastaven\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed videa",
|
"HeaderVideoPlaybackSettings": "Nastaven\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed videa",
|
||||||
"OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide",
|
"OptionDownloadInternetMetadataTvPrograms": "Stahovat metadata z internetu pro programov\u00e1n\u00ed uveden\u00e9 v pr\u016fvodci",
|
||||||
"HeaderPlaybackSettings": "Nastaven\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed",
|
"HeaderPlaybackSettings": "Nastaven\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed",
|
||||||
"LabelAudioLanguagePreference": "Up\u0159ednost\u0148ovan\u00fd jazyk videa:",
|
"LabelAudioLanguagePreference": "Up\u0159ednost\u0148ovan\u00fd jazyk videa:",
|
||||||
"LabelSubtitleLanguagePreference": "Up\u0159ednost\u0148ovan\u00fd jazyk titulk\u016f:",
|
"LabelSubtitleLanguagePreference": "Up\u0159ednost\u0148ovan\u00fd jazyk titulk\u016f:",
|
||||||
|
@ -274,7 +274,7 @@
|
||||||
"OptionAllowRemoteSharedDevices": "Povolit vzd\u00e1len\u00e9 ovl\u00e1d\u00e1n\u00ed sd\u00edlen\u00fdch za\u0159\u00edzen\u00ed",
|
"OptionAllowRemoteSharedDevices": "Povolit vzd\u00e1len\u00e9 ovl\u00e1d\u00e1n\u00ed sd\u00edlen\u00fdch za\u0159\u00edzen\u00ed",
|
||||||
"OptionAllowRemoteSharedDevicesHelp": "DLNA za\u0159\u00edzen\u00ed jsou pova\u017eov\u00e1ny za sd\u00edlen\u00e9, dokud je u\u017eivatel neza\u010dne omezovat.",
|
"OptionAllowRemoteSharedDevicesHelp": "DLNA za\u0159\u00edzen\u00ed jsou pova\u017eov\u00e1ny za sd\u00edlen\u00e9, dokud je u\u017eivatel neza\u010dne omezovat.",
|
||||||
"OptionAllowLinkSharing": "Povolit sd\u00edlen\u00ed pomoc\u00ed soci\u00e1ln\u00edch m\u00e9di\u00ed",
|
"OptionAllowLinkSharing": "Povolit sd\u00edlen\u00ed pomoc\u00ed soci\u00e1ln\u00edch m\u00e9di\u00ed",
|
||||||
"OptionAllowLinkSharingHelp": "Pouze webov\u00e9 str\u00e1nky, kter\u00e9 obsahuj\u00ed informace o m\u00e9di\u00edch jsou sd\u00edlen\u00e9. Medi\u00e1ln\u00ed soubory se nikdy nesd\u00edlej\u00ed ve\u0159ejn\u011b. Sd\u00edlen\u00e9 polo\u017eky jsou \u010dasov\u011b omezen\u00e9 a jejich platnost vypr\u0161\u00ed na z\u00e1klad\u011b nastaven\u00ed va\u0161ich serverov\u00fdch sd\u00edlen\u00ed.",
|
"OptionAllowLinkSharingHelp": "Sd\u00edlen\u00e9 jsou pouze webov\u00e9 str\u00e1nky obsahuj\u00edc\u00ed informace o m\u00e9di\u00edch. Obsah souboru nen\u00ed nikdy sd\u00edlen ve\u0159ejn\u011b. Sd\u00edlen\u00e9 polo\u017eky jsou \u010dasov\u011b omezen\u00e9 a jejich platnost vypr\u0161\u00ed za {0} dny.",
|
||||||
"HeaderRemoteControl": "Vzd\u00e1len\u00e9 ovl\u00e1d\u00e1n\u00ed",
|
"HeaderRemoteControl": "Vzd\u00e1len\u00e9 ovl\u00e1d\u00e1n\u00ed",
|
||||||
"OptionMissingTmdbId": "Chyb\u011bj\u00edc\u00ed Tmdb Id",
|
"OptionMissingTmdbId": "Chyb\u011bj\u00edc\u00ed Tmdb Id",
|
||||||
"OptionIsHD": "HD",
|
"OptionIsHD": "HD",
|
||||||
|
@ -296,7 +296,7 @@
|
||||||
"LabelRunServerAtStartupHelp": "Toto spust\u00ed ikonu v oznamovac\u00ed oblasti. Pro spu\u0161t\u011bn\u00ed pomoc\u00ed slu\u017eeb Windows tuto polo\u017eku ponechte od\u0161krtnutou a spus\u0165te slu\u017ebu z ovl\u00e1dac\u00edch panel\u016f. Pros\u00edm vezm\u011bte na v\u011bdom\u00ed, \u017ee nemohou b\u011b\u017eet 2 instance serveru z\u00e1rove\u0148, bude pot\u0159eba ukon\u010dit program v oznamovac\u00ed oblasti panelu.",
|
"LabelRunServerAtStartupHelp": "Toto spust\u00ed ikonu v oznamovac\u00ed oblasti. Pro spu\u0161t\u011bn\u00ed pomoc\u00ed slu\u017eeb Windows tuto polo\u017eku ponechte od\u0161krtnutou a spus\u0165te slu\u017ebu z ovl\u00e1dac\u00edch panel\u016f. Pros\u00edm vezm\u011bte na v\u011bdom\u00ed, \u017ee nemohou b\u011b\u017eet 2 instance serveru z\u00e1rove\u0148, bude pot\u0159eba ukon\u010dit program v oznamovac\u00ed oblasti panelu.",
|
||||||
"ButtonSelectDirectory": "Vybrat slo\u017eku",
|
"ButtonSelectDirectory": "Vybrat slo\u017eku",
|
||||||
"LabelCachePath": "Slo\u017eka pro cache:",
|
"LabelCachePath": "Slo\u017eka pro cache:",
|
||||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
"DefaultMetadataLangaugeDescription": "Va\u0161e defaultn\u00ed hodnoty, kter\u00e9 mohou b\u00fdt upraveny v\u016f\u010di nastaven\u00edm dan\u00e9 knihovny",
|
||||||
"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": "Standardn\u00ed slo\u017eka pro nahr\u00e1v\u00e1n\u00ed:",
|
"LabelRecordingPath": "Standardn\u00ed slo\u017eka pro nahr\u00e1v\u00e1n\u00ed:",
|
||||||
"LabelMovieRecordingPath": "Slo\u017eka pro nahr\u00e1v\u00e1n\u00ed film\u016f (voliteln\u00e9):",
|
"LabelMovieRecordingPath": "Slo\u017eka pro nahr\u00e1v\u00e1n\u00ed film\u016f (voliteln\u00e9):",
|
||||||
|
@ -315,9 +315,9 @@
|
||||||
"OptionEpisodes": "Episody",
|
"OptionEpisodes": "Episody",
|
||||||
"OptionOtherVideos": "Ostatn\u00ed videa",
|
"OptionOtherVideos": "Ostatn\u00ed videa",
|
||||||
"LabelFanartApiKey": "Osobn\u00ed kl\u00ed\u010d api:",
|
"LabelFanartApiKey": "Osobn\u00ed kl\u00ed\u010d api:",
|
||||||
"LabelFanartApiKeyHelp": "\u017d\u00e1dosti o fanart bez osobn\u00edho API kl\u00ed\u010de vr\u00e1t\u00ed v\u00fdsledky, kter\u00e9 byly schv\u00e1leny p\u0159ed 7-mi dny a d\u0159\u00edve. S osobn\u00edm kl\u00ed\u010dem API, z\u00edsk\u00e1te schv\u00e1len\u00e9 v\u00fdsledky p\u0159ed 48-mi hodinami, a pokud jste i fanart VIP \u010dlen, pak limit klesne na 10 minut.",
|
"LabelFanartApiKeyHelp": "\u017d\u00e1dosti o fanart bez osobn\u00edho API kl\u00ed\u010de vr\u00e1t\u00ed pouze v\u00fdsledky, kter\u00e9 byly schv\u00e1leny p\u0159ed 7-mi dny a d\u0159\u00edve. S osobn\u00edm API kl\u00ed\u010dem, z\u00edsk\u00e1te schv\u00e1len\u00e9 v\u00fdsledky do 48 hodin, a pokud jste fanart VIP \u010dlen, pak limit klesne na 10 minut.",
|
||||||
"ExtractChapterImagesHelp": "Extrakce obr\u00e1zk\u016f kapitol umo\u017en\u00ed klient\u016fm zobrazit menu pro v\u00fdb\u011br sc\u00e9ny. Tento proces m\u016f\u017ee b\u00fdt n\u00e1ro\u010dn\u00fd na cpu a m\u016f\u017ee vy\u017eadovat n\u011bkolik GB prostoru. \u00daloha je standardn\u011b napl\u00e1nov\u00e1na p\u0159i anal\u00fdze vide\u00ed v no\u010dn\u00edch hodin\u00e1ch. Nen\u00ed doporu\u010deno spu\u0161t\u011bn\u00ed t\u00e9to \u00falohy b\u011bhem standardn\u00edch hodin, kdy je server vyt\u00ed\u017een u\u017eivateli.",
|
"ExtractChapterImagesHelp": "Extrakce obr\u00e1zk\u016f kapitol umo\u017en\u00ed klient\u016fm zobrazit menu pro v\u00fdb\u011br sc\u00e9ny. Tento proces m\u016f\u017ee b\u00fdt n\u00e1ro\u010dn\u00fd na cpu a m\u016f\u017ee vy\u017eadovat n\u011bkolik GB prostoru. \u00daloha je standardn\u011b spu\u0161t\u011bna p\u0159i anal\u00fdze vide\u00ed v no\u010dn\u00edch hodin\u00e1ch. Nen\u00ed doporu\u010deno spou\u0161t\u011bt tuto \u00falohu b\u011bhem standardn\u00edch hodin, kdy je server vyt\u00ed\u017een.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferovan\u00fd jazyk:",
|
"LabelMetadataDownloadLanguage": "Preferovan\u00fd jazyk metadat:",
|
||||||
"ButtonSignIn": "P\u0159ihl\u00e1sit se",
|
"ButtonSignIn": "P\u0159ihl\u00e1sit se",
|
||||||
"TitleSignIn": "P\u0159ihl\u00e1sit se",
|
"TitleSignIn": "P\u0159ihl\u00e1sit se",
|
||||||
"HeaderPleaseSignIn": "Pros\u00edme, p\u0159ihlaste se",
|
"HeaderPleaseSignIn": "Pros\u00edme, p\u0159ihlaste se",
|
||||||
|
@ -333,10 +333,10 @@
|
||||||
"TabFavorites": "Obl\u00edben\u00e9",
|
"TabFavorites": "Obl\u00edben\u00e9",
|
||||||
"TabMyLibrary": "Moje knihovna",
|
"TabMyLibrary": "Moje knihovna",
|
||||||
"ButtonCancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed",
|
"ButtonCancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Spustit jakmile je mo\u017en\u00e9:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Zastavit jakmile je mo\u017en\u00e9",
|
||||||
"MinutesBefore": "minutes before",
|
"MinutesBefore": "minuty (p\u0159ed)",
|
||||||
"MinutesAfter": "minutes after",
|
"MinutesAfter": "minuty (po)",
|
||||||
"HeaderWhatsOnTV": "Pr\u00e1v\u011b vych\u00e1z\u00ed",
|
"HeaderWhatsOnTV": "Pr\u00e1v\u011b vych\u00e1z\u00ed",
|
||||||
"TabSettings": "Nastaven\u00ed",
|
"TabSettings": "Nastaven\u00ed",
|
||||||
"ButtonRefreshGuideData": "Obnovit data pr\u016fvodce",
|
"ButtonRefreshGuideData": "Obnovit data pr\u016fvodce",
|
||||||
|
@ -460,7 +460,7 @@
|
||||||
"LabelPublicHttpsPort": "Ve\u0159ejn\u00fd https port:",
|
"LabelPublicHttpsPort": "Ve\u0159ejn\u00fd https port:",
|
||||||
"LabelPublicHttpsPortHelp": "Ve\u0159ejn\u00fd port, na kter\u00fd by m\u011bl b\u00fdt mapov\u00e1n lok\u00e1ln\u00ed https port.",
|
"LabelPublicHttpsPortHelp": "Ve\u0159ejn\u00fd port, na kter\u00fd by m\u011bl b\u00fdt mapov\u00e1n lok\u00e1ln\u00ed https port.",
|
||||||
"LabelEnableHttps": "Https uv\u00e1d\u011bt jako extern\u00ed adresu",
|
"LabelEnableHttps": "Https uv\u00e1d\u011bt jako extern\u00ed adresu",
|
||||||
"LabelEnableHttpsHelp": "Pokud povol\u00edte, server bude uv\u00e1d\u011bt https URL klient\u016fm jako extern\u00ed adresu.",
|
"LabelEnableHttpsHelp": "Pokud je povoleno, server bude klient\u016fm v URL uvedeno https pro extern\u00ed adresu.",
|
||||||
"LabelHttpsPort": "Lok\u00e1ln\u00ed https port:",
|
"LabelHttpsPort": "Lok\u00e1ln\u00ed https port:",
|
||||||
"LabelHttpsPortHelp": "Tcp port, se kter\u00fdm by Emby https server m\u011bl b\u00fdt sv\u00e1z\u00e1n.",
|
"LabelHttpsPortHelp": "Tcp port, se kter\u00fdm by Emby https server m\u011bl b\u00fdt sv\u00e1z\u00e1n.",
|
||||||
"LabelEnableAutomaticPortMap": "Povolit automatick\u00e9 mapov\u00e1n\u00ed port\u016f",
|
"LabelEnableAutomaticPortMap": "Povolit automatick\u00e9 mapov\u00e1n\u00ed port\u016f",
|
||||||
|
@ -522,7 +522,7 @@
|
||||||
"LabelTransferMethodHelp": "Kop\u00edrovat nebo p\u0159esunout ze slo\u017eky sledovan\u00fdch",
|
"LabelTransferMethodHelp": "Kop\u00edrovat nebo p\u0159esunout ze slo\u017eky sledovan\u00fdch",
|
||||||
"HeaderLatestNews": "Posledn\u00ed novinky",
|
"HeaderLatestNews": "Posledn\u00ed novinky",
|
||||||
"HeaderRunningTasks": "B\u011b\u017e\u00edc\u00ed \u00falohy",
|
"HeaderRunningTasks": "B\u011b\u017e\u00edc\u00ed \u00falohy",
|
||||||
"HeaderActiveDevices": "Akt\u00edvn\u00ed za\u0159\u00edzen\u00ed",
|
"HeaderActiveDevices": "Aktivn\u00ed za\u0159\u00edzen\u00ed",
|
||||||
"HeaderPendingInstallations": "\u010cekaj\u00edc\u00ed instalace",
|
"HeaderPendingInstallations": "\u010cekaj\u00edc\u00ed instalace",
|
||||||
"ButtonRestartNow": "Restartovat nyn\u00ed",
|
"ButtonRestartNow": "Restartovat nyn\u00ed",
|
||||||
"ButtonRestart": "Restart",
|
"ButtonRestart": "Restart",
|
||||||
|
@ -562,7 +562,7 @@
|
||||||
"LabelDefaultUserHelp": "Ur\u010d\u00ed, kter\u00e1 u\u017eivatelsk\u00e1 knihovna by m\u011bla b\u00fdt zobrazena na p\u0159ipojen\u00fdch za\u0159\u00edzen\u00ed. Nastaven\u00ed m\u016f\u017ee b\u00fdt p\u0159eps\u00e1no pomoc\u00ed profil\u016f pro ka\u017ed\u00e9 za\u0159\u00edzen\u00ed.",
|
"LabelDefaultUserHelp": "Ur\u010d\u00ed, kter\u00e1 u\u017eivatelsk\u00e1 knihovna by m\u011bla b\u00fdt zobrazena na p\u0159ipojen\u00fdch za\u0159\u00edzen\u00ed. Nastaven\u00ed m\u016f\u017ee b\u00fdt p\u0159eps\u00e1no pomoc\u00ed profil\u016f pro ka\u017ed\u00e9 za\u0159\u00edzen\u00ed.",
|
||||||
"HeaderServerSettings": "Nastaven\u00ed serveru",
|
"HeaderServerSettings": "Nastaven\u00ed serveru",
|
||||||
"HeaderRequireManualLogin": "Vy\u017eadovat ru\u010dn\u00ed zad\u00e1n\u00ed u\u017eivatelsk\u00e9ho jm\u00e9na pro:",
|
"HeaderRequireManualLogin": "Vy\u017eadovat ru\u010dn\u00ed zad\u00e1n\u00ed u\u017eivatelsk\u00e9ho jm\u00e9na pro:",
|
||||||
"HeaderRequireManualLoginHelp": "Kdy\u017e mohou byt deaktivovan\u00ed klienti zobrazeni na p\u0159ihla\u0161ovac\u00ed obrazovce s vizu\u00e1ln\u00edm v\u00fdb\u011brem u\u017eivatel\u016f.",
|
"HeaderRequireManualLoginHelp": "Pokud nen\u00ed povoleno, mohou byt deaktivovan\u00ed klienti zobrazeni na p\u0159ihla\u0161ovac\u00ed obrazovce p\u0159i vizu\u00e1ln\u00edm v\u00fdb\u011bru u\u017eivatel\u016f.",
|
||||||
"OptionOtherApps": "Dal\u0161\u00ed aplikace",
|
"OptionOtherApps": "Dal\u0161\u00ed aplikace",
|
||||||
"OptionMobileApps": "Mobiln\u00ed aplikace",
|
"OptionMobileApps": "Mobiln\u00ed aplikace",
|
||||||
"LabelNotificationEnabled": "Povolit toto ozn\u00e1men\u00ed",
|
"LabelNotificationEnabled": "Povolit toto ozn\u00e1men\u00ed",
|
||||||
|
@ -590,17 +590,17 @@
|
||||||
"ButtonHome": "Dom\u016f",
|
"ButtonHome": "Dom\u016f",
|
||||||
"ButtonSearch": "Hled\u00e1n\u00ed",
|
"ButtonSearch": "Hled\u00e1n\u00ed",
|
||||||
"ButtonSettings": "Nastaven\u00ed",
|
"ButtonSettings": "Nastaven\u00ed",
|
||||||
"Settings": "Settings",
|
"Settings": "Nastaven\u00ed",
|
||||||
"Mute": "Mute",
|
"Mute": "Ztlumit",
|
||||||
"Unmute": "Unmute",
|
"Unmute": "Povolit zvuk",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "Titulky",
|
||||||
"Audio": "Audio",
|
"Audio": "Zvuk",
|
||||||
"Rewind": "Rewind",
|
"Rewind": "P\u0159eto\u010dit zp\u011bt",
|
||||||
"Fullscreen": "Full screen",
|
"Fullscreen": "Cel\u00e1 obrazovka",
|
||||||
"ExitFullscreen": "Exit full screen",
|
"ExitFullscreen": "Opustit celou obrazovku",
|
||||||
"PictureInPicture": "Picture in picture",
|
"PictureInPicture": "Obraz v obraze",
|
||||||
"PlayOnAnotherDevice": "Play on another device",
|
"PlayOnAnotherDevice": "P\u0159ehr\u00e1t na jin\u00e9m za\u0159\u00edzen\u00ed",
|
||||||
"FastForward": "Fast-forward",
|
"FastForward": "Rychle vp\u0159ed",
|
||||||
"ButtonTakeScreenshot": "Zachytit obrazovku",
|
"ButtonTakeScreenshot": "Zachytit obrazovku",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "P\u0159ehr\u00e1v\u00e1 se",
|
"TabNowPlaying": "P\u0159ehr\u00e1v\u00e1 se",
|
||||||
|
@ -653,7 +653,7 @@
|
||||||
"LabelEmbedAlbumArtDidl": "Vlo\u017eit alba do DIDL",
|
"LabelEmbedAlbumArtDidl": "Vlo\u017eit alba do DIDL",
|
||||||
"LabelEmbedAlbumArtDidlHelp": "N\u011bkter\u00e1 za\u0159\u00edzen\u00ed preferuj\u00ed tento zp\u016fsob pro z\u00edsk\u00e1n\u00ed alba. Jin\u00e9 mohou selhat pokud m\u00e1te tuto volbu povolenu.",
|
"LabelEmbedAlbumArtDidlHelp": "N\u011bkter\u00e1 za\u0159\u00edzen\u00ed preferuj\u00ed tento zp\u016fsob pro z\u00edsk\u00e1n\u00ed alba. Jin\u00e9 mohou selhat pokud m\u00e1te tuto volbu povolenu.",
|
||||||
"LabelAlbumArtPN": "Alba PN:",
|
"LabelAlbumArtPN": "Alba PN:",
|
||||||
"LabelAlbumArtHelp": "PN pou\u017e\u00edv\u00e1 obr\u00e1zek alba v r\u00e1mci technologie dlna:profileID atributu upnp:albumArtURI. N\u011bkte\u0159\u00ed klienti vy\u017eaduj\u00ed konkr\u00e9tn\u00ed hodnoty, bez ohledu na velikost obrazu.",
|
"LabelAlbumArtHelp": "PN pou\u017e\u00edv\u00e1 obr\u00e1zek alba v r\u00e1mci technologie dlna:profileID atributu upnp:albumArtURI. N\u011bkte\u0159\u00ed klienti vy\u017eaduj\u00ed konkr\u00e9tn\u00ed hodnoty, bez ohledu na velikost obr\u00e1zku.",
|
||||||
"LabelAlbumArtMaxWidth": "Maxim\u00e1ln\u00ed v\u00fd\u0161ka alba:",
|
"LabelAlbumArtMaxWidth": "Maxim\u00e1ln\u00ed v\u00fd\u0161ka alba:",
|
||||||
"LabelAlbumArtMaxWidthHelp": "Maxim\u00e1ln\u00ed rozli\u0161en\u00ed alb nab\u00edzen\u00fdch prost\u0159ednictv\u00edm upnp:albumArtURI.",
|
"LabelAlbumArtMaxWidthHelp": "Maxim\u00e1ln\u00ed rozli\u0161en\u00ed alb nab\u00edzen\u00fdch prost\u0159ednictv\u00edm upnp:albumArtURI.",
|
||||||
"LabelAlbumArtMaxHeight": "Maxim\u00e1ln\u00ed v\u00fd\u0161ka alba:",
|
"LabelAlbumArtMaxHeight": "Maxim\u00e1ln\u00ed v\u00fd\u0161ka alba:",
|
||||||
|
@ -793,7 +793,7 @@
|
||||||
"LabelProtocolInfo": "Protokol info:",
|
"LabelProtocolInfo": "Protokol info:",
|
||||||
"LabelProtocolInfoHelp": "Hodnota, kter\u00e1 se pou\u017eije p\u0159i odpov\u011bdi na po\u017eadavek GetProtocolInfo ze za\u0159\u00edzen\u00ed.",
|
"LabelProtocolInfoHelp": "Hodnota, kter\u00e1 se pou\u017eije p\u0159i odpov\u011bdi na po\u017eadavek GetProtocolInfo ze za\u0159\u00edzen\u00ed.",
|
||||||
"TabNfoSettings": "Nfo nastaven\u00ed",
|
"TabNfoSettings": "Nfo nastaven\u00ed",
|
||||||
"HeaderKodiMetadataHelp": "Emby zahrnuje nativn\u00ed podporu pro NFO soubory metadat. Chcete-li povolit nebo zak\u00e1zat NFO metadata pro vybran\u00e9 typy m\u00e9di\u00ed pou\u017eijte kartu Up\u0159esnit.",
|
"HeaderKodiMetadataHelp": "Emby zahrnuje nativn\u00ed podporu pro NFO soubory metadat. Chcete-li povolit nebo zak\u00e1zat NFO metadata pro vybran\u00e9 typy m\u00e9di\u00ed pou\u017eijte kartu Slu\u017eby.",
|
||||||
"LabelKodiMetadataUser": "Synchronizovat shl\u00e9dnut\u00ed m\u00e9di\u00ed do nfo pro:",
|
"LabelKodiMetadataUser": "Synchronizovat shl\u00e9dnut\u00ed m\u00e9di\u00ed do nfo pro:",
|
||||||
"LabelKodiMetadataUserHelp": "Aktivac\u00ed t\u00e9to funkce uchov\u00e1v\u00e1te synchronizovan\u00e1 data NFO soubor\u016f s informacemi o shl\u00e9dnut\u00fdch m\u00e9di\u00edch na Emby Server.",
|
"LabelKodiMetadataUserHelp": "Aktivac\u00ed t\u00e9to funkce uchov\u00e1v\u00e1te synchronizovan\u00e1 data NFO soubor\u016f s informacemi o shl\u00e9dnut\u00fdch m\u00e9di\u00edch na Emby Server.",
|
||||||
"LabelKodiMetadataDateFormat": "Form\u00e1t data vyd\u00e1n\u00ed:",
|
"LabelKodiMetadataDateFormat": "Form\u00e1t data vyd\u00e1n\u00ed:",
|
||||||
|
@ -803,10 +803,10 @@
|
||||||
"LabelKodiMetadataEnablePathSubstitution": "Povolit nahrazen\u00ed adres\u00e1\u0159ov\u00fdch cest",
|
"LabelKodiMetadataEnablePathSubstitution": "Povolit nahrazen\u00ed adres\u00e1\u0159ov\u00fdch cest",
|
||||||
"LabelKodiMetadataEnablePathSubstitutionHelp": "Umo\u017en\u00ed nahrazen\u00ed cesty k obr\u00e1zk\u016fm pomoc\u00ed nastaven\u00e9 cesty serveru pro nahrazen\u00ed cest.",
|
"LabelKodiMetadataEnablePathSubstitutionHelp": "Umo\u017en\u00ed nahrazen\u00ed cesty k obr\u00e1zk\u016fm pomoc\u00ed nastaven\u00e9 cesty serveru pro nahrazen\u00ed cest.",
|
||||||
"LabelKodiMetadataEnablePathSubstitutionHelp2": "Zobrazit adres\u00e1\u0159ov\u00e9 cesty.",
|
"LabelKodiMetadataEnablePathSubstitutionHelp2": "Zobrazit adres\u00e1\u0159ov\u00e9 cesty.",
|
||||||
"OptionDisplayChannelsInline": "Zobrazit kan\u00e1ly uvnit\u0159 m\u00fdch nastaven\u00fdch zobrazen\u00ed",
|
"OptionDisplayChannelsInline": "Zobrazit kan\u00e1ly jako slo\u017eky m\u00e9di\u00ed",
|
||||||
"OptionDisplayChannelsInlineHelp": "Pokud povol\u00edte, budou kan\u00e1ly zobrazeny p\u0159\u00edmo vedle ostatn\u00edch pohled\u016f. Pokud nepovol\u00edte, budou kan\u00e1ly zobrazeny v samostatn\u00e9m pohledu.",
|
"OptionDisplayChannelsInlineHelp": "Pokud povol\u00edte, budou kan\u00e1ly zobrazeny hned vedle ostatn\u00edch pohled\u016f. Pokud nepovol\u00edte, budou kan\u00e1ly zobrazeny v samostatn\u00e9m pohledu.",
|
||||||
"LabelDisplayCollectionsView": "Zobrazit pohled Kolekce pro zobrazen\u00ed filmov\u00e9 sb\u00edrky",
|
"LabelDisplayCollectionsView": "Zobrazit pohled Kolekce pro zobrazen\u00ed filmov\u00e9 sb\u00edrky",
|
||||||
"LabelDisplayCollectionsViewHelp": "T\u00edm se vytvo\u0159\u00ed samostatn\u00e9 zobrazen\u00ed, dle kolekc\u00ed, kter\u00e9 jste vytvo\u0159ili nebo povolily pro p\u0159\u00edstup. Chcete-li vytvo\u0159it kolekci, klepn\u011bte prav\u00fdm tla\u010d\u00edtkem my\u0161i nebo klepn\u011bte na tla\u010d\u00edtko a podr\u017ete u jak\u00e9hokoliv filmu, a pot\u00e9 vyberte mo\u017enost \"P\u0159idat do kolekce\".",
|
"LabelDisplayCollectionsViewHelp": "Vytvo\u0159\u00ed samostatn\u00e9 zobrazen\u00ed kolekc\u00ed, kter\u00e9 jste vytvo\u0159ili nebo zp\u0159\u00edstupnily. Pro vytvo\u0159en\u00ed kolekce, klepn\u011bte prav\u00fdm tla\u010d\u00edtkem my\u0161i nebo polo\u017eku stiskn\u011bte d\u00e9le u jak\u00e9hokoliv filmu, a pot\u00e9 vyberte mo\u017enost \"P\u0159idat do kolekce\". ",
|
||||||
"LabelKodiMetadataEnableExtraThumbs": "Kop\u00edrovat extrafanart do extrathumbs",
|
"LabelKodiMetadataEnableExtraThumbs": "Kop\u00edrovat extrafanart do extrathumbs",
|
||||||
"LabelKodiMetadataEnableExtraThumbsHelp": "Sta\u017een\u00e9 obr\u00e1zky mohou b\u00fdt ulo\u017eeny do obou extrafanart a extrathumbs. Pro zaji\u0161t\u011bn\u00ed maxim\u00e1ln\u00ed kompatibility se vzhledem Kodi.",
|
"LabelKodiMetadataEnableExtraThumbsHelp": "Sta\u017een\u00e9 obr\u00e1zky mohou b\u00fdt ulo\u017eeny do obou extrafanart a extrathumbs. Pro zaji\u0161t\u011bn\u00ed maxim\u00e1ln\u00ed kompatibility se vzhledem Kodi.",
|
||||||
"TabServices": "Slu\u017eby",
|
"TabServices": "Slu\u017eby",
|
||||||
|
@ -983,7 +983,7 @@
|
||||||
"LabelConnectUserNameHelp": "P\u0159ipojit tohoto lok\u00e1ln\u00edho u\u017eivatele, aby on-line Emby \u00fa\u010det umo\u017enil snadn\u00fd p\u0159\u00edstup z jak\u00e9koliv aplikace Emby, ani\u017e byste museli zn\u00e1t IP adresu serveru.",
|
"LabelConnectUserNameHelp": "P\u0159ipojit tohoto lok\u00e1ln\u00edho u\u017eivatele, aby on-line Emby \u00fa\u010det umo\u017enil snadn\u00fd p\u0159\u00edstup z jak\u00e9koliv aplikace Emby, ani\u017e byste museli zn\u00e1t IP adresu serveru.",
|
||||||
"ButtonLearnMoreAboutEmbyConnect": "Zjist\u011bte v\u00edce o Emby Connect",
|
"ButtonLearnMoreAboutEmbyConnect": "Zjist\u011bte v\u00edce o Emby Connect",
|
||||||
"LabelExternalPlayers": "Extern\u00ed p\u0159ehr\u00e1va\u010de:",
|
"LabelExternalPlayers": "Extern\u00ed p\u0159ehr\u00e1va\u010de:",
|
||||||
"LabelNativeExternalPlayersHelp": "Zobrazit tla\u010d\u00edtka pro p\u0159ehr\u00e1n\u00ed obsahu v extern\u00edch p\u0159ehr\u00e1va\u010d\u00edch.",
|
"LabelNativeExternalPlayersHelp": "P\u0159ehr\u00e1t video v extern\u00edch p\u0159ehr\u00e1va\u010d\u00edch.",
|
||||||
"HeaderSubtitleProfile": "Profil titulk\u016f",
|
"HeaderSubtitleProfile": "Profil titulk\u016f",
|
||||||
"HeaderSubtitleProfiles": "Profily titulk\u016f",
|
"HeaderSubtitleProfiles": "Profily titulk\u016f",
|
||||||
"HeaderSubtitleProfilesHelp": "Profily titulk\u016f popisuj\u00ed form\u00e1ty titulk\u016f, kter\u00e9 dan\u00e1 za\u0159\u00edzen\u00ed podporuj\u00ed.",
|
"HeaderSubtitleProfilesHelp": "Profily titulk\u016f popisuj\u00ed form\u00e1ty titulk\u016f, kter\u00e9 dan\u00e1 za\u0159\u00edzen\u00ed podporuj\u00ed.",
|
||||||
|
@ -1006,7 +1006,7 @@
|
||||||
"CinemaModeConfigurationHelp": "Re\u017eim Cinema p\u0159in\u00e1\u0161\u00ed z\u00e1\u017eitky jako z kina p\u0159\u00edmo do va\u0161eho ob\u00fdvac\u00edho pokoje s mo\u017enost\u00ed p\u0159ehr\u00e1t trailery a vlastn\u00ed intra p\u0159ed hlavn\u00edm programem.",
|
"CinemaModeConfigurationHelp": "Re\u017eim Cinema p\u0159in\u00e1\u0161\u00ed z\u00e1\u017eitky jako z kina p\u0159\u00edmo do va\u0161eho ob\u00fdvac\u00edho pokoje s mo\u017enost\u00ed p\u0159ehr\u00e1t trailery a vlastn\u00ed intra p\u0159ed hlavn\u00edm programem.",
|
||||||
"OptionTrailersFromMyMovies": "V\u010detn\u011b uk\u00e1zek z film\u016f (trailer\u016f) v m\u00e9 knihovn\u011b",
|
"OptionTrailersFromMyMovies": "V\u010detn\u011b uk\u00e1zek z film\u016f (trailer\u016f) v m\u00e9 knihovn\u011b",
|
||||||
"OptionUpcomingMoviesInTheaters": "V\u010detn\u011b uk\u00e1zky z nov\u00fdch a p\u0159ipravovan\u00fdch film\u016f",
|
"OptionUpcomingMoviesInTheaters": "V\u010detn\u011b uk\u00e1zky z nov\u00fdch a p\u0159ipravovan\u00fdch film\u016f",
|
||||||
"LabelLimitIntrosToUnwatchedContent": "P\u0159ehr\u00e1vat pouze trailery z nezhl\u00e9dnut\u00e9ho obsahu.",
|
"LabelLimitIntrosToUnwatchedContent": "P\u0159ehr\u00e1vat trailery pouze z nezhl\u00e9dnut\u00e9ho obsahu.",
|
||||||
"LabelEnableIntroParentalControl": "Povolit inteligentn\u00ed rodi\u010dovskou kontrolu",
|
"LabelEnableIntroParentalControl": "Povolit inteligentn\u00ed rodi\u010dovskou kontrolu",
|
||||||
"LabelEnableIntroParentalControlHelp": "Trailery budou vybr\u00e1ny na z\u00e1klad\u011b rodi\u010dovsk\u00e9ho hodnocen\u00ed, kter\u00e9 se rovn\u00e1 nebo je ni\u017e\u0161\u00ed ne\u017e je sledovan\u00fd obsah.",
|
"LabelEnableIntroParentalControlHelp": "Trailery budou vybr\u00e1ny na z\u00e1klad\u011b rodi\u010dovsk\u00e9ho hodnocen\u00ed, kter\u00e9 se rovn\u00e1 nebo je ni\u017e\u0161\u00ed ne\u017e je sledovan\u00fd obsah.",
|
||||||
"LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "Tyto funkce vy\u017eaduj\u00ed aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere a instalaci z\u00e1suvn\u00e9ho modulu Trailer kan\u00e1lu.",
|
"LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "Tyto funkce vy\u017eaduj\u00ed aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere a instalaci z\u00e1suvn\u00e9ho modulu Trailer kan\u00e1lu.",
|
||||||
|
@ -1027,8 +1027,8 @@
|
||||||
"TitleDevices": "Za\u0159\u00edzen\u00ed",
|
"TitleDevices": "Za\u0159\u00edzen\u00ed",
|
||||||
"TabCameraUpload": "Nahr\u00e1t z fotoapar\u00e1tu",
|
"TabCameraUpload": "Nahr\u00e1t z fotoapar\u00e1tu",
|
||||||
"TabDevices": "Za\u0159\u00edzen\u00ed",
|
"TabDevices": "Za\u0159\u00edzen\u00ed",
|
||||||
"HeaderLibrarySettings": "Library Settings",
|
"HeaderLibrarySettings": "Nastaven\u00ed knihovny",
|
||||||
"HeaderChapterSettings": "Chapter Settings",
|
"HeaderChapterSettings": "Nastaven\u00ed kapitoly",
|
||||||
"HeaderCameraUploadHelp": "Automaticky nahr\u00e1vat fotografie a videa po\u0159\u00edzen\u00e9 na va\u0161ich mobiln\u00edch za\u0159\u00edzen\u00edch do Emby.",
|
"HeaderCameraUploadHelp": "Automaticky nahr\u00e1vat fotografie a videa po\u0159\u00edzen\u00e9 na va\u0161ich mobiln\u00edch za\u0159\u00edzen\u00edch do Emby.",
|
||||||
"MessageNoDevicesSupportCameraUpload": "V sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e1 za\u0159\u00edzen\u00ed, kter\u00e1 podporuj\u00ed nahr\u00e1v\u00e1n\u00ed fotografi\u00ed.",
|
"MessageNoDevicesSupportCameraUpload": "V sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e1 za\u0159\u00edzen\u00ed, kter\u00e1 podporuj\u00ed nahr\u00e1v\u00e1n\u00ed fotografi\u00ed.",
|
||||||
"LabelCameraUploadPath": "Slo\u017eka pro upload z fotoapar\u00e1tu:",
|
"LabelCameraUploadPath": "Slo\u017eka pro upload z fotoapar\u00e1tu:",
|
||||||
|
@ -1114,7 +1114,7 @@
|
||||||
"OptionAllowMediaPlaybackTranscodingHelp": "U\u017eivatel\u00e9 budou dost\u00e1vat p\u0159\u00e1telsk\u00e9 zpr\u00e1vy, pokud je nehratelnost obsahu zalo\u017een\u00e1 na politice.",
|
"OptionAllowMediaPlaybackTranscodingHelp": "U\u017eivatel\u00e9 budou dost\u00e1vat p\u0159\u00e1telsk\u00e9 zpr\u00e1vy, pokud je nehratelnost obsahu zalo\u017een\u00e1 na politice.",
|
||||||
"TabStreaming": "Streamov\u00e1n\u00ed",
|
"TabStreaming": "Streamov\u00e1n\u00ed",
|
||||||
"LabelRemoteClientBitrateLimit": "Datov\u00fd tok streamov\u00e1n\u00ed do Internetu (Mbps):",
|
"LabelRemoteClientBitrateLimit": "Datov\u00fd tok streamov\u00e1n\u00ed do Internetu (Mbps):",
|
||||||
"LabelRemoteClientBitrateLimitHelp": "Voliteln\u00fd limit datov\u00e9ho toku pro streamov\u00e1n\u00ed v\u0161ech s\u00ed\u0165ov\u00fdch klient\u016f. Vhodn\u00e9, pokud chcete zabr\u00e1nit klient\u016fm, po\u017eaduj\u00edc\u00edm vy\u0161\u0161\u00ed p\u0159enosovou rychlost ne\u017e va\u0161e p\u0159ipojen\u00ed k internetu zvl\u00e1dne.",
|
"LabelRemoteClientBitrateLimitHelp": "Nastaven\u00ed limitu datov\u00e9ho toku streamov\u00e1n\u00ed pro v\u0161echny s\u00ed\u0165ov\u00e9 klienty. U\u017eite\u010dn\u00e9, pokud chcete klient\u016fm omezit p\u0159enosovou rychlost.",
|
||||||
"LabelConversionCpuCoreLimit": "Povolen\u00fd limit CPU jader:",
|
"LabelConversionCpuCoreLimit": "Povolen\u00fd limit CPU jader:",
|
||||||
"LabelConversionCpuCoreLimitHelp": "Maxim\u00e1ln\u00ed po\u010det CPU jader pou\u017eit\u00fdch pro konverzi p\u0159i synchronizaci na za\u0159\u00edzen\u00ed.",
|
"LabelConversionCpuCoreLimitHelp": "Maxim\u00e1ln\u00ed po\u010det CPU jader pou\u017eit\u00fdch pro konverzi p\u0159i synchronizaci na za\u0159\u00edzen\u00ed.",
|
||||||
"OptionEnableFullSpeedConversion": "Povolit plnou rychlost konverze",
|
"OptionEnableFullSpeedConversion": "Povolit plnou rychlost konverze",
|
||||||
|
@ -1196,7 +1196,7 @@
|
||||||
"HeaderSetupTVGuide": "Nastaven\u00ed TV pr\u016fvodce",
|
"HeaderSetupTVGuide": "Nastaven\u00ed TV pr\u016fvodce",
|
||||||
"LabelDataProvider": "Poskytovatel dat:",
|
"LabelDataProvider": "Poskytovatel dat:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automaticky uspo\u0159\u00e1dat z\u00e1znamy do st\u00e1vaj\u00edc\u00edch slo\u017eek seri\u00e1l\u016f v r\u016fzn\u00fdch knihovn\u00e1ch",
|
"OptionSendRecordingsToAutoOrganize": "Automaticky uspo\u0159\u00e1dat z\u00e1znamy do st\u00e1vaj\u00edc\u00edch slo\u017eek seri\u00e1l\u016f v r\u016fzn\u00fdch knihovn\u00e1ch",
|
||||||
"HeaderDefaultRecordingSettings": "Default Recording Settings",
|
"HeaderDefaultRecordingSettings": "Standardn\u00ed nastaven\u00ed z\u00e1znamu",
|
||||||
"OptionEnableRecordingSubfolders": "Vytvo\u0159it podslo\u017eky pro kategorie, jako je Sport, D\u011bti, atd.",
|
"OptionEnableRecordingSubfolders": "Vytvo\u0159it podslo\u017eky pro kategorie, jako je Sport, D\u011bti, atd.",
|
||||||
"HeaderSubtitles": "Titulky",
|
"HeaderSubtitles": "Titulky",
|
||||||
"HeaderVideos": "Videa",
|
"HeaderVideos": "Videa",
|
||||||
|
@ -1215,13 +1215,13 @@
|
||||||
"LabelCodecIntrosPath": "Slo\u017eka pro vlastn\u00ed p\u0159edehry:",
|
"LabelCodecIntrosPath": "Slo\u017eka pro vlastn\u00ed p\u0159edehry:",
|
||||||
"LabelCodecIntrosPathHelp": "Slo\u017eka obsahuj\u00edc\u00ed video soubory. Pokud n\u00e1zev \u00favodn\u00edho videa souboru odpov\u00edd\u00e1 video kodek, zvukov\u00fd kodek, zvukov\u00fd profil, nebo tag, pak bude hr\u00e1t p\u0159ed hlavn\u00edm spou\u0161t\u011bn\u00fdm m\u00e9diem.",
|
"LabelCodecIntrosPathHelp": "Slo\u017eka obsahuj\u00edc\u00ed video soubory. Pokud n\u00e1zev \u00favodn\u00edho videa souboru odpov\u00edd\u00e1 video kodek, zvukov\u00fd kodek, zvukov\u00fd profil, nebo tag, pak bude hr\u00e1t p\u0159ed hlavn\u00edm spou\u0161t\u011bn\u00fdm m\u00e9diem.",
|
||||||
"OptionConvertRecordingsToStreamingFormat": "Automaticky prov\u00e1d\u011bt konverzi do podporovan\u00fdch streamov\u00fdch form\u00e1t\u016f",
|
"OptionConvertRecordingsToStreamingFormat": "Automaticky prov\u00e1d\u011bt konverzi do podporovan\u00fdch streamov\u00fdch form\u00e1t\u016f",
|
||||||
"OptionConvertRecordingsToStreamingFormatHelp": "Nahr\u00e1vky budou p\u0159i p\u0159ehr\u00e1v\u00e1n\u00ed p\u0159eved\u011bny do MP4 pro snadn\u00e9 p\u0159ehr\u00e1v\u00e1n\u00ed na va\u0161ich za\u0159\u00edzen\u00edch.",
|
"OptionConvertRecordingsToStreamingFormatHelp": "Nahr\u00e1vky budou p\u0159i p\u0159ehr\u00e1v\u00e1n\u00ed p\u0159evedeny do MP4 pro bezprobl\u00e9mov\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed na va\u0161ich za\u0159\u00edzen\u00edch.",
|
||||||
"FeatureRequiresEmbyPremiere": "Tato funkce vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.",
|
"FeatureRequiresEmbyPremiere": "Tato funkce vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.",
|
||||||
"FileExtension": "P\u0159\u00edpona souboru",
|
"FileExtension": "P\u0159\u00edpona souboru",
|
||||||
"OptionPlayNextEpisodeAutomatically": "Automaticky p\u0159ehr\u00e1vat dal\u0161\u00ed epizodu",
|
"OptionPlayNextEpisodeAutomatically": "Automaticky p\u0159ehr\u00e1vat dal\u0161\u00ed epizodu",
|
||||||
"OptionDownloadImagesInAdvance": "St\u00e1hnout v\u0161echny obr\u00e1zky do z\u00e1lohy",
|
"OptionDownloadImagesInAdvance": "St\u00e1hnout obr\u00e1zky pokro\u010dilej\u0161\u00edm zp\u016fsobem",
|
||||||
"SettingsSaved": "Nastaven\u00ed ulo\u017eeno.",
|
"SettingsSaved": "Nastaven\u00ed ulo\u017eeno.",
|
||||||
"OptionDownloadImagesInAdvanceHelp": "Ve v\u00fdchoz\u00edm nastaven\u00ed je v\u011bt\u0161ina sekund\u00e1rn\u00edch obr\u00e1zk\u016f sta\u017eena, pouze pokud o to po\u017e\u00e1d\u00e1 aplikace Emby. Povolen\u00edm t\u00e9to mo\u017enosti se st\u00e1hnout v\u0161echny obr\u00e1zky v p\u0159edstihu, jakmile se importuj\u00ed nov\u00e1 m\u00e9dia.",
|
"OptionDownloadImagesInAdvanceHelp": "Ve v\u00fdchoz\u00edm nastaven\u00ed jsou sekund\u00e1rn\u00ed obr\u00e1zky sta\u017eeny, jen p\u0159i po\u017e\u00e1d\u00e1n\u00ed aplikace Emby. Povolen\u00edm t\u00e9to mo\u017enosti se st\u00e1hnou v\u0161echny obr\u00e1zky v p\u0159edstihu, jakmile jsou nov\u00e1 m\u00e9dia na\u010dtena do knihovny.",
|
||||||
"Users": "U\u017eivatel\u00e9",
|
"Users": "U\u017eivatel\u00e9",
|
||||||
"Delete": "Odstranit",
|
"Delete": "Odstranit",
|
||||||
"Password": "Heslo",
|
"Password": "Heslo",
|
||||||
|
@ -1243,7 +1243,7 @@
|
||||||
"PasswordMatchError": "Heslo a potvrzen\u00ed hesla mus\u00ed souhlasit.",
|
"PasswordMatchError": "Heslo a potvrzen\u00ed hesla mus\u00ed souhlasit.",
|
||||||
"UninstallPluginHeader": "Odinstalovat z\u00e1suvn\u00fd modul",
|
"UninstallPluginHeader": "Odinstalovat z\u00e1suvn\u00fd modul",
|
||||||
"UninstallPluginConfirmation": "Jste si jisti, \u017ee chcete odinstalovat {0}?",
|
"UninstallPluginConfirmation": "Jste si jisti, \u017ee chcete odinstalovat {0}?",
|
||||||
"NoPluginConfigurationMessage": "Tento z\u00e1suvn\u00fd modul nem\u00e1 nastaven\u00ed.",
|
"NoPluginConfigurationMessage": "Tento z\u00e1suvn\u00fd modul nem\u00e1 \u017e\u00e1dn\u00e9 nastaven\u00ed.",
|
||||||
"NoPluginsInstalledMessage": "Nem\u00e1te nainstalov\u00e1n \u017e\u00e1dn\u00fd z\u00e1suvn\u00fd modul.",
|
"NoPluginsInstalledMessage": "Nem\u00e1te nainstalov\u00e1n \u017e\u00e1dn\u00fd z\u00e1suvn\u00fd modul.",
|
||||||
"BrowsePluginCatalogMessage": "Prohl\u00e9dn\u011bte si n\u00e1\u0161 katalog, kde najdete dostupn\u00e9 z\u00e1suvn\u00e9 moduly.",
|
"BrowsePluginCatalogMessage": "Prohl\u00e9dn\u011bte si n\u00e1\u0161 katalog, kde najdete dostupn\u00e9 z\u00e1suvn\u00e9 moduly.",
|
||||||
"HeaderNewApiKey": "Nov\u00fd kl\u00ed\u010d API",
|
"HeaderNewApiKey": "Nov\u00fd kl\u00ed\u010d API",
|
||||||
|
@ -1309,7 +1309,7 @@
|
||||||
"ButtonTakeTheTour": "Chci \u00favodn\u00ed prohl\u00eddku",
|
"ButtonTakeTheTour": "Chci \u00favodn\u00ed prohl\u00eddku",
|
||||||
"HeaderWelcomeBack": "V\u00edtejte zp\u011bt!",
|
"HeaderWelcomeBack": "V\u00edtejte zp\u011bt!",
|
||||||
"ButtonTakeTheTourToSeeWhatsNew": "Chci vid\u011bt co je nov\u00e9ho",
|
"ButtonTakeTheTourToSeeWhatsNew": "Chci vid\u011bt co je nov\u00e9ho",
|
||||||
"MessageNoSyncJobsFound": "Nebyly nalezeny \u017e\u00e1dn\u00e9 synchroniza\u010dn\u00ed \u00falohy. Synchroniza\u010dn\u00ed \u00falohy vytvo\u0159\u00edte pomoc\u00ed tla\u010d\u00edtek \"Synchronizace\" kdekoliv ve webov\u00e9m rozhran\u00ed.",
|
"MessageNoSyncJobsFound": "Nebyly nalezeny \u017e\u00e1dn\u00e9 synchroniza\u010dn\u00ed \u00falohy. Synchroniza\u010dn\u00ed \u00falohu vytvo\u0159\u00edte kdekoliv ve webov\u00e9m rozhran\u00ed najdete tla\u010d\u00edtko \"Synchronizace\".",
|
||||||
"MessageDownloadsFound": "\u017d\u00e1dn\u00e9 stahov\u00e1n\u00ed v re\u017eimu offline. Zp\u0159\u00edstupn\u011bte sv\u00e1 m\u00e9dia i v re\u017eimu offline kliknut\u00edm na Zp\u0159\u00edstupnit Offline pro celou aplikaci.",
|
"MessageDownloadsFound": "\u017d\u00e1dn\u00e9 stahov\u00e1n\u00ed v re\u017eimu offline. Zp\u0159\u00edstupn\u011bte sv\u00e1 m\u00e9dia i v re\u017eimu offline kliknut\u00edm na Zp\u0159\u00edstupnit Offline pro celou aplikaci.",
|
||||||
"HeaderSelectDevices": "Vyber za\u0159\u00edzen\u00ed",
|
"HeaderSelectDevices": "Vyber za\u0159\u00edzen\u00ed",
|
||||||
"ButtonCancelItem": "Zru\u0161it polo\u017eku",
|
"ButtonCancelItem": "Zru\u0161it polo\u017eku",
|
||||||
|
@ -1328,7 +1328,7 @@
|
||||||
"HeaderPlaybackError": "Chyba p\u0159ehr\u00e1v\u00e1n\u00ed",
|
"HeaderPlaybackError": "Chyba p\u0159ehr\u00e1v\u00e1n\u00ed",
|
||||||
"MessagePlaybackErrorNotAllowed": "V sou\u010dasn\u00e9 dob\u011b nejste opr\u00e1vn\u011bni p\u0159ehr\u00e1vat tento obsah. Pro v\u00edce informac\u00ed se obra\u0165te se na spr\u00e1vce syst\u00e9mu.",
|
"MessagePlaybackErrorNotAllowed": "V sou\u010dasn\u00e9 dob\u011b nejste opr\u00e1vn\u011bni p\u0159ehr\u00e1vat tento obsah. Pro v\u00edce informac\u00ed se obra\u0165te se na spr\u00e1vce syst\u00e9mu.",
|
||||||
"MessagePlaybackErrorNoCompatibleStream": "\u017d\u00e1dn\u00e9 kompatibiln\u00ed streamy nejsou v sou\u010dasn\u00e9 dob\u011b k dispozici. Zkuste to pros\u00edm pozd\u011bji nebo pro v\u00edce podrobnost\u00ed kontaktujte sv\u00e9ho spr\u00e1vce syst\u00e9mu",
|
"MessagePlaybackErrorNoCompatibleStream": "\u017d\u00e1dn\u00e9 kompatibiln\u00ed streamy nejsou v sou\u010dasn\u00e9 dob\u011b k dispozici. Zkuste to pros\u00edm pozd\u011bji nebo pro v\u00edce podrobnost\u00ed kontaktujte sv\u00e9ho spr\u00e1vce syst\u00e9mu",
|
||||||
"MessagePlaybackErrorPlaceHolder": "Zvolen\u00fd obsah nen\u00ed mo\u017en\u00e9 p\u0159ehr\u00e1t z tohoto za\u0159\u00edzen\u00ed.",
|
"MessagePlaybackErrorPlaceHolder": "Pro p\u0159ehr\u00e1n\u00ed videa nejd\u0159\u00edve vlo\u017ete disk",
|
||||||
"HeaderSelectAudio": "Vyber audio",
|
"HeaderSelectAudio": "Vyber audio",
|
||||||
"HeaderSelectSubtitles": "Vyber titulky",
|
"HeaderSelectSubtitles": "Vyber titulky",
|
||||||
"ButtonMarkForRemoval": "Odeber ze za\u0159\u00edzen\u00ed",
|
"ButtonMarkForRemoval": "Odeber ze za\u0159\u00edzen\u00ed",
|
||||||
|
@ -1400,7 +1400,7 @@
|
||||||
"StatusSuccess": "\u00dasp\u011bch",
|
"StatusSuccess": "\u00dasp\u011bch",
|
||||||
"MessageFileWillBeDeleted": "N\u00e1sleduj\u00edc\u00ed soubor bude smaz\u00e1n:",
|
"MessageFileWillBeDeleted": "N\u00e1sleduj\u00edc\u00ed soubor bude smaz\u00e1n:",
|
||||||
"MessageSureYouWishToProceed": "Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
"MessageSureYouWishToProceed": "Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
||||||
"MessageDuplicatesWillBeDeleted": "Krom\u011b toho budou vymaz\u00e1ny n\u00e1sleduj\u00edc\u00ed duplik\u00e1ty:",
|
"MessageDuplicatesWillBeDeleted": "Krom\u011b toho budou odstran\u011bny n\u00e1sleduj\u00edc\u00ed duplik\u00e1ty:",
|
||||||
"MessageFollowingFileWillBeMovedFrom": "N\u00e1sleduj\u00edc\u00ed soubor bude p\u0159esunut z:",
|
"MessageFollowingFileWillBeMovedFrom": "N\u00e1sleduj\u00edc\u00ed soubor bude p\u0159esunut z:",
|
||||||
"MessageDestinationTo": "komu:",
|
"MessageDestinationTo": "komu:",
|
||||||
"HeaderSelectWatchFolder": "Vyberte sledovanou slo\u017eku",
|
"HeaderSelectWatchFolder": "Vyberte sledovanou slo\u017eku",
|
||||||
|
@ -1423,8 +1423,8 @@
|
||||||
"LabelPlayMethodDirectPlay": "P\u0159\u00edm\u00e9 p\u0159ehr\u00e1n\u00ed",
|
"LabelPlayMethodDirectPlay": "P\u0159\u00edm\u00e9 p\u0159ehr\u00e1n\u00ed",
|
||||||
"LabelAudioCodec": "Audio: {0}",
|
"LabelAudioCodec": "Audio: {0}",
|
||||||
"LabelVideoCodec": "Video: {0}",
|
"LabelVideoCodec": "Video: {0}",
|
||||||
"LabelLocalAccessUrl": "Lok\u00e1ln\u00ed p\u0159\u00edstup: {0}",
|
"LabelLocalAccessUrl": "Lok\u00e1ln\u00ed (LAN) p\u0159\u00edstup: {0}",
|
||||||
"LabelRemoteAccessUrl": "Vzd\u00e1len\u00fd p\u0159\u00edstup: {0}",
|
"LabelRemoteAccessUrl": "Vzd\u00e1len\u00fd (WAN) p\u0159\u00edstup: {0}",
|
||||||
"LabelRunningOnPort": "Spu\u0161t\u011bno na http portu {0}.",
|
"LabelRunningOnPort": "Spu\u0161t\u011bno na http portu {0}.",
|
||||||
"LabelRunningOnPorts": "Spu\u0161t\u011bno na http portu {0} a https portu {1}.",
|
"LabelRunningOnPorts": "Spu\u0161t\u011bno na http portu {0} a https portu {1}.",
|
||||||
"HeaderLatestFromChannel": "Nejnov\u011bj\u0161\u00ed od {0}",
|
"HeaderLatestFromChannel": "Nejnov\u011bj\u0161\u00ed od {0}",
|
||||||
|
@ -1547,7 +1547,7 @@
|
||||||
"OptionMusicAlbums": "Hudebn\u00ed alba",
|
"OptionMusicAlbums": "Hudebn\u00ed alba",
|
||||||
"OptionMusicVideos": "Hudebn\u00ed klipy",
|
"OptionMusicVideos": "Hudebn\u00ed klipy",
|
||||||
"OptionSongs": "Songy",
|
"OptionSongs": "Songy",
|
||||||
"OptionHomeVideos": "Dom\u00e1c\u00ed videa",
|
"OptionHomeVideos": "Dom\u00e1c\u00ed videa a fotky",
|
||||||
"OptionBooks": "Knihy",
|
"OptionBooks": "Knihy",
|
||||||
"ButtonUp": "Zes\u00edlit",
|
"ButtonUp": "Zes\u00edlit",
|
||||||
"ButtonDown": "Zeslabit",
|
"ButtonDown": "Zeslabit",
|
||||||
|
@ -1628,7 +1628,7 @@
|
||||||
"HeaderUnaired": "Nevys\u00edl\u00e1no",
|
"HeaderUnaired": "Nevys\u00edl\u00e1no",
|
||||||
"HeaderMissing": "Chyb\u00ed",
|
"HeaderMissing": "Chyb\u00ed",
|
||||||
"ButtonWebsite": "Webov\u00e9 str\u00e1nky",
|
"ButtonWebsite": "Webov\u00e9 str\u00e1nky",
|
||||||
"ValueSeriesYearToPresent": "{0}-Sou\u010dasnost",
|
"ValueSeriesYearToPresent": "{0} - Pr\u00e1v\u011b te\u010f",
|
||||||
"ValueAwards": "Ocen\u011bn\u00ed: {0}",
|
"ValueAwards": "Ocen\u011bn\u00ed: {0}",
|
||||||
"ValuePremiered": "Uvedeno {0}",
|
"ValuePremiered": "Uvedeno {0}",
|
||||||
"ValuePremieres": "Premi\u00e9ry {0}",
|
"ValuePremieres": "Premi\u00e9ry {0}",
|
||||||
|
@ -1762,7 +1762,7 @@
|
||||||
"HeaderCancelSyncJob": "Zru\u0161it synchronizaci",
|
"HeaderCancelSyncJob": "Zru\u0161it synchronizaci",
|
||||||
"CancelSyncJobConfirmation": "Zru\u0161en\u00edm synchroniza\u010dn\u00edch \u00faloh budou odstran\u011bna synchronizovan\u00e1 m\u00e9dia ze za\u0159\u00edzen\u00ed b\u011bhem p\u0159\u00ed\u0161t\u00edho synchroniza\u010dn\u00edho procesu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
"CancelSyncJobConfirmation": "Zru\u0161en\u00edm synchroniza\u010dn\u00edch \u00faloh budou odstran\u011bna synchronizovan\u00e1 m\u00e9dia ze za\u0159\u00edzen\u00ed b\u011bhem p\u0159\u00ed\u0161t\u00edho synchroniza\u010dn\u00edho procesu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
||||||
"LabelQuality": "Kvalita:",
|
"LabelQuality": "Kvalita:",
|
||||||
"BookLibraryHelp": "Audio and text books are supported",
|
"BookLibraryHelp": "Audio a text je podporov\u00e1n",
|
||||||
"MessageGamePluginRequired": "Vy\u017eaduje instalaci z\u00e1suvn\u00e9ho modulu GameBrowser",
|
"MessageGamePluginRequired": "Vy\u017eaduje instalaci z\u00e1suvn\u00e9ho modulu GameBrowser",
|
||||||
"MessageUnsetContentHelp": "Obsah je zobrazen pomoc\u00ed prost\u00fdch slo\u017eek. Pro dosa\u017een\u00ed nejlep\u0161\u00edch v\u00fdsledk\u016f pomoc\u00ed spr\u00e1vce metadat nastavte typy obsahu pod-slo\u017eek.",
|
"MessageUnsetContentHelp": "Obsah je zobrazen pomoc\u00ed prost\u00fdch slo\u017eek. Pro dosa\u017een\u00ed nejlep\u0161\u00edch v\u00fdsledk\u016f pomoc\u00ed spr\u00e1vce metadat nastavte typy obsahu pod-slo\u017eek.",
|
||||||
"SyncJobItemStatusQueued": "P\u0159id\u00e1no do fronty",
|
"SyncJobItemStatusQueued": "P\u0159id\u00e1no do fronty",
|
||||||
|
@ -1774,8 +1774,8 @@
|
||||||
"SyncJobItemStatusCancelled": "Zru\u0161eno",
|
"SyncJobItemStatusCancelled": "Zru\u0161eno",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
"LabelBitrateMbps": "Datov\u00fd tok (Mbps):",
|
"LabelBitrateMbps": "Datov\u00fd tok (Mbps):",
|
||||||
"EmbyIntroDownloadMessage": "Chcete-li st\u00e1hnout a nainstalovat Emby Server n\u00e1v\u0161tivte {0}.",
|
"EmbyIntroDownloadMessage": "Chcete-li zdarma st\u00e1hnout a nainstalovat Emby Server nav\u0161tivte {0}.",
|
||||||
"EmbyIntroDownloadMessageWithoutLink": "Pro sta\u017een\u00ed a instalaci Emby Serveru nav\u0161tivte webov\u00e9 str\u00e1nky Emby.",
|
"EmbyIntroDownloadMessageWithoutLink": "Pro sta\u017een\u00ed a instalaci Emby Serveru zdarma nav\u0161tivte webov\u00e9 str\u00e1nky Emby.",
|
||||||
"ButtonNewServer": "Nov\u00fd server",
|
"ButtonNewServer": "Nov\u00fd server",
|
||||||
"MyDevice": "Moje za\u0159\u00edzen\u00ed",
|
"MyDevice": "Moje za\u0159\u00edzen\u00ed",
|
||||||
"ButtonRemote": "Vzd\u00e1len\u00e9 ovl\u00e1d\u00e1n\u00ed",
|
"ButtonRemote": "Vzd\u00e1len\u00e9 ovl\u00e1d\u00e1n\u00ed",
|
||||||
|
@ -1857,7 +1857,7 @@
|
||||||
"TitleHardwareAcceleration": "Hardwarov\u00e1 akcelerace",
|
"TitleHardwareAcceleration": "Hardwarov\u00e1 akcelerace",
|
||||||
"HardwareAccelerationWarning": "Zapnut\u00ed hardwarov\u00e9 akcelerace m\u016f\u017ee zp\u016fsobit nestabilitu v n\u011bkter\u00fdch prost\u0159ed\u00edch. Ujist\u011bte se, \u017ee va\u0161e ovlada\u010de opera\u010dn\u00edho syst\u00e9mu a videa jsou pln\u011b aktu\u00e1ln\u00ed. M\u00e1te-li pot\u00ed\u017ee s p\u0159ehr\u00e1v\u00e1n\u00edm videa po zapnut\u00ed, budete muset zm\u011bnit nastaven\u00ed zp\u011bt na Auto.",
|
"HardwareAccelerationWarning": "Zapnut\u00ed hardwarov\u00e9 akcelerace m\u016f\u017ee zp\u016fsobit nestabilitu v n\u011bkter\u00fdch prost\u0159ed\u00edch. Ujist\u011bte se, \u017ee va\u0161e ovlada\u010de opera\u010dn\u00edho syst\u00e9mu a videa jsou pln\u011b aktu\u00e1ln\u00ed. M\u00e1te-li pot\u00ed\u017ee s p\u0159ehr\u00e1v\u00e1n\u00edm videa po zapnut\u00ed, budete muset zm\u011bnit nastaven\u00ed zp\u011bt na Auto.",
|
||||||
"HeaderSelectCodecIntrosPath": "Vyberte cestu ke kodeku pro p\u0159edehry",
|
"HeaderSelectCodecIntrosPath": "Vyberte cestu ke kodeku pro p\u0159edehry",
|
||||||
"ValueExample": "13:00",
|
"ValueExample": "P\u0159\u00edklad: {0}",
|
||||||
"OptionEnableAnonymousUsageReporting": "Povolit anonymn\u00ed zpr\u00e1vy o vyu\u017eit\u00ed",
|
"OptionEnableAnonymousUsageReporting": "Povolit anonymn\u00ed zpr\u00e1vy o vyu\u017eit\u00ed",
|
||||||
"OptionEnableAnonymousUsageReportingHelp": "Dovolit Emby shroma\u017e\u010fovat anonymn\u00ed data, jako jsou instalovan\u00e9 dopl\u0148ky, \u010d\u00edsla verz\u00ed va\u0161ich aplikac\u00ed Emby apod. Tyto informace se pou\u017e\u00edvaj\u00ed pouze pro \u00fa\u010dely zlep\u0161en\u00ed softwaru.",
|
"OptionEnableAnonymousUsageReportingHelp": "Dovolit Emby shroma\u017e\u010fovat anonymn\u00ed data, jako jsou instalovan\u00e9 dopl\u0148ky, \u010d\u00edsla verz\u00ed va\u0161ich aplikac\u00ed Emby apod. Tyto informace se pou\u017e\u00edvaj\u00ed pouze pro \u00fa\u010dely zlep\u0161en\u00ed softwaru.",
|
||||||
"LabelFileOrUrl": "Soubor nebo URL:",
|
"LabelFileOrUrl": "Soubor nebo URL:",
|
||||||
|
@ -1908,7 +1908,7 @@
|
||||||
"DownloadFFmpeg": "St\u00e1hni FFmpeg",
|
"DownloadFFmpeg": "St\u00e1hni FFmpeg",
|
||||||
"FFmpegSuggestedDownload": "Doporu\u010den\u00e9 sta\u017een\u00ed: {0}",
|
"FFmpegSuggestedDownload": "Doporu\u010den\u00e9 sta\u017een\u00ed: {0}",
|
||||||
"UnzipFFmpegFile": "Rozbalte sta\u017een\u00fd soubor do slo\u017eky dle vlastn\u00edho v\u00fdb\u011bru.",
|
"UnzipFFmpegFile": "Rozbalte sta\u017een\u00fd soubor do slo\u017eky dle vlastn\u00edho v\u00fdb\u011bru.",
|
||||||
"MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Emby permission to execute them.",
|
"MarkFFmpegExec": "Pod posix syst\u00e9mem (Linux nebo OSX), budete muset naj\u00edt ffmpeg a ffprobe soubory a ozna\u010dit je jako spustiteln\u00fd soubor. Emby pot\u0159ebuje ud\u011blit opr\u00e1vn\u011bn\u00ed k jejich spu\u0161t\u011bn\u00ed.",
|
||||||
"OptionUseSystemInstalledVersion": "Pou\u017eit\u00ed syst\u00e9movou verzi",
|
"OptionUseSystemInstalledVersion": "Pou\u017eit\u00ed syst\u00e9movou verzi",
|
||||||
"OptionUseMyCustomVersion": "Pou\u017e\u00edt vlastn\u00ed verzi",
|
"OptionUseMyCustomVersion": "Pou\u017e\u00edt vlastn\u00ed verzi",
|
||||||
"FFmpegSavePathNotFound": "Nepoda\u0159ilo se n\u00e1m naj\u00edt FFmpeg pomoc\u00ed cesty, kterou jste zadali. FFprobe je tak\u00e9 zapot\u0159eb\u00ed a mus\u00ed existovat ve stejn\u00e9 slo\u017ece. Tyto aplikace jsou obvykle instalov\u00e1ny spole\u010dn\u011b ve stejn\u00e9 slo\u017ece. Zkontrolujte cestu a zkuste to znovu.",
|
"FFmpegSavePathNotFound": "Nepoda\u0159ilo se n\u00e1m naj\u00edt FFmpeg pomoc\u00ed cesty, kterou jste zadali. FFprobe je tak\u00e9 zapot\u0159eb\u00ed a mus\u00ed existovat ve stejn\u00e9 slo\u017ece. Tyto aplikace jsou obvykle instalov\u00e1ny spole\u010dn\u011b ve stejn\u00e9 slo\u017ece. Zkontrolujte cestu a zkuste to znovu.",
|
||||||
|
@ -1953,12 +1953,13 @@
|
||||||
"LatestFromLibrary": "Nejnov\u011bj\u0161\u00ed {0}",
|
"LatestFromLibrary": "Nejnov\u011bj\u0161\u00ed {0}",
|
||||||
"LabelMoviePrefix": "P\u0159edpona filmu:",
|
"LabelMoviePrefix": "P\u0159edpona filmu:",
|
||||||
"LabelMoviePrefixHelp": "Je-li prefix aplikov\u00e1n na filmov\u00e9 tituly, zadejte jej zde, aby jej Emby spr\u00e1vn\u011b zpracoval.",
|
"LabelMoviePrefixHelp": "Je-li prefix aplikov\u00e1n na filmov\u00e9 tituly, zadejte jej zde, aby jej Emby spr\u00e1vn\u011b zpracoval.",
|
||||||
"HeaderRecordingPostProcessing": "Recording Post Processing",
|
"HeaderRecordingPostProcessing": "N\u00e1sledn\u00e9 zpracov\u00e1n\u00ed nahr\u00e1vek",
|
||||||
"LabelPostProcessorArguments": "Post-processor command line arguments:",
|
"LabelPostProcessorArguments": "Argumenty p\u0159\u00edkazov\u00e9 \u0159\u00e1dky pro n\u00e1sledn\u00e9 zpracov\u00e1n\u00ed",
|
||||||
"LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.",
|
"LabelPostProcessorArgumentsHelp": "Pou\u017eij {path} jako cestu k nahr\u00e1van\u00e9mu souboru.",
|
||||||
"LabelPostProcessor": "Post-processing application:",
|
"LabelPostProcessor": "Aplikace pro n\u00e1sledn\u00e9 zpracov\u00e1n\u00ed:",
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "Nastala chyba p\u0159i p\u0159\u00edstupu k XmlTV souboru. Ujist\u011bte se, \u017ee soubor existuje, a zkuste znovu spustit.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatick\u00e9 slou\u010den\u00ed k seri\u00e1lu, kter\u00e9 jsou ve v\u00edce slo\u017ek\u00e1ch",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "Pokud je povoleno, budou d\u00edly seri\u00e1lu ulo\u017een\u00e9 ve v\u00edce adres\u00e1\u0159\u00edch v t\u00e9to knihovn\u011b, automaticky slou\u010deny k jednomu seri\u00e1lu.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "Do\u0161lo k chyb\u011b p\u0159i nav\u00e1z\u00e1n\u00ed spojen\u00ed k serveru Emby Connect. Ujist\u011bte se, zda je funk\u010dn\u00ed p\u0159ipojen\u00ed k internetu a zkuste to znovu.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "Der opstod en fejl under tilgang til XmlTV-filen. Kontroller venligst at filen findes og pr\u00f8v igen.",
|
"ErrorAddingXmlTvFile": "Der opstod en fejl under tilgang til XmlTV-filen. Kontroller venligst at filen findes og pr\u00f8v igen.",
|
||||||
"OptionAutomaticallyGroupSeries": "Flet automatisk serier der er spredt over adskillige mapper",
|
"OptionAutomaticallyGroupSeries": "Flet automatisk serier der er spredt over adskillige mapper",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "Hvis aktiveret, vil serier der er spredt over adskillige mapper i dette bibliotek blive samlet i \u00e9n enkelt serie.",
|
"OptionAutomaticallyGroupSeriesHelp": "Hvis aktiveret, vil serier der er spredt over adskillige mapper i dette bibliotek blive samlet i \u00e9n enkelt serie.",
|
||||||
"ErrorReachingEmbyConnect": "Der opstod en fejl i at n\u00e5 frem til Emby Connect-serveren. Kontroller venligst at du har en aktiv internetforbindelse og pr\u00f8v igen."
|
"ErrorReachingEmbyConnect": "Der opstod en fejl i at n\u00e5 frem til Emby Connect-serveren. Kontroller venligst at du har en aktiv internetforbindelse og pr\u00f8v igen.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Pers\u00f6nlicher API Schl\u00fcssel:",
|
"LabelFanartApiKey": "Pers\u00f6nlicher API Schl\u00fcssel:",
|
||||||
"LabelFanartApiKeyHelp": "Fanart Anfragen ohne einen pers\u00f6nlichen API Schl\u00fcssel liefert Bilder der letzten 7 Tage. Bei Verwendung eines pers\u00f6nlichen API Schl\u00fcssels werden Ergebnisse der letzten 48 Stunden, und als VIP Member, der letzten 10 Minuten geliefert.",
|
"LabelFanartApiKeyHelp": "Fanart Anfragen ohne einen pers\u00f6nlichen API Schl\u00fcssel liefert Bilder der letzten 7 Tage. Bei Verwendung eines pers\u00f6nlichen API Schl\u00fcssels werden Ergebnisse der letzten 48 Stunden, und als VIP Member, der letzten 10 Minuten geliefert.",
|
||||||
"ExtractChapterImagesHelp": "Das Extrahieren von Kapitel-Bildern erm\u00f6glicht es Emby-Apps eine grafische Szenenauswahl anzubieten. Das Erstellen ist recht langsam, rechenintensiv und erfordert ggf. einige Gigabyte an freien Speicherplatz. Diese Aufgabe startet wenn neue Videos erkannt werden und ebenso als eine n\u00e4chtliche Aufgabe. Es wird nicht empfohlen diese Aufgabe in Zeiten hoher Server-Auslastung zu starten.",
|
"ExtractChapterImagesHelp": "Das Extrahieren von Kapitel-Bildern erm\u00f6glicht es Emby-Apps eine grafische Szenenauswahl anzubieten. Das Erstellen ist recht langsam, rechenintensiv und erfordert ggf. einige Gigabyte an freien Speicherplatz. Diese Aufgabe startet wenn neue Videos erkannt werden und ebenso als eine n\u00e4chtliche Aufgabe. Es wird nicht empfohlen diese Aufgabe in Zeiten hoher Server-Auslastung zu starten.",
|
||||||
"LabelMetadataDownloadLanguage": "Bevorzugte Sprache f\u00fcr Metadaten-Downloads:",
|
"LabelMetadataDownloadLanguage": "Bevorzugte Sprache f\u00fcr Metadaten:",
|
||||||
"ButtonSignIn": "Einloggen",
|
"ButtonSignIn": "Einloggen",
|
||||||
"TitleSignIn": "Einloggen",
|
"TitleSignIn": "Einloggen",
|
||||||
"HeaderPleaseSignIn": "Bitte einloggen",
|
"HeaderPleaseSignIn": "Bitte einloggen",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "Fehler beim Zugriff auf die XmlTV Datei. Stelle bitte sicher, dass die Datei existiert und versuche es nochmal.",
|
"ErrorAddingXmlTvFile": "Fehler beim Zugriff auf die XmlTV Datei. Stelle bitte sicher, dass die Datei existiert und versuche es nochmal.",
|
||||||
"OptionAutomaticallyGroupSeries": "Vermische Serieninhalte, die in verschiedenen Ordnern abgelegt sind.",
|
"OptionAutomaticallyGroupSeries": "Vermische Serieninhalte, die in verschiedenen Ordnern abgelegt sind.",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "Wenn aktiviert, werden Inhalte einer Serie in verschiedenen Ordnern innerhalb einer Bibliothek als eine Serie angezeigt.",
|
"OptionAutomaticallyGroupSeriesHelp": "Wenn aktiviert, werden Inhalte einer Serie in verschiedenen Ordnern innerhalb einer Bibliothek als eine Serie angezeigt.",
|
||||||
"ErrorReachingEmbyConnect": "Fehler bei der Verbindung zum Emby Connect Server. Stelle bitte sicher, dass du \u00fcber eine aktive Internetverbindung verf\u00fcgst und versuche es erneut."
|
"ErrorReachingEmbyConnect": "Fehler bei der Verbindung zum Emby Connect Server. Stelle bitte sicher, dass du \u00fcber eine aktive Internetverbindung verf\u00fcgst und versuche es erneut.",
|
||||||
|
"WhenDidYouPurchaseApp": "Wann hast du die App urspr\u00fcnglich bestellt?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2",
|
"ButtonSignIn": "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2",
|
||||||
"TitleSignIn": "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2",
|
"TitleSignIn": "\u0395\u03af\u03c3\u03bf\u03b4\u03bf\u03c2",
|
||||||
"HeaderPleaseSignIn": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ad\u03bb\u03b8\u03b5\u03c4\u03b5",
|
"HeaderPleaseSignIn": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ad\u03bb\u03b8\u03b5\u03c4\u03b5",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
||||||
|
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "Hubo un error accediendo al archivo XmlTV. Por favor aseg\u00farese de que el archivo existe e intente de nuevo.",
|
"ErrorAddingXmlTvFile": "Hubo un error accediendo al archivo XmlTV. Por favor aseg\u00farese de que el archivo existe e intente de nuevo.",
|
||||||
"OptionAutomaticallyGroupSeries": "Fusionar autom\u00e1ticamente series esparcidas a trav\u00e9s de m\u00faltiples carpetas.",
|
"OptionAutomaticallyGroupSeries": "Fusionar autom\u00e1ticamente series esparcidas a trav\u00e9s de m\u00faltiples carpetas.",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "Si se habilita, las series que se reparten a trav\u00e9s de m\u00faltiples carpetas dentro de esta biblioteca ser\u00e1n fusionadas en una sola serie.",
|
"OptionAutomaticallyGroupSeriesHelp": "Si se habilita, las series que se reparten a trav\u00e9s de m\u00faltiples carpetas dentro de esta biblioteca ser\u00e1n fusionadas en una sola serie.",
|
||||||
"ErrorReachingEmbyConnect": "Hubo un error al tratar de contactar el servidor de Emby Connect. Por favor aseg\u00farese de que tiene una conexi\u00f3n activa de internet e intente de nuevo."
|
"ErrorReachingEmbyConnect": "Hubo un error al tratar de contactar el servidor de Emby Connect. Por favor aseg\u00farese de que tiene una conexi\u00f3n activa de internet e intente de nuevo.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -401,7 +401,7 @@
|
||||||
"LabelSeasonZeroDisplayName": "Nombre de la Temporada 0:",
|
"LabelSeasonZeroDisplayName": "Nombre de la Temporada 0:",
|
||||||
"LabelEnableRealtimeMonitor": "Activar monitoreo en tiempo real",
|
"LabelEnableRealtimeMonitor": "Activar monitoreo en tiempo real",
|
||||||
"LabelEnableRealtimeMonitorHelp": "Los cambios se procesar\u00e1n inmediatamente, en sistemas de archivo que lo soporten.",
|
"LabelEnableRealtimeMonitorHelp": "Los cambios se procesar\u00e1n inmediatamente, en sistemas de archivo que lo soporten.",
|
||||||
"ButtonScanLibrary": "Escanear Librer\u00eda",
|
"ButtonScanLibrary": "Escanear biblioteca",
|
||||||
"HeaderNumberOfPlayers": "Reproductores",
|
"HeaderNumberOfPlayers": "Reproductores",
|
||||||
"OptionAnyNumberOfPlayers": "Cualquiera",
|
"OptionAnyNumberOfPlayers": "Cualquiera",
|
||||||
"Option1Player": "1+",
|
"Option1Player": "1+",
|
||||||
|
@ -1317,7 +1317,7 @@
|
||||||
"ButtonReenable": "Reactivar",
|
"ButtonReenable": "Reactivar",
|
||||||
"SyncJobItemStatusSyncedMarkForRemoval": "Marcado para quitar",
|
"SyncJobItemStatusSyncedMarkForRemoval": "Marcado para quitar",
|
||||||
"LabelAbortedByServerShutdown": "(Abortado por cierre del servidor)",
|
"LabelAbortedByServerShutdown": "(Abortado por cierre del servidor)",
|
||||||
"LabelScheduledTaskLastRan": "\u00daltima ejecuci\u00f3n {0}, teniendo {1}.",
|
"LabelScheduledTaskLastRan": "\u00daltima ejecuci\u00f3n {0}, tardando {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Eliminar tarea de activaci\u00f3n",
|
"HeaderDeleteTaskTrigger": "Eliminar tarea de activaci\u00f3n",
|
||||||
"MessageDeleteTaskTrigger": "\u00bfEst\u00e1 seguro que desea eliminar esta tarea de activaci\u00f3n?",
|
"MessageDeleteTaskTrigger": "\u00bfEst\u00e1 seguro que desea eliminar esta tarea de activaci\u00f3n?",
|
||||||
"MessageNoPluginsInstalled": "No tiene plugins instalados.",
|
"MessageNoPluginsInstalled": "No tiene plugins instalados.",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "Ha habido un error accediendo al archivo XmlTV. Por favor, aseg\u00farate de que existe e int\u00e9ntalo de nuevo.",
|
"ErrorAddingXmlTvFile": "Ha habido un error accediendo al archivo XmlTV. Por favor, aseg\u00farate de que existe e int\u00e9ntalo de nuevo.",
|
||||||
"OptionAutomaticallyGroupSeries": "Combinar autom\u00e1ticamente series que se distribuyen en varias carpetas",
|
"OptionAutomaticallyGroupSeries": "Combinar autom\u00e1ticamente series que se distribuyen en varias carpetas",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "Si est\u00e1 activada, las series que se distribuyen entre varias carpetas dentro de esta biblioteca se fusionar\u00e1n autom\u00e1ticamente en una sola serie.",
|
"OptionAutomaticallyGroupSeriesHelp": "Si est\u00e1 activada, las series que se distribuyen entre varias carpetas dentro de esta biblioteca se fusionar\u00e1n autom\u00e1ticamente en una sola serie.",
|
||||||
"ErrorReachingEmbyConnect": "Ha habido un error accediendo al servidor Emby Connect. Por favor, aseg\u00farate de que tienes conexi\u00f3n a internet e int\u00e9ntalo de nuevo."
|
"ErrorReachingEmbyConnect": "Ha habido un error accediendo al servidor Emby Connect. Por favor, aseg\u00farate de que tienes conexi\u00f3n a internet e int\u00e9ntalo de nuevo.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -24,13 +24,13 @@
|
||||||
"LabelAddConnectSupporterHelp": "Pour ajouter un utilisateur qui n'est pas dans la liste, vous devrez d'abord connecter son compte \u00e0 Emby Connect depuis son profil.",
|
"LabelAddConnectSupporterHelp": "Pour ajouter un utilisateur qui n'est pas dans la liste, vous devrez d'abord connecter son compte \u00e0 Emby Connect depuis son profil.",
|
||||||
"LabelPinCode": "Code PIN\u00a0:",
|
"LabelPinCode": "Code PIN\u00a0:",
|
||||||
"OptionHideWatchedContentFromLatestMedia": "Cacher le contenu d\u00e9j\u00e0 vu des derniers m\u00e9dias",
|
"OptionHideWatchedContentFromLatestMedia": "Cacher le contenu d\u00e9j\u00e0 vu des derniers m\u00e9dias",
|
||||||
"DeleteMedia": "Delete media",
|
"DeleteMedia": "Supprimer le media",
|
||||||
"HeaderSync": "Synchroniser",
|
"HeaderSync": "Synchroniser",
|
||||||
"ButtonOk": "OK",
|
"ButtonOk": "OK",
|
||||||
"ButtonCancel": "Annuler",
|
"ButtonCancel": "Annuler",
|
||||||
"ButtonExit": "Quitter",
|
"ButtonExit": "Quitter",
|
||||||
"ButtonNew": "Nouveau",
|
"ButtonNew": "Nouveau",
|
||||||
"OptionDev": "Dev (Unstable)",
|
"OptionDev": "Dev",
|
||||||
"OptionBeta": "Beta",
|
"OptionBeta": "Beta",
|
||||||
"HeaderTaskTriggers": "D\u00e9clencheurs de t\u00e2ches",
|
"HeaderTaskTriggers": "D\u00e9clencheurs de t\u00e2ches",
|
||||||
"HeaderTV": "TV",
|
"HeaderTV": "TV",
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
"HeaderPaths": "Chemins",
|
"HeaderPaths": "Chemins",
|
||||||
"CategorySync": "Synchroniser",
|
"CategorySync": "Synchroniser",
|
||||||
"TabPlaylist": "Liste de lecture",
|
"TabPlaylist": "Liste de lecture",
|
||||||
"HeaderInstantMix": "Instant Mix",
|
"HeaderInstantMix": "Mix instantan\u00e9",
|
||||||
"HeaderEasyPinCode": "Easy Pin Code",
|
"HeaderEasyPinCode": "Easy Pin Code",
|
||||||
"HeaderInstalledServices": "Services install\u00e9s",
|
"HeaderInstalledServices": "Services install\u00e9s",
|
||||||
"HeaderAvailableServices": "Services disponibles",
|
"HeaderAvailableServices": "Services disponibles",
|
||||||
|
@ -296,7 +296,7 @@
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
||||||
"ButtonSelectDirectory": "Select Directory",
|
"ButtonSelectDirectory": "Select Directory",
|
||||||
"LabelCachePath": "Cache path:",
|
"LabelCachePath": "Cache path:",
|
||||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
"DefaultMetadataLangaugeDescription": "Voici les options par d\u00e9faut. Elles peuvent \u00eatre personalis\u00e9es pour chaque m\u00e9diath\u00e8que",
|
||||||
"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": "Chemin d'enregistrement par d\u00e9faut",
|
"LabelRecordingPath": "Chemin d'enregistrement par d\u00e9faut",
|
||||||
"LabelMovieRecordingPath": "Emplacement des films (optionnel)",
|
"LabelMovieRecordingPath": "Emplacement des films (optionnel)",
|
||||||
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred download language:",
|
"LabelMetadataDownloadLanguage": "Langue de t\u00e9l\u00e9chargement des m\u00e9tadonn\u00e9es:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -333,10 +333,10 @@
|
||||||
"TabFavorites": "Favorites",
|
"TabFavorites": "Favorites",
|
||||||
"TabMyLibrary": "My Library",
|
"TabMyLibrary": "My Library",
|
||||||
"ButtonCancelRecording": "Cancel Recording",
|
"ButtonCancelRecording": "Cancel Recording",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "D\u00e9marrer lorsque cela est possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Arr\u00eater lorsque cela est possible :",
|
||||||
"MinutesBefore": "minutes before",
|
"MinutesBefore": "minutes avant",
|
||||||
"MinutesAfter": "minutes after",
|
"MinutesAfter": "minutes apr\u00e8s",
|
||||||
"HeaderWhatsOnTV": "What's On",
|
"HeaderWhatsOnTV": "What's On",
|
||||||
"TabSettings": "Settings",
|
"TabSettings": "Settings",
|
||||||
"ButtonRefreshGuideData": "Rafra\u00eechir les donn\u00e9es du guide",
|
"ButtonRefreshGuideData": "Rafra\u00eechir les donn\u00e9es du guide",
|
||||||
|
@ -591,16 +591,16 @@
|
||||||
"ButtonSearch": "Search",
|
"ButtonSearch": "Search",
|
||||||
"ButtonSettings": "Settings",
|
"ButtonSettings": "Settings",
|
||||||
"Settings": "Param\u00e8tres",
|
"Settings": "Param\u00e8tres",
|
||||||
"Mute": "Mute",
|
"Mute": "Muet",
|
||||||
"Unmute": "Unmute",
|
"Unmute": "Non-muet",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "Sous-titres",
|
||||||
"Audio": "Audio",
|
"Audio": "Audio",
|
||||||
"Rewind": "Rewind",
|
"Rewind": "Rembobiner",
|
||||||
"Fullscreen": "Full screen",
|
"Fullscreen": "Plein \u00e9cran",
|
||||||
"ExitFullscreen": "Exit full screen",
|
"ExitFullscreen": "Quitter le plein \u00e9cran",
|
||||||
"PictureInPicture": "Picture in picture",
|
"PictureInPicture": "Image dans l'image",
|
||||||
"PlayOnAnotherDevice": "Play on another device",
|
"PlayOnAnotherDevice": "Lire sur un autre appareil",
|
||||||
"FastForward": "Fast-forward",
|
"FastForward": "Avancer",
|
||||||
"ButtonTakeScreenshot": "Capture Screenshot",
|
"ButtonTakeScreenshot": "Capture Screenshot",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "Now Playing",
|
"TabNowPlaying": "Now Playing",
|
||||||
|
@ -803,7 +803,7 @@
|
||||||
"LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
|
"LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
|
||||||
"LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
|
"LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
|
||||||
"LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
|
"LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
|
||||||
"OptionDisplayChannelsInline": "Display channels inline within my views",
|
"OptionDisplayChannelsInline": "Afficher les cha\u00eenes comme des dossiers de m\u00e9dias",
|
||||||
"OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
|
"OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
|
||||||
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
|
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
|
||||||
"LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
|
"LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
|
||||||
|
@ -922,8 +922,8 @@
|
||||||
"OptionOthers": "Others",
|
"OptionOthers": "Others",
|
||||||
"HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.",
|
"HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.",
|
||||||
"ViewTypeFolders": "Folders",
|
"ViewTypeFolders": "Folders",
|
||||||
"OptionDisplayFolderView": "Display a folder view to show plain media folders",
|
"OptionDisplayFolderView": "Afficher la vue du dossier pour montrer tous les dossiers multim\u00e9dias",
|
||||||
"OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.",
|
"OptionDisplayFolderViewHelp": "Si activ\u00e9, Emby apps affichera une cat\u00e9gorie de dossier \u00e0 c\u00f4t\u00e9 de votre m\u00e9diath\u00e8que. Ceci est utile si vous souhaitez voir tous vos dossiers multim\u00e9dias.",
|
||||||
"ViewTypeLiveTvRecordingGroups": "Recordings",
|
"ViewTypeLiveTvRecordingGroups": "Recordings",
|
||||||
"ViewTypeLiveTvChannels": "Cha\u00eenes",
|
"ViewTypeLiveTvChannels": "Cha\u00eenes",
|
||||||
"LabelEasyPinCode": "Easy pin code:",
|
"LabelEasyPinCode": "Easy pin code:",
|
||||||
|
@ -983,7 +983,7 @@
|
||||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||||
"LabelExternalPlayers": "External players:",
|
"LabelExternalPlayers": "External players:",
|
||||||
"LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
|
"LabelNativeExternalPlayersHelp": "Jouer les vid\u00e9os avec un lecteur externe.",
|
||||||
"HeaderSubtitleProfile": "Subtitle Profile",
|
"HeaderSubtitleProfile": "Subtitle Profile",
|
||||||
"HeaderSubtitleProfiles": "Subtitle Profiles",
|
"HeaderSubtitleProfiles": "Subtitle Profiles",
|
||||||
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
|
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
|
||||||
|
@ -1006,7 +1006,7 @@
|
||||||
"CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
|
"CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
|
||||||
"OptionTrailersFromMyMovies": "Include trailers from movies in my library",
|
"OptionTrailersFromMyMovies": "Include trailers from movies in my library",
|
||||||
"OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies",
|
"OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies",
|
||||||
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
|
"LabelLimitIntrosToUnwatchedContent": "Ne jouer que les trailers de contenu non-regard\u00e9",
|
||||||
"LabelEnableIntroParentalControl": "Enable smart parental control",
|
"LabelEnableIntroParentalControl": "Enable smart parental control",
|
||||||
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
|
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
|
||||||
"LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
|
"LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.",
|
||||||
|
@ -1027,8 +1027,8 @@
|
||||||
"TitleDevices": "Devices",
|
"TitleDevices": "Devices",
|
||||||
"TabCameraUpload": "Camera Upload",
|
"TabCameraUpload": "Camera Upload",
|
||||||
"TabDevices": "Devices",
|
"TabDevices": "Devices",
|
||||||
"HeaderLibrarySettings": "Library Settings",
|
"HeaderLibrarySettings": "Param\u00e8tres m\u00e9diath\u00e8que",
|
||||||
"HeaderChapterSettings": "Chapter Settings",
|
"HeaderChapterSettings": "Param\u00e8tres chapitres",
|
||||||
"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": "Camera upload path:",
|
||||||
|
@ -1110,7 +1110,7 @@
|
||||||
"HeaderPlayback": "Media Playback",
|
"HeaderPlayback": "Media Playback",
|
||||||
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
|
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
|
||||||
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
|
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
|
||||||
"OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding",
|
"OptionAllowVideoPlaybackRemuxing": "Autoriser la lecture vid\u00e9o n\u00e9cessitant une conversion sans r\u00e9encodage",
|
||||||
"OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
|
"OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
|
||||||
"TabStreaming": "Streaming",
|
"TabStreaming": "Streaming",
|
||||||
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
|
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
|
||||||
|
@ -1195,9 +1195,9 @@
|
||||||
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
|
"AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
|
||||||
"HeaderSetupTVGuide": "Setup TV Guide",
|
"HeaderSetupTVGuide": "Setup TV Guide",
|
||||||
"LabelDataProvider": "Data provider:",
|
"LabelDataProvider": "Data provider:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries",
|
"OptionSendRecordingsToAutoOrganize": "Organise automatiquement les enregistrements dans des dossiers existants dans d'autres m\u00e9diath\u00e8ques",
|
||||||
"HeaderDefaultRecordingSettings": "Default Recording Settings",
|
"HeaderDefaultRecordingSettings": "Options d'enregistrement par d\u00e9faut",
|
||||||
"OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.",
|
"OptionEnableRecordingSubfolders": "Cr\u00e9er des sous-dossiers pour cat\u00e9gories, comme Sports, Enfants, etc...",
|
||||||
"HeaderSubtitles": "Sous-titres",
|
"HeaderSubtitles": "Sous-titres",
|
||||||
"HeaderVideos": "Videos",
|
"HeaderVideos": "Videos",
|
||||||
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
"LabelHardwareAccelerationType": "Hardware acceleration:",
|
||||||
|
@ -1219,7 +1219,7 @@
|
||||||
"FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
|
"FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
|
||||||
"FileExtension": "File extension",
|
"FileExtension": "File extension",
|
||||||
"OptionPlayNextEpisodeAutomatically": "Play next episode automatically",
|
"OptionPlayNextEpisodeAutomatically": "Play next episode automatically",
|
||||||
"OptionDownloadImagesInAdvance": "Download all images in advance",
|
"OptionDownloadImagesInAdvance": "T\u00e9l\u00e9charger les images \u00e0 l'avance",
|
||||||
"SettingsSaved": "Settings saved.",
|
"SettingsSaved": "Settings saved.",
|
||||||
"OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.",
|
"OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.",
|
||||||
"Users": "Users",
|
"Users": "Users",
|
||||||
|
@ -1310,7 +1310,7 @@
|
||||||
"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.",
|
||||||
"MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.",
|
"MessageDownloadsFound": "Pas de t\u00e9l\u00e9chargements hors-ligne. Fait que vos m\u00e9dias soient disponibles en mode hors-ligne en cliquant sur 'Rendre disponible hors-ligne' dans l'application",
|
||||||
"HeaderSelectDevices": "Select Devices",
|
"HeaderSelectDevices": "Select Devices",
|
||||||
"ButtonCancelItem": "Cancel item",
|
"ButtonCancelItem": "Cancel item",
|
||||||
"ButtonQueueForRetry": "Queue for retry",
|
"ButtonQueueForRetry": "Queue for retry",
|
||||||
|
@ -1652,7 +1652,7 @@
|
||||||
"MediaInfoLongitude": "Longitude",
|
"MediaInfoLongitude": "Longitude",
|
||||||
"MediaInfoShutterSpeed": "Shutter speed",
|
"MediaInfoShutterSpeed": "Shutter speed",
|
||||||
"MediaInfoSoftware": "Software",
|
"MediaInfoSoftware": "Software",
|
||||||
"HeaderMoreLikeThis": "More Like This",
|
"HeaderMoreLikeThis": "Similaires",
|
||||||
"HeaderMovies": "Movies",
|
"HeaderMovies": "Movies",
|
||||||
"HeaderAlbums": "Albums",
|
"HeaderAlbums": "Albums",
|
||||||
"HeaderGames": "Games",
|
"HeaderGames": "Games",
|
||||||
|
@ -1701,7 +1701,7 @@
|
||||||
"HeaderThankYou": "Thank You",
|
"HeaderThankYou": "Thank You",
|
||||||
"LabelFullReview": "Full review:",
|
"LabelFullReview": "Full review:",
|
||||||
"ReleaseYearValue": "Ann\u00e9e de parution : {0}",
|
"ReleaseYearValue": "Ann\u00e9e de parution : {0}",
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Date de diffusion originelle: {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",
|
||||||
|
@ -1762,7 +1762,7 @@
|
||||||
"HeaderCancelSyncJob": "Cancel Sync",
|
"HeaderCancelSyncJob": "Cancel Sync",
|
||||||
"CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?",
|
"CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?",
|
||||||
"LabelQuality": "Quality:",
|
"LabelQuality": "Quality:",
|
||||||
"BookLibraryHelp": "Audio and text books are supported",
|
"BookLibraryHelp": "Compatibilit\u00e9 Audio et livres",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
|
"MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
|
||||||
"SyncJobItemStatusQueued": "Queued",
|
"SyncJobItemStatusQueued": "Queued",
|
||||||
|
@ -1798,7 +1798,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.",
|
||||||
"MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.",
|
"MessageThankYouForConnectSignUpNoValidation": "Merci de vous \u00eatre inscrit \u00e0 Emby Connect! Vous devez maintenant vous connecter avec vos informations Emby Connect.",
|
||||||
"ButtonShare": "Share",
|
"ButtonShare": "Share",
|
||||||
"HeaderConfirm": "Confirm",
|
"HeaderConfirm": "Confirm",
|
||||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||||
|
@ -1843,7 +1843,7 @@
|
||||||
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
|
||||||
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
|
||||||
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
"ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.",
|
||||||
"ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.",
|
"ErrorAddingEmbyConnectAccount3": "Le compte Emby est d\u00e9j\u00e0 li\u00e9 \u00e0 un utilisateurs local existant. Un compte Emby peut seulement \u00eatre li\u00e9 \u00e0 un utilisateur \u00e0 la fois.",
|
||||||
"HeaderFavoriteArtists": "Favorite Artists",
|
"HeaderFavoriteArtists": "Favorite Artists",
|
||||||
"HeaderFavoriteSongs": "Favorite Songs",
|
"HeaderFavoriteSongs": "Favorite Songs",
|
||||||
"HeaderConfirmPluginInstallation": "Confirm Plugin Installation",
|
"HeaderConfirmPluginInstallation": "Confirm Plugin Installation",
|
||||||
|
@ -1878,8 +1878,8 @@
|
||||||
"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.",
|
||||||
"OptionConvertRecordingPreserveAudio": "Pr\u00e9server l'audio originel lors de la conversion des enregistrements",
|
"OptionConvertRecordingPreserveAudio": "Pr\u00e9server l'audio originel lors de la conversion des enregistrements",
|
||||||
"OptionConvertRecordingPreserveAudioHelp": "Cela produira des sons de meilleurs qualit\u00e9, mais peut n\u00e9cessiter des transcodages pendant la lecture sur certains p\u00e9riph\u00e9riques.",
|
"OptionConvertRecordingPreserveAudioHelp": "Cela produira des sons de meilleurs qualit\u00e9, mais peut n\u00e9cessiter des transcodages pendant la lecture sur certains p\u00e9riph\u00e9riques.",
|
||||||
"OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings",
|
"OptionConvertRecordingPreserveVideo": "Pr\u00e9server la vid\u00e9o originelle pendant la conversion d'enregistrements",
|
||||||
"OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.",
|
"OptionConvertRecordingPreserveVideoHelp": "Cela peut am\u00e9liorer la qualit\u00e9 vid\u00e9o mais n\u00e9cessitera un transcodage durant la lecture sur certains appareils.",
|
||||||
"AddItemToCollectionHelp": "Ajouter des items aux collections en les recherchant et en utilisant leurs menus contextuels.",
|
"AddItemToCollectionHelp": "Ajouter des items aux collections en les recherchant et en utilisant leurs menus contextuels.",
|
||||||
"HeaderHealthMonitor": "Moniteur de sant\u00e9",
|
"HeaderHealthMonitor": "Moniteur de sant\u00e9",
|
||||||
"HealthMonitorNoAlerts": "Il n'y a pas d'alertes active.",
|
"HealthMonitorNoAlerts": "Il n'y a pas d'alertes active.",
|
||||||
|
@ -1893,72 +1893,73 @@
|
||||||
"XmlTvKidsCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s comme des programmes pour enfants. S\u00e9parez les champs par '|'.",
|
"XmlTvKidsCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s comme des programmes pour enfants. S\u00e9parez les champs par '|'.",
|
||||||
"LabelMovieCategories": "Cat\u00e9gorie films :",
|
"LabelMovieCategories": "Cat\u00e9gorie films :",
|
||||||
"XmlTvMovieCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s comme des films. S\u00e9parez les champs par '|'.",
|
"XmlTvMovieCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s comme des films. S\u00e9parez les champs par '|'.",
|
||||||
"XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.",
|
"XmlTvPathHelp": "Un chemin vers un fichier tv xml. Emby lira ce fichier et v\u00e9rifiera les mises \u00e0 jours r\u00e9guli\u00e8rement. Vous \u00eates responsables de la cr\u00e9ation et mise \u00e0 jour de ce fichier.",
|
||||||
"LabelBindToLocalNetworkAddress": "Lier \u00e0 l'adresse de r\u00e9seau local :",
|
"LabelBindToLocalNetworkAddress": "Lier \u00e0 l'adresse de r\u00e9seau local :",
|
||||||
"LabelBindToLocalNetworkAddressHelp": "Facultatif. Remplacer l'adresse IP locale pour lui lier le serveur http. Si laiss\u00e9 vide, le serveur va se lier \u00e0 toutes les adresses disponibles. La modification de cette valeur n\u00e9cessite le red\u00e9marrage du Serveur Emby.",
|
"LabelBindToLocalNetworkAddressHelp": "Facultatif. Remplacer l'adresse IP locale pour lui lier le serveur http. Si laiss\u00e9 vide, le serveur va se lier \u00e0 toutes les adresses disponibles. La modification de cette valeur n\u00e9cessite le red\u00e9marrage du Serveur Emby.",
|
||||||
"TitleHostingSettings": "Hosting Settings",
|
"TitleHostingSettings": "Options d'h\u00e9bergement",
|
||||||
"SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.",
|
"SettingsWarning": "Changer ces valeurs peut causer une instabilit\u00e9 ou des soucis de connexion. Si vous avez ces probl\u00e8mes, nous recommandons de remettre ceux-ci par d\u00e9faut.",
|
||||||
"MapChannels": "Map Channels",
|
"MapChannels": "Ajouter les cha\u00eenes",
|
||||||
"LabelffmpegPath": "FFmpeg chemin:",
|
"LabelffmpegPath": "FFmpeg chemin:",
|
||||||
"LabelffmpegVersion": "FFmpeg version:",
|
"LabelffmpegVersion": "FFmpeg version:",
|
||||||
"LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.",
|
"LabelffmpegPathHelp": "Le chemin vers le fichier d'application ffmpeg, ou le dossier le contenant.",
|
||||||
"SetupFFmpeg": "Setup FFmpeg",
|
"SetupFFmpeg": "Installer FFmpeg",
|
||||||
"SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
|
"SetupFFmpegHelp": "Emby peut demander \u00e0 une m\u00e9diath\u00e8que ou application de convertir certains types de fichiers. Il y a diff\u00e9rentes applications disponibles. Cependant, Emby a \u00e9t\u00e9 con\u00e7u pour fonctionner avec ffmpeg. Emby n'est pas li\u00e9 \u00e0 ffmpeg, ses propri\u00e9taires, son code ou sa distribution.",
|
||||||
"EnterFFmpegLocation": "Enter FFmpeg path",
|
"EnterFFmpegLocation": "Entrer le chemin ffmpeg",
|
||||||
"DownloadFFmpeg": "T\u00e9l\u00e9charger FFmpeg",
|
"DownloadFFmpeg": "T\u00e9l\u00e9charger FFmpeg",
|
||||||
"FFmpegSuggestedDownload": "T\u00e9l\u00e9chargement sugg\u00e9r\u00e9 : {0}",
|
"FFmpegSuggestedDownload": "T\u00e9l\u00e9chargement sugg\u00e9r\u00e9 : {0}",
|
||||||
"UnzipFFmpegFile": "D\u00e9compressez le fichier t\u00e9l\u00e9charg\u00e9 dans le dossier de votre choix.",
|
"UnzipFFmpegFile": "D\u00e9compressez le fichier t\u00e9l\u00e9charg\u00e9 dans le dossier de votre choix.",
|
||||||
"MarkFFmpegExec": "If you are running Linux or OSX, you will need to locate the ffmpeg and ffprobe files and mark them as executable. This is needed to grant Emby permission to execute them.",
|
"MarkFFmpegExec": "Si vous utilisez Linux ou OS X, vous aurez besoin de trouver l'emplacement de ffmpeg et ffprobe et de les rendre \u00e9xecutables. Ceci est n\u00e9cessaire pour donner \u00e0 Emby la permission de les utiliser.",
|
||||||
"OptionUseSystemInstalledVersion": "Utilisez la version du syst\u00e8me install\u00e9",
|
"OptionUseSystemInstalledVersion": "Utilisez la version du syst\u00e8me install\u00e9",
|
||||||
"OptionUseMyCustomVersion": "Utilisez une version personnalis\u00e9e",
|
"OptionUseMyCustomVersion": "Utilisez une version personnalis\u00e9e",
|
||||||
"FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.",
|
"FFmpegSavePathNotFound": "Nous sommes incapables de localiser FFmpeg selon le chemin que vous avez entr\u00e9. FFprobe est aussi n\u00e9cessaire et doit r\u00e9sider dans le m\u00eame dossier. Ces composants sont normalement pr\u00e9sents au m\u00eame endroit. Veuillez v\u00e9rifier le chemin et recommencer",
|
||||||
"XmlTvPremiere": "Par d\u00e9faut, Emby importera {0} heures de donn\u00e9es du guide. Une importation de donn\u00e9es illimit\u00e9 n\u00e9cessite un abonnement Emby Premiere actif.",
|
"XmlTvPremiere": "Par d\u00e9faut, Emby importera {0} heures de donn\u00e9es du guide. Une importation de donn\u00e9es illimit\u00e9 n\u00e9cessite un abonnement Emby Premiere actif.",
|
||||||
"MoreFromValue": "Plus de {0}",
|
"MoreFromValue": "Plus de {0}",
|
||||||
"OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.",
|
"OptionSaveMetadataAsHiddenHelp": "Ce changement sera appliqu\u00e9 aux nouvelles m\u00e9tadonn\u00e9es dans le futur. Les m\u00e9tadonn\u00e9es des fichiers actuels seront mises \u00e0 jour la prochaine fois qu'elles seront sauvegard\u00e9es par Emby Server.",
|
||||||
"EnablePhotos": "Activer les photos",
|
"EnablePhotos": "Activer les photos",
|
||||||
"EnablePhotosHelp": "Les photos seront d\u00e9tect\u00e9es et affich\u00e9es aux c\u00f4t\u00e9s des autres fichiers multim\u00e9dias.",
|
"EnablePhotosHelp": "Les photos seront d\u00e9tect\u00e9es et affich\u00e9es aux c\u00f4t\u00e9s des autres fichiers multim\u00e9dias.",
|
||||||
"MakeAvailableOffline": "Rendre disponible hors connexion",
|
"MakeAvailableOffline": "Rendre disponible hors connexion",
|
||||||
"ConfirmRemoveDownload": "Supprimer le t\u00e9l\u00e9chargement ?",
|
"ConfirmRemoveDownload": "Supprimer le t\u00e9l\u00e9chargement ?",
|
||||||
"RemoveDownload": "Remove download",
|
"RemoveDownload": "Supprimer le t\u00e9l\u00e9chargement",
|
||||||
"SyncToOtherDevices": "Synchroniser \u00e0 d'autres appareils",
|
"SyncToOtherDevices": "Synchroniser \u00e0 d'autres appareils",
|
||||||
"ManageOfflineDownloads": "Manage offline downloads",
|
"ManageOfflineDownloads": "G\u00e9rer les t\u00e9l\u00e9chargements hors-ligne",
|
||||||
"MessageDownloadScheduled": "Download scheduled",
|
"MessageDownloadScheduled": "T\u00e9l\u00e9chargement planifi\u00e9",
|
||||||
"RememberMe": "Remember me",
|
"RememberMe": "Se souvenir de moi",
|
||||||
"HeaderOfflineSync": "Offline Sync",
|
"HeaderOfflineSync": "Synchro hors-ligne",
|
||||||
"LabelMaxAudioFileBitrate": "Max audio file bitrate:",
|
"LabelMaxAudioFileBitrate": "Bitrate max pour fichier audio",
|
||||||
"LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.",
|
"LabelMaxAudioFileBitrateHelp": "Les fichiers audio avec un bitrate \u00e9lev\u00e9 seront converties par Emby Server. S\u00e9lectionner une valeur plus \u00e9lev\u00e9e am\u00e9liorera la qualit\u00e9 tandis qu'une valeur plus faible r\u00e9duira l'espace local utilis\u00e9 par ces fichiers",
|
||||||
"LabelVaapiDevice": "VA API Device:",
|
"LabelVaapiDevice": "P\u00e9riph\u00e9rique VA API:",
|
||||||
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
|
"LabelVaapiDeviceHelp": "Ceci est le module d'encodage utilis\u00e9 pour l'acc\u00e9l\u00e9ration mat\u00e9rielle.",
|
||||||
"HowToConnectFromEmbyApps": "Comment se connecter \u00e0 partir d'applications Emby",
|
"HowToConnectFromEmbyApps": "Comment se connecter \u00e0 partir d'applications Emby",
|
||||||
"MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.",
|
"MessageFolderRipPlaybackExperimental": "La compatibilit\u00e9 de lecture de dossiers RIPs et fichiers ISOs dans cette application est exp\u00e9rimentale. Pour de meilleurs r\u00e9sultats, essayez une application Emby qui est compatible avec ces formats nativement, ou utilisez des formats standards.",
|
||||||
"OptionExtractChapterImage": "Enable chapter image extraction",
|
"OptionExtractChapterImage": "Activer l'extraction d'image de chapitres",
|
||||||
"Downloads": "T\u00e9l\u00e9chargements",
|
"Downloads": "T\u00e9l\u00e9chargements",
|
||||||
"LabelEnableDebugLogging": "Enable debug logging",
|
"LabelEnableDebugLogging": "Enable debug logging",
|
||||||
"OptionEnableExternalContentInSuggestions": "Enable external content in suggestions",
|
"OptionEnableExternalContentInSuggestions": "Activer la suggestion de contenu externe",
|
||||||
"OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.",
|
"OptionEnableExternalContentInSuggestionsHelp": "Autoriser les trailers internet et programmes TV en direct \u00e0 \u00eatre inclus dans le contenu sugg\u00e9r\u00e9.",
|
||||||
"LabelH264EncodingPreset": "H264 Encodage pr\u00e9d\u00e9fini :",
|
"LabelH264EncodingPreset": "H264 Encodage pr\u00e9d\u00e9fini :",
|
||||||
"H264EncodingPresetHelp": "Choisissez une valeur plus rapide pour am\u00e9liorer les performances, ou une valeur plus lente pour am\u00e9liorer la qualit\u00e9.",
|
"H264EncodingPresetHelp": "Choisissez une valeur plus rapide pour am\u00e9liorer les performances, ou une valeur plus lente pour am\u00e9liorer la qualit\u00e9.",
|
||||||
"LabelH264Crf": "H264 encodage CRF :",
|
"LabelH264Crf": "H264 encodage CRF :",
|
||||||
"H264CrfHelp": "Le facteur de taux constant (CRF) est le param\u00e8tre de qualit\u00e9 par d\u00e9faut pour l'encodeur x264. Vous pouvez d\u00e9finir une valeur comprise entre 0 et 51. Une valeur plus basse se traduirait par une meilleure qualit\u00e9 (au d\u00e9triment des tailles de fichier plus \u00e9lev\u00e9s). Les valeurs saines sont entre 18 et 28. La valeur par d\u00e9faut du x264 est 23, de sorte que vous pouvez l'utiliser comme un point de d\u00e9part.",
|
"H264CrfHelp": "Le facteur de taux constant (CRF) est le param\u00e8tre de qualit\u00e9 par d\u00e9faut pour l'encodeur x264. Vous pouvez d\u00e9finir une valeur comprise entre 0 et 51. Une valeur plus basse se traduirait par une meilleure qualit\u00e9 (au d\u00e9triment des tailles de fichier plus \u00e9lev\u00e9s). Les valeurs saines sont entre 18 et 28. La valeur par d\u00e9faut du x264 est 23, de sorte que vous pouvez l'utiliser comme un point de d\u00e9part.",
|
||||||
"Sports": "Sport",
|
"Sports": "Sport",
|
||||||
"HeaderForKids": "Pour enfants",
|
"HeaderForKids": "Pour enfants",
|
||||||
"HeaderRecordingGroups": "Recording Groups",
|
"HeaderRecordingGroups": "Groupes d'enregistrement",
|
||||||
"LabelConvertRecordingsTo": "Convertir les enregistrements en :",
|
"LabelConvertRecordingsTo": "Convertir les enregistrements en :",
|
||||||
"HeaderUpcomingOnTV": "Upcoming On TV",
|
"HeaderUpcomingOnTV": "\u00c0 venir sur la TV",
|
||||||
"LabelOptionalNetworkPath": "(Facultatif) Dossier r\u00e9seau partag\u00e9 :",
|
"LabelOptionalNetworkPath": "(Facultatif) Dossier r\u00e9seau partag\u00e9 :",
|
||||||
"LabelOptionalNetworkPathHelp": "Si ce dossier est partag\u00e9 sur votre r\u00e9seau, en fournissant le chemin d'acc\u00e8s du serveur, cela pourra permettre \u00e0 des applications Emby sur d'autres appareils, d'acc\u00e9der directement aux fichiers multim\u00e9dias, sans demander de transcodage.",
|
"LabelOptionalNetworkPathHelp": "Si ce dossier est partag\u00e9 sur votre r\u00e9seau, en fournissant le chemin d'acc\u00e8s du serveur, cela pourra permettre \u00e0 des applications Emby sur d'autres appareils, d'acc\u00e9der directement aux fichiers multim\u00e9dias, sans demander de transcodage.",
|
||||||
"ButtonPlayExternalPlayer": "Play with external player",
|
"ButtonPlayExternalPlayer": "Play with external player",
|
||||||
"NotScheduledToRecord": "Not scheduled to record",
|
"NotScheduledToRecord": "Enregistrement non planifi\u00e9",
|
||||||
"SynologyUpdateInstructions": "Pour installer la mise \u00e0 jour, connectez-vous \u00e0 votre DSM et allez dans le centre de paquets.",
|
"SynologyUpdateInstructions": "Pour installer la mise \u00e0 jour, connectez-vous \u00e0 votre DSM et allez dans le centre de paquets.",
|
||||||
"LatestFromLibrary": "Dernier {0}",
|
"LatestFromLibrary": "Dernier {0}",
|
||||||
"LabelMoviePrefix": "Movie prefix:",
|
"LabelMoviePrefix": "pr\u00e9fixe du film:",
|
||||||
"LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.",
|
"LabelMoviePrefixHelp": "Si un pr\u00e9fixe doit \u00eatre appliqu\u00e9 aux titres de films, entrez le ici pour laissez Emby s'en charger proprement.",
|
||||||
"HeaderRecordingPostProcessing": "Recording Post Processing",
|
"HeaderRecordingPostProcessing": "Post-processing de l'enregistrement",
|
||||||
"LabelPostProcessorArguments": "Post-processor command line arguments:",
|
"LabelPostProcessorArguments": "Arguments de ligne de commande du post-processeur:",
|
||||||
"LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.",
|
"LabelPostProcessorArgumentsHelp": "Utilisez {path} comme chemin vers le fichier d'enregistrement.",
|
||||||
"LabelPostProcessor": "Post-processing application:",
|
"LabelPostProcessor": "Application post-processing:",
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "Il y a eu une erreur d'acc\u00e8s du fichiers XmlTV. Veuillez vous assurer de son existence et r\u00e9essayez.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Fusionner automatiquement les s\u00e9ries pr\u00e9sentes dans des dossiers diff\u00e9rents",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "Si appliqu\u00e9e, cete option fusionnera les s\u00e9ries pr\u00e9sentes dans diff\u00e9rents dossiers de cette m\u00e9diath\u00e8que en une seule s\u00e9rie.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "Il y eu une erreur lors de la connexion avec le serveur Emby Connect. Veuillez vous assurer du status de votre connexion internet et recommencez.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Cl\u00e9 d'API personnelle :",
|
"LabelFanartApiKey": "Cl\u00e9 d'API personnelle :",
|
||||||
"LabelFanartApiKeyHelp": "Les requ\u00eates de fanart sans cl\u00e9 d'API personnelle renvoient des r\u00e9sultats approuv\u00e9s il y a plus de 7 jours. Avec une cl\u00e9 d'API personnelle, cette valeur descend \u00e0 48 heures, et si vous \u00eates aussi membre fanart VIP, cette valeur descendra encore plus, \u00e0 environ 10 minutes.",
|
"LabelFanartApiKeyHelp": "Les requ\u00eates de fanart sans cl\u00e9 d'API personnelle renvoient des r\u00e9sultats approuv\u00e9s il y a plus de 7 jours. Avec une cl\u00e9 d'API personnelle, cette valeur descend \u00e0 48 heures, et si vous \u00eates aussi membre fanart VIP, cette valeur descendra encore plus, \u00e0 environ 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "L'extraction d'images de chapitre permettra aux applications Emby d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources processeur et peut n\u00e9cessiter de nombreux gigaoctets de stockage. Il s'ex\u00e9cute quand des vid\u00e9os sont d\u00e9couvertes et \u00e9galement comme t\u00e2che planifi\u00e9e. La planification peut \u00eatre modifi\u00e9e dans les options du planificateur de tache. Il n'est pas conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che pendant les heures d'usage intensif.",
|
"ExtractChapterImagesHelp": "L'extraction d'images de chapitre permettra aux applications Emby d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources processeur et peut n\u00e9cessiter de nombreux gigaoctets de stockage. Il s'ex\u00e9cute quand des vid\u00e9os sont d\u00e9couvertes et \u00e9galement comme t\u00e2che planifi\u00e9e. La planification peut \u00eatre modifi\u00e9e dans les options du planificateur de tache. Il n'est pas conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che pendant les heures d'usage intensif.",
|
||||||
"LabelMetadataDownloadLanguage": "Langue pr\u00e9f\u00e9r\u00e9e pour le t\u00e9l\u00e9chargement des m\u00e9tadonn\u00e9es\u00a0:",
|
"LabelMetadataDownloadLanguage": "Langue pr\u00e9f\u00e9r\u00e9e pour les m\u00e9tadonn\u00e9es\u00a0:",
|
||||||
"ButtonSignIn": "Se connecter",
|
"ButtonSignIn": "Se connecter",
|
||||||
"TitleSignIn": "Se connecter",
|
"TitleSignIn": "Se connecter",
|
||||||
"HeaderPleaseSignIn": "Merci de vous identifier",
|
"HeaderPleaseSignIn": "Merci de vous identifier",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "Une erreur est survenue lors de l'acc\u00e8s au fichier XMLTV. Assurez-vous qu'il existe et r\u00e9essayez.",
|
"ErrorAddingXmlTvFile": "Une erreur est survenue lors de l'acc\u00e8s au fichier XMLTV. Assurez-vous qu'il existe et r\u00e9essayez.",
|
||||||
"OptionAutomaticallyGroupSeries": "Fusionner automatiquement les s\u00e9ries qui sont r\u00e9parties en plusieurs dossiers",
|
"OptionAutomaticallyGroupSeries": "Fusionner automatiquement les s\u00e9ries qui sont r\u00e9parties en plusieurs dossiers",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "Les s\u00e9ries qui sont r\u00e9parties en plusieurs dossiers dans la m\u00e9diath\u00e8que seront automatiquement fusionn\u00e9es en une seule s\u00e9rie.",
|
"OptionAutomaticallyGroupSeriesHelp": "Les s\u00e9ries qui sont r\u00e9parties en plusieurs dossiers dans la m\u00e9diath\u00e8que seront automatiquement fusionn\u00e9es en une seule s\u00e9rie.",
|
||||||
"ErrorReachingEmbyConnect": "Une erreur est survenue pendant la connexion au serveur Emby Connect. Veuillez vous assurer que vous avez une connexion internet active puis r\u00e9essayez."
|
"ErrorReachingEmbyConnect": "Une erreur est survenue pendant la connexion au serveur Emby Connect. Veuillez vous assurer que vous avez une connexion internet active puis r\u00e9essayez.",
|
||||||
|
"WhenDidYouPurchaseApp": "Quand avez-vous achet\u00e9 cette application initialement\u00a0?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Prefer\u00e1lt let\u00f6ltend\u0151 nyelv:",
|
"LabelMetadataDownloadLanguage": "Prefer\u00e1lt let\u00f6ltend\u0151 metaadat nyelv:",
|
||||||
"ButtonSignIn": "Bejelentkez\u00e9s",
|
"ButtonSignIn": "Bejelentkez\u00e9s",
|
||||||
"TitleSignIn": "Bejelentkez\u00e9s",
|
"TitleSignIn": "Bejelentkez\u00e9s",
|
||||||
"HeaderPleaseSignIn": "K\u00e9rlek jelentkezz be",
|
"HeaderPleaseSignIn": "K\u00e9rlek jelentkezz be",
|
||||||
|
@ -902,8 +902,8 @@
|
||||||
"PluginInstalledWithName": "{0} telep\u00edtve",
|
"PluginInstalledWithName": "{0} telep\u00edtve",
|
||||||
"PluginUpdatedWithName": "{0} friss\u00edtve",
|
"PluginUpdatedWithName": "{0} friss\u00edtve",
|
||||||
"PluginUninstalledWithName": "{0} elt\u00e1vol\u00edtva",
|
"PluginUninstalledWithName": "{0} elt\u00e1vol\u00edtva",
|
||||||
"UserOnlineFromDevice": "{0} bejelentkezett innen: {1}",
|
"UserOnlineFromDevice": "{0} bejelentkezett innen {1}",
|
||||||
"UserOfflineFromDevice": "{0} kijelentkezett innen: {1}",
|
"UserOfflineFromDevice": "{0} kijelentkezett innen {1}",
|
||||||
"LabelRunningTimeValue": "Fut\u00e1si id\u0151: {0}",
|
"LabelRunningTimeValue": "Fut\u00e1si id\u0151: {0}",
|
||||||
"LabelIpAddressValue": "IP c\u00edm: {0}",
|
"LabelIpAddressValue": "IP c\u00edm: {0}",
|
||||||
"UserLockedOutWithName": "A k\u00f6vetkez\u0151 felhaszn\u00e1l\u00f3 tiltva {0}",
|
"UserLockedOutWithName": "A k\u00f6vetkez\u0151 felhaszn\u00e1l\u00f3 tiltva {0}",
|
||||||
|
@ -1415,7 +1415,7 @@
|
||||||
"MessageConfirmShutdown": "Biztosan le akarod \u00e1ll\u00edtani az Emby Szervert?",
|
"MessageConfirmShutdown": "Biztosan le akarod \u00e1ll\u00edtani az Emby Szervert?",
|
||||||
"ValueItemCount": "{0} item",
|
"ValueItemCount": "{0} item",
|
||||||
"ValueItemCountPlural": "{0} items",
|
"ValueItemCountPlural": "{0} items",
|
||||||
"NewVersionOfSomethingAvailable": "Egy \u00fajabb verzi\u00f3 {0} el\u00e9rhet\u0151!",
|
"NewVersionOfSomethingAvailable": "Egy \u00fajabb {0} verzi\u00f3 \u00e9rhet\u0151 el!",
|
||||||
"VersionXIsAvailableForDownload": "{0} verzi\u00f3 el\u00e9rhet\u0151 let\u00f6lt\u00e9sre.",
|
"VersionXIsAvailableForDownload": "{0} verzi\u00f3 el\u00e9rhet\u0151 let\u00f6lt\u00e9sre.",
|
||||||
"LabelVersionNumber": "Verzi\u00f3 {0}",
|
"LabelVersionNumber": "Verzi\u00f3 {0}",
|
||||||
"LabelPlayMethodTranscoding": "Transcoding",
|
"LabelPlayMethodTranscoding": "Transcoding",
|
||||||
|
@ -1521,7 +1521,7 @@
|
||||||
"ButtonAudioTracks": "Audi\u00f3 S\u00e1vok",
|
"ButtonAudioTracks": "Audi\u00f3 S\u00e1vok",
|
||||||
"ButtonQuality": "Min\u0151s\u00e9g",
|
"ButtonQuality": "Min\u0151s\u00e9g",
|
||||||
"HeaderNotifications": "Notifications",
|
"HeaderNotifications": "Notifications",
|
||||||
"HeaderSelectPlayer": "V\u00e1lassz lej\u00e1tsz\u00f3t: ",
|
"HeaderSelectPlayer": "Lej\u00e1tsz\u00f3",
|
||||||
"HeaderVideoError": "Vide\u00f3 Hiba",
|
"HeaderVideoError": "Vide\u00f3 Hiba",
|
||||||
"ButtonViewSeriesRecording": "View series recording",
|
"ButtonViewSeriesRecording": "View series recording",
|
||||||
"HeaderSpecials": "Speci\u00e1lis",
|
"HeaderSpecials": "Speci\u00e1lis",
|
||||||
|
@ -1777,7 +1777,7 @@
|
||||||
"EmbyIntroDownloadMessage": "To download and install the free Emby Server visit {0}.",
|
"EmbyIntroDownloadMessage": "To download and install the free Emby Server visit {0}.",
|
||||||
"EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.",
|
"EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.",
|
||||||
"ButtonNewServer": "\u00daj Szerver",
|
"ButtonNewServer": "\u00daj Szerver",
|
||||||
"MyDevice": "My Device",
|
"MyDevice": "Ezen az eszk\u00f6z\u00f6n",
|
||||||
"ButtonRemote": "T\u00e1vir\u00e1ny\u00edt\u00f3",
|
"ButtonRemote": "T\u00e1vir\u00e1ny\u00edt\u00f3",
|
||||||
"TabCast": "Szerepl\u0151k ",
|
"TabCast": "Szerepl\u0151k ",
|
||||||
"TabScenes": "Jelenetek",
|
"TabScenes": "Jelenetek",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1027,8 +1027,8 @@
|
||||||
"TitleDevices": "Dispositivi",
|
"TitleDevices": "Dispositivi",
|
||||||
"TabCameraUpload": "Caricamenti Fotocamera",
|
"TabCameraUpload": "Caricamenti Fotocamera",
|
||||||
"TabDevices": "Dispositivi",
|
"TabDevices": "Dispositivi",
|
||||||
"HeaderLibrarySettings": "Library Settings",
|
"HeaderLibrarySettings": "Impostazioni della Libreria",
|
||||||
"HeaderChapterSettings": "Chapter Settings",
|
"HeaderChapterSettings": "Impostazioni dei Capitoli",
|
||||||
"HeaderCameraUploadHelp": "Fa automaticamente l'upload su Emby delle foto e dei video residenti sul tuo telefonino",
|
"HeaderCameraUploadHelp": "Fa automaticamente l'upload su Emby delle foto e dei video residenti sul tuo telefonino",
|
||||||
"MessageNoDevicesSupportCameraUpload": "Al momento non si dispone di dispositivi che supportano il caricamento della fotocamera.",
|
"MessageNoDevicesSupportCameraUpload": "Al momento non si dispone di dispositivi che supportano il caricamento della fotocamera.",
|
||||||
"LabelCameraUploadPath": "Fotocamera percorso di upload:",
|
"LabelCameraUploadPath": "Fotocamera percorso di upload:",
|
||||||
|
@ -1821,7 +1821,7 @@
|
||||||
"ButtonOther": "Altro",
|
"ButtonOther": "Altro",
|
||||||
"HeaderSortBy": "Ordina per",
|
"HeaderSortBy": "Ordina per",
|
||||||
"HeaderSortOrder": "Ordinamento",
|
"HeaderSortOrder": "Ordinamento",
|
||||||
"ButtonDisconnect": "Disconetti",
|
"ButtonDisconnect": "Disconnetti",
|
||||||
"ButtonMenu": "Menu",
|
"ButtonMenu": "Menu",
|
||||||
"ForAdditionalLiveTvOptions": "Per ulteriori provider Live TV, fare clic sulla scheda Servizi Esterni per vedere le opzioni disponibili.",
|
"ForAdditionalLiveTvOptions": "Per ulteriori provider Live TV, fare clic sulla scheda Servizi Esterni per vedere le opzioni disponibili.",
|
||||||
"ButtonGuide": "Guida",
|
"ButtonGuide": "Guida",
|
||||||
|
@ -1864,7 +1864,7 @@
|
||||||
"OptionEnableForAllTuners": "Abilita per tutti i sintonizzatori",
|
"OptionEnableForAllTuners": "Abilita per tutti i sintonizzatori",
|
||||||
"HeaderTuners": "Sinton. TV",
|
"HeaderTuners": "Sinton. TV",
|
||||||
"LabelOptionalM3uUrl": "Indirizzo M3U (opzionale)",
|
"LabelOptionalM3uUrl": "Indirizzo M3U (opzionale)",
|
||||||
"LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.",
|
"LabelOptionalM3uUrlHelp": "Alcuni dispositivi supportano le liste canali M3U.",
|
||||||
"TabResumeSettings": "Ripristina Impostazioni",
|
"TabResumeSettings": "Ripristina Impostazioni",
|
||||||
"DrmChannelsNotImported": "I canali con DRM non saranno importati.",
|
"DrmChannelsNotImported": "I canali con DRM non saranno importati.",
|
||||||
"LabelAllowHWTranscoding": "Consenti transcodifica hardware",
|
"LabelAllowHWTranscoding": "Consenti transcodifica hardware",
|
||||||
|
@ -1901,7 +1901,7 @@
|
||||||
"MapChannels": "Map Channels",
|
"MapChannels": "Map Channels",
|
||||||
"LabelffmpegPath": "Percorso FFmpeg:",
|
"LabelffmpegPath": "Percorso FFmpeg:",
|
||||||
"LabelffmpegVersion": "Versione FFmpeg:",
|
"LabelffmpegVersion": "Versione FFmpeg:",
|
||||||
"LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.",
|
"LabelffmpegPathHelp": "Il percorso all'applicazione ffmpeg, o alla cartella che la contiene.",
|
||||||
"SetupFFmpeg": "Configura FFmpeg",
|
"SetupFFmpeg": "Configura FFmpeg",
|
||||||
"SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
|
"SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.",
|
||||||
"EnterFFmpegLocation": "Inserisci percorso FFmpeg",
|
"EnterFFmpegLocation": "Inserisci percorso FFmpeg",
|
||||||
|
@ -1929,7 +1929,7 @@
|
||||||
"LabelMaxAudioFileBitrateHelp": "I file audio con un valore pi\u00f9 alto di bitrate saranno convertiti dal Server Emby. Seleziona un valore pi\u00f9 alto per una qualit\u00e0 migliore, oppure, un valore pi\u00f9 basso per risparmiare spazio di archiviazione.",
|
"LabelMaxAudioFileBitrateHelp": "I file audio con un valore pi\u00f9 alto di bitrate saranno convertiti dal Server Emby. Seleziona un valore pi\u00f9 alto per una qualit\u00e0 migliore, oppure, un valore pi\u00f9 basso per risparmiare spazio di archiviazione.",
|
||||||
"LabelVaapiDevice": "Dispositivo VA API:",
|
"LabelVaapiDevice": "Dispositivo VA API:",
|
||||||
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
|
"LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.",
|
||||||
"HowToConnectFromEmbyApps": "How to Connect from Emby apps",
|
"HowToConnectFromEmbyApps": "Come connettersi dalle app. Emby",
|
||||||
"MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.",
|
"MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.",
|
||||||
"OptionExtractChapterImage": "Abilita estrazione dell'immagine dei capitoli",
|
"OptionExtractChapterImage": "Abilita estrazione dell'immagine dei capitoli",
|
||||||
"Downloads": "Scaricamenti",
|
"Downloads": "Scaricamenti",
|
||||||
|
@ -1955,10 +1955,11 @@
|
||||||
"LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.",
|
"LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.",
|
||||||
"HeaderRecordingPostProcessing": "Post-processing Registrazione",
|
"HeaderRecordingPostProcessing": "Post-processing Registrazione",
|
||||||
"LabelPostProcessorArguments": "Argomenti linea di comando del Post-processor",
|
"LabelPostProcessorArguments": "Argomenti linea di comando del Post-processor",
|
||||||
"LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.",
|
"LabelPostProcessorArgumentsHelp": "Usa {path} come percorso al file di registrazione.",
|
||||||
"LabelPostProcessor": "Applicazione Post-processing:",
|
"LabelPostProcessor": "Applicazione Post-processing:",
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
"LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b",
|
"LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b",
|
||||||
"LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443",
|
"LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443",
|
||||||
"LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456",
|
"LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456",
|
||||||
"LabelYoureDone": "\u0411\u04d9\u0440\u0456 \u0434\u0430\u0439\u044b\u043d!",
|
"LabelYoureDone": "\u0421\u0456\u0437 \u0434\u0430\u0439\u044b\u043d\u0441\u044b\u0437!",
|
||||||
"WelcomeToProject": "Emby \u04af\u0448\u0456\u043d \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!",
|
"WelcomeToProject": "Emby \u04af\u0448\u0456\u043d \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!",
|
||||||
"ThisWizardWillGuideYou": "\u0411\u04b1\u043b \u043a\u043e\u043c\u0435\u043a\u0448\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u0441\u0430\u0442\u044b\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u04e9\u0442\u043a\u0456\u0437\u0435\u0434\u0456. \u0411\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0437\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
|
"ThisWizardWillGuideYou": "\u0411\u04b1\u043b \u043a\u043e\u043c\u0435\u043a\u0448\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u0441\u0430\u0442\u044b\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u04e9\u0442\u043a\u0456\u0437\u0435\u0434\u0456. \u0411\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0437\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
|
||||||
"TellUsAboutYourself": "\u04e8\u0437\u0456\u04a3\u0456\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u0439\u0442\u044b\u04a3\u044b\u0437",
|
"TellUsAboutYourself": "\u04e8\u0437\u0456\u04a3\u0456\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u0439\u0442\u044b\u04a3\u044b\u0437",
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
"LabelYourFirstName": "\u0410\u0442\u044b\u04a3\u044b\u0437:",
|
"LabelYourFirstName": "\u0410\u0442\u044b\u04a3\u044b\u0437:",
|
||||||
"MoreUsersCanBeAddedLater": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u043a\u0435\u0439\u0456\u043d \u0422\u0430\u049b\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
|
"MoreUsersCanBeAddedLater": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u043a\u0435\u0439\u0456\u043d \u0422\u0430\u049b\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||||
"UserProfilesIntro": "Emby \u0456\u0448\u0456\u043d\u0434\u0435 \u04d9\u0440\u049b\u0430\u0439\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u04e9\u0437\u0456\u043d\u0456\u04a3 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u04af\u0439\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u044b \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d\u044b\u04a3 \u043a\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u044b \u0431\u0430\u0440.",
|
"UserProfilesIntro": "Emby \u0456\u0448\u0456\u043d\u0434\u0435 \u04d9\u0440\u049b\u0430\u0439\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u04e9\u0437\u0456\u043d\u0456\u04a3 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u04af\u0439\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u044b \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d\u044b\u04a3 \u043a\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u044b \u0431\u0430\u0440.",
|
||||||
"WizardCompleted": "\u04d8\u0437\u0456\u0440\u0448\u0435 \u0431\u04b1\u043b \u0431\u0456\u0437\u0433\u0435 \u043a\u0435\u0440\u0435\u0433\u0456\u043d\u0456\u04a3 \u0431\u04d9\u0440\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. Emby \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0438\u043d\u0430\u0439 \u0431\u0430\u0441\u0442\u0430\u0434\u044b. \u0415\u043d\u0434\u0456 \u043a\u0435\u0439\u0431\u0456\u0440 \u0431\u0456\u0437\u0434\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043c\u044b\u0437\u0431\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437, \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d <b>\u0414\u0430\u0439\u044b\u043d<\/b> \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 <b>\u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0430\u049b\u0442\u0430\u0441\u044b<\/b> \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0448\u044b\u0493\u0430 \u043a\u0435\u043b\u0435\u0434\u0456.",
|
"WizardCompleted": "\u04d8\u0437\u0456\u0440\u0448\u0435 \u0431\u04b1\u043b \u0431\u0456\u0437\u0433\u0435 \u043a\u0435\u0440\u0435\u0433\u0456\u043d\u0456\u04a3 \u0431\u04d9\u0440\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. Emby \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0438\u043d\u0430\u0439 \u0431\u0430\u0441\u0442\u0430\u0434\u044b. \u0415\u043d\u0434\u0456 \u043a\u0435\u0439\u0431\u0456\u0440 \u0431\u0456\u0437\u0434\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043c\u044b\u0437\u0431\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437, \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d <b>\u0410\u044f\u049b\u0442\u0430\u0443<\/b> \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 <b>\u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0430\u049b\u0442\u0430\u0441\u044b<\/b> \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0448\u044b\u0493\u0430 \u043a\u0435\u043b\u0435\u0434\u0456.",
|
||||||
"LabelConfigureSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443",
|
"LabelConfigureSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443",
|
||||||
"HeaderTermsOfService": "Emby \u049b\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b",
|
"HeaderTermsOfService": "Emby \u049b\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b",
|
||||||
"MessagePleaseAcceptTermsOfService": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d \u049a\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u0436\u04d9\u043d\u0435 \u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u04a3\u044b\u0437.",
|
"MessagePleaseAcceptTermsOfService": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d \u049a\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u0436\u04d9\u043d\u0435 \u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u04a3\u044b\u0437.",
|
||||||
|
@ -1601,7 +1601,7 @@
|
||||||
"ValueMinutes": "{0} \u043c\u0438\u043d",
|
"ValueMinutes": "{0} \u043c\u0438\u043d",
|
||||||
"HeaderSelectExternalPlayer": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443",
|
"HeaderSelectExternalPlayer": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443",
|
||||||
"HeaderExternalPlayerPlayback": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u043f\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u0443",
|
"HeaderExternalPlayerPlayback": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u043f\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u0443",
|
||||||
"ButtonImDone": "\u041c\u0435\u043d \u0431\u0456\u0442\u0456\u0440\u0434\u0456\u043c",
|
"ButtonImDone": "\u041c\u0435\u043d \u0434\u0430\u0439\u044b\u043d\u043c\u044b\u043d",
|
||||||
"OptionWatched": "\u049a\u0430\u0440\u0430\u043b\u0493\u0430\u043d",
|
"OptionWatched": "\u049a\u0430\u0440\u0430\u043b\u0493\u0430\u043d",
|
||||||
"OptionUnwatched": "\u049a\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d",
|
"OptionUnwatched": "\u049a\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d",
|
||||||
"ExternalPlayerPlaystateOptionsHelp": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0440\u0435\u0442\u0442\u0435 \u043e\u0441\u044b \u0431\u0435\u0439\u043d\u0435\u043d\u0456 \u049b\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u049b\u0430\u043b\u0430\u0439 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
|
"ExternalPlayerPlaystateOptionsHelp": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0440\u0435\u0442\u0442\u0435 \u043e\u0441\u044b \u0431\u0435\u0439\u043d\u0435\u043d\u0456 \u049b\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u049b\u0430\u043b\u0430\u0439 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "XmlTV \u0444\u0430\u0439\u043b\u044b\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0424\u0430\u0439\u043b \u0431\u0430\u0440 \u0431\u043e\u043b\u0443\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
"ErrorAddingXmlTvFile": "XmlTV \u0444\u0430\u0439\u043b\u044b\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0424\u0430\u0439\u043b \u0431\u0430\u0440 \u0431\u043e\u043b\u0443\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||||
"OptionAutomaticallyGroupSeries": "\u0411\u0456\u0440\u043d\u0435\u0448\u0435 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0431\u0456\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0493\u0430 \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0443",
|
"OptionAutomaticallyGroupSeries": "\u0411\u0456\u0440\u043d\u0435\u0448\u0435 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0431\u0456\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0493\u0430 \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0443",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043e\u0441\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0456\u0448\u0456\u043d\u0434\u0435\u0433\u0456 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0441\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0431\u0456\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0493\u0430 \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0430\u0434\u044b.",
|
"OptionAutomaticallyGroupSeriesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043e\u0441\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0456\u0448\u0456\u043d\u0434\u0435\u0433\u0456 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0441\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0431\u0456\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0493\u0430 \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||||
"ErrorReachingEmbyConnect": "Emby Connect \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u043d\u0435 \u0436\u0435\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b \u0431\u0430\u0440 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437."
|
"ErrorReachingEmbyConnect": "Emby Connect \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u043d\u0435 \u0436\u0435\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b \u0431\u0430\u0440 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "Det oppstod en feil tilgang til XmlTV filen. S\u00f8rg for at filen finnes og pr\u00f8v igjen.",
|
"ErrorAddingXmlTvFile": "Det oppstod en feil tilgang til XmlTV filen. S\u00f8rg for at filen finnes og pr\u00f8v igjen.",
|
||||||
"OptionAutomaticallyGroupSeries": "Fusjoner automatisk serier som er spredt ut over flere mapper",
|
"OptionAutomaticallyGroupSeries": "Fusjoner automatisk serier som er spredt ut over flere mapper",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "Hvis aktivert, vil serien som er spredt over flere mapper innenfor dette biblioteket sp\u00f8r automatisk sl\u00e5tt sammen til en enkelt serie.",
|
"OptionAutomaticallyGroupSeriesHelp": "Hvis aktivert, vil serien som er spredt over flere mapper innenfor dette biblioteket sp\u00f8r automatisk sl\u00e5tt sammen til en enkelt serie.",
|
||||||
"ErrorReachingEmbyConnect": "Det oppstod en feil n\u00e5 Emby Connect-tjeneren. Kontroller at du har en aktiv Internett-tilkobling og pr\u00f8v igjen."
|
"ErrorReachingEmbyConnect": "Det oppstod en feil n\u00e5 Emby Connect-tjeneren. Kontroller at du har en aktiv Internett-tilkobling og pr\u00f8v igjen.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -39,7 +39,7 @@
|
||||||
"HeaderPaths": "Locais",
|
"HeaderPaths": "Locais",
|
||||||
"CategorySync": "Sincroniza\u00e7\u00e3o",
|
"CategorySync": "Sincroniza\u00e7\u00e3o",
|
||||||
"TabPlaylist": "Lista de Reprodu\u00e7\u00e3o",
|
"TabPlaylist": "Lista de Reprodu\u00e7\u00e3o",
|
||||||
"HeaderInstantMix": "Instant Mix",
|
"HeaderInstantMix": "Mix Instant\u00e2neo",
|
||||||
"HeaderEasyPinCode": "C\u00f3digo Pin F\u00e1cil",
|
"HeaderEasyPinCode": "C\u00f3digo Pin F\u00e1cil",
|
||||||
"HeaderInstalledServices": "Servi\u00e7os Instalados",
|
"HeaderInstalledServices": "Servi\u00e7os Instalados",
|
||||||
"HeaderAvailableServices": "Servi\u00e7os Dispon\u00edveis",
|
"HeaderAvailableServices": "Servi\u00e7os Dispon\u00edveis",
|
||||||
|
@ -296,7 +296,7 @@
|
||||||
"LabelRunServerAtStartupHelp": "Esta op\u00e7\u00e3o abrir\u00e1 o \u00edcone da bandeja de sistema na inicializa\u00e7\u00e3o do windows. Para iniciar o servi\u00e7o do windows, desmarque esta op\u00e7\u00e3o e inicie o servi\u00e7o no painel de controle do windows. Por favor, saiba que voc\u00ea n\u00e3o pode executar os dois ao mesmo tempo, ent\u00e3o ser\u00e1 necess\u00e1rio sair do \u00edcone na bandeja antes de iniciar o servi\u00e7o.",
|
"LabelRunServerAtStartupHelp": "Esta op\u00e7\u00e3o abrir\u00e1 o \u00edcone da bandeja de sistema na inicializa\u00e7\u00e3o do windows. Para iniciar o servi\u00e7o do windows, desmarque esta op\u00e7\u00e3o e inicie o servi\u00e7o no painel de controle do windows. Por favor, saiba que voc\u00ea n\u00e3o pode executar os dois ao mesmo tempo, ent\u00e3o ser\u00e1 necess\u00e1rio sair do \u00edcone na bandeja antes de iniciar o servi\u00e7o.",
|
||||||
"ButtonSelectDirectory": "Selecionar Diret\u00f3rio",
|
"ButtonSelectDirectory": "Selecionar Diret\u00f3rio",
|
||||||
"LabelCachePath": "Local do cache:",
|
"LabelCachePath": "Local do cache:",
|
||||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
"DefaultMetadataLangaugeDescription": "Estas s\u00e3o suas configura\u00e7\u00f5es padr\u00e3o e podem ser personalizadas por biblioteca.",
|
||||||
"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 de grava\u00e7\u00e3o padr\u00e3o:",
|
"LabelRecordingPath": "Local de grava\u00e7\u00e3o padr\u00e3o:",
|
||||||
"LabelMovieRecordingPath": "Local de grava\u00e7\u00e3o de filme (opcional):",
|
"LabelMovieRecordingPath": "Local de grava\u00e7\u00e3o de filme (opcional):",
|
||||||
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Chave de api pessoal:",
|
"LabelFanartApiKey": "Chave de api pessoal:",
|
||||||
"LabelFanartApiKeyHelp": "Solicita\u00e7\u00f5es para fanart sem uma chave de API pessoal retornar\u00e3o imagens que foram aprovadas h\u00e1 mais de 7 dias. Com uma chave de API pessoal isso diminui para 48 horas e se voc\u00ea for um membro VIP da fanart, isso diminuir\u00e1 para aproximadamente 10 minutos.",
|
"LabelFanartApiKeyHelp": "Solicita\u00e7\u00f5es para fanart sem uma chave de API pessoal retornar\u00e3o imagens que foram aprovadas h\u00e1 mais de 7 dias. Com uma chave de API pessoal isso diminui para 48 horas e se voc\u00ea for um membro VIP da fanart, isso diminuir\u00e1 para aproximadamente 10 minutos.",
|
||||||
"ExtractChapterImagesHelp": "Extrair imagens de cap\u00edtulos permitir\u00e1 aos apps Emby exibir menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, demandar uso intensivo de cpu e pode exigir bastante espa\u00e7o em disco. Ele ser\u00e1 executado quando os v\u00eddeos forem descobertos e tamb\u00e9m como uma tarefa noturna. O agendamento pode ser configurado na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de pico de uso.",
|
"ExtractChapterImagesHelp": "Extrair imagens de cap\u00edtulos permitir\u00e1 aos apps Emby exibir menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, demandar uso intensivo de cpu e pode exigir bastante espa\u00e7o em disco. Ele ser\u00e1 executado quando os v\u00eddeos forem descobertos e tamb\u00e9m como uma tarefa noturna. O agendamento pode ser configurado na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de pico de uso.",
|
||||||
"LabelMetadataDownloadLanguage": "Idioma preferido para download:",
|
"LabelMetadataDownloadLanguage": "Idioma preferido dos metadados:",
|
||||||
"ButtonSignIn": "Iniciar Sess\u00e3o",
|
"ButtonSignIn": "Iniciar Sess\u00e3o",
|
||||||
"TitleSignIn": "Iniciar Sess\u00e3o",
|
"TitleSignIn": "Iniciar Sess\u00e3o",
|
||||||
"HeaderPleaseSignIn": "Por favor, inicie a sess\u00e3o",
|
"HeaderPleaseSignIn": "Por favor, inicie a sess\u00e3o",
|
||||||
|
@ -983,7 +983,7 @@
|
||||||
"LabelConnectUserNameHelp": "Conecte este usu\u00e1rio local a uma conta Emby online para ativar o acesso f\u00e1cil de qualquer app do Emby sem ter que saber o endere\u00e7o ip do servidor.",
|
"LabelConnectUserNameHelp": "Conecte este usu\u00e1rio local a uma conta Emby online para ativar o acesso f\u00e1cil de qualquer app do Emby sem ter que saber o endere\u00e7o ip do servidor.",
|
||||||
"ButtonLearnMoreAboutEmbyConnect": "Saiba mais sobre o Emby Connect",
|
"ButtonLearnMoreAboutEmbyConnect": "Saiba mais sobre o Emby Connect",
|
||||||
"LabelExternalPlayers": "Reprodutores externos:",
|
"LabelExternalPlayers": "Reprodutores externos:",
|
||||||
"LabelNativeExternalPlayersHelp": "Exibir bot\u00f5es para reproduzir o conte\u00fado em reprodutores externos.",
|
"LabelNativeExternalPlayersHelp": "Reproduzir v\u00eddeos usando reprodutores externos.",
|
||||||
"HeaderSubtitleProfile": "Perfil da Legenda",
|
"HeaderSubtitleProfile": "Perfil da Legenda",
|
||||||
"HeaderSubtitleProfiles": "Perfis da Legenda",
|
"HeaderSubtitleProfiles": "Perfis da Legenda",
|
||||||
"HeaderSubtitleProfilesHelp": "Perfis da legenda descrevem os formatos da legenda suportados pelo dispositivo.",
|
"HeaderSubtitleProfilesHelp": "Perfis da legenda descrevem os formatos da legenda suportados pelo dispositivo.",
|
||||||
|
@ -1027,8 +1027,8 @@
|
||||||
"TitleDevices": "Dispositivos",
|
"TitleDevices": "Dispositivos",
|
||||||
"TabCameraUpload": "Upload da C\u00e2mera",
|
"TabCameraUpload": "Upload da C\u00e2mera",
|
||||||
"TabDevices": "Dispositivos",
|
"TabDevices": "Dispositivos",
|
||||||
"HeaderLibrarySettings": "Library Settings",
|
"HeaderLibrarySettings": "Configura\u00e7\u00f5es da Biblioteca",
|
||||||
"HeaderChapterSettings": "Chapter Settings",
|
"HeaderChapterSettings": "Configura\u00e7\u00f5es dos Cap\u00edtulos",
|
||||||
"HeaderCameraUploadHelp": "Faz o upload autom\u00e1tico de fotos e v\u00eddeos tiradas por seus dispositivos m\u00f3veis para o Emby.",
|
"HeaderCameraUploadHelp": "Faz o upload autom\u00e1tico de fotos e v\u00eddeos tiradas por seus dispositivos m\u00f3veis para o Emby.",
|
||||||
"MessageNoDevicesSupportCameraUpload": "Atualmente voc\u00ea n\u00e3o tem nenhum dispositivo que suporte upload da c\u00e2mera.",
|
"MessageNoDevicesSupportCameraUpload": "Atualmente voc\u00ea n\u00e3o tem nenhum dispositivo que suporte upload da c\u00e2mera.",
|
||||||
"LabelCameraUploadPath": "Local para upload da c\u00e2mera:",
|
"LabelCameraUploadPath": "Local para upload da c\u00e2mera:",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "Ocorreu um erro ao acessar o arquivo XmlTV. Por favor, assegure-se que o arquivo exista e tente novamente.",
|
"ErrorAddingXmlTvFile": "Ocorreu um erro ao acessar o arquivo XmlTV. Por favor, assegure-se que o arquivo exista e tente novamente.",
|
||||||
"OptionAutomaticallyGroupSeries": "Reunir automaticamente s\u00e9ries que estejam espalhadas por m\u00faltiplas pastas",
|
"OptionAutomaticallyGroupSeries": "Reunir automaticamente s\u00e9ries que estejam espalhadas por m\u00faltiplas pastas",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "Se ativado, s\u00e9ries que estiverem espalhadas por m\u00faltiplas pastas dentro desta biblioteca ser\u00e3o automaticamente reunidas em uma mesma s\u00e9rie.",
|
"OptionAutomaticallyGroupSeriesHelp": "Se ativado, s\u00e9ries que estiverem espalhadas por m\u00faltiplas pastas dentro desta biblioteca ser\u00e3o automaticamente reunidas em uma mesma s\u00e9rie.",
|
||||||
"ErrorReachingEmbyConnect": "Ocorreu um erro ao buscar o servidor Emby Connect. Por favor, verifique que tenha uma conex\u00e3o de internet ativa e tente novamente."
|
"ErrorReachingEmbyConnect": "Ocorreu um erro ao buscar o servidor Emby Connect. Por favor, verifique que tenha uma conex\u00e3o de internet ativa e tente novamente.",
|
||||||
|
"WhenDidYouPurchaseApp": "Quando originalmente voc\u00ea comprou este app?"
|
||||||
}
|
}
|
|
@ -30,7 +30,7 @@
|
||||||
"ButtonCancel": "Cancelar",
|
"ButtonCancel": "Cancelar",
|
||||||
"ButtonExit": "Sair",
|
"ButtonExit": "Sair",
|
||||||
"ButtonNew": "Novo",
|
"ButtonNew": "Novo",
|
||||||
"OptionDev": "Dev (Inst\u00e1vel)",
|
"OptionDev": "Dev",
|
||||||
"OptionBeta": "Beta",
|
"OptionBeta": "Beta",
|
||||||
"HeaderTaskTriggers": "Disparadores de Tarefa",
|
"HeaderTaskTriggers": "Disparadores de Tarefa",
|
||||||
"HeaderTV": "TV",
|
"HeaderTV": "TV",
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
"HeaderToAccessPleaseEnterEasyPinCode": "Para acessar, por favor digite seu c\u00f3digo pin",
|
"HeaderToAccessPleaseEnterEasyPinCode": "Para acessar, por favor digite seu c\u00f3digo pin",
|
||||||
"ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
|
"ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
|
||||||
"RegisterWithPayPal": "Registar com PayPal",
|
"RegisterWithPayPal": "Registar com PayPal",
|
||||||
"LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
|
"LabelSyncTempPath": "Caminho do ficheiro 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.",
|
||||||
"LabelCustomCertificatePath": "Localiza\u00e7\u00e3o do certificado personalizado:",
|
"LabelCustomCertificatePath": "Localiza\u00e7\u00e3o do certificado personalizado:",
|
||||||
"LabelCustomCertificatePathHelp": "Forne\u00e7a seu pr\u00f3prio arquivo .pfx do certificado ssl. Se omitido, o servidor criar\u00e1 um certificado auto-assinado.",
|
"LabelCustomCertificatePathHelp": "Forne\u00e7a seu pr\u00f3prio arquivo .pfx do certificado ssl. Se omitido, o servidor criar\u00e1 um certificado auto-assinado.",
|
||||||
|
@ -227,13 +227,13 @@
|
||||||
"OptionContinuing": "A Continuar",
|
"OptionContinuing": "A Continuar",
|
||||||
"OptionEnded": "Terminado",
|
"OptionEnded": "Terminado",
|
||||||
"HeaderAirDays": "Dias de Exibi\u00e7\u00e3o",
|
"HeaderAirDays": "Dias de Exibi\u00e7\u00e3o",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Dom",
|
||||||
"OptionMondayShort": "Mon",
|
"OptionMondayShort": "Seg",
|
||||||
"OptionTuesdayShort": "Tue",
|
"OptionTuesdayShort": "Ter",
|
||||||
"OptionWednesdayShort": "Wed",
|
"OptionWednesdayShort": "Qua",
|
||||||
"OptionThursdayShort": "Thu",
|
"OptionThursdayShort": "Qui",
|
||||||
"OptionFridayShort": "Fri",
|
"OptionFridayShort": "Sex",
|
||||||
"OptionSaturdayShort": "Sat",
|
"OptionSaturdayShort": "S\u00e1b",
|
||||||
"OptionSunday": "Domingo",
|
"OptionSunday": "Domingo",
|
||||||
"OptionMonday": "Segunda",
|
"OptionMonday": "Segunda",
|
||||||
"OptionTuesday": "Ter\u00e7a",
|
"OptionTuesday": "Ter\u00e7a",
|
||||||
|
@ -335,8 +335,8 @@
|
||||||
"ButtonCancelRecording": "Cancelar Grava\u00e7\u00e3o",
|
"ButtonCancelRecording": "Cancelar Grava\u00e7\u00e3o",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
"MinutesBefore": "minutes before",
|
"MinutesBefore": "minutos antes",
|
||||||
"MinutesAfter": "minutes after",
|
"MinutesAfter": "minutos depois",
|
||||||
"HeaderWhatsOnTV": "Agora a exibir",
|
"HeaderWhatsOnTV": "Agora a exibir",
|
||||||
"TabSettings": "Configura\u00e7\u00f5es",
|
"TabSettings": "Configura\u00e7\u00f5es",
|
||||||
"ButtonRefreshGuideData": "Atualizar Dados do Guia",
|
"ButtonRefreshGuideData": "Atualizar Dados do Guia",
|
||||||
|
@ -488,8 +488,8 @@
|
||||||
"LabelFailed": "Falhou",
|
"LabelFailed": "Falhou",
|
||||||
"LabelSkipped": "Ignorado",
|
"LabelSkipped": "Ignorado",
|
||||||
"LabelSeries": "S\u00e9rie:",
|
"LabelSeries": "S\u00e9rie:",
|
||||||
"LabelSeasonNumber": "Season number:",
|
"LabelSeasonNumber": "N\u00famero da temporada:",
|
||||||
"LabelEpisodeNumber": "Episode number:",
|
"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",
|
||||||
|
@ -590,17 +590,17 @@
|
||||||
"ButtonHome": "In\u00edcio",
|
"ButtonHome": "In\u00edcio",
|
||||||
"ButtonSearch": "Procurar",
|
"ButtonSearch": "Procurar",
|
||||||
"ButtonSettings": "Ajustes",
|
"ButtonSettings": "Ajustes",
|
||||||
"Settings": "Settings",
|
"Settings": "Defini\u00e7\u00f5es",
|
||||||
"Mute": "Mute",
|
"Mute": "Desativar Som",
|
||||||
"Unmute": "Unmute",
|
"Unmute": "Ativar Som",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "Legendas",
|
||||||
"Audio": "Audio",
|
"Audio": "\u00c1udio",
|
||||||
"Rewind": "Rewind",
|
"Rewind": "Retroceder",
|
||||||
"Fullscreen": "Full screen",
|
"Fullscreen": "Ecr\u00e3 completo",
|
||||||
"ExitFullscreen": "Exit full screen",
|
"ExitFullscreen": "Sair do ecr\u00e3 completo",
|
||||||
"PictureInPicture": "Picture in picture",
|
"PictureInPicture": "Picture in picture",
|
||||||
"PlayOnAnotherDevice": "Play on another device",
|
"PlayOnAnotherDevice": "Reproduzir noutro dispositivo",
|
||||||
"FastForward": "Fast-forward",
|
"FastForward": "Avan\u00e7o r\u00e1pido",
|
||||||
"ButtonTakeScreenshot": "Capturar o Ecr\u00e3",
|
"ButtonTakeScreenshot": "Capturar o Ecr\u00e3",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
"TabNowPlaying": "A reproduzir agora",
|
"TabNowPlaying": "A reproduzir agora",
|
||||||
|
@ -821,7 +821,7 @@
|
||||||
"LabelCache": "Cache:",
|
"LabelCache": "Cache:",
|
||||||
"LabelLogs": "Logs:",
|
"LabelLogs": "Logs:",
|
||||||
"LabelMetadata": "Metadados:",
|
"LabelMetadata": "Metadados:",
|
||||||
"LabelTranscodingTemporaryFiles": "Arquivos tempor\u00e1rios da transcodifica\u00e7\u00e3o:",
|
"LabelTranscodingTemporaryFiles": "Ficheiros tempor\u00e1rios da transcodifica\u00e7\u00e3o:",
|
||||||
"HeaderLatestMusic": "\u00daltimas M\u00fasicas",
|
"HeaderLatestMusic": "\u00daltimas M\u00fasicas",
|
||||||
"HeaderBranding": "Marca",
|
"HeaderBranding": "Marca",
|
||||||
"HeaderApiKeys": "Chaves da Api",
|
"HeaderApiKeys": "Chaves da Api",
|
||||||
|
@ -1027,8 +1027,8 @@
|
||||||
"TitleDevices": "Dispositivos",
|
"TitleDevices": "Dispositivos",
|
||||||
"TabCameraUpload": "Upload da C\u00e2mera",
|
"TabCameraUpload": "Upload da C\u00e2mera",
|
||||||
"TabDevices": "Dispositivos",
|
"TabDevices": "Dispositivos",
|
||||||
"HeaderLibrarySettings": "Library Settings",
|
"HeaderLibrarySettings": "Defini\u00e7\u00f5es da Biblioteca",
|
||||||
"HeaderChapterSettings": "Chapter Settings",
|
"HeaderChapterSettings": "Defini\u00e7\u00f5es dos Cap\u00edtulos",
|
||||||
"HeaderCameraUploadHelp": "Faz o upload autom\u00e1tico de fotos e v\u00eddeos tiradas por seus dispositivos m\u00f3veis para o Emby.",
|
"HeaderCameraUploadHelp": "Faz o upload autom\u00e1tico de fotos e v\u00eddeos tiradas por seus dispositivos m\u00f3veis para o Emby.",
|
||||||
"MessageNoDevicesSupportCameraUpload": "Atualmente voc\u00ea n\u00e3o tem nenhum dispositivo que suporte upload da c\u00e2mera.",
|
"MessageNoDevicesSupportCameraUpload": "Atualmente voc\u00ea n\u00e3o tem nenhum dispositivo que suporte upload da c\u00e2mera.",
|
||||||
"LabelCameraUploadPath": "Local para upload da c\u00e2mera:",
|
"LabelCameraUploadPath": "Local para upload da c\u00e2mera:",
|
||||||
|
@ -1387,7 +1387,7 @@
|
||||||
"HeaderSelectTranscodingPath": "Selecione o Local Tempor\u00e1rio da Transcodifica\u00e7\u00e3o",
|
"HeaderSelectTranscodingPath": "Selecione o Local Tempor\u00e1rio da Transcodifica\u00e7\u00e3o",
|
||||||
"HeaderSelectMetadataPath": "Selecione o Local dos Metadados",
|
"HeaderSelectMetadataPath": "Selecione o Local dos Metadados",
|
||||||
"HeaderSelectServerCachePathHelp": "Localize ou digite o local para armazenar o cache do servidor. A pasta deve permitir grava\u00e7\u00e3o.",
|
"HeaderSelectServerCachePathHelp": "Localize ou digite o local para armazenar o cache do servidor. A pasta deve permitir grava\u00e7\u00e3o.",
|
||||||
"HeaderSelectTranscodingPathHelp": "Localize ou digite o local para usar para arquivos tempor\u00e1rios de transcodifica\u00e7\u00e3o. A pasta deve ser grav\u00e1vel.",
|
"HeaderSelectTranscodingPathHelp": "Localize ou insira o local para usar para os ficheiros tempor\u00e1rios de transcodifica\u00e7\u00e3o. A pasta deve permitir a escrita.",
|
||||||
"HeaderSelectMetadataPathHelp": "Localize ou digite o local que voc\u00ea gostaria de armazenar os metadados. A pasta deve ser grav\u00e1vel.",
|
"HeaderSelectMetadataPathHelp": "Localize ou digite o local que voc\u00ea gostaria de armazenar os metadados. A pasta deve ser grav\u00e1vel.",
|
||||||
"HeaderFavoriteAlbums": "\u00c1lbuns Favoritos",
|
"HeaderFavoriteAlbums": "\u00c1lbuns Favoritos",
|
||||||
"HeaderLatestChannelMedia": "\u00daltimos Itens de Canais",
|
"HeaderLatestChannelMedia": "\u00daltimos Itens de Canais",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"LabelPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435",
|
"LabelPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435",
|
||||||
"LabelFinish": "\u0413\u043e\u0442\u043e\u0432\u043e",
|
"LabelFinish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c",
|
||||||
"LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435",
|
"LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435",
|
||||||
"LabelYoureDone": "\u0412\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0438\u043b\u0438!",
|
"LabelYoureDone": "\u0412\u044b \u0433\u043e\u0442\u043e\u0432\u044b!",
|
||||||
"WelcomeToProject": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby",
|
"WelcomeToProject": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby",
|
||||||
"ThisWizardWillGuideYou": "\u042d\u0442\u043e\u0442 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u0442 \u0432\u0430\u0441 \u0447\u0435\u0440\u0435\u0437 \u0432\u0441\u0435 \u0444\u0430\u0437\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. \u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a.",
|
"ThisWizardWillGuideYou": "\u042d\u0442\u043e\u0442 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u0442 \u0432\u0430\u0441 \u0447\u0435\u0440\u0435\u0437 \u0432\u0441\u0435 \u0444\u0430\u0437\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. \u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a.",
|
||||||
"TellUsAboutYourself": "\u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0438\u0442\u0435 \u043e \u0441\u0435\u0431\u0435",
|
"TellUsAboutYourself": "\u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0438\u0442\u0435 \u043e \u0441\u0435\u0431\u0435",
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
"LabelYourFirstName": "\u0412\u0430\u0448\u0435 \u0438\u043c\u044f:",
|
"LabelYourFirstName": "\u0412\u0430\u0448\u0435 \u0438\u043c\u044f:",
|
||||||
"MoreUsersCanBeAddedLater": "\u041f\u043e\u0442\u043e\u043c \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0451 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0447\u0435\u0440\u0435\u0437 \u00ab\u041f\u0430\u043d\u0435\u043b\u044c\u00bb.",
|
"MoreUsersCanBeAddedLater": "\u041f\u043e\u0442\u043e\u043c \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0451 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0447\u0435\u0440\u0435\u0437 \u00ab\u041f\u0430\u043d\u0435\u043b\u044c\u00bb.",
|
||||||
"UserProfilesIntro": "\u0412 Emby \u043d\u0430\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044f \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043e\u0431\u043b\u0430\u0434\u0430\u0442\u044c \u0441\u0432\u043e\u0438\u043c\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u043c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f.",
|
"UserProfilesIntro": "\u0412 Emby \u043d\u0430\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044f \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043e\u0431\u043b\u0430\u0434\u0430\u0442\u044c \u0441\u0432\u043e\u0438\u043c\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u043c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f.",
|
||||||
"WizardCompleted": "\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0441\u0435\u0439\u0447\u0430\u0441. Emby \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u043f\u043e\u043a\u0430 \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043d\u0430\u0448\u0438\u043c\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438, \u0430 \u0437\u0430\u0442\u0435\u043c \u043d\u0430\u0436\u043c\u0438\u0442\u0435 <b>\u0413\u043e\u0442\u043e\u0432\u043e<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c <b>\u041f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430<\/b>.",
|
"WizardCompleted": "\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0441\u0435\u0439\u0447\u0430\u0441. Emby \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u043f\u043e\u043a\u0430 \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043d\u0430\u0448\u0438\u043c\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438, \u0430 \u0437\u0430\u0442\u0435\u043c \u043d\u0430\u0436\u043c\u0438\u0442\u0435 <b>\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c <b>\u041f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430<\/b>.",
|
||||||
"LabelConfigureSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
"LabelConfigureSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
||||||
"HeaderTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 Emby",
|
"HeaderTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 Emby",
|
||||||
"MessagePleaseAcceptTermsOfService": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0435 \u0441 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 \u0438 \u041f\u043e\u043b\u0438\u0442\u0438\u043a\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.",
|
"MessagePleaseAcceptTermsOfService": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0435 \u0441 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 \u0438 \u041f\u043e\u043b\u0438\u0442\u0438\u043a\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.",
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
"LabelCurrentPassword": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c",
|
"LabelCurrentPassword": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c",
|
||||||
"LabelMaxParentalRating": "\u041c\u0430\u043a\u0441. \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:",
|
"LabelMaxParentalRating": "\u041c\u0430\u043a\u0441. \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:",
|
||||||
"MaxParentalRatingHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u0440\u044b\u0442\u043e \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
"MaxParentalRatingHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u0440\u044b\u0442\u043e \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||||
"LibraryAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
|
"LibraryAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
|
||||||
"ChannelAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
|
"ChannelAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
|
||||||
"ButtonDeleteImage": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043e\u043a",
|
"ButtonDeleteImage": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043e\u043a",
|
||||||
"LabelSelectUsers": "\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438:",
|
"LabelSelectUsers": "\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438:",
|
||||||
|
@ -196,7 +196,7 @@
|
||||||
"TabCatalog": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433",
|
"TabCatalog": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433",
|
||||||
"TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
|
"TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
|
||||||
"HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
|
"HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
|
||||||
"HeaderNowPlaying": " \u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441",
|
"HeaderNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f",
|
||||||
"HeaderLatestAlbums": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b",
|
"HeaderLatestAlbums": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b",
|
||||||
"HeaderLatestSongs": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
|
"HeaderLatestSongs": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
|
||||||
"HeaderRecentlyPlayed": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e",
|
"HeaderRecentlyPlayed": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e",
|
||||||
|
@ -271,10 +271,10 @@
|
||||||
"OptionAllowDeleteLibraryContent": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
"OptionAllowDeleteLibraryContent": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
||||||
"OptionAllowManageLiveTv": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0438\u0440\u043d\u044b\u043c\u0438 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438",
|
"OptionAllowManageLiveTv": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0438\u0440\u043d\u044b\u043c\u0438 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438",
|
||||||
"OptionAllowRemoteControlOthers": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438",
|
"OptionAllowRemoteControlOthers": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438",
|
||||||
"OptionAllowRemoteSharedDevices": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435",
|
"OptionAllowRemoteSharedDevices": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u043c\u0438 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438",
|
||||||
"OptionAllowRemoteSharedDevicesHelp": "DLNA-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u043c\u0438\u0441\u044f \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435, \u043f\u043e\u043a\u0430 \u043a\u0430\u043a\u043e\u0439-\u043b\u0438\u0431\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0447\u043d\u0451\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043c\u0438.",
|
"OptionAllowRemoteSharedDevicesHelp": "DLNA-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u043c\u0438 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e, \u043f\u043e\u043a\u0430 \u043a\u0430\u043a\u043e\u0439-\u043b\u0438\u0431\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0447\u043d\u0451\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043c\u0438.",
|
||||||
"OptionAllowLinkSharing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439",
|
"OptionAllowLinkSharing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439",
|
||||||
"OptionAllowLinkSharingHelp": "\u0412 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \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 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f. \u041e\u0431\u0449\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0430 \u0441\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0438\u0441\u0442\u0435\u0447\u0451\u0442 \u0447\u0435\u0440\u0435\u0437 {0} \u0434\u043d(\u044f\/\u0435\u0439).",
|
"OptionAllowLinkSharingHelp": "\u041e\u0431\u0449\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \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 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u043e\u0431\u0449\u0435\u0433\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430. \u041e\u0431\u0449\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u044b \u0432\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0430 \u0441\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0438\u0441\u0442\u0435\u043a\u0430\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 {0} \u0434\u043d(\u044f\/\u0435\u0439).",
|
||||||
"HeaderRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
|
"HeaderRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
|
||||||
"OptionMissingTmdbId": "\u041d\u0435\u0442 TMDb Id",
|
"OptionMissingTmdbId": "\u041d\u0435\u0442 TMDb Id",
|
||||||
"OptionIsHD": "HD",
|
"OptionIsHD": "HD",
|
||||||
|
@ -284,7 +284,7 @@
|
||||||
"PismoMessage": "Pismo File Mount \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
|
"PismoMessage": "Pismo File Mount \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
|
||||||
"TangibleSoftwareMessage": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Java\/C# \u043e\u0442 Tangible Solutions \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
|
"TangibleSoftwareMessage": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 Java\/C# \u043e\u0442 Tangible Solutions \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
|
||||||
"HeaderCredits": "\u041f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b\u0438",
|
"HeaderCredits": "\u041f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b\u0438",
|
||||||
"PleaseSupportOtherProduces": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c:",
|
"PleaseSupportOtherProduces": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0447\u0438\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c:",
|
||||||
"VersionNumber": "\u0412\u0435\u0440\u0441\u0438\u044f {0}",
|
"VersionNumber": "\u0412\u0435\u0440\u0441\u0438\u044f {0}",
|
||||||
"TabPaths": "\u041f\u0443\u0442\u0438",
|
"TabPaths": "\u041f\u0443\u0442\u0438",
|
||||||
"TabServer": "\u0421\u0435\u0440\u0432\u0435\u0440",
|
"TabServer": "\u0421\u0435\u0440\u0432\u0435\u0440",
|
||||||
|
@ -313,7 +313,7 @@
|
||||||
"TabOthers": "\u0414\u0440\u0443\u0433\u0438\u0435",
|
"TabOthers": "\u0414\u0440\u0443\u0433\u0438\u0435",
|
||||||
"OptionMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
|
"OptionMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
|
||||||
"OptionEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
|
"OptionEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
|
||||||
"OptionOtherVideos": "\u0414\u0440\u0443\u0433\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
|
"OptionOtherVideos": "\u041f\u0440\u043e\u0447\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||||
"LabelFanartApiKey": "\u0418\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447:",
|
"LabelFanartApiKey": "\u0418\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447:",
|
||||||
"LabelFanartApiKeyHelp": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043a Fanart \u0431\u0435\u0437 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e API-\u043a\u043b\u044e\u0447\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0438\u0437 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043d\u044b\u0445 \u0441\u0432\u044b\u0448\u0435 7 \u0434\u043d\u0435\u0439 \u043d\u0430\u0437\u0430\u0434. \u0421 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u043c API-\u043a\u043b\u044e\u0447\u043e\u043c \u0441\u0440\u043e\u043a \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u043e 48 \u0447\u0430\u0441\u043e\u0432, \u0430 \u0435\u0441\u043b\u0438 \u0432\u044b \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0435\u0441\u044c VIP-\u0447\u043b\u0435\u043d\u043e\u043c Fanart, \u0442\u043e \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0441\u044f \u043f\u043e\u0447\u0442\u0438 \u0434\u043e 10 \u043c\u0438\u043d\u0443\u0442.",
|
"LabelFanartApiKeyHelp": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043a Fanart \u0431\u0435\u0437 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e API-\u043a\u043b\u044e\u0447\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0438\u0437 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043d\u044b\u0445 \u0441\u0432\u044b\u0448\u0435 7 \u0434\u043d\u0435\u0439 \u043d\u0430\u0437\u0430\u0434. \u0421 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u043c API-\u043a\u043b\u044e\u0447\u043e\u043c \u0441\u0440\u043e\u043a \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u043e 48 \u0447\u0430\u0441\u043e\u0432, \u0430 \u0435\u0441\u043b\u0438 \u0432\u044b \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0435\u0441\u044c VIP-\u0447\u043b\u0435\u043d\u043e\u043c Fanart, \u0442\u043e \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0441\u044f \u043f\u043e\u0447\u0442\u0438 \u0434\u043e 10 \u043c\u0438\u043d\u0443\u0442.",
|
||||||
"ExtractChapterImagesHelp": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u0426\u041f \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u041e\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043f\u0440\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u043e\u0432, \u0430 \u0442\u0430\u043a\u0436\u0435, \u043a\u0430\u043a \u0437\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043d\u043e\u0447\u044c. \u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441\u044b \u043f\u0438\u043a.",
|
"ExtractChapterImagesHelp": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u0426\u041f \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u041e\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043f\u0440\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u043e\u0432, \u0430 \u0442\u0430\u043a\u0436\u0435, \u043a\u0430\u043a \u0437\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043d\u043e\u0447\u044c. \u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441\u044b \u043f\u0438\u043a.",
|
||||||
|
@ -368,12 +368,12 @@
|
||||||
"OptionDownloadBoxImage": "\u041a\u043e\u0440\u043e\u0431\u043a\u0430",
|
"OptionDownloadBoxImage": "\u041a\u043e\u0440\u043e\u0431\u043a\u0430",
|
||||||
"OptionDownloadDiscImage": "\u0414\u0438\u0441\u043a",
|
"OptionDownloadDiscImage": "\u0414\u0438\u0441\u043a",
|
||||||
"OptionDownloadBannerImage": "\u0411\u0430\u043d\u043d\u0435\u0440",
|
"OptionDownloadBannerImage": "\u0411\u0430\u043d\u043d\u0435\u0440",
|
||||||
"OptionDownloadBackImage": "\u0417\u0430\u0434\u043d\u044f\u044f \u0441\u0442\u043e\u0440\u043e\u043d\u0430",
|
"OptionDownloadBackImage": "\u0421\u043f\u0438\u043d\u043a\u0430",
|
||||||
"OptionDownloadArtImage": "\u0412\u0438\u043d\u044c\u0435\u0442\u043a\u0430",
|
"OptionDownloadArtImage": "\u0412\u0438\u043d\u044c\u0435\u0442\u043a\u0430",
|
||||||
"OptionDownloadPrimaryImage": "\u0413\u043e\u043b\u043e\u0432\u043d\u043e\u0439",
|
"OptionDownloadPrimaryImage": "\u0413\u043e\u043b\u043e\u0432\u043d\u043e\u0439",
|
||||||
"HeaderFetchImages": "\u041e\u0442\u0431\u043e\u0440\u043a\u0430 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432:",
|
"HeaderFetchImages": "\u041e\u0442\u0431\u043e\u0440\u043a\u0430 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432:",
|
||||||
"HeaderImageSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432",
|
"HeaderImageSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432",
|
||||||
"TabOther": "\u0414\u0440\u0443\u0433\u0438\u0435",
|
"TabOther": "\u0414\u0440\u0443\u0433\u043e\u0435",
|
||||||
"LabelMaxBackdropsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u043e\u0432 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:",
|
"LabelMaxBackdropsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u043e\u0432 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:",
|
||||||
"LabelMaxScreenshotsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0441\u043d\u0438\u043c\u043a\u043e\u0432 \u044d\u043a\u0440\u0430\u043d\u0430 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:",
|
"LabelMaxScreenshotsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0441\u043d\u0438\u043c\u043a\u043e\u0432 \u044d\u043a\u0440\u0430\u043d\u0430 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:",
|
||||||
"LabelMinBackdropDownloadWidth": "\u041c\u0438\u043d. \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u0430:",
|
"LabelMinBackdropDownloadWidth": "\u041c\u0438\u043d. \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u0430:",
|
||||||
|
@ -494,7 +494,7 @@
|
||||||
"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",
|
||||||
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby",
|
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby",
|
||||||
"HeaderSupportTheTeamHelp": "\u041f\u043e\u043c\u043e\u0433\u0438\u0442\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u044c \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0443\u044e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u043f\u0443\u0442\u0435\u043c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u044f Emby Premiere. \u041d\u0435\u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u043b\u044f \u0432\u0441\u0435\u0445 \u0434\u043e\u0445\u043e\u0434\u043e\u0432 \u0431\u0443\u0434\u0435\u0442 \u0432\u043a\u043b\u0430\u0434\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u0434\u0440\u0443\u0433\u0438\u0435 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u044b\u0435 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430, \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043c\u044b \u0437\u0430\u0432\u0438\u0441\u0438\u043c.",
|
"HeaderSupportTheTeamHelp": "\u041f\u043e\u043c\u043e\u0433\u0438\u0442\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u044c \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0443\u044e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u043f\u0443\u0442\u0435\u043c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u044f Emby Premiere. \u0427\u0430\u0441\u0442\u044c \u0434\u043e\u0445\u043e\u0434\u043e\u0432 \u0431\u0443\u0434\u0435\u0442 \u0432\u043a\u043b\u0430\u0434\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u043f\u0440\u043e\u0447\u0438\u0435 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u044b\u0435 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430, \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043c\u044b \u0437\u0430\u0432\u0438\u0441\u0438\u043c.",
|
||||||
"DonationNextStep": "\u041f\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e, \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u043a\u043b\u044e\u0447 Emby Premiere, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043f\u043e \u042d-\u043f\u043e\u0447\u0442\u0435.",
|
"DonationNextStep": "\u041f\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e, \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u043a\u043b\u044e\u0447 Emby Premiere, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043f\u043e \u042d-\u043f\u043e\u0447\u0442\u0435.",
|
||||||
"AutoOrganizeHelp": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u043c \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432\u0430\u0448\u0430 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432, \u0430 \u0442\u0435 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044f\u0442\u0441\u044f \u0432 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445.",
|
"AutoOrganizeHelp": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u043c \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432\u0430\u0448\u0430 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432, \u0430 \u0442\u0435 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044f\u0442\u0441\u044f \u0432 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445.",
|
||||||
"OptionEnableEpisodeOrganization": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432",
|
"OptionEnableEpisodeOrganization": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432",
|
||||||
|
@ -555,15 +555,15 @@
|
||||||
"LabelEnableDlnaServer": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c DLNA-\u0441\u0435\u0440\u0432\u0435\u0440",
|
"LabelEnableDlnaServer": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c DLNA-\u0441\u0435\u0440\u0432\u0435\u0440",
|
||||||
"LabelEnableDlnaServerHelp": "UPnP-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c \u0432 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438 \u043f\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e Emby \u0438 \u0435\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
|
"LabelEnableDlnaServerHelp": "UPnP-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c \u0432 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438 \u043f\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e Emby \u0438 \u0435\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
|
||||||
"LabelEnableBlastAliveMessages": "\u0411\u043e\u043c\u0431\u0430\u0440\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438",
|
"LabelEnableBlastAliveMessages": "\u0411\u043e\u043c\u0431\u0430\u0440\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438",
|
||||||
"LabelEnableBlastAliveMessagesHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435, \u0435\u0441\u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0430\u0434\u0451\u0436\u043d\u043e \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0434\u0440\u0443\u0433\u0438\u043c\u0438 UPnP \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0432 \u0441\u0435\u0442\u0438.",
|
"LabelEnableBlastAliveMessagesHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435, \u0435\u0441\u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0430\u0434\u0451\u0436\u043d\u043e \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0438\u043d\u044b\u043c\u0438 UPnP \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0432 \u0441\u0435\u0442\u0438.",
|
||||||
"LabelBlastMessageInterval": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438, \u0441",
|
"LabelBlastMessageInterval": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438, \u0441",
|
||||||
"LabelBlastMessageIntervalHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445 \u043c\u0435\u0436\u0434\u0443 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
|
"LabelBlastMessageIntervalHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445 \u043c\u0435\u0436\u0434\u0443 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
|
||||||
"LabelDefaultUser": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:",
|
"LabelDefaultUser": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:",
|
||||||
"LabelDefaultUserHelp": "\u041f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0447\u044c\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445. \u041f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439.",
|
"LabelDefaultUserHelp": "\u041f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0447\u044c\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445. \u041f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439.",
|
||||||
"HeaderServerSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
|
"HeaderServerSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
|
||||||
"HeaderRequireManualLogin": "\u0420\u0443\u0447\u043d\u043e\u0439 \u0432\u0432\u043e\u0434 \u0438\u043c\u0435\u043d\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f:",
|
"HeaderRequireManualLogin": "\u0420\u0443\u0447\u043d\u043e\u0439 \u0432\u0432\u043e\u0434 \u0438\u043c\u0435\u043d\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f:",
|
||||||
"HeaderRequireManualLoginHelp": "\u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0434\u043b\u044f Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u0430 \u0432\u0445\u043e\u0434\u0430 \u0441 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.",
|
"HeaderRequireManualLoginHelp": "\u041f\u0440\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0434\u043b\u044f Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u0430 \u0432\u0445\u043e\u0434\u0430 \u0441 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.",
|
||||||
"OptionOtherApps": "\u0414\u0440\u0443\u0433\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"OptionOtherApps": "\u041f\u0440\u043e\u0447\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"OptionMobileApps": "\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"OptionMobileApps": "\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"LabelNotificationEnabled": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435",
|
"LabelNotificationEnabled": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435",
|
||||||
"LabelMonitorUsers": "\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043e\u0442:",
|
"LabelMonitorUsers": "\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043e\u0442:",
|
||||||
|
@ -599,11 +599,11 @@
|
||||||
"Fullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d",
|
"Fullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d",
|
||||||
"ExitFullscreen": "\u0412\u044b\u0445\u043e\u0434 \u0441 \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430",
|
"ExitFullscreen": "\u0412\u044b\u0445\u043e\u0434 \u0441 \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430",
|
||||||
"PictureInPicture": "\u041a\u0430\u0440\u0442\u0438\u043d\u043a\u0430 \u0432 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0435",
|
"PictureInPicture": "\u041a\u0430\u0440\u0442\u0438\u043d\u043a\u0430 \u0432 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0435",
|
||||||
"PlayOnAnotherDevice": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0434\u0440\u0443\u0433\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435",
|
"PlayOnAnotherDevice": "\u0412\u043e\u0441\u043f\u0440. \u043d\u0430 \u0435\u0449\u0451 \u043e\u0434\u043d\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435",
|
||||||
"FastForward": "\u0411\u044b\u0441\u0442\u0440\u043e \u0432\u043f\u0435\u0440\u0451\u0434",
|
"FastForward": "\u0411\u044b\u0441\u0442\u0440\u043e \u0432\u043f\u0435\u0440\u0451\u0434",
|
||||||
"ButtonTakeScreenshot": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0441\u043d\u0438\u043c\u043e\u043a \u044d\u043a\u0440\u0430\u043d\u0430",
|
"ButtonTakeScreenshot": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0441\u043d\u0438\u043c\u043e\u043a \u044d\u043a\u0440\u0430\u043d\u0430",
|
||||||
"LetterButtonAbbreviation": "\u0411\u041a\u0412",
|
"LetterButtonAbbreviation": "\u0411\u041a\u0412",
|
||||||
"TabNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441",
|
"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",
|
||||||
"ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...",
|
"ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...",
|
||||||
|
@ -804,7 +804,7 @@
|
||||||
"LabelKodiMetadataEnablePathSubstitutionHelp": "\u0412\u043a\u043b\u044e\u0447\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u043a \u0440\u0438\u0441\u0443\u043d\u043a\u0430\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
|
"LabelKodiMetadataEnablePathSubstitutionHelp": "\u0412\u043a\u043b\u044e\u0447\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u043a \u0440\u0438\u0441\u0443\u043d\u043a\u0430\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
|
||||||
"LabelKodiMetadataEnablePathSubstitutionHelp2": "\u0421\u043c. \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439",
|
"LabelKodiMetadataEnablePathSubstitutionHelp2": "\u0421\u043c. \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439",
|
||||||
"OptionDisplayChannelsInline": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043a\u0430\u043d\u0430\u043b\u044b \u043a\u0430\u043a \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438",
|
"OptionDisplayChannelsInline": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043a\u0430\u043d\u0430\u043b\u044b \u043a\u0430\u043a \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438",
|
||||||
"OptionDisplayChannelsInlineHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043a\u0430\u043d\u0430\u043b\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u043c\u0438. \u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432\u043d\u0443\u0442\u0440\u0438 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0438 \u00ab\u041a\u0430\u043d\u0430\u043b\u044b\u00bb.",
|
"OptionDisplayChannelsInlineHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043a\u0430\u043d\u0430\u043b\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u043c\u0438. \u041f\u0440\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432\u043d\u0443\u0442\u0440\u0438 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0438 \u00ab\u041a\u0430\u043d\u0430\u043b\u044b\u00bb.",
|
||||||
"LabelDisplayCollectionsView": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0430\u0441\u043f\u0435\u043a\u0442 \u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439 \u0444\u0438\u043b\u044c\u043c\u043e\u0432",
|
"LabelDisplayCollectionsView": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0430\u0441\u043f\u0435\u043a\u0442 \u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439 \u0444\u0438\u043b\u044c\u043c\u043e\u0432",
|
||||||
"LabelDisplayCollectionsViewHelp": "\u0421\u043e\u0437\u0434\u0430\u0451\u0442\u0441\u044f \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432\u044b\u0445 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439. \u0414\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\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 \u043b\u044e\u0431\u043e\u0439 \u0444\u0438\u043b\u044c\u043c, \u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e\". ",
|
"LabelDisplayCollectionsViewHelp": "\u0421\u043e\u0437\u0434\u0430\u0451\u0442\u0441\u044f \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432\u044b\u0445 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439. \u0414\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\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 \u043b\u044e\u0431\u043e\u0439 \u0444\u0438\u043b\u044c\u043c, \u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e\". ",
|
||||||
"LabelKodiMetadataEnableExtraThumbs": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c extrafanart \u0432\u043d\u0443\u0442\u0440\u044c extrathumbs",
|
"LabelKodiMetadataEnableExtraThumbs": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c extrafanart \u0432\u043d\u0443\u0442\u0440\u044c extrathumbs",
|
||||||
|
@ -873,7 +873,7 @@
|
||||||
"OptionPrimary": "\u0413\u043e\u043b\u043e\u0432\u043d\u043e\u0439",
|
"OptionPrimary": "\u0413\u043e\u043b\u043e\u0432\u043d\u043e\u0439",
|
||||||
"OptionArt": "\u0412\u0438\u043d\u044c\u0435\u0442\u043a\u0430",
|
"OptionArt": "\u0412\u0438\u043d\u044c\u0435\u0442\u043a\u0430",
|
||||||
"OptionBox": "\u041a\u043e\u0440\u043e\u0431\u043a\u0430",
|
"OptionBox": "\u041a\u043e\u0440\u043e\u0431\u043a\u0430",
|
||||||
"OptionBoxRear": "\u041a\u043e\u0440\u043e\u0431\u043a\u0430 \u0441\u0437\u0430\u0434\u0438",
|
"OptionBoxRear": "\u0421\u043f\u0438\u043d\u043a\u0430 \u043a\u043e\u0440\u043e\u0431\u043a\u0438",
|
||||||
"OptionDisc": "\u0414\u0438\u0441\u043a",
|
"OptionDisc": "\u0414\u0438\u0441\u043a",
|
||||||
"OptionIcon": "\u0417\u043d\u0430\u0447\u043e\u043a",
|
"OptionIcon": "\u0417\u043d\u0430\u0447\u043e\u043a",
|
||||||
"OptionLogo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
|
"OptionLogo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
|
||||||
|
@ -977,7 +977,7 @@
|
||||||
"XmlDocumentAttributeListHelp": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u044e\u0442\u0441\u044f \u043a\u043e \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u043c\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443 \u043a\u0430\u0436\u0434\u043e\u0433\u043e XML-\u043e\u0442\u043a\u043b\u0438\u043a\u0430.",
|
"XmlDocumentAttributeListHelp": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u044e\u0442\u0441\u044f \u043a\u043e \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u043c\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443 \u043a\u0430\u0436\u0434\u043e\u0433\u043e XML-\u043e\u0442\u043a\u043b\u0438\u043a\u0430.",
|
||||||
"OptionSaveMetadataAsHidden": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0432 \u0432\u0438\u0434\u0435 \u0441\u043a\u0440\u044b\u0442\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432",
|
"OptionSaveMetadataAsHidden": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0432 \u0432\u0438\u0434\u0435 \u0441\u043a\u0440\u044b\u0442\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432",
|
||||||
"LabelExtractChaptersDuringLibraryScan": "\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
|
"LabelExtractChaptersDuringLibraryScan": "\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
|
||||||
"LabelExtractChaptersDuringLibraryScanHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d \u0431\u0443\u0434\u0443\u0442 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u044b, \u043a\u043e\u0433\u0434\u0430 \u0432\u0438\u0434\u0435\u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u044b \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u00ab\u0420\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d\u00bb, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044f \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u043c\u0443 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c\u0441\u044f \u0431\u044b\u0441\u0442\u0440\u0435\u0435.",
|
"LabelExtractChaptersDuringLibraryScanHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d \u0431\u0443\u0434\u0443\u0442 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u044b, \u043a\u043e\u0433\u0434\u0430 \u0432\u0438\u0434\u0435\u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u041f\u0440\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u044b \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u00ab\u0420\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d\u00bb, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044f \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u043c\u0443 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c\u0441\u044f \u0431\u044b\u0441\u0442\u0440\u0435\u0435.",
|
||||||
"LabelConnectGuestUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Emby \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441 \u044d-\u043f\u043e\u0447\u0442\u044b:",
|
"LabelConnectGuestUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Emby \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441 \u044d-\u043f\u043e\u0447\u0442\u044b:",
|
||||||
"LabelConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Emby \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441 \u044d-\u043f\u043e\u0447\u0442\u044b:",
|
"LabelConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Emby \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441 \u044d-\u043f\u043e\u0447\u0442\u044b:",
|
||||||
"LabelConnectUserNameHelp": "\u0421\u043e\u0435\u0434\u0438\u043d\u044f\u0435\u0442 \u044d\u0442\u043e\u0433\u043e \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f c \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e Emby, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u0434\u043e\u0431\u043d\u044b\u043c \u0432\u0445\u043e\u0434\u043e\u043c \u0438\u0437 \u043b\u044e\u0431\u043e\u0433\u043e Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043d\u0435 \u0437\u043d\u0430\u044f IP-\u0430\u0434\u0440\u0435\u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
|
"LabelConnectUserNameHelp": "\u0421\u043e\u0435\u0434\u0438\u043d\u044f\u0435\u0442 \u044d\u0442\u043e\u0433\u043e \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f c \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e Emby, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u0434\u043e\u0431\u043d\u044b\u043c \u0432\u0445\u043e\u0434\u043e\u043c \u0438\u0437 \u043b\u044e\u0431\u043e\u0433\u043e Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043d\u0435 \u0437\u043d\u0430\u044f IP-\u0430\u0434\u0440\u0435\u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
|
||||||
|
@ -1016,7 +1016,7 @@
|
||||||
"LabelSelectInternetTrailersForCinemaMode": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b:",
|
"LabelSelectInternetTrailersForCinemaMode": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b:",
|
||||||
"OptionUpcomingDvdMovies": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u043d\u043e\u0432\u044b\u043c \u0438 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c \u043d\u0430 DVD \u0438 BluRay",
|
"OptionUpcomingDvdMovies": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u043d\u043e\u0432\u044b\u043c \u0438 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c \u043d\u0430 DVD \u0438 BluRay",
|
||||||
"OptionUpcomingStreamingMovies": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u043d\u043e\u0432\u044b\u043c \u0438 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c \u043d\u0430 Netflix",
|
"OptionUpcomingStreamingMovies": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u043d\u043e\u0432\u044b\u043c \u0438 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c \u043d\u0430 Netflix",
|
||||||
"CinemaModeConfigurationHelp2": "Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0438\u043c\u0435\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u0434\u043b\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430. \u0412 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0445 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u043e\u0440\u043e\u0432 \u0440\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u0432\u043a\u043b\u044e\u0447\u0430\u0435\u0442\u0441\u044f \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.",
|
"CinemaModeConfigurationHelp2": "Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0438\u043c\u0435\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u0434\u043b\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430. \u0412 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0445 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u043e\u0440\u043e\u0432 \u0440\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u0432\u043a\u043b\u044e\u0447\u0430\u0435\u0442\u0441\u044f \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.",
|
||||||
"LabelEnableCinemaMode": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430",
|
"LabelEnableCinemaMode": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430",
|
||||||
"HeaderCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430",
|
"HeaderCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430",
|
||||||
"LabelDateAddedBehavior": "\u0414\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0437\u0430 \u0434\u0430\u0442\u0443 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0441\u044f:",
|
"LabelDateAddedBehavior": "\u0414\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0437\u0430 \u0434\u0430\u0442\u0443 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0441\u044f:",
|
||||||
|
@ -1062,7 +1062,7 @@
|
||||||
"ButtonSignUp": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f",
|
"ButtonSignUp": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f",
|
||||||
"ButtonForgotPassword": "\u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c",
|
"ButtonForgotPassword": "\u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c",
|
||||||
"OptionDisableUserPreferences": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u043c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c",
|
"OptionDisableUserPreferences": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u043c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c",
|
||||||
"OptionDisableUserPreferencesHelp": "\u0415\u0441\u043b\u0438 \u0444\u043b\u0430\u0436\u043e\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u0442\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0440\u0438\u0441\u0443\u043d\u043a\u0438, \u043f\u0430\u0440\u043e\u043b\u0438 \u0438 \u044f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438.",
|
"OptionDisableUserPreferencesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0442\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0440\u0438\u0441\u0443\u043d\u043a\u0438, \u043f\u0430\u0440\u043e\u043b\u0438 \u0438 \u044f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438.",
|
||||||
"HeaderSelectServer": "\u0412\u044b\u0431\u043e\u0440 \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
|
"HeaderSelectServer": "\u0412\u044b\u0431\u043e\u0440 \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
|
||||||
"MessageNoServersAvailableToConnect": "\u041d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432 \u0434\u043b\u044f \u043f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f. \u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043a \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c\u0443 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0443, \u0442\u043e \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043e \u043f\u0440\u0438\u043d\u044f\u043b\u0438 \u0435\u0433\u043e, \u043d\u0438\u0436\u0435, \u0438\u043b\u0438 \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 \u0432 \u044d-\u043f\u043e\u0447\u0442\u0435.",
|
"MessageNoServersAvailableToConnect": "\u041d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u0432 \u0434\u043b\u044f \u043f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f. \u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043a \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c\u0443 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0443, \u0442\u043e \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435, \u0447\u0442\u043e \u043f\u0440\u0438\u043d\u044f\u043b\u0438 \u0435\u0433\u043e, \u043d\u0438\u0436\u0435, \u0438\u043b\u0438 \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 \u0432 \u044d-\u043f\u043e\u0447\u0442\u0435.",
|
||||||
"TitleNewUser": "\u041d\u043e\u0432\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c",
|
"TitleNewUser": "\u041d\u043e\u0432\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c",
|
||||||
|
@ -1341,7 +1341,7 @@
|
||||||
"ButtonUnmute": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0432\u0443\u043a",
|
"ButtonUnmute": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0432\u0443\u043a",
|
||||||
"ButtonPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442...",
|
"ButtonPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442...",
|
||||||
"LabelEnabled": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
"LabelEnabled": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||||
"LabelDisabled": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
"LabelDisabled": "\u041e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||||
"ButtonMoreInformation": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435...",
|
"ButtonMoreInformation": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435...",
|
||||||
"LabelNoUnreadNotifications": "\u041d\u0435\u0442 \u043d\u0435\u043f\u0440\u043e\u0447\u0442\u0451\u043d\u043d\u044b\u0445 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439.",
|
"LabelNoUnreadNotifications": "\u041d\u0435\u0442 \u043d\u0435\u043f\u0440\u043e\u0447\u0442\u0451\u043d\u043d\u044b\u0445 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439.",
|
||||||
"MessageInvalidUser": "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
"MessageInvalidUser": "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
||||||
|
@ -1545,7 +1545,7 @@
|
||||||
"OptionGameSystems": "\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b",
|
"OptionGameSystems": "\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b",
|
||||||
"OptionMusicArtists": "\u041c\u0443\u0437. \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
|
"OptionMusicArtists": "\u041c\u0443\u0437. \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
|
||||||
"OptionMusicAlbums": "\u041c\u0443\u0437. \u0430\u043b\u044c\u0431\u043e\u043c\u044b",
|
"OptionMusicAlbums": "\u041c\u0443\u0437. \u0430\u043b\u044c\u0431\u043e\u043c\u044b",
|
||||||
"OptionMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
"OptionMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e",
|
||||||
"OptionSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
|
"OptionSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
|
||||||
"OptionHomeVideos": "\u0414\u043e\u043c. \u0432\u0438\u0434\u0435\u043e \u0438 \u0444\u043e\u0442\u043e",
|
"OptionHomeVideos": "\u0414\u043e\u043c. \u0432\u0438\u0434\u0435\u043e \u0438 \u0444\u043e\u0442\u043e",
|
||||||
"OptionBooks": "\u041a\u043d\u0438\u0433\u0438",
|
"OptionBooks": "\u041a\u043d\u0438\u0433\u0438",
|
||||||
|
@ -1601,7 +1601,7 @@
|
||||||
"ValueMinutes": "{0} \u043c\u0438\u043d",
|
"ValueMinutes": "{0} \u043c\u0438\u043d",
|
||||||
"HeaderSelectExternalPlayer": "\u0412\u044b\u0431\u043e\u0440 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f",
|
"HeaderSelectExternalPlayer": "\u0412\u044b\u0431\u043e\u0440 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||||
"HeaderExternalPlayerPlayback": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0432\u043d\u0435\u0448\u043d\u0438\u043c \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0435\u043c",
|
"HeaderExternalPlayerPlayback": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0432\u043d\u0435\u0448\u043d\u0438\u043c \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0435\u043c",
|
||||||
"ButtonImDone": "\u042f \u0437\u0430\u043a\u043e\u043d\u0447\u0438\u043b",
|
"ButtonImDone": "\u042f \u0433\u043e\u0442\u043e\u0432",
|
||||||
"OptionWatched": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043e",
|
"OptionWatched": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043e",
|
||||||
"OptionUnwatched": "\u041d\u0435 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043e",
|
"OptionUnwatched": "\u041d\u0435 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043e",
|
||||||
"ExternalPlayerPlaystateOptionsHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435, \u043a\u0430\u043a \u0432\u044b \u0445\u043e\u0442\u0435\u043b\u0438 \u0431\u044b \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0432\u0438\u0434\u0435\u043e \u0432\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437.",
|
"ExternalPlayerPlaystateOptionsHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435, \u043a\u0430\u043a \u0432\u044b \u0445\u043e\u0442\u0435\u043b\u0438 \u0431\u044b \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0432\u0438\u0434\u0435\u043e \u0432\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437.",
|
||||||
|
@ -1661,7 +1661,7 @@
|
||||||
"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",
|
||||||
"HeaderOtherItems": "\u0414\u0440\u0443\u0433\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b",
|
"HeaderOtherItems": "\u041f\u0440\u043e\u0447\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b",
|
||||||
"ButtonFullReview": "\u041e\u0442\u0437\u044b\u0432 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e...",
|
"ButtonFullReview": "\u041e\u0442\u0437\u044b\u0432 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e...",
|
||||||
"ValueAsRole": "\u043a\u0430\u043a {0}",
|
"ValueAsRole": "\u043a\u0430\u043a {0}",
|
||||||
"ValueGuestStar": "\u041f\u0440\u0438\u0433\u043b. \u0430\u043a\u0442\u0451\u0440",
|
"ValueGuestStar": "\u041f\u0440\u0438\u0433\u043b. \u0430\u043a\u0442\u0451\u0440",
|
||||||
|
@ -1837,7 +1837,7 @@
|
||||||
"NumLocationsValue": "{0} \u043f\u0430\u043f(\u043a\u0438\/\u043e\u043a)",
|
"NumLocationsValue": "{0} \u043f\u0430\u043f(\u043a\u0438\/\u043e\u043a)",
|
||||||
"ButtonAddMediaLibrary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443",
|
"ButtonAddMediaLibrary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443",
|
||||||
"ButtonManageFolders": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0430\u043c\u0438",
|
"ButtonManageFolders": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0430\u043c\u0438",
|
||||||
"ErrorAddingListingsToSchedulesDirect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Schedules Direct. \u0412 Schedules Direct \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0442\u0430\u043a\u0438\u0445 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u043d\u0430 \u043a\u0430\u0436\u0434\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c. \u0412\u0430\u043c \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0432\u043e\u0439\u0442\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442 Schedules Direct, \u0438 \u0438\u0437\u044a\u044f\u0442\u044c \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u0447\u043d\u0438 \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c.",
|
"ErrorAddingListingsToSchedulesDirect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Schedules Direct. \u0412 Schedules Direct \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0442\u0430\u043a\u0438\u0445 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u043d\u0430 \u043a\u0430\u0436\u0434\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c. \u0412\u0430\u043c \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0432\u043e\u0439\u0442\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442 Schedules Direct, \u0438 \u0438\u0437\u044a\u044f\u0442\u044c \u0438\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u0447\u043d\u0438 \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c.",
|
||||||
"PleaseAddAtLeastOneFolder": "\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435, \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435, \u043e\u0434\u043d\u0443 \u043f\u0430\u043f\u043a\u0443 \u043a \u0434\u0430\u043d\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435, \u043d\u0430\u0436\u0430\u0432 \u043a\u043d\u043e\u043f\u043a\u0443 \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c.",
|
"PleaseAddAtLeastOneFolder": "\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435, \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435, \u043e\u0434\u043d\u0443 \u043f\u0430\u043f\u043a\u0443 \u043a \u0434\u0430\u043d\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435, \u043d\u0430\u0436\u0430\u0432 \u043a\u043d\u043e\u043f\u043a\u0443 \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c.",
|
||||||
"ErrorAddingMediaPathToVirtualFolder": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043f\u0443\u0442\u0438 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043f\u0443\u0442\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c, \u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 Emby Server \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u044d\u0442\u043e\u043c\u0443 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044e.",
|
"ErrorAddingMediaPathToVirtualFolder": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043f\u0443\u0442\u0438 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043f\u0443\u0442\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c, \u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 Emby Server \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u044d\u0442\u043e\u043c\u0443 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044e.",
|
||||||
"ErrorRemovingEmbyConnectAccount": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby Connect. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
"ErrorRemovingEmbyConnectAccount": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby Connect. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
||||||
|
@ -1853,7 +1853,7 @@
|
||||||
"HeaderCloudSync": "\u041e\u0431\u043b\u0430\u0447\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
|
"HeaderCloudSync": "\u041e\u0431\u043b\u0430\u0447\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||||
"HeaderFreeApps": "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
"HeaderFreeApps": "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
|
||||||
"CoverArt": "Cover Art",
|
"CoverArt": "Cover Art",
|
||||||
"ButtonOff": "\u0412\u044b\u043a\u043b",
|
"ButtonOff": "\u041e\u0442\u043a\u043b",
|
||||||
"TitleHardwareAcceleration": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435",
|
"TitleHardwareAcceleration": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435",
|
||||||
"HardwareAccelerationWarning": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0433\u043e \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0432 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0440\u0435\u0434\u0430\u0445. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u0432\u0430\u0448\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0438 \u0432\u0438\u0434\u0435\u043e\u0434\u0440\u0430\u0439\u0432\u0435\u0440\u044b \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b. \u0415\u0441\u043b\u0438 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435\u043c \u0432\u0438\u0434\u0435\u043e \u043f\u043e\u0441\u043b\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043d\u0430\u0437\u0430\u0434 \u043d\u0430 \u0410\u0432\u0442\u043e.",
|
"HardwareAccelerationWarning": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0433\u043e \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0432 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0440\u0435\u0434\u0430\u0445. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u0432\u0430\u0448\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0438 \u0432\u0438\u0434\u0435\u043e\u0434\u0440\u0430\u0439\u0432\u0435\u0440\u044b \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b. \u0415\u0441\u043b\u0438 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435\u043c \u0432\u0438\u0434\u0435\u043e \u043f\u043e\u0441\u043b\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043d\u0430\u0437\u0430\u0434 \u043d\u0430 \u0410\u0432\u0442\u043e.",
|
||||||
"HeaderSelectCodecIntrosPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c \u043a\u043e\u0434\u0435\u043a\u0430",
|
"HeaderSelectCodecIntrosPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c \u043a\u043e\u0434\u0435\u043a\u0430",
|
||||||
|
@ -1928,7 +1928,7 @@
|
||||||
"LabelMaxAudioFileBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0430\u0443\u0434\u0438\u043e:",
|
"LabelMaxAudioFileBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0430\u0443\u0434\u0438\u043e:",
|
||||||
"LabelMaxAudioFileBitrateHelp": "\u0410\u0443\u0434\u0438\u043e\u0444\u0430\u0439\u043b\u044b \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c\u044e \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u044b \u0432 Emby Server. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430, \u0438\u043b\u0438 \u043d\u0430\u0438\u043c\u0435\u043d\u0435\u0435 \u043d\u0438\u0437\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430.",
|
"LabelMaxAudioFileBitrateHelp": "\u0410\u0443\u0434\u0438\u043e\u0444\u0430\u0439\u043b\u044b \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c\u044e \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u044b \u0432 Emby Server. \u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430, \u0438\u043b\u0438 \u043d\u0430\u0438\u043c\u0435\u043d\u0435\u0435 \u043d\u0438\u0437\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430.",
|
||||||
"LabelVaapiDevice": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e VA-API:",
|
"LabelVaapiDevice": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e VA-API:",
|
||||||
"LabelVaapiDeviceHelp": "\u042d\u0442\u043e \u0443\u0437\u0435\u043b \u043e\u0442\u0440\u0438\u0441\u043e\u0432\u043a\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0433\u043e \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f.",
|
"LabelVaapiDeviceHelp": "\u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0443\u0437\u043b\u043e\u043c \u043e\u0442\u0440\u0438\u0441\u043e\u0432\u043a\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0433\u043e \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f.",
|
||||||
"HowToConnectFromEmbyApps": "\u041a\u0430\u043a \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0441 Connect \u0438\u0437 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439",
|
"HowToConnectFromEmbyApps": "\u041a\u0430\u043a \u0441\u0432\u044f\u0437\u0430\u0442\u044c\u0441\u044f \u0441 Connect \u0438\u0437 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439",
|
||||||
"MessageFolderRipPlaybackExperimental": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043a\u043e\u043f\u0438\u0439 \u043f\u0430\u043f\u043e\u043a \u0438 ISO \u0432 \u0434\u0430\u043d\u043d\u043e\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0439. \u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0438\u0436\u0435\u043d\u0438\u044f \u043d\u0430\u0438\u043b\u0443\u0447\u0448\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432, \u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0438\u043c\u0435\u044e\u0449\u0435\u0435 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 \u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432, \u0438\u043b\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u043e\u0431\u044b\u0447\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b.",
|
"MessageFolderRipPlaybackExperimental": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043a\u043e\u043f\u0438\u0439 \u043f\u0430\u043f\u043e\u043a \u0438 ISO \u0432 \u0434\u0430\u043d\u043d\u043e\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u044d\u043a\u0441\u043f\u0435\u0440\u0438\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0439. \u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0438\u0436\u0435\u043d\u0438\u044f \u043d\u0430\u0438\u043b\u0443\u0447\u0448\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432, \u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435, \u0438\u043c\u0435\u044e\u0449\u0435\u0435 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0443\u044e \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 \u0444\u043e\u0440\u043c\u0430\u0442\u043e\u0432, \u0438\u043b\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u043e\u0431\u044b\u0447\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b.",
|
||||||
"OptionExtractChapterImage": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d",
|
"OptionExtractChapterImage": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d",
|
||||||
|
@ -1945,8 +1945,8 @@
|
||||||
"HeaderRecordingGroups": "\u0413\u0440\u0443\u043f\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439",
|
"HeaderRecordingGroups": "\u0413\u0440\u0443\u043f\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439",
|
||||||
"LabelConvertRecordingsTo": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432:",
|
"LabelConvertRecordingsTo": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432:",
|
||||||
"HeaderUpcomingOnTV": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435 \u043d\u0430 \u0422\u0412",
|
"HeaderUpcomingOnTV": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435 \u043d\u0430 \u0422\u0412",
|
||||||
"LabelOptionalNetworkPath": "(\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e) \u0421\u0435\u0442\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435:",
|
"LabelOptionalNetworkPath": "(\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e) \u041e\u0431\u0449\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u0441\u0435\u0442\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430:",
|
||||||
"LabelOptionalNetworkPathHelp": "\u0415\u0441\u043b\u0438 \u0434\u0430\u043d\u043d\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043e\u0431\u0449\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0439 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0441\u0435\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044f \u043f\u0443\u0442\u044c \u043a \u0441\u0435\u0442\u0435\u0432\u044b\u043c \u043f\u0430\u043f\u043a\u0430\u043c, \u044d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u043d\u0430 \u0434\u0440\u0443\u0433\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0430\u043c \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e.",
|
"LabelOptionalNetworkPathHelp": "\u0415\u0441\u043b\u0438 \u0434\u0430\u043d\u043d\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u043e\u0431\u0449\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0441\u0435\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043a \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u043f\u0430\u043f\u043a\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u044c Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u043d\u0430 \u0434\u0440\u0443\u0433\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0430\u043c.",
|
||||||
"ButtonPlayExternalPlayer": "\u0412\u043e\u0441\u043f\u0440. \u0432\u043d\u0435\u0448\u043d\u0438\u043c \u043f\u0440\u043e\u0438\u0433\u0440-\u0435\u043c",
|
"ButtonPlayExternalPlayer": "\u0412\u043e\u0441\u043f\u0440. \u0432\u043d\u0435\u0448\u043d\u0438\u043c \u043f\u0440\u043e\u0438\u0433\u0440-\u0435\u043c",
|
||||||
"NotScheduledToRecord": "\u041d\u0435 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c\u0441\u044f",
|
"NotScheduledToRecord": "\u041d\u0435 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c\u0441\u044f",
|
||||||
"SynologyUpdateInstructions": "\u0414\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 DSM \u0438 \u043f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u0432 Package Center.",
|
"SynologyUpdateInstructions": "\u0414\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 DSM \u0438 \u043f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u0432 Package Center.",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u0435 \u043a XmlTV-\u0444\u0430\u0439\u043b\u0443. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0444\u0430\u0439\u043b \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
"ErrorAddingXmlTvFile": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u0435 \u043a XmlTV-\u0444\u0430\u0439\u043b\u0443. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0444\u0430\u0439\u043b \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
||||||
"OptionAutomaticallyGroupSeries": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043b\u0438\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0430\u0437\u0431\u0440\u043e\u0441\u0430\u043d\u044b \u043f\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u043f\u0430\u043f\u043a\u0430\u043c",
|
"OptionAutomaticallyGroupSeries": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043b\u0438\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0430\u0437\u0431\u0440\u043e\u0441\u0430\u043d\u044b \u043f\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u043f\u0430\u043f\u043a\u0430\u043c",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0430\u0437\u0431\u0440\u043e\u0441\u0430\u043d\u044b \u043f\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u043f\u0430\u043f\u043a\u0430\u043c \u0434\u0430\u043d\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438, \u0431\u0443\u0434\u0443\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043b\u0438\u0442\u044b \u0432 \u0435\u0434\u0438\u043d\u044b\u0439 \u0441\u0435\u0440\u0438\u0430\u043b.",
|
"OptionAutomaticallyGroupSeriesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0430\u0437\u0431\u0440\u043e\u0441\u0430\u043d\u044b \u043f\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u043f\u0430\u043f\u043a\u0430\u043c \u0434\u0430\u043d\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438, \u0431\u0443\u0434\u0443\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043b\u0438\u0442\u044b \u0432 \u0435\u0434\u0438\u043d\u044b\u0439 \u0441\u0435\u0440\u0438\u0430\u043b.",
|
||||||
"ErrorReachingEmbyConnect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u0434\u043e\u0441\u0442\u0438\u0447\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby Connect. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443."
|
"ErrorReachingEmbyConnect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u0434\u043e\u0441\u0442\u0438\u0447\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby Connect. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -39,7 +39,7 @@
|
||||||
"HeaderPaths": "S\u00f6kv\u00e4gar",
|
"HeaderPaths": "S\u00f6kv\u00e4gar",
|
||||||
"CategorySync": "Synkronisera",
|
"CategorySync": "Synkronisera",
|
||||||
"TabPlaylist": "Spellista",
|
"TabPlaylist": "Spellista",
|
||||||
"HeaderInstantMix": "Instant Mix",
|
"HeaderInstantMix": "Direktmix",
|
||||||
"HeaderEasyPinCode": "L\u00e4tt pinkod",
|
"HeaderEasyPinCode": "L\u00e4tt pinkod",
|
||||||
"HeaderInstalledServices": "Installerade tj\u00e4nster",
|
"HeaderInstalledServices": "Installerade tj\u00e4nster",
|
||||||
"HeaderAvailableServices": "Tillg\u00e4ngliga tj\u00e4nster",
|
"HeaderAvailableServices": "Tillg\u00e4ngliga tj\u00e4nster",
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
"LabelUnairedMissingEpisodesWithinSeasons": "Visa \u00e4nnu ej s\u00e4nda avsnitt i s\u00e4songer",
|
"LabelUnairedMissingEpisodesWithinSeasons": "Visa \u00e4nnu ej s\u00e4nda avsnitt i s\u00e4songer",
|
||||||
"ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.",
|
"ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.",
|
||||||
"HeaderVideoPlaybackSettings": "Inst\u00e4llningar f\u00f6r videouppspelning",
|
"HeaderVideoPlaybackSettings": "Inst\u00e4llningar f\u00f6r videouppspelning",
|
||||||
"OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide",
|
"OptionDownloadInternetMetadataTvPrograms": "Ladda ner internetmetadata f\u00f6r program som listas i guiden",
|
||||||
"HeaderPlaybackSettings": "Uppspelningsinst\u00e4llningar",
|
"HeaderPlaybackSettings": "Uppspelningsinst\u00e4llningar",
|
||||||
"LabelAudioLanguagePreference": "\u00d6nskat spr\u00e5k f\u00f6r ljudsp\u00e5r",
|
"LabelAudioLanguagePreference": "\u00d6nskat spr\u00e5k f\u00f6r ljudsp\u00e5r",
|
||||||
"LabelSubtitleLanguagePreference": "\u00d6nskat spr\u00e5k f\u00f6r undertexter:",
|
"LabelSubtitleLanguagePreference": "\u00d6nskat spr\u00e5k f\u00f6r undertexter:",
|
||||||
|
@ -333,8 +333,8 @@
|
||||||
"TabFavorites": "Favoriter",
|
"TabFavorites": "Favoriter",
|
||||||
"TabMyLibrary": "Mitt bibliotek",
|
"TabMyLibrary": "Mitt bibliotek",
|
||||||
"ButtonCancelRecording": "Avbryt inspelning",
|
"ButtonCancelRecording": "Avbryt inspelning",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Starta n\u00e4r det \u00e4r m\u00f6jligt:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stoppa n\u00e4r det \u00e4r m\u00f6jligt:",
|
||||||
"MinutesBefore": "minuter f\u00f6re",
|
"MinutesBefore": "minuter f\u00f6re",
|
||||||
"MinutesAfter": "minuter efter",
|
"MinutesAfter": "minuter efter",
|
||||||
"HeaderWhatsOnTV": "S\u00e4nds just nu",
|
"HeaderWhatsOnTV": "S\u00e4nds just nu",
|
||||||
|
@ -590,16 +590,16 @@
|
||||||
"ButtonHome": "Hem",
|
"ButtonHome": "Hem",
|
||||||
"ButtonSearch": "S\u00f6k",
|
"ButtonSearch": "S\u00f6k",
|
||||||
"ButtonSettings": "Inst\u00e4llningar",
|
"ButtonSettings": "Inst\u00e4llningar",
|
||||||
"Settings": "Settings",
|
"Settings": "Inst\u00e4llningar",
|
||||||
"Mute": "Mute",
|
"Mute": "Tyst",
|
||||||
"Unmute": "Unmute",
|
"Unmute": "Muting av",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "Undertexter",
|
||||||
"Audio": "Audio",
|
"Audio": "Ljud",
|
||||||
"Rewind": "Rewind",
|
"Rewind": "Rewind",
|
||||||
"Fullscreen": "Full screen",
|
"Fullscreen": "Fullsk\u00e4rm",
|
||||||
"ExitFullscreen": "Exit full screen",
|
"ExitFullscreen": "Avsluta fullsk\u00e4rm",
|
||||||
"PictureInPicture": "Picture in picture",
|
"PictureInPicture": "Bild i bild",
|
||||||
"PlayOnAnotherDevice": "Play on another device",
|
"PlayOnAnotherDevice": "Spela upp p\u00e5 annan enhet",
|
||||||
"FastForward": "Fast-forward",
|
"FastForward": "Fast-forward",
|
||||||
"ButtonTakeScreenshot": "Ta sk\u00e4rmbild",
|
"ButtonTakeScreenshot": "Ta sk\u00e4rmbild",
|
||||||
"LetterButtonAbbreviation": "A",
|
"LetterButtonAbbreviation": "A",
|
||||||
|
@ -1027,8 +1027,8 @@
|
||||||
"TitleDevices": "Enheter",
|
"TitleDevices": "Enheter",
|
||||||
"TabCameraUpload": "Kamerauppladdning",
|
"TabCameraUpload": "Kamerauppladdning",
|
||||||
"TabDevices": "Enheter",
|
"TabDevices": "Enheter",
|
||||||
"HeaderLibrarySettings": "Library Settings",
|
"HeaderLibrarySettings": "Biblioteksinst\u00e4llningar",
|
||||||
"HeaderChapterSettings": "Chapter Settings",
|
"HeaderChapterSettings": "Kapitelinst\u00e4llningar",
|
||||||
"HeaderCameraUploadHelp": "Ladda automatiskt upp bilder och videor fr\u00e5n dina mobila enheter till Emby.",
|
"HeaderCameraUploadHelp": "Ladda automatiskt upp bilder och videor fr\u00e5n dina mobila enheter till Emby.",
|
||||||
"MessageNoDevicesSupportCameraUpload": "Du har inga enheter som st\u00f6djer kamerauppladdning.",
|
"MessageNoDevicesSupportCameraUpload": "Du har inga enheter som st\u00f6djer kamerauppladdning.",
|
||||||
"LabelCameraUploadPath": "V\u00e4lj s\u00f6kv\u00e4g f\u00f6r kamerauppladdning:",
|
"LabelCameraUploadPath": "V\u00e4lj s\u00f6kv\u00e4g f\u00f6r kamerauppladdning:",
|
||||||
|
@ -1196,7 +1196,7 @@
|
||||||
"HeaderSetupTVGuide": "St\u00e4ll in TV-guide",
|
"HeaderSetupTVGuide": "St\u00e4ll in TV-guide",
|
||||||
"LabelDataProvider": "Dataleverant\u00f6r:",
|
"LabelDataProvider": "Dataleverant\u00f6r:",
|
||||||
"OptionSendRecordingsToAutoOrganize": "Organiserar inspelningar automatiskt till befintliga TV-seriekataloger i andra bibliotek.",
|
"OptionSendRecordingsToAutoOrganize": "Organiserar inspelningar automatiskt till befintliga TV-seriekataloger i andra bibliotek.",
|
||||||
"HeaderDefaultRecordingSettings": "Default Recording Settings",
|
"HeaderDefaultRecordingSettings": "Standard inspelningsinst\u00e4llningar",
|
||||||
"OptionEnableRecordingSubfolders": "Skapa underkataloger f\u00f6r kategorier, t.ex. Sport, Barn etc.",
|
"OptionEnableRecordingSubfolders": "Skapa underkataloger f\u00f6r kategorier, t.ex. Sport, Barn etc.",
|
||||||
"HeaderSubtitles": "Undertexter",
|
"HeaderSubtitles": "Undertexter",
|
||||||
"HeaderVideos": "Videos",
|
"HeaderVideos": "Videos",
|
||||||
|
@ -1762,7 +1762,7 @@
|
||||||
"HeaderCancelSyncJob": "Avbryt synkronisering",
|
"HeaderCancelSyncJob": "Avbryt synkronisering",
|
||||||
"CancelSyncJobConfirmation": "Om synkroniseringen avbryts kommer synkad media tas bort under n\u00e4sta synkprocess. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?",
|
"CancelSyncJobConfirmation": "Om synkroniseringen avbryts kommer synkad media tas bort under n\u00e4sta synkprocess. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?",
|
||||||
"LabelQuality": "Kvalitet",
|
"LabelQuality": "Kvalitet",
|
||||||
"BookLibraryHelp": "Audio and text books are supported",
|
"BookLibraryHelp": "Ljud- och textb\u00f6cker har st\u00f6d",
|
||||||
"MessageGamePluginRequired": "Kr\u00e4ver installation av tj\u00e4nsten 'GameBrowser'",
|
"MessageGamePluginRequired": "Kr\u00e4ver installation av tj\u00e4nsten 'GameBrowser'",
|
||||||
"MessageUnsetContentHelp": "Inneh\u00e5ll kommer visas som enkla mappar. F\u00f6r b\u00e4sta resultat, anv\u00e4nd en metadata-hanterare f\u00f6r att st\u00e4lla in typ av inneh\u00e5ll f\u00f6r undermapparna.",
|
"MessageUnsetContentHelp": "Inneh\u00e5ll kommer visas som enkla mappar. F\u00f6r b\u00e4sta resultat, anv\u00e4nd en metadata-hanterare f\u00f6r att st\u00e4lla in typ av inneh\u00e5ll f\u00f6r undermapparna.",
|
||||||
"SyncJobItemStatusQueued": "K\u00f6as",
|
"SyncJobItemStatusQueued": "K\u00f6as",
|
||||||
|
@ -1948,7 +1948,7 @@
|
||||||
"LabelOptionalNetworkPath": "(Valfri) Delad n\u00e4tverksmapp:",
|
"LabelOptionalNetworkPath": "(Valfri) Delad n\u00e4tverksmapp:",
|
||||||
"LabelOptionalNetworkPathHelp": "Om denna mappen delas p\u00e5 ditt n\u00e4tverk, kan den delade s\u00f6kv\u00e4gen till\u00e5ta Emby-appar p\u00e5 andra enheter att streama mediafiler direkt.",
|
"LabelOptionalNetworkPathHelp": "Om denna mappen delas p\u00e5 ditt n\u00e4tverk, kan den delade s\u00f6kv\u00e4gen till\u00e5ta Emby-appar p\u00e5 andra enheter att streama mediafiler direkt.",
|
||||||
"ButtonPlayExternalPlayer": "Spela upp med extern uppspelare",
|
"ButtonPlayExternalPlayer": "Spela upp med extern uppspelare",
|
||||||
"NotScheduledToRecord": "Not scheduled to record",
|
"NotScheduledToRecord": "Ej schemalagd att spelas in",
|
||||||
"SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.",
|
"SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.",
|
||||||
"LatestFromLibrary": "Senaste {0}",
|
"LatestFromLibrary": "Senaste {0}",
|
||||||
"LabelMoviePrefix": "Film prefix:",
|
"LabelMoviePrefix": "Film prefix:",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Sl\u00e5 ihop serier automatiskt som ligger utspritt under flera kataloger",
|
"OptionAutomaticallyGroupSeries": "Sl\u00e5 ihop serier automatiskt som ligger utspritt under flera kataloger",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Giri\u015f Yap\u0131n",
|
"ButtonSignIn": "Giri\u015f Yap\u0131n",
|
||||||
"TitleSignIn": "Giri\u015f Yap\u0131n",
|
"TitleSignIn": "Giri\u015f Yap\u0131n",
|
||||||
"HeaderPleaseSignIn": "L\u00fctfen Giri\u015f Yap\u0131n",
|
"HeaderPleaseSignIn": "L\u00fctfen Giri\u015f Yap\u0131n",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "Sign In",
|
"ButtonSignIn": "Sign In",
|
||||||
"TitleSignIn": "Sign In",
|
"TitleSignIn": "Sign In",
|
||||||
"HeaderPleaseSignIn": "Please sign in",
|
"HeaderPleaseSignIn": "Please sign in",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -3,13 +3,13 @@
|
||||||
"LabelFinish": "\u5b8c\u6210",
|
"LabelFinish": "\u5b8c\u6210",
|
||||||
"LabelNext": "\u4e0b\u4e00\u4e2a",
|
"LabelNext": "\u4e0b\u4e00\u4e2a",
|
||||||
"LabelYoureDone": "\u5b8c\u6210\uff01",
|
"LabelYoureDone": "\u5b8c\u6210\uff01",
|
||||||
"WelcomeToProject": "\u6b22\u8fce\u6765\u5230Emby",
|
"WelcomeToProject": "\u6b22\u8fce\u6765\u5230 Emby\uff01",
|
||||||
"ThisWizardWillGuideYou": "\u8be5\u5411\u5bfc\u5c06\u6307\u5bfc\u4f60\u5b8c\u6210\u5b89\u88c5\u8fc7\u7a0b\u3002\u9996\u5148\uff0c\u8bf7\u9009\u62e9\u4f60\u7684\u8bed\u8a00\u3002",
|
"ThisWizardWillGuideYou": "\u8be5\u5411\u5bfc\u5c06\u6307\u5bfc\u4f60\u5b8c\u6210\u5b89\u88c5\u8fc7\u7a0b\u3002\u9996\u5148\uff0c\u8bf7\u9009\u62e9\u4f60\u7684\u8bed\u8a00\u3002",
|
||||||
"TellUsAboutYourself": "\u8bf7\u4ecb\u7ecd\u4e00\u4e0b\u4f60\u81ea\u5df1",
|
"TellUsAboutYourself": "\u8bf7\u4ecb\u7ecd\u4e00\u4e0b\u4f60\u81ea\u5df1",
|
||||||
"ButtonQuickStartGuide": "\u5feb\u901f\u5165\u95e8\u6307\u5357",
|
"ButtonQuickStartGuide": "\u5feb\u901f\u5165\u95e8\u6307\u5357",
|
||||||
"LabelYourFirstName": "\u4f60\u7684\u540d\u5b57\uff1a",
|
"LabelYourFirstName": "\u4f60\u7684\u540d\u5b57\uff1a",
|
||||||
"MoreUsersCanBeAddedLater": "\u7a0d\u540e\u5728\u63a7\u5236\u53f0\u4e2d\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u7528\u6237\u3002",
|
"MoreUsersCanBeAddedLater": "\u7a0d\u540e\u53ef\u4ee5\u5728\u63a7\u5236\u53f0\u4e2d\u6dfb\u52a0\u66f4\u591a\u7528\u6237\u3002",
|
||||||
"UserProfilesIntro": "Emby\u5305\u542b\u4e86\u5bf9\u7528\u6237\u4e2a\u4eba\u8bbe\u7f6e\u7684\u63d2\u4ef6\u652f\u6301\uff0c\u542f\u7528\u53ef\u4ee5\u4f7f\u6bcf\u4e2a\u7528\u6237\u90fd\u62e5\u6709\u4e2a\u6027\u5316\u7684\u663e\u793a\u8bbe\u7f6e\u3001\u64ad\u653e\u6a21\u5f0f\u548c\u63a7\u5236\u9762\u677f\u3002",
|
"UserProfilesIntro": "Emby \u96c6\u6210\u4e86\u7528\u6237\u8d44\u6599\u7684\u652f\u6301\uff0c\u5141\u8bb8\u6bcf\u4e2a\u7528\u6237\u914d\u7f6e\u81ea\u5df1\u7684\u663e\u793a\u8bbe\u7f6e\u3001\u64ad\u653e\u6a21\u5f0f\u548c\u5bb6\u957f\u63a7\u5236\u3002",
|
||||||
"WizardCompleted": "\u73b0\u5df2\u5b8c\u6210\u3002Emby \u5f00\u59cb\u6536\u96c6\u4f60\u7684\u5a92\u4f53\u5e93\u4fe1\u606f\u3002\u770b\u770b\u6211\u4eec\u7684\u5e94\u7528\u7a0b\u5e8f\uff0c \u70b9\u51fb <b>\u7ed3\u675f<\/b> \u6765\u6d4f\u89c8 <b>\u670d\u52a1\u5668\u63a7\u5236\u53f0<\/b>\u3002",
|
"WizardCompleted": "\u73b0\u5df2\u5b8c\u6210\u3002Emby \u5f00\u59cb\u6536\u96c6\u4f60\u7684\u5a92\u4f53\u5e93\u4fe1\u606f\u3002\u770b\u770b\u6211\u4eec\u7684\u5e94\u7528\u7a0b\u5e8f\uff0c \u70b9\u51fb <b>\u7ed3\u675f<\/b> \u6765\u6d4f\u89c8 <b>\u670d\u52a1\u5668\u63a7\u5236\u53f0<\/b>\u3002",
|
||||||
"LabelConfigureSettings": "\u914d\u7f6e\u8bbe\u7f6e",
|
"LabelConfigureSettings": "\u914d\u7f6e\u8bbe\u7f6e",
|
||||||
"HeaderTermsOfService": "Emby \u670d\u52a1\u7fa4\u7ec4",
|
"HeaderTermsOfService": "Emby \u670d\u52a1\u7fa4\u7ec4",
|
||||||
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "\u4e2a\u4eba api \u5bc6\u94a5\uff1a",
|
"LabelFanartApiKey": "\u4e2a\u4eba api \u5bc6\u94a5\uff1a",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "\u9996\u9009\u4e0b\u8f7d\u8bed\u8a00\uff1a",
|
"LabelMetadataDownloadLanguage": "\u9996\u9009\u5143\u6570\u636e\u4e0b\u8f7d\u8bed\u8a00\uff1a",
|
||||||
"ButtonSignIn": "\u767b\u5f55",
|
"ButtonSignIn": "\u767b\u5f55",
|
||||||
"TitleSignIn": "\u767b\u5f55",
|
"TitleSignIn": "\u767b\u5f55",
|
||||||
"HeaderPleaseSignIn": "\u8bf7\u767b\u5f55",
|
"HeaderPleaseSignIn": "\u8bf7\u767b\u5f55",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "\u81ea\u52a8\u5408\u5e76\u5206\u5e03\u5728\u4e0d\u540c\u6587\u4ef6\u5939\u7684\u7cfb\u5217",
|
"OptionAutomaticallyGroupSeries": "\u81ea\u52a8\u5408\u5e76\u5206\u5e03\u5728\u4e0d\u540c\u6587\u4ef6\u5939\u7684\u7cfb\u5217",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
|
@ -317,7 +317,7 @@
|
||||||
"LabelFanartApiKey": "Personal api key:",
|
"LabelFanartApiKey": "Personal api key:",
|
||||||
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
"LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
|
||||||
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
"ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
|
||||||
"LabelMetadataDownloadLanguage": "Preferred metadata download language:",
|
"LabelMetadataDownloadLanguage": "Preferred metadata language:",
|
||||||
"ButtonSignIn": "\u767b\u9304",
|
"ButtonSignIn": "\u767b\u9304",
|
||||||
"TitleSignIn": "\u767b\u9304",
|
"TitleSignIn": "\u767b\u9304",
|
||||||
"HeaderPleaseSignIn": "\u8acb\u767b\u9304",
|
"HeaderPleaseSignIn": "\u8acb\u767b\u9304",
|
||||||
|
@ -1960,5 +1960,6 @@
|
||||||
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
"ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.",
|
||||||
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
"OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders",
|
||||||
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
"OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.",
|
||||||
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again."
|
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
|
||||||
|
"WhenDidYouPurchaseApp": "When did you originally purchase this app?"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue