mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update translations
This commit is contained in:
parent
230932b5a5
commit
8248544e8f
44 changed files with 82 additions and 82 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define([],function(){"use strict";function getValidFileName(path){return path}function getFullLocalPath(pathArray){return pathArray.join("/")}function getPathFromArray(pathArray){return pathArray.join("/")}function deleteFile(path){return Promise.resolve()}function deleteDirectory(path){return Promise.resolve()}function fileExists(path){return Promise.resolve()}function getItemFileSize(path){return Promise.resolve(0)}return{getValidFileName:getValidFileName,getFullLocalPath:getFullLocalPath,getPathFromArray:getPathFromArray,deleteFile:deleteFile,deleteDirectory:deleteDirectory,fileExists:fileExists,getItemFileSize:getItemFileSize}});
|
define([],function(){"use strict";function getValidFileName(path){return path}function getFullLocalPath(pathArray){return pathArray.join("/")}function getPathFromArray(pathArray){return pathArray.join("/")}function deleteFile(path){return Promise.resolve()}function deleteDirectory(path){return Promise.resolve()}function fileExists(path){return Promise.resolve()}function getItemFileSize(path){return Promise.resolve(0)}function getLocalPath(){return null}function getImageUrl(pathParts){return pathParts.join("/")}return{getValidFileName:getValidFileName,getFullLocalPath:getFullLocalPath,getPathFromArray:getPathFromArray,deleteFile:deleteFile,deleteDirectory:deleteDirectory,fileExists:fileExists,getItemFileSize:getItemFileSize,getLocalPath:getLocalPath,getImageUrl:getImageUrl}});
|
|
@ -1 +1 @@
|
||||||
define(["idb"],function(){"use strict";function getDbName(serverId){return"items_"+serverId}function getPromise(dbName){if(!promisesMap.has(dbName))return idb.open(dbName,dbVersion,upgradeDbFunc).then(function(dbPromise){return promisesMap.set(dbName,dbPromise),Promise.resolve(dbPromise)});var dbPromise=promisesMap.get(dbName);return Promise.resolve(dbPromise)}function getTransaction(serverId,access){var dbName=getDbName(serverId);return access||(access="readonly"),getPromise(dbName).then(function(db){return db.transaction(dbName,access)})}function getObjectStore(serverId,access){var dbName=getDbName(serverId);return getTransaction(serverId,access).then(function(tx){return tx.objectStore(dbName)})}function upgradeDbFunc(upgradeDB){switch(upgradeDB.oldVersion){case 0:upgradeDB.createObjectStore(upgradeDB.name)}}function getServerItemTypes(serverId,userId){return getObjectStore(serverId).then(function(store){return store.getAll(null,1e4).then(function(all){return all.filter(function(item){return!0}).map(function(item2){return(item2.Item.Type||"").toLowerCase()}).filter(filterDistinct)})})}function getAll(serverId){return getObjectStore(serverId).then(function(store){return store.getAll(null,1e4)})}function get(serverId,key){return getObjectStore(serverId).then(function(store){return store.get(key)})}function set(serverId,key,val){return getTransaction(serverId,"readwrite").then(function(tx){return tx.objectStore(getDbName(serverId)).put(val,key),tx.complete})}function remove(serverId,key){return getTransaction(serverId,"readwrite").then(function(tx){return tx.objectStore(getDbName(serverId)).delete(key),tx.complete})}function clear(serverId){return getTransaction(serverId,"readwrite").then(function(tx){return tx.objectStore(getDbName(serverId)).clear(),tx.complete})}function filterDistinct(value,index,self){return self.indexOf(value)===index}var dbVersion=1,promisesMap=new Map;return{get:get,set:set,remove:remove,clear:clear,getAll:getAll,getServerItemTypes:getServerItemTypes}});
|
define([],function(){"use strict";function ServerDatabase(dbName,readyCallback){var request=indexedDB.open(dbName,dbVersion);request.onerror=function(event){},request.onupgradeneeded=function(event){var db=event.target.result,objectStore=db.createObjectStore(dbName);objectStore.transaction.oncomplete=function(event){readyCallback(db)}},request.onsuccess=function(event){var db=event.target.result;readyCallback(db)}}function getDbName(serverId){return"items_"+serverId}function getDb(serverId,callback){var dbName=getDbName(serverId),db=databases[dbName];return db?void callback(db):void new ServerDatabase(dbName,function(db){databases[dbName]=db,callback(db)})}function getServerItemTypes(serverId,userId){return getAll(serverId,userId).then(function(all){return all.map(function(item2){return item2.Item.Type||""}).filter(filterDistinct)})}function getAll(serverId,userId){return new Promise(function(resolve,reject){getDb(serverId,function(db){var request,storeName=getDbName(serverId),transaction=db.transaction([storeName],"readonly"),objectStore=transaction.objectStore(storeName);if("getAll"in objectStore)request=objectStore.getAll(null,1e4),request.onsuccess=function(event){resolve(event.target.result)};else{var results=[];request=objectStore.openCursor(),request.onsuccess=function(event){var cursor=event.target.result;cursor?(results.push(cursor.value),cursor.continue()):resolve(results)}}request.onerror=reject})})}function get(serverId,key){return new Promise(function(resolve,reject){getDb(serverId,function(db){var storeName=getDbName(serverId),transaction=db.transaction([storeName],"readonly"),objectStore=transaction.objectStore(storeName),request=objectStore.get(key);request.onerror=reject,request.onsuccess=function(event){resolve(request.result)}})})}function set(serverId,key,val){return new Promise(function(resolve,reject){getDb(serverId,function(db){var storeName=getDbName(serverId),transaction=db.transaction([storeName],"readwrite"),objectStore=transaction.objectStore(storeName),request=objectStore.put(val,key);request.onerror=reject,request.onsuccess=resolve})})}function remove(serverId,key){return new Promise(function(resolve,reject){getDb(serverId,function(db){var storeName=getDbName(serverId),transaction=db.transaction([storeName],"readwrite"),objectStore=transaction.objectStore(storeName),request=objectStore.delete(key);request.onerror=reject,request.onsuccess=resolve})})}function clear(serverId){return new Promise(function(resolve,reject){getDb(serverId,function(db){var storeName=getDbName(serverId),transaction=db.transaction([storeName],"readwrite"),objectStore=transaction.objectStore(storeName),request=objectStore.clear();request.onerror=reject,request.onsuccess=resolve})})}function filterDistinct(value,index,self){return self.indexOf(value)===index}var indexedDB=self.indexedDB||self.mozIndexedDB||self.webkitIndexedDB||self.msIndexedDB,dbVersion=(window.IDBTransaction||window.webkitIDBTransaction||window.msIDBTransaction||{READ_WRITE:"readwrite"},self.IDBKeyRange||self.webkitIDBKeyRange||self.msIDBKeyRange,1),databases={};return{get:get,set:set,remove:remove,clear:clear,getAll:getAll,getServerItemTypes:getServerItemTypes}});
|
|
@ -1 +1 @@
|
||||||
define(["appSettings","connectionManager"],function(appSettings,connectionManager){"use strict";var syncPromise;return{sync:function(options){return syncPromise?syncPromise:new Promise(function(resolve,reject){require(["multiserversync"],function(MultiServerSync){options=options||{},options.cameraUploadServers=appSettings.cameraUploadServers(),syncPromise=(new MultiServerSync).sync(connectionManager,options).then(function(){syncPromise=null,resolve()},function(){syncPromise=null,reject()})})})}}});
|
define(["appSettings","connectionManager"],function(appSettings,connectionManager){"use strict";var isSyncing;return{sync:function(options){return console.log("localSync.sync starting..."),isSyncing?Promise.resolve():(isSyncing=!0,new Promise(function(resolve,reject){require(["multiserversync"],function(MultiServerSync){options=options||{},options.cameraUploadServers=appSettings.cameraUploadServers(),(new MultiServerSync).sync(connectionManager,options).then(function(){isSyncing=null,resolve()},function(err){isSyncing=null,reject(err)})})}))}}});
|
|
@ -1 +1 @@
|
||||||
define(["serversync"],function(ServerSync){"use strict";function syncNext(connectionManager,servers,index,options,resolve,reject){var length=servers.length;if(index>=length)return void resolve();var server=servers[index];console.log("Creating ServerSync to server: "+server.Id),(new ServerSync).sync(connectionManager,server,options).then(function(){syncNext(connectionManager,servers,index+1,options,resolve,reject)},function(){syncNext(connectionManager,servers,index+1,options,resolve,reject)})}function MultiServerSync(){}return MultiServerSync.prototype.sync=function(connectionManager,options){return new Promise(function(resolve,reject){var servers=connectionManager.getSavedServers();syncNext(connectionManager,servers,0,options,resolve,reject)})},MultiServerSync});
|
define(["serversync"],function(ServerSync){"use strict";function syncNext(connectionManager,servers,index,options,resolve,reject){var length=servers.length;if(index>=length)return console.log("MultiServerSync.sync complete"),void resolve();var server=servers[index];console.log("Creating ServerSync to server: "+server.Id),(new ServerSync).sync(connectionManager,server,options).then(function(){console.log("ServerSync succeeded to server: "+server.Id),syncNext(connectionManager,servers,index+1,options,resolve,reject)},function(err){console.log("ServerSync failed to server: "+server.Id+". "+err),syncNext(connectionManager,servers,index+1,options,resolve,reject)})}function MultiServerSync(){}return MultiServerSync.prototype.sync=function(connectionManager,options){return console.log("MultiServerSync.sync starting..."),new Promise(function(resolve,reject){var servers=connectionManager.getSavedServers();syncNext(connectionManager,servers,0,options,resolve,reject)})},MultiServerSync});
|
|
@ -1 +1 @@
|
||||||
define([],function(){"use strict";function performSync(connectionManager,server,options){console.log("ServerSync.performSync to server: "+server.Id),options=options||{};var uploadPhotos=options.uploadPhotos!==!1;options.cameraUploadServers&&options.cameraUploadServers.indexOf(server.Id)===-1&&(uploadPhotos=!1);var pr=Promise.resolve();return pr.then(function(){return uploadPhotos?uploadContent(connectionManager,server,options):Promise.resolve()}).then(function(){return syncMedia(connectionManager,server,options)})}function uploadContent(connectionManager,server,options){return new Promise(function(resolve,reject){require(["contentuploader"],function(ContentUploader){var uploader=new ContentUploader;uploader.uploadImages(connectionManager,server).then(resolve,reject)})})}function syncMedia(connectionManager,server,options){return new Promise(function(resolve,reject){require(["mediasync"],function(MediaSync){var apiClient=connectionManager.getApiClient(server.Id);(new MediaSync).sync(apiClient,server,options).then(resolve,reject)})})}function ServerSync(){}return ServerSync.prototype.sync=function(connectionManager,server,options){if(!server.AccessToken&&!server.ExchangeToken)return console.log("Skipping sync to server "+server.Id+" because there is no saved authentication information."),Promise.resolve();var connectionOptions={updateDateLastAccessed:!1,enableWebSocket:!1,reportCapabilities:!1,enableAutomaticBitrateDetection:!1};return connectionManager.connectToServer(server,connectionOptions).then(function(result){return result.State===MediaBrowser.ConnectionState.SignedIn?performSync(connectionManager,server,options):(console.log("Unable to connect to server id: "+server.Id),Promise.reject())},function(err){throw console.log("Unable to connect to server id: "+server.Id),err})},ServerSync});
|
define([],function(){"use strict";function performSync(connectionManager,server,options){console.log("ServerSync.performSync to server: "+server.Id),options=options||{};var uploadPhotos=options.uploadPhotos!==!1;options.cameraUploadServers&&options.cameraUploadServers.indexOf(server.Id)===-1&&(uploadPhotos=!1);var promise=uploadPhotos?uploadContent(connectionManager,server,options):Promise.resolve();return promise.then(function(){return syncMedia(connectionManager,server,options)})}function uploadContent(connectionManager,server,options){return new Promise(function(resolve,reject){require(["contentuploader"],function(ContentUploader){var uploader=new ContentUploader;uploader.uploadImages(connectionManager,server).then(resolve,reject)})})}function syncMedia(connectionManager,server,options){return new Promise(function(resolve,reject){require(["mediasync"],function(MediaSync){var apiClient=connectionManager.getApiClient(server.Id);(new MediaSync).sync(apiClient,server,options).then(resolve,reject)})})}function ServerSync(){}return ServerSync.prototype.sync=function(connectionManager,server,options){if(!server.AccessToken&&!server.ExchangeToken)return console.log("Skipping sync to server "+server.Id+" because there is no saved authentication information."),Promise.resolve();var connectionOptions={updateDateLastAccessed:!1,enableWebSocket:!1,reportCapabilities:!1,enableAutomaticBitrateDetection:!1};return connectionManager.connectToServer(server,connectionOptions).then(function(result){return result.State===MediaBrowser.ConnectionState.SignedIn?performSync(connectionManager,server,options):(console.log("Unable to connect to server id: "+server.Id),Promise.reject())},function(err){throw console.log("Unable to connect to server id: "+server.Id),err})},ServerSync});
|
|
@ -1 +1 @@
|
||||||
define([],function(){"use strict";function createDownload(url,folderName,fileName,monitorCompletion,imageUrl){return Promise.reject()}function downloadFile(url,folderName,localItem,imageUrl){var fileName=localItem.LocalPath;return createDownload(url,folderName,fileName,!0,imageUrl)}function downloadSubtitles(url,folderName,fileName){return createDownload(url,folderName,fileName,!1)}function downloadImage(url,folderName,fileName){return createDownload(url,folderName,fileName,!1)}return{downloadFile:downloadFile,downloadSubtitles:downloadSubtitles,downloadImage:downloadImage}});
|
define([],function(){"use strict";function downloadFile(url,folder,localItem,imageUrl){return Promise.reject()}function downloadSubtitles(url,folder,fileName){return Promise.reject()}function downloadImage(url,folder,fileName){return Promise.reject()}function resyncTransfers(){return Promise.resolve()}function getDownloadItemCount(){return Promise.resolve(0)}return{downloadFile:downloadFile,downloadSubtitles:downloadSubtitles,downloadImage:downloadImage,resyncTransfers:resyncTransfers,getDownloadItemCount:getDownloadItemCount}});
|
|
@ -1 +1 @@
|
||||||
define(["idb"],function(){"use strict";function setup(){dbPromise=idb.open(dbName,dbVersion,function(upgradeDB){switch(upgradeDB.oldVersion){case 0:upgradeDB.createObjectStore(dbName)}})}function getByServerId(serverId){return dbPromise.then(function(db){return db.transaction(dbName).objectStore(dbName).getAll(null,1e3).then(function(all){return all.filter(function(item){return item.ServerId===serverId})})})}function getAll(){return dbPromise.then(function(db){return db.transaction(dbName).objectStore(dbName).getAll(null,1e4)})}function get(key){return dbPromise.then(function(db){return db.transaction(dbName).objectStore(dbName).get(key)})}function set(key,val){return dbPromise.then(function(db){var tx=db.transaction(dbName,"readwrite");return tx.objectStore(dbName).put(val,key),tx.complete})}function remove(key){return dbPromise.then(function(db){var tx=db.transaction(dbName,"readwrite");return tx.objectStore(dbName).delete(key),tx.complete})}function clear(){return dbPromise.then(function(db){var tx=db.transaction(dbName,"readwrite");return tx.objectStore(dbName).clear(key),tx.complete})}var dbPromise,dbName="useractions",dbVersion=1;return setup(),{get:get,set:set,remove:remove,clear:clear,getAll:getAll,getByServerId:getByServerId}});
|
define([],function(){"use strict";function getDb(callback){var db=databaseInstance;if(db)return void callback(db);var request=indexedDB.open(dbName,dbVersion);request.onerror=function(event){},request.onupgradeneeded=function(event){var db=event.target.result,objectStore=db.createObjectStore(dbName);objectStore.transaction.oncomplete=function(event){callback(db)}},request.onsuccess=function(event){var db=event.target.result;callback(db)}}function getByServerId(serverId){return getAll().then(function(items){return items.filter(function(item){return item.ServerId===serverId})})}function getAll(){return new Promise(function(resolve,reject){getDb(function(db){var request,storeName=dbName,transaction=db.transaction([storeName],"readonly"),objectStore=transaction.objectStore(storeName);if("getAll"in objectStore)request=objectStore.getAll(null,1e4),request.onsuccess=function(event){resolve(event.target.result)};else{var results=[];request=objectStore.openCursor(),request.onsuccess=function(event){var cursor=event.target.result;cursor?(results.push(cursor.value),cursor.continue()):resolve(results)}}request.onerror=reject})})}function get(key){return new Promise(function(resolve,reject){getDb(function(db){var storeName=dbName,transaction=db.transaction([storeName],"readonly"),objectStore=transaction.objectStore(storeName),request=objectStore.get(key);request.onerror=reject,request.onsuccess=function(event){resolve(request.result)}})})}function set(key,val){return new Promise(function(resolve,reject){getDb(function(db){var storeName=dbName,transaction=db.transaction([storeName],"readwrite"),objectStore=transaction.objectStore(storeName),request=objectStore.put(val,key);request.onerror=reject,request.onsuccess=resolve})})}function remove(key){return new Promise(function(resolve,reject){getDb(function(db){var storeName=dbName,transaction=db.transaction([storeName],"readwrite"),objectStore=transaction.objectStore(storeName),request=objectStore.delete(key);request.onerror=reject,request.onsuccess=resolve})})}function clear(){return new Promise(function(resolve,reject){getDb(function(db){var storeName=dbName,transaction=db.transaction([storeName],"readwrite"),objectStore=transaction.objectStore(storeName),request=objectStore.clear();request.onerror=reject,request.onsuccess=resolve})})}var databaseInstance,indexedDB=self.indexedDB||self.mozIndexedDB||self.webkitIndexedDB||self.msIndexedDB,dbName=(window.IDBTransaction||window.webkitIDBTransaction||window.msIDBTransaction||{READ_WRITE:"readwrite"},self.IDBKeyRange||self.webkitIDBKeyRange||self.msIDBKeyRange,"useractions"),dbVersion=1;return{get:get,set:set,remove:remove,clear:clear,getAll:getAll,getByServerId:getByServerId}});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1 +1 @@
|
||||||
define(["loading","dialogHelper","dom","layoutManager","scrollHelper","globalize","require","material-icons","emby-button","paper-icon-button-light","emby-input","formDialogStyle","flexStyles"],function(loading,dialogHelper,dom,layoutManager,scrollHelper,globalize,require){"use strict";function reloadPageWhenServerAvailable(retryCount){var apiClient=currentApiClient;apiClient&&apiClient.getJSON(apiClient.getUrl("System/Info")).then(function(info){info.IsShuttingDown?retryReload(retryCount):dialogHelper.close(currentDlg)},function(){retryReload(retryCount)})}function retryReload(retryCount){setTimeout(function(){retryCount=retryCount||0,retryCount++,retryCount<150&&reloadPageWhenServerAvailable(retryCount)},500)}function startRestart(apiClient,dlg){currentApiClient=apiClient,currentDlg=dlg,apiClient.restartServer().then(function(){setTimeout(reloadPageWhenServerAvailable,250)})}function showDialog(instance,options,template){function onButtonClick(){dialogHelper.close(dlg)}var dialogOptions={removeOnClose:!0,scrollY:!1},enableTvLayout=layoutManager.tv;enableTvLayout&&(dialogOptions.size="fullscreen");var dlg=dialogHelper.createDialog(dialogOptions),configuredButtons=[];dlg.classList.add("formDialog"),dlg.innerHTML=globalize.translateHtml(template,"sharedcomponents"),dlg.classList.add("align-items-center"),dlg.classList.add("justify-items-center");var formDialogContent=dlg.querySelector(".formDialogContent");formDialogContent.style["flex-grow"]="initial",enableTvLayout?(formDialogContent.style["max-width"]="50%",formDialogContent.style["max-height"]="60%",scrollHelper.centerFocus.on(formDialogContent,!1)):(formDialogContent.style.maxWidth=Math.min(150*configuredButtons.length+200,dom.getWindowSize().innerWidth-50)+"px",dlg.classList.add("dialog-fullscreen-lowres")),dlg.querySelector(".formDialogHeaderTitle").innerHTML=globalize.translate("sharedcomponents#HeaderRestartingEmbyServer"),dlg.querySelector(".text").innerHTML=globalize.translate("sharedcomponents#RestartPleaseWaitMessage");var i,length,html="";for(i=0,length=configuredButtons.length;i<length;i++){var item=configuredButtons[i],autoFocus=0===i?" autofocus":"",buttonClass="btnOption raised formDialogFooterItem formDialogFooterItem-autosize";item.type&&(buttonClass+=" button-"+item.type),html+='<button is="emby-button" type="button" class="'+buttonClass+'" data-id="'+item.id+'"'+autoFocus+">"+item.name+"</button>"}dlg.querySelector(".formDialogFooter").innerHTML=html;var buttons=dlg.querySelectorAll(".btnOption");for(i=0,length=buttons.length;i<length;i++)buttons[i].addEventListener("click",onButtonClick);var dlgPromise=dialogHelper.open(dlg);return startRestart(options.apiClient,dlg),dlgPromise.then(function(){enableTvLayout&&scrollHelper.centerFocus.off(dlg.querySelector(".formDialogContent"),!1),instance.destroy(),loading.hide()})}function ServerRestartDialog(options){this.options=options,this.show()}var currentApiClient,currentDlg;return ServerRestartDialog.prototype.show=function(){var instance=this;return loading.show(),new Promise(function(resolve,reject){require(["text!./../dialog/dialog.template.html"],function(template){showDialog(instance,instance.options,template).then(resolve,reject)})})},ServerRestartDialog.prototype.destroy=function(){currentApiClient=null,currentDlg=null,this.options=null},ServerRestartDialog});
|
define(["loading","events","dialogHelper","dom","layoutManager","scrollHelper","globalize","require","material-icons","emby-button","paper-icon-button-light","emby-input","formDialogStyle","flexStyles"],function(loading,events,dialogHelper,dom,layoutManager,scrollHelper,globalize,require){"use strict";function reloadPageWhenServerAvailable(retryCount){var apiClient=currentApiClient;apiClient&&apiClient.getJSON(apiClient.getUrl("System/Info")).then(function(info){info.IsShuttingDown?retryReload(retryCount):(currentInstance.restarted=!0,dialogHelper.close(currentDlg))},function(){retryReload(retryCount)})}function retryReload(retryCount){setTimeout(function(){retryCount=retryCount||0,retryCount++,retryCount<150&&reloadPageWhenServerAvailable(retryCount)},500)}function startRestart(instance,apiClient,dlg){currentApiClient=apiClient,currentDlg=dlg,currentInstance=instance,apiClient.restartServer().then(function(){setTimeout(reloadPageWhenServerAvailable,250)})}function showDialog(instance,options,template){function onButtonClick(){dialogHelper.close(dlg)}var dialogOptions={removeOnClose:!0,scrollY:!1},enableTvLayout=layoutManager.tv;enableTvLayout&&(dialogOptions.size="fullscreen");var dlg=dialogHelper.createDialog(dialogOptions),configuredButtons=[];dlg.classList.add("formDialog"),dlg.innerHTML=globalize.translateHtml(template,"sharedcomponents"),dlg.classList.add("align-items-center"),dlg.classList.add("justify-items-center");var formDialogContent=dlg.querySelector(".formDialogContent");formDialogContent.style["flex-grow"]="initial",enableTvLayout?(formDialogContent.style["max-width"]="50%",formDialogContent.style["max-height"]="60%",scrollHelper.centerFocus.on(formDialogContent,!1)):(formDialogContent.style.maxWidth=Math.min(150*configuredButtons.length+200,dom.getWindowSize().innerWidth-50)+"px",dlg.classList.add("dialog-fullscreen-lowres")),dlg.querySelector(".formDialogHeaderTitle").innerHTML=globalize.translate("sharedcomponents#HeaderRestartingEmbyServer"),dlg.querySelector(".text").innerHTML=globalize.translate("sharedcomponents#RestartPleaseWaitMessage");var i,length,html="";for(i=0,length=configuredButtons.length;i<length;i++){var item=configuredButtons[i],autoFocus=0===i?" autofocus":"",buttonClass="btnOption raised formDialogFooterItem formDialogFooterItem-autosize";item.type&&(buttonClass+=" button-"+item.type),html+='<button is="emby-button" type="button" class="'+buttonClass+'" data-id="'+item.id+'"'+autoFocus+">"+item.name+"</button>"}dlg.querySelector(".formDialogFooter").innerHTML=html;var buttons=dlg.querySelectorAll(".btnOption");for(i=0,length=buttons.length;i<length;i++)buttons[i].addEventListener("click",onButtonClick);var dlgPromise=dialogHelper.open(dlg);return startRestart(instance,options.apiClient,dlg),dlgPromise.then(function(){enableTvLayout&&scrollHelper.centerFocus.off(dlg.querySelector(".formDialogContent"),!1),instance.destroy(),loading.hide(),instance.restarted&&events.trigger(instance,"restarted")})}function ServerRestartDialog(options){this.options=options}var currentApiClient,currentDlg,currentInstance;return ServerRestartDialog.prototype.show=function(){var instance=this;return loading.show(),new Promise(function(resolve,reject){require(["text!./../dialog/dialog.template.html"],function(template){showDialog(instance,instance.options,template).then(resolve,reject)})})},ServerRestartDialog.prototype.destroy=function(){currentApiClient=null,currentDlg=null,currentInstance=null,this.options=null},ServerRestartDialog});
|
|
@ -10,8 +10,8 @@
|
||||||
"LabelScreensaver": "Bildschirmschoner:",
|
"LabelScreensaver": "Bildschirmschoner:",
|
||||||
"LabelSoundEffects": "Soundeffekte:",
|
"LabelSoundEffects": "Soundeffekte:",
|
||||||
"LabelSkin": "Skin:",
|
"LabelSkin": "Skin:",
|
||||||
"HeaderRestartingEmbyServer": "Restarting Emby Server",
|
"HeaderRestartingEmbyServer": "Emby Server neu starten",
|
||||||
"RestartPleaseWaitMessage": "Please wait while Emby Server shuts down and restarts. This may take a minute or two.",
|
"RestartPleaseWaitMessage": "Warte bitte bis der Emby Server heruntergefahren und neu gestartet wurde. Dieser Vorgang dauert 1 bis 2 Minuten.",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Schalte diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Schalte diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.",
|
||||||
"MessageUnlockAppWithSupporter": "Schalte diese Funktion mit einem aktiven Emby Premium Abo frei.",
|
"MessageUnlockAppWithSupporter": "Schalte diese Funktion mit einem aktiven Emby Premium Abo frei.",
|
||||||
"MessageToValidateSupporter": "Wenn du eine aktive Emby Premiere Mitgliedschaft hast, stelle bitte sicher, dass du diese \u00fcber das Emby Server Dashboard eingerichtet hast (Hauptmenu -> Emby Premiere).",
|
"MessageToValidateSupporter": "Wenn du eine aktive Emby Premiere Mitgliedschaft hast, stelle bitte sicher, dass du diese \u00fcber das Emby Server Dashboard eingerichtet hast (Hauptmenu -> Emby Premiere).",
|
||||||
|
|
|
@ -10,8 +10,8 @@
|
||||||
"LabelScreensaver": "Protector de Pantalla:",
|
"LabelScreensaver": "Protector de Pantalla:",
|
||||||
"LabelSoundEffects": "Efectos de Sonido:",
|
"LabelSoundEffects": "Efectos de Sonido:",
|
||||||
"LabelSkin": "Piel:",
|
"LabelSkin": "Piel:",
|
||||||
"HeaderRestartingEmbyServer": "Restarting Emby Server",
|
"HeaderRestartingEmbyServer": "Reiniciando el Servidor Emby",
|
||||||
"RestartPleaseWaitMessage": "Please wait while Emby Server shuts down and restarts. This may take a minute or two.",
|
"RestartPleaseWaitMessage": "Por favor espere mientras el Servidor Emby cierra y reinicia. Este puede tomar un minuto o dos.",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.",
|
||||||
"MessageUnlockAppWithSupporter": "Desbloquee esta caracter\u00edstica con una suscripci\u00f3n activa de Emby Premier.",
|
"MessageUnlockAppWithSupporter": "Desbloquee esta caracter\u00edstica con una suscripci\u00f3n activa de Emby Premier.",
|
||||||
"MessageToValidateSupporter": "Si tiene una subscripci\u00f3n de Emby Premiere activa, aseg\u00farese de que ha configurado Emby Premiere en el Panel de Control del Servidor Emby, al cual puede acceder dando click en Emby Premiere dentro del men\u00fa principal.",
|
"MessageToValidateSupporter": "Si tiene una subscripci\u00f3n de Emby Premiere activa, aseg\u00farese de que ha configurado Emby Premiere en el Panel de Control del Servidor Emby, al cual puede acceder dando click en Emby Premiere dentro del men\u00fa principal.",
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
"HeaderBecomeProjectSupporter": "Obtener Emby Premier",
|
"HeaderBecomeProjectSupporter": "Obtener Emby Premier",
|
||||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "Se requiere de una suscripci\u00f3n de Emby Premier para crear grabaciones automatizadas de series.",
|
"MessageActiveSubscriptionRequiredSeriesRecordings": "Se requiere de una suscripci\u00f3n de Emby Premier para crear grabaciones automatizadas de series.",
|
||||||
"LabelEmailAddress": "Direcci\u00f3n de correo:",
|
"LabelEmailAddress": "Direcci\u00f3n de correo:",
|
||||||
"PromoConvertRecordingsToStreamingFormat": "Convertir autom\u00e1ticamente grabaciones a un formato amigable para transmitir con Emby Premiere. Las grabaciones ser\u00e1n convertidos en tiempo real a MP4 o MKV, basado en las configuraciones del servidor Emby.",
|
"PromoConvertRecordingsToStreamingFormat": "Convertir autom\u00e1ticamente grabaciones a un formato amigable para transmitir con Emby Premiere. Las grabaciones ser\u00e1n convertidos en tiempo real a MP4 o MKV, basado en las configuraciones del Servidor Emby.",
|
||||||
"FeatureRequiresEmbyPremiere": "Esta caracter\u00edstica requiere de una suscripci\u00f3n activa de Emby Premiere.",
|
"FeatureRequiresEmbyPremiere": "Esta caracter\u00edstica requiere de una suscripci\u00f3n activa de Emby Premiere.",
|
||||||
"HeaderConvertYourRecordings": "Convertir Sus Grabaciones",
|
"HeaderConvertYourRecordings": "Convertir Sus Grabaciones",
|
||||||
"Record": "Grabar",
|
"Record": "Grabar",
|
||||||
|
@ -166,7 +166,7 @@
|
||||||
"LabelOriginalTitle": "Titulo original:",
|
"LabelOriginalTitle": "Titulo original:",
|
||||||
"LabelSortTitle": "Titulo para ordenar:",
|
"LabelSortTitle": "Titulo para ordenar:",
|
||||||
"LabelDateAdded": "Fecha de adici\u00f3n:",
|
"LabelDateAdded": "Fecha de adici\u00f3n:",
|
||||||
"ConfigureDateAdded": "Configure como la fecha de adici\u00f3n es determinada en el Panel de Control del Servidor Emby bajo la configuraci\u00f3n de Librerias",
|
"ConfigureDateAdded": "Configure como la fecha de adici\u00f3n es determinada en el Panel de Control del Servidor Emby bajo la configuraci\u00f3n de Bibliotecas",
|
||||||
"LabelStatus": "Estado:",
|
"LabelStatus": "Estado:",
|
||||||
"LabelArtists": "Artistas:",
|
"LabelArtists": "Artistas:",
|
||||||
"LabelArtistsHelp": "Separar m\u00faltiples empleando:",
|
"LabelArtistsHelp": "Separar m\u00faltiples empleando:",
|
||||||
|
@ -410,7 +410,7 @@
|
||||||
"Fill": "Llenar",
|
"Fill": "Llenar",
|
||||||
"BestFit": "Mejor ajuste",
|
"BestFit": "Mejor ajuste",
|
||||||
"MessageNoServersAvailableToConnect": "No hay servidores disponibles para conectarse. Si se le ha invitado a compartir un servidor, aseg\u00farese de aceptarlo aqu\u00ed abajo o haciendo clic en la liga del correo electr\u00f3nico.",
|
"MessageNoServersAvailableToConnect": "No hay servidores disponibles para conectarse. Si se le ha invitado a compartir un servidor, aseg\u00farese de aceptarlo aqu\u00ed abajo o haciendo clic en la liga del correo electr\u00f3nico.",
|
||||||
"MessagePlayAccessRestricted": "La reproducci\u00f3n de este contenido se encuentra restringida actualmente. Por favor contacte a su administrador para mas informaci\u00f3n.",
|
"MessagePlayAccessRestricted": "La reproducci\u00f3n de este contenido se encuentra restringida actualmente. Por favor contacte a su administrador del Servidor Emby para mas informaci\u00f3n.",
|
||||||
"Accept": "Aceptar",
|
"Accept": "Aceptar",
|
||||||
"Reject": "Rechazar",
|
"Reject": "Rechazar",
|
||||||
"Connect": "Conectar",
|
"Connect": "Conectar",
|
||||||
|
|
|
@ -6,12 +6,12 @@
|
||||||
"LabelDisplayMode": "Mode d'affichage :",
|
"LabelDisplayMode": "Mode d'affichage :",
|
||||||
"DisplayModeHelp": "S\u00e9lectionner le type d'\u00e9cran sur lequel vous utilisez Emby.",
|
"DisplayModeHelp": "S\u00e9lectionner le type d'\u00e9cran sur lequel vous utilisez Emby.",
|
||||||
"EnableThemeVideos": "Activer les th\u00e8mes vid\u00e9os",
|
"EnableThemeVideos": "Activer les th\u00e8mes vid\u00e9os",
|
||||||
"EnableThemeVideosHelp": "Si activ\u00e9, les th\u00e8mes vid\u00e9os seront lues en arri\u00e8re-plan tout en parcourant la biblioth\u00e8que.",
|
"EnableThemeVideosHelp": "Si activ\u00e9, les th\u00e8mes vid\u00e9os seront lus en arri\u00e8re-plan tout en parcourant la m\u00e9diath\u00e8que.",
|
||||||
"LabelScreensaver": "\u00c9conomiseur d'\u00e9cran:",
|
"LabelScreensaver": "\u00c9conomiseur d'\u00e9cran\u00a0:",
|
||||||
"LabelSoundEffects": "Effets sonores:",
|
"LabelSoundEffects": "Effets sonores\u00a0:",
|
||||||
"LabelSkin": "Habillage:",
|
"LabelSkin": "Habillage\u00a0:",
|
||||||
"HeaderRestartingEmbyServer": "Restarting Emby Server",
|
"HeaderRestartingEmbyServer": "Red\u00e9marrage du serveur Emby",
|
||||||
"RestartPleaseWaitMessage": "Please wait while Emby Server shuts down and restarts. This may take a minute or two.",
|
"RestartPleaseWaitMessage": "Veuillez patienter pendant que le serveur Emby s'arr\u00eate et red\u00e9marre. Cela peut prendre une minute ou deux.",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique, ou avec un abonnement Emby Premiere.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat unique, ou avec un abonnement Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un abonnement Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un abonnement Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premiere, veuillez vous assurer que vous avez configur\u00e9 Emby Premiere dans le tableau de bord de votre serveur Emby auquel vous pouvez acc\u00e9der en cliquant sur Emby Premiere dans le menu principal",
|
"MessageToValidateSupporter": "Si vous avez un abonnement Emby Premiere, veuillez vous assurer que vous avez configur\u00e9 Emby Premiere dans le tableau de bord de votre serveur Emby auquel vous pouvez acc\u00e9der en cliquant sur Emby Premiere dans le menu principal",
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
"OriginalAirDateValue": "Date de diffusion originale\u00a0: {0}",
|
"OriginalAirDateValue": "Date de diffusion originale\u00a0: {0}",
|
||||||
"EndsAtValue": "Se termine \u00e0 {0}",
|
"EndsAtValue": "Se termine \u00e0 {0}",
|
||||||
"HeaderSelectDate": "S\u00e9lectionnez la date",
|
"HeaderSelectDate": "S\u00e9lectionnez la date",
|
||||||
"ButtonOk": "Ok",
|
"ButtonOk": "OK",
|
||||||
"ButtonCancel": "Annuler",
|
"ButtonCancel": "Annuler",
|
||||||
"AccessRestrictedTryAgainLater": "L'acc\u00e8s est actuellement restreint. Veuillez r\u00e9essayer plus tard.",
|
"AccessRestrictedTryAgainLater": "L'acc\u00e8s est actuellement restreint. Veuillez r\u00e9essayer plus tard.",
|
||||||
"ButtonGotIt": "Compris",
|
"ButtonGotIt": "Compris",
|
||||||
|
|
|
@ -3,14 +3,14 @@
|
||||||
"Desktop": "\u0416\u04b1\u043c\u044b\u0441 \u04af\u0441\u0442\u0435\u043b\u0456",
|
"Desktop": "\u0416\u04b1\u043c\u044b\u0441 \u04af\u0441\u0442\u0435\u043b\u0456",
|
||||||
"Mobile": "\u04b0\u044f\u043b\u044b \/ \u041f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0456\u043a",
|
"Mobile": "\u04b0\u044f\u043b\u044b \/ \u041f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0456\u043a",
|
||||||
"TV": "\u0422\u0414",
|
"TV": "\u0422\u0414",
|
||||||
"LabelDisplayMode": "Display mode:",
|
"LabelDisplayMode": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u0440\u0435\u0436\u0456\u043c\u0456:",
|
||||||
"DisplayModeHelp": "Select the type of screen you're running Emby on.",
|
"DisplayModeHelp": "Select the type of screen you're running Emby on.",
|
||||||
"EnableThemeVideos": "Enable theme videos",
|
"EnableThemeVideos": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
|
||||||
"EnableThemeVideosHelp": "If enabled, theme videos will be played in the background while browsing the library.",
|
"EnableThemeVideosHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0448\u043e\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0442\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04e9\u04a3\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b.",
|
||||||
"LabelScreensaver": "Screensaver:",
|
"LabelScreensaver": "Screensaver:",
|
||||||
"LabelSoundEffects": "Sound effects:",
|
"LabelSoundEffects": "Sound effects:",
|
||||||
"LabelSkin": "Skin:",
|
"LabelSkin": "Skin:",
|
||||||
"HeaderRestartingEmbyServer": "Restarting Emby Server",
|
"HeaderRestartingEmbyServer": "Emby Server \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u0434\u0430",
|
||||||
"RestartPleaseWaitMessage": "Please wait while Emby Server shuts down and restarts. This may take a minute or two.",
|
"RestartPleaseWaitMessage": "Please wait while Emby Server shuts down and restarts. This may take a minute or two.",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0456\u0440 \u0436\u043e\u043b\u0493\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443, \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0456\u0440 \u0436\u043e\u043b\u0493\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443, \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
|
||||||
"MessageUnlockAppWithSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
|
"MessageUnlockAppWithSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.",
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||||
"Add": "\u04ae\u0441\u0442\u0435\u0443",
|
"Add": "\u04ae\u0441\u0442\u0435\u0443",
|
||||||
"ServerUpdateNeeded": "\u041e\u0441\u044b Emby Server \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u04a3\u0493\u044b \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, {0} \u043a\u0456\u0440\u0456\u04a3\u0456\u0437",
|
"ServerUpdateNeeded": "\u041e\u0441\u044b Emby Server \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u04a3\u0493\u044b \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, {0} \u043a\u0456\u0440\u0456\u04a3\u0456\u0437",
|
||||||
"LiveTvRequiresUnlock": "Live TV requires an active Emby Premiere subscription.",
|
"LiveTvRequiresUnlock": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442",
|
||||||
"AttributeNew": "\u0416\u0430\u04a3\u0430",
|
"AttributeNew": "\u0416\u0430\u04a3\u0430",
|
||||||
"Premiere": "\u0422\u04b1\u0441\u0430\u0443\u043a\u0435\u0441\u0435\u0440\u0456",
|
"Premiere": "\u0422\u04b1\u0441\u0430\u0443\u043a\u0435\u0441\u0435\u0440\u0456",
|
||||||
"Live": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439",
|
"Live": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439",
|
||||||
|
@ -90,10 +90,10 @@
|
||||||
"SearchForCollectionInternetMetadata": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u043c\u0435\u043b\u0435\u0440 \u0431\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d \u0456\u0437\u0434\u0435\u0443",
|
"SearchForCollectionInternetMetadata": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u043c\u0435\u043b\u0435\u0440 \u0431\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d \u0456\u0437\u0434\u0435\u0443",
|
||||||
"DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
|
"DisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
|
||||||
"DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.",
|
"DisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.",
|
||||||
"EnableThemeSongs": "Enable theme songs",
|
"EnableThemeSongs": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
|
||||||
"EnableBackdrops": "Enable backdrops",
|
"EnableBackdrops": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
|
||||||
"EnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
|
"EnableThemeSongsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0448\u043e\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0442\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440 \u04e9\u04a3\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b.",
|
||||||
"EnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
|
"EnableBackdropsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0430\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0448\u043e\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0431\u0456\u0440 \u0431\u0435\u0442\u0442\u0435\u0440\u0434\u0435 \u04e9\u04a3\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
|
||||||
"LabelName": "\u0410\u0442\u044b:",
|
"LabelName": "\u0410\u0442\u044b:",
|
||||||
"NewCollectionNameExample": "\u041c\u044b\u0441\u0430\u043b: \u0416\u04b1\u043b\u0434\u044b\u0437 \u0441\u043e\u0493\u044b\u0441\u0442\u0430\u0440\u044b (\u0436\u0438\u044b\u043d\u0442\u044b\u049b)",
|
"NewCollectionNameExample": "\u041c\u044b\u0441\u0430\u043b: \u0416\u04b1\u043b\u0434\u044b\u0437 \u0441\u043e\u0493\u044b\u0441\u0442\u0430\u0440\u044b (\u0436\u0438\u044b\u043d\u0442\u044b\u049b)",
|
||||||
"MessageItemsAdded": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d.",
|
"MessageItemsAdded": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d.",
|
||||||
|
@ -102,8 +102,8 @@
|
||||||
"AddToPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443",
|
"AddToPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443",
|
||||||
"HeaderAddToPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443",
|
"HeaderAddToPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443",
|
||||||
"Subtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
|
"Subtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
|
||||||
"LabelTheme": "Theme:",
|
"LabelTheme": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f:",
|
||||||
"LabelDashboardTheme": "Server dashboard theme:",
|
"LabelDashboardTheme": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u044b\u04a3 \u0442\u0430\u049b\u044b\u0440\u044b\u0431\u044b:",
|
||||||
"SearchForSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0456\u0437\u0434\u0435\u0443",
|
"SearchForSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0456\u0437\u0434\u0435\u0443",
|
||||||
"LabelLanguage": "\u0422\u0456\u043b:",
|
"LabelLanguage": "\u0422\u0456\u043b:",
|
||||||
"Search": "\u0406\u0437\u0434\u0435\u0443",
|
"Search": "\u0406\u0437\u0434\u0435\u0443",
|
||||||
|
@ -205,7 +205,7 @@
|
||||||
"HeaderExternalIds": "\u0421\u044b\u0440\u0442\u049b\u044b \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0433\u0456\u0448\u0442\u0435\u0440:",
|
"HeaderExternalIds": "\u0421\u044b\u0440\u0442\u049b\u044b \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0433\u0456\u0448\u0442\u0435\u0440:",
|
||||||
"HeaderDisplaySettings": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
|
"HeaderDisplaySettings": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
|
||||||
"LabelDisplayOrder": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u0440\u0435\u0442\u0456:",
|
"LabelDisplayOrder": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u0440\u0435\u0442\u0456:",
|
||||||
"Display": "Display",
|
"Display": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
|
||||||
"Countries": "\u0415\u043b\u0434\u0435\u0440",
|
"Countries": "\u0415\u043b\u0434\u0435\u0440",
|
||||||
"Genres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
|
"Genres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
|
||||||
"Studios": "\u0421\u0442\u0443\u0434\u0438\u044f\u043b\u0430\u0440",
|
"Studios": "\u0421\u0442\u0443\u0434\u0438\u044f\u043b\u0430\u0440",
|
||||||
|
|
|
@ -10,8 +10,8 @@
|
||||||
"LabelScreensaver": "Wygaszacz ekranu:",
|
"LabelScreensaver": "Wygaszacz ekranu:",
|
||||||
"LabelSoundEffects": "Efekty d\u017awi\u0119kowe",
|
"LabelSoundEffects": "Efekty d\u017awi\u0119kowe",
|
||||||
"LabelSkin": "Sk\u00f3ra:",
|
"LabelSkin": "Sk\u00f3ra:",
|
||||||
"HeaderRestartingEmbyServer": "Restarting Emby Server",
|
"HeaderRestartingEmbyServer": "Trwa ponownie uruchomienie serwera Emby",
|
||||||
"RestartPleaseWaitMessage": "Please wait while Emby Server shuts down and restarts. This may take a minute or two.",
|
"RestartPleaseWaitMessage": "Czekaj na zamkni\u0119cie i ponowne uruchomienie serwera Emby. To mo\u017ce trwa\u0107 ok. jednej, dw\u00f3ch minut.",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119, za niewielk\u0105 jednorazow\u0105 op\u0142at\u0105 lub przy u\u017cyciu aktywnej subskrypcji Emby Premium.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119, za niewielk\u0105 jednorazow\u0105 op\u0142at\u0105 lub przy u\u017cyciu aktywnej subskrypcji Emby Premium.",
|
||||||
"MessageUnlockAppWithSupporter": "Odblokuj t\u0119 funkcj\u0119 przy u\u017cyciu subskrypcji Emby Premium.",
|
"MessageUnlockAppWithSupporter": "Odblokuj t\u0119 funkcj\u0119 przy u\u017cyciu subskrypcji Emby Premium.",
|
||||||
"MessageToValidateSupporter": "Je\u015bli posiadasz aktywn\u0105 subskrypcj\u0119 Emby Premium, upewnij si\u0119, \u017ce j\u0105 poprawnie skonfigurowa\u0142e\u015b przy pomocy Kokpitu serwera Emby, do kt\u00f3rego mo\u017cesz uzyska\u0107 dost\u0119p, klikaj\u0105c na pozycj\u0119 Premium menu startowego.",
|
"MessageToValidateSupporter": "Je\u015bli posiadasz aktywn\u0105 subskrypcj\u0119 Emby Premium, upewnij si\u0119, \u017ce j\u0105 poprawnie skonfigurowa\u0142e\u015b przy pomocy Kokpitu serwera Emby, do kt\u00f3rego mo\u017cesz uzyska\u0107 dost\u0119p, klikaj\u0105c na pozycj\u0119 Premium menu startowego.",
|
||||||
|
|
|
@ -8,10 +8,10 @@
|
||||||
"EnableThemeVideos": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
|
"EnableThemeVideos": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||||
"EnableThemeVideosHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u0431\u0443\u0434\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c\u0441\u044f \u0444\u043e\u043d\u043e\u043c \u043f\u0440\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
|
"EnableThemeVideosHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u0431\u0443\u0434\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c\u0441\u044f \u0444\u043e\u043d\u043e\u043c \u043f\u0440\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
|
||||||
"LabelScreensaver": "\u0425\u0440\u0430\u043d\u0438\u0442\u0435\u043b\u044c \u044d\u043a\u0440\u0430\u043d\u0430:",
|
"LabelScreensaver": "\u0425\u0440\u0430\u043d\u0438\u0442\u0435\u043b\u044c \u044d\u043a\u0440\u0430\u043d\u0430:",
|
||||||
"LabelSoundEffects": "Sound effects:",
|
"LabelSoundEffects": "\u0417\u0432\u0443\u043a\u043e\u0432\u044b\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u044b:",
|
||||||
"LabelSkin": "\u041e\u0431\u043e\u043b\u043e\u0447\u043a\u0430:",
|
"LabelSkin": "\u041e\u0431\u043e\u043b\u043e\u0447\u043a\u0430:",
|
||||||
"HeaderRestartingEmbyServer": "Restarting Emby Server",
|
"HeaderRestartingEmbyServer": "Emby Server \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f",
|
||||||
"RestartPleaseWaitMessage": "Please wait while Emby Server shuts down and restarts. This may take a minute or two.",
|
"RestartPleaseWaitMessage": "\u041f\u043e\u0434\u043e\u0436\u0434\u0438\u0442\u0435, \u043f\u043e\u043a\u0430 Emby Server \u0432\u044b\u043a\u043b\u044e\u0447\u0438\u0442\u0441\u044f \u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0441\u044f. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043c\u0438\u043d\u0443\u0442\u0443 \u0438\u043b\u0438 \u0434\u0432\u0435.",
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .",
|
"MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .",
|
||||||
"MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.",
|
"MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e Emby Premiere \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u0432 \u0432\u0430\u0448\u0435\u0439 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u043e \u0449\u0435\u043b\u0447\u043a\u0443 \u043f\u043e Emby Premiere \u0432 \u0433\u043b\u0430\u0432\u043d\u043e\u043c \u043c\u0435\u043d\u044e.",
|
"MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e Emby Premiere \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u0432 \u0432\u0430\u0448\u0435\u0439 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043f\u043e \u0449\u0435\u043b\u0447\u043a\u0443 \u043f\u043e Emby Premiere \u0432 \u0433\u043b\u0430\u0432\u043d\u043e\u043c \u043c\u0435\u043d\u044e.",
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03ad\u03c1\u03b2\u03b5\u03c1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
"LabelAllowServerAutoRestart": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03ad\u03c1\u03b2\u03b5\u03c1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
|
||||||
"LabelAllowServerAutoRestartHelp": "\u039f \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03b8\u03b1 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b9\u03c2 \u03bc\u03b7 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5\u03c2, \u03cc\u03c4\u03b1\u03bd \u03ba\u03b1\u03bd\u03b5\u03af\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2.",
|
"LabelAllowServerAutoRestartHelp": "\u039f \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03b8\u03b1 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b9\u03c2 \u03bc\u03b7 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5\u03c2, \u03cc\u03c4\u03b1\u03bd \u03ba\u03b1\u03bd\u03b5\u03af\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2.",
|
||||||
"LabelRunServerAtStartup": "\u039e\u03b5\u03ba\u03af\u03bd\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7",
|
"LabelRunServerAtStartup": "\u039e\u03b5\u03ba\u03af\u03bd\u03b7\u03c3\u03b5 \u03c4\u03bf\u03bd \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7",
|
||||||
"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 Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"ButtonSelectDirectory": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5",
|
"ButtonSelectDirectory": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5",
|
||||||
"LabelCachePath": "Cache path:",
|
"LabelCachePath": "Cache path:",
|
||||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -79,7 +79,7 @@
|
||||||
"LabelSaveLocalMetadata": "Guardar im\u00e1genes y metadatos en las carpetas de medios",
|
"LabelSaveLocalMetadata": "Guardar im\u00e1genes y metadatos en las carpetas de medios",
|
||||||
"LabelSaveLocalMetadataHelp": "Guardar im\u00e1genes y metadatos directamente en las carpetas de medios los colocar\u00e1 en un lugar donde se pueden editar f\u00e1cilmente.",
|
"LabelSaveLocalMetadataHelp": "Guardar im\u00e1genes y metadatos directamente en las carpetas de medios los colocar\u00e1 en un lugar donde se pueden editar f\u00e1cilmente.",
|
||||||
"LabelDownloadInternetMetadata": "Descargar im\u00e1genes y metadatos de internet",
|
"LabelDownloadInternetMetadata": "Descargar im\u00e1genes y metadatos de internet",
|
||||||
"LabelDownloadInternetMetadataHelp": "El servidor Emby puede descargar informaci\u00f3n sobre sus medios para habilitar presentaciones mas enriquecidas.",
|
"LabelDownloadInternetMetadataHelp": "El Servidor Emby puede descargar informaci\u00f3n sobre sus medios para habilitar presentaciones mas enriquecidas.",
|
||||||
"TabPassword": "Contrase\u00f1a",
|
"TabPassword": "Contrase\u00f1a",
|
||||||
"TabLibraryAccess": "Acceso a biblioteca",
|
"TabLibraryAccess": "Acceso a biblioteca",
|
||||||
"TabAccess": "Acceso",
|
"TabAccess": "Acceso",
|
||||||
|
@ -95,7 +95,7 @@
|
||||||
"OptionEnableAccessToAllLibraries": "Habilitar el acceso a todas las bibliotecas",
|
"OptionEnableAccessToAllLibraries": "Habilitar el acceso a todas las bibliotecas",
|
||||||
"DeviceAccessHelp": "Esto solo aplica a dispositivos que pueden ser identificados de manera individual y no evitar\u00e1 acceso al navegador. Al filtrar el acceso de usuarios a dispositivos se impedir\u00e1 que utilicen nuevos dispositivos hasta que hayan sido aprobados aqu\u00ed.",
|
"DeviceAccessHelp": "Esto solo aplica a dispositivos que pueden ser identificados de manera individual y no evitar\u00e1 acceso al navegador. Al filtrar el acceso de usuarios a dispositivos se impedir\u00e1 que utilicen nuevos dispositivos hasta que hayan sido aprobados aqu\u00ed.",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasons": "Mostar episodios no disponibles en las temporadas",
|
"LabelDisplayMissingEpisodesWithinSeasons": "Mostar episodios no disponibles en las temporadas",
|
||||||
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "Esta opci\u00f3n tambi\u00e9n debe de estar habilitada en la configuraci\u00f3n del servidor Emby para bibliotecas de TV.",
|
"LabelDisplayMissingEpisodesWithinSeasonsHelp": "Esta opci\u00f3n tambi\u00e9n debe de estar habilitada en la configuraci\u00f3n del Servidor Emby para bibliotecas de TV.",
|
||||||
"LabelUnairedMissingEpisodesWithinSeasons": "Mostrar episodios a\u00fan no emitidos en las temporadas",
|
"LabelUnairedMissingEpisodesWithinSeasons": "Mostrar episodios a\u00fan no emitidos en las temporadas",
|
||||||
"ImportMissingEpisodesHelp": "Si se habilita, se importara a su base de datos de Emby informaci\u00f3n sobre episodios faltantes y se mostrara dentro de las temporadas y series. Esto podr\u00eda ocasionar escaneos de biblioteca significativamente mas largos.",
|
"ImportMissingEpisodesHelp": "Si se habilita, se importara a su base de datos de Emby informaci\u00f3n sobre episodios faltantes y se mostrara dentro de las temporadas y series. Esto podr\u00eda ocasionar escaneos de biblioteca significativamente mas largos.",
|
||||||
"MessageEnablingOptionLongerScans": "Habilitar esta opci\u00f3n podr\u00eda resultar en escaneos de bibliotecas significativamente mas largos.",
|
"MessageEnablingOptionLongerScans": "Habilitar esta opci\u00f3n podr\u00eda resultar en escaneos de bibliotecas significativamente mas largos.",
|
||||||
|
@ -136,7 +136,7 @@
|
||||||
"MessageNothingHere": "Nada aqu\u00ed.",
|
"MessageNothingHere": "Nada aqu\u00ed.",
|
||||||
"MessagePleaseEnsureInternetMetadata": "Por favor aseg\u00farese que la descarga de metadatos de internet esta habilitada.",
|
"MessagePleaseEnsureInternetMetadata": "Por favor aseg\u00farese que la descarga de metadatos de internet esta habilitada.",
|
||||||
"AlreadyPaidHelp1": "Si ya ha pagado para instalar una versi\u00f3n antigua de Media Browser para Android, no necesita pagar de nuevo para activar esta app. De clic en OK para enviarnos un correo electr\u00f3nico a {0} y nosotros la activaremos por usted.",
|
"AlreadyPaidHelp1": "Si ya ha pagado para instalar una versi\u00f3n antigua de Media Browser para Android, no necesita pagar de nuevo para activar esta app. De clic en OK para enviarnos un correo electr\u00f3nico a {0} y nosotros la activaremos por usted.",
|
||||||
"AlreadyPaidHelp2": "\u00bfYa cuenta con Emby Premiere? Solo cancele este cuadro de dialogo, configure Emby Premiere en su servidor Emby bajo Ayuda-> Emby Premiere, y se desbloqueara autom\u00e1ticamente.",
|
"AlreadyPaidHelp2": "\u00bfYa cuenta con Emby Premiere? Solo cancele este cuadro de dialogo, configure Emby Premiere en su Servidor Emby bajo Ayuda-> Emby Premiere, y se desbloqueara autom\u00e1ticamente.",
|
||||||
"TabSuggestions": "Sugerencias",
|
"TabSuggestions": "Sugerencias",
|
||||||
"TabLatest": "Recientes",
|
"TabLatest": "Recientes",
|
||||||
"TabUpcoming": "Proximamente",
|
"TabUpcoming": "Proximamente",
|
||||||
|
@ -528,7 +528,7 @@
|
||||||
"ButtonUpdateNow": "Actualizar Ahora",
|
"ButtonUpdateNow": "Actualizar Ahora",
|
||||||
"TabHosting": "Hospedaje",
|
"TabHosting": "Hospedaje",
|
||||||
"PleaseUpdateManually": "Por favor apague el Servidor Emby e instale la versi\u00f3n mas reciente.",
|
"PleaseUpdateManually": "Por favor apague el Servidor Emby e instale la versi\u00f3n mas reciente.",
|
||||||
"NewServerVersionAvailable": "\u00a1Una nueva versi\u00f3n de Emby esta disponible!",
|
"NewServerVersionAvailable": "\u00a1Una nueva versi\u00f3n del Servidor Emby esta disponible!",
|
||||||
"ServerUpToDate": "El Servidor Emby esta actualizado",
|
"ServerUpToDate": "El Servidor Emby esta actualizado",
|
||||||
"LabelComponentsUpdated": "Los siguientes componentes han sido instalados o actualizados:",
|
"LabelComponentsUpdated": "Los siguientes componentes han sido instalados o actualizados:",
|
||||||
"MessagePleaseRestartServerToFinishUpdating": "Por favor reinicie el servidor para completar la aplicaci\u00f3n de las actualizaciones.",
|
"MessagePleaseRestartServerToFinishUpdating": "Por favor reinicie el servidor para completar la aplicaci\u00f3n de las actualizaciones.",
|
||||||
|
@ -1061,8 +1061,8 @@
|
||||||
"HeaderParentalRatings": "Clasificaci\u00f3n Parental",
|
"HeaderParentalRatings": "Clasificaci\u00f3n Parental",
|
||||||
"HeaderVideoTypes": "Tipos de Video",
|
"HeaderVideoTypes": "Tipos de Video",
|
||||||
"HeaderYears": "A\u00f1os",
|
"HeaderYears": "A\u00f1os",
|
||||||
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:",
|
"HeaderBlockItemsWithNoRating": "Bloquear \u00edtems sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:",
|
||||||
"LabelBlockContentWithTags": "Bloquear contenidos con etiquetas:",
|
"LabelBlockContentWithTags": "Bloquear \u00edtems con etiquetas:",
|
||||||
"LabelEnableSingleImageInDidlLimit": "Limitar a una sola imagen incrustada.",
|
"LabelEnableSingleImageInDidlLimit": "Limitar a una sola imagen incrustada.",
|
||||||
"LabelEnableSingleImageInDidlLimitHelp": "Algunos dispositivos no renderisaran apropiadamente si hay m\u00faltiples im\u00e1genes incrustadas en el Didl",
|
"LabelEnableSingleImageInDidlLimitHelp": "Algunos dispositivos no renderisaran apropiadamente si hay m\u00faltiples im\u00e1genes incrustadas en el Didl",
|
||||||
"TabActivity": "Actividad",
|
"TabActivity": "Actividad",
|
||||||
|
@ -1279,7 +1279,7 @@
|
||||||
"MessageItemsAdded": "\u00cdtems agregados",
|
"MessageItemsAdded": "\u00cdtems agregados",
|
||||||
"HeaderSelectCertificatePath": "Seleccione la Ruta del Certificado",
|
"HeaderSelectCertificatePath": "Seleccione la Ruta del Certificado",
|
||||||
"HeaderSupporterBenefit": "Una suscripci\u00f3n Emby Premiere activa provee beneficios adicionales como acceso a Emby DVR, medios sin conexion, complementos premium, y mas. {0}Conocer mas{1}.",
|
"HeaderSupporterBenefit": "Una suscripci\u00f3n Emby Premiere activa provee beneficios adicionales como acceso a Emby DVR, medios sin conexion, complementos premium, y mas. {0}Conocer mas{1}.",
|
||||||
"HeaderWelcomeToProjectServerDashboard": "Bienvenido al Panel de Control de Emby",
|
"HeaderWelcomeToProjectServerDashboard": "Bienvenido al Panel de Control del Servidor Emby",
|
||||||
"HeaderWelcomeToProjectWebClient": "Bienvenido a Emby",
|
"HeaderWelcomeToProjectWebClient": "Bienvenido a Emby",
|
||||||
"ButtonTakeTheTour": "Haga el recorrido",
|
"ButtonTakeTheTour": "Haga el recorrido",
|
||||||
"HeaderWelcomeBack": "\u00a1Bienvenido nuevamente!",
|
"HeaderWelcomeBack": "\u00a1Bienvenido nuevamente!",
|
||||||
|
@ -1821,7 +1821,7 @@
|
||||||
"TabResumeSettings": "Configuraci\u00f3n para Continuar",
|
"TabResumeSettings": "Configuraci\u00f3n para Continuar",
|
||||||
"DrmChannelsNotImported": "Los canales con DRM no ser\u00e1n importados.",
|
"DrmChannelsNotImported": "Los canales con DRM no ser\u00e1n importados.",
|
||||||
"LabelAllowHWTranscoding": "Permitir transcodificacion de hardware",
|
"LabelAllowHWTranscoding": "Permitir transcodificacion de hardware",
|
||||||
"AllowHWTranscodingHelp": "Si se habilita, permite a la sintonizadora transcodificar transmisiones al vuelo. Esto podr\u00eda ayudar a reducir la transcodificacion requer\u00eda por el Servidor Emby.",
|
"AllowHWTranscodingHelp": "Si se habilita, permite a la sintonizadora transcodificar transmisiones al vuelo. Esto podr\u00eda ayudar a reducir la transcodificacion requerida por el Servidor Emby.",
|
||||||
"OptionRequirePerfectSubtitleMatch": "Solo descargar subtitulos que corresponden perfectamente para mis archivos de video.",
|
"OptionRequirePerfectSubtitleMatch": "Solo descargar subtitulos que corresponden perfectamente para mis archivos de video.",
|
||||||
"OptionRequirePerfectSubtitleMatchHelp": "Solicitar una coincidencia perfecta filtrara los subtitulos para incluir solo aquellos que han sido verificados exactamente con su archivo de video. Desmarcar esta opci\u00f3n incrementara las probabilidades de que los subtitulos sean descargados, a la vez que incrementara las posibilidades de obtener subtitulos mal sincronizados o con texto incorrecto.",
|
"OptionRequirePerfectSubtitleMatchHelp": "Solicitar una coincidencia perfecta filtrara los subtitulos para incluir solo aquellos que han sido verificados exactamente con su archivo de video. Desmarcar esta opci\u00f3n incrementara las probabilidades de que los subtitulos sean descargados, a la vez que incrementara las posibilidades de obtener subtitulos mal sincronizados o con texto incorrecto.",
|
||||||
"GuestUserNotFound": "Usuario no encontrado. Por favor aseg\u00farese de que el nombre es correcto e intente de nuevo, o intente introducir la direcci\u00f3n de correo de su invitado.",
|
"GuestUserNotFound": "Usuario no encontrado. Por favor aseg\u00farese de que el nombre es correcto e intente de nuevo, o intente introducir la direcci\u00f3n de correo de su invitado.",
|
||||||
|
@ -1866,7 +1866,7 @@
|
||||||
"FFmpegSavePathNotFound": "No fue posible localizar FFmpeg usando la ruta que introdujo. FFprobe tambi\u00e9n es requerido y debe de estar en la misma carpeta. Estos componentes normalmente est\u00e1n empaquetados en la misma descarga. Por favor verifique la ruta e intente de nuevo.",
|
"FFmpegSavePathNotFound": "No fue posible localizar FFmpeg usando la ruta que introdujo. FFprobe tambi\u00e9n es requerido y debe de estar en la misma carpeta. Estos componentes normalmente est\u00e1n empaquetados en la misma descarga. Por favor verifique la ruta e intente de nuevo.",
|
||||||
"XmlTvPremiere": "Por defecto, Emby importara {0} horas de datos de la gu\u00eda. Para importar datos ilimitados necesita una subscripcion activa de Emby Premiere",
|
"XmlTvPremiere": "Por defecto, Emby importara {0} horas de datos de la gu\u00eda. Para importar datos ilimitados necesita una subscripcion activa de Emby Premiere",
|
||||||
"MoreFromValue": "Mas de {0}",
|
"MoreFromValue": "Mas de {0}",
|
||||||
"OptionSaveMetadataAsHiddenHelp": "Cambiando esto se aplicara a nuevos metadatos en adelante. Los archivos de metadatos existentes ser\u00e1n actualizados la pr\u00f3xima vez que sean guardados por el Servidor Emby",
|
"OptionSaveMetadataAsHiddenHelp": "Cambiar esto aplicar\u00e1 a nuevos metadatos alamacenados en lo sucesivo. Los archivos de metadatos existentes ser\u00e1n actualizados la pr\u00f3xima vez que sean guardados por el Servidor Emby",
|
||||||
"EnablePhotos": "Habilitar fotograf\u00edas",
|
"EnablePhotos": "Habilitar fotograf\u00edas",
|
||||||
"EnablePhotosHelp": "Las fotograf\u00edas ser\u00e1n detectadas y mostradas junto con otros archivos de medios.",
|
"EnablePhotosHelp": "Las fotograf\u00edas ser\u00e1n detectadas y mostradas junto con otros archivos de medios.",
|
||||||
"MakeAvailableOffline": "Hacer disponible sin conexi\u00f3n",
|
"MakeAvailableOffline": "Hacer disponible sin conexi\u00f3n",
|
||||||
|
@ -1942,8 +1942,8 @@
|
||||||
"HeaderLatestDownloadedVideos": "\u00daltimos Videos Descargados",
|
"HeaderLatestDownloadedVideos": "\u00daltimos Videos Descargados",
|
||||||
"EnableNextVideoInfoOverlay": "Habilitar ver la informaci\u00f3n del siguiente video durante la reproducci\u00f3n",
|
"EnableNextVideoInfoOverlay": "Habilitar ver la informaci\u00f3n del siguiente video durante la reproducci\u00f3n",
|
||||||
"EnableNextVideoInfoOverlayHelp": "Al finalizar un video, mostrar informaci\u00f3n sobre el siguiente video a reproducir en la lista de reproducci\u00f3n.",
|
"EnableNextVideoInfoOverlayHelp": "Al finalizar un video, mostrar informaci\u00f3n sobre el siguiente video a reproducir en la lista de reproducci\u00f3n.",
|
||||||
"ServerRestartNeededAfterPluginInstall": "El Servidor Emby necesitara reiniciarse despu\u00e9s de instalar un complemento.",
|
"ServerRestartNeededAfterPluginInstall": "El Servidor Emby necesitar\u00e1 reiniciarse despu\u00e9s de instalar un complemento.",
|
||||||
"PluginInstalledMessage": "El complemento ha sido instalado exitosamente. El Servidor Emby necesitara reiniciarse para que los cambios surtan efecto.",
|
"PluginInstalledMessage": "El complemento ha sido instalado exitosamente. El Servidor Emby necesitar\u00e1 reiniciarse para que los cambios surtan efecto.",
|
||||||
"Themes": "Temas",
|
"Themes": "Temas",
|
||||||
"LabelTheme": "Tema:",
|
"LabelTheme": "Tema:",
|
||||||
"LabelDashboardTheme": "Tema del panel de control del servidor:",
|
"LabelDashboardTheme": "Tema del panel de control del servidor:",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Automatikus \u00fajraind\u00edt\u00e1s enged\u00e9lyez\u00e9se a szervernek a friss\u00edt\u00e9sek telep\u00edt\u00e9s\u00e9hez",
|
"LabelAllowServerAutoRestart": "Automatikus \u00fajraind\u00edt\u00e1s enged\u00e9lyez\u00e9se a szervernek a friss\u00edt\u00e9sek telep\u00edt\u00e9s\u00e9hez",
|
||||||
"LabelAllowServerAutoRestartHelp": "A szerver csak akkor indul \u00fajra ha nincs felhaszn\u00e1l\u00f3i tev\u00e9kenys\u00e9g",
|
"LabelAllowServerAutoRestartHelp": "A szerver csak akkor indul \u00fajra ha nincs felhaszn\u00e1l\u00f3i tev\u00e9kenys\u00e9g",
|
||||||
"LabelRunServerAtStartup": "Szerver futtat\u00e1sa ind\u00edt\u00e1skor",
|
"LabelRunServerAtStartup": "Szerver futtat\u00e1sa ind\u00edt\u00e1skor",
|
||||||
"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 Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"ButtonSelectDirectory": "K\u00f6nyvt\u00e1r v\u00e1laszt\u00e1sa",
|
"ButtonSelectDirectory": "K\u00f6nyvt\u00e1r v\u00e1laszt\u00e1sa",
|
||||||
"LabelCachePath": "Gyors\u00edt\u00f3t\u00e1r \u00fatvonal:",
|
"LabelCachePath": "Gyors\u00edt\u00f3t\u00e1r \u00fatvonal:",
|
||||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Zezwalaj na ponowne uruchomienie serwera, w celu instalacji aktualizacji",
|
"LabelAllowServerAutoRestart": "Zezwalaj na ponowne uruchomienie serwera, w celu instalacji aktualizacji",
|
||||||
"LabelAllowServerAutoRestartHelp": "Serwer b\u0119dzie ponownie uruchamiany tylko w trakcie bezczynno\u015bci, kiedy brak aktywnych u\u017cytkownik\u00f3w.",
|
"LabelAllowServerAutoRestartHelp": "Serwer b\u0119dzie ponownie uruchamiany tylko w trakcie bezczynno\u015bci, kiedy brak aktywnych u\u017cytkownik\u00f3w.",
|
||||||
"LabelRunServerAtStartup": "Uruchamiaj serwer podczas uruchomienia systemu",
|
"LabelRunServerAtStartup": "Uruchamiaj serwer podczas uruchomienia systemu",
|
||||||
"LabelRunServerAtStartupHelp": "Umo\u017cliwia uruchomienie serwera w trybie aplikacji z aktywn\u0105 ikon\u0105 w zasobniku systemowym. W celu uruchomienia aplikacji jako us\u0142ug\u0119 Windows, odznacz t\u0119 opcj\u0119 i uruchom us\u0142ug\u0119 w panelu sterowania Windows. Uwaga, uruchomienie aplikacji w obu trybach jest niemo\u017cliwe nale\u017cy zamkn\u0105\u0107 aplikacj\u0119 w zasobniku przed uruchomieniem us\u0142ugi.",
|
"LabelRunServerAtStartupHelp": "Umo\u017cliwia uruchomienieEmby w trybie aplikacji z aktywn\u0105 ikon\u0105 w zasobniku systemowym. Je\u015bli skonfigurowa\u0142e\u015b Emby jako us\u0142ug\u0119 Windows, pozostaw t\u0119 opcj\u0119 odznaczon\u0105 i ustaw typ uruchomienia us\u0142ugi jako Automatyczny.",
|
||||||
"ButtonSelectDirectory": "Wybierz folder",
|
"ButtonSelectDirectory": "Wybierz folder",
|
||||||
"LabelCachePath": "Folder bufora:",
|
"LabelCachePath": "Folder bufora:",
|
||||||
"DefaultMetadataLangaugeDescription": "To s\u0105 twoje ustawienia domy\u015blne. Mo\u017cesz je zmieni\u0107 dla ka\u017cdej biblioteki osobno.",
|
"DefaultMetadataLangaugeDescription": "To s\u0105 twoje ustawienia domy\u015blne. Mo\u017cesz je zmieni\u0107 dla ka\u017cdej biblioteki osobno.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Ba\u015flang\u0131\u00e7ta Server\u0131 \u00c7al\u0131\u015ft\u0131r",
|
"LabelRunServerAtStartup": "Ba\u015flang\u0131\u00e7ta Server\u0131 \u00c7al\u0131\u015ft\u0131r",
|
||||||
"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 Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"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": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "Cho ph\u00e9p m\u00e1y ch\u1ee7 t\u1ef1 \u0111\u1ed9ng kh\u1edfi \u0111\u1ed9ng l\u1ea1i \u0111\u1ec3 \u00e1p d\u1ee5ng c\u00e1c b\u1ea3n c\u1eadp nh\u1eadt",
|
"LabelAllowServerAutoRestart": "Cho ph\u00e9p m\u00e1y ch\u1ee7 t\u1ef1 \u0111\u1ed9ng kh\u1edfi \u0111\u1ed9ng l\u1ea1i \u0111\u1ec3 \u00e1p d\u1ee5ng c\u00e1c b\u1ea3n c\u1eadp nh\u1eadt",
|
||||||
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
|
||||||
"LabelRunServerAtStartup": "Run server at startup",
|
"LabelRunServerAtStartup": "Run server at startup",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"ButtonSelectDirectory": "L\u1ef1a ch\u1ecdn tr\u1ef1c ti\u1ebfp",
|
"ButtonSelectDirectory": "L\u1ef1a ch\u1ecdn tr\u1ef1c ti\u1ebfp",
|
||||||
"LabelCachePath": "Cache path:",
|
"LabelCachePath": "Cache path:",
|
||||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
"LabelAllowServerAutoRestart": "\u5141\u8a31\u4f3a\u670d\u5668\u81ea\u52d5\u91cd\u65b0\u555f\u52d5\u53bb\u5b89\u88dd\u66f4\u65b0\u8cc7\u6599",
|
"LabelAllowServerAutoRestart": "\u5141\u8a31\u4f3a\u670d\u5668\u81ea\u52d5\u91cd\u65b0\u555f\u52d5\u53bb\u5b89\u88dd\u66f4\u65b0\u8cc7\u6599",
|
||||||
"LabelAllowServerAutoRestartHelp": "\u4f3a\u670d\u5668\u53ea\u6703\u5728\u6c92\u6709\u6d3b\u8e8d\u7528\u6236\u53ca\u7a7a\u9592\u671f\u9593\u91cd\u65b0\u555f\u52d5\u3002",
|
"LabelAllowServerAutoRestartHelp": "\u4f3a\u670d\u5668\u53ea\u6703\u5728\u6c92\u6709\u6d3b\u8e8d\u7528\u6236\u53ca\u7a7a\u9592\u671f\u9593\u91cd\u65b0\u555f\u52d5\u3002",
|
||||||
"LabelRunServerAtStartup": "\u5728\u7cfb\u7d71\u555f\u52d5\u6642\u904b\u884c\u4f3a\u670d\u5668",
|
"LabelRunServerAtStartup": "\u5728\u7cfb\u7d71\u555f\u52d5\u6642\u904b\u884c\u4f3a\u670d\u5668",
|
||||||
"LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.",
|
"LabelRunServerAtStartupHelp": "This will start the Emby tray icon on Windows startup. If you've set up a Windows service then leave this unchecked and configure the service to run at startup.",
|
||||||
"ButtonSelectDirectory": "\u9078\u64c7\u76ee\u9304",
|
"ButtonSelectDirectory": "\u9078\u64c7\u76ee\u9304",
|
||||||
"LabelCachePath": "\u7de9\u5b58\u8def\u5f91\uff1a",
|
"LabelCachePath": "\u7de9\u5b58\u8def\u5f91\uff1a",
|
||||||
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
"DefaultMetadataLangaugeDescription": "These are your defaults and can be customized on a per-library basis.",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue