diff --git a/MediaBrowser.WebDashboard.nuget.targets b/MediaBrowser.WebDashboard.nuget.targets new file mode 100644 index 0000000000..e69ce0e64f --- /dev/null +++ b/MediaBrowser.WebDashboard.nuget.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/dashboard-ui/about.html b/dashboard-ui/about.html deleted file mode 100644 index 8a94e4d8c0..0000000000 --- a/dashboard-ui/about.html +++ /dev/null @@ -1,55 +0,0 @@ -
- -
-
-
-

- -

-
-
-
${VersionNumber}
-
-
${HeaderCredits}
-
-

- ${PismoMessage} -

-

- ${TangibleSoftwareMessage} -

- -
-

${PleaseSupportOtherProduces}

- -

- FanArt.tv -

-

- MusicBrainz -

-

- TheMovieDb.org -

-

- The Open Movie Database -

-

- TheTVDB.com -

-
-
-

${ProjectHasCommunity}

- ${VisitTheCommunity} -
-

- ${CheckoutKnowledgeBase} -

- ${SearchKnowledgeBase} -
-

${VisitProjectWebsiteLong}

- ${VisitProjectWebsite} -
-
-
-
\ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-apiclient/.bower.json b/dashboard-ui/bower_components/emby-apiclient/.bower.json index 9f7932c5f7..01fedd3c13 100644 --- a/dashboard-ui/bower_components/emby-apiclient/.bower.json +++ b/dashboard-ui/bower_components/emby-apiclient/.bower.json @@ -16,12 +16,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.1.91", - "_release": "1.1.91", + "version": "1.1.105", + "_release": "1.1.105", "_resolution": { "type": "version", - "tag": "1.1.91", - "commit": "f94b80f14bce6922acf1dbd749a60ad54e4abfd8" + "tag": "1.1.105", + "commit": "d46515271d43d1b0f7dd19bb1834cfd457fb3326" }, "_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git", "_target": "^1.1.51", diff --git a/dashboard-ui/bower_components/emby-apiclient/apiclient.js b/dashboard-ui/bower_components/emby-apiclient/apiclient.js index f061795106..95980106ca 100644 --- a/dashboard-ui/bower_components/emby-apiclient/apiclient.js +++ b/dashboard-ui/bower_components/emby-apiclient/apiclient.js @@ -22,6 +22,27 @@ var self = this; var webSocket; var serverInfo = {}; + var lastDetectedBitrate; + var lastDetectedBitrateTime; + + var detectTimeout; + function redetectBitrate() { + stopBitrateDetection(); + + if (self.accessToken() && self.enableAutomaticBitrateDetection !== false) { + setTimeout(redetectBitrateInternal, 6000); + } + } + + function redetectBitrateInternal() { + self.detectBitrate(); + } + + function stopBitrateDetection() { + if (detectTimeout) { + clearTimeout(detectTimeout); + } + } /** * Gets the server address. @@ -38,9 +59,14 @@ serverAddress = val; + lastDetectedBitrate = 0; + lastDetectedBitrateTime = 0; + if (changed) { events.trigger(this, 'serveraddresschanged'); } + + redetectBitrate(); } return serverAddress; @@ -128,6 +154,7 @@ serverInfo.AccessToken = accessKey; serverInfo.UserId = userId; + redetectBitrate(); }; self.encodeName = function (name) { @@ -239,7 +266,7 @@ resolve(response); }, function (error) { clearTimeout(timeout); - reject(); + reject(error); }); }); } @@ -421,11 +448,14 @@ }, function (error) { - console.log("Request failed to " + request.url); - - // http://api.jquery.com/jQuery.ajax/ - if (enableReconnection) { + if (error) { + console.log("Request failed to " + request.url + ' ' + error.toString()); + } else { + console.log("Request timed out to " + request.url + ' ' + error.toString()); + } + // http://api.jquery.com/jQuery.ajax/ + if (!error && enableReconnection) { console.log("Attempting reconnection"); var previousServerAddress = self.serverAddress(); @@ -669,23 +699,67 @@ }); }; - self.detectBitrate = function () { + function normalizeReturnBitrate(bitrate) { - // First try a small amount so that we don't hang up their mobile connection - return self.getDownloadSpeed(1000000).then(function (bitrate) { + if (!bitrate) { - if (bitrate < 1000000) { - return Math.round(bitrate * 0.8); - } else { - - // If that produced a fairly high speed, try again with a larger size to get a more accurate result - return self.getDownloadSpeed(2400000).then(function (bitrate) { - - return Math.round(bitrate * 0.8); - }); + if (lastDetectedBitrate) { + return lastDetectedBitrate; } + return Promise.reject(); + } + + var result = Math.round(bitrate * 0.8); + + lastDetectedBitrate = result; + lastDetectedBitrateTime = new Date().getTime(); + + return result; + } + + function detectBitrateInternal(tests, index, currentBitrate) { + + if (index >= tests.length) { + + return normalizeReturnBitrate(currentBitrate); + } + + var test = tests[index]; + + return self.getDownloadSpeed(test.bytes).then(function (bitrate) { + + if (bitrate < test.threshold) { + + return normalizeReturnBitrate(bitrate); + } else { + return detectBitrateInternal(tests, index + 1, bitrate); + } + + }, function () { + return normalizeReturnBitrate(currentBitrate); }); + } + + self.detectBitrate = function () { + + if (lastDetectedBitrate && (new Date().getTime() - (lastDetectedBitrateTime || 0)) <= 3600000) { + return Promise.resolve(lastDetectedBitrate); + } + + return detectBitrateInternal([ + { + bytes: 100000, + threshold: 5000000 + }, + { + bytes: 1000000, + threshold: 50000000 + }, + { + bytes: 3000000, + threshold: 50000000 + }], 0); }; /** @@ -768,6 +842,7 @@ self.logout = function () { + stopBitrateDetection(); self.closeWebSocket(); var done = function () { @@ -2561,6 +2636,8 @@ self.onAuthenticated(self, result); } + redetectBitrate(); + resolve(result); }, reject); @@ -3311,6 +3388,8 @@ throw new Error("null options"); } + stopBitrateDetection(); + var url = self.getUrl("Sessions/Playing"); return self.ajax({ @@ -3439,6 +3518,8 @@ throw new Error("null options"); } + redetectBitrate(); + var url = self.getUrl("Sessions/Playing/Stopped"); return self.ajax({ diff --git a/dashboard-ui/bower_components/emby-apiclient/appstorage-localstorage.js b/dashboard-ui/bower_components/emby-apiclient/appstorage-localstorage.js index bdfd7ad168..ee4bd12bce 100644 --- a/dashboard-ui/bower_components/emby-apiclient/appstorage-localstorage.js +++ b/dashboard-ui/bower_components/emby-apiclient/appstorage-localstorage.js @@ -6,7 +6,10 @@ var localData; function updateCache() { - cache.put('data', new Response(JSON.stringify(localData))); + + if (cache) { + cache.put('data', new Response(JSON.stringify(localData))); + } } myStore.setItem = function (name, value) { @@ -38,10 +41,13 @@ try { - caches.open('embydata').then(function (result) { - cache = result; - localData = {}; - }); + if (self.caches) { + + caches.open('embydata').then(function (result) { + cache = result; + localData = {}; + }); + } } catch (err) { console.log('Error opening cache: ' + err); diff --git a/dashboard-ui/bower_components/emby-apiclient/connectionmanager.js b/dashboard-ui/bower_components/emby-apiclient/connectionmanager.js index 209ca317ee..66581b7e0a 100644 --- a/dashboard-ui/bower_components/emby-apiclient/connectionmanager.js +++ b/dashboard-ui/bower_components/emby-apiclient/connectionmanager.js @@ -216,7 +216,7 @@ return connectUser; }; - var minServerVersion = '3.0.5994'; + var minServerVersion = '3.0.7200'; self.minServerVersion = function (val) { if (val) { @@ -447,6 +447,7 @@ if (options.reportCapabilities !== false) { apiClient.reportCapabilities(capabilities); } + apiClient.enableAutomaticBitrateDetection = options.enableAutomaticBitrateDetection; if (options.enableWebSocket !== false) { console.log('calling apiClient.ensureWebSocket'); @@ -1509,7 +1510,7 @@ var updateDevicePromise; // Cache for 3 days - if (params.deviceId && (new Date().getTime() - (regInfo.lastValidDate || 0)) < 259200000) { + if (params.deviceId && (new Date().getTime() - (regInfo.lastValidDate || 0)) < 604800000) { console.log('getRegistrationInfo has cached info'); diff --git a/dashboard-ui/bower_components/emby-apiclient/nullassetmanager.js b/dashboard-ui/bower_components/emby-apiclient/nullassetmanager.js new file mode 100644 index 0000000000..aef746e9b6 --- /dev/null +++ b/dashboard-ui/bower_components/emby-apiclient/nullassetmanager.js @@ -0,0 +1,114 @@ +define([], function () { + 'use strict'; + + function getLocalMediaSource(serverId, itemId) { + return Promise.resolve(null); + } + + function saveOfflineUser(user) { + return Promise.resolve(); + } + + function deleteOfflineUser(id) { + return Promise.resolve(); + } + + function getCameraPhotos() { + return Promise.resolve([]); + } + + function recordUserAction(action) { + return Promise.resolve(); + } + + function getUserActions(serverId) { + return Promise.resolve([]); + } + + function deleteUserAction(action) { + return Promise.resolve(); + } + + function deleteUserActions(actions) { + //TODO: + return Promise.resolve(); + } + + function getServerItemIds(serverId) { + return Promise.resolve([]); + } + + function removeLocalItem(localItem) { + return Promise.resolve(); + } + + function getLocalItem(itemId, serverId) { + return Promise.resolve(); + } + + function addOrUpdateLocalItem(localItem) { + return Promise.resolve(); + } + + function createLocalItem(libraryItem, serverInfo, jobItem) { + + return Promise.resolve({}); + } + + function downloadFile(url, localPath) { + + return Promise.resolve(); + } + + function downloadSubtitles(url, localItem, subtitleStreamh) { + + return Promise.resolve(''); + } + + function hasImage(serverId, itemId, imageTag) { + return Promise.resolve(false); + } + + function downloadImage(url, serverId, itemId, imageTag) { + return Promise.resolve(false); + } + + function fileExists(path) { + return Promise.resolve(false); + } + + function translateFilePath(path) { + return Promise.resolve(path); + } + + function getLocalFilePath(path) { + return null; + } + + function getLocalItemById(id) { + return null; + } + + return { + getLocalItem: getLocalItem, + saveOfflineUser: saveOfflineUser, + deleteOfflineUser: deleteOfflineUser, + getCameraPhotos: getCameraPhotos, + recordUserAction: recordUserAction, + getUserActions: getUserActions, + deleteUserAction: deleteUserAction, + deleteUserActions: deleteUserActions, + getServerItemIds: getServerItemIds, + removeLocalItem: removeLocalItem, + addOrUpdateLocalItem: addOrUpdateLocalItem, + createLocalItem: createLocalItem, + downloadFile: downloadFile, + downloadSubtitles: downloadSubtitles, + hasImage: hasImage, + downloadImage: downloadImage, + fileExists: fileExists, + translateFilePath: translateFilePath, + getLocalFilePath: getLocalFilePath, + getLocalItemById: getLocalItemById + }; +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-apiclient/sync/filerepository.js b/dashboard-ui/bower_components/emby-apiclient/sync/filerepository.js new file mode 100644 index 0000000000..abe51c0c03 --- /dev/null +++ b/dashboard-ui/bower_components/emby-apiclient/sync/filerepository.js @@ -0,0 +1,42 @@ +define([], function () { + 'use strict'; + + function getValidFileName(path) { + + // TODO + return path; + } + + + function getFullLocalPath(pathArray) { + + // TODO + 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, + deleteFile: deleteFile, + deleteDirectory: deleteDirectory, + fileExists: fileExists, + getItemFileSize: getItemFileSize + }; +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-apiclient/sync/itemrepository.js b/dashboard-ui/bower_components/emby-apiclient/sync/itemrepository.js new file mode 100644 index 0000000000..f690f0882b --- /dev/null +++ b/dashboard-ui/bower_components/emby-apiclient/sync/itemrepository.js @@ -0,0 +1,97 @@ +define(['idb'], function () { + 'use strict'; + + // Database name + var dbName = "items"; + + // Database version + var dbVersion = 1; + + var dbPromise; + + function setup() { + + dbPromise = idb.open(dbName, dbVersion, function (upgradeDB) { + // Note: we don't use 'break' in this switch statement, + // the fall-through behaviour is what we want. + switch (upgradeDB.oldVersion) { + case 0: + upgradeDB.createObjectStore(dbName); + //case 1: + // upgradeDB.createObjectStore('stuff', { keyPath: '' }); + } + }); //.then(db => console.log("DB opened!", db)); + } + + function getServerItemIds(serverId) { + return dbPromise.then(function (db) { + return db.transaction(dbName).objectStore(dbName).getAll(null, 10000).then(function (all) { + return all.filter(function (item) { + return item.ServerId === serverId; + }).map(function (item2) { + return item2.ItemId; + }); + }); + }); + } + + function getServerIds(serverId) { + return dbPromise.then(function (db) { + return db.transaction(dbName).objectStore(dbName).getAll(null, 10000).then(function (all) { + return all.filter(function (item) { + return item.ServerId === serverId; + }).map(function (item2) { + return item2.Id; + }); + }); + }); + } + + function getAll() { + return dbPromise.then(function (db) { + return db.transaction(dbName).objectStore(dbName).getAll(null, 10000); + }); + } + + 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'); + tx.objectStore(dbName).put(val, key); + return tx.complete; + }); + } + + function remove(key) { + return dbPromise.then(function (db) { + var tx = db.transaction(dbName, 'readwrite'); + tx.objectStore(dbName).delete(key); + return tx.complete; + }); + } + + function clear() { + return dbPromise.then(function (db) { + var tx = db.transaction(dbName, 'readwrite'); + tx.objectStore(dbName).clear(key); + return tx.complete; + }); + } + + setup(); + + return { + get: get, + set: set, + remove: remove, + clear: clear, + getAll: getAll, + getServerItemIds: getServerItemIds, + getServerIds: getServerIds + }; +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-apiclient/sync/localsync.js b/dashboard-ui/bower_components/emby-apiclient/sync/localsync.js new file mode 100644 index 0000000000..8604fcbf53 --- /dev/null +++ b/dashboard-ui/bower_components/emby-apiclient/sync/localsync.js @@ -0,0 +1,46 @@ +define(['appSettings', 'connectionManager'], function (appSettings, connectionManager) { + 'use strict'; + + var syncPromise; + + return { + + sync: function (options) { + + if (syncPromise) { + return syncPromise; + } + + return new Promise(function (resolve, reject) { + + require(['multiserversync'], function (MultiServerSync) { + + options = options || {}; + + options.cameraUploadServers = appSettings.cameraUploadServers(); + + syncPromise = new MultiServerSync(connectionManager).sync(options).then(function () { + + syncPromise = null; + resolve(); + + }, function () { + + syncPromise = null; + reject(); + }); + }); + + }); + }, + + getSyncStatus: function () { + + if (syncPromise != null) { + return 'Syncing'; + } + return 'Idle'; + } + }; + +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-apiclient/sync/mediasync.js b/dashboard-ui/bower_components/emby-apiclient/sync/mediasync.js index bf00460023..efe3fba548 100644 --- a/dashboard-ui/bower_components/emby-apiclient/sync/mediasync.js +++ b/dashboard-ui/bower_components/emby-apiclient/sync/mediasync.js @@ -1,471 +1,488 @@ -define(['localassetmanager'], function (LocalAssetManager) { +define(['localassetmanager'], function (localassetmanager) { 'use strict'; + function processDownloadStatus(apiClient, serverInfo, options) { + + console.log('[mediasync] Begin processDownloadStatus'); + + return localassetmanager.getServerItems(serverInfo.Id).then(function (items) { + + console.log('[mediasync] Begin processDownloadStatus getServerItems completed'); + + var progressItems = items.filter(function (item) { + return item.SyncStatus === 'transferring' || item.SyncStatus === 'queued'; + }); + + var p = Promise.resolve(); + var cnt = 0; + + progressItems.forEach(function (item) { + p = p.then(function () { + return reportTransfer(apiClient, item); + }); + cnt++; + }); + + return p.then(function () { + console.log('[mediasync] Exit processDownloadStatus. Items reported: ' + cnt.toString()); + return Promise.resolve(); + }); + }); + } + + function reportTransfer(apiClient, item) { + + return localassetmanager.getItemFileSize(item.LocalPath).then(function (size) { + // The background transfer service on Windows leaves the file empty (size = 0) until it + // has been downloaded completely + if (size > 0) { + return apiClient.reportSyncJobItemTransferred(item.SyncJobItemId).then(function () { + item.SyncStatus = 'synced'; + return localassetmanager.addOrUpdateLocalItem(item); + }, function (error) { + console.error("[mediasync] Mediasync error on reportSyncJobItemTransferred", error); + item.SyncStatus = 'error'; + return localassetmanager.addOrUpdateLocalItem(item); + }); + } else { + return localassetmanager.isDownloadInQueue(item.SyncJobItemId).then(function (result) { + if (result) { + // just wait for completion + return Promise.resolve(); + } + + console.log("[mediasync] reportTransfer: Size is 0 and download no longer in queue. Deleting item."); + return localassetmanager.removeLocalItem(item).then(function () { + console.log('[mediasync] reportTransfer: Item deleted.'); + return Promise.resolve(); + }, function (err2) { + console.log('[mediasync] reportTransfer: Failed to delete item.', error); + return Promise.resolve(); + }); + }); + } + + }, function (error) { + + console.error('[mediasync] reportTransfer: error on getItemFileSize. Deleting item.', error); + return localassetmanager.removeLocalItem(item).then(function () { + console.log('[mediasync] reportTransfer: Item deleted.'); + return Promise.resolve(); + }, function (err2) { + console.log('[mediasync] reportTransfer: Failed to delete item.', error); + return Promise.resolve(); + }); + }); + } + + function reportOfflineActions(apiClient, serverInfo) { + + console.log('[mediasync] Begin reportOfflineActions'); + + return localassetmanager.getUserActions(serverInfo.Id).then(function (actions) { + + if (!actions.length) { + console.log('[mediasync] Exit reportOfflineActions (no actions)'); + return Promise.resolve(); + } + + return apiClient.reportOfflineActions(actions).then(function () { + + return localassetmanager.deleteUserActions(actions).then(function () { + console.log('[mediasync] Exit reportOfflineActions (actions reported and deleted.)'); + return Promise.resolve(); + }); + + }, function (err) { + + // delete those actions even on failure, because if the error is caused by + // the action data itself, this could otherwise lead to a situation that + // never gets resolved + console.error('[mediasync] error on apiClient.reportOfflineActions: ' + err.toString()); + return localassetmanager.deleteUserActions(actions); + }); + }); + } + + function syncData(apiClient, serverInfo, syncUserItemAccess) { + + console.log('[mediasync] Begin syncData'); + + return localassetmanager.getServerItems(serverInfo.Id).then(function (items) { + + var completedItems = items.filter(function (item) { + return (item) && ((item.SyncStatus === 'synced') || (item.SyncStatus === 'error')); + }); + + var request = { + TargetId: apiClient.deviceId(), + LocalItemIds: completedItems.map(function (xitem) { return xitem.ItemId; }), + OfflineUserIds: (serverInfo.Users || []).map(function (u) { return u.Id; }) + }; + + return apiClient.syncData(request).then(function (result) { + + return afterSyncData(apiClient, serverInfo, syncUserItemAccess, result).then(function () { + return Promise.resolve(); + }, function () { + return Promise.resolve(); + }); + + }); + }); + } + + function afterSyncData(apiClient, serverInfo, enableSyncUserItemAccess, syncDataResult) { + + console.log('[mediasync] Begin afterSyncData'); + + var p = Promise.resolve(); + + if (syncDataResult.ItemIdsToRemove) { + syncDataResult.ItemIdsToRemove.forEach(function (itemId) { + p = p.then(function () { + return removeLocalItem(itemId, serverInfo.Id); + }); + }); + } + + if (enableSyncUserItemAccess) { + p = p.then(function () { + return syncUserItemAccess(syncDataResult, serverInfo.Id); + }); + } + + return p.then(function () { + console.log('[mediasync] Exit afterSyncData'); + return Promise.resolve(); + }); + } + + function removeLocalItem(itemId, serverId) { + + console.log('[mediasync] Begin removeLocalItem'); + + return localassetmanager.getLocalItem(serverId, itemId).then(function (item) { + + if (item) { + return localassetmanager.removeLocalItem(item); + } + + return Promise.resolve(); + + }); + } + + function getNewMedia(apiClient, serverInfo, options) { + + console.log('[mediasync] Begin getNewMedia'); + + return apiClient.getReadySyncItems(apiClient.deviceId()).then(function (jobItems) { + + var p = Promise.resolve(); + + jobItems.forEach(function (jobItem) { + p = p.then(function () { + return getNewItem(jobItem, apiClient, serverInfo, options); + }); + }); + + return p.then(function () { + console.log('[mediasync] Exit getNewMedia'); + return Promise.resolve(); + }); + }); + } + + function getNewItem(jobItem, apiClient, serverInfo, options) { + + console.log('[mediasync] Begin getNewItem'); + + var libraryItem = jobItem.Item; + + return localassetmanager.getLocalItem(serverInfo.Id, libraryItem.Id).then(function (existingItem) { + + console.log('[mediasync] getNewItem.getLocalItem completed'); + + if (existingItem) { + if (existingItem.SyncStatus === 'queued' || existingItem.SyncStatus === 'transferring' || existingItem.SyncStatus === 'synced') { + console.log('[mediasync] getNewItem.getLocalItem found existing item'); + return Promise.resolve(); + } + } + + console.log('[mediasync] getNewItem.getLocalItem no existing item found'); + + return localassetmanager.createLocalItem(libraryItem, serverInfo, jobItem).then(function (localItem) { + + console.log('[mediasync] getNewItem.createLocalItem completed'); + + localItem.SyncStatus = 'queued'; + + return downloadMedia(apiClient, jobItem, localItem, options).then(function () { + + return getImages(apiClient, jobItem, localItem).then(function () { + + return getSubtitles(apiClient, jobItem, localItem); + + }); + }); + }); + }); + } + + function downloadMedia(apiClient, jobItem, localItem, options) { + + console.log('[mediasync] Begin downloadMedia'); + + var url = apiClient.getUrl("Sync/JobItems/" + jobItem.SyncJobItemId + "/File", { + api_key: apiClient.accessToken() + }); + + var localPath = localItem.LocalPath; + + console.log('[mediasync] Downloading media. Url: ' + url + '. Local path: ' + localPath); + + options = options || {}; + + return localassetmanager.downloadFile(url, localItem).then(function (filename) { + + localItem.SyncStatus = 'transferring'; + return localassetmanager.addOrUpdateLocalItem(localItem); + }); + } + + function getImages(apiClient, jobItem, localItem) { + + console.log('[mediasync] Begin getImages'); + + return getNextImage(0, apiClient, localItem); + } + + function getNextImage(index, apiClient, localItem) { + + console.log('[mediasync] Begin getNextImage'); + + //if (index >= 4) { + + // deferred.resolve(); + // return; + //} + + // Just for now while media syncing gets worked out + return Promise.resolve(); + + //var libraryItem = localItem.Item; + + //var serverId = libraryItem.ServerId; + //var itemId = null; + //var imageTag = null; + //var imageType = "Primary"; + + //switch (index) { + + // case 0: + // itemId = libraryItem.Id; + // imageType = "Primary"; + // imageTag = (libraryItem.ImageTags || {})["Primary"]; + // break; + // case 1: + // itemId = libraryItem.SeriesId; + // imageType = "Primary"; + // imageTag = libraryItem.SeriesPrimaryImageTag; + // break; + // case 2: + // itemId = libraryItem.SeriesId; + // imageType = "Thumb"; + // imageTag = libraryItem.SeriesPrimaryImageTag; + // break; + // case 3: + // itemId = libraryItem.AlbumId; + // imageType = "Primary"; + // imageTag = libraryItem.AlbumPrimaryImageTag; + // break; + // default: + // break; + //} + + //if (!itemId || !imageTag) { + // getNextImage(index + 1, apiClient, localItem, deferred); + // return; + //} + + //downloadImage(apiClient, serverId, itemId, imageTag, imageType).then(function () { + + // // For the sake of simplicity, limit to one image + // deferred.resolve(); + // return; + + // getNextImage(index + 1, apiClient, localItem, deferred); + + //}, getOnFail(deferred)); + } + + function downloadImage(apiClient, serverId, itemId, imageTag, imageType) { + + console.log('[mediasync] Begin downloadImage'); + + return localassetmanager.hasImage(serverId, itemId, imageTag).then(function (hasImage) { + + if (hasImage) { + return Promise.resolve(); + } + + var imageUrl = apiClient.getImageUrl(itemId, { + tag: imageTag, + type: imageType, + api_key: apiClient.accessToken() + }); + + return localassetmanager.downloadImage(imageUrl, serverId, itemId, imageTag); + }); + } + + function getSubtitles(apiClient, jobItem, localItem) { + + console.log('[mediasync] Begin getSubtitles'); + + if (!jobItem.Item.MediaSources.length) { + console.log("[mediasync] Cannot download subtitles because video has no media source info."); + return Promise.resolve(); + } + + var files = jobItem.AdditionalFiles.filter(function (f) { + return f.Type === 'Subtitles'; + }); + + var mediaSource = jobItem.Item.MediaSources[0]; + + var p = Promise.resolve(); + + files.forEach(function (file) { + p = p.then(function () { + return getItemSubtitle(file, apiClient, jobItem, localItem, mediaSource); + }); + }); + + return p.then(function () { + console.log('[mediasync] Exit getSubtitles'); + return Promise.resolve(); + }); + } + + function getItemSubtitle(file, apiClient, jobItem, localItem, mediaSource) { + + console.log('[mediasync] Begin getItemSubtitle'); + + var subtitleStream = mediaSource.MediaStreams.filter(function (m) { + return m.Type === 'Subtitle' && m.Index === file.Index; + })[0]; + + if (!subtitleStream) { + + // We shouldn't get in here, but let's just be safe anyway + console.log("[mediasync] Cannot download subtitles because matching stream info wasn't found."); + return Promise.resolve(); + } + + var url = apiClient.getUrl("Sync/JobItems/" + jobItem.SyncJobItemId + "/AdditionalFiles", { + Name: file.Name, + api_key: apiClient.accessToken() + }); + + var fileName = localassetmanager.getSubtitleSaveFileName(jobItem.OriginalFileName, subtitleStream.Language, subtitleStream.IsForced, subtitleStream.Codec); + var localFilePath = localassetmanager.getLocalFilePath(localItem, fileName); + + return localassetmanager.downloadSubtitles(url, localFilePath).then(function (subtitlePath) { + + subtitleStream.Path = subtitlePath; + return localassetmanager.addOrUpdateLocalItem(localItem); + }); + } + return function () { var self = this; self.sync = function (apiClient, serverInfo, options) { - return reportOfflineActions(apiClient, serverInfo).then(function () { + console.log("[mediasync]************************************* Start sync"); - // Do the first data sync - return syncData(apiClient, serverInfo, false).then(function () { + return processDownloadStatus(apiClient, serverInfo, options).then(function () { + + return reportOfflineActions(apiClient, serverInfo).then(function () { + + //// Do the first data sync + //return syncData(apiClient, serverInfo, false).then(function () { // Download new content return getNewMedia(apiClient, serverInfo, options).then(function () { // Do the second data sync - return syncData(apiClient, serverInfo, false); + return syncData(apiClient, serverInfo, false).then(function () { + console.log("[mediasync]************************************* Exit sync"); + }); }); + //}); }); }); }; - - function reportOfflineActions(apiClient, serverInfo) { - - console.log('Begin reportOfflineActions'); - - return LocalAssetManager.getOfflineActions(serverInfo.Id).then(function (actions) { - - if (!actions.length) { - return Promise.resolve(); - } - - return apiClient.reportOfflineActions(actions).then(function () { - - return LocalAssetManager.deleteOfflineActions(actions); - }); - }); - } - - function syncData(apiClient, serverInfo, syncUserItemAccess) { - - console.log('Begin syncData'); - - var deferred = DeferredBuilder.Deferred(); - - LocalAssetManager.getServerItemIds(serverInfo.Id).then(function (localIds) { - - var request = { - TargetId: apiClient.deviceId(), - LocalItemIds: localIds, - OfflineUserIds: (serverInfo.Users || []).map(function (u) { return u.Id; }) - }; - - apiClient.syncData(request).then(function (result) { - - afterSyncData(apiClient, serverInfo, syncUserItemAccess, result, deferred); - - }, getOnFail(deferred)); - - }, getOnFail(deferred)); - - return deferred.promise(); - } - - function afterSyncData(apiClient, serverInfo, enableSyncUserItemAccess, syncDataResult, deferred) { - - console.log('Begin afterSyncData'); - - removeLocalItems(syncDataResult, serverInfo.Id).then(function (result) { - - if (enableSyncUserItemAccess) { - syncUserItemAccess(syncDataResult, serverInfo.Id).then(function () { - - deferred.resolve(); - - }, getOnFail(deferred)); - } - else { - deferred.resolve(); - } - - }, getOnFail(deferred)); - - deferred.resolve(); - } - - function removeLocalItems(syncDataResult, serverId) { - - console.log('Begin removeLocalItems'); - - var deferred = DeferredBuilder.Deferred(); - - removeNextLocalItem(syncDataResult.ItemIdsToRemove, 0, serverId, deferred); - - return deferred.promise(); - } - - function removeNextLocalItem(itemIdsToRemove, index, serverId, deferred) { - - var length = itemIdsToRemove.length; - - if (index >= length) { - - deferred.resolve(); - return; - } - - removeLocalItem(itemIdsToRemove[index], serverId).then(function () { - - removeNextLocalItem(itemIdsToRemove, index + 1, serverId, deferred); - }, function () { - removeNextLocalItem(itemIdsToRemove, index + 1, serverId, deferred); - }); - } - - function removeLocalItem(itemId, serverId) { - - console.log('Begin removeLocalItem'); - - return LocalAssetManager.removeLocalItem(itemId, serverId); - } - - function getNewMedia(apiClient, serverInfo, options) { - - console.log('Begin getNewMedia'); - - var deferred = DeferredBuilder.Deferred(); - - apiClient.getReadySyncItems(apiClient.deviceId()).then(function (jobItems) { - - getNextNewItem(jobItems, 0, apiClient, serverInfo, options, deferred); - - }, getOnFail(deferred)); - - return deferred.promise(); - } - - function getNextNewItem(jobItems, index, apiClient, serverInfo, options, deferred) { - - var length = jobItems.length; - - if (index >= length) { - - deferred.resolve(); - return; - } - - var hasGoneNext = false; - var goNext = function () { - - if (!hasGoneNext) { - hasGoneNext = true; - getNextNewItem(jobItems, index + 1, apiClient, serverInfo, options, deferred); - } - }; - - getNewItem(jobItems[index], apiClient, serverInfo, options).then(goNext, goNext); - } - - function getNewItem(jobItem, apiClient, serverInfo, options) { - - console.log('Begin getNewItem'); - - var deferred = DeferredBuilder.Deferred(); - - var libraryItem = jobItem.Item; - LocalAssetManager.createLocalItem(libraryItem, serverInfo, jobItem.OriginalFileName).then(function (localItem) { - - downloadMedia(apiClient, jobItem, localItem, options).then(function (isQueued) { - - if (isQueued) { - deferred.resolve(); - return; - } - - getImages(apiClient, jobItem, localItem).then(function () { - - getSubtitles(apiClient, jobItem, localItem).then(function () { - - apiClient.reportSyncJobItemTransferred(jobItem.SyncJobItemId).then(function () { - - deferred.resolve(); - - }, getOnFail(deferred)); - - }, getOnFail(deferred)); - - }, getOnFail(deferred)); - - }, getOnFail(deferred)); - - }, getOnFail(deferred)); - - return deferred.promise(); - } - - function downloadMedia(apiClient, jobItem, localItem, options) { - - console.log('Begin downloadMedia'); - var deferred = DeferredBuilder.Deferred(); - - var url = apiClient.getUrl("Sync/JobItems/" + jobItem.SyncJobItemId + "/File", { - api_key: apiClient.accessToken() - }); - - var localPath = localItem.LocalPath; - - console.log('Downloading media. Url: ' + url + '. Local path: ' + localPath); - - options = options || {}; - - LocalAssetManager.downloadFile(url, localPath, options.enableBackgroundTransfer, options.enableNewDownloads).then(function (path, isQueued) { - - if (isQueued) { - deferred.resolveWith(null, [true]); - return; - } - LocalAssetManager.addOrUpdateLocalItem(localItem).then(function () { - - deferred.resolveWith(null, [false]); - - }, getOnFail(deferred)); - - }, getOnFail(deferred)); - - return deferred.promise(); - } - - function getImages(apiClient, jobItem, localItem) { - - console.log('Begin getImages'); - var deferred = DeferredBuilder.Deferred(); - - getNextImage(0, apiClient, localItem, deferred); - - return deferred.promise(); - } - - function getNextImage(index, apiClient, localItem, deferred) { - - console.log('Begin getNextImage'); - if (index >= 4) { - - deferred.resolve(); - return; - } - - // Just for now while media syncing gets worked out - deferred.resolve(); - - //var libraryItem = localItem.Item; - - //var serverId = libraryItem.ServerId; - //var itemId = null; - //var imageTag = null; - //var imageType = "Primary"; - - //switch (index) { - - // case 0: - // itemId = libraryItem.Id; - // imageType = "Primary"; - // imageTag = (libraryItem.ImageTags || {})["Primary"]; - // break; - // case 1: - // itemId = libraryItem.SeriesId; - // imageType = "Primary"; - // imageTag = libraryItem.SeriesPrimaryImageTag; - // break; - // case 2: - // itemId = libraryItem.SeriesId; - // imageType = "Thumb"; - // imageTag = libraryItem.SeriesPrimaryImageTag; - // break; - // case 3: - // itemId = libraryItem.AlbumId; - // imageType = "Primary"; - // imageTag = libraryItem.AlbumPrimaryImageTag; - // break; - // default: - // break; - //} - - //if (!itemId || !imageTag) { - // getNextImage(index + 1, apiClient, localItem, deferred); - // return; - //} - - //downloadImage(apiClient, serverId, itemId, imageTag, imageType).then(function () { - - // // For the sake of simplicity, limit to one image - // deferred.resolve(); - // return; - - // getNextImage(index + 1, apiClient, localItem, deferred); - - //}, getOnFail(deferred)); - } - - function downloadImage(apiClient, serverId, itemId, imageTag, imageType) { - - console.log('Begin downloadImage'); - var deferred = DeferredBuilder.Deferred(); - - LocalAssetManager.hasImage(serverId, itemId, imageTag).then(function (hasImage) { - - if (hasImage) { - deferred.resolve(); - return; - } - - var imageUrl = apiClient.getImageUrl(itemId, { - tag: imageTag, - type: imageType, - api_key: apiClient.accessToken() - }); - - LocalAssetManager.downloadImage(imageUrl, serverId, itemId, imageTag).then(function () { - - deferred.resolve(); - - }, getOnFail(deferred)); - - }); - - return deferred.promise(); - } - - function getSubtitles(apiClient, jobItem, localItem) { - - console.log('Begin getSubtitles'); - var deferred = DeferredBuilder.Deferred(); - - if (!jobItem.Item.MediaSources.length) { - console.log("Cannot download subtitles because video has no media source info."); - deferred.resolve(); - return; - } - - var files = jobItem.AdditionalFiles.filter(function (f) { - return f.Type === 'Subtitles'; - }); - - var mediaSource = jobItem.Item.MediaSources[0]; - - getNextSubtitle(files, 0, apiClient, jobItem, localItem, mediaSource, deferred); - - return deferred.promise(); - } - - function getNextSubtitle(files, index, apiClient, jobItem, localItem, mediaSource, deferred) { - - var length = files.length; - - if (index >= length) { - - deferred.resolve(); - return; - } - - getItemSubtitle(file, apiClient, jobItem, localItem, mediaSource).then(function () { - - getNextSubtitle(files, index + 1, apiClient, jobItem, localItem, mediaSource, deferred); - - }, function () { - getNextSubtitle(files, index + 1, apiClient, jobItem, localItem, mediaSource, deferred); - }); - } - - function getItemSubtitle(file, apiClient, jobItem, localItem, mediaSource) { - - console.log('Begin getItemSubtitle'); - var deferred = DeferredBuilder.Deferred(); - - var subtitleStream = mediaSource.MediaStreams.filter(function (m) { - return m.Type === 'Subtitle' && m.Index === file.Index; - })[0]; - - if (!subtitleStream) { - - // We shouldn't get in here, but let's just be safe anyway - console.log("Cannot download subtitles because matching stream info wasn't found."); - deferred.reject(); - return; - } - - var url = apiClient.getUrl("Sync/JobItems/" + jobItem.SyncJobItemId + "/AdditionalFiles", { - Name: file.Name, - api_key: apiClient.accessToken() - }); - - LocalAssetManager.downloadSubtitles(url, localItem, subtitleStream).then(function (subtitlePath) { - - subtitleStream.Path = subtitlePath; - LocalAssetManager.addOrUpdateLocalItem(localItem).then(function () { - deferred.resolve(); - }, getOnFail(deferred)); - - }, getOnFail(deferred)); - - return deferred.promise(); - } - - function syncUserItemAccess(syncDataResult, serverId) { - console.log('Begin syncUserItemAccess'); - - var deferred = DeferredBuilder.Deferred(); - - var itemIds = []; - for (var id in syncDataResult.ItemUserAccess) { - itemIds.push(id); - } - - syncNextUserAccessForItem(itemIds, 0, syncDataResult, serverId, deferred); - - return deferred.promise(); - } - - function syncNextUserAccessForItem(itemIds, index, syncDataResult, serverId, deferred) { - - var length = itemIds.length; - - if (index >= length) { - - deferred.resolve(); - return; - } - - syncUserAccessForItem(itemIds[index], syncDataResult).then(function () { - - syncNextUserAccessForItem(itemIds, index + 1, syncDataResult, serverId, deferred); - }, function () { - syncNextUserAccessForItem(itemIds, index + 1, syncDataResult, serverId, deferred); - }); - } - - function syncUserAccessForItem(itemId, syncDataResult) { - console.log('Begin syncUserAccessForItem'); - - var deferred = DeferredBuilder.Deferred(); - - LocalAssetManager.getUserIdsWithAccess(itemId, serverId).then(function (savedUserIdsWithAccess) { - - var userIdsWithAccess = syncDataResult.ItemUserAccess[itemId]; - - if (userIdsWithAccess.join(',') === savedUserIdsWithAccess.join(',')) { - // Hasn't changed, nothing to do - deferred.resolve(); - } - else { - - LocalAssetManager.saveUserIdsWithAccess(itemId, serverId, userIdsWithAccess).then(function () { - deferred.resolve(); - }, getOnFail(deferred)); - } - - }, getOnFail(deferred)); - - return deferred.promise(); - } - - function getOnFail(deferred) { - return function () { - - deferred.reject(); - }; - } }; + + //function syncUserItemAccess(syncDataResult, serverId) { + // console.log('[mediasync] Begin syncUserItemAccess'); + + // var itemIds = []; + // for (var id in syncDataResult.ItemUserAccess) { + // itemIds.push(id); + // } + + // return syncNextUserAccessForItem(itemIds, 0, syncDataResult, serverId); + //} + + //function syncNextUserAccessForItem(itemIds, index, syncDataResult, serverId) { + + // var length = itemIds.length; + + // if (index >= length) { + + // return Promise.resolve + // return; + // } + + // syncUserAccessForItem(itemIds[index], syncDataResult).then(function () { + + // syncNextUserAccessForItem(itemIds, index + 1, syncDataResult, serverId, deferred); + // }, function () { + // syncNextUserAccessForItem(itemIds, index + 1, syncDataResult, serverId, deferred); + // }); + //} + + //function syncUserAccessForItem(itemId, syncDataResult) { + // console.log('[mediasync] Begin syncUserAccessForItem'); + + // var deferred = DeferredBuilder.Deferred(); + + // localassetmanager.getUserIdsWithAccess(itemId, serverId).then(function (savedUserIdsWithAccess) { + + // var userIdsWithAccess = syncDataResult.ItemUserAccess[itemId]; + + // if (userIdsWithAccess.join(',') === savedUserIdsWithAccess.join(',')) { + // // Hasn't changed, nothing to do + // deferred.resolve(); + // } + // else { + + // localassetmanager.saveUserIdsWithAccess(itemId, serverId, userIdsWithAccess).then(function () { + // deferred.resolve(); + // }, getOnFail(deferred)); + // } + + // }, getOnFail(deferred)); + + // return deferred.promise(); + //} + + //} + }); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-apiclient/sync/serversync.js b/dashboard-ui/bower_components/emby-apiclient/sync/serversync.js index ea050ec29f..55930fb6bb 100644 --- a/dashboard-ui/bower_components/emby-apiclient/sync/serversync.js +++ b/dashboard-ui/bower_components/emby-apiclient/sync/serversync.js @@ -16,7 +16,8 @@ var connectionOptions = { updateDateLastAccessed: false, enableWebSocket: false, - reportCapabilities: false + reportCapabilities: false, + enableAutomaticBitrateDetection: false }; return connectionManager.connectToServer(server, connectionOptions).then(function (result) { @@ -37,7 +38,7 @@ function performSync(server, options) { - console.log("Creating ContentUploader to server: " + server.Id); + console.log("ServerSync.performSync to server: " + server.Id); options = options || {}; @@ -47,34 +48,27 @@ uploadPhotos = false; } - if (!uploadPhotos) { - return syncOfflineUsers(server, options); - } + var pr = syncOfflineUsers(server, options); - return new Promise(function (resolve, reject) { + return pr.then(function () { - require(['contentuploader'], function (ContentUploader) { + if (uploadPhotos) { + return uploadContent(server, options); + } - new ContentUploader(connectionManager).uploadImages(server).then(function () { + return Promise.resolve(); - console.log("ContentUploaded succeeded to server: " + server.Id); + }).then(function () { - syncOfflineUsers(server, options).then(resolve, reject); - - }, function () { - - console.log("ContentUploaded failed to server: " + server.Id); - - syncOfflineUsers(server, options).then(resolve, reject); - }); - }); + return syncMedia(server, options); }); } + function syncOfflineUsers(server, options) { if (options.syncOfflineUsers === false) { - return syncMedia(server, options); + return Promise.resolve(); } return new Promise(function (resolve, reject) { @@ -83,13 +77,19 @@ var apiClient = connectionManager.getApiClient(server.Id); - new OfflineUserSync().sync(apiClient, server).then(function () { + new OfflineUserSync().sync(apiClient, server).then(resolve, reject); + }); + }); + } - console.log("OfflineUserSync succeeded to server: " + server.Id); + function uploadContent(server, options) { - syncMedia(server, options).then(resolve, reject); + return new Promise(function (resolve, reject) { - }, reject); + require(['contentuploader'], function (contentuploader) { + + uploader = new ContentUploader(connectionManager); + uploader.uploadImages(server).then(resolve, reject); }); }); } diff --git a/dashboard-ui/bower_components/emby-apiclient/sync/transfermanager.js b/dashboard-ui/bower_components/emby-apiclient/sync/transfermanager.js new file mode 100644 index 0000000000..f8bea7307b --- /dev/null +++ b/dashboard-ui/bower_components/emby-apiclient/sync/transfermanager.js @@ -0,0 +1,23 @@ +define(['filerepository'], function (filerepository) { + 'use strict'; + + function downloadFile(url, localPath) { + + return Promise.resolve(); + } + + function downloadSubtitles(url, localItem, subtitleStreamh) { + + return Promise.resolve(''); + } + + function downloadImage(url, serverId, itemId, imageTag) { + return Promise.resolve(false); + } + + return { + downloadFile: downloadFile, + downloadSubtitles: downloadSubtitles, + downloadImage: downloadImage + }; +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-apiclient/sync/useractionrepository.js b/dashboard-ui/bower_components/emby-apiclient/sync/useractionrepository.js new file mode 100644 index 0000000000..51be27f615 --- /dev/null +++ b/dashboard-ui/bower_components/emby-apiclient/sync/useractionrepository.js @@ -0,0 +1,82 @@ +define(['idb'], function () { + 'use strict'; + + // Database name + var dbName = "useractions"; + + // Database version + var dbVersion = 1; + + var dbPromise; + + function setup() { + + dbPromise = idb.open(dbName, dbVersion, function (upgradeDB) { + // Note: we don't use 'break' in this switch statement, + // the fall-through behaviour is what we want. + switch (upgradeDB.oldVersion) { + case 0: + upgradeDB.createObjectStore(dbName); + //case 1: + // upgradeDB.createObjectStore('stuff', { keyPath: '' }); + } + }); //.then(db => console.log("DB opened!", db)); + } + + function getByServerId(serverId) { + return dbPromise.then(function (db) { + return db.transaction(dbName).objectStore(dbName).getAll(null, 1000).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, 10000); + }); + } + + 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'); + tx.objectStore(dbName).put(val, key); + return tx.complete; + }); + } + + function remove(key) { + return dbPromise.then(function (db) { + var tx = db.transaction(dbName, 'readwrite'); + tx.objectStore(dbName).delete(key); + return tx.complete; + }); + } + + function clear() { + return dbPromise.then(function (db) { + var tx = db.transaction(dbName, 'readwrite'); + tx.objectStore(dbName).clear(key); + return tx.complete; + }); + } + + setup(); + + return { + get: get, + set: set, + remove: remove, + clear: clear, + getAll: getAll, + getByServerId: getByServerId + }; +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-apiclient/sync/userrepository.js b/dashboard-ui/bower_components/emby-apiclient/sync/userrepository.js new file mode 100644 index 0000000000..a51f14c384 --- /dev/null +++ b/dashboard-ui/bower_components/emby-apiclient/sync/userrepository.js @@ -0,0 +1,71 @@ +define(['idb'], function () { + 'use strict'; + + // Database name + var dbName = "users"; + + // Database version + var dbVersion = 1; + + var dbPromise; + + function setup() { + + dbPromise = idb.open(dbName, dbVersion, function (upgradeDB) { + // Note: we don't use 'break' in this switch statement, + // the fall-through behaviour is what we want. + switch (upgradeDB.oldVersion) { + case 0: + upgradeDB.createObjectStore(dbName); + //case 1: + // upgradeDB.createObjectStore('stuff', { keyPath: '' }); + } + }); //.then(db => console.log("DB opened!", db)); + } + + function getAll() { + return dbPromise.then(function (db) { + return db.transaction(dbName).objectStore(dbName).getAll(null, 10000); + }); + } + + 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'); + tx.objectStore(dbName).put(val, key); + return tx.complete; + }); + } + + function remove(key) { + return dbPromise.then(function (db) { + var tx = db.transaction(dbName, 'readwrite'); + tx.objectStore(dbName).delete(key); + return tx.complete; + }); + } + + function clear() { + return dbPromise.then(function (db) { + var tx = db.transaction(dbName, 'readwrite'); + tx.objectStore(dbName).clear(key); + return tx.complete; + }); + } + + setup(); + + return { + get: get, + set: set, + remove: remove, + clear: clear, + getAll: getAll + }; +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index 73b63d29e3..eef1d52229 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/.bower.json +++ b/dashboard-ui/bower_components/emby-webcomponents/.bower.json @@ -14,12 +14,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.4.321", - "_release": "1.4.321", + "version": "1.4.390", + "_release": "1.4.390", "_resolution": { "type": "version", - "tag": "1.4.321", - "commit": "fb270e69c8391f62e762ee03d77a7b8a495c5a6f" + "tag": "1.4.390", + "commit": "075f424628a8208d15eca0ed024fe4d8f6bf43fa" }, "_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_target": "^1.2.1", diff --git a/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.js b/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.js index 01b378fc3b..9917d636ee 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.js +++ b/dashboard-ui/bower_components/emby-webcomponents/actionsheet/actionsheet.js @@ -140,7 +140,7 @@ var html = ''; var scrollType = layoutManager.desktop ? 'smoothScrollY' : 'hiddenScrollY'; - var style = (browser.noFlex || browser.firefox) ? 'max-height:400px;' : ''; + var style = (browser.firefox) ? 'max-height:400px;' : ''; // Admittedly a hack but right now the scrollbar is being factored into the width which is causing truncation if (options.items.length > 20) { @@ -193,7 +193,7 @@ html += '
'; - var menuItemClass = browser.noFlex || browser.firefox ? 'actionSheetMenuItem actionSheetMenuItem-noflex' : 'actionSheetMenuItem'; + var menuItemClass = browser.firefox ? 'actionSheetMenuItem actionSheetMenuItem-noflex' : 'actionSheetMenuItem'; if (options.menuItemClass) { menuItemClass += ' ' + options.menuItemClass; diff --git a/dashboard-ui/bower_components/emby-webcomponents/backdrop/backdrop.js b/dashboard-ui/bower_components/emby-webcomponents/backdrop/backdrop.js index 57b19ce5e1..3c5121a408 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/backdrop/backdrop.js +++ b/dashboard-ui/bower_components/emby-webcomponents/backdrop/backdrop.js @@ -40,7 +40,7 @@ backdropImage.style.backgroundImage = "url('" + url + "')"; backdropImage.setAttribute('data-url', url); - backdropImage.style.animation = 'backdrop-fadein ' + 800 + 'ms ease-in normal both'; + backdropImage.classList.add('backdropImageFadeIn'); parent.appendChild(backdropImage); if (!enableAnimation(backdropImage)) { @@ -52,7 +52,7 @@ } var onAnimationComplete = function () { - dom.removeEventListener(backdropImage, 'animationend', onAnimationComplete, { + dom.removeEventListener(backdropImage, dom.whichAnimationEvent(), onAnimationComplete, { once: true }); if (backdropImage === currentAnimatingElement) { @@ -63,7 +63,7 @@ } }; - dom.addEventListener(backdropImage, 'animationend', onAnimationComplete, { + dom.addEventListener(backdropImage, dom.whichAnimationEvent(), onAnimationComplete, { once: true }); @@ -75,7 +75,7 @@ function cancelAnimation() { var elem = currentAnimatingElement; if (elem) { - elem.style.animation = ''; + elem.classList.remove('backdropImageFadeIn'); currentAnimatingElement = null; } } @@ -176,7 +176,24 @@ currentLoadingBackdrop = instance; } - function getItemImageUrls(item) { + var standardWidths = [480, 720, 1280, 1440, 1920]; + function getBackdropMaxWidth() { + + var width = dom.getWindowSize().innerWidth; + + if (standardWidths.indexOf(width) !== -1) { + return width; + } + + var roundScreenTo = 100; + width = Math.floor(width / roundScreenTo) * roundScreenTo; + + return Math.min(width, 1920); + } + + function getItemImageUrls(item, imageOptions) { + + imageOptions = imageOptions || {}; var apiClient = connectionManager.getApiClient(item.ServerId); @@ -184,12 +201,12 @@ return item.BackdropImageTags.map(function (imgTag, index) { - return apiClient.getScaledImageUrl(item.Id, { + return apiClient.getScaledImageUrl(item.Id, Object.assign(imageOptions, { type: "Backdrop", tag: imgTag, - maxWidth: Math.min(dom.getWindowSize().innerWidth, 1920), + maxWidth: getBackdropMaxWidth(), index: index - }); + })); }); } @@ -197,19 +214,19 @@ return item.ParentBackdropImageTags.map(function (imgTag, index) { - return apiClient.getScaledImageUrl(item.ParentBackdropItemId, { + return apiClient.getScaledImageUrl(item.ParentBackdropItemId, Object.assign(imageOptions, { type: "Backdrop", tag: imgTag, - maxWidth: Math.min(dom.getWindowSize().innerWidth, 1920), + maxWidth: getBackdropMaxWidth(), index: index - }); + })); }); } return []; } - function getImageUrls(items) { + function getImageUrls(items, imageOptions) { var list = []; @@ -219,7 +236,7 @@ for (var i = 0, length = items.length; i < length; i++) { - var itemImages = getItemImageUrls(items[i]); + var itemImages = getItemImageUrls(items[i], imageOptions); itemImages.forEach(onImg); } @@ -252,21 +269,20 @@ var rotationInterval; var currentRotatingImages = []; var currentRotationIndex = -1; - function setBackdrops(items, imageSetId) { + function setBackdrops(items, imageOptions, enableImageRotation) { - var images = getImageUrls(items); + var images = getImageUrls(items, imageOptions); - imageSetId = imageSetId || new Date().getTime(); if (images.length) { - startRotation(images, imageSetId); + startRotation(images, enableImageRotation); } else { clearBackdrop(); } } - function startRotation(images) { + function startRotation(images, enableImageRotation) { if (arraysEqual(images, currentRotatingImages)) { return; @@ -277,7 +293,7 @@ currentRotatingImages = images; currentRotationIndex = -1; - if (images.length > 1 && enableRotation()) { + if (images.length > 1 && enableImageRotation !== false && enableRotation()) { rotationInterval = setInterval(onRotationInterval, 20000); } onRotationInterval(); @@ -308,10 +324,12 @@ currentRotationIndex = -1; } - function setBackdrop(url) { + function setBackdrop(url, imageOptions) { - if (typeof url !== 'string') { - url = getImageUrls([url])[0]; + if (url) { + if (typeof url !== 'string') { + url = getImageUrls([url], imageOptions)[0]; + } } if (url) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/backdrop/style.css b/dashboard-ui/bower_components/emby-webcomponents/backdrop/style.css index 4ee1cf6da6..eb4a47236a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/backdrop/style.css +++ b/dashboard-ui/bower_components/emby-webcomponents/backdrop/style.css @@ -15,6 +15,10 @@ contain: layout style; } +.backdropImageFadeIn { + animation: backdrop-fadein 800ms ease-in normal both; +} + @keyframes backdrop-fadein { from { opacity: 0; @@ -23,4 +27,4 @@ to { opacity: 1; } -} \ No newline at end of file +} diff --git a/dashboard-ui/bower_components/emby-webcomponents/browser.js b/dashboard-ui/bower_components/emby-webcomponents/browser.js index 8f4fb0d54d..f47733e451 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/browser.js +++ b/dashboard-ui/bower_components/emby-webcomponents/browser.js @@ -55,6 +55,11 @@ } function isStyleSupported(prop, value) { + + if (typeof window === 'undefined') { + return false; + } + // If no value is supplied, use "inherit" value = arguments.length === 2 ? value : 'inherit'; // Try the native standard method first @@ -116,6 +121,50 @@ return false; } + var _supportsCssAnimation; + var _supportsCssAnimationWithPrefix; + function supportsCssAnimation(allowPrefix) { + + if (allowPrefix) { + if (_supportsCssAnimationWithPrefix === true || _supportsCssAnimationWithPrefix === false) { + return _supportsCssAnimationWithPrefix; + } + } else { + if (_supportsCssAnimation === true || _supportsCssAnimation === false) { + return _supportsCssAnimation; + } + } + + var animation = false, + animationstring = 'animation', + keyframeprefix = '', + domPrefixes = ['Webkit', 'O', 'Moz'], + pfx = '', + elm = document.createElement('div'); + + if (elm.style.animationName !== undefined) { animation = true; } + + if (animation === false && allowPrefix) { + for (var i = 0; i < domPrefixes.length; i++) { + if (elm.style[domPrefixes[i] + 'AnimationName'] !== undefined) { + pfx = domPrefixes[i]; + animationstring = pfx + 'Animation'; + keyframeprefix = '-' + pfx.toLowerCase() + '-'; + animation = true; + break; + } + } + } + + if (allowPrefix) { + _supportsCssAnimationWithPrefix = animation; + return _supportsCssAnimationWithPrefix; + } else { + _supportsCssAnimation = animation; + return _supportsCssAnimation; + } + } + var uaMatch = function (ua) { ua = ua.toLowerCase(); @@ -176,7 +225,7 @@ }; }; - var userAgent = window.navigator.userAgent; + var userAgent = navigator.userAgent; var matched = uaMatch(userAgent); var browser = {}; @@ -204,7 +253,7 @@ } browser.xboxOne = userAgent.toLowerCase().indexOf('xbox') !== -1; - browser.animate = document.documentElement.animate != null; + browser.animate = typeof document !== 'undefined' && document.documentElement.animate != null; browser.tizen = userAgent.toLowerCase().indexOf('tizen') !== -1 || userAgent.toLowerCase().indexOf('smarthub') !== -1; browser.web0s = userAgent.toLowerCase().indexOf('Web0S'.toLowerCase()) !== -1; browser.edgeUwp = browser.edge && userAgent.toLowerCase().indexOf('msapphost') !== -1; @@ -220,11 +269,17 @@ browser.slow = true; } - if (('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch) { - browser.touch = true; + if (typeof document !== 'undefined') { + if (('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch) { + browser.touch = true; + } } browser.keyboard = hasKeyboard(browser); + browser.supportsCssAnimation = supportsCssAnimation; + + browser.osx = userAgent.toLowerCase().indexOf('os x') !== -1; + browser.iOS = browser.ipad || browser.iphone || browser.ipod; return browser; }); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css index c199706649..0532bbddbb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css +++ b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/card.css @@ -53,7 +53,7 @@ button { position: relative; } -.cardPadder-backdrop, .cardPadder-smallBackdrop, .cardPadder-overflowBackdrop { +.cardPadder-backdrop, .cardPadder-smallBackdrop, .cardPadder-overflowBackdrop, .cardPadder-overflowSmallBackdrop { padding-bottom: 56.25%; } @@ -107,7 +107,7 @@ button { .btnCardOptions { position: absolute; - bottom: 0; + bottom: .25em; right: 0; margin: 0 !important; z-index: 1; @@ -133,7 +133,6 @@ button { background-size: contain; background-repeat: no-repeat; background-position: center center; - display: -ms-flex; display: -webkit-flex; display: flex; align-items: center; @@ -403,12 +402,16 @@ button { max-width: 400px; } +.overflowSmallBackdropCard-scalable { + width: 60%; +} + .overflowSquareCard-scalable { width: 42%; max-width: 200px; } -@media all and (min-width: 420px) { +@media all and (min-width: 400px) { .backdropCard-scalable { width: 50%; @@ -439,6 +442,10 @@ button { .overflowSquareCard-scalable { width: 30%; } + + .overflowSmallBackdropCard-scalable { + width: 40% + } } @media all and (min-width: 640px) { @@ -450,6 +457,10 @@ button { .overflowBackdropCard-scalable { width: 56%; } + + .overflowSmallBackdropCard-scalable { + width: 40% + } } @media all and (min-width: 700px) { @@ -462,6 +473,10 @@ button { .backdropCard-scalable { width: 33.333333333333333333333333333333%; } + + .overflowSmallBackdropCard-scalable { + width: 30% + } } @media all and (min-width: 800px) { @@ -502,6 +517,10 @@ button { width: 40%; } + .overflowSmallBackdropCard-scalable { + width: 24% + } + .overflowSquareCard-scalable { width: 22%; } @@ -528,6 +547,10 @@ button { .smallBackdropCard-scalable { width: 16.666666666666666666666666666667%; } + + .overflowSmallBackdropCard-scalable { + width: 18% + } } diff --git a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js index d9d226ce62..b92d051bb1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js +++ b/dashboard-ui/bower_components/emby-webcomponents/cardbuilder/cardbuilder.js @@ -1,5 +1,5 @@ -define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo', 'focusManager', 'indicators', 'globalize', 'layoutManager', 'apphost', 'dom', 'emby-button', 'css!./card', 'paper-icon-button-light', 'clearButtonStyle'], - function (datetime, imageLoader, connectionManager, itemHelper, mediaInfo, focusManager, indicators, globalize, layoutManager, appHost, dom) { +define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusManager', 'indicators', 'globalize', 'layoutManager', 'apphost', 'dom', 'browser', 'emby-button', 'css!./card', 'paper-icon-button-light', 'clearButtonStyle'], + function (datetime, imageLoader, connectionManager, itemHelper, focusManager, indicators, globalize, layoutManager, appHost, dom, browser) { 'use strict'; var devicePixelRatio = window.devicePixelRatio || 1; @@ -144,6 +144,20 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo return 100 / 64; } return 100 / 72; + case 'overflowSmallBackdrop': + if (screenWidth >= 1200) { + return 100 / 18; + } + if (screenWidth >= 1000) { + return 100 / 24; + } + if (screenWidth >= 770) { + return 100 / 30; + } + if (screenWidth >= 540) { + return 100 / 40; + } + return 100 / 60; default: return 4; } @@ -689,7 +703,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo return 'defaultCardColor' + getDefaultColorIndex(str); } - function getCardTextLines(lines, cssClass, forceLines, isOuterFooter, cardLayout, addRightMargin) { + function getCardTextLines(lines, cssClass, forceLines, isOuterFooter, cardLayout, addRightMargin, maxLines) { var html = ''; @@ -714,10 +728,17 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo html += text; html += "
"; valid++; + + if (maxLines && valid >= maxLines) { + break; + } } } if (forceLines) { + + length = Math.min(lines.length, maxLines || lines.length); + while (valid < length) { html += "
 
"; valid++; @@ -792,7 +813,9 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo if (showMediaTitle) { - var name = options.showTitle === 'auto' && !item.IsFolder && item.MediaType === 'Photo' ? '' : itemHelper.getDisplayName(item); + var name = options.showTitle === 'auto' && !item.IsFolder && item.MediaType === 'Photo' ? '' : itemHelper.getDisplayName(item, { + includeParentInfo: options.includeParentInfoInTitle + }); lines.push(name); } @@ -964,8 +987,8 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo if (item.RecordAnyChannel) { lines.push(globalize.translate('sharedcomponents#AllChannels')); } - else if (item.ChannelId) { - lines.push(item.ChannelName || ''); + else { + lines.push(item.ChannelName || globalize.translate('sharedcomponents#OneChannel')); } } @@ -974,7 +997,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo lines.push('as ' + item.Role); } else if (item.Type) { - lines.push(globalize.translate('core#' + item.Type)); + lines.push(globalize.translate('sharedcomponents#' + item.Type)); } else { lines.push(''); } @@ -985,7 +1008,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo lines = []; } - html += getCardTextLines(lines, cssClass, !options.overlayText, isOuterFooter, options.cardLayout, isOuterFooter && options.cardLayout && !options.centerText); + html += getCardTextLines(lines, cssClass, !options.overlayText, isOuterFooter, options.cardLayout, isOuterFooter && options.cardLayout && !options.centerText, options.lines); if (progressHtml) { html += progressHtml; @@ -1041,10 +1064,10 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo minutes = minutes || 1; - childText += globalize.translate('ValueMinutes', Math.round(minutes)); + childText += globalize.translate('sharedcomponents#ValueMinutes', Math.round(minutes)); } else { - childText += globalize.translate('ValueMinutes', 0); + childText += globalize.translate('sharedcomponents#ValueMinutes', 0); } counts.push(childText); @@ -1236,7 +1259,7 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo } if (overlayPlayButton && !item.IsPlaceHolder && (item.LocationType !== 'Virtual' || !item.MediaType || item.Type === 'Program') && item.Type !== 'Person' && item.PlayAccess === 'Full') { - overlayButtons += ''; + overlayButtons += ''; } if (options.overlayMoreButton) { @@ -1268,7 +1291,12 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo cardContentClose = ''; } - if (options.vibrant && imgUrl && !vibrantSwatch) { + var vibrantAttributes = options.vibrant && imgUrl && !vibrantSwatch ? + (' data-vibrant="' + cardFooterId + '" data-swatch="db"') : + ''; + + // Don't use the IMG tag with safari because it puts a white border around it + if (vibrantAttributes && !browser.safari) { cardImageContainerOpen = '
'; var imgClass = 'cardImage cardImage-img lazy'; @@ -1279,10 +1307,10 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'mediaInfo imgClass += ' coveredImage-img'; } } - cardImageContainerOpen += ''; + cardImageContainerOpen += ''; } else { - cardImageContainerOpen = imgUrl ? ('
') : ('
'); + cardImageContainerOpen = imgUrl ? ('
') : ('
'); } var cardScalableClass = options.cardLayout ? 'cardScalable visualCardBox-cardScalable' : 'cardScalable'; diff --git a/dashboard-ui/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js b/dashboard-ui/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js index 599e6e66f4..002cfc9992 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js +++ b/dashboard-ui/bower_components/emby-webcomponents/collectioneditor/collectioneditor.js @@ -42,9 +42,6 @@ Name: dlg.querySelector('#txtNewCollectionName').value, IsLocked: !dlg.querySelector('#chkEnableInternetMetadata').checked, Ids: dlg.querySelector('.fldSelectedItemIds').value || '' - - //ParentId: getParameterByName('parentId') || LibraryMenu.getTopParentId() - }); apiClient.ajax({ diff --git a/dashboard-ui/bower_components/emby-webcomponents/datetime.js b/dashboard-ui/bower_components/emby-webcomponents/datetime.js index 8ec07af932..6c9321862f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/datetime.js +++ b/dashboard-ui/bower_components/emby-webcomponents/datetime.js @@ -110,30 +110,70 @@ return locale; } + function getOptionList(options) { + + var list = []; + + for (var i in options) { + list.push({ + name: i, + value: options[i] + }); + } + + return list; + } + function toLocaleString(date, options) { + options = options || {}; + var currentLocale = getCurrentLocale(); - return currentLocale && toLocaleTimeStringSupportsLocales ? - date.toLocaleString(currentLocale, options || {}) : - date.toLocaleString(); + if (currentLocale && toLocaleTimeStringSupportsLocales) { + return date.toLocaleString(currentLocale, options); + } + + return date.toLocaleString(); } function toLocaleDateString(date, options) { + options = options || {}; + var currentLocale = getCurrentLocale(); - return currentLocale && toLocaleTimeStringSupportsLocales ? - date.toLocaleDateString(currentLocale, options || {}) : - date.toLocaleDateString(); + if (currentLocale && toLocaleTimeStringSupportsLocales) { + return date.toLocaleDateString(currentLocale, options); + } + + // This is essentially a hard-coded polyfill + var optionList = getOptionList(options); + if (optionList.length === 1 && optionList[0].name === 'weekday') { + var weekday = []; + weekday[0] = "Sun"; + weekday[1] = "Mon"; + weekday[2] = "Tue"; + weekday[3] = "Wed"; + weekday[4] = "Thu"; + weekday[5] = "Fri"; + weekday[6] = "Sat"; + return weekday[date.getDay()]; + } + + return date.toLocaleDateString(); } function toLocaleTimeString(date, options) { + options = options || {}; + var currentLocale = getCurrentLocale(); - return currentLocale && toLocaleTimeStringSupportsLocales ? - date.toLocaleTimeString(currentLocale, options || {}).toLowerCase() : - date.toLocaleTimeString().toLowerCase(); + if (currentLocale && toLocaleTimeStringSupportsLocales) { + return date.toLocaleTimeString(currentLocale, options); + } + + return date.toLocaleTimeString(); } function getDisplayTime(date) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/deletehelper.js b/dashboard-ui/bower_components/emby-webcomponents/deletehelper.js new file mode 100644 index 0000000000..6070b6054f --- /dev/null +++ b/dashboard-ui/bower_components/emby-webcomponents/deletehelper.js @@ -0,0 +1,40 @@ +define(['connectionManager', 'confirm', 'embyRouter', 'globalize'], function (connectionManager, confirm, embyRouter, globalize) { + 'use strict'; + + function deleteItem(options) { + + var item = options.item; + var itemId = item.Id; + var parentId = item.SeasonId || item.SeriesId || item.ParentId; + var serverId = item.ServerId; + + var msg = globalize.translate('sharedcomponents#ConfirmDeleteItem'); + var title = globalize.translate('sharedcomponents#HeaderDeleteItem'); + var apiClient = connectionManager.getApiClient(item.ServerId); + + return confirm({ + + title: title, + text: msg, + confirmText: globalize.translate('sharedcomponents#Delete'), + primary: 'cancel' + + }).then(function () { + + return apiClient.deleteItem(itemId).then(function () { + + if (options.navigate) { + if (parentId) { + embyRouter.showItem(parentId, serverId); + } else { + embyRouter.goHome(); + } + } + }); + }); + } + + return { + deleteItem: deleteItem + }; +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js b/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js index d2e00e0a1b..5a4d9c2cfe 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js +++ b/dashboard-ui/bower_components/emby-webcomponents/dialoghelper/dialoghelper.js @@ -5,20 +5,12 @@ function enableAnimation() { - if (browser.animate) { - return true; - } - - if (browser.edge) { - return true; - } - - // An indication of an older browser - if (browser.noFlex) { + // too slow + if (browser.tv) { return false; } - return true; + return browser.supportsCssAnimation(); } function removeCenterFocus(dlg) { @@ -246,12 +238,12 @@ if (enableAnimation()) { var onFinish = function () { - dom.removeEventListener(dlg, 'animationend', onFinish, { + dom.removeEventListener(dlg, dom.whichAnimationEvent(), onFinish, { once: true }); onAnimationFinish(); }; - dom.addEventListener(dlg, 'animationend', onFinish, { + dom.addEventListener(dlg, dom.whichAnimationEvent(), onFinish, { once: true }); return; @@ -265,6 +257,7 @@ if (enableAnimation()) { var animated = true; + switch (dlg.animationConfig.exit.name) { case 'fadeout': @@ -281,12 +274,12 @@ break; } var onFinish = function () { - dom.removeEventListener(dlg, 'animationend', onFinish, { + dom.removeEventListener(dlg, dom.whichAnimationEvent(), onFinish, { once: true }); onAnimationFinish(); }; - dom.addEventListener(dlg, 'animationend', onFinish, { + dom.addEventListener(dlg, dom.whichAnimationEvent(), onFinish, { once: true }); @@ -436,6 +429,7 @@ } if (enableAnimation()) { + switch (dlg.animationConfig.entry.name) { case 'fadein': diff --git a/dashboard-ui/bower_components/emby-webcomponents/dom.js b/dashboard-ui/bower_components/emby-webcomponents/dom.js index d662735c23..b98d5d1daa 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/dom.js +++ b/dashboard-ui/bower_components/emby-webcomponents/dom.js @@ -94,12 +94,65 @@ define([], function () { return windowSize; } + var _animationEvent; + function whichAnimationEvent() { + + if (_animationEvent) { + return _animationEvent; + } + + var t, + el = document.createElement("div"); + var animations = { + "animation": "animationend", + "OAnimation": "oAnimationEnd", + "MozAnimation": "animationend", + "WebkitAnimation": "webkitAnimationEnd" + }; + for (t in animations) { + if (el.style[t] !== undefined) { + _animationEvent = animations[t]; + return animations[t]; + } + } + + _animationEvent = 'animationend'; + return _animationEvent; + } + + var _transitionEvent; + function whichTransitionEvent() { + if (_transitionEvent) { + return _transitionEvent; + } + + var t, + el = document.createElement("div"); + var transitions = { + "transition": "transitionend", + "OTransition": "oTransitionEnd", + "MozTransition": "transitionend", + "WebkitTransition": "webkitTransitionEnd" + }; + for (t in transitions) { + if (el.style[t] !== undefined) { + _transitionEvent = transitions[t]; + return transitions[t]; + } + } + + _transitionEvent = 'transitionend'; + return _transitionEvent; + } + return { parentWithAttribute: parentWithAttribute, parentWithClass: parentWithClass, parentWithTag: parentWithTag, addEventListener: addEventListenerWithOptions, removeEventListener: removeEventListenerWithOptions, - getWindowSize: getWindowSize + getWindowSize: getWindowSize, + whichTransitionEvent: whichTransitionEvent, + whichAnimationEvent: whichAnimationEvent }; }); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.css b/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.css index 8f623792ef..e86bf08dc0 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.css +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.css @@ -15,7 +15,7 @@ user-select: none; cursor: pointer; z-index: 0; - padding: 0.7em 0.57em; + padding: 1em .7em; font-weight: normal; vertical-align: middle; border: 0; @@ -40,6 +40,18 @@ text-transform: uppercase; } +.emby-button-focusscale { + transition: transform 180ms ease-out !important; + -webkit-transform-origin: center center; + transform-origin: center center; +} + + .emby-button-focusscale:focus { + transform: scale(1.16); + z-index: 1; + box-shadow: 0 2px 4px rgba(0,0,0,0.1); + } + .emby-button > i { /* For non-fab buttons that have icons */ font-size: 1.36em; @@ -50,7 +62,7 @@ .fab { display: inline-flex; border-radius: 50%; - background-color: #444; + background-color: rgba(170,170,190, .4); padding: .6em; box-sizing: border-box; align-items: center; @@ -220,3 +232,14 @@ position: relative; z-index: 1; } + +.icon-button-focusscale { + transition: transform 180ms ease-out !important; + -webkit-transform-origin: center center; + transform-origin: center center; +} + + .icon-button-focusscale:focus { + transform: scale(1.3); + z-index: 1; + } diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.js b/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.js index 0064d772b0..e9bc5685d1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-button/emby-button.js @@ -1,4 +1,4 @@ -define(['browser', 'dom', 'css!./emby-button', 'registerElement'], function (browser, dom) { +define(['browser', 'dom', 'layoutManager', 'css!./emby-button', 'registerElement'], function (browser, dom, layoutManager) { 'use strict'; var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype); @@ -26,7 +26,7 @@ btn.appendChild(div); } - div.addEventListener("animationend", function () { + div.addEventListener(dom.whichAnimationEvent(), function () { div.parentNode.removeChild(div); }, false); } @@ -73,10 +73,15 @@ this.classList.add('emby-button'); - if (browser.safari || browser.firefox || browser.noFlex) { + // Even though they support flex, it doesn't quite work with button elements + if (browser.firefox || browser.safari) { this.classList.add('emby-button-noflex'); } + if (layoutManager.tv) { + this.classList.add('emby-button-focusscale'); + } + if (enableAnimation()) { dom.addEventListener(this, 'keydown', onKeyDown, { passive: true diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js b/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js index ba5f5a1c2f..2204b894fb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-button/paper-icon-button-light.js @@ -1,4 +1,4 @@ -define(['browser', 'dom', 'css!./emby-button', 'registerElement'], function (browser, dom) { +define(['browser', 'dom', 'layoutManager', 'css!./emby-button', 'registerElement'], function (browser, dom, layoutManager) { 'use strict'; var EmbyButtonPrototype = Object.create(HTMLButtonElement.prototype); @@ -29,7 +29,7 @@ btn.appendChild(div); - div.addEventListener("animationend", function () { + div.addEventListener(dom.whichAnimationEvent(), function () { div.parentNode.removeChild(div); }, false); } @@ -61,6 +61,10 @@ this.classList.add('paper-icon-button-light'); + if (layoutManager.tv) { + this.classList.add('icon-button-focusscale'); + } + if (enableAnimation()) { dom.addEventListener(this, 'keydown', onKeyDown, { passive: true diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.css b/dashboard-ui/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.css index b70c7c7962..03a6ea757d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.css +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-checkbox/emby-checkbox.css @@ -2,7 +2,7 @@ position: relative; z-index: 1; vertical-align: middle; - display: inline-block; + display: inline-flex; box-sizing: border-box; width: 100%; margin: 0; @@ -18,18 +18,7 @@ .checkboxContainer { margin-bottom: 1.8em; - display: block; -} - -@supports (display: flex) { - - .mdl-checkbox { - display: inline-flex; - } - - .checkboxContainer { display: flex; - } } .checkboxContainer-withDescription { diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js b/dashboard-ui/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js index cef357c8f3..313d93fb7f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-itemscontainer/emby-itemscontainer.js @@ -119,6 +119,8 @@ var serverId = el.getAttribute('data-serverid'); var apiClient = connectionManager.getApiClient(serverId); + newIndex = Math.max(0, newIndex - 1); + apiClient.ajax({ url: apiClient.getUrl('Playlists/' + playlistId + '/Items/' + itemId + '/Move/' + newIndex), diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.css b/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.css index 613d2b8316..acb1c5c265 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.css +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.css @@ -2,7 +2,6 @@ display: block; margin: 0; margin-bottom: 0 !important; - background: none; border: 1px solid #383838; border-width: 0 0 1px 0; /* Prefixed box-sizing rules necessary for older browsers */ @@ -15,17 +14,21 @@ /* General select styles: change as needed */ font-family: inherit; font-weight: inherit; - color: inherit; padding: .35em .8em .3em 0; cursor: pointer; outline: none !important; width: 100%; +} + +.emby-select-withoptioncolor { + color: inherit; + background: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; } - .emby-select option { + .emby-select-withoptioncolor > option { color: initial; } diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.js b/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.js index 63dc61fd05..6dc0713b5f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-select/emby-select.js @@ -118,6 +118,10 @@ inputId++; } + if (!browser.firefox) { + this.classList.add('emby-select-withoptioncolor'); + } + this.addEventListener('mousedown', onMouseDown); this.addEventListener('keydown', onKeyDown); diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.css b/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.css index c3fa8e8b4b..da14f584aa 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.css +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.css @@ -16,7 +16,7 @@ _:-ms-input-placeholder, :root .mdl-slider { -ms-user-select: none; user-select: none; outline: 0; - padding: 0; + padding: 1.5em 0; color: #52B54B; -webkit-align-self: center; -ms-flex-item-align: center; @@ -24,6 +24,9 @@ _:-ms-input-placeholder, :root .mdl-slider { z-index: 1; cursor: pointer; margin: 0; + /* Disable webkit tap highlighting */ + -webkit-tap-highlight-color: rgba(0,0,0,0); + display: block; /**************************** Tracks ****************************/ /**************************** Thumbs ****************************/ /**************************** 0-value ****************************/ @@ -77,83 +80,85 @@ _:-ms-input-placeholder, :root .mdl-slider { border-radius: 50%; background: #52B54B; border: none; - transition: border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1); transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1); - transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1); } - .mdl-slider::-moz-range-thumb { - -moz-appearance: none; - width: 1em; - height: 1em; - box-sizing: border-box; - border-radius: 50%; - background-image: none; - background: #52B54B; - border: none; - } +.slider-no-webkit-thumb::-webkit-slider-thumb { + opacity: 0 !important; +} - .mdl-slider:active::-webkit-slider-thumb { - background-image: none; - background: #52B54B; - -webkit-transform: scale(1.5); - transform: scale(1.5); - } +.mdl-slider::-moz-range-thumb { + -moz-appearance: none; + width: 1em; + height: 1em; + box-sizing: border-box; + border-radius: 50%; + background-image: none; + background: #52B54B; + border: none; +} - .mdl-slider:active::-moz-range-thumb { - background-image: none; - background: #52B54B; - transform: scale(1.5); - } +.mdl-slider:active::-webkit-slider-thumb { + background-image: none; + background: #52B54B; + -webkit-transform: scale(1.5); + transform: scale(1.5); +} - .mdl-slider:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 10px rgba(82, 181, 75, 0.26); - } +.mdl-slider:active::-moz-range-thumb { + background-image: none; + background: #52B54B; + transform: scale(1.5); +} - .mdl-slider:focus::-moz-range-thumb { - box-shadow: 0 0 0 10px rgba(82, 181, 75, 0.26); - } +.mdl-slider:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 10px rgba(82, 181, 75, 0.26); +} - .mdl-slider::-ms-thumb { - width: 16px; - height: 16px; - border: none; - border-radius: 50%; - background: #52B54B; - } +.mdl-slider:focus::-moz-range-thumb { + box-shadow: 0 0 0 10px rgba(82, 181, 75, 0.26); +} - .mdl-slider[disabled]::-ms-thumb { - background: gray; - } +.mdl-slider::-ms-thumb { + width: 16px; + height: 16px; + border: none; + border-radius: 50%; + background: #52B54B; +} - .mdl-slider:disabled:focus::-webkit-slider-thumb, .mdl-slider:disabled:active::-webkit-slider-thumb, .mdl-slider:disabled::-webkit-slider-thumb { - -webkit-transform: scale(0.667); - transform: scale(0.667); - background: rgba(0,0,0, 0.26); - } +.mdl-slider[disabled]::-ms-thumb { + background: gray; +} - .mdl-slider:disabled:focus::-moz-range-thumb, .mdl-slider:disabled:active::-moz-range-thumb, .mdl-slider:disabled::-moz-range-thumb { - transform: scale(0.667); - background: rgba(0,0,0, 0.26); - } +.mdl-slider:disabled:focus::-webkit-slider-thumb, .mdl-slider:disabled:active::-webkit-slider-thumb, .mdl-slider:disabled::-webkit-slider-thumb { + -webkit-transform: scale(0.667); + transform: scale(0.667); + background: rgba(0,0,0, 0.26); +} - .mdl-slider:disabled + .mdl-slider__background-flex > .mdl-slider__background-lower { - background-color: #444; - left: -6px; - } +.mdl-slider:disabled:focus::-moz-range-thumb, .mdl-slider:disabled:active::-moz-range-thumb, .mdl-slider:disabled::-moz-range-thumb { + transform: scale(0.667); + background: rgba(0,0,0, 0.26); +} - .mdl-slider:disabled + .mdl-slider__background-flex > .mdl-slider__background-upper { - left: 6px; - } +.mdl-slider:disabled + .mdl-slider__background-flex > .mdl-slider__background-lower { + background-color: #444; + left: -6px; +} - .mdl-slider:disabled::-ms-fill-lower { - margin-right: 6px; - background: linear-gradient(to right, transparent, transparent 25px, rgba(30,30,30, 0.7) 25px, rgba(30,30,30, 0.7) 0); - } +.mdl-slider:disabled + .mdl-slider__background-flex > .mdl-slider__background-upper { + left: 6px; +} - .mdl-slider:disabled::-ms-fill-upper { - margin-left: 6px; - } +.mdl-slider:disabled::-ms-fill-lower { + margin-right: 6px; + background: linear-gradient(to right, transparent, transparent 25px, rgba(30,30,30, 0.7) 25px, rgba(30,30,30, 0.7) 0); +} + +.mdl-slider:disabled::-ms-fill-upper { + margin-left: 6px; +} .mdl-slider__ie-container { height: 18px; @@ -224,3 +229,7 @@ _:-ms-input-placeholder, :root .mdl-slider { align-items: center; justify-content: center; } + +.sliderBubbleText { + margin: 0; +} diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.js b/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.js index 1c222c1c9b..831a62d6f4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-slider/emby-slider.js @@ -1,4 +1,4 @@ -define(['browser', 'css!./emby-slider', 'registerElement', 'emby-input'], function (browser) { +define(['browser', 'dom', 'css!./emby-slider', 'registerElement', 'emby-input'], function (browser, dom) { 'use strict'; var EmbySliderPrototype = Object.create(HTMLInputElement.prototype); @@ -23,20 +23,27 @@ if (backgroundLower) { var fraction = (value - range.min) / (range.max - range.min); + if (browser.noFlex) { + backgroundLower.style['-webkit-flex'] = fraction; + backgroundUpper.style['-webkit-flex'] = 1 - fraction; + backgroundLower.style['-webkit-box-flex'] = fraction; + backgroundUpper.style['-webkit-box-flex'] = 1 - fraction; + } + backgroundLower.style.flex = fraction; backgroundUpper.style.flex = 1 - fraction; } }); } - function updateBubble(range, value, bubble) { + function updateBubble(range, value, bubble, bubbleText) { bubble.style.left = (value - 1) + '%'; if (range.getBubbleText) { value = range.getBubbleText(value); } - bubble.innerHTML = value; + bubbleText.innerHTML = value; } EmbySliderPrototype.attachedCallback = function () { @@ -50,6 +57,10 @@ this.classList.add('mdl-slider'); this.classList.add('mdl-js-slider'); + if (browser.noFlex) { + this.classList.add('slider-no-webkit-thumb'); + } + var containerElement = this.parentNode; containerElement.classList.add('mdl-slider__container'); @@ -59,42 +70,70 @@ htmlToInsert += '
'; } - htmlToInsert += '
'; + htmlToInsert += '

'; containerElement.insertAdjacentHTML('beforeend', htmlToInsert); var backgroundLower = containerElement.querySelector('.mdl-slider__background-lower'); var backgroundUpper = containerElement.querySelector('.mdl-slider__background-upper'); var sliderBubble = containerElement.querySelector('.sliderBubble'); + var sliderBubbleText = containerElement.querySelector('.sliderBubbleText'); var hasHideClass = sliderBubble.classList.contains('hide'); - this.addEventListener('input', function (e) { + dom.addEventListener(this, 'input', function (e) { this.dragging = true; - }); - this.addEventListener('change', function () { - this.dragging = false; - updateValues(this, backgroundLower, backgroundUpper); - }); - this.addEventListener('mousemove', function (e) { - - var rect = this.getBoundingClientRect(); - var clientX = e.clientX; - var bubbleValue = (clientX - rect.left) / rect.width; - bubbleValue *= 100; - updateBubble(this, Math.round(bubbleValue), sliderBubble); + updateBubble(this, this.value, sliderBubble, sliderBubbleText); if (hasHideClass) { sliderBubble.classList.remove('hide'); hasHideClass = false; } + }, { + passive: true }); - this.addEventListener('mouseleave', function () { + + dom.addEventListener(this, 'change', function () { + this.dragging = false; + updateValues(this, backgroundLower, backgroundUpper); + sliderBubble.classList.add('hide'); hasHideClass = true; + + }, { + passive: true }); + // In firefox this feature disrupts the ability to move the slider + if (!browser.firefox) { + dom.addEventListener(this, 'mousemove', function (e) { + + if (!this.dragging) { + var rect = this.getBoundingClientRect(); + var clientX = e.clientX; + var bubbleValue = (clientX - rect.left) / rect.width; + bubbleValue *= 100; + updateBubble(this, Math.round(bubbleValue), sliderBubble, sliderBubbleText); + + if (hasHideClass) { + sliderBubble.classList.remove('hide'); + hasHideClass = false; + } + } + + }, { + passive: true + }); + + dom.addEventListener(this, 'mouseleave', function () { + sliderBubble.classList.add('hide'); + hasHideClass = true; + }, { + passive: true + }); + } + if (!supportsNativeProgressStyle) { if (supportsValueSetOverride) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css b/dashboard-ui/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css index db3e6ff57b..e89f0a0f5d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-tabs/emby-tabs.css @@ -8,7 +8,7 @@ width: auto; font-family: inherit; font-size: inherit; - color: #aaa !important; + color: #aaa; display: inline-block; vertical-align: middle; flex-shrink: 0; @@ -17,7 +17,7 @@ transition: none !important; position: relative; text-transform: uppercase; - font-weight: bold !important; + font-weight: bold; height: auto; min-width: initial; line-height: initial; @@ -26,11 +26,11 @@ } .emby-tab-button:focus { - font-weight: bold !important; + font-weight: bold; } .emby-tab-button-active { - color: #52B54B !important; + color: #52B54B; border-color: #52B54B; } diff --git a/dashboard-ui/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js b/dashboard-ui/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js index 6b6031b606..b1a3b5fc88 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js +++ b/dashboard-ui/bower_components/emby-webcomponents/emby-tabs/emby-tabs.js @@ -1,4 +1,4 @@ -define(['dom', 'scroller', 'browser', 'registerElement', 'css!./emby-tabs', 'scrollStyles'], function (dom, scroller, browser) { +define(['dom', 'scroller', 'browser', 'layoutManager', 'focusManager', 'registerElement', 'css!./emby-tabs', 'scrollStyles'], function (dom, scroller, browser, layoutManager, focusManager) { 'use strict'; var EmbyTabs = Object.create(HTMLDivElement.prototype); @@ -97,6 +97,23 @@ } } + function getFocusCallback(tabs, e) { + return function () { + onClick.call(tabs, e); + }; + } + + function onFocus(e) { + + if (layoutManager.tv) { + + if (this.focusTimeout) { + clearTimeout(this.focusTimeout); + } + this.focusTimeout = setTimeout(getFocusCallback(this, e), 700); + } + } + function onClick(e) { var tabs = this; @@ -204,14 +221,37 @@ return; } this.classList.add('emby-tabs'); + this.classList.add('focusable'); dom.addEventListener(this, 'click', onClick, { passive: true }); + dom.addEventListener(this, 'focus', onFocus, { + passive: true, + capture: true + }); initSelectionBar(this); }; + EmbyTabs.focus = function () { + + var selected = this.querySelector('.' + activeButtonClass); + + if (selected) { + focusManager.focus(selected); + } else { + focusManager.autoFocus(this); + } + }; + + EmbyTabs.refresh = function () { + + if (this.scroller) { + this.scroller.reload(); + } + }; + EmbyTabs.attachedCallback = function () { initScroller(this); @@ -236,6 +276,10 @@ dom.removeEventListener(this, 'click', onClick, { passive: true }); + dom.removeEventListener(this, 'focus', onFocus, { + passive: true, + capture: true + }); this.selectionBar = null; }; diff --git a/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js b/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js index c7234809d6..4165f46576 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js +++ b/dashboard-ui/bower_components/emby-webcomponents/focusmanager.js @@ -304,10 +304,12 @@ define(['dom'], function (dom) { var nearestElement = nearest[0].node; // See if there's a focusable container, and if so, send the focus command to that - var nearestElementFocusableParent = dom.parentWithClass(nearestElement, 'focusable'); - if (nearestElementFocusableParent && nearestElementFocusableParent !== nearestElement && activeElement) { - if (dom.parentWithClass(activeElement, 'focusable') !== nearestElementFocusableParent) { - nearestElement = nearestElementFocusableParent; + if (activeElement) { + var nearestElementFocusableParent = dom.parentWithClass(nearestElement, 'focusable'); + if (nearestElementFocusableParent && nearestElementFocusableParent !== nearestElement) { + if (focusableContainer !== nearestElementFocusableParent) { + nearestElement = nearestElementFocusableParent; + } } } focus(nearestElement); diff --git a/dashboard-ui/bower_components/emby-webcomponents/formdialog.css b/dashboard-ui/bower_components/emby-webcomponents/formdialog.css index 7986626530..765a3d12fe 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/formdialog.css +++ b/dashboard-ui/bower_components/emby-webcomponents/formdialog.css @@ -51,7 +51,8 @@ bottom: 0; left: 0; right: 0; - display: block; + display: flex; + position: absolute; padding: 1.25em 1em; /* Without this emby-checkbox is able to appear on top */ z-index: 1; @@ -60,16 +61,9 @@ flex-wrap: wrap; } -@supports (display: flex) { - - .formDialogFooter { - display: flex; - position: absolute; - } -} - .formDialogFooter-flex { position: static; + width: 100%; } .formDialogFooterItem { diff --git a/dashboard-ui/bower_components/emby-webcomponents/globalize.js b/dashboard-ui/bower_components/emby-webcomponents/globalize.js index 74e5e47660..ae751fe1fb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/globalize.js +++ b/dashboard-ui/bower_components/emby-webcomponents/globalize.js @@ -185,7 +185,13 @@ define(['connectionManager', 'userSettings', 'events'], function (connectionMana function translateKeyFromModule(key, module) { - return getDictionary(module)[key] || key; + var dictionary = getDictionary(module); + + if (!dictionary) { + return key; + } + + return dictionary[key] || key; } function replaceAll(str, find, replace) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/guide-categories.js b/dashboard-ui/bower_components/emby-webcomponents/guide/guide-categories.js deleted file mode 100644 index 6cdf23599d..0000000000 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/guide-categories.js +++ /dev/null @@ -1,106 +0,0 @@ -define(['dialogHelper', 'globalize', 'userSettings', 'layoutManager', 'connectionManager', 'require', 'loading', 'scrollHelper', 'emby-checkbox', 'css!./../formdialog', 'material-icons'], function (dialogHelper, globalize, userSettings, layoutManager, connectionManager, require, loading, scrollHelper) { - 'use strict'; - - function save(context, options) { - - var categories = []; - - var chkCategorys = context.querySelectorAll('.chkCategory'); - for (var i = 0, length = chkCategorys.length; i < length; i++) { - - var type = chkCategorys[i].getAttribute('data-type'); - - if (chkCategorys[i].checked) { - categories.push(type); - } - } - - if (categories.length >= 4) { - categories.push('series'); - } - - // differentiate between none and all - categories.push('all'); - options.categories = categories; - } - - function load(context, options) { - - var selectedCategories = options.categories || []; - - var chkCategorys = context.querySelectorAll('.chkCategory'); - for (var i = 0, length = chkCategorys.length; i < length; i++) { - - var type = chkCategorys[i].getAttribute('data-type'); - - chkCategorys[i].checked = !selectedCategories.length || selectedCategories.indexOf(type) !== -1; - } - } - - function showEditor(options) { - - return new Promise(function (resolve, reject) { - - var settingsChanged = false; - - require(['text!./guide-categories.template.html'], function (template) { - - var dialogOptions = { - removeOnClose: true, - scrollY: false - }; - - if (layoutManager.tv) { - dialogOptions.size = 'fullscreen'; - } else { - dialogOptions.size = 'small'; - } - - var dlg = dialogHelper.createDialog(dialogOptions); - - dlg.classList.add('formDialog'); - - var html = ''; - - html += globalize.translateDocument(template, 'sharedcomponents'); - - dlg.innerHTML = html; - - dlg.addEventListener('change', function () { - - settingsChanged = true; - }); - - dlg.addEventListener('close', function () { - - if (layoutManager.tv) { - scrollHelper.centerFocus.off(dlg.querySelector('.formDialogContent'), false); - } - - save(dlg, options); - - if (settingsChanged) { - resolve(options); - } else { - reject(); - } - }); - - dlg.querySelector('.btnCancel').addEventListener('click', function () { - dialogHelper.close(dlg); - }); - - if (layoutManager.tv) { - scrollHelper.centerFocus.on(dlg.querySelector('.formDialogContent'), false); - } - - load(dlg, options); - dialogHelper.open(dlg); - }); - }); - } - - return { - show: showEditor - }; -}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/guide-categories.template.html b/dashboard-ui/bower_components/emby-webcomponents/guide/guide-categories.template.html deleted file mode 100644 index 37788eabdb..0000000000 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/guide-categories.template.html +++ /dev/null @@ -1,29 +0,0 @@ -
- -

- ${Categories} -

-
-
-
- -
- - - - -
-
-
\ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.js b/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.js index a9453cee36..e95d750c9a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.js +++ b/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.js @@ -1,6 +1,42 @@ define(['dialogHelper', 'globalize', 'userSettings', 'layoutManager', 'connectionManager', 'require', 'loading', 'scrollHelper', 'emby-checkbox', 'emby-radio', 'css!./../formdialog', 'material-icons'], function (dialogHelper, globalize, userSettings, layoutManager, connectionManager, require, loading, scrollHelper) { 'use strict'; + function saveCategories(context, options) { + + var categories = []; + + var chkCategorys = context.querySelectorAll('.chkCategory'); + for (var i = 0, length = chkCategorys.length; i < length; i++) { + + var type = chkCategorys[i].getAttribute('data-type'); + + if (chkCategorys[i].checked) { + categories.push(type); + } + } + + if (categories.length >= 4) { + categories.push('series'); + } + + // differentiate between none and all + categories.push('all'); + options.categories = categories; + } + + function loadCategories(context, options) { + + var selectedCategories = options.categories || []; + + var chkCategorys = context.querySelectorAll('.chkCategory'); + for (var i = 0, length = chkCategorys.length; i < length; i++) { + + var type = chkCategorys[i].getAttribute('data-type'); + + chkCategorys[i].checked = !selectedCategories.length || selectedCategories.indexOf(type) !== -1; + } + } + function save(context) { var i, length; @@ -65,7 +101,7 @@ } } - function showEditor() { + function showEditor(options) { return new Promise(function (resolve, reject) { @@ -106,6 +142,7 @@ } save(dlg); + saveCategories(dlg, options); if (settingsChanged) { resolve(); @@ -123,6 +160,7 @@ } load(dlg); + loadCategories(dlg, options); dialogHelper.open(dlg); }); }); diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.template.html b/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.template.html index 2fd24e7857..d3395992d4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.template.html +++ b/dashboard-ui/bower_components/emby-webcomponents/guide/guide-settings.template.html @@ -40,8 +40,29 @@

+ +

${Categories}

+
+ + + + +
+
\ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css b/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css index f8477c2345..6fcf960bfb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css +++ b/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css @@ -7,9 +7,18 @@ .tvGuideHeader { white-space: nowrap; width: 100%; + flex-direction: column; flex-shrink: 0; display: flex; - padding-left: 3.4em; +} + +.guideHeaderDateSelection { + font-size: 86%; + padding: .4em 0; +} + +.guideHeaderTimeslots { + display: flex; } .tvProgramSectionHeader { @@ -38,6 +47,7 @@ .channelTimeslotHeader { flex-shrink: 0; + justify-content: center; } .timeslotHeaders { @@ -49,6 +59,7 @@ position: relative; display: flex; align-items: flex-start; + flex-grow: 1; } .channelPrograms { @@ -77,7 +88,7 @@ .currentTimeIndicatorArrowContainer { position: absolute; - bottom: -1.3vh; + bottom: -1vh; width: 100%; color: #52B54B; margin-left: .65vh; @@ -91,11 +102,11 @@ } .currentTimeIndicatorArrow { - width: 4vh; - height: 4vh; - font-size: 4vh; + width: 3vh; + height: 3vh; + font-size: 3vh; color: #52B54B; - margin-left: -2vh; + margin-left: -1.5vh; } .channelPrograms, .timeslotHeadersInner { @@ -171,29 +182,6 @@ } } -.btnSelectDate { - padding-left: .5em; - text-transform: none; - font-weight: normal; -} - -.btnSelectDateContent { - display: flex; - align-items: center; - justify-content: center; -} - -.guideDateText { - font-size: 80%; -} - -@media all and (min-width: 1600px) { - - .guideDateText { - font-size: 92%; - } -} - .btnGuideViewSettings { margin: 0; flex-shrink: 0; @@ -203,13 +191,6 @@ font-size: 1.5em !important; } -@media all and (max-width: 1280px) { - - .btnGuideViewSettings { - display: none; - } -} - .selectDateIcon { flex-shrink: 0; } @@ -258,11 +239,12 @@ } .timeslotHeader, .channelTimeslotHeader { - height: 3em; + height: 2.2em; } .programGrid { padding-bottom: 4px; + flex-grow: 1; } .timeslotHeader { @@ -347,7 +329,7 @@ } .programTextIcon-tv { - font-size: .7em; + font-size: .6em; } .guideChannelNumber { @@ -384,29 +366,6 @@ flex-shrink: 0; } -.btnCategories { - margin: 0 .3em 0 .5em !important; - padding: 0 !important; - flex-shrink: 0; - background: rgba(40, 40, 40, .9); - border-radius: 0 !important; - width: 2.6em; - font-weight: normal !important; - position: relative; -} - -.btnCategoriesText { - transform: rotate(90deg); - text-transform: uppercase; - transform-origin: left; - margin-left: 1.2em; - letter-spacing: .25em; - position: absolute; - top: 0; - margin-top: 1em; - white-space: nowrap; -} - .channelList { display: flex; flex-direction: column; @@ -416,11 +375,11 @@ contain: layout style; } -.programCell, .channelHeaderCell, .btnSelectDate { +.programCell, .channelHeaderCell { outline: none !important; } - .programCell:focus, .channelHeaderCell:focus, .btnSelectDate:focus { + .programCell:focus, .channelHeaderCell:focus { background-color: #555; } @@ -433,25 +392,6 @@ opacity: .7; } -.visibleGuideScroller::-webkit-scrollbar { - width: 10px; - height: 10px; -} - -.visibleGuideScroller::-webkit-scrollbar-button:start:decrement, -.visibleGuideScroller::-webkit-scrollbar-button:end:increment { - display: none; -} - -.visibleGuideScroller::-webkit-scrollbar-track-piece { - background-color: #3b3b3b; -} - -.visibleGuideScroller::-webkit-scrollbar-thumb:vertical, .visibleGuideScroller::-webkit-scrollbar-thumb:horizontal { - -webkit-border-radius: 2px; - background: #888 no-repeat center; -} - .guideOptions { color: #eee; flex-shrink: 0; @@ -464,8 +404,54 @@ .tvGuideHeader { padding-left: 0; } +} - .btnCategories { - display: none; +.guideRequiresUnlock { + margin: 1em auto; + text-align: center; + padding: 1em; + flex-shrink: 0; +} + +.noRubberBanding { + /* This is needed to combat the rubber banding in iOS */ + padding-bottom: 100px; +} + +.guideDateTabsSlider { + text-align: center; +} + +.guide-date-tab-button { + font-weight: 500 !important; + color: inherit !important; + padding-top: .3em !important; + padding-bottom: .3em !important; + opacity: .25; +} + + .guide-date-tab-button.emby-tab-button-active { + color: #52B54B !important; + border-color: transparent !important; + opacity: 1; + font-weight: 500 !important; + } + + .guide-date-tab-button:focus { + color: #52B54B !important; + opacity: 1; + } + +.layout-tv .guide-date-tab-button:focus { + background-color: #52B54B !important; + border-radius: .25em !important; + color: #fff !important; +} + +@media all and (min-width: 1200px) { + + .guide-date-tab-button { + padding-left: 1em !important; + padding-right: 1em !important; } } diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js b/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js index 25bd342899..69741d8d59 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js +++ b/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js @@ -1,21 +1,10 @@ -define(['require', 'browser', 'globalize', 'connectionManager', 'serverNotifications', 'loading', 'datetime', 'focusManager', 'userSettings', 'imageLoader', 'events', 'layoutManager', 'itemShortcuts', 'registrationServices', 'dom', 'clearButtonStyle', 'css!./guide.css', 'programStyles', 'material-icons', 'scrollStyles', 'emby-button', 'paper-icon-button-light'], function (require, browser, globalize, connectionManager, serverNotifications, loading, datetime, focusManager, userSettings, imageLoader, events, layoutManager, itemShortcuts, registrationServices, dom) { +define(['require', 'browser', 'globalize', 'connectionManager', 'serverNotifications', 'loading', 'datetime', 'focusManager', 'userSettings', 'imageLoader', 'events', 'layoutManager', 'itemShortcuts', 'registrationServices', 'dom', 'clearButtonStyle', 'css!./guide.css', 'programStyles', 'material-icons', 'scrollStyles', 'emby-button', 'paper-icon-button-light', 'emby-tabs'], function (require, browser, globalize, connectionManager, serverNotifications, loading, datetime, focusManager, userSettings, imageLoader, events, layoutManager, itemShortcuts, registrationServices, dom) { 'use strict'; function showViewSettings(instance) { require(['guide-settings-dialog'], function (guideSettingsDialog) { - guideSettingsDialog.show().then(function () { - instance.refresh(); - }); - }); - } - - function showCategoryOptions(instance) { - - require(['guide-categories-dialog'], function (guideCategoriesDialog) { - guideCategoriesDialog.show(instance.categoryOptions).then(function (categoryOptions) { - - instance.categoryOptions = categoryOptions; + guideSettingsDialog.show(instance.categoryOptions).then(function () { instance.refresh(); }); }); @@ -38,15 +27,31 @@ var currentDate; var currentStartIndex = 0; var currentChannelLimit = 0; + var autoRefreshInterval; self.refresh = function () { currentDate = null; reloadPage(options.element); + restartAutoRefresh(); + }; + + self.pause = function () { + stopAutoRefresh(); + }; + + self.resume = function (refreshData) { + if (refreshData) { + self.refresh(); + } else { + restartAutoRefresh(); + } }; self.destroy = function () { + stopAutoRefresh(); + events.off(serverNotifications, 'TimerCreated', onTimerCreated); events.off(serverNotifications, 'SeriesTimerCreated', onSeriesTimerCreated); events.off(serverNotifications, 'TimerCancelled', onTimerCancelled); @@ -58,6 +63,24 @@ items = {}; }; + function restartAutoRefresh() { + + stopAutoRefresh(); + + var intervalMs = 60000 * 15; // (minutes) + + autoRefreshInterval = setInterval(function () { + self.refresh(); + }, intervalMs); + } + + function stopAutoRefresh() { + if (autoRefreshInterval) { + clearInterval(autoRefreshInterval); + autoRefreshInterval = null; + } + } + function normalizeDateToTimeslot(date) { var minutesOffset = date.getMinutes() - cellCurationMinutes; @@ -152,7 +175,7 @@ }); } - function reloadGuide(context, newStartDate) { + function reloadGuide(context, newStartDate, focusProgramOnRender) { var apiClient = connectionManager.currentApiClient(); @@ -211,8 +234,8 @@ channelQuery.SortBy = "DatePlayed"; channelQuery.SortOrder = "Descending"; } else { - channelQuery.SortBy = "SortName"; - channelQuery.SortOrder = "Ascending"; + channelQuery.SortBy = null; + channelQuery.SortOrder = null; } var date = newStartDate; @@ -267,7 +290,7 @@ }).then(function (programsResult) { - renderGuide(context, date, channelsResult.Items, programsResult.Items, apiClient); + renderGuide(context, date, channelsResult.Items, programsResult.Items, apiClient, focusProgramOnRender); hideLoading(); @@ -482,7 +505,7 @@ timerAttributes += ' data-seriestimerid="' + program.SeriesTimerId + '"'; } - html += ''; + + return html; + } function setDateRange(page, guideInfo) { @@ -756,18 +788,8 @@ start = new Date(Math.max(today, start)); - dateOptions = []; - - while (start <= end) { - - dateOptions.push({ - name: datetime.toLocaleDateString(start, { weekday: 'long', month: 'long', day: 'numeric' }), - id: start.getTime() - }); - - start.setDate(start.getDate() + 1); - start.setHours(0, 0, 0, 0); - } + var dateTabsHtml = ''; + var tabIndex = 0; var date = new Date(); @@ -775,7 +797,21 @@ date.setTime(currentDate.getTime()); } - changeDate(page, date); + while (start <= end) { + + var isActive = date.getDate() === start.getDate() && date.getMonth() === start.getMonth() && date.getFullYear() === start.getFullYear(); + + dateTabsHtml += getDateTabText(start, isActive, tabIndex); + + start.setDate(start.getDate() + 1); + start.setHours(0, 0, 0, 0); + tabIndex++; + } + + page.querySelector('.emby-tabs-slider').innerHTML = dateTabsHtml; + page.querySelector('.guideDateTabs').refresh(); + + changeDate(page, date, layoutManager.tv); } function reloadPage(page) { @@ -790,36 +826,13 @@ }); } - function selectDate(page) { - - var selectedDate = currentDate || new Date(); - dateOptions.forEach(function (d) { - d.selected = new Date(d.id).getDate() === selectedDate.getDate(); - }); - - require(['actionsheet'], function (actionsheet) { - - actionsheet.show({ - items: dateOptions, - title: globalize.translate('sharedcomponents#HeaderSelectDate'), - callback: function (id) { - - var date = new Date(); - date.setTime(parseInt(id)); - changeDate(page, date); - } - }); - - }); - } - function setScrollEvents(view, enabled) { if (layoutManager.tv) { require(['scrollHelper'], function (scrollHelper) { var fn = enabled ? 'on' : 'off'; - scrollHelper.centerFocus[fn](view.querySelector('.smoothScrollY'), false); + scrollHelper.centerFocus[fn](view.querySelector('.guideVerticalScroller'), false); scrollHelper.centerFocus[fn](view.querySelector('.programGrid'), true); }); } @@ -903,9 +916,9 @@ context.innerHTML = globalize.translateDocument(template, 'sharedcomponents'); if (layoutManager.desktop) { - var visibleGuideScrollers = context.querySelectorAll('.guideScroller'); - for (var i = 0, length = visibleGuideScrollers.length; i < length; i++) { - visibleGuideScrollers[i].classList.add('visibleGuideScroller'); + var guideScrollers = context.querySelectorAll('.guideScroller'); + for (var i = 0, length = guideScrollers.length; i < length; i++) { + guideScrollers[i].classList.add('darkScroller'); } } @@ -914,6 +927,16 @@ programGrid.addEventListener('focus', onProgramGridFocus, true); + if (browser.iOS || browser.osx) { + context.querySelector('.channelsContainer').classList.add('noRubberBanding'); + + var programGridContainer = context.querySelector('.programGridContainer'); + + programGridContainer.classList.add('noRubberBanding'); + programGridContainer.classList.remove('smoothScrollX'); + programGridContainer.classList.add('hiddenScrollX'); + } + dom.addEventListener(programGrid, 'scroll', function (e) { onProgramGridScroll(context, this, timeslotHeaders); }, { @@ -926,31 +949,37 @@ passive: true }); - context.querySelector('.btnSelectDate').addEventListener('click', function () { - selectDate(context); - }); - context.querySelector('.btnUnlockGuide').addEventListener('click', function () { currentStartIndex = 0; reloadPage(context); + restartAutoRefresh(); }); context.querySelector('.btnNextPage').addEventListener('click', function () { currentStartIndex += currentChannelLimit; reloadPage(context); + restartAutoRefresh(); }); context.querySelector('.btnPreviousPage').addEventListener('click', function () { currentStartIndex = Math.max(currentStartIndex - currentChannelLimit, 0); reloadPage(context); + restartAutoRefresh(); }); context.querySelector('.btnGuideViewSettings').addEventListener('click', function () { showViewSettings(self); + restartAutoRefresh(); }); - context.querySelector('.btnCategories').addEventListener('click', function () { - showCategoryOptions(self); + context.querySelector('.guideDateTabs').addEventListener('tabchange', function (e) { + + var tabButton = e.target.querySelectorAll('.guide-date-tab-button')[parseInt(e.detail.selectedTabIndex)]; + if (tabButton) { + var date = new Date(); + date.setTime(parseInt(tabButton.getAttribute('data-date'))); + changeDate(context, date, false); + } }); context.classList.add('tvguide'); diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/tvguide.template.html b/dashboard-ui/bower_components/emby-webcomponents/guide/tvguide.template.html index 215c86b311..322ed2c1dc 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/tvguide.template.html +++ b/dashboard-ui/bower_components/emby-webcomponents/guide/tvguide.template.html @@ -1,36 +1,33 @@ 
-
- - +
-
-
-
- - -
- -
-
-
- -
+
+
+
+
-
+
+ +
+
+
+ +
+
+
+ +

${HeaderEditImages} @@ -19,7 +9,7 @@
-
+

${Images}

-
+

${Backdrops}

-
+

${Screenshots}

-
-
+
- diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js index 3ca82f6852..8ec71354ce 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordinghelper.js @@ -1,4 +1,4 @@ -define(['globalize', 'loading'], function (globalize, loading) { +define(['globalize', 'loading', 'connectionManager'], function (globalize, loading, connectionManager) { 'use strict'; function changeRecordingToSeries(apiClient, timerId, programId) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js index 62f28c79b2..6ff33fe0c7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js @@ -98,15 +98,24 @@ function reload(context, id) { - loading.show(); - currentItemId = id; - var apiClient = connectionManager.getApiClient(currentServerId); - apiClient.getLiveTvSeriesTimer(id).then(function (result) { - renderTimer(context, result, apiClient); + loading.show(); + if (typeof id === 'string') { + currentItemId = id; + + apiClient.getLiveTvSeriesTimer(id).then(function (result) { + + renderTimer(context, result, apiClient); + loading.hide(); + }); + } else if (id) { + + currentItemId = id.Id; + + renderTimer(context, id, apiClient); loading.hide(); - }); + } } function fillKeepUpTo(context) { @@ -130,6 +139,10 @@ context.querySelector('.selectKeepUpTo').innerHTML = html; } + + function onFieldChange(e) { + this.querySelector('.btnSubmit').click(); + } function embed(itemId, serverId, options) { @@ -163,9 +176,8 @@ dlg.querySelector('.dialogContentInner').className = ''; dlg.classList.remove('hide'); - dlg.addEventListener('change', function () { - dlg.querySelector('.btnSubmit').click(); - }); + dlg.removeEventListener('change', onFieldChange); + dlg.addEventListener('change', onFieldChange); currentDialog = dlg; diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html index 464be5c89c..867be869a7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html @@ -8,7 +8,7 @@
- +
+ ${SkipEpisodesAlreadyInMyLibrary}
${SkipEpisodesAlreadyInMyLibraryHelp}
@@ -39,8 +39,7 @@
- +
diff --git a/dashboard-ui/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js b/dashboard-ui/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js index f295f57310..03b6ab315c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js +++ b/dashboard-ui/bower_components/emby-webcomponents/refreshdialog/refreshdialog.js @@ -42,7 +42,7 @@ html += '
'; html += '
'; - html += ''; + html += ''; html += '
'; html += ''; diff --git a/dashboard-ui/bower_components/emby-webcomponents/router.js b/dashboard-ui/bower_components/emby-webcomponents/router.js index 45f5c17fac..d5405e377f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/router.js +++ b/dashboard-ui/bower_components/emby-webcomponents/router.js @@ -1,4 +1,4 @@ -define(['loading', 'dom', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'browser', 'pageJs', 'appSettings', 'apphost'], function (loading, dom, viewManager, skinManager, pluginManager, backdrop, browser, page, appSettings, appHost) { +define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'browser', 'pageJs', 'appSettings', 'apphost'], function (loading, viewManager, skinManager, pluginManager, backdrop, browser, page, appSettings, appHost) { 'use strict'; var embyRouter = { @@ -491,16 +491,12 @@ define(['loading', 'dom', 'viewManager', 'skinManager', 'pluginManager', 'backdr } var resolveOnNextShow; - dom.addEventListener(document, 'viewshow', function () { - + document.addEventListener('viewshow', function () { var resolve = resolveOnNextShow; if (resolve) { resolveOnNextShow = null; resolve(); } - }, { - passive: true, - once: true }); var currentRouteInfo; diff --git a/dashboard-ui/bower_components/emby-webcomponents/scroller/smoothscroller.js b/dashboard-ui/bower_components/emby-webcomponents/scroller/smoothscroller.js index 5a1ab3ba2b..013fc02486 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/scroller/smoothscroller.js +++ b/dashboard-ui/bower_components/emby-webcomponents/scroller/smoothscroller.js @@ -873,6 +873,11 @@ define(['browser', 'layoutManager', 'dom', 'focusManager', 'scrollStyles'], func } } else { slideeElement.style['will-change'] = 'transform'; + if (o.horizontal) { + slideeElement.classList.add('animatedScrollX'); + } else { + slideeElement.classList.add('animatedScrollY'); + } } dragSourceElement.addEventListener('mousedown', dragInitSlidee); diff --git a/dashboard-ui/bower_components/emby-webcomponents/scrollstyles.css b/dashboard-ui/bower_components/emby-webcomponents/scrollstyles.css index 3be6d92dad..31cd8dc30e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/scrollstyles.css +++ b/dashboard-ui/bower_components/emby-webcomponents/scrollstyles.css @@ -33,3 +33,22 @@ width: 0 !important; display: none; } + +.darkScroller::-webkit-scrollbar { + width: 8px; + height: 8px; +} + +.darkScroller::-webkit-scrollbar-button:start:decrement, +.darkScroller::-webkit-scrollbar-button:end:increment { + display: none; +} + +.darkScroller::-webkit-scrollbar-track-piece { + background-color: #3b3b3b; +} + +.darkScroller::-webkit-scrollbar-thumb:vertical, .darkScroller::-webkit-scrollbar-thumb:horizontal { + -webkit-border-radius: 2px; + background: #888 no-repeat center; +} diff --git a/dashboard-ui/bower_components/emby-webcomponents/shortcuts.js b/dashboard-ui/bower_components/emby-webcomponents/shortcuts.js index a0120c1c21..885921a40f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/shortcuts.js +++ b/dashboard-ui/bower_components/emby-webcomponents/shortcuts.js @@ -225,6 +225,8 @@ define(['playbackManager', 'inputManager', 'connectionManager', 'embyRouter', 'g var serverId = item.ServerId; var type = item.Type; + var playableItemId = type === 'Program' ? item.ChannelId : item.Id; + if (action === 'link') { showItem(item, { @@ -238,7 +240,7 @@ define(['playbackManager', 'inputManager', 'connectionManager', 'embyRouter', 'g } else if (action === 'instantmix') { - playbackManager.instantMix(id, serverId); + playbackManager.instantMix(playableItemId, serverId); } else if (action === 'play') { @@ -246,7 +248,7 @@ define(['playbackManager', 'inputManager', 'connectionManager', 'embyRouter', 'g var startPositionTicks = parseInt(card.getAttribute('data-positionticks') || '0'); playbackManager.play({ - ids: [id], + ids: [playableItemId], startPositionTicks: startPositionTicks, serverId: serverId }); @@ -410,11 +412,17 @@ define(['playbackManager', 'inputManager', 'connectionManager', 'embyRouter', 'g } } + function getShortcutAttributesHtml(item) { + + return 'data-id="' + item.Id + '" data-serverid="' + item.ServerId + '" data-type="' + item.Type + '" data-mediatype="' + item.MediaType + '" data-channelid="' + item.ChannelId + '" data-isfolder="' + item.IsFolder + '"'; + } + return { on: on, off: off, onClick: onClick, - showContextMenu: showContextMenu + showContextMenu: showContextMenu, + getShortcutAttributesHtml: getShortcutAttributesHtml }; }); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json index 1d8e789dc1..e2b3d9f5e5 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json index fe119c37ed..c514924674 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json index b9e0870f58..887bf6006c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Opcions de Visualitzaci\u00f3", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Ordre de visualitzaci\u00f3:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json index a34bb840bb..4a629b1bcb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json @@ -1,37 +1,37 @@ { - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", - "ValueSpecialEpisodeName": "Special - {0}", - "Share": "Share", + "MessageUnlockAppWithPurchaseOrSupporter": "Odemknout tuto funkci pomoc\u00ed jednor\u00e1zov\u00e9 platby, nebo pomoc\u00ed aktivace p\u0159edplatn\u00e9ho Emby Premiere.", + "MessageUnlockAppWithSupporter": "Odemknout tuto funkci pomoc\u00ed aktivn\u00edho p\u0159edplatn\u00e9ho Emby Premiere.", + "MessageToValidateSupporter": "Pokud m\u00e1te aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere, ujist\u011bte se, \u017ee m\u00e1te nastaven Emby Premiere v panelu Nastaven\u00ed pod N\u00e1pov\u011bda -> Emby Premiere.", + "ValueSpecialEpisodeName": "Speci\u00e1l - {0}", + "Share": "Sd\u00edlet", "Add": "P\u0159idat", "ServerUpdateNeeded": "Tento Emby Server je t\u0159eba aktualizovat. Chcete-li st\u00e1hnout nejnov\u011bj\u0161\u00ed verzi, nav\u0161tivte pros\u00edm {0}", "LiveTvGuideRequiresUnlock": "Live TV programov\u00fd pr\u016fvodce je v sou\u010dasn\u00e9 dob\u011b omezen na {0} kan\u00e1l\u016f. Odemknut\u00edm se m\u016f\u017eete nau\u010dit jak si u\u017e\u00edt tuto funkci.", - "AttributeNew": "New", - "Premiere": "Premiere", - "Live": "Live", + "AttributeNew": "Nov\u00e9", + "Premiere": "Premi\u00e9ra", + "Live": "\u017div\u011b", "Repeat": "Opakovat", - "TrackCount": "{0} tracks", + "TrackCount": "{0} stop", "ItemCount": "{0} polo\u017eek", - "ReleaseYearValue": "Release year: {0}", - "OriginalAirDateValue": "Original air date: {0}", - "EndsAtValue": "Ends at {0}", - "OptionSundayShort": "Sun", - "OptionMondayShort": "Mon", - "OptionTuesdayShort": "Tue", - "OptionWednesdayShort": "Wed", - "OptionThursdayShort": "Thu", - "OptionFridayShort": "Fri", - "OptionSaturdayShort": "Sat", + "ReleaseYearValue": "Rok vyd\u00e1n\u00ed: {0}", + "OriginalAirDateValue": "Datum vys\u00edl\u00e1n\u00ed origin\u00e1lu: {0}", + "EndsAtValue": "Kon\u010d\u00ed v {0}", + "OptionSundayShort": "Ned", + "OptionMondayShort": "Pon", + "OptionTuesdayShort": "\u00date", + "OptionWednesdayShort": "St\u0159", + "OptionThursdayShort": "\u010ctv", + "OptionFridayShort": "P\u00e1t", + "OptionSaturdayShort": "Sob", "HeaderSelectDate": "Vyber datum", "ButtonOk": "Ok", "ButtonCancel": "Zru\u0161it", "ButtonGotIt": "M\u00e1m to", "ButtonRestart": "Restart", "RecordingCancelled": "Nahr\u00e1v\u00e1n\u00ed zru\u0161eno.", - "SeriesCancelled": "Series cancelled.", + "SeriesCancelled": "S\u00e9rie zru\u0161ena.", "RecordingScheduled": "Pl\u00e1n nahr\u00e1v\u00e1n\u00ed.", - "SeriesRecordingScheduled": "Series recording scheduled.", + "SeriesRecordingScheduled": "Pl\u00e1n nahr\u00e1v\u00e1n\u00ed seri\u00e1lu.", "HeaderNewRecording": "Nov\u00fd z\u00e1znam", "Sunday": "Ned\u011ble", "Monday": "Pond\u011bl\u00ed", @@ -41,23 +41,23 @@ "Friday": "P\u00e1tek", "Saturday": "Sobota", "Days": "Dny", - "RecordSeries": "Record series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "CoverArt": "Cover Art", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.", + "RecordSeries": "Nahr\u00e1t s\u00e9rie", + "HeaderCinemaMode": "Cinema M\u00f3d", + "HeaderCloudSync": "Synchronizace s Cloudem", + "HeaderOfflineDownloads": "Offline m\u00e9dia", + "HeaderOfflineDownloadsDescription": "St\u00e1hnout m\u00e9dia do va\u0161eho za\u0159\u00edzen\u00ed pro snadn\u00e9 pou\u017eit\u00ed offline.", + "CloudSyncFeatureDescription": "Synchronizujte va\u0161e m\u00e9dia na cloud pro jednodu\u0161\u0161\u00ed z\u00e1lohov\u00e1n\u00ed, archivaci a konverzi.", + "CoverArtFeatureDescription": "Cover Art vytv\u00e1\u0159\u00ed z\u00e1bavn\u00e9 obaly a dal\u0161\u00ed mo\u017enosti \u00faprav, kter\u00e9 v\u00e1m pomohou p\u0159izp\u016fsobit va\u0161e medi\u00e1ln\u00ed obr\u00e1zky.", + "CoverArt": "Obal", + "CinemaModeFeatureDescription": "S re\u017eimem Kino z\u00edskate funkci, kter\u00e1 p\u0159ed hlavn\u00edm programem p\u0159ehraje trailery a u\u017eivatelsk\u00e1 intra.", + "HeaderFreeApps": "Emby Apps zdarma", + "FreeAppsFeatureDescription": "U\u017eijte si v\u00fdb\u011br Emby aplikac\u00ed zdarma pro va\u0161e za\u0159\u00edzen\u00ed.", "HeaderBecomeProjectSupporter": "Z\u00edskat Emby Premiere", "MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere je zapot\u0159eb\u00ed pro vytvo\u0159en\u00ed automatick\u00e9ho nahr\u00e1v\u00e1n\u00ed \u0159ad.", - "LabelEmailAddress": "E-mail address:", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.", + "LabelEmailAddress": "E-mailov\u00e1 adresa:", + "PromoConvertRecordingsToStreamingFormat": "Automaticky konvertovat nahr\u00e1vky do dopore\u010den\u00e9ho streamovac\u00edho form\u00e1tu s Emby Premiere. Nahr\u00e1vky budou p\u0159ehr\u00e1v\u00e1n\u00ed konvertov\u00e1ny do MP4 nebo MKV - dle nastaven\u00ed Emby server.", "FeatureRequiresEmbyPremiere": "Tato funkce vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.", - "HeaderConvertYourRecordings": "Convert Your Recordings", + "HeaderConvertYourRecordings": "Konverze va\u0161ich nahr\u00e1vek", "Record": "Nahr\u00e1vat", "Save": "Ulo\u017eit", "Edit": "Upravit", @@ -67,38 +67,38 @@ "HeaderDeleteItem": "Smazat polo\u017eku", "ConfirmDeleteItem": "Smaz\u00e1n\u00edm polo\u017eky odstran\u00edte soubor jak z knihovny m\u00e9di\u00ed tak ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?", "Refresh": "Obnovit", - "RefreshQueued": "Refresh queued.", - "AddToCollection": "Add to collection", + "RefreshQueued": "Obnoven\u00ed za\u0159azeno.", + "AddToCollection": "P\u0159idat do kolekce", "HeaderAddToCollection": "P\u0159idat do Kolekce", "NewCollection": "Nov\u00e1 kolekce", - "LabelCollection": "Collection:", + "LabelCollection": "Kolekce:", "Help": "N\u00e1pov\u011bda", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "NewCollectionHelp": "Kolekce dovol\u00ed vytvo\u0159it personalizovan\u00e9 seskupen\u00ed film\u016f a dal\u0161\u00edho obsahu knihoven.", "SearchForCollectionInternetMetadata": "Vyhledat metadata a obr\u00e1zky na Internetu.", "LabelName": "Jm\u00e9no:", "NewCollectionNameExample": "P\u0159\u00edklad: Kolekce Star Wars", - "MessageItemsAdded": "Items added.", + "MessageItemsAdded": "Polo\u017eka p\u0159id\u00e1na.", "OptionNew": "Nov\u00fd...", "LabelPlaylist": "Playlist:", "AddToPlaylist": "P\u0159idat do playlistu", "HeaderAddToPlaylist": "P\u0159idat do playlistu", - "Subtitles": "Subtitles", + "Subtitles": "Titulky", "SearchForSubtitles": "Vyhledat titulky", "LabelLanguage": "Jazyk:", "Search": "Vyhled\u00e1v\u00e1n\u00ed", - "NoSubtitleSearchResultsFound": "No results found.", + "NoSubtitleSearchResultsFound": "\u017d\u00e1dn\u00e9 v\u00fdsledky.", "File": "Soubor", "MessageAreYouSureDeleteSubtitles": "Jste si jisti, \u017ee chcete smazat tyto titulky?", "ConfirmDeletion": "Potvrdit smaz\u00e1n\u00ed", - "MySubtitles": "My Subtitles", - "MessageDownloadQueued": "Download queued.", + "MySubtitles": "M\u00e9 titulky", + "MessageDownloadQueued": "Sta\u017een\u00ed za\u0159azeno.", "EditSubtitles": "Editovat titulky", "UnlockGuide": "Pr\u016fvodce pro odem\u010den\u00ed", "RefreshMetadata": "Obnovit Metadata", "ReplaceExistingImages": "Nahradit existuj\u00edc\u00ed obr\u00e1zky", - "ReplaceAllMetadata": "Replace all metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "LabelRefreshMode": "Refresh mode:", + "ReplaceAllMetadata": "P\u0159epsat v\u0161echna metadata", + "SearchForMissingMetadata": "Hled\u00e1n\u00ed chyb\u011bj\u00edc\u00edch metadat", + "LabelRefreshMode": "M\u00f3d obnovy:", "NoItemsFound": "Nenalezeny \u017e\u00e1dn\u00e9 polo\u017eky.", "HeaderSaySomethingLike": "Vyslovte n\u011bco jako...", "ButtonTryAgain": "Zkusit znovu", @@ -110,35 +110,35 @@ "Favorite": "Obl\u00edben\u00e9", "Like": "M\u00e1m r\u00e1d", "Dislike": "Nem\u00e1m r\u00e1d", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", + "RefreshDialogHelp": "Metadata se aktualizuj\u00ed na z\u00e1klad\u011b nastaven\u00ed a internetov\u00fdch slu\u017eeb, kter\u00e9 jsou povoleny v nastaven\u00ed Emby Server.", "Open": "Otev\u0159\u00edt", "Play": "P\u0159ehr\u00e1t", "Queue": "Fronta", "Shuffle": "N\u00e1hodn\u011b", "Identify": "Identifikuj", "EditImages": "Editace obr\u00e1zk\u016f", - "EditInfo": "Edit info", - "Sync": "Sync", + "EditInfo": "Editace info", + "Sync": "Synchronizace", "InstantMix": "Okam\u017eit\u00e9 m\u00edch\u00e1n\u00ed", "ViewAlbum": "Zobrazit album", "ViewArtist": "Zobrazit \u00fam\u011blce", "QueueAllFromHere": "Za\u0159adit v\u0161e do fronty", "PlayAllFromHere": "P\u0159ehr\u00e1t v\u0161e odsud", - "PlayFromBeginning": "Play from beginning", - "ResumeAt": "Resume from {0}", + "PlayFromBeginning": "P\u0159ehr\u00e1t od za\u010d\u00e1tku", + "ResumeAt": "Obnovit p\u0159ehr\u00e1v\u00e1n\u00ed od {0}", "RemoveFromPlaylist": "Odebrat z playlistu", - "RemoveFromCollection": "Remove from collection", + "RemoveFromCollection": "Odebrat z kolekce", "Trailer": "Uk\u00e1zka\/trailer", "MarkPlayed": "Ozna\u010dit p\u0159ehran\u00e9", "MarkUnplayed": "Ozna\u010dit nep\u0159ehran\u00e9", - "GroupVersions": "Group versions", + "GroupVersions": "Skupinov\u00e9 verze", "PleaseSelectTwoItems": "Vyberte nejm\u00e9n\u011b dv\u011b polo\u017eky pros\u00edm.", "TryMultiSelect": "Vyzkou\u0161ej multi-v\u00fdb\u011br", "TryMultiSelectMessage": "Chcete-li upravit v\u00edce medi\u00e1ln\u00edch polo\u017eek, sta\u010d\u00ed kliknout a podr\u017eet na kter\u00e9mkoliv plak\u00e1tu. Pot\u00e9 m\u016f\u017eete vybrat v\u00edce polo\u017eek, kter\u00e9 chcete spravovat. Zkus to!", "HeaderConfirmRecordingCancellation": "Potvrzen\u00ed zru\u0161en\u00ed nahr\u00e1v\u00e1n\u00ed", "MessageConfirmRecordingCancellation": "Jste si jisti, \u017ee chcete zru\u0161it tuto nahr\u00e1vku?", "Error": "Chyba", - "VoiceInput": "Voice Input", + "VoiceInput": "Hlasov\u00fd vstup", "LabelContentType": "Typ obsahu:", "LabelPath": "Cesta k souboru:", "LabelTitle": "N\u00e1zev:", @@ -183,16 +183,16 @@ "LabelAirsAfterSeason": "Vys\u00edl\u00e1no po sez\u00f3n\u011b:", "LabelAirsBeforeEpisode": "Vys\u00edl\u00e1no p\u0159ed epizodou:", "HeaderExternalIds": "Extern\u00ed Id:", - "HeaderDisplaySettings": "Display Settings", + "HeaderDisplaySettings": "Nastaven\u00ed zobrazen\u00ed", "LabelTreatImageAs": "Pova\u017eovat obr\u00e1zek za:", "LabelDisplayOrder": "Po\u0159ad\u00ed zobrazen\u00ed:", - "Countries": "Countries", - "Genres": "Genres", + "Countries": "Zem\u011b", + "Genres": "\u017d\u00e1nry", "HeaderPlotKeywords": "Kl\u00ed\u010dov\u00e1 slova obsahu", - "Studios": "Studios", + "Studios": "Studia", "Tags": "Tagy", "HeaderMetadataSettings": "Nastaven\u00ed metadat", - "People": "People", + "People": "Lid\u00e9", "LabelMetadataDownloadLanguage": "Preferovan\u00fd jazyk:", "LabelLockItemToPreventChanges": "Uzamknout polo\u017eku pro z\u00e1branu budouc\u00edch zm\u011bn", "MessageLeaveEmptyToInherit": "P\u0159i ponech\u00e1n\u00ed pr\u00e1zdn\u00e9 polo\u017eky bude zd\u011bd\u011bno nastaven\u00ed z polo\u017eky p\u0159edka nebo z glob\u00e1ln\u00ed defaultn\u00ed hodnoty.", @@ -202,14 +202,14 @@ "LabelBirthDate": "Datum narozen\u00ed:", "LabelDeathDate": "Datum \u00famrt\u00ed:", "LabelEndDate": "Datum ukon\u010den\u00ed:", - "LabelSeasonNumber": "Season number:", - "LabelEpisodeNumber": "Episode number:", + "LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny:", + "LabelEpisodeNumber": "\u010c\u00edslo epizody:", "LabelTrackNumber": "\u010c\u00edslo stopy:", "LabelNumber": "\u010c\u00edslo:", "LabelDiscNumber": "\u010c\u00edslo disku", "LabelParentNumber": "\u010c\u00edslo p\u0159edch\u016fdce", "SortName": "Set\u0159\u00eddit dle n\u00e1zvu", - "ReleaseDate": "Release date", + "ReleaseDate": "Datum vyd\u00e1n\u00ed", "Continuing": "Pokra\u010dov\u00e1n\u00ed", "Ended": "Ukon\u010deno", "HeaderEnabledFields": "Povolen\u00e9 pole", @@ -217,26 +217,26 @@ "Backdrops": "Pozad\u00ed", "Images": "Obr\u00e1zky", "Keywords": "Kl\u00ed\u010dov\u00e1 slova", - "Runtime": "Runtime", - "ProductionLocations": "Production locations", - "BirthLocation": "Birth location", + "Runtime": "D\u00e9lka", + "ProductionLocations": "M\u00edsto v\u00fdroby", + "BirthLocation": "M\u00edsto narozen\u00ed", "ParentalRating": "Rodi\u010dovsk\u00e9 hodnocen\u00ed", - "Name": "Name", - "Overview": "Overview", + "Name": "N\u00e1zev", + "Overview": "P\u0159ehled\/Obsah", "LabelType": "Typ:", "LabelPersonRole": "Role:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", + "LabelPersonRoleHelp": "P\u0159\u00edklad: \u0158idi\u010d kami\u00f3nu se zmrzlinou", "Actor": "Herec", "Composer": "Skladatel", "Director": "Re\u017eis\u00e9r", - "GuestStar": "Guest star", + "GuestStar": "Hostuj\u00edc\u00ed hv\u011bzda", "Producer": "Producent", "Writer": "Napsal", "InstallingPackage": "Instalace {0}", "PackageInstallCompleted": "Instalace {0} dokon\u010dena.", "PackageInstallFailed": "Instalace {0} selhala!!!", "PackageInstallCancelled": "Instalace {0} zru\u0161ena.", - "SeriesYearToPresent": "{0}-Sou\u010dasnost", + "SeriesYearToPresent": "{0} - Sou\u010dasnost", "ValueOneSong": "1 song", "ValueSongCount": "{0} song\u016f", "ValueOneMovie": "1 film", @@ -255,20 +255,20 @@ "HeaderIdentifyItemHelp": "Zadejte jedno nebo v\u00edce vyhled\u00e1vac\u00edch krit\u00e9ri\u00ed. Odstra\u0148te krit\u00e9ria pro vyhled\u00e1n\u00ed v\u00edce v\u00fdsledk\u016f.", "PleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.", "MessageItemSaved": "Polo\u017eka ulo\u017eena.", - "SearchResults": "Search Results", - "SyncToOtherDevice": "Sync to other device", - "MakeAvailableOffline": "Make available offline", - "ServerNameIsRestarting": "Emby Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", + "SearchResults": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", + "SyncToOtherDevice": "Synchronizovat na dal\u0161\u00ed za\u0159\u00edzen\u00ed", + "MakeAvailableOffline": "Zp\u0159\u00edstupnit offline", + "ServerNameIsRestarting": "Emby Server - {0} je restartov\u00e1n.", + "ServerNameIsShuttingDown": "Emby Server - {0} je vyp\u00edn\u00e1n.", "HeaderDeleteItems": "Odstranit polo\u017eky", "ConfirmDeleteItems": "Odstran\u011bn\u00edm t\u011bchto polo\u017eek odstran\u00edte va\u0161e m\u00e9dia jak z knihovny m\u00e9di\u00ed, tak i ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?", - "PleaseRestartServerName": "Please restart Emby Server - {0}.", + "PleaseRestartServerName": "Pros\u00edm, restartujte Emby Server - {0}.", "SyncJobCreated": "\u00daloha Sync vytvo\u0159ena", "LabelSyncTo": "Sync do:", "LabelSyncJobName": "N\u00e1zev Sync \u00falohy:", "LabelQuality": "Kvalita:", "LabelSyncNoTargetsHelp": "Vypad\u00e1 to, \u017ee v sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e9 aplikace, kter\u00e9 podporuj\u00ed synchronizaci.", - "DownloadScheduled": "Download scheduled", + "DownloadScheduled": "Sta\u017een\u00ed napl\u00e1nov\u00e1no", "LearnMore": "Zjistit v\u00edce", "LabelProfile": "Profil:", "LabelBitrateMbps": "Datov\u00fd tok (Mbps):", @@ -279,76 +279,80 @@ "LabelItemLimit": "Limit polo\u017eek:", "LabelItemLimitHelp": "Voliteln\u00e9. Nastaven\u00ed limitu k po\u010dtu polo\u017eek, kter\u00e9 budou synchronizovan\u00e9.", "PleaseSelectDeviceToSyncTo": "Vyberte za\u0159\u00edzen\u00ed k synchronizaci.", - "Screenshots": "Screenshots", - "MoveRight": "Move right", - "MoveLeft": "Move left", - "ConfirmDeleteImage": "Delete image?", - "HeaderEditImages": "Edit Images", + "Screenshots": "Sn\u00edmky obrazovky", + "MoveRight": "Posunout vpravo", + "MoveLeft": "Posunout vlevo", + "ConfirmDeleteImage": "Odstranit obr\u00e1zek?", + "HeaderEditImages": "Editace obr\u00e1zk\u016f", "Settings": "Nastaven\u00ed", - "ShowIndicatorsFor": "Show indicators for:", - "NewEpisodes": "New episodes", - "HDPrograms": "HD programs", - "LiveBroadcasts": "Live broadcasts", - "Premieres": "Premieres", - "RepeatEpisodes": "Repeat episodes", - "DvrSubscriptionRequired": "Emby DVR requires an active Emby Premiere subscription.", - "HeaderCancelRecording": "Cancel Recording", - "CancelRecording": "Cancel recording", - "HeaderKeepRecording": "Keep Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderKeepSeries": "Keep Series", - "HeaderLearnMore": "Learn More", - "DeleteMedia": "Delete media", - "SeriesSettings": "Series settings", - "HeaderRecordingOptions": "Recording Options", - "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:", - "AllChannels": "All channels", - "LabelRecord": "Record:", - "NewEpisodesOnly": "New episodes only", - "AllEpisodes": "All episodes", - "LabelStartWhenPossible": "Start when possible:", - "LabelStopWhenPossible": "Stop when possible:", - "MinutesBefore": "minutes before", - "MinutesAfter": "minutes after", - "SkipEpisodesAlreadyInMyLibrary": "Skip episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "LabelKeepUpTo": "Keep up to:", - "AsManyAsPossible": "As many as possible", + "ShowIndicatorsFor": "Zobrazit indik\u00e1tor pro:", + "NewEpisodes": "Nov\u00e9 episody", + "HDPrograms": "HD programy", + "LiveBroadcasts": "P\u0159\u00edm\u00e9 p\u0159enosy", + "Premieres": "Premi\u00e9ry", + "RepeatEpisodes": "Opakovan\u00ed epizod", + "DvrSubscriptionRequired": "Emby DVR vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.", + "HeaderCancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed", + "CancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed", + "HeaderKeepRecording": "Udr\u017eet nahr\u00e1v\u00e1n\u00ed", + "HeaderCancelSeries": "Ukon\u010dit Seri\u00e1l", + "HeaderKeepSeries": "Udr\u017eet seri\u00e1l", + "HeaderLearnMore": "Zjistit v\u00edce", + "DeleteMedia": "Odstranit m\u00e9dia", + "SeriesSettings": "Nastaven\u00ed seri\u00e1lu", + "HeaderRecordingOptions": "Nastaven\u00ed nahr\u00e1v\u00e1n\u00ed", + "CancelSeries": "Ukon\u010dit Seri\u00e1l", + "DoNotRecord": "Nenahr\u00e1vat", + "HeaderSeriesOptions": "Nastaven\u00ed seri\u00e1lu", + "LabelChannels": "Kan\u00e1ly:", + "ChannelNameOnly": "Kan\u00e1l {0} jen", + "Anytime": "Kdykoliv", + "AroundTime": "Okolo {0}", + "LabelAirtime": "\u010cas vys\u00edl\u00e1n\u00ed:", + "AllChannels": "V\u0161echny kan\u00e1ly", + "LabelRecord": "Z\u00e1znam:", + "NewEpisodesOnly": "Jen nov\u00e9 epizody", + "AllEpisodes": "V\u0161echny epizody", + "LabelStartWhenPossible": "Za\u010d\u00edt jakmile je to mo\u017en\u00e9:", + "LabelStopWhenPossible": "Zastavit jakmile je to mo\u017en\u00e9:", + "MinutesBefore": "minut p\u0159edem", + "MinutesAfter": "minut po", + "SkipEpisodesAlreadyInMyLibrary": "P\u0159esko\u010dit epizody, kter\u00e9 jsou u\u017e v m\u00e9 knihovn\u011b", + "SkipEpisodesAlreadyInMyLibraryHelp": "Epizody budou porovn\u00e1v\u00e1ny s pou\u017eit\u00edm obdob\u00ed a \u010d\u00edsla epizody, pokud jsou k dispozici.", + "LabelKeepUpTo": "Aktualizovat k:", + "AsManyAsPossible": "Tolikr\u00e1t jak je mo\u017en\u00e9", "DefaultErrorMessage": "Do\u0161lo k chyb\u011b p\u0159i zpracov\u00e1n\u00ed po\u017eadavku. Pros\u00edm zkuste to znovu pozd\u011bji.", - "LabelKeep:": "Keep:", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Categories": "Categories", - "Sports": "Sports", - "News": "News", - "Movies": "Movies", - "Kids": "Kids", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "SortChannelsBy": "Sort channels by:", - "RecentlyWatched": "Recently watched", - "ChannelNumber": "Channel number", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", - "ButtonPlayOneMinute": "Play One Minute", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "HeaderUnlockFeature": "Unlock Feature", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "LabelKeep:": "Udr\u017eet:", + "UntilIDelete": "Dokud nesma\u017eu", + "UntilSpaceNeeded": "Do pot\u0159ebn\u00e9ho prostoru", + "Categories": "Kategorie", + "Sports": "Sport", + "News": "Zpravodajstv\u00ed", + "Movies": "Filmy", + "Kids": "D\u011btsk\u00e9", + "EnableColorCodedBackgrounds": "Aktivovat barevn\u011b ozna\u010den\u00e9 pozad\u00ed", + "SortChannelsBy": "T\u0159\u00eddit kan\u00e1ly dle:", + "RecentlyWatched": "Ned\u00e1vno shl\u00e9dnut\u00e9", + "ChannelNumber": "\u010c\u00edslo kan\u00e1lu", + "HeaderBenefitsEmbyPremiere": "V\u00fdhody Emby Premiere", + "ThankYouForTryingEnjoyOneMinute": "Pros\u00edm u\u017eijte si jednu minutu p\u0159ehr\u00e1v\u00e1n\u00ed. D\u011bkujeme v\u00e1m za vyzkou\u0161en\u00ed Emby.", + "HeaderTryPlayback": "Zkusit playback", + "HowDidYouPay": "Jak chcete platit?", + "IHaveEmbyPremiere": "Ji\u017e m\u00e1m Emby Premiere", + "IPurchasedThisApp": "Tuto aplikaci m\u00e1m ji\u017e zaplacenu", + "ButtonRestorePreviousPurchase": "Obnovit n\u00e1kup", + "ButtonUnlockWithPurchase": "Odemkn\u011bte pomoc\u00ed koup\u011b", + "ButtonUnlockPrice": "Odemknout {0}", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", + "ButtonPlayOneMinute": "P\u0159ehr\u00e1t jednu minutu", + "PlaceFavoriteChannelsAtBeginning": "Um\u00edstit obl\u00edben\u00e9 kan\u00e1ly na za\u010d\u00e1tek", + "HeaderUnlockFeature": "Odemknout funkci", + "MessageDidYouKnowCinemaMode": "V\u00edte, \u017ee s Emby Premiere m\u016f\u017eete zlep\u0161it sv\u00e9 z\u00e1\u017eitky ze sledov\u00e1n\u00ed pomoc\u00ed funkce jako Cinema M\u00f3d?", + "MessageDidYouKnowCinemaMode2": "S re\u017eimem Kino budou p\u0159ed hlavn\u00edm programem p\u0159ehr\u00e1ny upout\u00e1vky a u\u017eivatelsk\u00e1 intra.", + "HeaderPlayMyMedia": "P\u0159ehr\u00e1t moje M\u00e9dia", + "HeaderDiscoverEmbyPremiere": "Objevte v\u00fdhody Emby Premiere", + "OneChannel": "Jeden kan\u00e1l", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json index 7fcea86e4f..008c69ddae 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json index 72e64173d7..1d8366a33b 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Ausstrahlungen vor Staffel:", "LabelAirsAfterSeason": "Ausstrahlungen nach Staffel:", "LabelAirsBeforeEpisode": "Ausstrahlungen vor Episode:", - "HeaderExternalIds": "Externe Id's:", + "HeaderExternalIds": "Externe IDs:", "HeaderDisplaySettings": "Anzeige Einstellungen", "LabelTreatImageAs": "Bild behandeln, wie:", "LabelDisplayOrder": "Anzeigereihenfolge:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Kauf wiederherstellen", "ButtonUnlockWithPurchase": "Freischalten durch Kauf", "ButtonUnlockPrice": "{0} freischalten", - "ButtonAlreadyPaid": "Schon bezahlt?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monatlich {0}", + "HeaderAlreadyPaid": "Schon bezahlt?", "ButtonPlayOneMinute": "Eine Minute wiedergeben", "PlaceFavoriteChannelsAtBeginning": "Platziere favorisierte Kan\u00e4le am Anfang", "HeaderUnlockFeature": "Feature freischalten", "MessageDidYouKnowCinemaMode": "Wusstest du schon, das du mit Emby Premiere dein Erlebnis mit Funktionen wie dem Kino-Modus noch verbessern kannst?", "MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor deinem Hauptfilm.", "HeaderPlayMyMedia": "Spiele meine Medien ab", - "HeaderDiscoverEmbyPremiere": "Entdecke Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Entdecke Emby Premiere", + "OneChannel": "Ein Kanal", + "ConfirmRemoveDownload": "Download entfernen?", + "AddedOnValue": "Hinzugef\u00fcgt {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json index 245a48d5bf..2ef3433d6c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json @@ -1,46 +1,46 @@ { - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", + "MessageUnlockAppWithPurchaseOrSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03ba\u03b1\u03c4\u03b1\u03b2\u03ac\u03bb\u03bf\u03bd\u03c4\u03b1\u03c2 \u03ad\u03bd\u03b1 \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc \u03ba\u03cc\u03c3\u03c4\u03bf\u03c2 \u03ae \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.", + "MessageUnlockAppWithSupporter": "\u039e\u03b5\u03ba\u03bb\u03b5\u03b9\u03b4\u03ce\u03c3\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03b7\u03c1\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03bc\u03b5 \u03bc\u03af\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ae \u03c3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae \u03c3\u03c4\u03bf Emby Premiere.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5", "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "AttributeNew": "New", + "AttributeNew": "\u039d\u03ad\u03bf", "Premiere": "Premiere", - "Live": "Live", - "Repeat": "Repeat", + "Live": "\u0396\u03c9\u03bd\u03c4\u03b1\u03bd\u03ac", + "Repeat": "\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7", "TrackCount": "{0} tracks", "ItemCount": "{0} items", - "ReleaseYearValue": "Release year: {0}", + "ReleaseYearValue": "\u0388\u03c4\u03bf\u03c2 \u03ba\u03c5\u03ba\u03bb\u03bf\u03c6\u03bf\u03c1\u03af\u03b1\u03c2: {0} \n", "OriginalAirDateValue": "Original air date: {0}", "EndsAtValue": "Ends at {0}", - "OptionSundayShort": "Sun", - "OptionMondayShort": "Mon", - "OptionTuesdayShort": "Tue", - "OptionWednesdayShort": "Wed", - "OptionThursdayShort": "Thu", - "OptionFridayShort": "Fri", - "OptionSaturdayShort": "Sat", - "HeaderSelectDate": "Select Date", + "OptionSundayShort": "\u039a\u03c5\u03c1", + "OptionMondayShort": "\u0394\u03b5\u03c5", + "OptionTuesdayShort": "\u03a4\u03c1\u03b9", + "OptionWednesdayShort": "\u03a4\u03b5\u03c4", + "OptionThursdayShort": "\u03a0\u03b5\u03bc", + "OptionFridayShort": "\u03a0\u03b1\u03c1", + "OptionSaturdayShort": "\u03a3\u03b1\u03b2", + "HeaderSelectDate": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2", "ButtonOk": "Ok", "ButtonCancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 ", "ButtonGotIt": "Got It", - "ButtonRestart": "Restart", + "ButtonRestart": "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7", "RecordingCancelled": "Recording cancelled.", "SeriesCancelled": "Series cancelled.", "RecordingScheduled": "Recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.", - "HeaderNewRecording": "New Recording", - "Sunday": "Sunday", - "Monday": "Monday", - "Tuesday": "Tuesday", - "Wednesday": "Wednesday", - "Thursday": "Thursday", - "Friday": "Friday", - "Saturday": "Saturday", - "Days": "Days", + "HeaderNewRecording": "\u039d\u03ad\u03b1 \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae", + "Sunday": "\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae", + "Monday": "\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1", + "Tuesday": "\u03a4\u03c1\u03af\u03c4\u03b7", + "Wednesday": "\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7", + "Thursday": "\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7", + "Friday": "\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae", + "Saturday": "\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf", + "Days": "\u0397\u03bc\u03ad\u03c1\u03b5\u03c2", "RecordSeries": "Record series", "HeaderCinemaMode": "Cinema Mode", "HeaderCloudSync": "Cloud Sync", @@ -50,52 +50,52 @@ "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "CoverArt": "Cover Art", "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "HeaderFreeApps": "Free Emby Apps", + "HeaderFreeApps": "\u0394\u03c9\u03c1\u03b5\u03ac\u03bd \u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ad\u03c2 Emby", "FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.", - "HeaderBecomeProjectSupporter": "Get Emby Premiere", + "HeaderBecomeProjectSupporter": "\u0391\u03c0\u03cc\u03ba\u03c4\u03b7\u03c3\u03b5 \u03a3\u03c5\u03bd\u03b4\u03c1\u03bf\u03bc\u03ae Emby Premiere", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", - "LabelEmailAddress": "E-mail address:", + "LabelEmailAddress": "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 E-mail", "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "HeaderConvertYourRecordings": "Convert Your Recordings", - "Record": "Record", + "Record": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae", "Save": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7", - "Edit": "Edit", + "Edit": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1", "Download": "Download", "Advanced": "Advanced", - "Delete": "Delete", - "HeaderDeleteItem": "Delete Item", + "Delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae", + "HeaderDeleteItem": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u0391\u03bd\u03c4\u03b9\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "Refresh": "Refresh", + "Refresh": "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7", "RefreshQueued": "Refresh queued.", - "AddToCollection": "Add to collection", + "AddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae", "HeaderAddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae", - "NewCollection": "New Collection", - "LabelCollection": "Collection:", + "NewCollection": "\u039d\u03ad\u03b1 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae", + "LabelCollection": "\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae:", "Help": "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1", "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "SearchForCollectionInternetMetadata": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf \u03b4\u03b9\u03b1\u03b4\u03af\u03ba\u03c4\u03c5\u03bf \u03b3\u03b9\u03b1 \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2", "LabelName": "\u038c\u03bd\u03bf\u03bc\u03b1:", "NewCollectionNameExample": "\u03a0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1: \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \"\u03a0\u03cc\u03bb\u03b5\u03bc\u03bf\u03c2 \u03c4\u03c9\u03bd \u0386\u03c3\u03c4\u03c1\u03c9\u03bd\"", "MessageItemsAdded": "Items added.", - "OptionNew": "New...", - "LabelPlaylist": "Playlist:", - "AddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "Subtitles": "Subtitles", - "SearchForSubtitles": "Search for Subtitles", + "OptionNew": "\u039d\u03ad\u03bf...", + "LabelPlaylist": "\u039b\u03af\u03c3\u03c4\u03b1:", + "AddToPlaylist": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03b5 \u03bb\u03af\u03c3\u03c4\u03b1", + "HeaderAddToPlaylist": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03b5 \u039b\u03af\u03c3\u03c4\u03b1", + "Subtitles": "\u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9", + "SearchForSubtitles": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03a5\u03c0\u03bf\u03c4\u03af\u03c4\u03bb\u03c9\u03bd", "LabelLanguage": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1", - "Search": "Search", + "Search": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "NoSubtitleSearchResultsFound": "No results found.", "File": "File", "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ConfirmDeletion": "Confirm Deletion", - "MySubtitles": "My Subtitles", + "ConfirmDeletion": "\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2", + "MySubtitles": "\u039f\u03b9 \u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9 \u03bc\u03bf\u03c5", "MessageDownloadQueued": "Download queued.", - "EditSubtitles": "Edit subtitles", + "EditSubtitles": "\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c5\u03c0\u03bf\u03c4\u03af\u03c4\u03bb\u03c9\u03bd", "UnlockGuide": "Unlock Guide", - "RefreshMetadata": "Refresh Metadata", - "ReplaceExistingImages": "Replace existing images", + "RefreshMetadata": "\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd", + "ReplaceExistingImages": "\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03c3\u03c9\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03c9\u03bd", "ReplaceAllMetadata": "Replace all metadata", "SearchForMissingMetadata": "Search for missing metadata", "LabelRefreshMode": "Refresh mode:", @@ -139,7 +139,7 @@ "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", "Error": "Error", "VoiceInput": "Voice Input", - "LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:", + "LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5:", "LabelPath": "Path:", "LabelTitle": "Title:", "LabelOriginalTitle": "Original title:", @@ -147,7 +147,7 @@ "LabelDateAdded": "Date added:", "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings", "LabelStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7:", - "LabelArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2", + "LabelArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2:", "LabelArtistsHelp": "Separate multiple using ;", "LabelAlbumArtists": "Album artists:", "LabelAlbum": "Album:", @@ -162,7 +162,7 @@ "LabelOverview": "Overview:", "LabelShortOverview": "Short overview:", "LabelReleaseDate": "Release date:", - "LabelYear": "Year:", + "LabelYear": "\u0388\u03c4\u03bf\u03c2:", "LabelPlaceOfBirth": "Place of birth:", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -196,7 +196,7 @@ "LabelMetadataDownloadLanguage": "Preferred download language:", "LabelLockItemToPreventChanges": "Lock this item to prevent future changes", "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "LabelCountry": "\u03a7\u03ce\u03c1\u03b1", + "LabelCountry": "\u03a7\u03ce\u03c1\u03b1:", "LabelDynamicExternalId": "{0} Id:", "LabelBirthYear": "Birth year:", "LabelBirthDate": "Birth date:", @@ -220,7 +220,7 @@ "Runtime": "Runtime", "ProductionLocations": "Production locations", "BirthLocation": "Birth location", - "ParentalRating": "Parental Rating", + "ParentalRating": "\u039a\u03b1\u03c4\u03b1\u03bb\u03bb\u03b7\u03bb\u03cc\u03c4\u03b7\u03c4\u03b1", "Name": "Name", "Overview": "Overview", "LabelType": "Type:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json index 22303fdf56..4206d9d498 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json @@ -47,7 +47,7 @@ "HeaderOfflineDownloads": "Offline Media", "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", + "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalise your media images.", "CoverArt": "Cover Art", "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "HeaderFreeApps": "Free Emby Apps", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favourite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json b/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json index 1555638187..c5d86ef688 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json index a9d43cb508..e84e59f9ee 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json index 23b30a051f..9e1c78f91b 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Transmisi\u00f3n antes de la temporada:", "LabelAirsAfterSeason": "Transmisi\u00f3n despu\u00e9s de la temporada:", "LabelAirsBeforeEpisode": "Transmisi\u00f3n antes del episodio:", - "HeaderExternalIds": "Id\u00b4s Externos:", + "HeaderExternalIds": "IDs Externos:", "HeaderDisplaySettings": "Configuraci\u00f3n de Pantalla", "LabelTreatImageAs": "Tratar imagen como:", "LabelDisplayOrder": "Orden para mostrar:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restaurar Compra", "ButtonUnlockWithPurchase": "Desbloquear con una Compra", "ButtonUnlockPrice": "Desbloquear {0}", - "ButtonAlreadyPaid": "\u00bfYa esta pagado?", + "EmbyPremiereMonthlyWithPrice": "Emby Premier Mensual {0}", + "HeaderAlreadyPaid": "\u00bfYa ha pagado?", "ButtonPlayOneMinute": "Reproducir un minuto", "PlaceFavoriteChannelsAtBeginning": "Colocar canales favoritos al inicio", "HeaderUnlockFeature": "Desbloquear Caracter\u00edstica", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "MessageDidYouKnowCinemaMode": "\u00bfSab\u00eda que con Emby Premier, puede mejorar su experiencia con caracter\u00edsticas como Modo Cine?", + "MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.", + "HeaderPlayMyMedia": "Reproducir mis Medios", + "HeaderDiscoverEmbyPremiere": "Descubra Emby Premier", + "OneChannel": "Un canal", + "ConfirmRemoveDownload": "\u00bfEliminar descarga?", + "AddedOnValue": "Agregado {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json index f0a7a90e9c..6297311fa8 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json @@ -29,7 +29,7 @@ "ButtonGotIt": "Lo tengo", "ButtonRestart": "Reiniciar", "RecordingCancelled": "Grabaci\u00f3n cancelada.", - "SeriesCancelled": "Series cancelled.", + "SeriesCancelled": "Series cancelada.", "RecordingScheduled": "Grabaci\u00f3n programada.", "SeriesRecordingScheduled": "Series recording scheduled.", "HeaderNewRecording": "Nueva grabaci\u00f3n", @@ -117,8 +117,8 @@ "Shuffle": "Mezclar", "Identify": "Identificar", "EditImages": "Editar im\u00e1genes", - "EditInfo": "Edit info", - "Sync": "Sync", + "EditInfo": "Editar info", + "Sync": "Sincronizar", "InstantMix": "Mix instant\u00e1neo", "ViewAlbum": "Ver album", "ViewArtist": "Ver artista", @@ -141,8 +141,8 @@ "VoiceInput": "Voice Input", "LabelContentType": "Tipo de contenido:", "LabelPath": "Ruta:", - "LabelTitle": "Title:", - "LabelOriginalTitle": "Original title:", + "LabelTitle": "T\u00edtulo", + "LabelOriginalTitle": "T\u00edtulo original", "LabelSortTitle": "Sort title:", "LabelDateAdded": "Fecha a\u00f1adido:", "ConfigureDateAdded": "Configura como la fecha a\u00f1adida se determina en el Panel de Control del servidor Emby en los ajustes de la biblioteca.", @@ -162,7 +162,7 @@ "LabelOverview": "Resumen:", "LabelShortOverview": "Resumen corto:", "LabelReleaseDate": "Fecha de lanzamiento:", - "LabelYear": "Year:", + "LabelYear": "A\u00f1o:", "LabelPlaceOfBirth": "Lugar de nacimiento:", "LabelAirDays": "D\u00edas de emisi\u00f3n:", "LabelAirTime": "Tiempo de emisi\u00f3n:", @@ -186,13 +186,13 @@ "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Tratar imagen como:", "LabelDisplayOrder": "Mostrar orden:", - "Countries": "Countries", - "Genres": "Genres", + "Countries": "Pa\u00edses", + "Genres": "G\u00e9neros", "HeaderPlotKeywords": "Palabras clave del reparto", - "Studios": "Studios", + "Studios": "Estudios", "Tags": "Etiquetas", "HeaderMetadataSettings": "Ajustes de metadatos", - "People": "People", + "People": "Gente", "LabelMetadataDownloadLanguage": "Idioma preferido visualizado", "LabelLockItemToPreventChanges": "Bloquear este \u00edtem para evitar futuros cambios", "MessageLeaveEmptyToInherit": "Dejar en blanco para heredar la configuraci\u00f3n de un elemento principal, o el valor predeterminado global.", @@ -209,7 +209,7 @@ "LabelDiscNumber": "N\u00famero de disco", "LabelParentNumber": "N\u00famero de los padres", "SortName": "Ordenar por nombre", - "ReleaseDate": "Release date", + "ReleaseDate": "Fecha de lanzamiento", "Continuing": "Continuando", "Ended": "Finalizado", "HeaderEnabledFields": "Campos activados", @@ -221,7 +221,7 @@ "ProductionLocations": "Production locations", "BirthLocation": "Birth location", "ParentalRating": "Parental Rating", - "Name": "Name", + "Name": "Nombre", "Overview": "Overview", "LabelType": "Tipo:", "LabelPersonRole": "Rol:", @@ -229,7 +229,7 @@ "Actor": "Actor", "Composer": "Compositor", "Director": "Director", - "GuestStar": "Guest star", + "GuestStar": "Estrella invitada", "Producer": "Productor", "Writer": "Escritor", "InstallingPackage": "Instalando {0}", @@ -279,11 +279,11 @@ "LabelItemLimit": "L\u00edmite de \u00edtems:", "LabelItemLimitHelp": "Opcional. Pon un l\u00edmite de cantidad de \u00edtems que se sincronizar\u00e1n.", "PleaseSelectDeviceToSyncTo": "Por favor selecciona el dispositivo donde quieres sincronizar.", - "Screenshots": "Screenshots", - "MoveRight": "Move right", - "MoveLeft": "Move left", - "ConfirmDeleteImage": "Delete image?", - "HeaderEditImages": "Edit Images", + "Screenshots": "Capturas de pantalla", + "MoveRight": "Mover derecha", + "MoveLeft": "Mover izquierda", + "ConfirmDeleteImage": "Borrar imagen", + "HeaderEditImages": "Editar Im\u00e1genes", "Settings": "Ajustes", "ShowIndicatorsFor": "Show indicators for:", "NewEpisodes": "New episodes", @@ -295,7 +295,7 @@ "HeaderCancelRecording": "Cancel Recording", "CancelRecording": "Cancel recording", "HeaderKeepRecording": "Keep Recording", - "HeaderCancelSeries": "Cancel Series", + "HeaderCancelSeries": "Cancelar Series", "HeaderKeepSeries": "Keep Series", "HeaderLearnMore": "Learn More", "DeleteMedia": "Delete media", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", - "ButtonPlayOneMinute": "Play One Minute", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", + "ButtonPlayOneMinute": "Reproducir un minuto", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json index a2883f0c74..80e4495b09 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json index dd326aba61..d7ea85514d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json index c405636448..e10bf8ed3c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json @@ -1,7 +1,7 @@ { - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", + "MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat en une fois, ou avec une souscription Emby Premiere.", + "MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec une souscription Emby Premiere.", + "MessageToValidateSupporter": "Si vous avez un abonnement Emby Premiere, veuillez-vous assurer que vous avez configur\u00e9 Emby Premiere dans votre menu de gestion Emby Server auquel vous pouvez acc\u00e9der en cliquant sur Emby Premiere dans le menu principal", "ValueSpecialEpisodeName": "Sp\u00e9cial - {0}", "Share": "Partager", "Add": "Ajouter", @@ -29,7 +29,7 @@ "ButtonGotIt": "Vu", "ButtonRestart": "Red\u00e9marrer", "RecordingCancelled": "Enregistrement annul\u00e9.", - "SeriesCancelled": "Series cancelled.", + "SeriesCancelled": "S\u00e9rie annul\u00e9e.", "RecordingScheduled": "Enregistrement planifi\u00e9.", "SeriesRecordingScheduled": "Enregistrement de la s\u00e9rie pr\u00e9vue.", "HeaderNewRecording": "Nouvel enregistrement", @@ -42,22 +42,22 @@ "Saturday": "Samedi", "Days": "Jours", "RecordSeries": "Enregistrer s\u00e9ries", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "CoverArt": "Cover Art", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.", + "HeaderCinemaMode": "Mode Cin\u00e9ma", + "HeaderCloudSync": "Synchronisation avec le cloud", + "HeaderOfflineDownloads": "Contenu multim\u00e9dia hors-ligne", + "HeaderOfflineDownloadsDescription": "T\u00e9l\u00e9chargez votre contenu multim\u00e9dia vers vos appareils pour une meilleure utilisation hors-ligne.", + "CloudSyncFeatureDescription": "Synchronisez votre contenu multim\u00e9dia vers le cloud pour le sauvegarder, l'archiver et le convertir plus facilement.", + "CoverArtFeatureDescription": "Pochette cr\u00e9\u00e9 des couvertures amusantes et d'autres fonctions pour vous aider \u00e0 personnaliser les pochettes de votre contenu multim\u00e9dia.", + "CoverArt": "Pochette", + "CinemaModeFeatureDescription": "Le Mode Cin\u00e9ma vous donne une v\u00e9ritable exp\u00e9rience cin\u00e9matique avec des trailers et des intros personnalis\u00e9es avant la lecture du contenu.", + "HeaderFreeApps": "Apps Emby gratuites", + "FreeAppsFeatureDescription": "Profitez d'un acc\u00e8s gratuit \u00e0 certaines applications Emby pour vos appareils.", "HeaderBecomeProjectSupporter": "Obtenez Emby Premiere", "MessageActiveSubscriptionRequiredSeriesRecordings": "Une souscription Emby Premiere active est n\u00e9cessaire pour cr\u00e9er des enregistrements automatiques de s\u00e9ries.", - "LabelEmailAddress": "E-mail address:", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.", + "LabelEmailAddress": "Adresse mail:", + "PromoConvertRecordingsToStreamingFormat": "Convertissez automatiquement vos enregistrement en un format compatible streaming avec Emby Premiere. Les enregistrements seront convertis sur demande vers des formats MP4 ou MKV, selon les options du serveur Emby.", "FeatureRequiresEmbyPremiere": "Cette fonctionnalit\u00e9 requiert un compte Emby Premiere.", - "HeaderConvertYourRecordings": "Convert Your Recordings", + "HeaderConvertYourRecordings": "Convertissez Vos Enregistrements", "Record": "Enregistrer", "Save": "Sauvegarder", "Edit": "Modifier", @@ -236,13 +236,13 @@ "PackageInstallCompleted": "L'installation de {0} est termin\u00e9e.", "PackageInstallFailed": "L'installation de {0} a \u00e9chou\u00e9.", "PackageInstallCancelled": "L'installation de {0} a \u00e9t\u00e9 annul\u00e9e.", - "SeriesYearToPresent": "{0}-Pr\u00e9sent", + "SeriesYearToPresent": "{0} - Pr\u00e9sent", "ValueOneSong": "1 chanson", "ValueSongCount": "{0} chansons", "ValueOneMovie": "1 Film", "ValueMovieCount": "{0} films", "ValueOneSeries": "1 S\u00e9rie", - "ValueSeriesCount": "{0} series", + "ValueSeriesCount": "{0} s\u00e9ries", "ValueOneEpisode": "1 \u00e9pisode", "ValueEpisodeCount": "{0} \u00e9pisodes", "ValueOneGame": "1 jeu", @@ -285,70 +285,74 @@ "ConfirmDeleteImage": "Supprimer l'image ?", "HeaderEditImages": "Modifier les images", "Settings": "Param\u00e8tres", - "ShowIndicatorsFor": "Show indicators for:", - "NewEpisodes": "New episodes", - "HDPrograms": "HD programs", - "LiveBroadcasts": "Live broadcasts", - "Premieres": "Premieres", - "RepeatEpisodes": "Repeat episodes", - "DvrSubscriptionRequired": "Emby DVR requires an active Emby Premiere subscription.", - "HeaderCancelRecording": "Cancel Recording", - "CancelRecording": "Cancel recording", - "HeaderKeepRecording": "Keep Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderKeepSeries": "Keep Series", - "HeaderLearnMore": "Learn More", - "DeleteMedia": "Delete media", - "SeriesSettings": "Series settings", - "HeaderRecordingOptions": "Recording Options", - "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:", - "AllChannels": "All channels", - "LabelRecord": "Record:", - "NewEpisodesOnly": "New episodes only", - "AllEpisodes": "All episodes", - "LabelStartWhenPossible": "Start when possible:", - "LabelStopWhenPossible": "Stop when possible:", - "MinutesBefore": "minutes before", - "MinutesAfter": "minutes after", - "SkipEpisodesAlreadyInMyLibrary": "Skip episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "LabelKeepUpTo": "Keep up to:", - "AsManyAsPossible": "As many as possible", + "ShowIndicatorsFor": "Montrer les indicateurs pour:", + "NewEpisodes": "Nouveaux \u00e9pisodes", + "HDPrograms": "Programmes HD", + "LiveBroadcasts": "Diffusions en direct", + "Premieres": "Premi\u00e8res", + "RepeatEpisodes": "R\u00e9p\u00e9ter les \u00e9pisodes", + "DvrSubscriptionRequired": "Emby DVR n\u00e9cessite un abonnement \u00e0 Emby Premiere.", + "HeaderCancelRecording": "Annuler l'enregistrement", + "CancelRecording": "Annuler l'enregistrement", + "HeaderKeepRecording": "Garder l'enregistrement", + "HeaderCancelSeries": "Annuler la s\u00e9rie", + "HeaderKeepSeries": "Garder la s\u00e9rie", + "HeaderLearnMore": "En savoir plus", + "DeleteMedia": "Effacer cet objet", + "SeriesSettings": "Configuration de la s\u00e9rie", + "HeaderRecordingOptions": "Options d'enregistrement", + "CancelSeries": "Annuler la s\u00e9rie", + "DoNotRecord": "Ne pas enregistrer", + "HeaderSeriesOptions": "Options de la s\u00e9rie", + "LabelChannels": "Cha\u00eenes:", + "ChannelNameOnly": "Cha\u00eene {0} seulement", + "Anytime": "N'importe quand", + "AroundTime": "Vers {0}", + "LabelAirtime": "Temps d'antenne:", + "AllChannels": "Toutes les cha\u00eenes", + "LabelRecord": "Enregistrer:", + "NewEpisodesOnly": "Uniquement les nouveaux \u00e9pisodes", + "AllEpisodes": "Tous les \u00e9pisodes", + "LabelStartWhenPossible": "Commencer d\u00e8s que possible:", + "LabelStopWhenPossible": "Arr\u00eater d\u00e8s que possible:", + "MinutesBefore": "minutes avant", + "MinutesAfter": "minutes apr\u00e8s", + "SkipEpisodesAlreadyInMyLibrary": "Ne pas lire les \u00e9pisodes d\u00e9j\u00e0 pr\u00e9sents dans ma m\u00e9diath\u00e8que", + "SkipEpisodesAlreadyInMyLibraryHelp": "Les \u00e9pisodes seront compar\u00e9s selon leurs saisons et num\u00e9ros d'\u00e9pisodes, si possible.", + "LabelKeepUpTo": "Garder jusqu'\u00e0:", + "AsManyAsPossible": "Autant que possible", "DefaultErrorMessage": "Il y a eu une erreur lors de l'ex\u00e9cution de la requ\u00eate. Veuillez r\u00e9essayer plus tard.", - "LabelKeep:": "Keep:", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Categories": "Categories", + "LabelKeep:": "Garder:", + "UntilIDelete": "Jusqu'\u00e0 ce que je le supprime", + "UntilSpaceNeeded": "Jusqu'\u00e0 ce que l'espace disque est n\u00e9cessaire", + "Categories": "Cat\u00e9gories", "Sports": "Sports", - "News": "News", - "Movies": "Movies", - "Kids": "Kids", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "SortChannelsBy": "Sort channels by:", - "RecentlyWatched": "Recently watched", - "ChannelNumber": "Channel number", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", - "ButtonPlayOneMinute": "Play One Minute", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "HeaderUnlockFeature": "Unlock Feature", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "News": "Actualit\u00e9s", + "Movies": "Films", + "Kids": "Enfants", + "EnableColorCodedBackgrounds": "Activer les arri\u00e8res-plans \u00e0 code-couleur", + "SortChannelsBy": "Trier les cha\u00eenes par:", + "RecentlyWatched": "Lus r\u00e9cemment", + "ChannelNumber": "Num\u00e9ro de cha\u00eene", + "HeaderBenefitsEmbyPremiere": "Avantages de Emby Premiere", + "ThankYouForTryingEnjoyOneMinute": "Profitez d'une minute de lecture. Merci d'avoir essay\u00e9 Emby.", + "HeaderTryPlayback": "Essayer la lecture", + "HowDidYouPay": "Comment avez-vous pay\u00e9?", + "IHaveEmbyPremiere": "J'ai Emby Premiere", + "IPurchasedThisApp": "J'ai achet\u00e9 cette application", + "ButtonRestorePreviousPurchase": "Restaurer l'achat", + "ButtonUnlockWithPurchase": "D\u00e9verrouillez par un achat.", + "ButtonUnlockPrice": "D\u00e9verrouiller {0}", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", + "ButtonPlayOneMinute": "Lire une minute", + "PlaceFavoriteChannelsAtBeginning": "Mettre vos cha\u00eenes pr\u00e9f\u00e9r\u00e9es au d\u00e9but", + "HeaderUnlockFeature": "D\u00e9verrouiller la fonction", + "MessageDidYouKnowCinemaMode": "Saviez-vous qu'avec Emby Premi\u00e8re, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur gr\u00e2ce \u00e0 des fonctionnalit\u00e9s comme le Mode Cin\u00e9ma ?", + "MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.", + "HeaderPlayMyMedia": "Lire mon contenu", + "HeaderDiscoverEmbyPremiere": "D\u00e9couvrez Emby Premiere", + "OneChannel": "Une cha\u00eene", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json index c7c7ca7138..489aa0dd5f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json index 57aa6f897b..dc3009f9f6 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json index c48efa338f..931fa439b3 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json @@ -1,7 +1,7 @@ { - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", + "MessageUnlockAppWithPurchaseOrSupporter": "Otklju\u010daj ovu mogu\u0107nost s malom jednokratnom kupnjom ili s aktivnom pretplatom Emby Premijere.", + "MessageUnlockAppWithSupporter": "Otklju\u010daj ovu mogu\u0107nost sa pretplatom Emby Premijere.", + "MessageToValidateSupporter": "Ako imate aktivnu pretplatu Emby Premijere provjerite dali ste postavili Emby Premijeru u svojoj nadzornoj plo\u010di Emby Server-a kojoj mo\u017eete pristupiti klikom Emby Premijera u glavnom izborniku.", "ValueSpecialEpisodeName": "Specijal - {0}", "Share": "Dijeli", "Add": "Dodaj", @@ -42,19 +42,19 @@ "Saturday": "Subota", "Days": "Dani", "RecordSeries": "Snimi serije", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", + "HeaderCinemaMode": "Kino na\u010din", + "HeaderCloudSync": "Sink. preko oblaka", + "HeaderOfflineDownloads": "Izvanmre\u017eni mediji", + "HeaderOfflineDownloadsDescription": "Preuzimanje medija na svojim ure\u0111ajima za jednostavnu upotrebu izvan mre\u017ee.", + "CloudSyncFeatureDescription": "Sinkronizirajte svoje medije na oblaku za jednostavni backup, arhiviranje i konvertiranje.", + "CoverArtFeatureDescription": "\"Cover Art\" stvara zabavne naslovnice i druge tretmane koji \u0107e vam pomo\u0107i personalizirati va\u0161e medijske slike.", "CoverArt": "Cover Art", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.", + "CinemaModeFeatureDescription": "Kino na\u010din vam daje pravi do\u017eivljaj kina s kratkim filmovima i prilago\u0111enim isje\u010dcima prije odabrane zna\u010dajke.", + "HeaderFreeApps": "Besplatne Emby aplikacije", + "FreeAppsFeatureDescription": "U\u017eivajte u slobodnom pristupu Emby aplikacija za svoje ure\u0111aje.", "HeaderBecomeProjectSupporter": "Nabavite Emby Premijeru", "MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivna pretplata Emby Premijere je potrebna kako bi se napravilo automatsko snimanje serija.", - "LabelEmailAddress": "E-mail address:", + "LabelEmailAddress": "E-mail adresa:", "PromoConvertRecordingsToStreamingFormat": "Automatski pretvoriti snimke na prijateljskom formatu strujanja s Emby Premijerom. Snimke \u0107e se pretvoriti u letu u MP4 ili MKV na temelju postavki Emby poslu\u017eitelja.", "FeatureRequiresEmbyPremiere": "Ova zna\u010dajka zahtijeva aktivnu pretplatu Emby Premijere.", "HeaderConvertYourRecordings": "Konvertiraj snimke", @@ -236,7 +236,7 @@ "PackageInstallCompleted": "{0} instaliranje zavr\u0161eno.", "PackageInstallFailed": "{0} instaliranje neuspjelo.", "PackageInstallCancelled": "{0} instaliranje otkazano.", - "SeriesYearToPresent": "{0}-sada", + "SeriesYearToPresent": "{0} - sada", "ValueOneSong": "1 pjesma", "ValueSongCount": "{0} pjesma", "ValueOneMovie": "1 film", @@ -334,21 +334,25 @@ "SortChannelsBy": "Slo\u017ei kanale po:", "RecentlyWatched": "Nedavno pogledano", "ChannelNumber": "Broj kanala", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", - "ButtonPlayOneMinute": "Play One Minute", + "HeaderBenefitsEmbyPremiere": "Prednosti Emby premijere", + "ThankYouForTryingEnjoyOneMinute": "Molimo Vas da u\u017eivate u jednoj minuti reprodukcije. Hvala \u0161to ste isprobali Emby.", + "HeaderTryPlayback": "Isprobajte reprodukciju", + "HowDidYouPay": "Kako ste platili?", + "IHaveEmbyPremiere": "Imam Emby Premijeru", + "IPurchasedThisApp": "Kupio sam ovu aplikaciju", + "ButtonRestorePreviousPurchase": "Vrati kupovinu", + "ButtonUnlockWithPurchase": "Otklju\u010daj s kupovinom", + "ButtonUnlockPrice": "Otklju\u010daj {0}", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", + "ButtonPlayOneMinute": "Reproduciraj jednu minutu", "PlaceFavoriteChannelsAtBeginning": "Postavi omiljene kanale na po\u010detak", - "HeaderUnlockFeature": "Unlock Feature", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderUnlockFeature": "Otklju\u010daj zna\u010dajke", + "MessageDidYouKnowCinemaMode": "Jeste li znali da s Emby Premijerom mo\u017eete pobolj\u0161ati svoje iskustvo sa zna\u010dajkama kao \u0161to su na\u010din kina?", + "MessageDidYouKnowCinemaMode2": "Kino na\u010din vam daje pravi do\u017eivljaj kina s kratkim filmovima i prilago\u0111enim isje\u010dcima prije odabrane zna\u010dajke.", + "HeaderPlayMyMedia": "Reproduciraj moje medije", + "HeaderDiscoverEmbyPremiere": "Otkrijte Emby Premijeru", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json index 190a071c58..7086428299 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json @@ -7,7 +7,7 @@ "Add": "Hozz\u00e1ad", "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "AttributeNew": "New", + "AttributeNew": "\u00daj", "Premiere": "Premiere", "Live": "Live", "Repeat": "Ism\u00e9tl\u00e9s", @@ -15,7 +15,7 @@ "ItemCount": "{0} items", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", - "EndsAtValue": "Ends at {0}", + "EndsAtValue": "V\u00e1rhat\u00f3 befejez\u00e9s {0}", "OptionSundayShort": "Sun", "OptionMondayShort": "Mon", "OptionTuesdayShort": "Tue", @@ -32,7 +32,7 @@ "SeriesCancelled": "Series cancelled.", "RecordingScheduled": "Recording scheduled.", "SeriesRecordingScheduled": "Series recording scheduled.", - "HeaderNewRecording": "New Recording", + "HeaderNewRecording": "\u00daj Felv\u00e9tel", "Sunday": "Vas\u00e1rnap", "Monday": "H\u00e9tf\u0151", "Tuesday": "Kedd", @@ -117,13 +117,13 @@ "Shuffle": "Kever\u00e9s", "Identify": "Azonos\u00edt\u00e1s", "EditImages": "K\u00e9pek szerkeszt\u00e9se", - "EditInfo": "Edit info", + "EditInfo": "Adatok szerkeszt\u00e9se", "Sync": "Sync", "InstantMix": "Instant mix", "ViewAlbum": "View album", "ViewArtist": "View artist", "QueueAllFromHere": "Queue all from here", - "PlayAllFromHere": "Play all from here", + "PlayAllFromHere": "\u00d6sszes vet\u00edt\u00e9se innen", "PlayFromBeginning": "Play from beginning", "ResumeAt": "Resume from {0}", "RemoveFromPlaylist": "Remove from playlist", @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -286,7 +286,7 @@ "HeaderEditImages": "Edit Images", "Settings": "Be\u00e1ll\u00edt\u00e1sok", "ShowIndicatorsFor": "Show indicators for:", - "NewEpisodes": "New episodes", + "NewEpisodes": "\u00daj epiz\u00f3dok", "HDPrograms": "HD programs", "LiveBroadcasts": "Live broadcasts", "Premieres": "Premieres", @@ -311,7 +311,7 @@ "LabelAirtime": "Airtime:", "AllChannels": "All channels", "LabelRecord": "Record:", - "NewEpisodesOnly": "New episodes only", + "NewEpisodesOnly": "Csak \u00faj epiz\u00f3dok", "AllEpisodes": "All episodes", "LabelStartWhenPossible": "Start when possible:", "LabelStopWhenPossible": "Stop when possible:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Hozz\u00e1adva {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json index 32103f1e68..0a95decd05 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json index cb347bab70..1c389f3729 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json @@ -1,38 +1,38 @@ { - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", - "ValueSpecialEpisodeName": "Special - {0}", - "Share": "Share", + "MessageUnlockAppWithPurchaseOrSupporter": "Sblocca questa funzionalit\u00e0 con un piccolo acquisto singolo, o con un abbonamento Emby Premiere.", + "MessageUnlockAppWithSupporter": "Sblocca questa funzionalit\u00e0 con un abbonamento Emby Premiere", + "MessageToValidateSupporter": "Se hai un abbonamento Emby Premiere, assicurati di averlo configurato nel Pannello di Controllo del Server, a cui puoi accedere cliccando su Emby Premiere dal menu principale.", + "ValueSpecialEpisodeName": "Speciale - {0}", + "Share": "Condividi", "Add": "Aggiungi", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", + "ServerUpdateNeeded": "Questo server Emby deve essere aggiornato. Per scaricare l'ultima versione vai su {0}", "LiveTvGuideRequiresUnlock": "La Guida TV \u00e8 attualmente limitata a {0} canali. Premi il tasto di sblocco per imparare come goderti una piena esperienza.", - "AttributeNew": "New", - "Premiere": "Premiere", - "Live": "Live", + "AttributeNew": "Nuovo", + "Premiere": "Prima visione", + "Live": "In diretta", "Repeat": "Ripeti", - "TrackCount": "{0} tracks", + "TrackCount": "{0} tracce", "ItemCount": "{0} elementi", - "ReleaseYearValue": "Release year: {0}", - "OriginalAirDateValue": "Original air date: {0}", - "EndsAtValue": "Ends at {0}", - "OptionSundayShort": "Sun", - "OptionMondayShort": "Mon", - "OptionTuesdayShort": "Tue", - "OptionWednesdayShort": "Wed", - "OptionThursdayShort": "Thu", - "OptionFridayShort": "Fri", - "OptionSaturdayShort": "Sat", + "ReleaseYearValue": "Anno di uscita: {0}", + "OriginalAirDateValue": "Prima messa in onda (originale): {0}", + "EndsAtValue": "Finir\u00e0 alle {0}", + "OptionSundayShort": "Dom", + "OptionMondayShort": "Lun", + "OptionTuesdayShort": "Mar", + "OptionWednesdayShort": "Mer", + "OptionThursdayShort": "Gio", + "OptionFridayShort": "Ven", + "OptionSaturdayShort": "Sab", "HeaderSelectDate": "Seleziona la data", "ButtonOk": "Ok", "ButtonCancel": "Annulla", - "ButtonGotIt": "Got It", + "ButtonGotIt": "Ho capito", "ButtonRestart": "Riavvia", "RecordingCancelled": "Registrazione eliminata.", - "SeriesCancelled": "Series cancelled.", - "RecordingScheduled": "Recording scheduled.", - "SeriesRecordingScheduled": "Series recording scheduled.", - "HeaderNewRecording": "New Recording", + "SeriesCancelled": "Serie TV annullate.", + "RecordingScheduled": "Registrazione pianificata.", + "SeriesRecordingScheduled": "Registrazione serie TV pianificata.", + "HeaderNewRecording": "Nuova Registrazione", "Sunday": "Domenica", "Monday": "Luned\u00ec", "Tuesday": "Marted\u00ec", @@ -41,124 +41,124 @@ "Friday": "Venerd\u00ec", "Saturday": "Sabato", "Days": "Giorni", - "RecordSeries": "Record series", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", - "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "CoverArt": "Cover Art", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.", + "RecordSeries": "Registra serie TV", + "HeaderCinemaMode": "Modalit\u00e0 Cinema", + "HeaderCloudSync": "Sinc. nel Cloud", + "HeaderOfflineDownloads": "Media Offline", + "HeaderOfflineDownloadsDescription": "Scarica facilmente i media sui tuoi dispositivi per l'uso offline.", + "CloudSyncFeatureDescription": "Sincronizza i tuoi media nel cloud per un facile backup, archiviazione e conversione.", + "CoverArtFeatureDescription": "Copertine crea delle copertine divertenti ed altri effetti per aiutarti a personalizzare le immagini dei tuoi media.", + "CoverArt": "Copertine", + "CinemaModeFeatureDescription": "Modalit\u00e0 Cinema ti d\u00e0 la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.", + "HeaderFreeApps": "App Gratuite Emby", + "FreeAppsFeatureDescription": "Godi dell'accesso gratuito alle App Emby dai tuoi dispositivi.", "HeaderBecomeProjectSupporter": "Ottieni Emby Premiere", "MessageActiveSubscriptionRequiredSeriesRecordings": "Un abbonamento a Emby Premiere \u00e8 necessario per creare registrazioni personalizzate delle serie tv", - "LabelEmailAddress": "E-mail address:", - "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.", - "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", - "HeaderConvertYourRecordings": "Convert Your Recordings", + "LabelEmailAddress": "Indirizzo e-mail:", + "PromoConvertRecordingsToStreamingFormat": "Converti automaticamente le registrazioni in un formato adatto allo streaming con Emby Premiere. Le registrazioni saranno convertite in tempo reale ad MP4 o MKV, in base alle impostazioni del server.", + "FeatureRequiresEmbyPremiere": "Questa funzionalit\u00e0 richiede un abbonamento ad Emby Premiere.", + "HeaderConvertYourRecordings": "Converti le tue Registrazioni", "Record": "Registra", "Save": "Salva", "Edit": "Modifica", - "Download": "Download", - "Advanced": "Advanced", + "Download": "Scarica", + "Advanced": "Avanzate", "Delete": "Elimina", - "HeaderDeleteItem": "Elimina elemento", - "ConfirmDeleteItem": "L'eliminazione di questo articolo sar\u00e0 eliminarlo sia dal file system e la vostra libreria multimediale. Sei sicuro di voler continuare?", + "HeaderDeleteItem": "Elimina Elemento", + "ConfirmDeleteItem": "L'eliminazione di questo articolo lo canceller\u00e0 sia dal disco che dalla libreria multimediale. Sei sicuro di voler continuare?", "Refresh": "Aggiorna", - "RefreshQueued": "Refresh queued.", - "AddToCollection": "Add to collection", - "HeaderAddToCollection": "Aggiungi alla collezione", - "NewCollection": "Nuova collezione", - "LabelCollection": "Collection:", + "RefreshQueued": "Aggiornamento programmato.", + "AddToCollection": "Aggiungi ad una collezione", + "HeaderAddToCollection": "Aggiungi ad una Collezione", + "NewCollection": "Nuova Collezione", + "LabelCollection": "Collezione:", "Help": "Aiuto", - "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "NewCollectionHelp": "Le collezioni ti permettono di creare raccolte personalizzate di film ed altri contenuti della libreria.", "SearchForCollectionInternetMetadata": "Cerca su internet le immagini e i metadati", "LabelName": "Nome:", "NewCollectionNameExample": "Esempio: Collezione Star wars", - "MessageItemsAdded": "Items added.", + "MessageItemsAdded": "Elementi aggiunti.", "OptionNew": "Nuovo...", "LabelPlaylist": "Playlist:", "AddToPlaylist": "Aggiungi alla playlist", - "HeaderAddToPlaylist": "Aggiungi alla playlist", - "Subtitles": "Subtitles", - "SearchForSubtitles": "Ricerca per sottotitoli", + "HeaderAddToPlaylist": "Aggiungi alla Playlist", + "Subtitles": "Sottotitoli", + "SearchForSubtitles": "Cerca Sottotitoli", "LabelLanguage": "Lingua:", - "Search": "Ricerca", - "NoSubtitleSearchResultsFound": "No results found.", + "Search": "Cerca", + "NoSubtitleSearchResultsFound": "Nessun risultato.", "File": "File", - "MessageAreYouSureDeleteSubtitles": "Sei sicuro di voler cancellare questo file dei sottotitoli?", - "ConfirmDeletion": "Conferma Cancellazione", - "MySubtitles": "My Subtitles", - "MessageDownloadQueued": "Download queued.", - "EditSubtitles": "modificare i sottotitoli", + "MessageAreYouSureDeleteSubtitles": "Sei sicuro di voler eliminare questo file di sottotitoli?", + "ConfirmDeletion": "Conferma Eliminazione", + "MySubtitles": "I miei Sottotitoli", + "MessageDownloadQueued": "Scaricamento programmato.", + "EditSubtitles": "Modifica i sottotitoli", "UnlockGuide": "Sblocca Guida", - "RefreshMetadata": "Aggiorna metadati", + "RefreshMetadata": "Aggiorna i Metadati", "ReplaceExistingImages": "Sovrascrivi immagini esistenti", - "ReplaceAllMetadata": "Replace all metadata", - "SearchForMissingMetadata": "Search for missing metadata", - "LabelRefreshMode": "Refresh mode:", + "ReplaceAllMetadata": "Sostituisci tutti i metadati", + "SearchForMissingMetadata": "Cerca metadati mancanti", + "LabelRefreshMode": "Modalit\u00e0 di aggiornamento:", "NoItemsFound": "Nessun elemento trovato.", - "HeaderSaySomethingLike": "Dire qualcosa di simile ...", + "HeaderSaySomethingLike": "Pronuncia qualcosa come...", "ButtonTryAgain": "Riprova ancora", "HeaderYouSaid": "Hai detto...", "MessageWeDidntRecognizeCommand": "Ci dispiace, non riconosciamo il comando.", - "MessageIfYouBlockedVoice": "Se tu hai negato l'accesso all app avrai bisogno di reconfigurarlo prima di riprovarci.", + "MessageIfYouBlockedVoice": "Se hai negato l'accesso vocale all'app dovrai riconfigurarlo prima di riprovare di nuovo.", "ValueDiscNumber": "Disco {0}", "Unrated": "Non votato", "Favorite": "Preferito", - "Like": "Bello", - "Dislike": "Brutto", - "RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.", + "Like": "Mi piace", + "Dislike": "Non mi piace", + "RefreshDialogHelp": "I Metadati sono aggiornati in base alle impostazioni ed ai servizi Internet abilitati nel Pannello di Controllo del Server Emby.", "Open": "Apri", "Play": "Riproduci", "Queue": "In coda", - "Shuffle": "A caso", + "Shuffle": "Casuale", "Identify": "Identifica", - "EditImages": "Edit images", - "EditInfo": "Edit info", - "Sync": "Sync", + "EditImages": "Modifica immagini", + "EditInfo": "Modifica Info", + "Sync": "Sincronizza", "InstantMix": "Mix istantaneo", "ViewAlbum": "Visualizza album", "ViewArtist": "Visualizza artista", - "QueueAllFromHere": "Coda tutto da qui", - "PlayAllFromHere": "play tutto da qui", - "PlayFromBeginning": "Play from beginning", - "ResumeAt": "Resume from {0}", + "QueueAllFromHere": "In coda tutto da qui in poi", + "PlayAllFromHere": "Riproduci tutto da qui in poi", + "PlayFromBeginning": "Riproduci dall'inizio", + "ResumeAt": "Riprendi da {0}", "RemoveFromPlaylist": "Rimuovi dalla playlist", - "RemoveFromCollection": "Remove from collection", + "RemoveFromCollection": "Rimuovi dalla collezione", "Trailer": "Trailer", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", - "GroupVersions": "Group versions", + "MarkPlayed": "Segna visto", + "MarkUnplayed": "Segna non visto", + "GroupVersions": "Raggruppa versioni", "PleaseSelectTwoItems": "Seleziona almeno due elementi.", "TryMultiSelect": "Prova la selezione multipla", - "TryMultiSelectMessage": "Per modificare pi\u00f9 elementi, clicca e tieni premuto so un poster, e seleziona gli elementi che vuoi gestire. Prova!", - "HeaderConfirmRecordingCancellation": "Conferma eliminazione registrazione", - "MessageConfirmRecordingCancellation": "Sei sicuro di voler cancellare questa registrazione?", + "TryMultiSelectMessage": "Per modificare pi\u00f9 elementi, clicca e tieni premuto su un poster e seleziona gli elementi che vuoi gestire. Prova!", + "HeaderConfirmRecordingCancellation": "Conferma Eliminazione Registrazione", + "MessageConfirmRecordingCancellation": "Sei sicuro di voler eliminare questa registrazione?", "Error": "Errore", - "VoiceInput": "Voice Input", + "VoiceInput": "Comandi Vocali", "LabelContentType": "Tipo di contenuto:", "LabelPath": "Percorso:", - "LabelTitle": "Title:", - "LabelOriginalTitle": "Original title:", - "LabelSortTitle": "Sort title:", - "LabelDateAdded": "Aggiunto il", - "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings", + "LabelTitle": "Titolo:", + "LabelOriginalTitle": "Titolo originale:", + "LabelSortTitle": "Titolo per ordinamento:", + "LabelDateAdded": "Aggiunto il:", + "ConfigureDateAdded": "Scegli come determinare la data di aggiunta dal Pannello di Controllo del Server Emby, nelle impostazioni della Libreria.", "LabelStatus": "Stato:", - "LabelArtists": "Cantanti", - "LabelArtistsHelp": "Separazione multipla utilizzando ;", - "LabelAlbumArtists": "Artisti:", + "LabelArtists": "Artisti:", + "LabelArtistsHelp": "Separa valori multipli usando ;", + "LabelAlbumArtists": "Artisti album:", "LabelAlbum": "Album:", "LabelCommunityRating": "Voto Comunit\u00e0:", - "LabelVoteCount": "Totale Voti:", + "LabelVoteCount": "Numero voti:", "LabelMetascore": "Punteggio:", - "LabelCriticRating": "Voto dei critici:", - "LabelCriticRatingSummary": "Critico sintesi valutazione:", - "LabelAwardSummary": "Sintesi Premio:", - "LabelWebsite": "Sito web:", - "LabelTagline": "Messaggio pers:", + "LabelCriticRating": "Voto della critica:", + "LabelCriticRatingSummary": "Sintesi voto della Critica:", + "LabelAwardSummary": "Sintesi Premi:", + "LabelWebsite": "Sito Web:", + "LabelTagline": "Slogan:", "LabelOverview": "Trama:", "LabelShortOverview": "Trama breve:", "LabelReleaseDate": "Data di rilascio:", @@ -166,83 +166,83 @@ "LabelPlaceOfBirth": "Luogo di nascita:", "LabelAirDays": "In onda da (gg):", "LabelAirTime": "In onda da:", - "LabelRuntimeMinutes": "Durata ( minuti):", + "LabelRuntimeMinutes": "Durata (minuti):", "LabelParentalRating": "Voto genitori:", "LabelCustomRating": "Voto personalizzato:", "LabelBudget": "Budget", - "LabelRevenue": "Fatturato ($):", + "LabelRevenue": "Incasso ($):", "LabelOriginalAspectRatio": "Aspetto originale:", - "LabelPlayers": "Giocatori", + "LabelPlayers": "Riproduttori:", "Label3DFormat": "Formato 3D:", - "HeaderAlternateEpisodeNumbers": "Numeri Episode alternativi", - "LabelDvdSeasonNumber": "Dvd stagione:", - "LabelDvdEpisodeNumber": "Numero episodio Dvd:", - "LabelAbsoluteEpisodeNumber": "Absolute Numero episodio:", - "HeaderSpecialEpisodeInfo": "Episodio Speciale Info", - "LabelAirsBeforeSeason": "tempo prima della stagione:", - "LabelAirsAfterSeason": "tempo dopo della stagione:", - "LabelAirsBeforeEpisode": "tempo prima episodio:", - "HeaderExternalIds": "Esterno Id di :", - "HeaderDisplaySettings": "Display Settings", - "LabelTreatImageAs": "Trattare come immagine:", - "LabelDisplayOrder": "Ordine visualizzazione:", - "Countries": "Countries", - "Genres": "Genres", - "HeaderPlotKeywords": "Trama", + "HeaderAlternateEpisodeNumbers": "Numeri Episodio Alternativi", + "LabelDvdSeasonNumber": "Numero stagione DVD:", + "LabelDvdEpisodeNumber": "Numero episodio DVD:", + "LabelAbsoluteEpisodeNumber": "Numero episodio assoluto:", + "HeaderSpecialEpisodeInfo": "Informazioni Episodio Speciale", + "LabelAirsBeforeSeason": "In onda prima della stagione:", + "LabelAirsAfterSeason": "In onda dopo la stagione:", + "LabelAirsBeforeEpisode": "In onda prima dell'episodio:", + "HeaderExternalIds": "Id esterni:", + "HeaderDisplaySettings": "Impostazioni Video", + "LabelTreatImageAs": "Gestisci immagine come:", + "LabelDisplayOrder": "Ordine di visualizzazione:", + "Countries": "Nazioni", + "Genres": "Generi", + "HeaderPlotKeywords": "Parole Chiave Trama", "Studios": "Studios", - "Tags": "Tags", - "HeaderMetadataSettings": "Impostazioni metadati", - "People": "People", + "Tags": "Tag", + "HeaderMetadataSettings": "Impostazioni Metadati", + "People": "Attori", "LabelMetadataDownloadLanguage": "Lingua preferita per il download:", - "LabelLockItemToPreventChanges": "Bloccare questa voce per impedire modifiche future", - "MessageLeaveEmptyToInherit": "Lasciare vuoto per ereditare le impostazioni da un elemento principale, o il valore predefinito globale.", + "LabelLockItemToPreventChanges": "Blocca questo elemento per impedire modifiche future", + "MessageLeaveEmptyToInherit": "Lascia vuoto per ereditare le impostazioni dall'elemento principale, o il valore predefinito globale.", "LabelCountry": "Nazione:", "LabelDynamicExternalId": "{0} Id:", - "LabelBirthYear": "Anno nascita:", - "LabelBirthDate": "Data nascita:", - "LabelDeathDate": "Anno morte:", - "LabelEndDate": "Fine data:", - "LabelSeasonNumber": "Season number:", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Traccia numero:", + "LabelBirthYear": "Anno di nascita:", + "LabelBirthDate": "Data di nascita:", + "LabelDeathDate": "Anno di morte:", + "LabelEndDate": "Data di fine:", + "LabelSeasonNumber": "Numero stagione:", + "LabelEpisodeNumber": "Numero espisodio:", + "LabelTrackNumber": "Numero traccia:", "LabelNumber": "Numero:", - "LabelDiscNumber": "Disco numero", + "LabelDiscNumber": "Numero disco", "LabelParentNumber": "Numero superiore", - "SortName": "Nome ordinato", - "ReleaseDate": "Release date", + "SortName": "Nome ordinamento", + "ReleaseDate": "Data di rilascio", "Continuing": "In corso", "Ended": "Finito", - "HeaderEnabledFields": "campi abilitati", - "HeaderEnabledFieldsHelp": "Deselezionare un campo per bloccarlo e impedirgli di dati venga modificata.", + "HeaderEnabledFields": "Campi Abilitati", + "HeaderEnabledFieldsHelp": "Deseleziona un campo per bloccarlo ed impedire che venga modificato.", "Backdrops": "Sfondi", "Images": "Immagini", - "Keywords": "Parole", - "Runtime": "Runtime", - "ProductionLocations": "Production locations", - "BirthLocation": "Birth location", - "ParentalRating": "Valutazione parentale", - "Name": "Name", - "Overview": "Overview", + "Keywords": "Parole chiave", + "Runtime": "Durata", + "ProductionLocations": "Sedi di produzione", + "BirthLocation": "Luogo di nascita", + "ParentalRating": "Voto genitori", + "Name": "Nome", + "Overview": "Trama", "LabelType": "Tipo:", "LabelPersonRole": "Ruolo:", - "LabelPersonRoleHelp": "Example: Ice cream truck driver", + "LabelPersonRoleHelp": "Esempio: Autista di chiosco dei gelati", "Actor": "Attore", "Composer": "Compositore", "Director": "Regista", - "GuestStar": "Guest star", + "GuestStar": "Personaggi famosi", "Producer": "Produttore", "Writer": "Scrittore", "InstallingPackage": "Installazione di {0}", - "PackageInstallCompleted": "{0} completamento dell'installazione.", - "PackageInstallFailed": "{0} installazione non \u00e8 riuscita.", - "PackageInstallCancelled": "{0} installazione annullata.", - "SeriesYearToPresent": "{0}-Presenti", - "ValueOneSong": "1 canzone", - "ValueSongCount": "{0} Canzoni", + "PackageInstallCompleted": "Installazione di {0} completa.", + "PackageInstallFailed": "Installazione di {0} fallita.", + "PackageInstallCancelled": "Installazione di {0} annullata.", + "SeriesYearToPresent": "{0} - Oggi", + "ValueOneSong": "1 brano", + "ValueSongCount": "{0} brani", "ValueOneMovie": "1 film", "ValueMovieCount": "{0} film", - "ValueOneSeries": "1 serie", - "ValueSeriesCount": "{0} serie", + "ValueOneSeries": "1 serie TV", + "ValueSeriesCount": "{0} serie TV", "ValueOneEpisode": "1 episodio", "ValueEpisodeCount": "{0} episodi", "ValueOneGame": "1 gioco", @@ -252,103 +252,107 @@ "ValueOneMusicVideo": "1 video musicale", "ValueMusicVideoCount": "{0} video musicali", "ValueMinutes": "{0} min", - "HeaderIdentifyItemHelp": "Inserisci uno o pi\u00f9 criteri di ricerca. Rimuovi criteri di aumentare i risultati di ricerca.", - "PleaseEnterNameOrId": "Inserisci il nome o id esterno.", + "HeaderIdentifyItemHelp": "Inserisci uno o pi\u00f9 criteri di ricerca. Rimuovi criteri per aumentare il numero di risultati.", + "PleaseEnterNameOrId": "Per favore inserisci un nome o un id esterno.", "MessageItemSaved": "Elemento salvato.", - "SearchResults": "Search Results", - "SyncToOtherDevice": "Sync to other device", - "MakeAvailableOffline": "Make available offline", - "ServerNameIsRestarting": "Emby Server - {0} is restarting.", - "ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "PleaseRestartServerName": "Please restart Emby Server - {0}.", - "SyncJobCreated": "Attivit\u00e0 di Sincronizz. Creata", + "SearchResults": "Risultati della Ricerca", + "SyncToOtherDevice": "Invia a dispositivo", + "MakeAvailableOffline": "Rendi disponibile offline", + "ServerNameIsRestarting": "Emby Server - {0} si sta riavviando.", + "ServerNameIsShuttingDown": "Emby Server - {0} si sta arrestando.", + "HeaderDeleteItems": "Elimina Elementi", + "ConfirmDeleteItems": "L'eliminazione di questi elementi li canceller\u00e0 sia dal disco che dalla tua libreria multimediale. Sei sicuro di voler continuare?", + "PleaseRestartServerName": "Per favore riavvia Emby Server - {0}.", + "SyncJobCreated": "Attivit\u00e0 di Sinc. creata", "LabelSyncTo": "Sincronizza su:", - "LabelSyncJobName": "Nome Attivit\u00e0 di Sincroniz.:", + "LabelSyncJobName": "Nome Attivit\u00e0 di Sinc.:", "LabelQuality": "Qualit\u00e0:", - "LabelSyncNoTargetsHelp": "Sembra che al momento non avete applicazioni che supportano la sincronizzazione.", - "DownloadScheduled": "Download scheduled", + "LabelSyncNoTargetsHelp": "Al momento non hai applicazioni che supportino la sincronizzazione.", + "DownloadScheduled": "Scaricamento pianificato", "LearnMore": "saperne di pi\u00f9", "LabelProfile": "Profilo:", "LabelBitrateMbps": "Bitrate (Mbps):", "SyncUnwatchedVideosOnly": "Sincronizza solo i video non visti", - "SyncUnwatchedVideosOnlyHelp": "Solo i video non visti saranno sincronizzati, e video saranno rimossi dal dispositivo in cui sono guardato.", - "AutomaticallySyncNewContent": "Sincronizza automaticamente nuovi contenuti", - "AutomaticallySyncNewContentHelp": "Nuovi contenuti aggiunto verranno sincronizzati automaticamente al dispositivo.", - "LabelItemLimit": "limite elementi:", - "LabelItemLimitHelp": "Opzionale. Impostare un limite al numero di elementi che verranno sincronizzati.", - "PleaseSelectDeviceToSyncTo": "Selezionare un dispositivo per la sincronizzazione", - "Screenshots": "Screenshots", - "MoveRight": "Move right", - "MoveLeft": "Move left", - "ConfirmDeleteImage": "Delete image?", - "HeaderEditImages": "Edit Images", + "SyncUnwatchedVideosOnlyHelp": "Solo i video non visti verranno sincronizzati, e verranno rimossi dal dispositivo non appena visti.", + "AutomaticallySyncNewContent": "Sincronizza automaticamente i nuovi contenuti", + "AutomaticallySyncNewContentHelp": "I nuovi contenuti aggiunti verranno sincronizzati automaticamente al dispositivo.", + "LabelItemLimit": "Limite elementi:", + "LabelItemLimitHelp": "Opzionale. Imposta un limite al numero di elementi che verranno sincronizzati.", + "PleaseSelectDeviceToSyncTo": "Seleziona un dispositivo per sincronizzare.", + "Screenshots": "Screenshot", + "MoveRight": "Sposta a destra", + "MoveLeft": "Sposta a sinistra", + "ConfirmDeleteImage": "Elimina immagine?", + "HeaderEditImages": "Modifica Immagini", "Settings": "Configurazione", - "ShowIndicatorsFor": "Show indicators for:", - "NewEpisodes": "New episodes", - "HDPrograms": "HD programs", - "LiveBroadcasts": "Live broadcasts", - "Premieres": "Premieres", - "RepeatEpisodes": "Repeat episodes", - "DvrSubscriptionRequired": "Emby DVR requires an active Emby Premiere subscription.", - "HeaderCancelRecording": "Cancel Recording", - "CancelRecording": "Cancel recording", - "HeaderKeepRecording": "Keep Recording", - "HeaderCancelSeries": "Cancel Series", - "HeaderKeepSeries": "Keep Series", - "HeaderLearnMore": "Learn More", - "DeleteMedia": "Delete media", - "SeriesSettings": "Series settings", - "HeaderRecordingOptions": "Recording Options", - "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:", - "AllChannels": "All channels", - "LabelRecord": "Record:", - "NewEpisodesOnly": "New episodes only", - "AllEpisodes": "All episodes", - "LabelStartWhenPossible": "Start when possible:", - "LabelStopWhenPossible": "Stop when possible:", - "MinutesBefore": "minutes before", - "MinutesAfter": "minutes after", - "SkipEpisodesAlreadyInMyLibrary": "Skip episodes that are already in my library", - "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", - "LabelKeepUpTo": "Keep up to:", - "AsManyAsPossible": "As many as possible", + "ShowIndicatorsFor": "Mostra indicatori per:", + "NewEpisodes": "Nuovi episodi", + "HDPrograms": "Programmi HD", + "LiveBroadcasts": "Tramissioni in diretta", + "Premieres": "Prime Visioni", + "RepeatEpisodes": "Ripeti episodi", + "DvrSubscriptionRequired": "Emby DVR richiede un abbonamento ad Emby Premiere.", + "HeaderCancelRecording": "Annulla la Registrazione", + "CancelRecording": "Annulla la registrazione", + "HeaderKeepRecording": "Tieni Registrazione", + "HeaderCancelSeries": "Annulla Serie TV", + "HeaderKeepSeries": "Mantieni Serie TV", + "HeaderLearnMore": "Saperne di pi\u00f9", + "DeleteMedia": "Elimina media", + "SeriesSettings": "Impostazioni Serie TV", + "HeaderRecordingOptions": "Opzioni di Registrazione", + "CancelSeries": "Annulla Serie TV", + "DoNotRecord": "Non registrare", + "HeaderSeriesOptions": "Impostazioni Serie TV", + "LabelChannels": "Canali:", + "ChannelNameOnly": "Solo il canale {0}", + "Anytime": "In qualsiasi momento", + "AroundTime": "Circa {0}", + "LabelAirtime": "Messa in onda:", + "AllChannels": "Tutti i canali", + "LabelRecord": "Registra:", + "NewEpisodesOnly": "Solo i nuovi episodi", + "AllEpisodes": "Tutti gli episodi", + "LabelStartWhenPossible": "Avvia appena possibile:", + "LabelStopWhenPossible": "Ferma appena possibile:", + "MinutesBefore": "minuti prima", + "MinutesAfter": "minuti dopo", + "SkipEpisodesAlreadyInMyLibrary": "Salta gli espisodi che sono gi\u00e0 nella libreria", + "SkipEpisodesAlreadyInMyLibraryHelp": "Gli episodi verranno confrontati usando la stagione ed il numero dell'episodio, quando disponibili.", + "LabelKeepUpTo": "Conservane fino a:", + "AsManyAsPossible": "Tutto il possibile", "DefaultErrorMessage": "Si \u00e8 verificato un errore durante l'elaborazione della richiesta. Si prega di riprovare pi\u00f9 tardi.", - "LabelKeep:": "Keep:", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Categories": "Categories", - "Sports": "Sports", - "News": "News", - "Movies": "Movies", - "Kids": "Kids", - "EnableColorCodedBackgrounds": "Enable color coded backgrounds", - "SortChannelsBy": "Sort channels by:", - "RecentlyWatched": "Recently watched", - "ChannelNumber": "Channel number", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", - "ButtonPlayOneMinute": "Play One Minute", - "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "HeaderUnlockFeature": "Unlock Feature", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "LabelKeep:": "Conserva:", + "UntilIDelete": "Finch\u00e8 li elimino", + "UntilSpaceNeeded": "Finch\u00e8 c'\u00e8 spazio", + "Categories": "Categorie", + "Sports": "Sport", + "News": "Notizie", + "Movies": "Film", + "Kids": "Bambini", + "EnableColorCodedBackgrounds": "Abilita sfondi a colori", + "SortChannelsBy": "Ordina canali per:", + "RecentlyWatched": "Visti di recente", + "ChannelNumber": "Numero canale", + "HeaderBenefitsEmbyPremiere": "Benefici di Emby Premiere", + "ThankYouForTryingEnjoyOneMinute": "Siamo lieti di offrirti un minuto di riproduzione. Grazie per aver provato Emby.", + "HeaderTryPlayback": "Prova la riproduzione", + "HowDidYouPay": "Come hai pagato?", + "IHaveEmbyPremiere": "Sono abbonato a Emby Premiere", + "IPurchasedThisApp": "Ho acquistato questa app", + "ButtonRestorePreviousPurchase": "Ripristina Acquisto", + "ButtonUnlockWithPurchase": "Sblocca con l'Acquisto", + "ButtonUnlockPrice": "Sblocca {0}", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Mensile {0}", + "HeaderAlreadyPaid": "Hai gi\u00e0 pagato?", + "ButtonPlayOneMinute": "Riproduci un minuto", + "PlaceFavoriteChannelsAtBeginning": "Mostra prima i canali preferiti", + "HeaderUnlockFeature": "Sblocca Funzionalit\u00e0", + "MessageDidYouKnowCinemaMode": "Sapevi che con Emby Premiere puoi migliorare la tua esperienza d'uso con funzionalit\u00e0 come la Modalit\u00e0 Cinema?", + "MessageDidYouKnowCinemaMode2": "Modalit\u00e0 Cinema ti d\u00e0 la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.", + "HeaderPlayMyMedia": "Riproduci i miei Media", + "HeaderDiscoverEmbyPremiere": "Scopri Emby Premiere", + "OneChannel": "Un canale", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json index f78c5854ea..9002382bf2 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0493\u0430\u043d\u0434\u044b \u049b\u0430\u043b\u043f\u044b\u043d\u0430 \u043a\u0435\u043b\u0442\u0456\u0440\u0443", "ButtonUnlockWithPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443\u043c\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", "ButtonUnlockPrice": "{0} \u049b\u04b1\u043b\u044b\u043f\u0442\u0430\u043c\u0430\u0443", - "ButtonAlreadyPaid": "\u04d8\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u0442\u04e9\u043b\u0435\u043d\u0434\u0456 \u043c\u0435?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere \u0430\u0439 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 {0}", + "HeaderAlreadyPaid": "\u04d8\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u0442\u04e9\u043b\u0435\u043d\u0434\u0456 \u043c\u0435?", "ButtonPlayOneMinute": "\u0411\u0456\u0440 \u043c\u0438\u043d\u04e9\u0442 \u043e\u0439\u043d\u0430\u0442\u0443", "PlaceFavoriteChannelsAtBeginning": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u0435\u04a3 \u0431\u0430\u0441\u044b\u043d\u0430\u043d \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443", "HeaderUnlockFeature": "\u0410\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b \u049b\u04b1\u0440\u0441\u0430\u0443\u044b\u043d \u0431\u043e\u0441\u0430\u0442\u0443", "MessageDidYouKnowCinemaMode": "Emby Premiere \u0430\u0440\u049b\u044b\u043b\u044b, \u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u0443\u0440\u0430\u043b\u044b \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?", "MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", "HeaderPlayMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443", - "HeaderDiscoverEmbyPremiere": "Emby Premiere \u0430\u0448\u044b\u04a3\u044b\u0437" + "HeaderDiscoverEmbyPremiere": "Emby Premiere \u0430\u0448\u044b\u04a3\u044b\u0437", + "OneChannel": "\u0411\u0456\u0440 \u0430\u0440\u043d\u0430\u0434\u0430\u043d", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d\u0456 {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json index 0b03e09876..790a1ab5c1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "\ud45c\uc2dc \uc21c\uc11c:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json index dd326aba61..d7ea85514d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json index d1e1f76f4c..787bee30bb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json index 97324e3fcd..d2bdf79345 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json @@ -1,7 +1,7 @@ { - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", + "MessageUnlockAppWithPurchaseOrSupporter": "Ontgrendel deze functie met een kleine eenmalige aankoop, of met een actief Emby Premiere abonnement.", + "MessageUnlockAppWithSupporter": "Ontgrendel deze functie met een actief Emby Premiere abonnement.", + "MessageToValidateSupporter": "Als u een actieve Emby Premiere abonnement heeft , zorg er dan voor dat u deze activeert in uw Emby Server Dashboard door te klikken op Emby Premiere in het hoofdmenu.", "ValueSpecialEpisodeName": "Speciaal - {0}", "Share": "Delen", "Add": "Toevoegen", @@ -29,7 +29,7 @@ "ButtonGotIt": "Begrepen", "ButtonRestart": "Herstart", "RecordingCancelled": "Opname geannuleerd.", - "SeriesCancelled": "Series cancelled.", + "SeriesCancelled": "Serie geannuleerd.", "RecordingScheduled": "Opname schema", "SeriesRecordingScheduled": "Serieopname gepland.", "HeaderNewRecording": "Nieuwe opname", @@ -42,19 +42,19 @@ "Saturday": "Zaterdag", "Days": "Dagen", "RecordSeries": "Series Opnemen", - "HeaderCinemaMode": "Cinema Mode", - "HeaderCloudSync": "Cloud Sync", + "HeaderCinemaMode": "Bioscoop mode", + "HeaderCloudSync": "Cloud Synchronisatie", "HeaderOfflineDownloads": "Offline Media", - "HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", + "HeaderOfflineDownloadsDescription": "Download media naar je apparaten voor gemakkelijk offlineebruik.", + "CloudSyncFeatureDescription": "Synchroniseer uw media naar de cloud voor eenvoudige backup, archivering en conversie.", + "CoverArtFeatureDescription": "Cover Art cre\u00ebert leuke covers en andere bewerkingen om u te helpen uw mediabeelden te personaliseren.", "CoverArt": "Cover Art", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.", + "CinemaModeFeatureDescription": "Bioscoop mode geeft u de ware bioscoopervaring met trailers en aangepaste intro voor de weergave van uw keuze.", + "HeaderFreeApps": "Gratis Emby Apps", + "FreeAppsFeatureDescription": "Geniet van gratis toegang tot Emby apps voor uw apparaten.", "HeaderBecomeProjectSupporter": "Verkrijg Emby Premiere", "MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Emby Premiere abonnement benodigd om een automatische serie opname aan te maken.", - "LabelEmailAddress": "E-mail address:", + "LabelEmailAddress": "E-mailadres:", "PromoConvertRecordingsToStreamingFormat": "Automatisch converteren opnames naar een streaming formaat met Emby Premiere. Opnames zullen on the fly worden omgezet naar MP4 of MKV, op basis van deEmby server instellingen.", "FeatureRequiresEmbyPremiere": "Deze functie vereist een actieve Emby Premiere abonnement.", "HeaderConvertYourRecordings": "Opnames omzetten", @@ -188,7 +188,7 @@ "LabelDisplayOrder": "Weergave volgorde:", "Countries": "Landen", "Genres": "Genres", - "HeaderPlotKeywords": "Trefwoorden plot", + "HeaderPlotKeywords": "Trefwoorden verhaallijn", "Studios": "Studio's", "Tags": "Labels", "HeaderMetadataSettings": "Metagegevens instellingen", @@ -293,31 +293,31 @@ "RepeatEpisodes": "Herhaal afleveringen", "DvrSubscriptionRequired": "Emby DVR vereist een actieve Emby premi\u00e8re-abonnement.", "HeaderCancelRecording": "Opname Annuleren", - "CancelRecording": "Cancel recording", + "CancelRecording": "Opname annuleren", "HeaderKeepRecording": "Bewaar opname", - "HeaderCancelSeries": "Cancel Series", - "HeaderKeepSeries": "Keep Series", + "HeaderCancelSeries": "Annuleren Series", + "HeaderKeepSeries": "Series behouden", "HeaderLearnMore": "Meer informatie", "DeleteMedia": "Verwijder media", "SeriesSettings": "Series instellingen", "HeaderRecordingOptions": "Opname instellingen", "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:", - "AllChannels": "All channels", - "LabelRecord": "Record:", - "NewEpisodesOnly": "New episodes only", - "AllEpisodes": "All episodes", - "LabelStartWhenPossible": "Start when possible:", - "LabelStopWhenPossible": "Stop when possible:", - "MinutesBefore": "minutes before", - "MinutesAfter": "minutes after", - "SkipEpisodesAlreadyInMyLibrary": "Skip episodes that are already in my library", + "DoNotRecord": "Niet opnemen", + "HeaderSeriesOptions": "Series Opties", + "LabelChannels": "Kanalen:", + "ChannelNameOnly": "Alleen kanaal {0}", + "Anytime": "Op elk moment", + "AroundTime": "Rond {0}", + "LabelAirtime": "Uitzendtijd:", + "AllChannels": "Alle kanalen", + "LabelRecord": "Opnemen:", + "NewEpisodesOnly": "Alleen nieuwe afleveringen", + "AllEpisodes": "Alle afleveringen", + "LabelStartWhenPossible": "Start indien mogelijk:", + "LabelStopWhenPossible": "Stop indien mogelijk:", + "MinutesBefore": "minuten voor", + "MinutesAfter": "minuten na", + "SkipEpisodesAlreadyInMyLibrary": "Sla afleveringen over die al in mijn bibliotheek voorkomen", "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "LabelKeepUpTo": "Keep up to:", "AsManyAsPossible": "As many as possible", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json index 8e8927cae5..451850b9c4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json @@ -236,7 +236,7 @@ "PackageInstallCompleted": "Instalacja {0} zako\u0144czona.", "PackageInstallFailed": "Instalacja {0} nieudana.", "PackageInstallCancelled": "Instalacja {0} anulowana.", - "SeriesYearToPresent": "{0}-Obecnych", + "SeriesYearToPresent": "{0} - Obecnych", "ValueOneSong": "1 utw\u00f3r", "ValueSongCount": "{0} utwory", "ValueOneMovie": "1 film", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json index 63565c0ea0..f820315c22 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Exibido antes da temporada:", "LabelAirsAfterSeason": "Exibido depois da temporada:", "LabelAirsBeforeEpisode": "Exibido antes do epis\u00f3dio:", - "HeaderExternalIds": "Id`s Externos:", + "HeaderExternalIds": "Ids Externos:", "HeaderDisplaySettings": "Ajustes de Exibi\u00e7\u00e3o", "LabelTreatImageAs": "Tratar imagem como:", "LabelDisplayOrder": "Ordem de exibi\u00e7\u00e3o:", @@ -236,7 +236,7 @@ "PackageInstallCompleted": "Instala\u00e7\u00e3o de {0} conclu\u00edda.", "PackageInstallFailed": "Instala\u00e7\u00e3o de {0} falhou.", "PackageInstallCancelled": "Instala\u00e7\u00e3o de {0} cancelada.", - "SeriesYearToPresent": "{0}-Presente", + "SeriesYearToPresent": "{0} - Presente", "ValueOneSong": "1 m\u00fasica", "ValueSongCount": "{0} m\u00fasicas", "ValueOneMovie": "1 filme", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Recuperar Compra", "ButtonUnlockWithPurchase": "Desbloquear com Compra", "ButtonUnlockPrice": "Desbloquear {0}", - "ButtonAlreadyPaid": "J\u00e1 pagou?", + "EmbyPremiereMonthlyWithPrice": "Mensalidade Emby Premiere {0}", + "HeaderAlreadyPaid": "J\u00e1 Pagou?", "ButtonPlayOneMinute": "Reproduzir Um Minuto", "PlaceFavoriteChannelsAtBeginning": "Colocar canais favoritos no in\u00edcio", "HeaderUnlockFeature": "Desbloquear Funcionalidade", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que com Emby Premiere, voc\u00ea pode melhorar sua experi\u00eancia com funcionalidades como o Modo Cinema?", + "MessageDidYouKnowCinemaMode2": "Modo Cinema lhe d\u00e1 uma verdadeira experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es customizadas antes da apresenta\u00e7\u00e3o principal.", + "HeaderPlayMyMedia": "Reproduzir minha M\u00eddia", + "HeaderDiscoverEmbyPremiere": "Descobrir o Emby Premiere", + "OneChannel": "Um canal", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Adicionado em {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json index 155ea758f5..6b45d945f3 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json index 28965be69c..611217499a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json index 602db8c7f7..197181cb5e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json @@ -1,15 +1,15 @@ { - "MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u0440\u0430\u0437\u043e\u0432\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .", + "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.", "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.", "ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}", "Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f", "Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c", - "ServerUpdateNeeded": "\u0414\u0430\u043d\u043d\u044b\u0439 Emby Server \u043d\u0443\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0432 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0438. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u0432\u0435\u0440\u0441\u0438\u044e, \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 {0}", + "ServerUpdateNeeded": "\u0414\u0430\u043d\u043d\u044b\u0439 Emby Server \u043d\u0443\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0432 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0438. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u0432\u0435\u0436\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e, \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 {0}", "LiveTvGuideRequiresUnlock": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0442\u0435\u043b\u0435\u0433\u0438\u0434 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d {0} \u043a\u0430\u043d\u0430\u043b(\u043e\u043c\/\u0430\u043c\u0438). \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c \u043a\u0430\u043a \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u044b\u0439 \u044d\u0444\u0444\u0435\u043a\u0442.", - "AttributeNew": "\u041d\u043e\u0432\u043e\u0435", + "AttributeNew": "\u041d\u043e\u0432\u0438\u043d\u043a\u0430", "Premiere": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430", - "Live": "\u041f\u0440\u044f\u043c\u043e\u0439 \u044d\u0444\u0438\u0440", + "Live": "\u0422\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044f", "Repeat": "\u041f\u043e\u0432\u0442\u043e\u0440", "TrackCount": "{0} \u0434\u043e\u0440\u043e\u0436(\u043a\u0438\/\u0435\u043a)", "ItemCount": "{0} \u044d\u043b\u0435\u043c\u0435\u043d\u0442(\u0430\/\u043e\u0432)", @@ -53,7 +53,7 @@ "HeaderFreeApps": "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "FreeAppsFeatureDescription": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u043a Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0434\u043b\u044f \u0432\u0430\u0448\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432.", "HeaderBecomeProjectSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere", - "MessageActiveSubscriptionRequiredSeriesRecordings": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0439.", + "MessageActiveSubscriptionRequiredSeriesRecordings": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0435\u0440\u0438\u0439\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438.", "LabelEmailAddress": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b:", "PromoConvertRecordingsToStreamingFormat": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 \u0432 \u0443\u0434\u043e\u0431\u043d\u044b\u0439 \u0434\u043b\u044f \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u0444\u043e\u0440\u043c\u0430\u0442 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Emby Premiere. \u0417\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432 MP4 \u0438\u043b\u0438 MKV, \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 Emby Server.", "FeatureRequiresEmbyPremiere": "\u0414\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.", @@ -78,7 +78,7 @@ "LabelName": "\u0418\u043c\u044f:", "NewCollectionNameExample": "\u041f\u0440\u0438\u043c\u0435\u0440: \u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b (\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f)", "MessageItemsAdded": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b.", - "OptionNew": "\u041d\u043e\u0432\u0430\u044f...", + "OptionNew": "\u041d\u043e\u0432\u043e\u0435...", "LabelPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442:", "AddToPlaylist": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442", "HeaderAddToPlaylist": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442", @@ -146,9 +146,9 @@ "LabelSortTitle": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044e:", "LabelDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f:", "ConfigureDateAdded": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0434\u0430\u0442\u044b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u0432 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server \u0432 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u0445 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438", - "LabelStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435:", + "LabelStatus": "\u0421\u0442\u0430\u0442\u0443\u0441:", "LabelArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438:", - "LabelArtistsHelp": "\u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u00ab;\u00bb", + "LabelArtistsHelp": "\u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0442\u043e\u0447\u043a\u0443 \u0441 \u0437\u0430\u043f\u044f\u0442\u043e\u0439 (;)", "LabelAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430:", "LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", "LabelCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430:", @@ -184,7 +184,7 @@ "LabelAirsBeforeEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434 airs_before:", "HeaderExternalIds": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b:", "HeaderDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", - "LabelTreatImageAs": "\u0422\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u0440\u0430\u0437 \u043a\u0430\u043a:", + "LabelTreatImageAs": "\u0420\u0430\u0441\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c ISO-\u043e\u0431\u0440\u0430\u0437 \u043a\u0430\u043a (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, dvd, hddvd \u0438 \u0442.\u043f.):", "LabelDisplayOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f:", "Countries": "\u0421\u0442\u0440\u0430\u043d\u044b", "Genres": "\u0416\u0430\u043d\u0440\u044b", @@ -256,7 +256,7 @@ "PleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.", "MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.", "SearchResults": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430", - "SyncToOtherDevice": "\u0421\u0438\u043d\u0445\u0440\u043e \u0441 \u0434\u0440\u0443\u0433\u0438\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c", + "SyncToOtherDevice": "\u0421\u0438\u043d\u0445\u0440\u043e \u0441 \u0434\u0440. \u0443\u0441\u0442\u0440-\u043e\u043c", "MakeAvailableOffline": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e", "ServerNameIsRestarting": "Emby Server - {0} \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u0442\u0441\u044f.", "ServerNameIsShuttingDown": "Emby Server - {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0443.", @@ -276,8 +276,8 @@ "SyncUnwatchedVideosOnlyHelp": "\u0421\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e, \u0430 \u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0438\u0437\u044b\u043c\u0430\u044e\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440-\u0432\u0430.", "AutomaticallySyncNewContent": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "AutomaticallySyncNewContentHelp": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0432 \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443, \u0430\u0432\u0442\u043e-\u043a\u0438 \u0441\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440-\u043e\u043c.", - "LabelItemLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:", - "LabelItemLimitHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u041f\u0440\u0435\u0434\u0435\u043b \u0447\u0438\u0441\u043b\u0430 \u0441\u0438\u043d\u0445\u0440-\u0435\u043c\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.", + "LabelItemLimit": "\u041b\u0438\u043c\u0438\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:", + "LabelItemLimitHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u041b\u0438\u043c\u0438\u0442 \u0447\u0438\u0441\u043b\u0430 \u0441\u0438\u043d\u0445\u0440-\u0435\u043c\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.", "PleaseSelectDeviceToSyncTo": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438.", "Screenshots": "\u0421\u043d\u0438\u043c\u043a\u0438 \u044d\u043a\u0440\u0430\u043d\u0430", "MoveRight": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043f\u0440\u0430\u0432\u043e", @@ -288,10 +288,10 @@ "ShowIndicatorsFor": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043c\u0435\u0442\u043a\u0438 \u0434\u043b\u044f:", "NewEpisodes": "\u041d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", "HDPrograms": "HD-\u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438", - "LiveBroadcasts": "\u041f\u0440\u044f\u043c\u044b\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438", + "LiveBroadcasts": "\u041f\u0440\u044f\u043c\u044b\u0435 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438", "Premieres": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u044b", "RepeatEpisodes": "\u041f\u043e\u0432\u0442\u043e\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432", - "DvrSubscriptionRequired": "\u0414\u043b\u044f Emby DVR \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.", + "DvrSubscriptionRequired": "\u0414\u043b\u044f \u0432\u0438\u0434\u0435\u043e\u0440\u0435\u043a\u043e\u0440\u0434\u0435\u0440\u0430 Emby \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.", "HeaderCancelRecording": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c", "CancelRecording": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c", "HeaderKeepRecording": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", @@ -313,12 +313,12 @@ "LabelRecord": "\u0417\u0430\u043f\u0438\u0441\u044c:", "NewEpisodesOnly": "\u0422\u043e\u043b\u044c\u043a\u043e \u043d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", "AllEpisodes": "\u0412\u0441\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", - "LabelStartWhenPossible": "\u041d\u0430\u0447\u0430\u0442\u044c \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:", - "LabelStopWhenPossible": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:", - "MinutesBefore": "\u043c\u0438\u043d\u0443\u0442\u044b \u0434\u043e", - "MinutesAfter": "\u043c\u0438\u043d\u0443\u0442\u044b \u043f\u043e\u0441\u043b\u0435", + "LabelStartWhenPossible": "\u041d\u0430\u0447\u0430\u0442\u044c, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:", + "LabelStopWhenPossible": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:", + "MinutesBefore": "\u043c\u0438\u043d\u0443\u0442(\u0443\/\u044b) \u0434\u043e", + "MinutesAfter": "\u043c\u0438\u043d\u0443\u0442(\u0443\/\u044b) \u043f\u043e\u0441\u043b\u0435", "SkipEpisodesAlreadyInMyLibrary": "\u041f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u044d\u043f\u0438\u0437\u043e\u0434\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0443\u0436\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u043c\u043e\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435", - "SkipEpisodesAlreadyInMyLibraryHelp": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b \u0431\u0443\u0434\u0443\u0442 \u0441\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043d\u043e\u043c\u0435\u0440\u043e\u0432 \u0441\u0435\u0437\u043e\u043d\u043e\u0432 \u0438 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432, \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e.", + "SkipEpisodesAlreadyInMyLibraryHelp": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b \u0431\u0443\u0434\u0443\u0442 \u0441\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043d\u043e\u043c\u0435\u0440\u043e\u0432 \u0441\u0435\u0437\u043e\u043d\u043e\u0432 \u0438 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432, \u043a\u043e\u0433\u0434\u0430 \u043e\u043d\u0438 \u0438\u043c\u0435\u044e\u0442\u0441\u044f.", "LabelKeepUpTo": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u0434\u043e:", "AsManyAsPossible": "\u041a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u044c\u0448\u0435", "DefaultErrorMessage": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435", "ButtonUnlockWithPurchase": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043e\u043f\u043b\u0430\u0442\u044b", "ButtonUnlockPrice": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c {0}", - "ButtonAlreadyPaid": "\u0423\u0436\u0435 \u043e\u043f\u043b\u0430\u0442\u0438\u043b\u0438?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere \u043d\u0430 \u043c\u0435\u0441\u044f\u0446 {0}", + "HeaderAlreadyPaid": "\u0423\u0436\u0435 \u043e\u043f\u043b\u0430\u0442\u0438\u043b\u0438?", "ButtonPlayOneMinute": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043e\u0434\u043d\u0443 \u043c\u0438\u043d\u0443\u0442\u0443", "PlaceFavoriteChannelsAtBeginning": "\u0420\u0430\u0437\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0432 \u043d\u0430\u0447\u0430\u043b\u0435", "HeaderUnlockFeature": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443", "MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441 Emby Premiere \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0420\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430?", "MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u044d\u0444\u0444\u0435\u043a\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u0444\u0438\u043b\u044c\u043c\u043e\u043c.", - "HeaderPlayMyMedia": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043c\u043e\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", - "HeaderDiscoverEmbyPremiere": "\u041e\u0442\u043a\u0440\u043e\u0439\u0442\u0435 Emby Premiere" + "HeaderPlayMyMedia": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", + "HeaderDiscoverEmbyPremiere": "\u041e\u0442\u043a\u0440\u043e\u0439\u0442\u0435 Emby Premiere", + "OneChannel": "\u041e\u0434\u0438\u043d \u043a\u0430\u043d\u0430\u043b", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json index dd326aba61..d7ea85514d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json index 3a20befff1..d546b23a45 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json index c1693ad547..d779c5f4cc 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json index 7dbfe443f4..e2e9c13cc2 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json index b86d6c3f7a..4deed3e388 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json index 6d6fd5f0ef..63ce6b116a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json index 6833ea3667..f52ed5aa85 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json @@ -2,31 +2,31 @@ "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", - "ValueSpecialEpisodeName": "Special - {0}", - "Share": "Share", + "ValueSpecialEpisodeName": "\u7279\u5178 - {0}", + "Share": "\u5171\u4eab", "Add": "\u6dfb\u52a0", "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "AttributeNew": "New", - "Premiere": "Premiere", - "Live": "Live", + "Premiere": "\u9996\u6620", + "Live": "\u76f4\u64ad", "Repeat": "Repeat", "TrackCount": "{0} tracks", "ItemCount": "{0} items", - "ReleaseYearValue": "Release year: {0}", + "ReleaseYearValue": "\u53d1\u5e03\u5e74\u4efd\uff1a{0}", "OriginalAirDateValue": "Original air date: {0}", "EndsAtValue": "Ends at {0}", - "OptionSundayShort": "Sun", - "OptionMondayShort": "Mon", - "OptionTuesdayShort": "Tue", - "OptionWednesdayShort": "Wed", - "OptionThursdayShort": "Thu", - "OptionFridayShort": "Fri", - "OptionSaturdayShort": "Sat", - "HeaderSelectDate": "Select Date", - "ButtonOk": "Ok", + "OptionSundayShort": "\u661f\u671f\u65e5", + "OptionMondayShort": "\u661f\u671f\u4e00", + "OptionTuesdayShort": "\u661f\u671f\u4e8c", + "OptionWednesdayShort": "\u661f\u671f\u4e09", + "OptionThursdayShort": "\u661f\u671f\u56db", + "OptionFridayShort": "\u661f\u671f\u4e94", + "OptionSaturdayShort": "\u661f\u671f\u516d", + "HeaderSelectDate": "\u9009\u62e9\u65e5\u671f", + "ButtonOk": "\u786e\u5b9a", "ButtonCancel": "\u53d6\u6d88", - "ButtonGotIt": "Got It", + "ButtonGotIt": "\u77e5\u9053\u4e86", "ButtonRestart": "\u91cd\u542f", "RecordingCancelled": "\u5f55\u5236\u5df2\u53d6\u6d88\u3002", "SeriesCancelled": "Series cancelled.", @@ -54,7 +54,7 @@ "FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.", - "LabelEmailAddress": "E-mail address:", + "LabelEmailAddress": "\u90ae\u7bb1\u5730\u5740\uff1a", "PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "HeaderConvertYourRecordings": "Convert Your Recordings", @@ -62,37 +62,37 @@ "Save": "\u50a8\u5b58", "Edit": "\u7f16\u8f91", "Download": "\u4e0b\u8f7d", - "Advanced": "Advanced", + "Advanced": "\u9ad8\u7ea7", "Delete": "\u5220\u9664", "HeaderDeleteItem": "\u5220\u9664\u9879\u76ee", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "Refresh": "\u5237\u65b0", - "RefreshQueued": "Refresh queued.", + "RefreshQueued": "\u5217\u961f\u5df2\u5237\u65b0\u3002", "AddToCollection": "Add to collection", "HeaderAddToCollection": "Add to Collection", "NewCollection": "\u65b0\u5408\u96c6", "LabelCollection": "Collection:", - "Help": "Help", + "Help": "\u5e2e\u52a9", "NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", "SearchForCollectionInternetMetadata": "\u5728\u4e92\u8054\u7f51\u4e0a\u641c\u7d22\u5a92\u4f53\u56fe\u50cf\u548c\u8d44\u6599", "LabelName": "\u540d\u5b57\uff1a", "NewCollectionNameExample": "\u4f8b\u5982\uff1a\u661f\u7403\u5927\u6218\u5408\u96c6", - "MessageItemsAdded": "Items added.", + "MessageItemsAdded": "\u9879\u76ee\u5df2\u6dfb\u52a0\u3002", "OptionNew": "\u66f4\u65b0...", "LabelPlaylist": "\u64ad\u653e\u5217\u8868\uff1a", "AddToPlaylist": "\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868", "HeaderAddToPlaylist": "\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868", - "Subtitles": "Subtitles", + "Subtitles": "\u5b57\u5e55", "SearchForSubtitles": "\u641c\u7d22\u5b57\u5e55", "LabelLanguage": "\u8bed\u8a00\uff1a", "Search": "\u641c\u7d22", - "NoSubtitleSearchResultsFound": "No results found.", - "File": "File", + "NoSubtitleSearchResultsFound": "\u672a\u627e\u5230\u7ed3\u679c\u3002", + "File": "\u6587\u4ef6", "MessageAreYouSureDeleteSubtitles": "\u4f60\u786e\u5b9a\u5e0c\u671b\u5220\u9664\u6b64\u5b57\u5e55\u6587\u4ef6\uff1f", "ConfirmDeletion": "\u786e\u8ba4\u5220\u9664", - "MySubtitles": "My Subtitles", - "MessageDownloadQueued": "Download queued.", - "EditSubtitles": "Edit subtitles", + "MySubtitles": "\u6211\u7684\u5b57\u5e55", + "MessageDownloadQueued": "\u4e0b\u8f7d\u5df2\u5217\u961f\u3002", + "EditSubtitles": "\u4fee\u6539\u5b57\u5e55", "UnlockGuide": "Unlock Guide", "RefreshMetadata": "\u5237\u65b0\u5a92\u4f53\u8d44\u6599", "ReplaceExistingImages": "\u66ff\u6362\u73b0\u6709\u56fe\u7247", @@ -116,21 +116,21 @@ "Queue": "\u52a0\u5165\u961f\u5217", "Shuffle": "\u6401\u7f6e", "Identify": "\u8bc6\u522b", - "EditImages": "Edit images", - "EditInfo": "Edit info", - "Sync": "Sync", + "EditImages": "\u4fee\u6539\u56fe\u7247", + "EditInfo": "\u7f16\u8f91\u4fe1\u606f", + "Sync": "\u540c\u6b65", "InstantMix": "\u5373\u65f6\u6df7\u97f3", - "ViewAlbum": "View album", - "ViewArtist": "View artist", + "ViewAlbum": "\u67e5\u770b\u4e13\u8f91", + "ViewArtist": "\u67e5\u770b\u827a\u672f\u5bb6", "QueueAllFromHere": "\u8fd9\u91cc\u7684\u5168\u90e8\u5185\u5bb9\u90fd\u52a0\u5165\u961f\u5217", "PlayAllFromHere": "\u8fd9\u91cc\u7684\u5168\u90e8\u5185\u5bb9\u90fd\u5f00\u59cb\u64ad\u653e", - "PlayFromBeginning": "Play from beginning", - "ResumeAt": "Resume from {0}", + "PlayFromBeginning": "\u4ece\u5934\u64ad\u653e", + "ResumeAt": "\u6062\u590d\u64ad\u653e\u4e8e{0}", "RemoveFromPlaylist": "\u4ece\u64ad\u653e\u5217\u8868\u4e2d\u79fb\u9664", "RemoveFromCollection": "Remove from collection", - "Trailer": "Trailer", - "MarkPlayed": "Mark played", - "MarkUnplayed": "Mark unplayed", + "Trailer": "\u9884\u544a\u7247", + "MarkPlayed": "\u6807\u4e3a\u5df2\u64ad\u653e", + "MarkUnplayed": "\u6807\u4e3a\u672a\u64ad\u653e", "GroupVersions": "Group versions", "PleaseSelectTwoItems": "\u8bf7\u81f3\u5c11\u9009\u62e92\u4e2a\u9879\u76ee\u3002", "TryMultiSelect": "Try Multi-Select", @@ -141,15 +141,15 @@ "VoiceInput": "Voice Input", "LabelContentType": "\u5185\u5bb9\u7c7b\u578b", "LabelPath": "\u8def\u5f84\uff1a", - "LabelTitle": "Title:", - "LabelOriginalTitle": "Original title:", - "LabelSortTitle": "Sort title:", + "LabelTitle": "\u6807\u9898\uff1a", + "LabelOriginalTitle": "\u539f\u6807\u9898\uff1a", + "LabelSortTitle": "\u77ed\u6807\u9898\uff1a", "LabelDateAdded": "\u52a0\u5165\u65e5\u671f\uff1a", "ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings", "LabelStatus": "\u72b6\u6001\uff1a", "LabelArtists": "\u827a\u672f\u5bb6\uff1a", "LabelArtistsHelp": "\u72ec\u7acb\u591a\u529f\u80fd\uff1b", - "LabelAlbumArtists": "Album artists:", + "LabelAlbumArtists": "\u4e13\u8f91\u4f5c\u5bb6\uff1a", "LabelAlbum": "\u4e13\u8f91\uff1a", "LabelCommunityRating": "\u516c\u4f17\u8bc4\u5206\uff1a", "LabelVoteCount": "\u6295\u7968\u8ba1\u6570\uff1a", @@ -182,80 +182,80 @@ "LabelAirsBeforeSeason": "\u5b63\u64ad\u51fa\u524d\uff1a", "LabelAirsAfterSeason": "\u5b63\u64ad\u51fa\u540e\uff1a", "LabelAirsBeforeEpisode": "\u96c6\u64ad\u51fa\u524d\uff1a", - "HeaderExternalIds": "\u5916\u90e8ID\uff1a", - "HeaderDisplaySettings": "Display Settings", + "HeaderExternalIds": "\u5916\u90e8 Ids\uff1a", + "HeaderDisplaySettings": "\u663e\u793a\u8bbe\u7f6e", "LabelTreatImageAs": "\u5904\u7406\u56fe\u50cf\uff1a", "LabelDisplayOrder": "\u663e\u793a\u987a\u5e8f\uff1a", - "Countries": "Countries", - "Genres": "Genres", + "Countries": "\u56fd\u5bb6", + "Genres": "\u98ce\u683c", "HeaderPlotKeywords": "\u60c5\u8282\u5173\u952e\u5b57", - "Studios": "Studios", + "Studios": "\u5de5\u4f5c\u5ba4", "Tags": "\u6807\u7b7e", "HeaderMetadataSettings": "\u5a92\u4f53\u8d44\u6599\u8bbe\u7f6e", - "People": "People", + "People": "\u4eba\u7269", "LabelMetadataDownloadLanguage": "\u9996\u9009\u4e0b\u8f7d\u8bed\u8a00\uff1a", "LabelLockItemToPreventChanges": "\u9501\u5b9a\u6b64\u9879\u76ee\u9632\u6b62\u6539\u52a8", "MessageLeaveEmptyToInherit": "\u7559\u7a7a\u5219\u7ee7\u627f\u7236\u9879\u6216\u5168\u5c40\u9ed8\u8ba4\u503c\u8bbe\u7f6e\u3002", "LabelCountry": "\u56fd\u5bb6\uff1a", "LabelDynamicExternalId": "{0} Id\uff1a", "LabelBirthYear": "\u51fa\u751f\u5e74\u4efd\uff1a", - "LabelBirthDate": "Birth date:", + "LabelBirthDate": "\u51fa\u751f\u65e5\u671f\uff1a", "LabelDeathDate": "\u53bb\u4e16\u65e5\u671f\uff1a", "LabelEndDate": "\u7ed3\u675f\u65e5\u671f\uff1a", - "LabelSeasonNumber": "Season number:", - "LabelEpisodeNumber": "Episode number:", + "LabelSeasonNumber": "\u5b63\u53f7\uff1a", + "LabelEpisodeNumber": "\u96c6\u53f7\uff1a", "LabelTrackNumber": "\u97f3\u8f68\u53f7\u7801\uff1a", "LabelNumber": "\u7f16\u53f7\uff1a", "LabelDiscNumber": "\u5149\u76d8\u53f7", "LabelParentNumber": "\u6bcd\u5e26\u53f7", "SortName": "\u6392\u5e8f\u540d\u79f0", - "ReleaseDate": "Release date", + "ReleaseDate": "\u53d1\u884c\u65e5\u671f", "Continuing": "\u7ee7\u7eed", "Ended": "\u7ed3\u675f", - "HeaderEnabledFields": "Enabled Fields", + "HeaderEnabledFields": "\u5df2\u542f\u7528\u7684\u680f", "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", "Backdrops": "\u80cc\u666f", "Images": "\u56fe\u7247", "Keywords": "\u5173\u952e\u8bcd", - "Runtime": "Runtime", + "Runtime": "\u64ad\u653e\u65f6\u95f4", "ProductionLocations": "Production locations", - "BirthLocation": "Birth location", + "BirthLocation": "\u51fa\u751f\u5730", "ParentalRating": "Parental Rating", - "Name": "Name", - "Overview": "Overview", + "Name": "\u540d\u79f0", + "Overview": "\u6982\u8ff0", "LabelType": "\u7c7b\u578b\uff1a", "LabelPersonRole": "\u89d2\u8272\uff1a", "LabelPersonRoleHelp": "Example: Ice cream truck driver", "Actor": "\u6f14\u5458", "Composer": "\u4f5c\u66f2\u5bb6", "Director": "\u5bfc\u6f14", - "GuestStar": "Guest star", + "GuestStar": "\u7279\u9080\u660e\u661f", "Producer": "\u5236\u7247\u4eba", "Writer": "\u7f16\u5267", "InstallingPackage": "\u6b63\u5728\u5b89\u88c5 {0}", "PackageInstallCompleted": "{0} \u5b89\u88c5\u5b8c\u6210\u3002", "PackageInstallFailed": "{0} \u5b89\u88c5\u5931\u8d25\u3002", "PackageInstallCancelled": "{0} \u5b89\u88c5\u88ab\u53d6\u6d88\u3002", - "SeriesYearToPresent": "{0} - Present", + "SeriesYearToPresent": "{0} - \u73b0\u5728", "ValueOneSong": "1\u9996\u6b4c", "ValueSongCount": "{0} \u9996\u6b4c", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", + "ValueOneMovie": "1 \u4e2a\u7535\u5f71", + "ValueMovieCount": "{0} \u4e2a\u7535\u5f71", + "ValueOneSeries": "1 \u4e2a\u7cfb\u5217", + "ValueSeriesCount": "{0} \u4e2a\u7cfb\u5217", + "ValueOneEpisode": "1 \u96c6", + "ValueEpisodeCount": "{0} \u96c6", + "ValueOneGame": "1 \u4e2a\u6e38\u620f", + "ValueGameCount": "{0} \u4e2a\u6e38\u620f", "ValueOneAlbum": "1\u5f20\u4e13\u8f91", "ValueAlbumCount": "{0} \u5f20\u4e13\u8f91", "ValueOneMusicVideo": "1\u4e2a\u97f3\u4e50\u89c6\u9891", "ValueMusicVideoCount": "{0} \u4e2a\u97f3\u4e50\u89c6\u9891", - "ValueMinutes": "{0} min", + "ValueMinutes": "{0} \u5206\u949f", "HeaderIdentifyItemHelp": "\u8f93\u5165\u4e00\u4e2a\u6216\u591a\u4e2a\u641c\u7d22\u6761\u4ef6\u3002\u5220\u9664\u6761\u4ef6\u53ef\u5f97\u5230\u66f4\u591a\u641c\u7d22\u7ed3\u679c\u3002", "PleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002", "MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002", - "SearchResults": "Search Results", + "SearchResults": "\u641c\u7d22\u7ed3\u679c", "SyncToOtherDevice": "Sync to other device", "MakeAvailableOffline": "Make available offline", "ServerNameIsRestarting": "Emby Server - {0} is restarting.", @@ -297,39 +297,39 @@ "HeaderKeepRecording": "Keep Recording", "HeaderCancelSeries": "Cancel Series", "HeaderKeepSeries": "Keep Series", - "HeaderLearnMore": "Learn More", - "DeleteMedia": "Delete media", - "SeriesSettings": "Series settings", - "HeaderRecordingOptions": "Recording Options", - "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:", - "AllChannels": "All channels", - "LabelRecord": "Record:", - "NewEpisodesOnly": "New episodes only", - "AllEpisodes": "All episodes", + "HeaderLearnMore": "\u4e86\u89e3\u66f4\u591a", + "DeleteMedia": "\u5220\u9664\u5a92\u4f53", + "SeriesSettings": "\u7cfb\u5217\u8bbe\u5b9a", + "HeaderRecordingOptions": "\u5f55\u5236\u9009\u9879", + "CancelSeries": "\u53d6\u6d88\u7cfb\u5217", + "DoNotRecord": "\u4e0d\u5f55\u5236", + "HeaderSeriesOptions": "\u7cfb\u5217\u9009\u9879", + "LabelChannels": "\u9891\u9053\uff1a", + "ChannelNameOnly": "\u53ea\u5728\u9891\u9053 {0}", + "Anytime": "\u4efb\u4f55\u65f6\u95f4", + "AroundTime": "{0} \u5de6\u53f3", + "LabelAirtime": "\u64ad\u6620\u65f6\u95f4\uff1a", + "AllChannels": "\u6240\u6709\u9891\u9053", + "LabelRecord": "\u5f55\u5236\uff1a", + "NewEpisodesOnly": "\u53ea\u65b0\u96c6", + "AllEpisodes": "\u6240\u6709\u96c6", "LabelStartWhenPossible": "Start when possible:", "LabelStopWhenPossible": "Stop when possible:", - "MinutesBefore": "minutes before", - "MinutesAfter": "minutes after", - "SkipEpisodesAlreadyInMyLibrary": "Skip episodes that are already in my library", + "MinutesBefore": "\u5206\u949f\u524d", + "MinutesAfter": "\u5206\u949f\u540e", + "SkipEpisodesAlreadyInMyLibrary": "\u8df3\u8fc7\u5df2\u5728\u6211\u7684\u5a92\u4f53\u5e93\u7684\u96c6", "SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.", "LabelKeepUpTo": "Keep up to:", - "AsManyAsPossible": "As many as possible", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "LabelKeep:": "Keep:", - "UntilIDelete": "Until I delete", - "UntilSpaceNeeded": "Until space needed", - "Categories": "Categories", - "Sports": "Sports", - "News": "News", - "Movies": "Movies", - "Kids": "Kids", + "AsManyAsPossible": "\u5c3d\u53ef\u80fd\u591a", + "DefaultErrorMessage": "\u5904\u7406\u8bf7\u6c42\u65f6\u53d1\u751f\u9519\u8bef\u3002\u8bf7\u7a0d\u540e\u5c1d\u8bd5\u3002", + "LabelKeep:": "\u4fdd\u7559\uff1a", + "UntilIDelete": "\u76f4\u5230\u6211\u5220\u9664", + "UntilSpaceNeeded": "\u76f4\u5230\u9700\u8981\u7a7a\u95f4", + "Categories": "\u5206\u7c7b", + "Sports": "\u4f53\u80b2", + "News": "\u65b0\u95fb", + "Movies": "\u7535\u5f71", + "Kids": "\u513f\u7ae5", "EnableColorCodedBackgrounds": "Enable color coded backgrounds", "SortChannelsBy": "Sort channels by:", "RecentlyWatched": "Recently watched", @@ -337,18 +337,22 @@ "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", "HeaderTryPlayback": "Try Playback", - "HowDidYouPay": "How did you pay?", + "HowDidYouPay": "\u4f60\u60f3\u5982\u4f55\u4ed8\u6b3e\uff1f", "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", - "ButtonPlayOneMinute": "Play One Minute", + "IPurchasedThisApp": "\u6211\u5df2\u8d2d\u4e70\u6b64\u5e94\u7528", + "ButtonRestorePreviousPurchase": "\u6062\u590d\u8d2d\u4e70", + "ButtonUnlockWithPurchase": "\u8d2d\u4e70\u4ee5\u89e3\u9501", + "ButtonUnlockPrice": "\u89e3\u9501 {0}", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "\u5df2\u4ed8\u6b3e\uff1f", + "ButtonPlayOneMinute": "\u64ad\u653e\u4e00\u5206\u949f", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", - "HeaderUnlockFeature": "Unlock Feature", + "HeaderUnlockFeature": "\u89e3\u9501\u529f\u80fd", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderPlayMyMedia": "\u64ad\u653e\u6211\u7684\u5a92\u4f53", + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "\u4e00\u4e2a\u9891\u9053", + "ConfirmRemoveDownload": "\u5220\u9664\u4e0b\u8f7d\uff1f", + "AddedOnValue": "\u5df2\u6dfb\u52a0 {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json index 06bc5233af..26114844dc 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "\u5c1a\u672a\u64ad\u653e\u5287\u96c6\u5b63\u5ea6\uff1a", "LabelAirsAfterSeason": "\u5df2\u64ad\u653e\u5287\u96c6\u5b63\u5ea6\uff1a", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json index 9fd049f992..9e179b98f0 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json @@ -182,7 +182,7 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", - "HeaderExternalIds": "External Id's:", + "HeaderExternalIds": "External Ids:", "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", @@ -343,12 +343,16 @@ "ButtonRestorePreviousPurchase": "Restore Purchase", "ButtonUnlockWithPurchase": "Unlock with Purchase", "ButtonUnlockPrice": "Unlock {0}", - "ButtonAlreadyPaid": "Already Paid?", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderAlreadyPaid": "Already Paid?", "ButtonPlayOneMinute": "Play One Minute", "PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning", "HeaderUnlockFeature": "Unlock Feature", "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "HeaderPlayMyMedia": "Play my Media", - "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere" + "HeaderDiscoverEmbyPremiere": "Discover Emby Premiere", + "OneChannel": "One channel", + "ConfirmRemoveDownload": "Remove download?", + "AddedOnValue": "Added {0}" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css b/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css index 15ba578d53..30f366d343 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css +++ b/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.css @@ -1,3 +1,6 @@ .originalSubtitleFileLabel { margin-right: 1em; } +.btnSearchSubtitles { + flex-shrink: 0; +} \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html b/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html index 2a9fca002c..3abc6869a4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html +++ b/dashboard-ui/bower_components/emby-webcomponents/subtitleeditor/subtitleeditor.template.html @@ -15,7 +15,7 @@
- +
diff --git a/dashboard-ui/bower_components/emby-webcomponents/sync/sync.js b/dashboard-ui/bower_components/emby-webcomponents/sync/sync.js index 12f8dd93c4..0e58db602f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/sync/sync.js +++ b/dashboard-ui/bower_components/emby-webcomponents/sync/sync.js @@ -135,6 +135,8 @@ var selectQuality = form.querySelector('#selectQuality'); if (selectQuality) { job.Quality = selectQuality.value; + + appSettings.set('sync-lastquality', job.Quality || ''); } var selectProfile = form.querySelector('#selectProfile'); @@ -343,6 +345,9 @@ if (firstItem.Type === 'MusicGenre') { return true; } + if (firstItem.Type === 'Playlist' && firstItem.MediaType === 'Audio') { + return true; + } return false; } @@ -590,6 +595,15 @@ }).join(''); + var lastQuality = appSettings.get('sync-lastquality'); + if (lastQuality && options.QualityOptions.filter(function (i) { + + return i.Id === lastQuality; + + }).length) { + selectQuality.value = lastQuality; + } + selectQuality.dispatchEvent(new CustomEvent('change', { bubbles: true })); diff --git a/dashboard-ui/bower_components/emby-webcomponents/sync/synctoggle.js b/dashboard-ui/bower_components/emby-webcomponents/sync/synctoggle.js new file mode 100644 index 0000000000..3f209996bf --- /dev/null +++ b/dashboard-ui/bower_components/emby-webcomponents/sync/synctoggle.js @@ -0,0 +1,87 @@ +define(['itemHelper', 'globalize', 'apphost', 'connectionManager', 'events', 'emby-checkbox'], function (itemHelper, globalize, appHost, connectionManager, events) { + 'use strict'; + + function updateSyncStatus(container, item) { + + container.querySelector('.chkOffline').checked = item.SyncPercent != null; + } + + function syncToggle(options) { + + var self = this; + + self.options = options; + + function resetSyncStatus() { + updateSyncStatus(options.container, options.item); + } + + function onSyncLocalClick() { + + if (this.checked) { + require(['syncDialog'], function (syncDialog) { + syncDialog.showMenu({ + items: [options.item], + isLocalSync: true, + serverId: options.item.ServerId + + }).then(function () { + events.trigger(self, 'sync'); + }, resetSyncStatus); + }); + } else { + + require(['confirm'], function (confirm) { + + confirm(globalize.translate('sharedcomponents#ConfirmRemoveDownload')).then(function () { + connectionManager.getApiClient(options.item.ServerId).cancelSyncItems([options.item.Id]); + }, resetSyncStatus); + }); + } + } + + var container = options.container; + var user = options.user; + var item = options.item; + + var html = ''; + html += ''; + + if (itemHelper.canSync(user, item)) { + if (appHost.supports('sync')) { + container.classList.remove('hide'); + } else { + container.classList.add('hide'); + } + + container.innerHTML = html; + + container.querySelector('.chkOffline').addEventListener('change', onSyncLocalClick); + updateSyncStatus(container, item); + + } else { + container.classList.add('hide'); + } + } + + syncToggle.prototype.refresh = function(item) { + + this.options.item = item; + updateSyncStatus(this.options.container, item); + }; + + syncToggle.prototype.destroy = function () { + + var options = this.options; + + if (options) { + options.container.innerHTML = ''; + this.options = null; + } + }; + + return syncToggle; +}); \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/thememediaplayer.js b/dashboard-ui/bower_components/emby-webcomponents/thememediaplayer.js index 15b8b8203d..9dfd3d1c0e 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/thememediaplayer.js +++ b/dashboard-ui/bower_components/emby-webcomponents/thememediaplayer.js @@ -6,7 +6,11 @@ define(['playbackManager', 'userSettings'], function (playbackManager, userSetti function playThemeMedia(items, ownerId) { - if (items.length) { + var currentThemeItems = items.filter(function (i) { + return enabled(i.MediaType); + }); + + if (currentThemeItems.length) { // Stop if a theme song from another ownerId // Leave it alone if anything else (e.g user playing a movie) @@ -14,19 +18,17 @@ define(['playbackManager', 'userSettings'], function (playbackManager, userSetti return; } - currentThemeIds = items.map(function (i) { + currentThemeIds = currentThemeItems.map(function (i) { return i.Id; }); - currentOwnerId = ownerId; - - if (enabled(items[0].MediaType)) { - playbackManager.play({ - items: items, - fullscreen: false, - enableRemotePlayers: false - }); - } + playbackManager.play({ + items: currentThemeItems, + fullscreen: false, + enableRemotePlayers: false + }).then(function () { + currentOwnerId = ownerId; + }); } else { diff --git a/dashboard-ui/bower_components/emby-webcomponents/userdatabuttons/userdatabuttons.css b/dashboard-ui/bower_components/emby-webcomponents/userdatabuttons/userdatabuttons.css index 2c4f13bab5..0138631734 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/userdatabuttons/userdatabuttons.css +++ b/dashboard-ui/bower_components/emby-webcomponents/userdatabuttons/userdatabuttons.css @@ -1,7 +1,3 @@ -.btnUserData { - color: #aaa; -} - .btnUserDataOn { color: #cc3333 !important; } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/usersettings/usersettingsbuilder.js b/dashboard-ui/bower_components/emby-webcomponents/usersettings/usersettingsbuilder.js index 0ddcf0b78c..6d1338118d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/usersettings/usersettingsbuilder.js +++ b/dashboard-ui/bower_components/emby-webcomponents/usersettings/usersettingsbuilder.js @@ -7,9 +7,14 @@ define(['appSettings', 'events', 'browser'], function (appsettings, events, brow var currentUserId; var currentApiClient; var displayPrefs; + var saveTimeout; self.setUserInfo = function (userId, apiClient) { + if (saveTimeout) { + clearTimeout(saveTimeout); + } + currentUserId = userId; currentApiClient = apiClient; @@ -24,7 +29,6 @@ define(['appSettings', 'events', 'browser'], function (appsettings, events, brow }); }; - var saveTimeout; function onSaveTimeout() { saveTimeout = null; currentApiClient.updateDisplayPreferences('usersettings', displayPrefs, currentUserId, 'emby'); @@ -36,6 +40,14 @@ define(['appSettings', 'events', 'browser'], function (appsettings, events, brow saveTimeout = setTimeout(onSaveTimeout, 50); } + self.getData = function () { + return displayPrefs; + }; + + self.importFrom = function (instance) { + displayPrefs = instance.getData(); + }; + self.set = function (name, value, enableOnServer) { var userId = currentUserId; @@ -94,11 +106,7 @@ define(['appSettings', 'events', 'browser'], function (appsettings, events, brow val = self.get('enableThemeSongs', false); - if (val) { - return val !== 'false'; - } - - return true; + return val !== 'false'; }; self.enableThemeVideos = function (val) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/viewmanager/viewcontainer-lite.js b/dashboard-ui/bower_components/emby-webcomponents/viewmanager/viewcontainer-lite.js index b0fa957a4f..0fb1b57d81 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/viewmanager/viewcontainer-lite.js +++ b/dashboard-ui/bower_components/emby-webcomponents/viewmanager/viewcontainer-lite.js @@ -9,19 +9,12 @@ define(['browser', 'dom', 'css!./viewcontainer-lite'], function (browser, dom) { function enableAnimation() { - if (browser.animate) { - return true; - } - + // too slow if (browser.tv) { return false; } - if (browser.operaTv) { - return false; - } - - return browser.edge && !browser.mobile; + return browser.supportsCssAnimation(); } function loadView(options) { @@ -102,7 +95,7 @@ define(['browser', 'dom', 'css!./viewcontainer-lite'], function (browser, dom) { function animate(newAnimatedPage, oldAnimatedPage, transition, isBack) { - if (enableAnimation() && oldAnimatedPage && newAnimatedPage.animate) { + if (enableAnimation() && oldAnimatedPage) { if (transition === 'slide') { return slide(newAnimatedPage, oldAnimatedPage, transition, isBack); } else if (transition === 'fade') { @@ -123,7 +116,6 @@ define(['browser', 'dom', 'css!./viewcontainer-lite'], function (browser, dom) { if (oldAnimatedPage) { if (isBack) { - oldAnimatedPage.style.animation = 'view-slideright-r ' + duration + 'ms ease-out normal both'; setAnimation(oldAnimatedPage, 'view-slideright-r ' + duration + 'ms ease-out normal both'); } else { setAnimation(oldAnimatedPage, 'view-slideleft-r ' + duration + 'ms ease-out normal both'); @@ -141,13 +133,13 @@ define(['browser', 'dom', 'css!./viewcontainer-lite'], function (browser, dom) { currentAnimations = animations; var onAnimationComplete = function () { - dom.removeEventListener(newAnimatedPage, 'animationend', onAnimationComplete, { + dom.removeEventListener(newAnimatedPage, dom.whichAnimationEvent(), onAnimationComplete, { once: true }); resolve(); }; - dom.addEventListener(newAnimatedPage, 'animationend', onAnimationComplete, { + dom.addEventListener(newAnimatedPage, dom.whichAnimationEvent(), onAnimationComplete, { once: true }); }); @@ -171,13 +163,13 @@ define(['browser', 'dom', 'css!./viewcontainer-lite'], function (browser, dom) { currentAnimations = animations; var onAnimationComplete = function () { - dom.removeEventListener(newAnimatedPage, 'animationend', onAnimationComplete, { + dom.removeEventListener(newAnimatedPage, dom.whichAnimationEvent(), onAnimationComplete, { once: true }); resolve(); }; - dom.addEventListener(newAnimatedPage, 'animationend', onAnimationComplete, { + dom.addEventListener(newAnimatedPage, dom.whichAnimationEvent(), onAnimationComplete, { once: true }); }); @@ -262,10 +254,6 @@ define(['browser', 'dom', 'css!./viewcontainer-lite'], function (browser, dom) { selectedPageIndex = -1; } - if (enableAnimation()) { - require(['webAnimations']); - } - return { loadView: loadView, tryRestoreView: tryRestoreView, diff --git a/dashboard-ui/bower_components/emby-webcomponents/voice/grammarprocessor.js b/dashboard-ui/bower_components/emby-webcomponents/voice/grammarprocessor.js index 0b3747e86a..e966a5f768 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/voice/grammarprocessor.js +++ b/dashboard-ui/bower_components/emby-webcomponents/voice/grammarprocessor.js @@ -7,7 +7,8 @@ define([], function () { var NamedRegExp = function (pattern, string) { pattern = pattern.toString(); var regexp = []; - var groupRX = /\(\?\<(.*?)\>\s?(.*?)\)/i; + //var groupRX = /\(\?\<(.*?)\>\s?(.*?)\)/i; + var groupRX = /\(\?<(.*?)\>\s?(.*?)\)/i; while (groupRX.test(pattern)) { var match = groupRX.exec(pattern); diff --git a/dashboard-ui/bower_components/fetch/.bower.json b/dashboard-ui/bower_components/fetch/.bower.json index 36c9a6fdea..12a98d38b7 100644 --- a/dashboard-ui/bower_components/fetch/.bower.json +++ b/dashboard-ui/bower_components/fetch/.bower.json @@ -1,9 +1,6 @@ { "name": "fetch", "main": "fetch.js", - "devDependencies": { - "es6-promise": "1.0.0" - }, "ignore": [ ".*", "*.md", @@ -14,15 +11,14 @@ "test/" ], "homepage": "https://github.com/github/fetch", - "version": "1.0.0", - "_release": "1.0.0", + "version": "1.1.1", + "_release": "1.1.1", "_resolution": { "type": "version", - "tag": "v1.0.0", - "commit": "f054e7b5ce2bf7f86c8d7212c2de026800725b84" + "tag": "v1.1.1", + "commit": "f7a514829820fc77c0f884c74cf2d36356a781c0" }, "_source": "https://github.com/github/fetch.git", "_target": "^1.0.0", - "_originalSource": "fetch", - "_direct": true + "_originalSource": "fetch" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/fetch/bower.json b/dashboard-ui/bower_components/fetch/bower.json index 8966a30894..266f12dc85 100644 --- a/dashboard-ui/bower_components/fetch/bower.json +++ b/dashboard-ui/bower_components/fetch/bower.json @@ -1,9 +1,6 @@ { "name": "fetch", "main": "fetch.js", - "devDependencies": { - "es6-promise": "1.0.0" - }, "ignore": [ ".*", "*.md", diff --git a/dashboard-ui/bower_components/fetch/fetch.js b/dashboard-ui/bower_components/fetch/fetch.js index d0652dea62..bc5227be5a 100644 --- a/dashboard-ui/bower_components/fetch/fetch.js +++ b/dashboard-ui/bower_components/fetch/fetch.js @@ -20,6 +20,28 @@ arrayBuffer: 'ArrayBuffer' in self } + if (support.arrayBuffer) { + var viewClasses = [ + '[object Int8Array]', + '[object Uint8Array]', + '[object Uint8ClampedArray]', + '[object Int16Array]', + '[object Uint16Array]', + '[object Int32Array]', + '[object Uint32Array]', + '[object Float32Array]', + '[object Float64Array]' + ] + + var isDataView = function(obj) { + return obj && DataView.prototype.isPrototypeOf(obj) + } + + var isArrayBufferView = ArrayBuffer.isView || function(obj) { + return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1 + } + } + function normalizeName(name) { if (typeof name !== 'string') { name = String(name) @@ -152,14 +174,36 @@ function readBlobAsArrayBuffer(blob) { var reader = new FileReader() + var promise = fileReaderReady(reader) reader.readAsArrayBuffer(blob) - return fileReaderReady(reader) + return promise } function readBlobAsText(blob) { var reader = new FileReader() + var promise = fileReaderReady(reader) reader.readAsText(blob) - return fileReaderReady(reader) + return promise + } + + function readArrayBufferAsText(buf) { + var view = new Uint8Array(buf) + var chars = new Array(view.length) + + for (var i = 0; i < view.length; i++) { + chars[i] = String.fromCharCode(view[i]) + } + return chars.join('') + } + + function bufferClone(buf) { + if (buf.slice) { + return buf.slice(0) + } else { + var view = new Uint8Array(buf.byteLength) + view.set(new Uint8Array(buf)) + return view.buffer + } } function Body() { @@ -167,7 +211,9 @@ this._initBody = function(body) { this._bodyInit = body - if (typeof body === 'string') { + if (!body) { + this._bodyText = '' + } else if (typeof body === 'string') { this._bodyText = body } else if (support.blob && Blob.prototype.isPrototypeOf(body)) { this._bodyBlob = body @@ -175,11 +221,12 @@ this._bodyFormData = body } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) { this._bodyText = body.toString() - } else if (!body) { - this._bodyText = '' - } else if (support.arrayBuffer && ArrayBuffer.prototype.isPrototypeOf(body)) { - // Only support ArrayBuffers for POST method. - // Receiving ArrayBuffers happens via Blobs, instead. + } else if (support.arrayBuffer && support.blob && isDataView(body)) { + this._bodyArrayBuffer = bufferClone(body.buffer) + // IE 10-11 can't handle a DataView body. + this._bodyInit = new Blob([this._bodyArrayBuffer]) + } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) { + this._bodyArrayBuffer = bufferClone(body) } else { throw new Error('unsupported BodyInit type') } @@ -204,6 +251,8 @@ if (this._bodyBlob) { return Promise.resolve(this._bodyBlob) + } else if (this._bodyArrayBuffer) { + return Promise.resolve(new Blob([this._bodyArrayBuffer])) } else if (this._bodyFormData) { throw new Error('could not read FormData body as blob') } else { @@ -212,27 +261,28 @@ } this.arrayBuffer = function() { - return this.blob().then(readBlobAsArrayBuffer) - } - - this.text = function() { - var rejected = consumed(this) - if (rejected) { - return rejected - } - - if (this._bodyBlob) { - return readBlobAsText(this._bodyBlob) - } else if (this._bodyFormData) { - throw new Error('could not read FormData body as text') + if (this._bodyArrayBuffer) { + return consumed(this) || Promise.resolve(this._bodyArrayBuffer) } else { - return Promise.resolve(this._bodyText) + return this.blob().then(readBlobAsArrayBuffer) } } - } else { - this.text = function() { - var rejected = consumed(this) - return rejected ? rejected : Promise.resolve(this._bodyText) + } + + this.text = function() { + var rejected = consumed(this) + if (rejected) { + return rejected + } + + if (this._bodyBlob) { + return readBlobAsText(this._bodyBlob) + } else if (this._bodyArrayBuffer) { + return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer)) + } else if (this._bodyFormData) { + throw new Error('could not read FormData body as text') + } else { + return Promise.resolve(this._bodyText) } } @@ -260,7 +310,10 @@ function Request(input, options) { options = options || {} var body = options.body - if (Request.prototype.isPrototypeOf(input)) { + + if (typeof input === 'string') { + this.url = input + } else { if (input.bodyUsed) { throw new TypeError('Already read') } @@ -271,12 +324,10 @@ } this.method = input.method this.mode = input.mode - if (!body) { + if (!body && input._bodyInit != null) { body = input._bodyInit input.bodyUsed = true } - } else { - this.url = input } this.credentials = options.credentials || this.credentials || 'omit' @@ -294,7 +345,7 @@ } Request.prototype.clone = function() { - return new Request(this) + return new Request(this, { body: this._bodyInit }) } function decode(body) { @@ -310,16 +361,17 @@ return form } - function headers(xhr) { - var head = new Headers() - var pairs = (xhr.getAllResponseHeaders() || '').trim().split('\n') - pairs.forEach(function(header) { - var split = header.trim().split(':') - var key = split.shift().trim() - var value = split.join(':').trim() - head.append(key, value) + function parseHeaders(rawHeaders) { + var headers = new Headers() + rawHeaders.split('\r\n').forEach(function(line) { + var parts = line.split(':') + var key = parts.shift().trim() + if (key) { + var value = parts.join(':').trim() + headers.append(key, value) + } }) - return head + return headers } Body.call(Request.prototype) @@ -330,10 +382,10 @@ } this.type = 'default' - this.status = options.status + this.status = 'status' in options ? options.status : 200 this.ok = this.status >= 200 && this.status < 300 - this.statusText = options.statusText - this.headers = options.headers instanceof Headers ? options.headers : new Headers(options.headers) + this.statusText = 'statusText' in options ? options.statusText : 'OK' + this.headers = new Headers(options.headers) this.url = options.url || '' this._initBody(bodyInit) } @@ -371,35 +423,16 @@ self.fetch = function(input, init) { return new Promise(function(resolve, reject) { - var request - if (Request.prototype.isPrototypeOf(input) && !init) { - request = input - } else { - request = new Request(input, init) - } - + var request = new Request(input, init) var xhr = new XMLHttpRequest() - function responseURL() { - if ('responseURL' in xhr) { - return xhr.responseURL - } - - // Avoid security warnings on getResponseHeader when not allowed by CORS - if (/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())) { - return xhr.getResponseHeader('X-Request-URL') - } - - return - } - xhr.onload = function() { var options = { status: xhr.status, statusText: xhr.statusText, - headers: headers(xhr), - url: responseURL() + headers: parseHeaders(xhr.getAllResponseHeaders() || '') } + options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL') var body = 'response' in xhr ? xhr.response : xhr.responseText resolve(new Response(body, options)) } diff --git a/dashboard-ui/bower_components/hlsjs/.bower.json b/dashboard-ui/bower_components/hlsjs/.bower.json index 1ae2b20855..dc2fb68274 100644 --- a/dashboard-ui/bower_components/hlsjs/.bower.json +++ b/dashboard-ui/bower_components/hlsjs/.bower.json @@ -1,6 +1,6 @@ { "name": "hls.js", - "version": "0.5.51", + "version": "0.6.14", "license": "Apache-2.0", "description": "Media Source Extension - HLS library, by/for Dailymotion", "homepage": "https://github.com/dailymotion/hls.js", @@ -16,13 +16,13 @@ "test", "tests" ], - "_release": "0.5.51", + "_release": "0.6.14", "_resolution": { "type": "version", - "tag": "v0.5.51", - "commit": "af58679e28308b28a51402a241474c8c60134529" + "tag": "v0.6.14", + "commit": "0e12670c875f4e3235b02ccc7455abb923333eb2" }, - "_source": "git://github.com/dailymotion/hls.js.git", - "_target": "~0.5.7", - "_originalSource": "dailymotion/hls.js" + "_source": "https://github.com/dailymotion/hls.js.git", + "_target": "^0.6.11", + "_originalSource": "hls.js" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/hlsjs/API.md b/dashboard-ui/bower_components/hlsjs/API.md index 0065eb774f..9803226b93 100644 --- a/dashboard-ui/bower_components/hlsjs/API.md +++ b/dashboard-ui/bower_components/hlsjs/API.md @@ -1,73 +1,79 @@ -##Hello hls.js ! +## Hello hls.js! -###first step : setup and support -first include ```dist/hls.{min}.js``` in your web page and check whether your browser is supporting [MediaSource Extensions][]. -[MediaSource Extensions]: http://w3c.github.io/media-source/ -just invoke the following static method : ```Hls.isSupported()``` +### First step: setup and support -```js - - +First include `https://cdn.jsdelivr.net/hls.js/latest/hls.min.js` (or `/hls.js` for unminified) in your web page. + +```html + ``` -###second step: instanciate hls object and bind it to```

+

${GuideProviderLogin} -

+
-
+
- +
- +
@@ -29,13 +29,13 @@

-
-
+
+

2 -

-
+ +

${GuideProviderSelectListings} -

+
@@ -44,7 +44,7 @@
- +
diff --git a/dashboard-ui/components/tvproviders/xmltv.js b/dashboard-ui/components/tvproviders/xmltv.js index 6684928ae3..aba03764ef 100644 --- a/dashboard-ui/components/tvproviders/xmltv.js +++ b/dashboard-ui/components/tvproviders/xmltv.js @@ -1,4 +1,5 @@ define(['jQuery', 'registrationServices', 'emby-checkbox', 'emby-input', 'listViewStyle', 'paper-icon-button-light'], function ($, registrationServices) { + 'use strict'; return function (page, providerId, options) { @@ -34,6 +35,7 @@ page.querySelector('.txtNews').value = (info.NewsCategories || []).join('|'); page.querySelector('.txtSports').value = (info.SportsCategories || []).join('|'); page.querySelector('.txtMovies').value = (info.MovieCategories || []).join('|'); + page.querySelector('.txtMoviePrefix').value = info.MoviePrefix || ''; page.querySelector('.chkAllTuners').checked = info.EnableAllTuners; @@ -72,6 +74,8 @@ info.Path = page.querySelector('.txtPath').value; + info.MoviePrefix = page.querySelector('.txtMoviePrefix').value || null; + info.MovieCategories = getCategories(page.querySelector('.txtMovies')); info.KidsCategories = getCategories(page.querySelector('.txtKids')); info.NewsCategories = getCategories(page.querySelector('.txtNews')); @@ -103,7 +107,7 @@ }, function () { Dashboard.hideLoadingMsg(); Dashboard.alert({ - message: Globalize.translate('ErrorAddingListingsToSchedulesDirect') + message: Globalize.translate('ErrorAddingXmlTvFile') }); }); @@ -137,7 +141,7 @@ html += '
'; - var enabledTuners = providerInfo.EnableAllTuners || []; + var enabledTuners = providerInfo.EnabledTuners || []; var isChecked = providerInfo.EnableAllTuners || enabledTuners.indexOf(device.Id) != -1; var checkedAttribute = isChecked ? ' checked' : ''; html += ''; diff --git a/dashboard-ui/components/tvproviders/xmltv.template.html b/dashboard-ui/components/tvproviders/xmltv.template.html index f18aa65b9e..ab9003d61a 100644 --- a/dashboard-ui/components/tvproviders/xmltv.template.html +++ b/dashboard-ui/components/tvproviders/xmltv.template.html @@ -15,6 +15,10 @@
${XmlTvMovieCategoriesHelp}
+
+ +
${LabelMoviePrefixHelp}
+
${XmlTvKidsCategoriesHelp}
diff --git a/dashboard-ui/components/viewcontainer-lite.js b/dashboard-ui/components/viewcontainer-lite.js index 2f902a47ef..bd8b593a41 100644 --- a/dashboard-ui/components/viewcontainer-lite.js +++ b/dashboard-ui/components/viewcontainer-lite.js @@ -1,4 +1,5 @@ define(['browser'], function (browser) { + 'use strict'; var mainAnimatedPages = document.querySelector('.mainAnimatedPages'); var allPages = []; diff --git a/dashboard-ui/css/dashboard.css b/dashboard-ui/css/dashboard.css index 5f3c801d6c..272f9abb9f 100644 --- a/dashboard-ui/css/dashboard.css +++ b/dashboard-ui/css/dashboard.css @@ -250,48 +250,6 @@ div[data-role="controlgroup"] a.ui-btn-active { color: #fff !important; } -a[data-role='button'], .type-interior button:not([data-role='none']):not(.clearButton):not([is]) { - -webkit-font-smoothing: antialiased; - -webkit-user-select: none; - background-clip: padding-box; - border-radius: .3125em; - border: 1px solid #ddd !important; - color: rgb(51, 51, 51) !important; - cursor: pointer !important; - font-family: inherit !important; - font-size: inherit !important; - font-weight: 500 !important; - margin: 0 .25em !important; - display: inline-block; - padding: .8em 1em; - text-align: center; - text-decoration: none !important; - background: #f6f6f6 !important; - font-size: 16px; - -webkit-box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/; - -moz-box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/; - box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/; -} - - a[data-role='button'][data-iconpos='notext'], .type-interior button[data-iconpos='notext']:not([data-role='none']):not(.clearButton):not([is]) { - padding: 4px; - border-radius: 50px; - outline: 0; - } - - a[data-role='button']:not([data-inline='true']), .type-interior button:not([data-role='none']):not([data-inline='true']):not(.clearButton):not([is]) { - display: block; - margin: .5em 0 !important; - } - -.type-interior button:not([data-role='none']):not([data-inline='true']):not(.clearButton):not([is]) { - width: 100%; -} - -.type-interior h2 { - color: #1B58B8; -} - .header .imageLink { display: inline-block; } @@ -658,3 +616,26 @@ a[data-role='button'], .type-interior button:not([data-role='none']):not(.clearB .supporterMembershipDisabled .tabSupporterMembership { display: none; } + +a[data-role='button'] { + -webkit-font-smoothing: antialiased; + -webkit-user-select: none; + background-clip: padding-box; + border-radius: .3125em; + border: 1px solid #ddd !important; + color: rgb(51, 51, 51) !important; + cursor: pointer !important; + font-family: inherit !important; + font-size: inherit !important; + font-weight: 500 !important; + margin: 0 .25em !important; + display: inline-block; + padding: .8em 1em; + text-align: center; + text-decoration: none !important; + background: #f6f6f6 !important; + font-size: 16px; + -webkit-box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/; + -moz-box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/; + box-shadow: 0 1px 3px /*{global-box-shadow-size}*/ rgba(0,0,0,.15) /*{global-box-shadow-color}*/; +} diff --git a/dashboard-ui/css/librarybrowser.css b/dashboard-ui/css/librarybrowser.css index 30107fa680..9dfea448d7 100644 --- a/dashboard-ui/css/librarybrowser.css +++ b/dashboard-ui/css/librarybrowser.css @@ -12,7 +12,8 @@ } .background-theme-b .backgroundContainer.withBackdrop { - background-color: rgba(6, 6,6, .9); + background-color: rgba(6, 6, 6, .94) !important; + background: linear-gradient(to right, rgba(0, 0, 0, .99), rgba(0, 0, 0, .92), rgba(0, 0, 0, .5)) !important; } .ui-body-b { @@ -33,6 +34,14 @@ z-index: -1; } +.backdropImage { + /*-webkit-filter: blur(20px); + -moz-filter: blur(20px); + -o-filter: blur(20px); + -ms-filter: blur(20px); + filter: blur(20px);*/ +} + .libraryPage .header { padding-bottom: 0; } @@ -41,10 +50,14 @@ contain: style; } -.pageWithAbsoluteTabs .pageTabContent, .libraryPage > .ui-content { +.libraryPage > .ui-content { padding-top: 10px; } +.pageWithAbsoluteTabs .pageTabContent { + padding-top: 2.6em; +} + /*.pageWithAbsoluteTabs .pageTabContent { padding-left: .5em !important; padding-right: .5em !important; @@ -85,13 +98,9 @@ } .homePageSection { - margin-top: 20px; + margin-bottom: 3.6em; } - .homePageSection + .homePageSection { - margin-top: 30px; - } - .sectionHeaderButton { vertical-align: middle; margin: 0 0 .25em 1.5em; @@ -103,13 +112,6 @@ margin-bottom: 2em; } -@media all and (max-width: 800px) { - - .hiddenSectionOnMobile { - display: none; - } -} - @media all and (min-width: 800px) { .hiddenSectionOnNonMobile { @@ -136,12 +138,12 @@ } .homePageSection h1 { - padding-left: 2vw; + padding-left: .55em; } .homePageSection .itemsContainer { - padding-left: 1vw; - padding-right: 1vw; + padding-left: .7em; + padding-right: .7em; } @media all and (min-width: 1200px) { @@ -157,8 +159,6 @@ } .detailPageContent { - margin: 0 auto; - padding: 0; border-spacing: 0; border-collapse: collapse; } @@ -170,7 +170,6 @@ .listPaging { text-align: center; - margin: .5em 0 .5em; } .viewControls + .listTopPaging { @@ -199,7 +198,7 @@ .itemTag { display: inline-block; - background-color: #181818; + background-color: #333; border-radius: 4px; padding: 5px 7px; margin: 0 5px 5px 0; @@ -251,22 +250,17 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { background-size: cover; background-position: center 15%; background-repeat: no-repeat; - height: 640px; + height: 50vh; position: relative; } -.smallBackdrop { - height: 500px; -} - .noSecondaryNavPage .itemBackdrop { margin-top: -50px; } .noBackdrop { - height: 170px; background: #181818; - margin-top: 0 !important; + height: 170px !important; } .withBackdrop + .mainDrawerPanel .noBackdrop { @@ -286,40 +280,106 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { background-color: transparent; } -.detailNameContainer { - margin-top: -120px; - height: 110px; -} - .desktopMiscInfoContainer { position: absolute; bottom: 10px; } -.lnkSibling { - position: absolute; - bottom: 0; - text-decoration: none; - font-weight: normal !important; - display: none; - background-color: rgba(0,0,0,0.6); - color: #ddd !important; - background-color: transparent; - padding: 0; +.detailUserDataIcons { + margin-left: .5em; + white-space: nowrap; } - .lnkSibling:not(.hide) { - display: block; +.detailImageContainer { + margin-right: 2em; + width: 280px; + flex-shrink: 0; +} + +.detailPagePrimaryContent { + position: relative; + flex-grow: 1; +} + +.detailLogo { + width: 300px; + height: 70px; + position: absolute; + top: 10%; + right: 20%; + background-repeat: no-repeat; + background-position: center center; + background-size: contain; +} + +@media all and (max-width: 1400px) { + + .detailLogo { + right: 5%; + } +} + +@media all and (max-width: 1200px) { + + .detailLogo { + display: none; + } +} + +.itemDetailImage { + border: solid 1px transparent; + width: 100%; +} + +.thumbDetailImageContainer { + width: 400px; +} + +.itemDetailImage.loaded { + -moz-box-shadow: 0px 0 20px #000; + -webkit-box-shadow: 0px 0 20px #000; + box-shadow: 0px 0 20px #000; + border: solid 1px #222; +} + +.itemDetailGalleryLink img:hover { + -moz-box-shadow: 0 0 20px 3px #52B54B; + -webkit-box-shadow: 0 0 20px 3px #52B54B; + box-shadow: 0 0 20px 3px #52B54B; +} + +@media all and (max-width: 800px) { + + .detailPageContent { + position: relative; } -.detailUserDataIcons { - display: inline-block; + .detailImageContainer { + position: absolute; + top: -90px; + left: 5%; + width: auto; + } + + .itemDetailImage { + height: 120px; + width: auto !important; + } + + .btnPlaySimple { + display: none !important; + } } -@media all and (min-width: 540px) { +@media all and (min-width: 800px) { - .detailUserDataIcons { - margin-left: .5em; + .itemBackdrop { + display: none; + } + + .detailPagePrimaryContainer { + display: flex; + margin-bottom: 3.6em; } } @@ -330,64 +390,6 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { } } -.lnkPreviousItem { - left: 10px; -} - -.lnkNextItem { - right: 10px; -} - -.detailImageContainer { - float: left; - margin-top: -140px; -} - -.itemDetailImage { - border: solid 1px transparent; -} - - .itemDetailImage.loaded { - -moz-box-shadow: 0px 0 20px #000; - -webkit-box-shadow: 0px 0 20px #000; - box-shadow: 0px 0 20px #000; - border: solid 1px #222; - } - -.detailImageContainer img { - width: 280px; - /* This is just to make sure it always takes up some space */ - min-height: 140px; -} - -.portraitDetailImageContainer img { - width: 220px; -} - -.squareDetailImageContainer { - margin-top: -150px; -} - -.thumbDetailImageContainer { - margin-top: -130px; -} - -.itemDetailGalleryLink img:hover { - -moz-box-shadow: 0 0 20px 3px #52B54B; - -webkit-box-shadow: 0 0 20px 3px #52B54B; - box-shadow: 0 0 20px 3px #52B54B; -} - -.primaryDetailsContainer { - float: left; - padding: .75em 0 0 1.5em; - width: 66%; -} - -.portraitDetailImageContainer + .primaryDetailsContainer { - width: 74%; -} - .parentName { display: block; margin-bottom: .5em; @@ -396,87 +398,28 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { .emby-button.detailFloatingButton { width: 56px !important; height: 56px !important; - top: -28px; + bottom: -28px; position: absolute; - right: 25%; + right: 5%; background-color: #52B54B !important; + z-index: 1; } .emby-button.btnFloatingRecord { background-color: #cc3333 !important; } -@media all and (max-width: 1000px) { - - .primaryDetailsContainer { - width: 64%; - } - - .portraitDetailImageContainer + .primaryDetailsContainer { - width: 72%; - } - - .detailImageContainer img { - width: 240px; - /* This is just to make sure it always takes up some space */ - min-height: 120px; - } - - .portraitDetailImageContainer img { - width: 180px; - } -} - @media all and (max-width: 800px) { .parentName { margin-bottom: 1em; } - .primaryDetailsContainer { - padding-top: 2.5em; - padding-left: 1em; - } - - .detailNameContainer { - margin-top: auto; - height: auto; - } - .itemBackdropContent { min-height: 0; } } -@media all and (max-width: 600px) { - - .detailFloatingButton { - right: 15px !important; - } -} - -@media all and (max-width: 600px) { - - .primaryDetailsContainer { - width: 68%; - } - - .portraitDetailImageContainer + .primaryDetailsContainer { - width: 68%; - } -} - -@media all and (max-width: 400px) { - - .primaryDetailsContainer { - width: 60%; - } - - .portraitDetailImageContainer + .primaryDetailsContainer { - width: 60%; - } -} - @media all and (min-width: 500px) { .mobileDetails { @@ -541,6 +484,28 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { margin-left: 1em; } +.mainDetailButtons { + padding: 1em 0; + display: flex; + align-items: center; +} + + .mainDetailButtons button, .recordingFields button { + margin-left: 0; + margin-right: .5em; + } + + .mainDetailButtons.hide + .recordingFields { + margin-top: 1.5em !important; + } + +@media all and (min-width: 800px) { + + .mainDetailButtons, .recordingFields button { + font-size: 110%; + } +} + .detailImageProgressContainer { position: absolute; bottom: 4px; @@ -553,149 +518,11 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { display: inline-block; } -@media all and (min-width: 600px) { - .inlineDetailSection:not(.hide) { - display: inline-block; - margin-bottom: 2em; - } -} - -@media all and (max-height: 900px), (max-width: 800px) { - - .itemBackdrop:not(.noBackdrop) { - height: 500px; - } - - .smallBackdrop:not(.noBackdrop) { - height: 300px; - } -} - -@media all and (max-height: 800px), (max-width: 700px) { - - .itemBackdrop:not(.noBackdrop) { - height: 450px; - } - - .smallBackdrop:not(.noBackdrop) { - height: 300px; - } -} - -@media all and (max-height: 700px) { - - .itemBackdrop:not(.noBackdrop) { - height: 350px; - } - - .smallBackdrop:not(.noBackdrop) { - height: 300px; - } -} - -@media all and (max-width: 540px) { - - .itemBackdrop:not(.noBackdrop) { - height: 290px; - } - - .smallBackdrop:not(.noBackdrop) { - height: 200px; - } -} - -@media all and (max-height: 540px) { - - .itemBackdrop:not(.noBackdrop) { - height: 250px; - } - - .smallBackdrop:not(.noBackdrop) { - height: 200px; - } -} - -@media all and (max-height: 460px) { - - .itemBackdrop:not(.noBackdrop) { - height: 200px; - } - - .smallBackdrop:not(.noBackdrop) { - height: 120px; - } -} - -@media all and (max-height: 300px) { - - .itemBackdrop:not(.noBackdrop) { - height: 150px; - } - - .smallBackdrop:not(.noBackdrop) { - height: 120px; - } -} - -@media all and (max-height: 250px) { - - .itemBackdrop:not(.noBackdrop) { - height: 120px; - } -} - -@media all and (max-width: 1000px) { - - .detailImageContainer { - padding-left: 15px; - } -} - @media all and (max-width: 800px) { .editorMenuLink { display: none; } - - .noBackdrop { - height: 80px; - } - - .detailImageContainer { - margin-top: -55px; - } - - .squareDetailImageContainer { - margin-top: -40px; - } - - .thumbDetailImageContainer { - margin-top: -80px; - } - - .portraitDetailImageContainer + .primaryDetailsContainer { - width: 70%; - } - - .detailImageContainer img { - width: 140px; - /* This is just to make sure it always takes up some space */ - min-height: 140px; - } - - .primaryDetailPageContent p { - margin: 1em 0 !important; - } - - .backdropDetailPageContent { - text-align: center; - } - - .thumbDetailImageContainer img { - width: 180px; - /* This is just to make sure it always takes up some space */ - min-height: 60px; - } } .itemMiscInfo { @@ -706,27 +533,8 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { align-items: center; } -@media all and (max-width: 600px) { - - .portraitDetailImageContainer + .primaryDetailsContainer { - width: 65%; - } -} - @media all and (max-width: 500px) { - .detailImageContainer img { - width: 80px; - /* This is just to make sure it always takes up some space */ - min-height: 60px; - } - - .thumbDetailImageContainer img { - width: 180px; - /* This is just to make sure it always takes up some space */ - min-height: 60px; - } - .mobileDetails .itemMiscInfo { text-align: center; justify-content: center; @@ -737,14 +545,24 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { } } +.detailPageContent { + padding: 3em 3% 0; +} + @media all and (min-width: 750px) { .detailPageContent { - max-width: 950px; + padding: 3em 3% 0; + } +} + +@media all and (min-width: 1200px) { + .detailPageContent { + padding: 3em 5% 0; } } .detailPageParentLink { - text-decoration: none; + font-weight: inherit !important; } .mediaInfoContent { @@ -837,14 +655,14 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { right: 20px; } -@media all and (max-height: 480px) { +@media all and (max-height: 500px) { .alphabetPicker { display: none !important; } } -@media all and (min-height: 480px) { +@media all and (min-height: 500px) { .itemsContainerWithAlphaPicker { margin-right: 20px; @@ -932,10 +750,10 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { } } -@media all and (max-width: 1000px) { +@media all and (max-width: 800px) { - .smallDetailImageContainer { - padding-left: 1em; + .detailsHiddenOnMobile { + display: none; } } @@ -952,26 +770,6 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { margin: 0 4px 0 0; } - -@media all and (min-width: 1000px) { - - .itemDetailPage .portraitCard-scalable { - width: 20% !important; - } - - .itemDetailPage .squareCard-scalable { - width: 25% !important; - } - - .itemDetailPage .backdropCard-scalable, .itemDetailPage .smallBackdropCard-scalable { - width: 33.3333333333333333% !important; - } - - .itemDetailPage .personCard.portraitCard { - width: 16.666666666666666666666666666667% !important; - } -} - .btnSyncComplete { background: #673AB7 !important; } @@ -979,3 +777,32 @@ span.itemCommunityRating:not(:empty) + .userDataIcons { .btnSyncComplete i { border-radius: 1000px; } + +.bulletSeparator { + margin: 0 .35em; +} + +.mediaInfoIcons { + display: flex; + align-items: center; + margin: 1.5em 0 1em; + flex-wrap: wrap; +} + +.mediaInfoText { + background: rgba(31,31,31,.7); + padding: .25em .5em; + border-radius: .25em; + color: #ddd; + margin-right: .5em; + margin-bottom: .5em; + font-size: 94%; + background: rgba(170,170,190, .2); + display: flex; + align-items: center; + white-space: nowrap; +} + +.mediaInfoText-upper { + text-transform: uppercase; +} diff --git a/dashboard-ui/css/librarymenu.css b/dashboard-ui/css/librarymenu.css index 4f35057bfa..98bacaa3c3 100644 --- a/dashboard-ui/css/librarymenu.css +++ b/dashboard-ui/css/librarymenu.css @@ -73,25 +73,20 @@ .libraryMenuButtonText { text-decoration: none; - font-weight: 400 !important; display: inline-flex; vertical-align: middle; padding-left: 0 !important; cursor: default; - position: relative; - top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; align-items: center; - margin-left: .75em; - font-size: 108%; + margin: 0 0 0 .5em; /* Avoid pushing right header off the screen */ flex-shrink: 1; } .viewMenuBar { - font-weight: bold; position: fixed; right: 0; left: 0; @@ -101,7 +96,6 @@ height: 50px; display: flex; flex-direction: column; - font-size: 13px; } .hiddenViewMenuBar .viewMenuBar { @@ -120,9 +114,6 @@ text-align: center; margin: 0 auto; align-items: center; -} - -.emby-tabs { font-size: 13px; } @@ -238,14 +229,8 @@ body:not(.dashboardDocument) .btnNotifications { margin-left: 1.6em; } -i.sidebarLinkIcon { - font-size: 114%; - height: auto; - width: auto; -} - .darkDrawer i.sidebarLinkIcon { - margin-left: 1.7em; + margin-left: 1.9em; } .darkDrawer .sidebarLinkText, .darkDrawer .sidebarLink { diff --git a/dashboard-ui/css/mediaplayer-video.css b/dashboard-ui/css/mediaplayer-video.css index 39c44be1a5..9ee41ac5b9 100644 --- a/dashboard-ui/css/mediaplayer-video.css +++ b/dashboard-ui/css/mediaplayer-video.css @@ -143,7 +143,6 @@ .nowPlayingTabButton { display: inline-block; - font-size: 18px; text-transform: uppercase; color: #ddd !important; font-weight: 400 !important; @@ -184,10 +183,6 @@ color: #eee; } -.videoNowPlayingName { - font-size: 18px; -} - .videoNowPlayingOverview, .videoNowPlayingRating { margin: 1em 0; display: flex; diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index e52d11dc67..86b203602c 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -36,7 +36,7 @@ html { padding: 0; height: 100%; font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", 'Open Sans', sans-serif; - font-size: 14px; + font-size: 88%; } h1 { @@ -82,25 +82,22 @@ body { overflow-y: hidden !important; } -.textlink { - text-decoration: none; -} - h1, h2, h3 { margin-top: 1em; } - h1, h1 a { - font-weight: 300 !important; - font-size: 24px; - } +h1 { + font-weight: normal !important; + opacity: .7; + font-size: 1.72em; +} h2 { - font-weight: 400; + font-weight: normal; } h3 { - font-weight: 400; + font-weight: normal; } a, a:active, a:hover { @@ -123,7 +120,11 @@ h1 a:hover { background-color: #fff; } -.ui-body-a select, .ui-body-a [is="emby-input"], .ui-body-a [is="emby-textarea"] { +.ui-body-a [is="emby-select"] { + border-color: #ccc !important; +} + +.ui-body-a [is="emby-input"], .ui-body-a [is="emby-textarea"] { background: none; border-color: #ccc !important; } @@ -198,13 +199,6 @@ div[data-role='page'] { white-space: normal !important; } -.warningFieldDescription { - padding: 5px; - border: 1px solid #f4c63f; - background: #fff3a5; - border-radius: 5px; -} - .fieldDescription + .fieldDescription { margin-top: 5px; } @@ -229,6 +223,7 @@ div[data-role='page'] { color: #111 !important; font-weight: 500 !important; vertical-align: middle; + font-size: 110%; } .sidebarLink:hover { @@ -349,15 +344,6 @@ div[data-role='page'] { color: #bbb; } -.ui-body-a select { - background: none; - border-color: #757575; -} - - .ui-body-a select option { - color: #000; - } - .ui-body-a .emby-collapsible-button { border-color: #ddd; } diff --git a/dashboard-ui/dashboard.html b/dashboard-ui/dashboard.html index 03d3bf9bf8..96814ee035 100644 --- a/dashboard-ui/dashboard.html +++ b/dashboard-ui/dashboard.html @@ -7,7 +7,7 @@ diff --git a/dashboard-ui/dashboard/aboutpage.js b/dashboard-ui/dashboard/aboutpage.js index 75a06f5e09..5f97d9149b 100644 --- a/dashboard-ui/dashboard/aboutpage.js +++ b/dashboard-ui/dashboard/aboutpage.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; return function (view, params) { diff --git a/dashboard-ui/dashboard/autoorganizelog.js b/dashboard-ui/dashboard/autoorganizelog.js index c1a1149cc7..ef400919c3 100644 --- a/dashboard-ui/dashboard/autoorganizelog.js +++ b/dashboard-ui/dashboard/autoorganizelog.js @@ -1,4 +1,5 @@ define(['serverNotifications', 'events', 'scripts/taskbutton', 'datetime', 'paper-icon-button-light'], function (serverNotifications, events, taskButton, datetime) { + 'use strict'; var query = { @@ -375,6 +376,7 @@ clearButton.addEventListener('click', function () { ApiClient.clearOrganizationLog().then(function () { + query.StartIndex = 0; reloadItems(view, true); }, Dashboard.processErrorResponse); }); diff --git a/dashboard-ui/dashboard/autoorganizesmart.js b/dashboard-ui/dashboard/autoorganizesmart.js index 5a411c2210..5c0d760e92 100644 --- a/dashboard-ui/dashboard/autoorganizesmart.js +++ b/dashboard-ui/dashboard/autoorganizesmart.js @@ -1,4 +1,5 @@ define(['listViewStyle'], function () { + 'use strict'; var query = { diff --git a/dashboard-ui/dashboard/autoorganizetv.js b/dashboard-ui/dashboard/autoorganizetv.js index 5de37b48b1..54d24c2b52 100644 --- a/dashboard-ui/dashboard/autoorganizetv.js +++ b/dashboard-ui/dashboard/autoorganizetv.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; function getEpisodeFileName(value, enableMultiEpisode) { diff --git a/dashboard-ui/dashboard/cinemamodeconfiguration.js b/dashboard-ui/dashboard/cinemamodeconfiguration.js index 696a5b0ee8..af7db3f802 100644 --- a/dashboard-ui/dashboard/cinemamodeconfiguration.js +++ b/dashboard-ui/dashboard/cinemamodeconfiguration.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; function loadPage(page, config) { diff --git a/dashboard-ui/dashboard/dashboardgeneral.js b/dashboard-ui/dashboard/dashboardgeneral.js index e59584d872..c3e6c26407 100644 --- a/dashboard-ui/dashboard/dashboardgeneral.js +++ b/dashboard-ui/dashboard/dashboardgeneral.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked', 'emby-checkbox', 'emby-collapse', 'emby-textarea', 'emby-input', 'emby-select'], function ($) { + 'use strict'; var brandingConfigKey = "branding"; var currentBrandingOptions; diff --git a/dashboard-ui/dashboard/dashboardhosting.js b/dashboard-ui/dashboard/dashboardhosting.js index 2dce166c73..cebbc67eae 100644 --- a/dashboard-ui/dashboard/dashboardhosting.js +++ b/dashboard-ui/dashboard/dashboardhosting.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked', 'emby-checkbox'], function ($) { + 'use strict'; function onSubmit() { var form = this; diff --git a/dashboard-ui/dashboard/devicesupload.js b/dashboard-ui/dashboard/devicesupload.js index 1d3ebb2e5d..281582dd05 100644 --- a/dashboard-ui/dashboard/devicesupload.js +++ b/dashboard-ui/dashboard/devicesupload.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; function load(page, config) { diff --git a/dashboard-ui/dashboard/librarydisplay.js b/dashboard-ui/dashboard/librarydisplay.js index 7d3e758640..b95d0c9281 100644 --- a/dashboard-ui/dashboard/librarydisplay.js +++ b/dashboard-ui/dashboard/librarydisplay.js @@ -1,4 +1,5 @@ define(['globalize', 'emby-checkbox', 'emby-button'], function (globalize) { + 'use strict'; function getTabs() { return [ @@ -10,10 +11,6 @@ href: 'librarydisplay.html', name: globalize.translate('TabDisplay') }, - { - href: 'librarypathmapping.html', - name: globalize.translate('TabPathSubstitution') - }, { href: 'librarysettings.html', name: globalize.translate('TabAdvanced') diff --git a/dashboard-ui/dashboard/librarysettings.js b/dashboard-ui/dashboard/librarysettings.js index d1d449f7b9..59ddd6fd63 100644 --- a/dashboard-ui/dashboard/librarysettings.js +++ b/dashboard-ui/dashboard/librarysettings.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked', 'emby-checkbox'], function ($) { + 'use strict'; function loadPage(page, config) { @@ -15,14 +16,6 @@ $('#txtMetadataPath', page).val(config.MetadataPath || ''); $('#txtMetadataNetworkPath', page).val(config.MetadataNetworkPath || ''); - $('#chkPeopleActors', page).checked(config.PeopleMetadataOptions.DownloadActorMetadata); - $('#chkPeopleComposers', page).checked(config.PeopleMetadataOptions.DownloadComposerMetadata); - $('#chkPeopleDirectors', page).checked(config.PeopleMetadataOptions.DownloadDirectorMetadata); - $('#chkPeopleProducers', page).checked(config.PeopleMetadataOptions.DownloadProducerMetadata); - $('#chkPeopleWriters', page).checked(config.PeopleMetadataOptions.DownloadWriterMetadata); - $('#chkPeopleOthers', page).checked(config.PeopleMetadataOptions.DownloadOtherPeopleMetadata); - $('#chkPeopleGuestStars', page).checked(config.PeopleMetadataOptions.DownloadGuestStarMetadata); - Dashboard.hideLoadingMsg(); } @@ -74,14 +67,6 @@ config.MetadataNetworkPath = $('#txtMetadataNetworkPath', form).val(); config.FanartApiKey = $('#txtFanartApiKey', form).val(); - config.PeopleMetadataOptions.DownloadActorMetadata = $('#chkPeopleActors', form).checked(); - config.PeopleMetadataOptions.DownloadComposerMetadata = $('#chkPeopleComposers', form).checked(); - config.PeopleMetadataOptions.DownloadDirectorMetadata = $('#chkPeopleDirectors', form).checked(); - config.PeopleMetadataOptions.DownloadGuestStarMetadata = $('#chkPeopleGuestStars', form).checked(); - config.PeopleMetadataOptions.DownloadProducerMetadata = $('#chkPeopleProducers', form).checked(); - config.PeopleMetadataOptions.DownloadWriterMetadata = $('#chkPeopleWriters', form).checked(); - config.PeopleMetadataOptions.DownloadOtherPeopleMetadata = $('#chkPeopleOthers', form).checked(); - ApiClient.updateServerConfiguration(config).then(Dashboard.processServerConfigurationUpdateResult); }); @@ -102,10 +87,6 @@ href: 'librarydisplay.html', name: Globalize.translate('TabDisplay') }, - { - href: 'librarypathmapping.html', - name: Globalize.translate('TabPathSubstitution') - }, { href: 'librarysettings.html', name: Globalize.translate('TabAdvanced') diff --git a/dashboard-ui/dashboard/livetvtunerprovider-satip.js b/dashboard-ui/dashboard/livetvtunerprovider-satip.js index 94634d787e..3897eeb024 100644 --- a/dashboard-ui/dashboard/livetvtunerprovider-satip.js +++ b/dashboard-ui/dashboard/livetvtunerprovider-satip.js @@ -1,4 +1,5 @@ define(['emby-checkbox'], function () { + 'use strict'; function reload(page, providerId) { diff --git a/dashboard-ui/dashboard/logpage.js b/dashboard-ui/dashboard/logpage.js index 1df33e941b..f6c454547c 100644 --- a/dashboard-ui/dashboard/logpage.js +++ b/dashboard-ui/dashboard/logpage.js @@ -1,4 +1,5 @@ define(['datetime', 'listViewStyle'], function (datetime) { + 'use strict'; return function (view, params) { diff --git a/dashboard-ui/dashboard/wizardcomponents.js b/dashboard-ui/dashboard/wizardcomponents.js index 8ebc48a1a7..47a2b08d72 100644 --- a/dashboard-ui/dashboard/wizardcomponents.js +++ b/dashboard-ui/dashboard/wizardcomponents.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; function goNext() { Dashboard.navigate('wizardagreement.html'); @@ -10,13 +11,15 @@ ApiClient.getSystemInfo().then(function (systemInfo) { - if (systemInfo.OperatingSystem == 'Windows') { + var operatingSystem = systemInfo.OperatingSystem.toLowerCase(); + + if (operatingSystem == 'windows') { view.querySelector('.fldSelectEncoderPathType').classList.add('hide'); } else { view.querySelector('.fldSelectEncoderPathType').classList.remove('hide'); } - if (systemInfo.OperatingSystem == 'Windows' && systemInfo.SystemArchitecture != 'Arm') { + if (operatingSystem == 'windows' && systemInfo.SystemArchitecture != 'Arm') { view.querySelector('.suggestedLocation').innerHTML = Globalize.translate('FFmpegSuggestedDownload', 'https://ffmpeg.zeranoe.com'); @@ -27,7 +30,7 @@ instructions = 'Download FFmpeg 64-Bit Static'; } - } else if (systemInfo.OperatingSystem == 'Linux' && systemInfo.SystemArchitecture != 'Arm') { + } else if (operatingSystem == 'linux') { view.querySelector('.suggestedLocation').innerHTML = Globalize.translate('FFmpegSuggestedDownload', 'http://johnvansickle.com/ffmpeg'); @@ -38,7 +41,7 @@ instructions = 'Download x86_64 build'; } - } else if (systemInfo.OperatingSystem == 'Osx' && systemInfo.SystemArchitecture == 'X64') { + } else if (operatingSystem == 'osx' && systemInfo.SystemArchitecture == 'X64') { view.querySelector('.suggestedLocation').innerHTML = Globalize.translate('FFmpegSuggestedDownload', 'http://evermeet.cx/ffmpeg'); instructions = 'Download both ffmpeg and ffprobe, and extract them to the same folder.'; diff --git a/dashboard-ui/dashboard/wizardfinishpage.js b/dashboard-ui/dashboard/wizardfinishpage.js index 9cc915e49c..a147255c0c 100644 --- a/dashboard-ui/dashboard/wizardfinishpage.js +++ b/dashboard-ui/dashboard/wizardfinishpage.js @@ -1,4 +1,5 @@ define(['loading'], function (loading) { + 'use strict'; function onFinish() { diff --git a/dashboard-ui/devices/ios/ios.css b/dashboard-ui/devices/ios/ios.css index c10febf952..ec4880c29a 100644 --- a/dashboard-ui/devices/ios/ios.css +++ b/dashboard-ui/devices/ios/ios.css @@ -1,15 +1,7 @@ -html { - font-size: 15px; -} - -body:not(.dashboardDocument) .mainDrawerButton { +body:not(.dashboardDocument) .mainDrawerButton { display: none !important; } -.ui-body-b select { - -webkit-appearance: none; -} - .pageWithAbsoluteTabs:not(.noSecondaryNavPage) { padding-top: 88px !important; } @@ -70,7 +62,7 @@ h1, h1 a { } .cardImageContainer { - border-radius: 8px; + border-radius: 4px; } .noSecondaryNavPage .itemBackdrop { @@ -104,3 +96,8 @@ h1, h1 a { -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); } + +.cardOverlayButton { + -webkit-backdrop-filter: blur(5px); + backdrop-filter: blur(5px); +} diff --git a/dashboard-ui/itemdetails.html b/dashboard-ui/itemdetails.html index 7e565797c6..e29b814c77 100644 --- a/dashboard-ui/itemdetails.html +++ b/dashboard-ui/itemdetails.html @@ -1,213 +1,216 @@ 
+ + - -
- - -
-
-
-
-
-

-
- -
-
-
- -

-

-
- - - - -
-
-
- -
-
-
-
-
-
-
-
-
- - - - -
-
-
- -
-
-
-
-
+
+
+
-
-
-

-

-
-
-

-

-

-

-

-

-
-
-
-

- ${HeaderNextUp} -

-
-
-
-

- -

-
-
-
-
-
-

- ${HeaderAdditionalParts} -

-
-
-
-

- ${HeaderCastCrew} -

-
- -
-
-

- ${HeaderUpcomingOnTV} -

-
-
+
-
-

- ${HeaderPhotoInfo} -

-
-
-
-
+ + +
+ +

+

+ +
-
-

- ${HeaderSpecialFeatures} -

-
-
-
-

- ${HeaderMusicVideos} -

-
-
-
-

-
-
-
-

${HeaderMoreLikeThis}

-
-
-
-

- ${HeaderAwardsAndReviews} -

-
-

-
-
- -
-

TOMATOMETER®

-
-
-
-
-
-
-
-
-

- ${HeaderScenes} -

-
- -
-
-

- ${HeaderThemeSongs} -

-
-
-
-

- ${HeaderDetails} -

-
-
-

-

+
+ +
+ +
+ + + + +
+ +
+ +
+
+ +
+ +
+ +
+ +

+

+

+

+
+
+

+

+

+

+ +
+ +
- -
-

- ${HeaderThemeVideos} -

-
+
+
+

+ ${HeaderSchedule} +

+
+
+
+
+

+ ${HeaderNextUp} +

+
+
+
+

+ +

+
+
+
+
+
+

+ ${HeaderAdditionalParts} +

+
+
+
+

+ ${HeaderCastCrew} +

+
+ +
+
+

+ ${HeaderUpcomingOnTV} +

+
+
-
-

${HeaderMediaInfo}

-
-
- +
+

+ ${HeaderPhotoInfo} +

+
+
+
+
+ +
+

+ ${HeaderSpecialFeatures} +

+
+
+
+

+ ${HeaderMusicVideos} +

+
+
+
+

+
+
+
+

${HeaderMoreLikeThis}

+
+
+
+

+ ${HeaderAwardsAndReviews} +

+
+

+
+
+ +
+

TOMATOMETER®

+
+
+
-
+
+
+
+ +
+

+ ${HeaderScenes} +

+
+
+
+

+ ${HeaderThemeSongs} +

+
+
+ +
+

+ ${HeaderThemeVideos} +

+
+
+ +
+

${HeaderMediaInfo}

+
+
+ +
+
+
+
\ No newline at end of file diff --git a/dashboard-ui/itemlist.html b/dashboard-ui/itemlist.html index c52644e24d..dfcff645d4 100644 --- a/dashboard-ui/itemlist.html +++ b/dashboard-ui/itemlist.html @@ -1,4 +1,4 @@ -
+
diff --git a/dashboard-ui/legacy/buttonenabled.js b/dashboard-ui/legacy/buttonenabled.js index ce0d84ed7c..bd18e22b43 100644 --- a/dashboard-ui/legacy/buttonenabled.js +++ b/dashboard-ui/legacy/buttonenabled.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; $.fn.buttonEnabled = function (enabled) { diff --git a/dashboard-ui/legacy/dashboard.js b/dashboard-ui/legacy/dashboard.js index fd97fc189e..399d2f15e1 100644 --- a/dashboard-ui/legacy/dashboard.js +++ b/dashboard-ui/legacy/dashboard.js @@ -1,4 +1,6 @@ Dashboard.confirm = function (message, title, callback) { + 'use strict'; + require(['confirm'], function (confirm) { confirm(message, title).then(function () { diff --git a/dashboard-ui/legacy/fnchecked.js b/dashboard-ui/legacy/fnchecked.js index 1005d73c61..db7eb810ee 100644 --- a/dashboard-ui/legacy/fnchecked.js +++ b/dashboard-ui/legacy/fnchecked.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; // TODO: This needs to be deprecated, but it's used heavily $.fn.checked = function (value) { diff --git a/dashboard-ui/legacy/selectmenu.js b/dashboard-ui/legacy/selectmenu.js index 959b8d617d..a867fb3793 100644 --- a/dashboard-ui/legacy/selectmenu.js +++ b/dashboard-ui/legacy/selectmenu.js @@ -1,4 +1,6 @@ define(['jQuery'], function ($) { + 'use strict'; + // TODO: This needs to be deprecated, but it's used heavily by plugins $.fn.selectmenu = function () { // No-op. This implementation only exists to prevent script errors diff --git a/dashboard-ui/librarypathmapping.html b/dashboard-ui/librarypathmapping.html deleted file mode 100644 index 1583065488..0000000000 --- a/dashboard-ui/librarypathmapping.html +++ /dev/null @@ -1,22 +0,0 @@ -
- -
-
-
-

${PathSubstitutionHelp}

- -
-
- -
- -

- Path Substitutions can no longer be added. This feature is being replaced by the network share setup. -

-

- To configure network shares, edit an existing media library, then click on one of the existing folders. You'll then be able to map a network path to a library path. -

- -
-
-
\ No newline at end of file diff --git a/dashboard-ui/librarysettings.html b/dashboard-ui/librarysettings.html index e7106ffd22..f7f0669abd 100644 --- a/dashboard-ui/librarysettings.html +++ b/dashboard-ui/librarysettings.html @@ -29,46 +29,6 @@
${OptionSaveMetadataAsHiddenHelp}
-
-
-
-
-

${HeaderDownloadPeopleMetadataFor}

-
- - - - - - - -
-
${HeaderDownloadPeopleMetadataForHelp}
-
-
-
-
diff --git a/dashboard-ui/livetv.html b/dashboard-ui/livetv.html index f069756d78..3cb4748256 100644 --- a/dashboard-ui/livetv.html +++ b/dashboard-ui/livetv.html @@ -41,45 +41,40 @@
-
-
+

${HeaderUpcomingMovies}

-
-
+

${HeaderUpcomingSports}

-
-
+

${HeaderUpcomingForKids}

-
-
+

${HeaderUpcomingPrograms}

-
-
+
diff --git a/dashboard-ui/livetvseriestimer.html b/dashboard-ui/livetvseriestimer.html deleted file mode 100644 index d13cea650b..0000000000 --- a/dashboard-ui/livetvseriestimer.html +++ /dev/null @@ -1,28 +0,0 @@ -
- - -
- -
-
-

-
- -
- -
- -

${HeaderSchedule}

-
-
-
-
- -
\ No newline at end of file diff --git a/dashboard-ui/livetvsettings.html b/dashboard-ui/livetvsettings.html index 47b2e62a05..ced5e5bf5b 100644 --- a/dashboard-ui/livetvsettings.html +++ b/dashboard-ui/livetvsettings.html @@ -22,14 +22,10 @@
${LabelNumberOfGuideDaysHelp}
-

${LabelEnableInternetMetadataForTvPrograms}

-
- -
-
+
@@ -39,10 +35,6 @@
${LabelRecordingPathHelp}
-
@@ -77,6 +69,13 @@
+
+ +
${OptionConvertRecordingPreserveVideoHelp}
+
-

${HeaderDefaultPadding}

+

${HeaderRecordingPostProcessing}

- +
+
+ +
+ +
- + +
${LabelPostProcessorArgumentsHelp}
+
+
+
+

${HeaderDefaultRecordingSettings}

+
+
+
+ +
+
+ ${MinutesBefore} +
+
+
+
+
+
+ +
+
+ ${MinutesAfter} +
+

diff --git a/dashboard-ui/login.html b/dashboard-ui/login.html index 0179f64f28..097c75b5e7 100644 --- a/dashboard-ui/login.html +++ b/dashboard-ui/login.html @@ -35,7 +35,6 @@

${HeaderPleaseSignIn}

-

${VisualLoginFormHelp}


diff --git a/dashboard-ui/metadata.html b/dashboard-ui/metadata.html index 607a8aad00..6d59701097 100644 --- a/dashboard-ui/metadata.html +++ b/dashboard-ui/metadata.html @@ -6,12 +6,6 @@ -
-

Some metadata settings have moved

-

You can now configure internet providers and saving of local metadata on a per-library basis.

-

To do this, go to Library setup and click on a library to view the options.

-
-
diff --git a/dashboard-ui/metadatanfo.html b/dashboard-ui/metadatanfo.html index f2c991aa19..2a3ea2c52c 100644 --- a/dashboard-ui/metadatanfo.html +++ b/dashboard-ui/metadatanfo.html @@ -32,7 +32,6 @@
${LabelKodiMetadataEnablePathSubstitutionHelp}
-
diff --git a/dashboard-ui/movies.html b/dashboard-ui/movies.html index 83eb3a1a77..54faa0e2ab 100644 --- a/dashboard-ui/movies.html +++ b/dashboard-ui/movies.html @@ -25,7 +25,7 @@
-

${HeaderResume}

+

${HeaderContinueWatching}

@@ -55,7 +55,7 @@
-
+
@@ -72,7 +72,7 @@
-
+
@@ -88,27 +88,21 @@
-
+
-
-
- -
+
-
-
- -
-
+
+
diff --git a/dashboard-ui/music.html b/dashboard-ui/music.html index 4fff78831d..45cf3c0381 100644 --- a/dashboard-ui/music.html +++ b/dashboard-ui/music.html @@ -58,7 +58,7 @@
-
+
@@ -75,7 +75,7 @@
-
+
@@ -91,7 +91,7 @@
-
+
@@ -107,7 +107,7 @@
-
+
@@ -126,7 +126,7 @@
-
+
diff --git a/dashboard-ui/mypreferencesdisplay.html b/dashboard-ui/mypreferencesdisplay.html index bfbcc42402..5a5054f478 100644 --- a/dashboard-ui/mypreferencesdisplay.html +++ b/dashboard-ui/mypreferencesdisplay.html @@ -57,7 +57,6 @@
@@ -65,7 +64,7 @@
${LabelEnableThemeSongsHelp}
@@ -76,16 +75,17 @@ ${HeaderDisplay}
-
+
- +
${LabelDisplayMissingEpisodesWithinSeasonsHelp}
+
@@ -29,9 +28,8 @@ - - - + + @@ -43,9 +41,8 @@ - - - + + @@ -57,9 +54,8 @@ - - - + + diff --git a/dashboard-ui/photos.html b/dashboard-ui/photos.html index 2805a7f5b3..b6598698aa 100644 --- a/dashboard-ui/photos.html +++ b/dashboard-ui/photos.html @@ -1,4 +1,4 @@ -
+
diff --git a/dashboard-ui/reports.html b/dashboard-ui/reports.html index a136fec722..adb0cf398b 100644 --- a/dashboard-ui/reports.html +++ b/dashboard-ui/reports.html @@ -60,7 +60,6 @@
diff --git a/dashboard-ui/scripts/addpluginpage.js b/dashboard-ui/scripts/addpluginpage.js index 746f391778..bdd591ee20 100644 --- a/dashboard-ui/scripts/addpluginpage.js +++ b/dashboard-ui/scripts/addpluginpage.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function populateHistory(packageInfo, page) { diff --git a/dashboard-ui/scripts/appservices.js b/dashboard-ui/scripts/appservices.js index 6bdb20d41c..137a17e039 100644 --- a/dashboard-ui/scripts/appservices.js +++ b/dashboard-ui/scripts/appservices.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function reloadList(page) { diff --git a/dashboard-ui/scripts/autobackdrops.js b/dashboard-ui/scripts/autobackdrops.js index 167efa0a9d..bd43edd650 100644 --- a/dashboard-ui/scripts/autobackdrops.js +++ b/dashboard-ui/scripts/autobackdrops.js @@ -1,14 +1,5 @@ define(['backdrop', 'appStorage'], function (backdrop, appStorage) { - - function isEnabledByDefault() { - - if (AppInfo.hasLowImageBandwidth) { - - return false; - } - - return false; - } + 'use strict'; function enabled() { @@ -23,7 +14,7 @@ var val = appStorage.getItem('enableBackdrops-' + userId); // For bandwidth - return val == '1' || (val != '0' && isEnabledByDefault()); + return val == '1'; } var cache = {}; diff --git a/dashboard-ui/scripts/camerauploadsettings.js b/dashboard-ui/scripts/camerauploadsettings.js index c6ba242453..b877a5bfce 100644 --- a/dashboard-ui/scripts/camerauploadsettings.js +++ b/dashboard-ui/scripts/camerauploadsettings.js @@ -1,4 +1,5 @@ define(['appSettings', 'emby-checkbox'], function (appSettings) { + 'use strict'; function loadForm(page, user) { diff --git a/dashboard-ui/scripts/channelitems.js b/dashboard-ui/scripts/channelitems.js index ee95da7d9d..65bc6fffd7 100644 --- a/dashboard-ui/scripts/channelitems.js +++ b/dashboard-ui/scripts/channelitems.js @@ -1,4 +1,5 @@ -define(['jQuery', 'cardBuilder', 'emby-itemscontainer'], function ($, cardBuilder) { +define(['jQuery', 'cardBuilder', 'imageLoader', 'emby-itemscontainer'], function ($, cardBuilder, imageLoader) { + 'use strict'; var data = {}; @@ -147,7 +148,7 @@ var elem = page.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); $('.btnNextPage', page).on('click', function () { query.StartIndex += query.Limit; diff --git a/dashboard-ui/scripts/channels.js b/dashboard-ui/scripts/channels.js index 954ae61290..ea5cf6f82d 100644 --- a/dashboard-ui/scripts/channels.js +++ b/dashboard-ui/scripts/channels.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'cardBuilder', 'emby-itemscontainer', 'emby-tabs', 'emby-button', 'scripts/channelslatest', 'scripts/sections'], function (libraryBrowser, cardBuilder) { +define(['libraryBrowser', 'cardBuilder', 'imageLoader', 'emby-itemscontainer', 'emby-tabs', 'emby-button', 'scripts/channelslatest', 'scripts/sections'], function (libraryBrowser, cardBuilder, imageLoader) { + 'use strict'; // The base query options var query = { @@ -49,7 +50,7 @@ var elem = page.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); libraryBrowser.saveQueryValues('channels', query); diff --git a/dashboard-ui/scripts/channelslatest.js b/dashboard-ui/scripts/channelslatest.js index 645a3790ab..076c127950 100644 --- a/dashboard-ui/scripts/channelslatest.js +++ b/dashboard-ui/scripts/channelslatest.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; function reloadItems(page) { diff --git a/dashboard-ui/scripts/chromecast.js b/dashboard-ui/scripts/chromecast.js index cb35915b3c..3ac9a14e80 100644 --- a/dashboard-ui/scripts/chromecast.js +++ b/dashboard-ui/scripts/chromecast.js @@ -1,4 +1,5 @@ define(['appSettings'], function (appSettings) { + 'use strict'; // Based on https://github.com/googlecast/CastVideos-chrome/blob/master/CastVideos.js var currentResolve; @@ -314,7 +315,7 @@ if (!this.session) { console.log("no session"); - return; + return Promise.reject(); } // Convert the items to smaller stubs to send the minimal amount of information @@ -329,7 +330,7 @@ }; }); - this.sendMessage({ + return this.sendMessage({ options: options, command: command }); @@ -358,11 +359,15 @@ message.maxBitrate = bitrateSetting; } - require(['chromecasthelpers'], function (chromecasthelpers) { + return new Promise(function (resolve, reject) { - chromecasthelpers.getServerAddress(ApiClient).then(function (serverAddress) { - message.serverAddress = serverAddress; - player.sendMessageInternal(message); + require(['chromecasthelpers'], function (chromecasthelpers) { + + chromecasthelpers.getServerAddress(ApiClient).then(function (serverAddress) { + message.serverAddress = serverAddress; + player.sendMessageInternal(message).then(resolve, reject); + + }, reject); }); }); }; @@ -373,6 +378,7 @@ //console.log(message); this.session.sendMessage(messageNamespace, message, this.onPlayCommandSuccess.bind(this), this.errorHandler); + return Promise.resolve(); }; CastPlayer.prototype.onPlayCommandSuccess = function () { @@ -540,22 +546,22 @@ self.play = function (options) { - Dashboard.getCurrentUser().then(function (user) { + return Dashboard.getCurrentUser().then(function (user) { if (options.items) { - self.playWithCommand(options, 'PlayNow'); + return self.playWithCommand(options, 'PlayNow'); } else { - self.getItemsForPlayback({ + return self.getItemsForPlayback({ Ids: options.ids.join(',') }).then(function (result) { options.items = result.Items; - self.playWithCommand(options, 'PlayNow'); + return self.playWithCommand(options, 'PlayNow'); }); } @@ -567,16 +573,14 @@ self.playWithCommand = function (options, command) { if (!options.items) { - ApiClient.getItem(Dashboard.getCurrentUserId(), options.ids[0]).then(function (item) { + return ApiClient.getItem(Dashboard.getCurrentUserId(), options.ids[0]).then(function (item) { options.items = [item]; - self.playWithCommand(options, command); + return self.playWithCommand(options, command); }); - - return; } - castPlayer.loadMedia(options, command); + return castPlayer.loadMedia(options, command); }; self.unpause = function () { diff --git a/dashboard-ui/scripts/connectlogin.js b/dashboard-ui/scripts/connectlogin.js index 15af12b809..3802ab0b6d 100644 --- a/dashboard-ui/scripts/connectlogin.js +++ b/dashboard-ui/scripts/connectlogin.js @@ -1,4 +1,5 @@ define(['appSettings'], function (appSettings) { + 'use strict'; function login(page, username, password) { diff --git a/dashboard-ui/scripts/dashboardpage.js b/dashboard-ui/scripts/dashboardpage.js index f03bf1180d..19b377ea9e 100644 --- a/dashboard-ui/scripts/dashboardpage.js +++ b/dashboard-ui/scripts/dashboardpage.js @@ -1,4 +1,5 @@ define(['datetime', 'jQuery', 'dom', 'humanedate', 'cardStyle', 'listViewStyle'], function (datetime, $, dom) { + 'use strict'; function renderNoHealthAlertsMessage(page) { diff --git a/dashboard-ui/scripts/device.js b/dashboard-ui/scripts/device.js index d844039030..5948801287 100644 --- a/dashboard-ui/scripts/device.js +++ b/dashboard-ui/scripts/device.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function load(page, device, capabilities) { diff --git a/dashboard-ui/scripts/devices.js b/dashboard-ui/scripts/devices.js index c3ed85ea2d..12f5c37e56 100644 --- a/dashboard-ui/scripts/devices.js +++ b/dashboard-ui/scripts/devices.js @@ -1,4 +1,5 @@ define(['jQuery', 'listViewStyle'], function ($) { + 'use strict'; function deleteDevice(page, id) { diff --git a/dashboard-ui/scripts/dlnaprofile.js b/dashboard-ui/scripts/dlnaprofile.js index 14c00f282c..d7ebba257b 100644 --- a/dashboard-ui/scripts/dlnaprofile.js +++ b/dashboard-ui/scripts/dlnaprofile.js @@ -1,4 +1,5 @@ -define(['jQuery', 'fnchecked', 'jqmlistview', 'emby-select', 'emby-button', 'emby-input', 'emby-checkbox'], function ($) { +define(['jQuery', 'fnchecked', 'jqmlistview', 'emby-select', 'emby-button', 'emby-input', 'emby-checkbox', 'listViewStyle'], function ($) { + 'use strict'; var currentProfile; @@ -109,26 +110,27 @@ var index = 0; - var html = ''; + }).join('') + '
'; var elem = $('.httpHeaderIdentificationList', page).html(html).trigger('create'); @@ -182,25 +184,24 @@ var index = 0; - var html = ''; + }).join('') + '
'; var elem = $('.xmlDocumentAttributeList', page).html(html).trigger('create'); diff --git a/dashboard-ui/scripts/dlnaprofiles.js b/dashboard-ui/scripts/dlnaprofiles.js index 8e348cb5a0..636033f167 100644 --- a/dashboard-ui/scripts/dlnaprofiles.js +++ b/dashboard-ui/scripts/dlnaprofiles.js @@ -1,4 +1,5 @@ define(['jQuery', 'listViewStyle'], function ($) { + 'use strict'; function loadProfiles(page) { diff --git a/dashboard-ui/scripts/dlnasettings.js b/dashboard-ui/scripts/dlnasettings.js index 91902995ea..91325e5de5 100644 --- a/dashboard-ui/scripts/dlnasettings.js +++ b/dashboard-ui/scripts/dlnasettings.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; function loadPage(page, config, users) { diff --git a/dashboard-ui/scripts/edititemmetadata.js b/dashboard-ui/scripts/edititemmetadata.js index 8e2c8cedb2..69a91aab84 100644 --- a/dashboard-ui/scripts/edititemmetadata.js +++ b/dashboard-ui/scripts/edititemmetadata.js @@ -1,4 +1,5 @@ define(['historyManager', 'jQuery'], function (historyManager, $) { + 'use strict'; var currentItemId; diff --git a/dashboard-ui/scripts/editorsidebar.js b/dashboard-ui/scripts/editorsidebar.js index 286eda3ea0..85f1e640a9 100644 --- a/dashboard-ui/scripts/editorsidebar.js +++ b/dashboard-ui/scripts/editorsidebar.js @@ -1,4 +1,5 @@ define(['datetime', 'jQuery', 'material-icons'], function (datetime, $) { + 'use strict'; function getNode(item, folderState, selected) { diff --git a/dashboard-ui/scripts/encodingsettings.js b/dashboard-ui/scripts/encodingsettings.js index 17770851ce..211bd36c67 100644 --- a/dashboard-ui/scripts/encodingsettings.js +++ b/dashboard-ui/scripts/encodingsettings.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function loadPage(page, config, systemInfo) { @@ -187,7 +188,12 @@ ApiClient.getSystemInfo().then(function (systemInfo) { - page.querySelector('.fldSelectEncoderPathType').classList.remove('hide'); + if (systemInfo.EncoderLocationType == "External") { + page.querySelector('.fldSelectEncoderPathType').classList.add('hide'); + } else { + page.querySelector('.fldSelectEncoderPathType').classList.remove('hide'); + } + loadPage(page, config, systemInfo); }); }); diff --git a/dashboard-ui/scripts/episodes.js b/dashboard-ui/scripts/episodes.js index abff05c6a9..ea689eb89a 100644 --- a/dashboard-ui/scripts/episodes.js +++ b/dashboard-ui/scripts/episodes.js @@ -1,4 +1,5 @@ define(['events', 'libraryBrowser', 'imageLoader', 'listView', 'cardBuilder', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, listView, cardBuilder) { + 'use strict'; return function (view, params, tabContent) { @@ -222,10 +223,6 @@ { name: Globalize.translate('OptionRuntime'), id: 'Runtime,SeriesSortName,SortName' - }, - { - name: Globalize.translate('OptionVideoBitrate'), - id: 'VideoBitRate,SeriesSortName,SortName' }], callback: function () { reloadItems(tabContent); diff --git a/dashboard-ui/scripts/externalplayer.js b/dashboard-ui/scripts/externalplayer.js index 544a71af78..e40a6a56d8 100644 --- a/dashboard-ui/scripts/externalplayer.js +++ b/dashboard-ui/scripts/externalplayer.js @@ -1,4 +1,5 @@ -define(['appSettings', 'datetime', 'jQuery', 'emby-slider', 'emby-button'], function (appSettings, datetime, $) { +define(['appSettings', 'datetime', 'jQuery', 'actionsheet', 'emby-slider', 'emby-button'], function (appSettings, datetime, $, actionsheet) { + 'use strict'; function getDeviceProfile(serverAddress, deviceId, item, startPositionTicks, maxBitrate, mediaSourceId, audioStreamIndex, subtitleStreamIndex) { @@ -334,21 +335,17 @@ function showMenuForItem(item, players) { - require(['actionsheet'], function (actionsheet) { + actionsheet.show({ + items: players + }).then(function (id) { + var player = players.filter(function (p) { + return p.id == id; + })[0]; - actionsheet.show({ - items: players, - callback: function (id) { - var player = players.filter(function (p) { - return p.id == id; - })[0]; - - if (player) { - window.open(player.url, '_blank'); - onPlaybackStart(); - } - } - }); + if (player) { + window.open(player.url, '_blank'); + onPlaybackStart(); + } }); } diff --git a/dashboard-ui/scripts/favorites.js b/dashboard-ui/scripts/favorites.js index 78e4216ba6..4879c69884 100644 --- a/dashboard-ui/scripts/favorites.js +++ b/dashboard-ui/scripts/favorites.js @@ -1,4 +1,5 @@ define(['components/favoriteitems'], function (favoriteItems) { + 'use strict'; return function (view, params) { diff --git a/dashboard-ui/scripts/forgotpassword.js b/dashboard-ui/scripts/forgotpassword.js index 1431421d51..f795b90d35 100644 --- a/dashboard-ui/scripts/forgotpassword.js +++ b/dashboard-ui/scripts/forgotpassword.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; function processForgotPasswordResult(result) { diff --git a/dashboard-ui/scripts/forgotpasswordpin.js b/dashboard-ui/scripts/forgotpasswordpin.js index 836a06da9b..5c167a094f 100644 --- a/dashboard-ui/scripts/forgotpasswordpin.js +++ b/dashboard-ui/scripts/forgotpasswordpin.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; function processForgotPasswordResult(result) { diff --git a/dashboard-ui/scripts/gamegenrepage.js b/dashboard-ui/scripts/gamegenrepage.js index 8f809d01d3..f3af6e7e9f 100644 --- a/dashboard-ui/scripts/gamegenrepage.js +++ b/dashboard-ui/scripts/gamegenrepage.js @@ -1,4 +1,5 @@ -define(['jQuery'], function ($) { +define(['jQuery', 'imageLoader'], function ($, imageLoader) { + 'use strict'; // The base query options var query = { @@ -45,7 +46,7 @@ define(['jQuery'], function ($) { var elem = page.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); $('.btnNextPage', page).on('click', function () { query.StartIndex += query.Limit; diff --git a/dashboard-ui/scripts/gamespage.js b/dashboard-ui/scripts/gamespage.js index c466fbbfe6..b97e6cf510 100644 --- a/dashboard-ui/scripts/gamespage.js +++ b/dashboard-ui/scripts/gamespage.js @@ -1,4 +1,5 @@ -define(['jQuery', 'listView'], function ($, listView) { +define(['jQuery', 'listView', 'imageLoader'], function ($, listView, imageLoader) { + 'use strict'; var data = {}; @@ -95,7 +96,7 @@ define(['jQuery', 'listView'], function ($, listView) { var elem = page.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); $('.btnNextPage', page).on('click', function () { query.StartIndex += query.Limit; diff --git a/dashboard-ui/scripts/gamesrecommendedpage.js b/dashboard-ui/scripts/gamesrecommendedpage.js index ce1fdb3568..b2e6dd1370 100644 --- a/dashboard-ui/scripts/gamesrecommendedpage.js +++ b/dashboard-ui/scripts/gamesrecommendedpage.js @@ -1,4 +1,5 @@ -define(['jQuery'], function ($) { +define(['jQuery', 'imageLoader'], function ($, imageLoader) { + 'use strict'; $(document).on('pagebeforeshow', "#gamesRecommendedPage", function () { @@ -28,7 +29,7 @@ define(['jQuery'], function ($) { lazy: true }); - ImageLoader.lazyChildren(recentlyAddedItems); + imageLoader.lazyChildren(recentlyAddedItems); }); @@ -63,7 +64,7 @@ define(['jQuery'], function ($) { lazy: true }); - ImageLoader.lazyChildren(recentlyPlayedItems); + imageLoader.lazyChildren(recentlyPlayedItems); }); }); diff --git a/dashboard-ui/scripts/gamestudiospage.js b/dashboard-ui/scripts/gamestudiospage.js index d168bd35c8..a4548fa81f 100644 --- a/dashboard-ui/scripts/gamestudiospage.js +++ b/dashboard-ui/scripts/gamestudiospage.js @@ -1,4 +1,5 @@ -define(['jQuery'], function ($) { +define(['jQuery', 'imageLoader'], function ($, imageLoader) { + 'use strict'; // The base query options var query = { @@ -46,7 +47,7 @@ define(['jQuery'], function ($) { var elem = page.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); $('.btnNextPage', page).on('click', function () { query.StartIndex += query.Limit; diff --git a/dashboard-ui/scripts/gamesystemspage.js b/dashboard-ui/scripts/gamesystemspage.js index f1231ff5a9..b581eeb5f1 100644 --- a/dashboard-ui/scripts/gamesystemspage.js +++ b/dashboard-ui/scripts/gamesystemspage.js @@ -1,4 +1,5 @@ -define(['jQuery'], function ($) { +define(['jQuery', 'imageLoader'], function ($, imageLoader) { + 'use strict'; // The base query options var query = { @@ -41,7 +42,7 @@ define(['jQuery'], function ($) { var elem = page.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); LibraryBrowser.saveQueryValues(getSavedQueryKey(), query); diff --git a/dashboard-ui/scripts/homefavorites.js b/dashboard-ui/scripts/homefavorites.js index 85b14599dd..499c1206d5 100644 --- a/dashboard-ui/scripts/homefavorites.js +++ b/dashboard-ui/scripts/homefavorites.js @@ -1,4 +1,5 @@ define(['components/favoriteitems'], function (favoriteItems) { + 'use strict'; return function (view, params, tabContent) { diff --git a/dashboard-ui/scripts/homenextup.js b/dashboard-ui/scripts/homenextup.js index 75f07cace6..28961ad6a8 100644 --- a/dashboard-ui/scripts/homenextup.js +++ b/dashboard-ui/scripts/homenextup.js @@ -1,4 +1,5 @@ -define(['components/categorysyncbuttons', 'cardBuilder', 'apphost', 'emby-itemscontainer'], function (categorysyncbuttons, cardBuilder, appHost) { +define(['components/categorysyncbuttons', 'cardBuilder', 'apphost', 'imageLoader', 'emby-itemscontainer'], function (categorysyncbuttons, cardBuilder, appHost, imageLoader) { + 'use strict'; function getNextUpPromise() { @@ -45,7 +46,7 @@ var elem = page.querySelector('#nextUpItems'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); Dashboard.hideLoadingMsg(); }); } diff --git a/dashboard-ui/scripts/homeupcoming.js b/dashboard-ui/scripts/homeupcoming.js index 3f0786a7fe..3e2331370b 100644 --- a/dashboard-ui/scripts/homeupcoming.js +++ b/dashboard-ui/scripts/homeupcoming.js @@ -1,4 +1,5 @@ -define(['datetime', 'cardBuilder', 'apphost', 'emby-itemscontainer', 'scrollStyles'], function (datetime, cardBuilder, appHost) { +define(['datetime', 'cardBuilder', 'apphost', 'imageLoader', 'emby-itemscontainer', 'scrollStyles'], function (datetime, cardBuilder, appHost, imageLoader) { + 'use strict'; function getUpcomingPromise() { @@ -133,7 +134,7 @@ } elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); } return function (view, params, tabContent) { diff --git a/dashboard-ui/scripts/htmlmediarenderer.js b/dashboard-ui/scripts/htmlmediarenderer.js index 68ece16c01..04dcefd39e 100644 --- a/dashboard-ui/scripts/htmlmediarenderer.js +++ b/dashboard-ui/scripts/htmlmediarenderer.js @@ -1,4 +1,5 @@ define(['browser'], function (browser) { + 'use strict'; var supportsTextTracks; var hlsPlayer; @@ -194,13 +195,8 @@ //return false; } - // For now don't do this in edge because we lose some native audio support - if (browser.edge && browser.mobile) { - return false; - } - // hls.js is only in beta. needs more testing. - if (browser.safari) { + if (browser.safari && !browser.osx) { return false; } @@ -224,17 +220,20 @@ // Safari often displays the poster under the video and it doesn't look good var poster = !browser.safari && options.poster ? (' poster="' + options.poster + '"') : ''; + // playsinline new for iOS 10 + // https://developer.apple.com/library/content/releasenotes/General/WhatsNewInSafari/Articles/Safari_10_0.html + // Can't autoplay in these browsers so we need to use the full controls if (requiresNativeControls && AppInfo.isNativeApp && browser.android) { - html += '
'; if (review.Url) { - html += ''; + html += ''; } html += '
'; @@ -1558,7 +1763,7 @@ } if (limit && result.TotalRecordCount > limit) { - html += '

'; + html += '

'; } var criticReviewsContent = page.querySelector('#criticReviewsContent'); @@ -1573,6 +1778,10 @@ function renderThemeMedia(page, item) { + if (item.Type === 'SeriesTimer' || item.Type === 'Timer' || item.Type === 'Genre' || item.Type === 'MusicGenre' || item.Type === 'GameGenre' || item.Type === 'Studio' || item.Type === 'Person') { + return; + } + ApiClient.getThemeMedia(Dashboard.getCurrentUserId(), item.Id, true).then(function (result) { var themeSongs = result.ThemeSongsResult.OwnerId == item.Id ? @@ -1612,7 +1821,7 @@ var themeVideosContent = page.querySelector('#themeVideosContent'); themeVideosContent.innerHTML = getVideosHtml(items, user); - ImageLoader.lazyChildren(themeVideosContent); + imageLoader.lazyChildren(themeVideosContent); } else { page.querySelector('#themeVideosCollapsible').classList.add('hide'); } @@ -1636,7 +1845,7 @@ var musicVideosContent = page.querySelector('.musicVideosContent'); musicVideosContent.innerHTML = getVideosHtml(result.Items, user); - ImageLoader.lazyChildren(musicVideosContent); + imageLoader.lazyChildren(musicVideosContent); } else { page.querySelector('#musicVideosCollapsible').classList.add('hide'); @@ -1655,7 +1864,7 @@ var additionalPartsContent = page.querySelector('#additionalPartsContent'); additionalPartsContent.innerHTML = getVideosHtml(result.Items, user); - ImageLoader.lazyChildren(additionalPartsContent); + imageLoader.lazyChildren(additionalPartsContent); } else { page.querySelector('#additionalPartsCollapsible').classList.add('hide'); @@ -1663,51 +1872,46 @@ }); } - function renderScenes(page, item, user, limit, isStatic) { + function renderScenes(page, item) { var chapters = item.Chapters || []; - var scenesContent = page.querySelector('#scenesContent'); - if (enableScrollX()) { - scenesContent.classList.add('smoothScrollX'); - limit = null; + // If there are no chapter images, don't show a bunch of empty tiles + if (chapters.length && !chapters[0].ImageTag) { + chapters = []; + } + + if (!chapters.length) { + page.querySelector('#scenesCollapsible').classList.add('hide'); } else { - scenesContent.classList.add('vertical-wrap'); - } + page.querySelector('#scenesCollapsible').classList.remove('hide'); - var limitExceeded = limit && chapters.length > limit; + var scenesContent = page.querySelector('#scenesContent'); - if (limitExceeded) { - chapters = chapters.slice(0); - chapters.length = Math.min(limit, chapters.length); - } - - require(['chaptercardbuilder'], function (chaptercardbuilder) { - - chaptercardbuilder.buildChapterCards(item, chapters, { - itemsContainer: scenesContent, - coverImage: true, - width: 400, - backdropShape: getThumbShape(), - squareShape: getSquareShape() - }); - }); - - var moreScenesButton = page.querySelector('.moreScenes'); - if (moreScenesButton) { - if (limitExceeded) { - moreScenesButton.classList.remove('hide'); + if (enableScrollX()) { + scenesContent.classList.add('smoothScrollX'); } else { - moreScenesButton.classList.add('hide'); + scenesContent.classList.add('vertical-wrap'); } + + require(['chaptercardbuilder'], function (chaptercardbuilder) { + + chaptercardbuilder.buildChapterCards(item, chapters, { + itemsContainer: scenesContent, + coverImage: true, + width: 400, + backdropShape: getThumbShape(), + squareShape: getSquareShape() + }); + }); } } - function renderMediaSources(page, item) { + function renderMediaSources(page, user, item) { var html = item.MediaSources.map(function (v) { - return getMediaSourceHtml(item, v); + return getMediaSourceHtml(user, item, v); }).join('
'); @@ -1719,7 +1923,7 @@ mediaInfoContent.innerHTML = html; } - function getMediaSourceHtml(item, version) { + function getMediaSourceHtml(user, item, version) { var html = ''; @@ -1737,22 +1941,22 @@ html += '
'; - var displayType = Globalize.translate('MediaInfoStreamType' + stream.Type); + var displayType = globalize.translate('MediaInfoStreamType' + stream.Type); html += '

' + displayType + '

'; var attributes = []; if (stream.Language && stream.Type != "Video") { - attributes.push(createAttribute(Globalize.translate('MediaInfoLanguage'), stream.Language)); + attributes.push(createAttribute(globalize.translate('MediaInfoLanguage'), stream.Language)); } if (stream.Codec) { - attributes.push(createAttribute(Globalize.translate('MediaInfoCodec'), stream.Codec.toUpperCase())); + attributes.push(createAttribute(globalize.translate('MediaInfoCodec'), stream.Codec.toUpperCase())); } if (stream.CodecTag) { - attributes.push(createAttribute(Globalize.translate('MediaInfoCodecTag'), stream.CodecTag)); + attributes.push(createAttribute(globalize.translate('MediaInfoCodecTag'), stream.CodecTag)); } if (stream.IsAVC != null) { @@ -1760,58 +1964,58 @@ } if (stream.Profile) { - attributes.push(createAttribute(Globalize.translate('MediaInfoProfile'), stream.Profile)); + attributes.push(createAttribute(globalize.translate('MediaInfoProfile'), stream.Profile)); } if (stream.Level) { - attributes.push(createAttribute(Globalize.translate('MediaInfoLevel'), stream.Level)); + attributes.push(createAttribute(globalize.translate('MediaInfoLevel'), stream.Level)); } if (stream.Width || stream.Height) { - attributes.push(createAttribute(Globalize.translate('MediaInfoResolution'), stream.Width + 'x' + stream.Height)); + attributes.push(createAttribute(globalize.translate('MediaInfoResolution'), stream.Width + 'x' + stream.Height)); } if (stream.AspectRatio && stream.Codec != "mjpeg") { - attributes.push(createAttribute(Globalize.translate('MediaInfoAspectRatio'), stream.AspectRatio)); + attributes.push(createAttribute(globalize.translate('MediaInfoAspectRatio'), stream.AspectRatio)); } if (stream.Type == "Video") { if (stream.IsAnamorphic != null) { - attributes.push(createAttribute(Globalize.translate('MediaInfoAnamorphic'), (stream.IsAnamorphic ? 'Yes' : 'No'))); + attributes.push(createAttribute(globalize.translate('MediaInfoAnamorphic'), (stream.IsAnamorphic ? 'Yes' : 'No'))); } - attributes.push(createAttribute(Globalize.translate('MediaInfoInterlaced'), (stream.IsInterlaced ? 'Yes' : 'No'))); + attributes.push(createAttribute(globalize.translate('MediaInfoInterlaced'), (stream.IsInterlaced ? 'Yes' : 'No'))); } if (stream.AverageFrameRate || stream.RealFrameRate) { - attributes.push(createAttribute(Globalize.translate('MediaInfoFramerate'), (stream.AverageFrameRate || stream.RealFrameRate))); + attributes.push(createAttribute(globalize.translate('MediaInfoFramerate'), (stream.AverageFrameRate || stream.RealFrameRate))); } if (stream.ChannelLayout) { - attributes.push(createAttribute(Globalize.translate('MediaInfoLayout'), stream.ChannelLayout)); + attributes.push(createAttribute(globalize.translate('MediaInfoLayout'), stream.ChannelLayout)); } if (stream.Channels) { - attributes.push(createAttribute(Globalize.translate('MediaInfoChannels'), stream.Channels + ' ch')); + attributes.push(createAttribute(globalize.translate('MediaInfoChannels'), stream.Channels + ' ch')); } if (stream.BitRate && stream.Codec != "mjpeg") { - attributes.push(createAttribute(Globalize.translate('MediaInfoBitrate'), (parseInt(stream.BitRate / 1000)) + ' kbps')); + attributes.push(createAttribute(globalize.translate('MediaInfoBitrate'), (parseInt(stream.BitRate / 1000)) + ' kbps')); } if (stream.SampleRate) { - attributes.push(createAttribute(Globalize.translate('MediaInfoSampleRate'), stream.SampleRate + ' Hz')); + attributes.push(createAttribute(globalize.translate('MediaInfoSampleRate'), stream.SampleRate + ' Hz')); } if (stream.BitDepth) { - attributes.push(createAttribute(Globalize.translate('MediaInfoBitDepth'), stream.BitDepth + ' bit')); + attributes.push(createAttribute(globalize.translate('MediaInfoBitDepth'), stream.BitDepth + ' bit')); } if (stream.PixelFormat) { - attributes.push(createAttribute(Globalize.translate('MediaInfoPixelFormat'), stream.PixelFormat)); + attributes.push(createAttribute(globalize.translate('MediaInfoPixelFormat'), stream.PixelFormat)); } if (stream.RefFrames) { - attributes.push(createAttribute(Globalize.translate('MediaInfoRefFrames'), stream.RefFrames)); + attributes.push(createAttribute(globalize.translate('MediaInfoRefFrames'), stream.RefFrames)); } if (stream.NalLengthSize) { @@ -1819,15 +2023,15 @@ } if (stream.Type != "Video") { - attributes.push(createAttribute(Globalize.translate('MediaInfoDefault'), (stream.IsDefault ? 'Yes' : 'No'))); + attributes.push(createAttribute(globalize.translate('MediaInfoDefault'), (stream.IsDefault ? 'Yes' : 'No'))); } if (stream.Type == "Subtitle") { - attributes.push(createAttribute(Globalize.translate('MediaInfoForced'), (stream.IsForced ? 'Yes' : 'No'))); - attributes.push(createAttribute(Globalize.translate('MediaInfoExternal'), (stream.IsExternal ? 'Yes' : 'No'))); + attributes.push(createAttribute(globalize.translate('MediaInfoForced'), (stream.IsForced ? 'Yes' : 'No'))); + attributes.push(createAttribute(globalize.translate('MediaInfoExternal'), (stream.IsExternal ? 'Yes' : 'No'))); } if (stream.Type == "Video" && version.Timestamp) { - attributes.push(createAttribute(Globalize.translate('MediaInfoTimestamp'), version.Timestamp)); + attributes.push(createAttribute(globalize.translate('MediaInfoTimestamp'), version.Timestamp)); } if (stream.DisplayTitle) { @@ -1840,22 +2044,22 @@ } if (version.Container) { - html += '
' + Globalize.translate('MediaInfoContainer') + '' + version.Container + '
'; + html += '
' + globalize.translate('MediaInfoContainer') + '' + version.Container + '
'; } if (version.Formats && version.Formats.length) { //html += '
'+Globalize.translate('MediaInfoFormat')+'' + version.Formats.join(',') + '
'; } - if (version.Path && version.Protocol != 'Http') { - html += '
' + Globalize.translate('MediaInfoPath') + '' + version.Path + '
'; + if (version.Path && version.Protocol != 'Http' && user && user.Policy.IsAdministrator) { + html += '
' + globalize.translate('MediaInfoPath') + '' + version.Path + '
'; } if (version.Size) { var size = (version.Size / (1024 * 1024)).toFixed(0); - html += '
' + Globalize.translate('MediaInfoSize') + '' + size + ' MB
'; + html += '
' + globalize.translate('MediaInfoSize') + '' + size + ' MB
'; } return html; @@ -1877,7 +2081,7 @@ }); if (limit && items.length > limit) { - html += '

'; + html += '

'; } return html; @@ -1889,7 +2093,7 @@ var specialsContent = page.querySelector('#specialsContent'); specialsContent.innerHTML = getVideosHtml(specials, user, limit, "moreSpecials"); - ImageLoader.lazyChildren(specialsContent); + imageLoader.lazyChildren(specialsContent); }); } @@ -1966,6 +2170,12 @@ function playTrailer(page) { + if (!currentItem.LocalTrailerCount) { + + shell.openUrl(currentItem.RemoteTrailers[0].Url); + return; + } + ApiClient.getLocalTrailers(Dashboard.getCurrentUserId(), currentItem.Id).then(function (trailers) { MediaController.play({ items: trailers }); @@ -2004,14 +2214,14 @@ require(['confirm'], function (confirm) { - confirm(Globalize.translate('MessageConfirmRecordingCancellation'), Globalize.translate('HeaderConfirmRecordingCancellation')).then(function () { + confirm(globalize.translate('MessageConfirmRecordingCancellation'), globalize.translate('HeaderConfirmRecordingCancellation')).then(function () { Dashboard.showLoadingMsg(); ApiClient.cancelLiveTvTimer(id).then(function () { require(['toast'], function (toast) { - toast(Globalize.translate('MessageRecordingCancelled')); + toast(globalize.translate('MessageRecordingCancelled')); }); reload(page, params); @@ -2039,64 +2249,33 @@ playCurrentItem(this); } - function onSyncClick() { - require(['syncDialog'], function (syncDialog) { - syncDialog.showMenu({ - items: [currentItem], - serverId: ApiClient.serverId() + function onDeleteClick() { + + require(['deleteHelper'], function (deleteHelper) { + + deleteHelper.deleteItem({ + item: currentItem, + navigate: true + }); + }); + } + + function onCancelSeriesTimerClick() { + + require(['recordingHelper'], function (recordingHelper) { + + recordingHelper.cancelSeriesTimerWithConfirmation(currentItem.Id, currentItem.ServerId).then(function () { + Dashboard.navigate('livetv.html'); }); }); } return function (view, params) { - function resetSyncStatus() { - updateSyncStatus(view, currentItem); - } - - function onSyncLocalClick() { - - if (this.checked) { - require(['syncDialog'], function (syncDialog) { - syncDialog.showMenu({ - items: [currentItem], - isLocalSync: true, - serverId: ApiClient.serverId() - - }).then(function () { - reload(view, params); - }, resetSyncStatus); - }); - } else { - - require(['confirm'], function (confirm) { - - confirm(Globalize.translate('ConfirmRemoveDownload')).then(function () { - ApiClient.cancelSyncItems([currentItem.Id]); - }, resetSyncStatus); - }); - } - } - function onPlayTrailerClick() { playTrailer(view); } - function onRecordClick() { - var id = params.id; - Dashboard.showLoadingMsg(); - - require(['recordingCreator'], function (recordingCreator) { - recordingCreator.show(id, currentItem.ServerId).then(function () { - reload(view, params); - }); - }); - } - - function onCancelRecordingClick() { - deleteTimer(view, params, currentItem.TimerId); - } - function onMoreCommandsClick() { var button = this; @@ -2122,21 +2301,21 @@ elems[i].addEventListener('click', onPlayTrailerClick); } + elems = view.querySelectorAll('.btnCancelSeriesTimer'); + for (i = 0, length = elems.length; i < length; i++) { + elems[i].addEventListener('click', onCancelSeriesTimerClick); + } + + elems = view.querySelectorAll('.btnDeleteItem'); + for (i = 0, length = elems.length; i < length; i++) { + elems[i].addEventListener('click', onDeleteClick); + } + view.querySelector('.btnSplitVersions').addEventListener('click', function () { splitVersions(view, params); }); - elems = view.querySelectorAll('.btnSync'); - for (i = 0, length = elems.length; i < length; i++) { - elems[i].addEventListener('click', onSyncClick); - } - - elems = view.querySelectorAll('.chkOffline'); - for (i = 0, length = elems.length; i < length; i++) { - elems[i].addEventListener('change', onSyncLocalClick); - } - elems = view.querySelectorAll('.btnMoreCommands'); for (i = 0, length = elems.length; i < length; i++) { elems[i].addEventListener('click', onMoreCommandsClick); @@ -2224,7 +2403,7 @@ var page = this; reload(page, params); - Events.on(ApiClient, 'websocketmessage', onWebSocketMessage); + events.on(ApiClient, 'websocketmessage', onWebSocketMessage); }); view.addEventListener('viewbeforehide', function () { @@ -2232,8 +2411,16 @@ currentItem = null; currentRecordingFields = null; - Events.off(ApiClient, 'websocketmessage', onWebSocketMessage); - LibraryMenu.setTransparentMenu(false); + events.off(ApiClient, 'websocketmessage', onWebSocketMessage); + libraryMenu.setTransparentMenu(false); + }); + + view.addEventListener('viewdestroy', function () { + + if (view.syncToggleInstance) { + view.syncToggleInstance.destroy(); + view.syncToggleInstance = null; + } }); }; }); \ No newline at end of file diff --git a/dashboard-ui/scripts/itemlistpage.js b/dashboard-ui/scripts/itemlistpage.js index db312cad41..d09d41183f 100644 --- a/dashboard-ui/scripts/itemlistpage.js +++ b/dashboard-ui/scripts/itemlistpage.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'alphaPicker', 'listView', 'cardBuilder', 'emby-itemscontainer'], function (libraryBrowser, alphaPicker, listView, cardBuilder) { +define(['libraryBrowser', 'alphaPicker', 'listView', 'cardBuilder', 'imageLoader', 'emby-itemscontainer'], function (libraryBrowser, alphaPicker, listView, cardBuilder, imageLoader) { + 'use strict'; return function (view, params) { @@ -160,7 +161,7 @@ var elem = view.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); var i, length; var elems = view.querySelectorAll('.paging'); diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 82d81b72a3..7ebdde9bfd 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -1,4 +1,5 @@ -define(['viewManager', 'appSettings', 'appStorage', 'apphost', 'datetime', 'itemHelper', 'mediaInfo', 'scroller', 'indicators', 'dom', 'browser', 'imageLoader', 'scrollStyles'], function (viewManager, appSettings, appStorage, appHost, datetime, itemHelper, mediaInfo, scroller, indicators, dom, browser) { +define(['appSettings', 'dom', 'browser', 'scrollStyles'], function (appSettings, dom, browser) { + 'use strict'; function fadeInRight(elem) { @@ -32,7 +33,7 @@ loadSavedQueryValues: function (key, query) { - var values = appStorage.getItem(key + '_' + Dashboard.getCurrentUserId()); + var values = appSettings.get(key + '_' + Dashboard.getCurrentUserId()); if (values) { @@ -56,7 +57,7 @@ } try { - appStorage.setItem(key + '_' + Dashboard.getCurrentUserId(), JSON.stringify(values)); + appSettings.set(key + '_' + Dashboard.getCurrentUserId(), JSON.stringify(values)); } catch (e) { } @@ -65,7 +66,7 @@ saveViewSetting: function (key, value) { try { - appStorage.setItem(key + '_' + Dashboard.getCurrentUserId() + '_view', value); + appSettings.set(key + '_' + Dashboard.getCurrentUserId() + '_view', value); } catch (e) { } @@ -73,7 +74,7 @@ getSavedView: function (key) { - var val = appStorage.getItem(key + '_' + Dashboard.getCurrentUserId() + '_view'); + var val = appSettings.get(key + '_' + Dashboard.getCurrentUserId() + '_view'); return val; }, @@ -96,7 +97,7 @@ } if (elem.classList) { - return !elem.classList.contains('hiddenScrollX') && !elem.classList.contains('smoothScrollX') && !elem.classList.contains('libraryViewNav'); + return !elem.classList.contains('hiddenScrollX') && !elem.classList.contains('smoothScrollX') && !elem.classList.contains('animatedScrollX'); } return true; @@ -139,7 +140,7 @@ }; require(['hammer-main'], function (hammertime) { - + hammertime.on('swipeleft', onSwipeLeft); hammertime.on('swiperight', onSwipeRight); @@ -201,7 +202,9 @@ if (window.location.href.toLowerCase().indexOf(url.toLowerCase()) != -1) { - afterNavigate.call(viewManager.currentView()); + require(['viewManager'], function (viewManager) { + afterNavigate.call(viewManager.currentView()); + }); } else { pageClassOn('pageinit', 'page', afterNavigate); @@ -236,24 +239,6 @@ getHref: function (item, context, topParentId) { - var href = LibraryBrowser.getHrefInternal(item, context); - - if (context == 'tv') { - if (!topParentId) { - topParentId = LibraryMenu.getTopParentId(); - } - - if (topParentId) { - href += href.indexOf('?') == -1 ? "?topParentId=" : "&topParentId="; - href += topParentId; - } - } - - return href; - }, - - getHrefInternal: function (item, context) { - if (!item) { throw new Error('item cannot be null'); } @@ -262,11 +247,13 @@ return item.url; } + var url; // Handle search hints var id = item.Id || item.ItemId; if (item.Type == "SeriesTimer") { - return "livetvseriestimer.html?id=" + id; + //return "livetvseriestimer.html?id=" + id; + return "itemdetails.html?seriesTimerId=" + id; } if (item.CollectionType == 'livetv') { @@ -345,16 +332,56 @@ return "itemdetails.html?id=" + id; } if (item.Type == "Genre") { - return "itemdetails.html?id=" + id; + var type; + switch (context) { + case 'tvshows': + type = 'Series'; + break; + case 'games': + type = 'Game'; + break; + default: + type = 'Movie'; + break; + } + + url = "secondaryitems.html?type=" + type + "&genreId=" + id; + if (topParentId) { + url += "&parentId=" + topParentId; + } + return url; } if (item.Type == "MusicGenre") { return "itemdetails.html?id=" + id; } if (item.Type == "GameGenre") { - return "itemdetails.html?id=" + id; + + url = "secondaryitems.html?type=Game&genreId=" + id; + if (topParentId) { + url += "&parentId=" + topParentId; + } + return url; } if (item.Type == "Studio") { - return "itemdetails.html?id=" + id; + + var type; + switch (context) { + case 'tvshows': + type = 'Series'; + break; + case 'games': + type = 'Game'; + break; + default: + type = 'Movie'; + break; + } + + url = "secondaryitems.html?type=" + type + "&studioId=" + id; + if (topParentId) { + url += "&parentId=" + topParentId; + } + return url; } if (item.Type == "Person") { return "itemdetails.html?id=" + id; @@ -423,17 +450,17 @@ renderName: function (item, nameElem, linkToElement, context) { - var name = itemHelper.getDisplayName(item, { - includeParentInfo: false + require(['itemHelper'], function (itemHelper) { + var name = itemHelper.getDisplayName(item, { + includeParentInfo: false + }); + + if (linkToElement) { + nameElem.innerHTML = '' + name + ''; + } else { + nameElem.innerHTML = name; + } }); - - LibraryMenu.setTitle(name); - - if (linkToElement) { - nameElem.innerHTML = '' + name + ''; - } else { - nameElem.innerHTML = name; - } }, renderParentName: function (item, parentNameElem, context) { @@ -467,7 +494,7 @@ } else if (item.Album) { html.push(item.Album); - } else if (item.Type == 'Program' && item.EpisodeTitle) { + } else if (item.Type == 'Program' && item.IsSeries) { html.push(item.Name); } @@ -535,7 +562,7 @@ if (limit && options.updatePageSizeSetting !== false) { try { - appStorage.setItem(options.pageSizeKey || pageSizeKey, limit); + appSettings.set(options.pageSizeKey || pageSizeKey, limit); } catch (e) { } @@ -705,7 +732,11 @@ }); }, - renderDetailImage: function (elem, item, editable, preferThumb) { + renderDetailImage: function (elem, item, editable, preferThumb, imageLoader, indicators) { + + if (item.Type === 'SeriesTimer') { + editable = false; + } var imageTags = item.ImageTags || {}; @@ -775,29 +806,21 @@ }); shape = 'square'; } - else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicGenre") { - url = "css/images/items/detail/audio.png"; - shape = 'square'; + else if (item.SeriesId && item.SeriesPrimaryImageTag) { + + url = ApiClient.getScaledImageUrl(item.SeriesId, { + type: "Primary", + maxHeight: imageHeight, + tag: item.SeriesPrimaryImageTag + }); } - else if (item.MediaType == "Game" || item.Type == "GameGenre") { - url = "css/images/items/detail/game.png"; - shape = 'square'; - } - else if (item.Type == "Person") { - url = "css/images/items/detail/person.png"; - shape = 'square'; - } - else if (item.Type == "Genre" || item.Type == "Studio") { - url = "css/images/items/detail/video.png"; - shape = 'square'; - } - else if (item.Type == "TvChannel") { - url = "css/images/items/detail/tv.png"; - shape = 'square'; - } - else { - url = "css/images/items/detail/video.png"; - shape = 'square'; + else if (item.ParentPrimaryImageItemId && item.ParentPrimaryImageTag) { + + url = ApiClient.getScaledImageUrl(item.ParentPrimaryImageItemId, { + type: "Primary", + maxHeight: imageHeight, + tag: item.ParentPrimaryImageTag + }); } html += '
'; @@ -848,16 +871,18 @@ elem.classList.remove('squareDetailImageContainer'); } - var img = elem.querySelector('img'); - img.onload = function () { - if (img.src.indexOf('empty.png') == -1) { - img.classList.add('loaded'); - } - }; - ImageLoader.lazyImage(img, url); + if (url) { + var img = elem.querySelector('img'); + img.onload = function () { + if (img.src.indexOf('empty.png') == -1) { + img.classList.add('loaded'); + } + }; + imageLoader.lazyImage(img, url); + } }, - renderDetailPageBackdrop: function (page, item) { + renderDetailPageBackdrop: function (page, item, imageLoader) { var screenWidth = screen.availWidth; @@ -876,7 +901,7 @@ }); itemBackdropElement.classList.remove('noBackdrop'); - ImageLoader.lazyImage(itemBackdropElement, imgUrl, false); + imageLoader.lazyImage(itemBackdropElement, imgUrl, false); hasbackdrop = true; } else if (item.ParentBackdropItemId && item.ParentBackdropImageTags && item.ParentBackdropImageTags.length) { @@ -889,7 +914,7 @@ }); itemBackdropElement.classList.remove('noBackdrop'); - ImageLoader.lazyImage(itemBackdropElement, imgUrl, false); + imageLoader.lazyImage(itemBackdropElement, imgUrl, false); hasbackdrop = true; } else { diff --git a/dashboard-ui/scripts/librarymenu.js b/dashboard-ui/scripts/librarymenu.js index 4753cb30a6..8808f8fe80 100644 --- a/dashboard-ui/scripts/librarymenu.js +++ b/dashboard-ui/scripts/librarymenu.js @@ -1,4 +1,5 @@ -define(['imageLoader', 'layoutManager', 'viewManager', 'libraryBrowser', 'apphost', 'embyRouter', 'paper-icon-button-light', 'material-icons'], function (imageLoader, layoutManager, viewManager, libraryBrowser, appHost, embyRouter) { +define(['layoutManager', 'viewManager', 'libraryBrowser', 'embyRouter', 'paper-icon-button-light', 'material-icons'], function (layoutManager, viewManager, libraryBrowser, embyRouter) { + 'use strict'; var enableBottomTabs = AppInfo.isNativeApp; var enableLibraryNavDrawer = !enableBottomTabs; @@ -21,7 +22,7 @@ html += ''; html += ''; - html += '
' + Globalize.translate('ButtonHome') + '
'; + html += '

' + Globalize.translate('ButtonHome') + '

'; html += '
'; @@ -52,12 +53,18 @@ document.querySelector('.skinHeader').appendChild(viewMenuBar); - imageLoader.lazyChildren(document.querySelector('.viewMenuBar')); + lazyLoadViewMenuBarImages(); document.dispatchEvent(new CustomEvent("headercreated", {})); bindMenuEvents(); } + function lazyLoadViewMenuBarImages() { + require(['imageLoader'], function (imageLoader) { + imageLoader.lazyChildren(document.querySelector('.viewMenuBar')); + }); + } + function onBackClick() { embyRouter.back(); @@ -139,13 +146,11 @@ } require(['apphost'], function (apphost) { - if (apphost.supports('voiceinput')) { - header.querySelector('.headerVoiceButton').classList.remove('hide'); + header.querySelector('.headerVoiceButton').classList.add('hide'); } else { header.querySelector('.headerVoiceButton').classList.add('hide'); } - }); } else { @@ -307,7 +312,7 @@ html += '
'; if (user.localUser && (AppInfo.isNativeApp && browserInfo.android)) { - html += 'settings' + Globalize.translate('ButtonSettings') + ''; + html += 'settings' + Globalize.translate('ButtonSettings') + ''; } html += 'file_download' + Globalize.translate('ManageOfflineDownloads') + ''; @@ -459,11 +464,13 @@ showBySelector('.lnkSyncToOtherDevices', false); } - if (user.Policy.EnableSync && appHost.supports('sync')) { - showBySelector('.lnkManageOffline', true); - } else { - showBySelector('.lnkManageOffline', false); - } + require(['apphost'], function (appHost) { + if (user.Policy.EnableSync && appHost.supports('sync')) { + showBySelector('.lnkManageOffline', true); + } else { + showBySelector('.lnkManageOffline', false); + } + }); var userId = Dashboard.getCurrentUserId(); @@ -1048,4 +1055,6 @@ }); }); } + + return LibraryMenu; }); \ No newline at end of file diff --git a/dashboard-ui/scripts/librarypathmapping.js b/dashboard-ui/scripts/librarypathmapping.js deleted file mode 100644 index d53050ee24..0000000000 --- a/dashboard-ui/scripts/librarypathmapping.js +++ /dev/null @@ -1,161 +0,0 @@ -define(['jQuery', 'listViewStyle'], function ($) { - - var currentConfig; - - function remove(page, index) { - - require(['confirm'], function (confirm) { - - confirm(Globalize.translate('MessageConfirmPathSubstitutionDeletion'), Globalize.translate('HeaderConfirmDeletion')).then(function () { - - ApiClient.getServerConfiguration().then(function (config) { - - config.PathSubstitutions.splice(index, 1); - - ApiClient.updateServerConfiguration(config).then(function () { - - reload(page); - }); - }); - }); - }); - } - - function addSubstitution(page, config) { - - config.PathSubstitutions.push({ - From: $('#txtFrom', page).val(), - To: $('#txtTo', page).val() - }); - - } - - function reloadPathMappings(page, config) { - - var index = 0; - - var html = config.PathSubstitutions.map(function (map) { - - var mapHtml = ''; - mapHtml += '
'; - - mapHtml += 'folder'; - - mapHtml += '
'; - - mapHtml += "

" + map.From + "

"; - mapHtml += "
" + Globalize.translate('HeaderTo') + "
"; - mapHtml += "
" + map.To + "
"; - - mapHtml += '
'; - - mapHtml += ''; - - mapHtml += '
'; - - index++; - - return mapHtml; - - }).join(''); - - if (config.PathSubstitutions.length) { - html = '
' + html + '
'; - } - - var elem = $('.pathSubstitutions', page).html(html); - - $('.btnDeletePath', elem).on('click', function () { - - remove(page, parseInt(this.getAttribute('data-index'))); - }); - } - - function loadPage(page, config) { - - currentConfig = config; - - reloadPathMappings(page, config); - Dashboard.hideLoadingMsg(); - } - - function reload(page) { - - $('#txtFrom', page).val(''); - $('#txtTo', page).val(''); - - ApiClient.getServerConfiguration().then(function (config) { - - loadPage(page, config); - - }); - } - - function onSubmit() { - Dashboard.showLoadingMsg(); - - var form = this; - var page = $(form).parents('.page'); - - ApiClient.getServerConfiguration().then(function (config) { - - addSubstitution(page, config); - ApiClient.updateServerConfiguration(config).then(function () { - - reload(page); - }); - }); - - // Disable default form submission - return false; - } - - function getTabs() { - return [ - { - href: 'library.html', - name: Globalize.translate('HeaderLibraries') - }, - { - href: 'librarydisplay.html', - name: Globalize.translate('TabDisplay') - }, - { - href: 'librarypathmapping.html', - name: Globalize.translate('TabPathSubstitution') - }, - { - href: 'librarysettings.html', - name: Globalize.translate('TabAdvanced') - }]; - } - - - $(document).on('pageinit', "#libraryPathMappingPage", function () { - - var page = this; - - $('.libraryPathMappingForm').off('submit', onSubmit).on('submit', onSubmit); - - page.querySelector('.labelFromHelp').innerHTML = Globalize.translate('LabelFromHelp', 'D:\\Movies'); - - }).on('pageshow', "#libraryPathMappingPage", function () { - - LibraryMenu.setTabs('librarysetup', 2, getTabs); - Dashboard.showLoadingMsg(); - - var page = this; - - ApiClient.getServerConfiguration().then(function (config) { - - loadPage(page, config); - - }); - - }).on('pagebeforehide', "#libraryPathMappingPage", function () { - - currentConfig = null; - - }); - -}); diff --git a/dashboard-ui/scripts/livetvchannel.js b/dashboard-ui/scripts/livetvchannel.js index e1f24c1e79..507f0233bc 100644 --- a/dashboard-ui/scripts/livetvchannel.js +++ b/dashboard-ui/scripts/livetvchannel.js @@ -1,4 +1,5 @@ define(['datetime', 'listView'], function (datetime, listView) { + 'use strict'; function isSameDay(date1, date2) { @@ -16,11 +17,12 @@ var item = result.Items[i]; var itemStartDate = datetime.parseISO8601Date(item.StartDate); + if (!currentStartDate || !isSameDay(currentStartDate, itemStartDate)) { if (currentItems.length) { - html += '

' + datetime.toLocaleDateString(itemStartDate, { weekday: 'long', month: 'long', day: 'numeric' }) + '

'; + html += '

' + datetime.toLocaleDateString(currentStartDate, { weekday: 'long', month: 'long', day: 'numeric' }) + '

'; html += '
' + listView.getListViewHtml({ items: currentItems, @@ -36,7 +38,6 @@ currentStartDate = itemStartDate; currentItems = []; - } currentItems.push(item); diff --git a/dashboard-ui/scripts/livetvchannels.js b/dashboard-ui/scripts/livetvchannels.js index d925116a11..394a257716 100644 --- a/dashboard-ui/scripts/livetvchannels.js +++ b/dashboard-ui/scripts/livetvchannels.js @@ -1,4 +1,5 @@ -define(['cardBuilder', 'emby-itemscontainer'], function (cardBuilder) { +define(['cardBuilder', 'imageLoader', 'emby-itemscontainer'], function (cardBuilder, imageLoader) { + 'use strict'; return function (view, params, tabContent) { @@ -67,7 +68,7 @@ var elem = context.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); var i, length; var elems; diff --git a/dashboard-ui/scripts/livetvcomponents.js b/dashboard-ui/scripts/livetvcomponents.js index 734bbf3ea1..185dcb56d3 100644 --- a/dashboard-ui/scripts/livetvcomponents.js +++ b/dashboard-ui/scripts/livetvcomponents.js @@ -1,4 +1,5 @@ define(['datetime', 'cardBuilder', 'apphost'], function (datetime, cardBuilder, appHost) { + 'use strict'; function enableScrollX() { return browserInfo.mobile && AppInfo.enableAppLayouts; diff --git a/dashboard-ui/scripts/livetvguide.js b/dashboard-ui/scripts/livetvguide.js index 37f5dc286e..42cb4b9acd 100644 --- a/dashboard-ui/scripts/livetvguide.js +++ b/dashboard-ui/scripts/livetvguide.js @@ -1,4 +1,5 @@ define(['tvguide'], function (tvguide) { + 'use strict'; return function (view, params, tabContent) { @@ -10,6 +11,16 @@ element: tabContent }); } + }; + self.onShow = function () { + if (guideInstance) { + guideInstance.resume(); + } + }; + self.onHide = function () { + if (guideInstance) { + guideInstance.pause(); + } }; }; }); \ No newline at end of file diff --git a/dashboard-ui/scripts/livetvguideprovider.js b/dashboard-ui/scripts/livetvguideprovider.js index 0662ec651c..8510f983e0 100644 --- a/dashboard-ui/scripts/livetvguideprovider.js +++ b/dashboard-ui/scripts/livetvguideprovider.js @@ -1,4 +1,5 @@ define(['events'], function (events) { + 'use strict'; function onListingsSubmitted() { diff --git a/dashboard-ui/scripts/livetvitems.js b/dashboard-ui/scripts/livetvitems.js index de413844f1..0f4fbb789e 100644 --- a/dashboard-ui/scripts/livetvitems.js +++ b/dashboard-ui/scripts/livetvitems.js @@ -1,4 +1,5 @@ -define(['cardBuilder', 'apphost', 'emby-itemscontainer'], function (cardBuilder, appHost) { +define(['cardBuilder', 'apphost', 'imageLoader', 'emby-itemscontainer'], function (cardBuilder, appHost, imageLoader) { + 'use strict'; return function (view, params) { @@ -75,6 +76,7 @@ showChannelName: params.type != 'Recordings' && params.type != 'RecordingSeries', overlayMoreButton: !supportsImageAnalysis, showYear: query.IsMovie && params.type == 'Recordings', + showSeriesYear: params.type === 'RecordingSeries', coverImage: true, cardLayout: supportsImageAnalysis, vibrant: supportsImageAnalysis @@ -82,7 +84,7 @@ var elem = page.querySelector('.itemsContainer'); elem.innerHTML = html + pagingHtml; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); var i, length; var elems; diff --git a/dashboard-ui/scripts/livetvrecordings.js b/dashboard-ui/scripts/livetvrecordings.js index 956d6c9e77..f38052e298 100644 --- a/dashboard-ui/scripts/livetvrecordings.js +++ b/dashboard-ui/scripts/livetvrecordings.js @@ -1,4 +1,5 @@ -define(['components/categorysyncbuttons', 'cardBuilder', 'apphost', 'scripts/livetvcomponents', 'emby-button', 'listViewStyle', 'emby-itemscontainer'], function (categorysyncbuttons, cardBuilder, appHost) { +define(['components/categorysyncbuttons', 'cardBuilder', 'apphost', 'imageLoader', 'scripts/livetvcomponents', 'emby-button', 'listViewStyle', 'emby-itemscontainer'], function (categorysyncbuttons, cardBuilder, appHost, imageLoader) { + 'use strict'; function getRecordingGroupHtml(group) { @@ -95,7 +96,7 @@ }, cardOptions || {})); - ImageLoader.lazyChildren(recordingItems); + imageLoader.lazyChildren(recordingItems); } function getBackdropShape() { @@ -154,7 +155,7 @@ promise.then(function (result) { renderRecordings(context.querySelector('#episodeRecordings'), result.Items, { - showItemCounts: true, + showSeriesYear: true, showParentTitle: false }); }); diff --git a/dashboard-ui/scripts/livetvschedule.js b/dashboard-ui/scripts/livetvschedule.js index 85442376e6..ad932824be 100644 --- a/dashboard-ui/scripts/livetvschedule.js +++ b/dashboard-ui/scripts/livetvschedule.js @@ -1,4 +1,5 @@ -define(['cardBuilder', 'apphost', 'scripts/livetvcomponents', 'emby-button', 'emby-itemscontainer'], function (cardBuilder, appHost) { +define(['cardBuilder', 'apphost', 'imageLoader', 'scripts/livetvcomponents', 'emby-button', 'emby-itemscontainer'], function (cardBuilder, appHost, imageLoader) { + 'use strict'; function enableScrollX() { return browserInfo.mobile && AppInfo.enableAppLayouts; @@ -39,7 +40,7 @@ }, cardOptions || {})); - ImageLoader.lazyChildren(recordingItems); + imageLoader.lazyChildren(recordingItems); } function getBackdropShape() { @@ -83,7 +84,7 @@ elem.querySelector('.recordingItems').innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); }); } diff --git a/dashboard-ui/scripts/livetvseriestimer.js b/dashboard-ui/scripts/livetvseriestimer.js deleted file mode 100644 index a19578fa40..0000000000 --- a/dashboard-ui/scripts/livetvseriestimer.js +++ /dev/null @@ -1,82 +0,0 @@ -define(['datetime', 'dom', 'seriesRecordingEditor', 'listView', 'emby-itemscontainer'], function (datetime, dom, seriesRecordingEditor, listView) { - - return function (view, params) { - - function renderTimer(page, item) { - - page.querySelector('.itemName').innerHTML = item.Name; - - Dashboard.hideLoadingMsg(); - } - - function getProgramScheduleHtml(items, options) { - - options = options || {}; - - var html = ''; - html += '
'; - html += listView.getListViewHtml({ - items: items, - enableUserDataButtons: false, - image: false, - showProgramDateTime: true, - mediaInfo: false, - action: 'none', - moreButton: false, - recordButton: false - }); - - html += '
'; - - return html; - } - - function renderSchedule(page) { - - ApiClient.getLiveTvTimers({ - UserId: ApiClient.getCurrentUserId(), - ImageTypeLimit: 1, - EnableImageTypes: "Primary,Backdrop,Thumb", - SortBy: "StartDate", - EnableTotalRecordCount: false, - EnableUserData: false, - SeriesTimerId: params.id, - Fields: "ChannelInfo" - - }).then(function (result) { - - if (result.Items.length && result.Items[0].SeriesTimerId != params.id) { - result.Items = []; - } - - var html = getProgramScheduleHtml(result.Items); - - var scheduleTab = page.querySelector('.scheduleTab'); - scheduleTab.innerHTML = html; - - ImageLoader.lazyChildren(scheduleTab); - }); - } - - function reload() { - - var id = params.id; - Dashboard.showLoadingMsg(); - - ApiClient.getLiveTvSeriesTimer(id).then(function (result) { - - renderTimer(view, result); - - }); - - renderSchedule(view); - } - - seriesRecordingEditor.embed(params.id, ApiClient.serverId(), { - context: view.querySelector('.recordingEditor') - }); - - view.querySelector('.scheduleTab').addEventListener('timercancelled', reload); - view.addEventListener('viewbeforeshow', reload); - }; -}); \ No newline at end of file diff --git a/dashboard-ui/scripts/livetvseriestimers.js b/dashboard-ui/scripts/livetvseriestimers.js index 8584c64184..4f51ba9fbe 100644 --- a/dashboard-ui/scripts/livetvseriestimers.js +++ b/dashboard-ui/scripts/livetvseriestimers.js @@ -1,4 +1,5 @@ define(['datetime', 'cardBuilder', 'imageLoader', 'apphost', 'paper-icon-button-light', 'emby-button'], function (datetime, cardBuilder, imageLoader, appHost) { + 'use strict'; var query = { diff --git a/dashboard-ui/scripts/livetvsettings.js b/dashboard-ui/scripts/livetvsettings.js index 37ee54af05..1705a1bfbc 100644 --- a/dashboard-ui/scripts/livetvsettings.js +++ b/dashboard-ui/scripts/livetvsettings.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; function loadPage(page, config) { @@ -11,6 +12,7 @@ $('#chkOrganize', page).checked(config.EnableAutoOrganize); $('#chkConvertRecordings', page).checked(config.EnableRecordingEncoding); $('#chkPreserveAudio', page).checked(config.EnableOriginalAudioWithEncodedRecordings || false); + $('#chkPreserveVideo', page).checked(config.RecordedVideoCodec == 'copy'); $('#txtPrePaddingMinutes', page).val(config.PrePaddingSeconds / 60); $('#txtPostPaddingMinutes', page).val(config.PostPaddingSeconds / 60); @@ -20,7 +22,8 @@ page.querySelector('#txtSeriesRecordingPath').value = config.SeriesRecordingPath || ''; page.querySelector('#selectConversionFormat').value = config.RecordingEncodingFormat || ''; - page.querySelector('#chkEnableRecordingSubfolders').checked = config.EnableRecordingSubfolders || false; + page.querySelector('#txtPostProcessor').value = config.RecordingPostProcessor || ''; + page.querySelector('#txtPostProcessorArguments').value = config.RecordingPostProcessorArguments || ''; Dashboard.hideLoadingMsg(); } @@ -38,6 +41,7 @@ config.EnableAutoOrganize = $('#chkOrganize', form).checked(); config.EnableRecordingEncoding = $('#chkConvertRecordings', form).checked(); config.EnableOriginalAudioWithEncodedRecordings = $('#chkPreserveAudio', form).checked(); + config.RecordedVideoCodec = $('#chkPreserveVideo', form).checked() ? 'copy' : null; var recordingPath = form.querySelector('#txtRecordingPath').value || null; var movieRecordingPath = form.querySelector('#txtMovieRecordingPath').value || null; @@ -54,7 +58,9 @@ config.RecordingEncodingFormat = form.querySelector('#selectConversionFormat').value; config.PrePaddingSeconds = $('#txtPrePaddingMinutes', form).val() * 60; config.PostPaddingSeconds = $('#txtPostPaddingMinutes', form).val() * 60; - config.EnableRecordingSubfolders = form.querySelector('#chkEnableRecordingSubfolders').checked; + + config.RecordingPostProcessor = $('#txtPostProcessor', form).val(); + config.RecordingPostProcessorArguments = $('#txtPostProcessorArguments', form).val(); ApiClient.updateNamedConfiguration("livetv", config).then(function () { Dashboard.processServerConfigurationUpdateResult(); @@ -161,6 +167,26 @@ }); }); + $('#btnSelectPostProcessorPath', page).on("click.selectDirectory", function () { + + require(['directorybrowser'], function (directoryBrowser) { + + var picker = new directoryBrowser(); + + picker.show({ + + includeFiles: true, + callback: function (path) { + + if (path) { + $('#txtPostProcessor', page).val(path); + } + picker.close(); + } + }); + }); + }); + }).on('pageshow', "#liveTvSettingsPage", function () { LibraryMenu.setTabs('livetvadmin', 1, getTabs); diff --git a/dashboard-ui/scripts/livetvstatus.js b/dashboard-ui/scripts/livetvstatus.js index aead5dcb3f..90bf79d393 100644 --- a/dashboard-ui/scripts/livetvstatus.js +++ b/dashboard-ui/scripts/livetvstatus.js @@ -1,4 +1,5 @@ define(['jQuery', 'scripts/taskbutton', 'listViewStyle'], function ($, taskButton) { + 'use strict'; function resetTuner(page, id) { @@ -422,7 +423,7 @@ switch (providerId) { case 'm3u': - return 'M3U Playlist'; + return 'M3U'; case 'hdhomerun': return 'HDHomerun'; case 'satip': diff --git a/dashboard-ui/scripts/livetvsuggested.js b/dashboard-ui/scripts/livetvsuggested.js index b8e79aad75..20410cde8c 100644 --- a/dashboard-ui/scripts/livetvsuggested.js +++ b/dashboard-ui/scripts/livetvsuggested.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'cardBuilder', 'apphost', 'scrollStyles', 'emby-itemscontainer', 'emby-tabs', 'emby-button'], function (libraryBrowser, cardBuilder, appHost) { +define(['libraryBrowser', 'cardBuilder', 'apphost', 'imageLoader', 'scrollStyles', 'emby-itemscontainer', 'emby-tabs', 'emby-button'], function (libraryBrowser, cardBuilder, appHost, imageLoader) { + 'use strict'; function enableScrollX() { return browserInfo.mobile && AppInfo.enableAppLayouts; @@ -36,7 +37,7 @@ }, cardOptions || {})); - ImageLoader.lazyChildren(recordingItems); + imageLoader.lazyChildren(recordingItems); } function getBackdropShape() { @@ -224,7 +225,7 @@ var elem = page.querySelector('.' + sectionClass); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); } return function (view, params) { @@ -265,6 +266,7 @@ var tabControllers = []; var renderedTabs = []; + var currentTabController; function getTabController(page, index, callback) { @@ -342,7 +344,12 @@ renderedTabs.push(index); } controller.renderTab(); + } else { + if (controller.onShow) { + controller.onShow(); + } } + currentTabController = controller; }); } @@ -355,11 +362,20 @@ }); viewTabs.addEventListener('tabchange', function (e) { + + var previousTabController = tabControllers[parseInt(e.detail.previousIndex)]; + if (previousTabController && previousTabController.onHide) { + previousTabController.onHide(); + } + loadTab(view, parseInt(e.detail.selectedTabIndex)); }); view.addEventListener('viewbeforehide', function (e) { + if (currentTabController && currentTabController.onHide) { + currentTabController.onHide(); + } document.body.classList.remove('autoScrollY'); }); diff --git a/dashboard-ui/scripts/livetvtunerprovider-hdhomerun.js b/dashboard-ui/scripts/livetvtunerprovider-hdhomerun.js index e563c273ea..c4753c126e 100644 --- a/dashboard-ui/scripts/livetvtunerprovider-hdhomerun.js +++ b/dashboard-ui/scripts/livetvtunerprovider-hdhomerun.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function reload(page, providerId) { diff --git a/dashboard-ui/scripts/livetvtunerprovider-m3u.js b/dashboard-ui/scripts/livetvtunerprovider-m3u.js index 2b107e90ab..d81718f470 100644 --- a/dashboard-ui/scripts/livetvtunerprovider-m3u.js +++ b/dashboard-ui/scripts/livetvtunerprovider-m3u.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function reload(page, providerId) { diff --git a/dashboard-ui/scripts/localsync.js b/dashboard-ui/scripts/localsync.js index 710e9ea8ef..f4fbbeed3d 100644 --- a/dashboard-ui/scripts/localsync.js +++ b/dashboard-ui/scripts/localsync.js @@ -1,4 +1,5 @@ define(['appSettings', 'connectionManager'], function (appSettings, connectionManager) { + 'use strict'; var syncPromise; diff --git a/dashboard-ui/scripts/loginpage.js b/dashboard-ui/scripts/loginpage.js index 59a5e827d6..4f93c00930 100644 --- a/dashboard-ui/scripts/loginpage.js +++ b/dashboard-ui/scripts/loginpage.js @@ -1,4 +1,5 @@ define(['appSettings', 'dom', 'connectionManager', 'cardStyle', 'emby-checkbox'], function (appSettings, dom, connectionManager) { + 'use strict'; function authenticateUserByName(page, apiClient, username, password) { diff --git a/dashboard-ui/scripts/mediacontroller.js b/dashboard-ui/scripts/mediacontroller.js index 24a2e81b9c..98c439eaa8 100644 --- a/dashboard-ui/scripts/mediacontroller.js +++ b/dashboard-ui/scripts/mediacontroller.js @@ -1,4 +1,5 @@ -define(['appStorage', 'events', 'browser'], function (appStorage, events, browser) { +define(['appSettings', 'events', 'browser'], function (appSettings, events, browser) { + 'use strict'; var currentDisplayInfo; var datetime; @@ -459,22 +460,24 @@ }); }; - function doWithPlaybackValidation(player, fn) { + function validatePlayback(player) { if (!player.isLocalPlayer) { - fn(); - return; + return Promise.resolve(); } - requirejs(["registrationServices"], function (registrationServices) { + return new Promise(function (resolve, reject) { - self.playbackTimeLimitMs = null; + requirejs(["registrationServices"], function (registrationServices) { - registrationServices.validateFeature('playback').then(fn, function () { + self.playbackTimeLimitMs = null; - self.playbackTimeLimitMs = lockedTimeLimitMs; - startAutoStopTimer(); - fn(); + registrationServices.validateFeature('playback').then(resolve, function () { + + self.playbackTimeLimitMs = lockedTimeLimitMs; + startAutoStopTimer(); + resolve(); + }); }); }); } @@ -509,7 +512,7 @@ if (enabled != null) { var val = enabled ? '1' : '0'; - appStorage.setItem('displaymirror--' + Dashboard.getCurrentUserId(), val); + appSettings.set('displaymirror--' + Dashboard.getCurrentUserId(), val); if (enabled) { mirrorIfEnabled(); @@ -517,23 +520,23 @@ return; } - return (appStorage.getItem('displaymirror--' + Dashboard.getCurrentUserId()) || '') != '0'; + return (appSettings.get('displaymirror--' + Dashboard.getCurrentUserId()) || '') != '0'; }; self.play = function (options) { if (options.enableRemotePlayers === false) { if (!currentPlayer.isLocalPlayer) { - return; + return Promise.reject(); } } - doWithPlaybackValidation(currentPlayer, function () { + return validatePlayback(currentPlayer).then(function () { if (typeof (options) === 'string') { options = { ids: [options] }; } - currentPlayer.play(options); + return currentPlayer.play(options); }); }; @@ -544,7 +547,7 @@ id = id.Id; } - doWithPlaybackValidation(currentPlayer, function () { + validatePlayback(currentPlayer).then(function () { currentPlayer.shuffle(id); }); }; @@ -556,7 +559,7 @@ id = id.Id; } - doWithPlaybackValidation(currentPlayer, function () { + validatePlayback(currentPlayer).then(function () { currentPlayer.instantMix(id); }); }; @@ -980,7 +983,7 @@ }); }; - self.supportsDirectPlay = function (mediaSource) { + self.supportsDirectPlay = function (mediaSource, itemType) { return new Promise(function (resolve, reject) { if (mediaSource.SupportsDirectPlay) { @@ -993,6 +996,7 @@ } else { var val = mediaSource.Path.toLowerCase().replace('https:', 'http').indexOf(ApiClient.serverAddress().toLowerCase().replace('https:', 'http').substring(0, 14)) == 0; + //resolve(val || itemType !== 'TvChannel'); resolve(val); } } diff --git a/dashboard-ui/scripts/medialibrarypage.js b/dashboard-ui/scripts/medialibrarypage.js index 2ed88e3a33..d0856c6d5e 100644 --- a/dashboard-ui/scripts/medialibrarypage.js +++ b/dashboard-ui/scripts/medialibrarypage.js @@ -1,4 +1,5 @@ define(['jQuery', 'apphost', 'scripts/taskbutton', 'cardStyle'], function ($, appHost, taskButton) { + 'use strict'; function changeCollectionType(page, virtualFolder) { @@ -249,7 +250,7 @@ { name: Globalize.translate('FolderTypeMovies'), value: "movies" }, { name: Globalize.translate('FolderTypeMusic'), value: "music" }, { name: Globalize.translate('FolderTypeTvShows'), value: "tvshows" }, - { name: Globalize.translate('FolderTypeBooks'), value: "books", message: Globalize.translate('MessageBookPluginRequired') }, + { name: Globalize.translate('FolderTypeBooks'), value: "books", message: Globalize.translate('BookLibraryHelp') }, { name: Globalize.translate('FolderTypeGames'), value: "games", message: Globalize.translate('MessageGamePluginRequired') }, { name: Globalize.translate('OptionHomeVideos'), value: "homevideos" }, { name: Globalize.translate('FolderTypeMusicVideos'), value: "musicvideos" }, @@ -442,10 +443,6 @@ href: 'librarydisplay.html', name: Globalize.translate('TabDisplay') }, - { - href: 'librarypathmapping.html', - name: Globalize.translate('TabPathSubstitution') - }, { href: 'librarysettings.html', name: Globalize.translate('TabAdvanced') diff --git a/dashboard-ui/scripts/mediaplayer-video.js b/dashboard-ui/scripts/mediaplayer-video.js index ba3b9e2b46..e33ac6d98b 100644 --- a/dashboard-ui/scripts/mediaplayer-video.js +++ b/dashboard-ui/scripts/mediaplayer-video.js @@ -1,4 +1,5 @@ -define(['appSettings', 'datetime', 'mediaInfo', 'browser', 'scrollStyles', 'paper-icon-button-light'], function (appSettings, datetime, mediaInfo, browser) { +define(['appSettings', 'datetime', 'mediaInfo', 'browser', 'imageLoader', 'scrollStyles', 'paper-icon-button-light'], function (appSettings, datetime, mediaInfo, browser, imageLoader) { + 'use strict'; function createVideoPlayer(self) { @@ -425,11 +426,11 @@ width: 160, shape: 'portrait' }); - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); }); } else { - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); } function onTabButtonClick() { @@ -981,18 +982,27 @@ var hlsPlaylistUrl = streamInfo.url.replace('master.m3u8', 'live.m3u8'); Dashboard.showLoadingMsg(); + + console.log('prefetching hls playlist: ' + hlsPlaylistUrl); + ApiClient.ajax({ type: 'GET', url: hlsPlaylistUrl }).then(function () { + + console.log('completed prefetching hls playlist: ' + hlsPlaylistUrl); + Dashboard.hideLoadingMsg(); streamInfo.url = hlsPlaylistUrl; setTimeout(onReadyToPlay, 0); }, function () { + + console.log('error prefetching hls playlist: ' + hlsPlaylistUrl); + Dashboard.hideLoadingMsg(); }); diff --git a/dashboard-ui/scripts/metadataconfigurationpage.js b/dashboard-ui/scripts/metadataconfigurationpage.js index dd25f82b54..2cb39c0af6 100644 --- a/dashboard-ui/scripts/metadataconfigurationpage.js +++ b/dashboard-ui/scripts/metadataconfigurationpage.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; function load(page, config, allCultures, allCountries) { if (!config || !allCultures || !allCountries) { diff --git a/dashboard-ui/scripts/metadataimagespage.js b/dashboard-ui/scripts/metadataimagespage.js index 13f36a8eba..1c1f7ced53 100644 --- a/dashboard-ui/scripts/metadataimagespage.js +++ b/dashboard-ui/scripts/metadataimagespage.js @@ -1,4 +1,5 @@ define(['jQuery', 'dom', 'listViewStyle'], function ($, dom) { + 'use strict'; var currentType; diff --git a/dashboard-ui/scripts/metadatanfo.js b/dashboard-ui/scripts/metadatanfo.js index 626bbf222d..6cd72ca901 100644 --- a/dashboard-ui/scripts/metadatanfo.js +++ b/dashboard-ui/scripts/metadatanfo.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; var metadataKey = "xbmcmetadata"; diff --git a/dashboard-ui/scripts/metadatasubtitles.js b/dashboard-ui/scripts/metadatasubtitles.js index 7e78fbcb7e..473f8954b3 100644 --- a/dashboard-ui/scripts/metadatasubtitles.js +++ b/dashboard-ui/scripts/metadatasubtitles.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; function loadPage(page, config, languages) { diff --git a/dashboard-ui/scripts/moviecollections.js b/dashboard-ui/scripts/moviecollections.js index 7ef98822f5..f0c439624b 100644 --- a/dashboard-ui/scripts/moviecollections.js +++ b/dashboard-ui/scripts/moviecollections.js @@ -1,4 +1,5 @@ -define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder) { +define(['events', 'libraryBrowser', 'imageLoader', 'listView', 'cardBuilder', 'apphost', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, listView, cardBuilder, appHost) { + 'use strict'; return function (view, params, tabContent) { @@ -24,7 +25,7 @@ StartIndex: 0, Limit: pageSize }, - view: libraryBrowser.getSavedView(key) || 'Poster' + view: libraryBrowser.getSavedView(key) || (appHost.preferVisualCards ? 'PosterCard' : 'Poster') }; libraryBrowser.loadSavedQueryValues(key, pageData.query); @@ -40,7 +41,7 @@ function getSavedQueryKey(context) { if (!context.savedQueryKey) { - context.savedQueryKey = libraryBrowser.getSavedQueryKey('movies'); + context.savedQueryKey = libraryBrowser.getSavedQueryKey('moviecollections'); } return context.savedQueryKey; } @@ -204,26 +205,10 @@ function updateFilterControls(tabContent) { - var query = getQuery(tabContent); - self.alphaPicker.value(query.NameStartsWithOrGreater); } function initPage(tabContent) { - var alphaPickerElement = tabContent.querySelector('.alphaPicker'); - alphaPickerElement.addEventListener('alphavaluechanged', function (e) { - var newValue = e.detail.value; - var query = getQuery(tabContent); - query.NameStartsWithOrGreater = newValue; - query.StartIndex = 0; - reloadItems(tabContent); - }); - - self.alphaPicker = new alphaPicker({ - element: alphaPickerElement, - valueChangeEvent: 'click' - }); - tabContent.querySelector('.btnSort').addEventListener('click', function (e) { libraryBrowser.showSortMenu({ items: [{ diff --git a/dashboard-ui/scripts/moviegenres.js b/dashboard-ui/scripts/moviegenres.js index 586d2d5f49..a146cc3adf 100644 --- a/dashboard-ui/scripts/moviegenres.js +++ b/dashboard-ui/scripts/moviegenres.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'cardBuilder'], function (libraryBrowser, cardBuilder) { +define(['libraryBrowser', 'cardBuilder', 'lazyLoader', 'apphost', 'globalize', 'dom'], function (libraryBrowser, cardBuilder, lazyLoader, appHost, globalize, dom) { + 'use strict'; return function (view, params, tabContent) { @@ -16,10 +17,9 @@ SortOrder: "Ascending", IncludeItemTypes: "Movie", Recursive: true, - Fields: "DateCreated,ItemCounts,PrimaryImageAspectRatio", - StartIndex: 0 + EnableTotalRecordCount: false }, - view: libraryBrowser.getSavedView(key) || 'Thumb' + view: libraryBrowser.getSavedView(key) || (appHost.preferVisualCards ? 'PosterCard' : 'Poster') }; pageData.query.ParentId = params.topParentId; @@ -35,7 +35,7 @@ function getSavedQueryKey() { - return libraryBrowser.getSavedQueryKey('genres'); + return libraryBrowser.getSavedQueryKey('moviegenres'); } function getPromise() { @@ -46,65 +46,167 @@ return ApiClient.getGenres(Dashboard.getCurrentUserId(), query); } - function reloadItems(context, promise) { + function enableScrollX() { + return browserInfo.mobile && AppInfo.enableAppLayouts; + } - var query = getQuery(); + function getThumbShape() { + return enableScrollX() ? 'overflowBackdrop' : 'backdrop'; + } - promise.then(function (result) { + function getPortraitShape() { + return enableScrollX() ? 'overflowPortrait' : 'portrait'; + } - var html = ''; + function getMoreItemsHref(itemId, type) { - var viewStyle = self.getCurrentViewStyle(); - var elem = context.querySelector('#items'); + return 'secondaryitems.html?type=' + type + '&genreId=' + itemId + '&parentId=' + params.topParentId; + } + + dom.addEventListener(tabContent, 'click', function (e) { + + var btnMoreFromGenre = dom.parentWithClass(e.target, 'btnMoreFromGenre'); + if (btnMoreFromGenre) { + var id = btnMoreFromGenre.getAttribute('data-id'); + Dashboard.navigate(getMoreItemsHref(id, 'Movie')); + } + + }, { + passive: true + }); + + function fillItemsContainer(elem) { + + var id = elem.getAttribute('data-id'); + + var viewStyle = self.getCurrentViewStyle(); + + var limit = viewStyle == 'Thumb' || viewStyle == 'ThumbCard' ? + 5 : + 8; + + if (enableScrollX()) { + limit = 10; + } + + var enableImageTypes = viewStyle == 'Thumb' || viewStyle == 'ThumbCard' ? + "Primary,Backdrop,Thumb" : + "Primary"; + + var query = { + SortBy: "SortName", + SortOrder: "Ascending", + IncludeItemTypes: "Movie", + Recursive: true, + Fields: "PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo", + ImageTypeLimit: 1, + EnableImageTypes: enableImageTypes, + Limit: limit, + GenreIds: id, + EnableTotalRecordCount: false, + ParentId: params.topParentId + }; + + ApiClient.getItems(Dashboard.getCurrentUserId(), query).then(function (result) { + + var supportsImageAnalysis = appHost.supports('imageanalysis'); if (viewStyle == "Thumb") { cardBuilder.buildCards(result.Items, { itemsContainer: elem, - shape: "backdrop", + shape: getThumbShape(), preferThumb: true, showTitle: true, scalable: true, - showItemCounts: true, centerText: true, - overlayMoreButton: true + overlayMoreButton: true, + allowBottomPadding: false }); } else if (viewStyle == "ThumbCard") { cardBuilder.buildCards(result.Items, { itemsContainer: elem, - shape: "backdrop", + shape: getThumbShape(), preferThumb: true, showTitle: true, scalable: true, - showItemCounts: true, centerText: false, - cardLayout: true + cardLayout: true, + vibrant: supportsImageAnalysis, + showYear: true }); } else if (viewStyle == "PosterCard") { cardBuilder.buildCards(result.Items, { itemsContainer: elem, - shape: "auto", + shape: getPortraitShape(), showTitle: true, scalable: true, - showItemCounts: true, centerText: false, - cardLayout: true + cardLayout: true, + vibrant: supportsImageAnalysis, + showYear: true }); } else if (viewStyle == "Poster") { cardBuilder.buildCards(result.Items, { itemsContainer: elem, - shape: "auto", + shape: getPortraitShape(), showTitle: true, scalable: true, - showItemCounts: true, centerText: true, - overlayMoreButton: true + overlayMoreButton: true, + allowBottomPadding: false }); } + if (result.Items.length >= query.Limit) { + tabContent.querySelector('.btnMoreFromGenre' + id).classList.remove('hide'); + } + }); + } + + function reloadItems(context, promise) { + + var query = getQuery(); + + promise.then(function (result) { + + var elem = context.querySelector('#items'); + var html = ''; + + var items = result.Items; + + for (var i = 0, length = items.length; i < length; i++) { + + var item = items[i]; + + html += '
'; + + html += '
'; + html += '

'; + html += item.Name; + html += '

'; + html += ''; + html += '
'; + + if (enableScrollX()) { + html += '
'; + } else { + html += '
'; + } + html += '
'; + + html += '
'; + } + + elem.innerHTML = html; + + lazyLoader.lazyChildren(elem, fillItemsContainer); + libraryBrowser.saveQueryValues(getSavedQueryKey(), query); Dashboard.hideLoadingMsg(); @@ -140,16 +242,5 @@ self.preRender(); self.renderTab(); } - - var btnSelectView = tabContent.querySelector('.btnSelectView'); - btnSelectView.addEventListener('click', function (e) { - - libraryBrowser.showLayoutMenu(e.target, self.getCurrentViewStyle(), self.getViewStyles()); - }); - - btnSelectView.addEventListener('layoutchange', function (e) { - - self.setCurrentViewStyle(e.detail.viewStyle); - }); }; }); \ No newline at end of file diff --git a/dashboard-ui/scripts/movies.js b/dashboard-ui/scripts/movies.js index 2ad6bac06f..ab66afd8ad 100644 --- a/dashboard-ui/scripts/movies.js +++ b/dashboard-ui/scripts/movies.js @@ -1,4 +1,5 @@ define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'apphost', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder, appHost) { + 'use strict'; return function (view, params, tabContent) { @@ -24,7 +25,7 @@ StartIndex: 0, Limit: pageSize }, - view: libraryBrowser.getSavedView(key) || 'Poster' + view: libraryBrowser.getSavedView(key) || (appHost.preferVisualCards ? 'PosterCard' : 'Poster') }; pageData.query.ParentId = params.topParentId; @@ -292,10 +293,6 @@ { name: Globalize.translate('OptionRuntime'), id: 'Runtime,SortName' - }, - { - name: Globalize.translate('OptionVideoBitrate'), - id: 'VideoBitRate,SortName' }], callback: function () { getQuery(tabContent).StartIndex = 0; diff --git a/dashboard-ui/scripts/moviesrecommended.js b/dashboard-ui/scripts/moviesrecommended.js index f4dd17cf03..4599c1f9f6 100644 --- a/dashboard-ui/scripts/moviesrecommended.js +++ b/dashboard-ui/scripts/moviesrecommended.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'components/categorysyncbuttons', 'cardBuilder', 'dom', 'scrollStyles', 'emby-itemscontainer', 'emby-tabs', 'emby-button'], function (libraryBrowser, categorysyncbuttons, cardBuilder, dom) { +define(['libraryBrowser', 'components/categorysyncbuttons', 'cardBuilder', 'dom', 'apphost', 'imageLoader', 'scrollStyles', 'emby-itemscontainer', 'emby-tabs', 'emby-button'], function (libraryBrowser, categorysyncbuttons, cardBuilder, dom, appHost, imageLoader) { + 'use strict'; function enableScrollX() { return browserInfo.mobile && AppInfo.enableAppLayouts; @@ -71,13 +72,21 @@ var allowBottomPadding = !enableScrollX(); var container = page.querySelector('#resumableItems'); + + var supportsImageAnalysis = appHost.supports('imageanalysis'); + var cardLayout = appHost.preferVisualCards; + cardBuilder.buildCards(result.Items, { itemsContainer: container, preferThumb: true, shape: getThumbShape(), scalable: true, overlayPlayButton: true, - allowBottomPadding: allowBottomPadding + allowBottomPadding: allowBottomPadding, + cardLayout: cardLayout, + vibrant: cardLayout && supportsImageAnalysis, + showTitle: cardLayout, + showYear: cardLayout }); }); @@ -161,7 +170,7 @@ var recs = page.querySelector('.recommendations'); recs.innerHTML = html; - ImageLoader.lazyChildren(recs); + imageLoader.lazyChildren(recs); }); } diff --git a/dashboard-ui/scripts/moviestudios.js b/dashboard-ui/scripts/moviestudios.js index bf5f0d5dc3..7afca27abc 100644 --- a/dashboard-ui/scripts/moviestudios.js +++ b/dashboard-ui/scripts/moviestudios.js @@ -1,4 +1,5 @@ define(['libraryBrowser', 'cardBuilder'], function (libraryBrowser, cardBuilder) { + 'use strict'; // The base query options var data = {}; @@ -47,7 +48,7 @@ itemsContainer: elem, shape: "backdrop", preferThumb: true, - showTitle: false, + showTitle: true, scalable: true, showItemCounts: true, centerText: true, diff --git a/dashboard-ui/scripts/movietrailers.js b/dashboard-ui/scripts/movietrailers.js index 4b2da5aa09..2ecc64157d 100644 --- a/dashboard-ui/scripts/movietrailers.js +++ b/dashboard-ui/scripts/movietrailers.js @@ -1,4 +1,5 @@ -define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder) { +define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'apphost', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder, appHost) { + 'use strict'; return function (view, params, tabContent) { @@ -24,7 +25,7 @@ StartIndex: 0, Limit: pageSize }, - view: libraryBrowser.getSavedView(key) || 'Poster' + view: libraryBrowser.getSavedView(key) || (appHost.preferVisualCards ? 'PosterCard' : 'Poster') }; libraryBrowser.loadSavedQueryValues(key, pageData.query); @@ -91,7 +92,8 @@ context: 'movies', cardLayout: true, showTitle: true, - showYear: true + showYear: true, + vibrant: true }); } else if (viewStyle == "Banner") { @@ -119,7 +121,8 @@ context: 'movies', showTitle: true, showYear: true, - cardLayout: true + cardLayout: true, + vibrant: true }); } else { @@ -130,7 +133,9 @@ shape: "portrait", context: 'movies', centerText: true, - overlayPlayButton: true + overlayPlayButton: true, + showTitle: true, + showYear: true }); } diff --git a/dashboard-ui/scripts/musicalbums.js b/dashboard-ui/scripts/musicalbums.js index bab36f1c95..d923ec8538 100644 --- a/dashboard-ui/scripts/musicalbums.js +++ b/dashboard-ui/scripts/musicalbums.js @@ -1,4 +1,5 @@ -define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder) { +define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'apphost', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder, appHost) { + 'use strict'; return function (view, params, tabContent) { @@ -24,7 +25,7 @@ StartIndex: 0, Limit: pageSize }, - view: libraryBrowser.getSavedView(key) || 'PosterCard' + view: libraryBrowser.getSavedView(key) || (appHost.preferVisualCards ? 'PosterCard' : 'Poster') }; pageData.query.ParentId = params.topParentId; diff --git a/dashboard-ui/scripts/musicartists.js b/dashboard-ui/scripts/musicartists.js index 7f0e0e76e7..2ab24fffea 100644 --- a/dashboard-ui/scripts/musicartists.js +++ b/dashboard-ui/scripts/musicartists.js @@ -1,4 +1,5 @@ -define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder) { +define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'apphost', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder, appHost) { + 'use strict'; return function (view, params, tabContent) { @@ -22,7 +23,7 @@ EnableImageTypes: "Primary,Backdrop,Banner,Thumb", Limit: LibraryBrowser.getDefaultPageSize() }, - view: libraryBrowser.getSavedView(key) || 'PosterCard' + view: libraryBrowser.getSavedView(key) || (appHost.preferVisualCards ? 'PosterCard' : 'Poster') }; pageData.query.ParentId = params.topParentId; diff --git a/dashboard-ui/scripts/musicfolders.js b/dashboard-ui/scripts/musicfolders.js index ac97e2b3d7..62cd210919 100644 --- a/dashboard-ui/scripts/musicfolders.js +++ b/dashboard-ui/scripts/musicfolders.js @@ -1,4 +1,5 @@ define(['events', 'libraryBrowser', 'imageLoader', 'cardBuilder'], function (events, libraryBrowser, imageLoader, cardBuilder) { + 'use strict'; return function (view, params, tabContent) { diff --git a/dashboard-ui/scripts/musicgenres.js b/dashboard-ui/scripts/musicgenres.js index 5122bda770..ff80078bdf 100644 --- a/dashboard-ui/scripts/musicgenres.js +++ b/dashboard-ui/scripts/musicgenres.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'cardBuilder'], function (libraryBrowser, cardBuilder) { +define(['libraryBrowser', 'cardBuilder', 'apphost', 'imageLoader'], function (libraryBrowser, cardBuilder, appHost, imageLoader) { + 'use strict'; return function (view, params, tabContent) { @@ -19,7 +20,7 @@ Fields: "DateCreated,ItemCounts", StartIndex: 0 }, - view: libraryBrowser.getSavedView(key) || 'PosterCard' + view: libraryBrowser.getSavedView(key) || (appHost.preferVisualCards ? 'PosterCard' : 'Poster') }; pageData.query.ParentId = params.topParentId; @@ -110,7 +111,7 @@ var elem = context.querySelector('#items'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); libraryBrowser.saveQueryValues(getSavedQueryKey(), query); diff --git a/dashboard-ui/scripts/musicrecommended.js b/dashboard-ui/scripts/musicrecommended.js index 4dccb875b9..bc4ee80cdd 100644 --- a/dashboard-ui/scripts/musicrecommended.js +++ b/dashboard-ui/scripts/musicrecommended.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'cardBuilder', 'dom', 'apphost', 'scrollStyles', 'emby-itemscontainer', 'emby-tabs', 'emby-button'], function (libraryBrowser, cardBuilder, dom, appHost) { +define(['libraryBrowser', 'cardBuilder', 'dom', 'apphost', 'imageLoader', 'libraryMenu', 'scrollStyles', 'emby-itemscontainer', 'emby-tabs', 'emby-button'], function (libraryBrowser, cardBuilder, dom, appHost, imageLoader, libraryMenu) { + 'use strict'; function itemsPerRow() { @@ -52,7 +53,7 @@ vibrant: supportsImageAnalysis }); - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); Dashboard.hideLoadingMsg(); }); @@ -104,7 +105,7 @@ vibrant: supportsImageAnalysis }); - ImageLoader.lazyChildren(itemsContainer); + imageLoader.lazyChildren(itemsContainer); }); @@ -156,7 +157,7 @@ vibrant: supportsImageAnalysis }); - ImageLoader.lazyChildren(itemsContainer); + imageLoader.lazyChildren(itemsContainer); }); @@ -204,14 +205,12 @@ vibrant: supportsImageAnalysis }); - ImageLoader.lazyChildren(itemsContainer); + imageLoader.lazyChildren(itemsContainer); }); } - function loadSuggestionsTab(page, tabContent) { - - var parentId = LibraryMenu.getTopParentId(); + function loadSuggestionsTab(page, tabContent, parentId) { console.log('loadSuggestionsTab'); loadLatest(tabContent, parentId); @@ -226,31 +225,6 @@ }); } - pageIdOn('pagebeforeshow', "musicRecommendedPage", function () { - - var page = this; - - if (!page.getAttribute('data-title')) { - - var parentId = LibraryMenu.getTopParentId(); - - if (parentId) { - - ApiClient.getItem(Dashboard.getCurrentUserId(), parentId).then(function (item) { - - page.setAttribute('data-title', item.Name); - LibraryMenu.setTitle(item.Name); - }); - - - } else { - page.setAttribute('data-title', Globalize.translate('TabMusic')); - LibraryMenu.setTitle(Globalize.translate('TabMusic')); - } - } - - }); - return function (view, params) { var self = this; @@ -260,7 +234,7 @@ Dashboard.showLoadingMsg(); var tabContent = view.querySelector('.pageTabContent[data-index=\'' + 0 + '\']'); - loadSuggestionsTab(view, tabContent); + loadSuggestionsTab(view, tabContent, params.topParentId); } function enableScrollX() { @@ -380,6 +354,28 @@ loadTab(view, parseInt(e.detail.selectedTabIndex)); }); + view.addEventListener('viewbeforeshow', function (e) { + + if (!view.getAttribute('data-title')) { + + var parentId = params.topParentId; + + if (parentId) { + + ApiClient.getItem(Dashboard.getCurrentUserId(), parentId).then(function (item) { + + view.setAttribute('data-title', item.Name); + libraryMenu.setTitle(item.Name); + }); + + + } else { + view.setAttribute('data-title', Globalize.translate('TabMusic')); + libraryMenu.setTitle(Globalize.translate('TabMusic')); + } + } + }); + require(["headroom-window"], function (headroom) { headroom.add(viewTabs); self.headroom = headroom; diff --git a/dashboard-ui/scripts/mypreferencescommon.js b/dashboard-ui/scripts/mypreferencescommon.js index c427220838..82afc44133 100644 --- a/dashboard-ui/scripts/mypreferencescommon.js +++ b/dashboard-ui/scripts/mypreferencescommon.js @@ -1,4 +1,5 @@ define(['apphost', 'listViewStyle'], function (appHost) { + 'use strict'; return function (view, params) { diff --git a/dashboard-ui/scripts/mypreferencesdisplay.js b/dashboard-ui/scripts/mypreferencesdisplay.js index 3242b763e4..159b8ef9e5 100644 --- a/dashboard-ui/scripts/mypreferencesdisplay.js +++ b/dashboard-ui/scripts/mypreferencesdisplay.js @@ -1,35 +1,46 @@ define(['userSettingsBuilder', 'appStorage'], function (userSettingsBuilder, appStorage) { + 'use strict'; return function (view, params) { var userId = params.userId || Dashboard.getCurrentUserId(); - var userSettings = new userSettingsBuilder(); + var userSettingsInstance = new userSettingsBuilder(); var userSettingsLoaded; function loadForm(page, user) { - userSettings.setUserInfo(userId, ApiClient).then(function () { + userSettingsInstance.setUserInfo(userId, ApiClient).then(function () { userSettingsLoaded = true; page.querySelector('.chkDisplayMissingEpisodes').checked = user.Configuration.DisplayMissingEpisodes || false; page.querySelector('.chkDisplayUnairedEpisodes').checked = user.Configuration.DisplayUnairedEpisodes || false; - page.querySelector('#chkThemeSong').checked = userSettings.enableThemeSongs(); - page.querySelector('#selectBackdrop').value = appStorage.getItem('enableBackdrops-' + user.Id) || ''; + page.querySelector('#chkThemeSong').checked = userSettingsInstance.enableThemeSongs(); + page.querySelector('#selectBackdrop').value = appStorage.getItem('enableBackdrops-' + user.Id) || '0'; - page.querySelector('#selectLanguage').value = userSettings.language() || ''; + page.querySelector('#selectLanguage').value = userSettingsInstance.language() || ''; Dashboard.hideLoadingMsg(); }); } + function refreshGlobalUserSettings() { + require(['userSettings'], function (userSettings) { + userSettings.importFrom(userSettingsInstance); + }); + } + function saveUser(page, user) { user.Configuration.DisplayMissingEpisodes = page.querySelector('.chkDisplayMissingEpisodes').checked; user.Configuration.DisplayUnairedEpisodes = page.querySelector('.chkDisplayUnairedEpisodes').checked; if (userSettingsLoaded) { - userSettings.language(page.querySelector('#selectLanguage').value); - userSettings.enableThemeSongs(page.querySelector('#chkThemeSong').checked); + userSettingsInstance.language(page.querySelector('#selectLanguage').value); + userSettingsInstance.enableThemeSongs(page.querySelector('#chkThemeSong').checked); + + if (userId === Dashboard.getCurrentUserId()) { + refreshGlobalUserSettings(); + } } appStorage.setItem('enableBackdrops-' + user.Id, page.querySelector('#selectBackdrop').value); diff --git a/dashboard-ui/scripts/mypreferenceshome.js b/dashboard-ui/scripts/mypreferenceshome.js index 0e3caf9aa2..abb1b441e3 100644 --- a/dashboard-ui/scripts/mypreferenceshome.js +++ b/dashboard-ui/scripts/mypreferenceshome.js @@ -1,4 +1,5 @@ -define(['listViewStyle'], function () { +define(['userSettingsBuilder', 'listViewStyle'], function (userSettingsBuilder) { + 'use strict'; function renderViews(page, user, result) { @@ -35,8 +36,20 @@ var folderHtml = ''; folderHtml += '
'; + var excludeViewTypes = ['playlists', 'livetv', 'boxsets', 'channels']; + var excludeItemTypes = ['Channel']; + folderHtml += result.Items.map(function (i) { + if (excludeViewTypes.indexOf(i.CollectionType || []) !== -1) { + return ''; + } + + // not implemented yet + if (excludeItemTypes.indexOf(i.Type) !== -1) { + return ''; + } + var currentHtml = ''; var id = 'chkIncludeInLatest' + i.Id; @@ -100,39 +113,28 @@ page.querySelector('.viewOrderList').innerHTML = html; } - function loadForm(page, user, displayPreferences) { + function loadForm(page, user, userSettings) { page.querySelector('.chkHidePlayedFromLatest').checked = user.Configuration.HidePlayedInLatest || false; - page.querySelector('#selectHomeSection1').value = displayPreferences.CustomPrefs.home0 || ''; - page.querySelector('#selectHomeSection2').value = displayPreferences.CustomPrefs.home1 || ''; - page.querySelector('#selectHomeSection3').value = displayPreferences.CustomPrefs.home2 || ''; - page.querySelector('#selectHomeSection4').value = displayPreferences.CustomPrefs.home3 || ''; + page.querySelector('#selectHomeSection1').value = userSettings.get('homesection0') || ''; + page.querySelector('#selectHomeSection2').value = userSettings.get('homesection1') || ''; + page.querySelector('#selectHomeSection3').value = userSettings.get('homesection2') || ''; + page.querySelector('#selectHomeSection4').value = userSettings.get('homesection3') || ''; - var promise1 = ApiClient.getItems(user.Id, { - sortBy: "SortName" - }); - var promise2 = ApiClient.getUserViews({}, user.Id); - var promise3 = ApiClient.getJSON(ApiClient.getUrl("Users/" + user.Id + "/GroupingOptions")); + var promise1 = ApiClient.getUserViews({}, user.Id); + var promise2 = ApiClient.getJSON(ApiClient.getUrl("Users/" + user.Id + "/GroupingOptions")); - Promise.all([promise1, promise2, promise3]).then(function (responses) { + Promise.all([promise1, promise2]).then(function (responses) { - renderViews(page, user, responses[2]); + renderViews(page, user, responses[1]); renderLatestItems(page, user, responses[0]); - renderViewOrder(page, user, responses[1]); + renderViewOrder(page, user, responses[0]); Dashboard.hideLoadingMsg(); }); } - function displayPreferencesKey() { - if (AppInfo.isNativeApp) { - return 'Emby Mobile'; - } - - return 'webclient'; - } - function getCheckboxItems(selector, page, isChecked) { var inputs = page.querySelectorAll(selector); @@ -149,7 +151,13 @@ return list; } - function saveUser(page, user, displayPreferences) { + function refreshGlobalUserSettings(userSettingsInstance) { + require(['userSettings'], function (userSettings) { + userSettings.importFrom(userSettingsInstance); + }); + } + + function saveUser(page, user, userSettingsInstance) { user.Configuration.HidePlayedInLatest = page.querySelector('.chkHidePlayedFromLatest').checked; @@ -173,18 +181,19 @@ user.Configuration.OrderedViews = orderedViews; - displayPreferences.CustomPrefs.home0 = page.querySelector('#selectHomeSection1').value; - displayPreferences.CustomPrefs.home1 = page.querySelector('#selectHomeSection2').value; - displayPreferences.CustomPrefs.home2 = page.querySelector('#selectHomeSection3').value; - displayPreferences.CustomPrefs.home3 = page.querySelector('#selectHomeSection4').value; + userSettingsInstance.set('homesection0', page.querySelector('#selectHomeSection1').value); + userSettingsInstance.set('homesection1', page.querySelector('#selectHomeSection2').value); + userSettingsInstance.set('homesection2', page.querySelector('#selectHomeSection3').value); + userSettingsInstance.set('homesection3', page.querySelector('#selectHomeSection4').value); - return ApiClient.updateDisplayPreferences('home', displayPreferences, user.Id, displayPreferencesKey()).then(function () { + if (user.Id === Dashboard.getCurrentUserId()) { + refreshGlobalUserSettings(userSettingsInstance); + } - return ApiClient.updateUserConfiguration(user.Id, user.Configuration); - }); + return ApiClient.updateUserConfiguration(user.Id, user.Configuration); } - function save(page, userId) { + function save(page, userId, userSettings) { Dashboard.showLoadingMsg(); @@ -194,21 +203,17 @@ ApiClient.getUser(userId).then(function (user) { - ApiClient.getDisplayPreferences('home', user.Id, displayPreferencesKey()).then(function (displayPreferences) { + saveUser(page, user, userSettings).then(function () { - saveUser(page, user, displayPreferences).then(function () { - - Dashboard.hideLoadingMsg(); - if (!AppInfo.enableAutoSave) { - require(['toast'], function (toast) { - toast(Globalize.translate('SettingsSaved')); - }); - } - - }, function () { - Dashboard.hideLoadingMsg(); - }); + Dashboard.hideLoadingMsg(); + if (!AppInfo.enableAutoSave) { + require(['toast'], function (toast) { + toast(Globalize.translate('SettingsSaved')); + }); + } + }, function () { + Dashboard.hideLoadingMsg(); }); }); } @@ -247,14 +252,21 @@ return function (view, params) { - var userId = getParameterByName('userId') || Dashboard.getCurrentUserId(); + var userId = params.userId || Dashboard.getCurrentUserId(); + var userSettings = new userSettingsBuilder(); + var userSettingsLoaded; function onSubmit(e) { - save(view, userId); + userSettings.setUserInfo(userId, ApiClient).then(function () { + + save(view, userId, userSettings); + }); // Disable default form submission - e.preventDefault(); + if (e) { + e.preventDefault(); + } return false; } @@ -319,19 +331,18 @@ ApiClient.getUser(userId).then(function (user) { - ApiClient.getDisplayPreferences('home', user.Id, displayPreferencesKey()).then(function (result) { + userSettings.setUserInfo(userId, ApiClient).then(function () { - loadForm(page, user, result); + userSettingsLoaded = true; + loadForm(page, user, userSettings); }); }); }); view.addEventListener('viewbeforehide', function () { - var page = this; - if (AppInfo.enableAutoSave) { - save(page, userId); + onSubmit(); } }); }; diff --git a/dashboard-ui/scripts/mypreferenceslanguages.js b/dashboard-ui/scripts/mypreferenceslanguages.js index 9c06a5261c..f325ad891d 100644 --- a/dashboard-ui/scripts/mypreferenceslanguages.js +++ b/dashboard-ui/scripts/mypreferenceslanguages.js @@ -1,4 +1,5 @@ define(['appSettings', 'userSettingsBuilder'], function (appSettings, userSettingsBuilder) { + 'use strict'; function populateLanguages(select, languages) { @@ -19,12 +20,12 @@ return function (view, params) { var userId = params.userId || Dashboard.getCurrentUserId(); - var userSettings = new userSettingsBuilder(); + var userSettingsInstance = new userSettingsBuilder(); var userSettingsLoaded; function loadForm(page, user, loggedInUser, allCulturesPromise) { - userSettings.setUserInfo(userId, ApiClient).then(function () { + userSettingsInstance.setUserInfo(userId, ApiClient).then(function () { userSettingsLoaded = true; allCulturesPromise.then(function (allCultures) { @@ -39,7 +40,7 @@ page.querySelector('#selectSubtitlePlaybackMode').value = user.Configuration.SubtitleMode || ""; page.querySelector('.chkPlayDefaultAudioTrack').checked = user.Configuration.PlayDefaultAudioTrack || false; - page.querySelector('.chkEnableCinemaMode').checked = userSettings.enableCinemaMode(); + page.querySelector('.chkEnableCinemaMode').checked = userSettingsInstance.enableCinemaMode(); page.querySelector('.chkExternalVideoPlayer').checked = appSettings.enableExternalPlayers(); require(['qualityoptions'], function (qualityoptions) { @@ -94,6 +95,12 @@ }); } + function refreshGlobalUserSettings() { + require(['userSettings'], function (userSettings) { + userSettings.importFrom(userSettingsInstance); + }); + } + function saveUser(page, user) { user.Configuration.AudioLanguagePreference = page.querySelector('#selectAudioLanguage').value; @@ -103,7 +110,11 @@ user.Configuration.PlayDefaultAudioTrack = page.querySelector('.chkPlayDefaultAudioTrack').checked; user.Configuration.EnableNextEpisodeAutoPlay = page.querySelector('.chkEpisodeAutoPlay').checked; if (userSettingsLoaded) { - userSettings.enableCinemaMode(page.querySelector('.chkEnableCinemaMode').checked); + userSettingsInstance.enableCinemaMode(page.querySelector('.chkEnableCinemaMode').checked); + + if (userId === Dashboard.getCurrentUserId()) { + refreshGlobalUserSettings(); + } } return ApiClient.updateUserConfiguration(user.Id, user.Configuration); diff --git a/dashboard-ui/scripts/myprofile.js b/dashboard-ui/scripts/myprofile.js index 1643e57cbb..d0547eb2cd 100644 --- a/dashboard-ui/scripts/myprofile.js +++ b/dashboard-ui/scripts/myprofile.js @@ -1,4 +1,5 @@ define(['scripts/userpasswordpage'], function (Userpasswordpage) { + 'use strict'; var currentFile; diff --git a/dashboard-ui/scripts/mysync.js b/dashboard-ui/scripts/mysync.js index 209cfe9974..8c3436dbab 100644 --- a/dashboard-ui/scripts/mysync.js +++ b/dashboard-ui/scripts/mysync.js @@ -1,4 +1,5 @@ define(['apphost', 'globalize', 'syncJobList', 'events', 'localsync', 'emby-button', 'paper-icon-button-light'], function (appHost, globalize, syncJobList, events, localSync) { + 'use strict'; function initSupporterInfo(view, params) { diff --git a/dashboard-ui/scripts/mysyncsettings.js b/dashboard-ui/scripts/mysyncsettings.js index 3ccbc44d66..161eef5cf5 100644 --- a/dashboard-ui/scripts/mysyncsettings.js +++ b/dashboard-ui/scripts/mysyncsettings.js @@ -1,4 +1,5 @@ define(['appSettings', 'apphost', 'emby-checkbox', 'emby-select', 'emby-input'], function (appSettings, appHost) { + 'use strict'; function loadForm(page, user) { diff --git a/dashboard-ui/scripts/notificationlist.js b/dashboard-ui/scripts/notificationlist.js index 3d81d2ca2c..cf7c88b7d9 100644 --- a/dashboard-ui/scripts/notificationlist.js +++ b/dashboard-ui/scripts/notificationlist.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; $(document).on("pageshow", "#notificationsPage", function () { diff --git a/dashboard-ui/scripts/notifications.js b/dashboard-ui/scripts/notifications.js index 45f6da1fb2..c316a0dd83 100644 --- a/dashboard-ui/scripts/notifications.js +++ b/dashboard-ui/scripts/notifications.js @@ -1,4 +1,5 @@ define(['libraryBrowser', 'listViewStyle'], function (libraryBrowser) { + 'use strict'; function notifications() { diff --git a/dashboard-ui/scripts/notificationsetting.js b/dashboard-ui/scripts/notificationsetting.js index e45601bc84..0c49b3545f 100644 --- a/dashboard-ui/scripts/notificationsetting.js +++ b/dashboard-ui/scripts/notificationsetting.js @@ -1,4 +1,5 @@ define(['jQuery', 'emby-checkbox', 'fnchecked'], function ($) { + 'use strict'; var notificationsConfigurationKey = "notifications"; diff --git a/dashboard-ui/scripts/notificationsettings.js b/dashboard-ui/scripts/notificationsettings.js index 0369472b42..b5da527208 100644 --- a/dashboard-ui/scripts/notificationsettings.js +++ b/dashboard-ui/scripts/notificationsettings.js @@ -1,4 +1,5 @@ define(['jQuery', 'listViewStyle'], function ($) { + 'use strict'; function reload(page) { diff --git a/dashboard-ui/scripts/nowplayingbar.js b/dashboard-ui/scripts/nowplayingbar.js index 7f169dd367..531ac33ea2 100644 --- a/dashboard-ui/scripts/nowplayingbar.js +++ b/dashboard-ui/scripts/nowplayingbar.js @@ -1,4 +1,5 @@ -define(['datetime', 'userdataButtons', 'itemHelper', 'events', 'browser', 'paper-icon-button-light'], function (datetime, userdataButtons, itemHelper, events, browser) { +define(['datetime', 'userdataButtons', 'itemHelper', 'events', 'browser', 'imageLoader', 'paper-icon-button-light'], function (datetime, userdataButtons, itemHelper, events, browser, imageLoader) { + 'use strict'; var currentPlayer; @@ -592,7 +593,7 @@ currentImgUrl = url; - ImageLoader.lazyImage(nowPlayingImageElement, url); + imageLoader.lazyImage(nowPlayingImageElement, url); if (nowPlayingItem.Id) { ApiClient.getItem(Dashboard.getCurrentUserId(), nowPlayingItem.Id).then(function (item) { diff --git a/dashboard-ui/scripts/nowplayingpage.js b/dashboard-ui/scripts/nowplayingpage.js index 768efcb71e..9a6ad2f8e4 100644 --- a/dashboard-ui/scripts/nowplayingpage.js +++ b/dashboard-ui/scripts/nowplayingpage.js @@ -1,4 +1,5 @@ define(['components/remotecontrol', 'emby-tabs', 'emby-button'], function (remotecontrolFactory) { + 'use strict'; return function (view, params) { diff --git a/dashboard-ui/scripts/photos.js b/dashboard-ui/scripts/photos.js index 0a8f149cf9..57f823ef17 100644 --- a/dashboard-ui/scripts/photos.js +++ b/dashboard-ui/scripts/photos.js @@ -1,4 +1,5 @@ -define(['jQuery', 'cardBuilder', 'emby-itemscontainer'], function ($, cardBuilder) { +define(['jQuery', 'cardBuilder', 'imageLoader', 'emby-itemscontainer'], function ($, cardBuilder, imageLoader) { + 'use strict'; var view = 'Poster'; @@ -72,7 +73,7 @@ var elem = page.querySelector('.itemsContainer'); elem.innerHTML = html + pagingHtml; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); $('.btnNextPage', page).on('click', function () { query.StartIndex += query.Limit; diff --git a/dashboard-ui/scripts/playbackconfiguration.js b/dashboard-ui/scripts/playbackconfiguration.js index 82f462e17c..3c0443b74d 100644 --- a/dashboard-ui/scripts/playbackconfiguration.js +++ b/dashboard-ui/scripts/playbackconfiguration.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function loadPage(page, config) { diff --git a/dashboard-ui/scripts/playlistedit.js b/dashboard-ui/scripts/playlistedit.js index 9db265a284..67524f392a 100644 --- a/dashboard-ui/scripts/playlistedit.js +++ b/dashboard-ui/scripts/playlistedit.js @@ -1,4 +1,5 @@ -define(['jQuery', 'listView'], function ($, listView) { +define(['jQuery', 'listView', 'imageLoader'], function ($, listView, imageLoader) { + 'use strict'; var data = {}; function getPageData() { @@ -73,7 +74,7 @@ elem.classList.remove('vertical-wrap'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); $('.btnNextPage', elem).on('click', function () { query.StartIndex += query.Limit; diff --git a/dashboard-ui/scripts/playlists.js b/dashboard-ui/scripts/playlists.js index 4019b9d569..97edd83f55 100644 --- a/dashboard-ui/scripts/playlists.js +++ b/dashboard-ui/scripts/playlists.js @@ -1,4 +1,5 @@ -define(['listView', 'cardBuilder', 'libraryBrowser', 'apphost', 'emby-itemscontainer'], function (listView, cardBuilder, libraryBrowser, appHost) { +define(['listView', 'cardBuilder', 'libraryBrowser', 'apphost', 'imageLoader', 'emby-itemscontainer'], function (listView, cardBuilder, libraryBrowser, appHost, imageLoader) { + 'use strict'; return function (view, params) { @@ -167,7 +168,7 @@ var elem = view.querySelector('.itemsContainer'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); var btnNextPage = view.querySelector('.btnNextPage'); if (btnNextPage) { diff --git a/dashboard-ui/scripts/plugincatalogpage.js b/dashboard-ui/scripts/plugincatalogpage.js index 63a1701539..ee9360290b 100644 --- a/dashboard-ui/scripts/plugincatalogpage.js +++ b/dashboard-ui/scripts/plugincatalogpage.js @@ -1,4 +1,5 @@ define(['jQuery', 'cardStyle'], function ($) { + 'use strict'; // The base query options var query = { diff --git a/dashboard-ui/scripts/pluginspage.js b/dashboard-ui/scripts/pluginspage.js index 4930d11de2..55b54601aa 100644 --- a/dashboard-ui/scripts/pluginspage.js +++ b/dashboard-ui/scripts/pluginspage.js @@ -1,4 +1,5 @@ define(['jQuery', 'cardStyle'], function ($) { + 'use strict'; function deletePlugin(page, uniqueid, name) { diff --git a/dashboard-ui/scripts/remotecontrol.js b/dashboard-ui/scripts/remotecontrol.js index 28a6a45884..2adbadec08 100644 --- a/dashboard-ui/scripts/remotecontrol.js +++ b/dashboard-ui/scripts/remotecontrol.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; function sendPlayCommand(options, playType) { @@ -18,7 +19,7 @@ remoteOptions.startPositionTicks = options.startPositionTicks; } - ApiClient.sendPlayCommand(sessionId, remoteOptions); + return ApiClient.sendPlayCommand(sessionId, remoteOptions); } function sendPlayStateCommand(command, options) { @@ -56,7 +57,7 @@ self.play = function (options) { - sendPlayCommand(options, 'PlayNow'); + return sendPlayCommand(options, 'PlayNow'); }; self.shuffle = function (id) { diff --git a/dashboard-ui/scripts/reports.js b/dashboard-ui/scripts/reports.js index 8d88b70c99..a69c623bf9 100644 --- a/dashboard-ui/scripts/reports.js +++ b/dashboard-ui/scripts/reports.js @@ -1,4 +1,5 @@ define(['jQuery', 'libraryBrowser', 'fnchecked'], function ($, libraryBrowser) { + 'use strict'; var defaultSortBy = "SortName"; var topItems = 5; @@ -34,9 +35,9 @@ if (header.SortField === defaultSortBy) { if (query.SortOrder === "Descending") { - cellHtml += ''; + cellHtml += ''; } else { - cellHtml += ''; + cellHtml += ''; } } } @@ -199,65 +200,6 @@ return html; } - function getStats(result) { - var html = ''; - html += '
'; - //html += '
If you like Africa Fever II, check these out...
'; - html += '
'; - result.Groups.map(function (group) { - //html += '
'; - //html += '
'; - //html += '
'; - html += '
'; - //html += '
'; - html += '
'; - html += '
'; - - html += '
' - html += '
'; - html += '' + group.Header + ' ' + ''; - html += '
'; - - html += '
'; - html += '
'; - html += ''; - html += '
'; - html += '
'; - html += '
'; - - html += '
'; - html += '
'; - html += '
'; - - }); - - - html += '
'; - //html += '
'; - html += '
'; - return html; - } - function ExportReport(page, e) { query.UserId = Dashboard.getCurrentUserId(); @@ -301,7 +243,7 @@ window.scrollTo(0, 0); var html = ''; - if (query.ReportView === "ReportData" || query.ReportView === "ReportStatistics") { + if (query.ReportView === "ReportData") { $('#selectIncludeItemTypesBox', page).show(); $('#tabFilter', page).show(); } @@ -379,25 +321,6 @@ reloadItems(page); }); } - else { - - $('.listTopPaging', page).html(pagingHtml).trigger('create'); - // page.querySelector('.listTopPaging').innerHTML = pagingHtml; - - $('.listTopPaging', page).show(); - $('.listBottomPaging', page).hide(); - - $('.btnNextPage', page).hide(); - $('.btnPreviousPage', page).hide(); - - $('#btnReportExport', page).hide(); - $('#selectPageSizeBox', page).hide(); - $('#selectReportGroupingBox', page).hide(); - $('#grpReportsColumns', page).hide(); - - html += getStats(result); - $('.reporContainer', page).html(html).trigger('create'); - } $('#GroupStatus', page).hide(); $('#GroupAirDays', page).hide(); @@ -428,11 +351,6 @@ query.HasQueryLimit = true; url = ApiClient.getUrl("Reports/Items", query); break; - case "ReportStatistics": - query.TopItems = topItems; - query.HasQueryLimit = false; - url = ApiClient.getUrl("Reports/Statistics", query); - break; case "ReportActivities": query.HasQueryLimit = true; url = ApiClient.getUrl("Reports/Activities", query); diff --git a/dashboard-ui/scripts/scheduledtaskpage.js b/dashboard-ui/scripts/scheduledtaskpage.js index 96580ff13a..89dd429bc9 100644 --- a/dashboard-ui/scripts/scheduledtaskpage.js +++ b/dashboard-ui/scripts/scheduledtaskpage.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; // Array Remove - By John Resig (MIT Licensed) Array.prototype.remove = function (from, to) { diff --git a/dashboard-ui/scripts/scheduledtaskspage.js b/dashboard-ui/scripts/scheduledtaskspage.js index c791c04039..fb581fe95d 100644 --- a/dashboard-ui/scripts/scheduledtaskspage.js +++ b/dashboard-ui/scripts/scheduledtaskspage.js @@ -1,4 +1,5 @@ define(['jQuery', 'humanedate', 'listViewStyle'], function ($) { + 'use strict'; function reloadList(page) { diff --git a/dashboard-ui/scripts/searchpage.js b/dashboard-ui/scripts/searchpage.js index 5e39ca573e..ad039ca99d 100644 --- a/dashboard-ui/scripts/searchpage.js +++ b/dashboard-ui/scripts/searchpage.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'focusManager', 'embyRouter', 'cardBuilder', 'emby-input', 'paper-icon-button-light', 'material-icons', 'emby-itemscontainer'], function (libraryBrowser, focusManager, embyRouter, cardBuilder) { +define(['libraryBrowser', 'focusManager', 'embyRouter', 'cardBuilder', 'imageLoader', 'emby-input', 'paper-icon-button-light', 'material-icons', 'emby-itemscontainer'], function (libraryBrowser, focusManager, embyRouter, cardBuilder, imageLoader) { + 'use strict'; function loadSuggestions(page) { @@ -130,7 +131,7 @@ itemsContainer.innerHTML = html; searchResults.classList.remove('hide'); textSuggestions.classList.add('hide'); - ImageLoader.lazyChildren(itemsContainer); + imageLoader.lazyChildren(itemsContainer); } function requestSearchHintsForOverlay(searchTerm) { diff --git a/dashboard-ui/scripts/secondaryitems.js b/dashboard-ui/scripts/secondaryitems.js index 720ae7e2e7..ce844b8929 100644 --- a/dashboard-ui/scripts/secondaryitems.js +++ b/dashboard-ui/scripts/secondaryitems.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'listView', 'cardBuilder', 'emby-itemscontainer'], function (libraryBrowser, listView, cardBuilder) { +define(['libraryBrowser', 'listView', 'cardBuilder', 'imageLoader', 'emby-itemscontainer'], function (libraryBrowser, listView, cardBuilder, imageLoader) { + 'use strict'; return function (view, params) { @@ -6,6 +7,10 @@ function addCurrentItemToQuery(query, item) { + if (params.parentId) { + query.ParentId = params.parentId; + } + if (item.Type == "Person") { query.PersonIds = item.Id; } @@ -105,7 +110,7 @@ } function onViewStyleChange(parentItem) { - + var query = getQuery(parentItem); var itemsContainer = view.querySelector('#items'); @@ -141,7 +146,13 @@ showLimit: false }); - view.querySelector('.listTopPaging').innerHTML = pagingHtml; + var i, length; + var elems; + + elems = view.querySelectorAll('.paging'); + for (i = 0, length = elems.length; i < length; i++) { + elems[i].innerHTML = pagingHtml; + } var itemsContainer = view.querySelector('#items'); @@ -184,11 +195,8 @@ html = cardBuilder.getCardsHtml(posterOptions); } - itemsContainer.innerHTML = html + pagingHtml; - ImageLoader.lazyChildren(itemsContainer); - - var i, length; - var elems; + itemsContainer.innerHTML = html; + imageLoader.lazyChildren(itemsContainer); function onNextPageClick() { query.StartIndex += query.Limit; @@ -216,9 +224,41 @@ view.addEventListener('click', onListItemClick); + function getItemPromise() { + + var id = params.genreId || params.studioId || params.artistId || params.personId || params.parentId; + + if (id) { + return ApiClient.getItem(Dashboard.getCurrentUserId(), id); + } + + var name = params.genre; + + if (name) { + return ApiClient.getGenre(name, Dashboard.getCurrentUserId()); + } + + name = params.musicgenre; + + if (name) { + return ApiClient.getMusicGenre(name, Dashboard.getCurrentUserId()); + } + + name = params.gamegenre; + + if (name) { + return ApiClient.getGameGenre(name, Dashboard.getCurrentUserId()); + } + + return null; + } + view.addEventListener('viewbeforeshow', function (e) { - if (params.parentId) { - ApiClient.getItem(Dashboard.getCurrentUserId(), params.parentId).then(function (parent) { + + var parentPromise = getItemPromise(); + + if (parentPromise) { + parentPromise.then(function (parent) { LibraryMenu.setTitle(parent.Name); onViewStyleChange(parent); diff --git a/dashboard-ui/scripts/sections.js b/dashboard-ui/scripts/sections.js index 8234a7175a..a448f418b4 100644 --- a/dashboard-ui/scripts/sections.js +++ b/dashboard-ui/scripts/sections.js @@ -1,4 +1,5 @@ -define(['libraryBrowser', 'cardBuilder', 'appSettings', 'components/groupedcards', 'dom', 'apphost', 'scrollStyles', 'emby-button', 'paper-icon-button-light', 'emby-itemscontainer'], function (libraryBrowser, cardBuilder, appSettings, groupedcards, dom, appHost) { +define(['libraryBrowser', 'cardBuilder', 'appSettings', 'components/groupedcards', 'dom', 'apphost', 'imageLoader', 'scrollStyles', 'emby-button', 'paper-icon-button-light', 'emby-itemscontainer'], function (libraryBrowser, cardBuilder, appSettings, groupedcards, dom, appHost, imageLoader) { + 'use strict'; function getUserViews(userId) { @@ -12,6 +13,10 @@ return browserInfo.mobile && AppInfo.enableAppLayouts; } + function getSquareShape() { + return enableScrollX() ? 'overflowSquare' : 'square'; + } + function getThumbShape() { return enableScrollX() ? 'overflowBackdrop' : 'backdrop'; } @@ -251,136 +256,106 @@ return html; } + function renderLatestSection(elem, user, parent) { + + var options = { + + Limit: 12, + Fields: "PrimaryImageAspectRatio,BasicSyncInfo", + ImageTypeLimit: 1, + EnableImageTypes: "Primary,Backdrop,Thumb", + ParentId: parent.Id + }; + + return ApiClient.getJSON(ApiClient.getUrl('Users/' + user.Id + '/Items/Latest', options)).then(function (items) { + + var html = ''; + + var scrollX = enableScrollX(); + + if (items.length) { + + html += '
'; + html += '

' + Globalize.translate('LatestFromLibrary', parent.Name) + '

'; + html += ''; + html += '
'; + + if (scrollX) { + html += '
'; + } else { + html += '
'; + } + + var viewType = parent.CollectionType; + + var shape = viewType === 'movies' ? + getPortraitShape() : + viewType === 'music' ? + getSquareShape() : + getThumbShape(); + + var supportsImageAnalysis = appHost.supports('imageanalysis'); + var cardLayout = supportsImageAnalysis && (viewType === 'music' || viewType === 'movies' || viewType === 'tvshows' || !viewType); + + html += cardBuilder.getCardsHtml({ + items: items, + shape: shape, + preferThumb: viewType !== 'movies' && viewType !== 'music', + showUnplayedIndicator: false, + showChildCountIndicator: true, + context: 'home', + overlayText: false, + centerText: !cardLayout, + overlayPlayButton: viewType !== 'photos', + allowBottomPadding: !enableScrollX() && !cardLayout, + cardLayout: cardLayout, + showTitle: viewType === 'music' || !viewType || (cardLayout && (viewType === 'movies' || viewType === 'tvshows')), + showYear: cardLayout && viewType === 'movies', + showSeriesYear: cardLayout && viewType === 'tvshows', + showParentTitle: viewType === 'music' || !viewType || (cardLayout && (viewType === 'tvshows')), + vibrant: supportsImageAnalysis && cardLayout, + lines: 2 + }); + html += '
'; + } + + elem.innerHTML = html; + imageLoader.lazyChildren(elem); + }); + } + function loadRecentlyAdded(elem, user) { - var options = { + elem.classList.remove('homePageSection'); - Limit: 20, - Fields: "PrimaryImageAspectRatio,BasicSyncInfo", - ImageTypeLimit: 1, - EnableImageTypes: "Primary,Backdrop,Thumb" - }; + return getUserViews(user.Id).then(function (items) { - return ApiClient.getJSON(ApiClient.getUrl('Users/' + user.Id + '/Items/Latest', options)).then(function (items) { + var excludeViewTypes = ['playlists', 'livetv', 'boxsets', 'channels']; + var excludeItemTypes = ['Channel']; - var html = ''; + for (var i = 0, length = items.length; i < length; i++) { - var cardLayout = false; + var item = items[i]; - if (items.length) { - html += '
'; - html += '

' + Globalize.translate('HeaderLatestMedia') + '

'; - - html += '
'; - - html += '
'; - - html += cardBuilder.getCardsHtml({ - items: items, - preferThumb: true, - shape: 'backdrop', - showUnplayedIndicator: false, - showChildCountIndicator: true, - lazy: true, - cardLayout: cardLayout, - showTitle: cardLayout, - showYear: cardLayout, - showDetailsMenu: true, - context: 'home' - }); - html += '
'; - } - - elem.innerHTML = html; - elem.addEventListener('click', groupedcards.onItemsContainerClick); - ImageLoader.lazyChildren(elem); - }); - } - - function loadLatestMovies(elem, user) { - - var options = { - - Limit: 12, - Fields: "PrimaryImageAspectRatio,BasicSyncInfo", - ImageTypeLimit: 1, - EnableImageTypes: "Primary,Backdrop,Thumb", - IncludeItemTypes: "Movie" - }; - - return ApiClient.getJSON(ApiClient.getUrl('Users/' + user.Id + '/Items/Latest', options)).then(function (items) { - - var html = ''; - - var scrollX = enableScrollX(); - - if (items.length) { - html += '

' + Globalize.translate('HeaderLatestMovies') + '

'; - if (scrollX) { - html += '
'; - } else { - html += '
'; - } - html += cardBuilder.getCardsHtml({ - items: items, - shape: getPortraitShape(), - showUnplayedIndicator: false, - showChildCountIndicator: true, - lazy: true, - context: 'home', - centerText: true, - overlayPlayButton: true, - allowBottomPadding: !enableScrollX() - }); - html += '
'; - } - - elem.innerHTML = html; - ImageLoader.lazyChildren(elem); - }); - } - - function loadLatestEpisodes(elem, user) { - - var options = { - - Limit: 12, - Fields: "PrimaryImageAspectRatio,BasicSyncInfo", - ImageTypeLimit: 1, - EnableImageTypes: "Primary,Backdrop,Thumb", - IncludeItemTypes: "Episode" - }; - - return ApiClient.getJSON(ApiClient.getUrl('Users/' + user.Id + '/Items/Latest', options)).then(function (items) { - - var html = ''; - - var scrollX = enableScrollX(); - - if (items.length) { - html += '

' + Globalize.translate('HeaderLatestEpisodes') + '

'; - if (scrollX) { - html += '
'; - } else { - html += '
'; + if (user.Configuration.LatestItemsExcludes.indexOf(item.Id) !== -1) { + continue; } - html += cardBuilder.getCardsHtml({ - items: items, - preferThumb: true, - shape: getThumbShape(), - showUnplayedIndicator: false, - showChildCountIndicator: true, - lazy: true, - context: 'home', - overlayPlayButton: true, - allowBottomPadding: !enableScrollX() - }); - html += '
'; - } + if (excludeViewTypes.indexOf(item.CollectionType || []) !== -1) { + continue; + } - elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + // not implemented yet + if (excludeItemTypes.indexOf(item.Type) !== -1) { + continue; + } + + var frag = document.createElement('div'); + frag.classList.add('homePageSection'); + elem.appendChild(frag); + + renderLatestSection(frag, user, item); + } }); } @@ -417,30 +392,25 @@ } elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); }); } - function loadLibraryTiles(elem, user, shape, index, autoHideOnMobile, showTitles) { + function loadLibraryTiles(elem, user, shape) { return getUserViews(user.Id).then(function (items) { var html = ''; - if (autoHideOnMobile) { - html += '
'; - } else { - html += '
'; - } + html += '
'; if (items.length) { html += '
'; html += '

' + Globalize.translate('HeaderMyMedia') + '

'; - html += '
'; - var scrollX = enableScrollX() && dom.getWindowSize().innerWidth >= 600; + var scrollX = enableScrollX() && dom.getWindowSize().innerWidth >= 500; if (scrollX) { html += '
'; @@ -450,8 +420,8 @@ html += cardBuilder.getCardsHtml({ items: items, - shape: scrollX ? 'overflowBackdrop' : shape, - showTitle: showTitles, + shape: scrollX ? 'overflowSmallBackdrop' : shape, + showTitle: true, centerText: true, overlayText: false, lazy: true, @@ -463,16 +433,10 @@ html += '
'; - if (autoHideOnMobile) { - html += '
'; - html += getLibraryButtonsHtml(items); - html += '
'; - } - return getAppInfo().then(function (infoHtml) { elem.innerHTML = html + infoHtml; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); }); }); } @@ -481,13 +445,25 @@ var screenWidth = dom.getWindowSize().innerWidth; + var limit; + + if (enableScrollX()) { + + limit = 12; + + } else { + + limit = screenWidth >= 1920 ? 8 : (screenWidth >= 1600 ? 8 : (screenWidth >= 1200 ? 9 : 6)); + limit = Math.min(limit, 5); + } + var options = { SortBy: "DatePlayed", SortOrder: "Descending", MediaTypes: "Video", Filters: "IsResumable", - Limit: screenWidth >= 1920 ? 8 : (screenWidth >= 1600 ? 8 : (screenWidth >= 1200 ? 9 : 6)), + Limit: limit, Recursive: true, Fields: "PrimaryImageAspectRatio,BasicSyncInfo", CollapseBoxSetItems: false, @@ -502,12 +478,16 @@ var html = ''; if (result.Items.length) { - html += '

' + Globalize.translate('HeaderResume') + '

'; + html += '

' + Globalize.translate('HeaderContinueWatching') + '

'; if (enableScrollX()) { html += '
'; } else { html += '
'; } + + var supportsImageAnalysis = appHost.supports('imageanalysis'); + var cardLayout = supportsImageAnalysis; + html += cardBuilder.getCardsHtml({ items: result.Items, preferThumb: true, @@ -519,15 +499,19 @@ showDetailsMenu: true, overlayPlayButton: true, context: 'home', - centerText: true, - allowBottomPadding: !enableScrollX() + centerText: !cardLayout, + allowBottomPadding: false, + cardLayout: cardLayout, + showYear: true, + lines: 2, + vibrant: cardLayout && supportsImageAnalysis }); html += '
'; } elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); }); } @@ -535,7 +519,7 @@ var query = { - Limit: 20, + Limit: enableScrollX() ? 20 : 10, Fields: "PrimaryImageAspectRatio,SeriesInfo,DateCreated,BasicSyncInfo", UserId: userId, ImageTypeLimit: 1, @@ -576,7 +560,7 @@ elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); }); } @@ -654,7 +638,7 @@ var elem = page.querySelector('#channel' + channel.Id + ''); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); }); } @@ -708,7 +692,7 @@ html += '
'; elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); }); } @@ -720,9 +704,7 @@ loadNextUp: loadNextUp, loadLatestChannelItems: loadLatestChannelItems, loadLatestLiveTvRecordings: loadLatestLiveTvRecordings, - loadlibraryButtons: loadlibraryButtons, - loadLatestMovies: loadLatestMovies, - loadLatestEpisodes: loadLatestEpisodes + loadlibraryButtons: loadlibraryButtons }; return window.Sections; diff --git a/dashboard-ui/scripts/selectserver.js b/dashboard-ui/scripts/selectserver.js index 3861fddeb9..4418247d84 100644 --- a/dashboard-ui/scripts/selectserver.js +++ b/dashboard-ui/scripts/selectserver.js @@ -1,4 +1,5 @@ define(['appSettings', 'paper-icon-button-light'], function (appSettings) { + 'use strict'; function updatePageStyle(page) { diff --git a/dashboard-ui/scripts/serversecurity.js b/dashboard-ui/scripts/serversecurity.js index 0cf184ecc5..44256a7a73 100644 --- a/dashboard-ui/scripts/serversecurity.js +++ b/dashboard-ui/scripts/serversecurity.js @@ -1,4 +1,5 @@ define(['datetime', 'jQuery'], function (datetime, $) { + 'use strict'; function revoke(page, key) { diff --git a/dashboard-ui/scripts/shared.js b/dashboard-ui/scripts/shared.js index 3a4632d808..c81e8c8bcb 100644 --- a/dashboard-ui/scripts/shared.js +++ b/dashboard-ui/scripts/shared.js @@ -1,4 +1,5 @@ -define(['jQuery', 'libraryBrowser'], function ($, libraryBrowser) { +define(['jQuery', 'libraryBrowser', 'imageLoader', 'indicators'], function ($, libraryBrowser, imageLoader, indicators) { + 'use strict'; var currentItem; @@ -20,7 +21,7 @@ libraryBrowser.renderName(item, $('.itemName', page)[0], false); libraryBrowser.renderParentName(item, $('.parentName', page)[0]); - libraryBrowser.renderDetailPageBackdrop(page, item); + libraryBrowser.renderDetailPageBackdrop(page, item, imageLoader); renderImage(page, item); @@ -35,7 +36,7 @@ $('.collectionItems', page).empty(); if (item.MediaSources && item.MediaSources.length) { - ItemDetailPage.renderMediaSources(page, item); + ItemDetailPage.renderMediaSources(page, null, item); } var chapters = item.Chapters || []; @@ -58,7 +59,7 @@ } function renderImage(page, item) { - libraryBrowser.renderDetailImage(page.querySelector('.detailImageContainer'), item, false); + libraryBrowser.renderDetailImage(page.querySelector('.detailImageContainer'), item, false, null, imageLoader, indicators); } $(document).on('pageinit', "#publicSharedItemPage", function () { diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 5b6f298f89..71f5f963f6 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -1,4 +1,5 @@ function getWindowLocationSearch(win) { + 'use strict'; var search = (win || window).location.search; @@ -14,6 +15,8 @@ } function getParameterByName(name, url) { + 'use strict'; + name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]"); var regexS = "[\\?&]" + name + "=([^&#]*)"; var regex = new RegExp(regexS, "i"); @@ -311,7 +314,7 @@ var Dashboard = { showUserFlyout: function () { - Dashboard.navigate('mypreferencesmenu.html?userId=' + ApiClient.getCurrentUserId()); + Dashboard.navigate('mypreferencesmenu.html'); }, getPluginSecurityInfo: function () { @@ -463,7 +466,7 @@ var Dashboard = { divider: true, name: Globalize.translate('TabLibrary'), href: "library.html", - pageIds: ['mediaLibraryPage', 'libraryPathMappingPage', 'librarySettingsPage', 'libraryDisplayPage'], + pageIds: ['mediaLibraryPage', 'librarySettingsPage', 'libraryDisplayPage'], icon: 'folder', color: '#38c' }, { @@ -554,13 +557,6 @@ var Dashboard = { href: "reports.html", pageIds: [], icon: 'insert_chart' - }, { - name: Globalize.translate('TabAbout'), - href: "about.html", - icon: 'info', - color: '#679C34', - divider: true, - pageIds: ['aboutPage'] }]; }, @@ -702,6 +698,14 @@ var Dashboard = { Format: 'srt', Method: 'External' }); + profile.SubtitleProfiles.push({ + Format: 'ssa', + Method: 'External' + }); + profile.SubtitleProfiles.push({ + Format: 'ass', + Method: 'External' + }); profile.SubtitleProfiles.push({ Format: 'srt', Method: 'Embed' @@ -718,6 +722,18 @@ var Dashboard = { Format: 'ssa', Method: 'Embed' }); + profile.SubtitleProfiles.push({ + Format: 'dvb_teletext', + Method: 'Embed' + }); + profile.SubtitleProfiles.push({ + Format: 'dvb_subtitle', + Method: 'Embed' + }); + profile.SubtitleProfiles.push({ + Format: 'dvbsub', + Method: 'Embed' + }); profile.SubtitleProfiles.push({ Format: 'pgs', Method: 'Embed' @@ -759,18 +775,6 @@ var Dashboard = { ] }); - profile.CodecProfiles.push({ - Type: 'VideoAudio', - Codec: 'aac,mp3', - Conditions: [ - { - Condition: 'LessThanEqual', - Property: 'AudioChannels', - Value: '6' - } - ] - }); - profile.CodecProfiles.push({ Type: 'Video', Codec: 'h264', @@ -787,6 +791,15 @@ var Dashboard = { }] }); + //profile.TranscodingProfiles.filter(function (p) { + + // return p.Type == 'Video' && p.Container == 'mkv'; + + //}).forEach(function (p) { + + // p.Container = 'ts'; + //}); + profile.TranscodingProfiles.filter(function (p) { return p.Type == 'Video' && p.CopyTimestamps == true; @@ -810,7 +823,7 @@ var Dashboard = { if (enableVlcAudio) { profile.DirectPlayProfiles.push({ - Container: "aac,mp3,mpa,wav,wma,mp2,ogg,oga,webma,ape,m4a,opus,flac", + Container: "aac,mp3,mpa,wav,wma,mp2,ogg,oga,webma,ape,opus,flac,m4a", Type: 'Audio' }); @@ -883,6 +896,7 @@ var Dashboard = { var AppInfo = {}; (function () { + 'use strict'; function setAppInfo() { @@ -1023,7 +1037,7 @@ var AppInfo = {}; var capabilities = Dashboard.capabilities(); capabilities.DeviceProfile = deviceProfile; - connectionManager = new MediaBrowser.ConnectionManager(credentialProviderInstance, appInfo.appName, appInfo.appVersion, appInfo.deviceName, appInfo.deviceId, capabilities, window.devicePixelRatio); + var connectionManager = new MediaBrowser.ConnectionManager(credentialProviderInstance, appInfo.appName, appInfo.appVersion, appInfo.deviceName, appInfo.deviceId, capabilities, window.devicePixelRatio); defineConnectionManager(connectionManager); bindConnectionManagerEvents(connectionManager, events, userSettings); @@ -1073,6 +1087,10 @@ var AppInfo = {}; return; } + if (AppInfo.isNativeApp) { + return; + } + var date = new Date(); var month = date.getMonth(); var day = date.getDate(); @@ -1082,7 +1100,7 @@ var AppInfo = {}; return; } - if (month == 11 && day >= 21 && day <= 26) { + if (month == 11 && day >= 20 && day <= 25) { require(['themes/holiday/theme']); return; } @@ -1210,6 +1228,11 @@ var AppInfo = {}; define("libjass", [bowerPath + "/libjass/libjass.min", "css!" + bowerPath + "/libjass/libjass"], returnFirstDependency); + if (window.IntersectionObserver) { + define("lazyLoader", [embyWebComponentsBowerPath + "/lazyloader/lazyloader-intersectionobserver"], returnFirstDependency); + } else { + define("lazyLoader", [embyWebComponentsBowerPath + "/lazyloader/lazyloader-scroll"], returnFirstDependency); + } define("imageLoader", [embyWebComponentsBowerPath + "/images/imagehelper"], returnFirstDependency); define("syncJobList", ["components/syncjoblist/syncjoblist"], returnFirstDependency); define("appfooter", ["components/appfooter/appfooter"], returnFirstDependency); @@ -1218,6 +1241,8 @@ var AppInfo = {}; define("metadataEditor", [embyWebComponentsBowerPath + "/metadataeditor/metadataeditor"], returnFirstDependency); define("personEditor", [embyWebComponentsBowerPath + "/metadataeditor/personeditor"], returnFirstDependency); + define("libraryMenu", ["scripts/librarymenu"], returnFirstDependency); + define("emby-collapse", [embyWebComponentsBowerPath + "/emby-collapse/emby-collapse"], returnFirstDependency); define("emby-button", [embyWebComponentsBowerPath + "/emby-button/emby-button"], returnFirstDependency); define("emby-itemscontainer", [embyWebComponentsBowerPath + "/emby-itemscontainer/emby-itemscontainer"], returnFirstDependency); @@ -1259,11 +1284,12 @@ var AppInfo = {}; define("peoplecardbuilder", [embyWebComponentsBowerPath + "/cardbuilder/peoplecardbuilder"], returnFirstDependency); define("chaptercardbuilder", [embyWebComponentsBowerPath + "/cardbuilder/chaptercardbuilder"], returnFirstDependency); + define("deleteHelper", [embyWebComponentsBowerPath + "/deletehelper"], returnFirstDependency); define("tvguide", [embyWebComponentsBowerPath + "/guide/guide"], returnFirstDependency); define("programStyles", ['css!' + embyWebComponentsBowerPath + "/guide/programs"], returnFirstDependency); define("guide-settings-dialog", [embyWebComponentsBowerPath + "/guide/guide-settings"], returnFirstDependency); - define("guide-categories-dialog", [embyWebComponentsBowerPath + "/guide/guide-categories"], returnFirstDependency); define("syncDialog", [embyWebComponentsBowerPath + "/sync/sync"], returnFirstDependency); + define("syncToggle", [embyWebComponentsBowerPath + "/sync/synctoggle"], returnFirstDependency); define("voiceDialog", [embyWebComponentsBowerPath + "/voice/voicedialog"], returnFirstDependency); define("voiceReceiver", [embyWebComponentsBowerPath + "/voice/voicereceiver"], returnFirstDependency); define("voiceProcessor", [embyWebComponentsBowerPath + "/voice/voiceprocessor"], returnFirstDependency); @@ -1351,7 +1377,6 @@ var AppInfo = {}; define('arraypolyfills', [embyWebComponentsBowerPath + '/polyfills/array']); define('objectassign', [embyWebComponentsBowerPath + '/polyfills/objectassign']); - define('native-promise-only', [bowerPath + '/native-promise-only/lib/npo.src']); define("clearButtonStyle", ['css!' + embyWebComponentsBowerPath + '/clearbutton']); define("userdataButtons", [embyWebComponentsBowerPath + "/userdatabuttons/userdatabuttons"], returnFirstDependency); define("listView", [embyWebComponentsBowerPath + "/listview/listview"], returnFirstDependency); @@ -1437,11 +1462,11 @@ var AppInfo = {}; if (options.fullscreen === false) { // theme backdrops - not supported if (!options.items || options.items[0].MediaType == 'Video') { - return; + return Promise.reject(); } } - MediaController.play(options); + return MediaController.play(options); }, queue: function (options) { @@ -1530,7 +1555,7 @@ var AppInfo = {}; }; embyRouter.showSettings = function () { - Dashboard.navigate('mypreferencesmenu.html?userId=' + ApiClient.getCurrentUserId()); + Dashboard.navigate('mypreferencesmenu.html'); }; embyRouter.showGuide = function () { @@ -1615,7 +1640,11 @@ var AppInfo = {}; var embyWebComponentsBowerPath = bowerPath + '/emby-webcomponents'; if (Dashboard.isRunningInCordova()) { - define("actionsheet", ["cordova/actionsheet"], returnFirstDependency); + if (window.MainActivity && window.MainActivity.getAndroidBuildVersion() >= 24) { + define("actionsheet", ["webActionSheet"], returnFirstDependency); + } else { + define("actionsheet", ["cordova/actionsheet"], returnFirstDependency); + } } else { define("actionsheet", ["webActionSheet"], returnFirstDependency); } @@ -1636,7 +1665,7 @@ var AppInfo = {}; define("imageFetcher", [embyWebComponentsBowerPath + "/images/basicimagefetcher"], returnFirstDependency); } - var preferNativeAlerts = (browser.mobile && !browser.animate) || browser.tv || browser.xboxOne || browser.ps4; + var preferNativeAlerts = browser.tv || browser.xboxOne || browser.ps4; // use native alerts if preferred and supported (not supported in opera tv) if (preferNativeAlerts && window.alert) { define("alert", [embyWebComponentsBowerPath + "/alert/nativealert"], returnFirstDependency); @@ -1682,14 +1711,9 @@ var AppInfo = {}; if (Dashboard.isRunningInCordova() && browserInfo.android) { - if (MainActivity.getChromeVersion() >= 48) { - //define("audiorenderer", ["scripts/htmlmediarenderer"]); - window.VlcAudio = true; - define("audiorenderer", ["cordova/android/vlcplayer"]); - } else { - window.VlcAudio = true; - define("audiorenderer", ["cordova/android/vlcplayer"]); - } + //define("audiorenderer", ["scripts/htmlmediarenderer"]); + window.VlcAudio = true; + define("audiorenderer", ["cordova/android/vlcplayer"]); define("videorenderer", ["cordova/android/vlcplayer"]); } else if (Dashboard.isRunningInCordova() && browserInfo.safari) { @@ -1838,14 +1862,6 @@ var AppInfo = {}; console.log('Defining core routes'); - defineRoute({ - path: '/about.html', - dependencies: [], - autoFocus: false, - controller: 'dashboard/aboutpage', - roles: 'admin' - }); - defineRoute({ path: '/addplugin.html', dependencies: [], @@ -2113,13 +2129,6 @@ var AppInfo = {}; controller: 'dashboard/librarydisplay' }); - defineRoute({ - path: '/librarypathmapping.html', - dependencies: [], - autoFocus: false, - roles: 'admin' - }); - defineRoute({ path: '/librarysettings.html', dependencies: ['emby-collapse', 'emby-input', 'emby-button', 'emby-select'], @@ -2637,7 +2646,6 @@ var AppInfo = {}; var deps = []; - deps.push('imageLoader'); deps.push('embyRouter'); if (!(AppInfo.isNativeApp && browserInfo.android)) { @@ -2661,16 +2669,14 @@ var AppInfo = {}; } } - deps.push('scripts/librarymenu'); + deps.push('libraryMenu'); console.log('onAppReady - loading dependencies'); - require(deps, function (imageLoader, pageObjects) { + require(deps, function (pageObjects) { console.log('Loaded dependencies in onAppReady'); - window.ImageLoader = imageLoader; - window.Emby = {}; window.Emby.Page = pageObjects; defineCoreRoutes(); @@ -2776,32 +2782,28 @@ var AppInfo = {}; initRequire(); - function onWebComponentsReady() { + function onWebComponentsReady(browser) { var initialDependencies = []; - initialDependencies.push('browser'); - - if (!window.Promise) { - initialDependencies.push('native-promise-only'); + if (!window.Promise || browser.web0s) { + initialDependencies.push('bower_components/emby-webcomponents/native-promise-only/lib/npo.src'); } - require(initialDependencies, function (browser) { + initRequireWithBrowser(browser); - initRequireWithBrowser(browser); + window.browserInfo = browser; + setAppInfo(); + setDocumentClasses(browser); - window.browserInfo = browser; - setAppInfo(); - setDocumentClasses(browser); - - init(); - }); + require(initialDependencies, init); } - onWebComponentsReady(); + require(['browser'], onWebComponentsReady); })(); function pageClassOn(eventName, className, fn) { + 'use strict'; document.addEventListener(eventName, function (e) { @@ -2813,6 +2815,7 @@ function pageClassOn(eventName, className, fn) { } function pageIdOn(eventName, id, fn) { + 'use strict'; document.addEventListener(eventName, function (e) { @@ -2824,6 +2827,7 @@ function pageIdOn(eventName, id, fn) { } pageClassOn('viewinit', "page", function () { + 'use strict'; var page = this; @@ -2864,6 +2868,7 @@ pageClassOn('viewinit', "page", function () { }); pageClassOn('viewshow', "page", function () { + 'use strict'; var page = this; diff --git a/dashboard-ui/scripts/songs.js b/dashboard-ui/scripts/songs.js index bf55bb0708..0bd98f8ea8 100644 --- a/dashboard-ui/scripts/songs.js +++ b/dashboard-ui/scripts/songs.js @@ -1,4 +1,5 @@ define(['events', 'libraryBrowser', 'imageLoader', 'listView', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, listView) { + 'use strict'; return function (view, params, tabContent) { @@ -71,7 +72,8 @@ var html = listView.getListViewHtml({ items: result.Items, action: 'playallfromhere', - smallIcon: true + smallIcon: true, + artist: true }); var i, length; diff --git a/dashboard-ui/scripts/streamingsettings.js b/dashboard-ui/scripts/streamingsettings.js index 748821eb42..57c23178d8 100644 --- a/dashboard-ui/scripts/streamingsettings.js +++ b/dashboard-ui/scripts/streamingsettings.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function loadPage(page, config) { diff --git a/dashboard-ui/scripts/supporterkeypage.js b/dashboard-ui/scripts/supporterkeypage.js index 1247d29997..61059375d2 100644 --- a/dashboard-ui/scripts/supporterkeypage.js +++ b/dashboard-ui/scripts/supporterkeypage.js @@ -1,4 +1,5 @@ define(['fetchHelper', 'jQuery', 'registrationServices'], function (fetchHelper, $, registrationServices) { + 'use strict'; function load(page) { Dashboard.showLoadingMsg(); diff --git a/dashboard-ui/scripts/syncactivity.js b/dashboard-ui/scripts/syncactivity.js index fbb5161776..4800c9a607 100644 --- a/dashboard-ui/scripts/syncactivity.js +++ b/dashboard-ui/scripts/syncactivity.js @@ -1,4 +1,5 @@ define(['loading', 'apphost', 'globalize', 'syncJobList', 'events', 'scripts/taskbutton', 'localsync', 'emby-button', 'paper-icon-button-light'], function (loading, appHost, globalize, syncJobList, events, taskButton) { + 'use strict'; function getTabs() { return [ diff --git a/dashboard-ui/scripts/syncjob.js b/dashboard-ui/scripts/syncjob.js index 458198dd48..d89c3a7842 100644 --- a/dashboard-ui/scripts/syncjob.js +++ b/dashboard-ui/scripts/syncjob.js @@ -1,4 +1,5 @@ -define(['datetime', 'dom', 'listViewStyle', 'paper-icon-button-light', 'emby-button'], function (datetime, dom) { +define(['datetime', 'dom', 'imageLoader', 'listViewStyle', 'paper-icon-button-light', 'emby-button'], function (datetime, dom, imageLoader) { + 'use strict'; function renderJob(page, job, dialogOptions) { @@ -118,7 +119,7 @@ var elem = page.querySelector('.jobItems'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); } function parentWithClass(elem, className) { diff --git a/dashboard-ui/scripts/syncsettings.js b/dashboard-ui/scripts/syncsettings.js index 6402578e2e..f7c99178a1 100644 --- a/dashboard-ui/scripts/syncsettings.js +++ b/dashboard-ui/scripts/syncsettings.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; function loadPage(page, config) { diff --git a/dashboard-ui/scripts/taskbutton.js b/dashboard-ui/scripts/taskbutton.js index 273acfa841..b3a8f9560a 100644 --- a/dashboard-ui/scripts/taskbutton.js +++ b/dashboard-ui/scripts/taskbutton.js @@ -1,4 +1,5 @@ define(['userSettings', 'emby-button'], function (userSettings) { + 'use strict'; return function (options) { diff --git a/dashboard-ui/scripts/tvgenres.js b/dashboard-ui/scripts/tvgenres.js index 58151d19ac..5a41885f99 100644 --- a/dashboard-ui/scripts/tvgenres.js +++ b/dashboard-ui/scripts/tvgenres.js @@ -1,8 +1,9 @@ -define(['libraryBrowser', 'cardBuilder'], function (libraryBrowser, cardBuilder) { +define(['libraryBrowser', 'cardBuilder', 'lazyLoader', 'apphost', 'globalize', 'dom'], function (libraryBrowser, cardBuilder, lazyLoader, appHost, globalize, dom) { + 'use strict'; return function (view, params, tabContent) { - var self = this; + var self = this; var data = {}; function getPageData() { @@ -16,10 +17,9 @@ SortOrder: "Ascending", IncludeItemTypes: "Series", Recursive: true, - Fields: "DateCreated,ItemCounts,PrimaryImageAspectRatio", - StartIndex: 0 + EnableTotalRecordCount: false }, - view: libraryBrowser.getSavedView(key) || 'Thumb' + view: libraryBrowser.getSavedView(key) || (appHost.preferVisualCards ? 'PosterCard' : 'Poster') }; pageData.query.ParentId = params.topParentId; @@ -35,7 +35,7 @@ function getSavedQueryKey() { - return libraryBrowser.getSavedQueryKey('genres'); + return libraryBrowser.getSavedQueryKey('seriesgenres'); } function getPromise() { @@ -44,7 +44,128 @@ var query = getQuery(); return ApiClient.getGenres(Dashboard.getCurrentUserId(), query); - } + } + + function enableScrollX() { + return browserInfo.mobile && AppInfo.enableAppLayouts; + } + + function getThumbShape() { + return enableScrollX() ? 'overflowBackdrop' : 'backdrop'; + } + + function getPortraitShape() { + return enableScrollX() ? 'overflowPortrait' : 'portrait'; + } + + function getMoreItemsHref(itemId, type) { + + return 'secondaryitems.html?type=' + type + '&genreId=' + itemId + '&parentId=' + params.topParentId; + } + + dom.addEventListener(tabContent, 'click', function (e) { + + var btnMoreFromGenre = dom.parentWithClass(e.target, 'btnMoreFromGenre'); + if (btnMoreFromGenre) { + var id = btnMoreFromGenre.getAttribute('data-id'); + Dashboard.navigate(getMoreItemsHref(id, 'Series')); + } + + }, { + passive: true + }); + + function fillItemsContainer(elem) { + + var id = elem.getAttribute('data-id'); + + var viewStyle = self.getCurrentViewStyle(); + + var limit = viewStyle == 'Thumb' || viewStyle == 'ThumbCard' ? + 5 : + 8; + + if (enableScrollX()) { + limit = 10; + } + + var enableImageTypes = viewStyle == 'Thumb' || viewStyle == 'ThumbCard' ? + "Primary,Backdrop,Thumb" : + "Primary"; + + var query = { + SortBy: "SortName", + SortOrder: "Ascending", + IncludeItemTypes: "Series", + Recursive: true, + Fields: "PrimaryImageAspectRatio,MediaSourceCount,BasicSyncInfo", + ImageTypeLimit: 1, + EnableImageTypes: enableImageTypes, + Limit: limit, + GenreIds: id, + EnableTotalRecordCount: false, + ParentId: params.topParentId + }; + + ApiClient.getItems(Dashboard.getCurrentUserId(), query).then(function (result) { + + var supportsImageAnalysis = appHost.supports('imageanalysis'); + + if (viewStyle == "Thumb") { + cardBuilder.buildCards(result.Items, { + itemsContainer: elem, + shape: getThumbShape(), + preferThumb: true, + showTitle: true, + scalable: true, + centerText: true, + overlayMoreButton: true, + allowBottomPadding: false + }); + } + else if (viewStyle == "ThumbCard") { + + cardBuilder.buildCards(result.Items, { + itemsContainer: elem, + shape: getThumbShape(), + preferThumb: true, + showTitle: true, + scalable: true, + centerText: false, + cardLayout: true, + vibrant: supportsImageAnalysis, + showSeriesYear: true + }); + } + else if (viewStyle == "PosterCard") { + cardBuilder.buildCards(result.Items, { + itemsContainer: elem, + shape: getPortraitShape(), + showTitle: true, + scalable: true, + centerText: false, + cardLayout: true, + vibrant: supportsImageAnalysis, + showSeriesYear: true + }); + } + else if (viewStyle == "Poster") { + cardBuilder.buildCards(result.Items, { + itemsContainer: elem, + shape: getPortraitShape(), + showTitle: true, + scalable: true, + centerText: true, + overlayMoreButton: true, + allowBottomPadding: false + }); + } + + if (result.Items.length >= query.Limit) { + tabContent.querySelector('.btnMoreFromGenre' + id).classList.remove('hide'); + } + }); + } function reloadItems(context, promise) { @@ -52,65 +173,47 @@ promise.then(function (result) { + var elem = context.querySelector('#items'); var html = ''; - var viewStyle = self.getCurrentViewStyle(); - var elem = context.querySelector('#items'); + var items = result.Items; - if (viewStyle == "Thumb") { - cardBuilder.buildCards(result.Items, { - itemsContainer: elem, - shape: "backdrop", - preferThumb: true, - showTitle: true, - scalable: true, - showItemCounts: true, - centerText: true, - overlayMoreButton: true - }); - } - else if (viewStyle == "ThumbCard") { + for (var i = 0, length = items.length; i < length; i++) { - cardBuilder.buildCards(result.Items, { - itemsContainer: elem, - shape: "backdrop", - preferThumb: true, - showTitle: true, - scalable: true, - showItemCounts: true, - centerText: false, - cardLayout: true - }); - } - else if (viewStyle == "PosterCard") { - cardBuilder.buildCards(result.Items, { - itemsContainer: elem, - shape: "auto", - showTitle: true, - scalable: true, - showItemCounts: true, - centerText: false, - cardLayout: true - }); - } - else if (viewStyle == "Poster") { - cardBuilder.buildCards(result.Items, { - itemsContainer: elem, - shape: "auto", - showTitle: true, - scalable: true, - showItemCounts: true, - centerText: true, - overlayMoreButton: true - }); + var item = items[i]; + + html += '
'; + + html += '
'; + html += '

'; + html += item.Name; + html += '

'; + html += ''; + html += '
'; + + if (enableScrollX()) { + html += '
'; + } else { + html += '
'; + } + html += '
'; + + html += '
'; } + elem.innerHTML = html; + + lazyLoader.lazyChildren(elem, fillItemsContainer); + libraryBrowser.saveQueryValues(getSavedQueryKey(), query); Dashboard.hideLoadingMsg(); }); - } - self.getViewStyles = function () { + } + + self.getViewStyles = function () { return 'Poster,PosterCard,Thumb,ThumbCard'.split(','); }; @@ -140,16 +243,5 @@ self.preRender(); self.renderTab(); } - - var btnSelectView = tabContent.querySelector('.btnSelectView'); - btnSelectView.addEventListener('click', function (e) { - - libraryBrowser.showLayoutMenu(e.target, self.getCurrentViewStyle(), self.getViewStyles()); - }); - - btnSelectView.addEventListener('layoutchange', function (e) { - - self.setCurrentViewStyle(e.detail.viewStyle); - }); }; }); \ No newline at end of file diff --git a/dashboard-ui/scripts/tvlatest.js b/dashboard-ui/scripts/tvlatest.js index 661e9aee31..3b92833fec 100644 --- a/dashboard-ui/scripts/tvlatest.js +++ b/dashboard-ui/scripts/tvlatest.js @@ -1,4 +1,5 @@ -define(['components/categorysyncbuttons', 'components/groupedcards', 'cardBuilder'], function (categorysyncbuttons, groupedcards, cardBuilder) { +define(['components/categorysyncbuttons', 'components/groupedcards', 'cardBuilder', 'apphost', 'imageLoader'], function (categorysyncbuttons, groupedcards, cardBuilder, appHost, imageLoader) { + 'use strict'; function getView() { @@ -30,44 +31,32 @@ promise.then(function (items) { - var view = getView(); var html = ''; - if (view == 'ThumbCard') { + var supportsImageAnalysis = appHost.supports('imageanalysis'); + var cardLayout = supportsImageAnalysis; - html += cardBuilder.getCardsHtml({ - items: items, - shape: "backdrop", - preferThumb: true, - inheritThumb: false, - showUnplayedIndicator: false, - showChildCountIndicator: true, - showParentTitle: true, - lazy: true, - showTitle: true, - cardLayout: true - }); - - } else if (view == 'Thumb') { - - html += cardBuilder.getCardsHtml({ - items: items, - shape: "backdrop", - preferThumb: true, - inheritThumb: false, - showParentTitle: false, - showUnplayedIndicator: false, - showChildCountIndicator: true, - centerText: true, - lazy: true, - showTitle: false, - overlayPlayButton: true - }); - } + html += cardBuilder.getCardsHtml({ + items: items, + shape: "backdrop", + preferThumb: true, + showTitle: true, + showSeriesYear: true, + showParentTitle: true, + overlayText: false, + cardLayout: cardLayout, + showUnplayedIndicator: false, + showChildCountIndicator: true, + centerText: !cardLayout, + lazy: true, + overlayPlayButton: true, + vibrant: supportsImageAnalysis, + lines: 2 + }); var elem = context.querySelector('#latestEpisodes'); elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); Dashboard.hideLoadingMsg(); }); diff --git a/dashboard-ui/scripts/tvrecommended.js b/dashboard-ui/scripts/tvrecommended.js index 402bfd756e..db60b74ff9 100644 --- a/dashboard-ui/scripts/tvrecommended.js +++ b/dashboard-ui/scripts/tvrecommended.js @@ -1,4 +1,5 @@ define(['libraryBrowser', 'dom', 'components/categorysyncbuttons', 'cardBuilder', 'apphost', 'scrollStyles', 'emby-itemscontainer', 'emby-tabs', 'emby-button'], function (libraryBrowser, dom, categorysyncbuttons, cardBuilder, appHost) { + 'use strict'; return function (view, params) { @@ -34,7 +35,6 @@ } var container = view.querySelector('#nextUpItems'); - var supportsImageAnalysis = appHost.supports('imageanalysis'); cardBuilder.buildCards(result.Items, { @@ -98,7 +98,8 @@ var container = view.querySelector('#resumableItems'); - var cardLayout = appHost.preferVisualCards; + var supportsImageAnalysis = appHost.supports('imageanalysis'); + var cardLayout = supportsImageAnalysis; cardBuilder.buildCards(result.Items, { itemsContainer: container, @@ -111,7 +112,8 @@ centerText: !cardLayout, overlayPlayButton: true, allowBottomPadding: allowBottomPadding, - cardLayout: cardLayout + cardLayout: cardLayout, + vibrant: supportsImageAnalysis }); }); } @@ -158,14 +160,14 @@ depends.push('scripts/tvshows'); break; case 4: - depends.push('scripts/episodes'); - break; - case 5: depends.push('scripts/tvgenres'); break; - case 6: + case 5: depends.push('scripts/tvstudios'); break; + case 6: + depends.push('scripts/episodes'); + break; default: break; } diff --git a/dashboard-ui/scripts/tvshows.js b/dashboard-ui/scripts/tvshows.js index a1d818f1fe..80a16dd9b7 100644 --- a/dashboard-ui/scripts/tvshows.js +++ b/dashboard-ui/scripts/tvshows.js @@ -1,4 +1,5 @@ -define(['events', 'libraryBrowser', 'imageLoader', 'alphaPicker', 'listView', 'cardBuilder', 'apphost', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, alphaPicker, listView, cardBuilder, appHost) { +define(['events', 'libraryBrowser', 'imageLoader', 'listView', 'cardBuilder', 'apphost', 'emby-itemscontainer'], function (events, libraryBrowser, imageLoader, listView, cardBuilder, appHost) { + 'use strict'; return function (view, params, tabContent) { @@ -100,9 +101,9 @@ items: result.Items, shape: "backdrop", preferThumb: true, - context: 'tv', + context: 'tvshows', lazy: true, - overlayPlayButton: true + overlayMoreButton: true }); } else if (viewStyle == "ThumbCard") { @@ -111,7 +112,7 @@ items: result.Items, shape: "backdrop", preferThumb: true, - context: 'tv', + context: 'tvshows', lazy: true, cardLayout: true, showTitle: true, @@ -125,7 +126,7 @@ items: result.Items, shape: "banner", preferBanner: true, - context: 'tv', + context: 'tvshows', lazy: true }); } @@ -133,7 +134,7 @@ html = listView.getListViewHtml({ items: result.Items, - context: 'tv', + context: 'tvshows', sortBy: query.SortBy }); } @@ -142,7 +143,7 @@ html = cardBuilder.getCardsHtml({ items: result.Items, shape: "portrait", - context: 'tv', + context: 'tvshows', showTitle: true, showSeriesYear: true, lazy: true, @@ -156,10 +157,10 @@ html = cardBuilder.getCardsHtml({ items: result.Items, shape: "portrait", - context: 'tv', + context: 'tvshows', centerText: true, lazy: true, - overlayPlayButton: true + overlayMoreButton: true }); } @@ -219,26 +220,10 @@ function updateFilterControls(tabContent) { - var query = getQuery(tabContent); - self.alphaPicker.value(query.NameStartsWithOrGreater); } function initPage(tabContent) { - var alphaPickerElement = tabContent.querySelector('.alphaPicker'); - alphaPickerElement.addEventListener('alphavaluechanged', function (e) { - var newValue = e.detail.value; - var query = getQuery(tabContent); - query.NameStartsWithOrGreater = newValue; - query.StartIndex = 0; - reloadItems(tabContent); - }); - - self.alphaPicker = new alphaPicker({ - element: alphaPickerElement, - valueChangeEvent: 'click' - }); - tabContent.querySelector('.btnFilter').addEventListener('click', function () { self.showFilterMenu(); }); diff --git a/dashboard-ui/scripts/tvstudios.js b/dashboard-ui/scripts/tvstudios.js index e2cb90bc48..cd264ea74b 100644 --- a/dashboard-ui/scripts/tvstudios.js +++ b/dashboard-ui/scripts/tvstudios.js @@ -1,4 +1,5 @@ define(['libraryBrowser', 'cardBuilder', 'apphost'], function (libraryBrowser, cardBuilder, appHost) { + 'use strict'; // The base query options var data = {}; @@ -48,11 +49,12 @@ itemsContainer: elem, shape: "backdrop", preferThumb: true, - showTitle: false, + showTitle: true, scalable: true, showItemCounts: true, centerText: true, - overlayMoreButton: true + overlayMoreButton: true, + context: 'tvshows' }); Dashboard.hideLoadingMsg(); diff --git a/dashboard-ui/scripts/tvupcoming.js b/dashboard-ui/scripts/tvupcoming.js index 2997c17dd4..c9e3c4111b 100644 --- a/dashboard-ui/scripts/tvupcoming.js +++ b/dashboard-ui/scripts/tvupcoming.js @@ -1,4 +1,5 @@ -define(['datetime', 'libraryBrowser', 'cardBuilder', 'apphost', 'scrollStyles', 'emby-itemscontainer'], function (datetime, libraryBrowser, cardBuilder, appHost) { +define(['datetime', 'libraryBrowser', 'cardBuilder', 'apphost', 'imageLoader', 'scrollStyles', 'emby-itemscontainer'], function (datetime, libraryBrowser, cardBuilder, appHost, imageLoader) { + 'use strict'; function getUpcomingPromise(context, params) { @@ -122,6 +123,7 @@ showDetailsMenu: true, centerText: !supportsImageAnalysis, showParentTitle: true, + overlayText: false, allowBottomPadding: allowBottomPadding, cardLayout: supportsImageAnalysis, vibrant: supportsImageAnalysis @@ -133,7 +135,7 @@ } elem.innerHTML = html; - ImageLoader.lazyChildren(elem); + imageLoader.lazyChildren(elem); } return function (view, params, tabContent) { diff --git a/dashboard-ui/scripts/useredit.js b/dashboard-ui/scripts/useredit.js index 1972176a36..7d1ed677d2 100644 --- a/dashboard-ui/scripts/useredit.js +++ b/dashboard-ui/scripts/useredit.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; var currentUser; diff --git a/dashboard-ui/scripts/userlibraryaccess.js b/dashboard-ui/scripts/userlibraryaccess.js index 6d688424e4..6bf4bc8789 100644 --- a/dashboard-ui/scripts/userlibraryaccess.js +++ b/dashboard-ui/scripts/userlibraryaccess.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked'], function ($) { + 'use strict'; function loadMediaFolders(page, user, mediaFolders) { diff --git a/dashboard-ui/scripts/usernew.js b/dashboard-ui/scripts/usernew.js index 2efd3d4a54..d164ae911c 100644 --- a/dashboard-ui/scripts/usernew.js +++ b/dashboard-ui/scripts/usernew.js @@ -1,4 +1,5 @@ define(['jQuery', 'fnchecked', 'emby-checkbox'], function ($) { + 'use strict'; function loadMediaFolders(page, mediaFolders) { diff --git a/dashboard-ui/scripts/userparentalcontrol.js b/dashboard-ui/scripts/userparentalcontrol.js index 6c75a13ba2..60f4514873 100644 --- a/dashboard-ui/scripts/userparentalcontrol.js +++ b/dashboard-ui/scripts/userparentalcontrol.js @@ -1,4 +1,5 @@ define(['jQuery', 'datetime', 'listViewStyle', 'paper-icon-button-light'], function ($, datetime) { + 'use strict'; function populateRatings(allParentalRatings, page) { @@ -45,7 +46,6 @@ { name: Globalize.translate('OptionBlockGames'), value: 'Game' }, { name: Globalize.translate('OptionBlockChannelContent'), value: 'ChannelContent' }, { name: Globalize.translate('OptionBlockLiveTvChannels'), value: 'LiveTvChannel' }, - { name: Globalize.translate('OptionBlockLiveTvPrograms'), value: 'LiveTvProgram' }, { name: Globalize.translate('OptionBlockMovies'), value: 'Movie' }, { name: Globalize.translate('OptionBlockMusic'), value: 'Music' }, { name: Globalize.translate('OptionBlockTrailers'), value: 'Trailer' }, diff --git a/dashboard-ui/scripts/userpassword.js b/dashboard-ui/scripts/userpassword.js index 87389832c1..e366129be3 100644 --- a/dashboard-ui/scripts/userpassword.js +++ b/dashboard-ui/scripts/userpassword.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function loadUser(page, user) { diff --git a/dashboard-ui/scripts/userpasswordpage.js b/dashboard-ui/scripts/userpasswordpage.js index fdcf24bb71..b0bb729778 100644 --- a/dashboard-ui/scripts/userpasswordpage.js +++ b/dashboard-ui/scripts/userpasswordpage.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; function loadUser(page, params) { diff --git a/dashboard-ui/scripts/userprofilespage.js b/dashboard-ui/scripts/userprofilespage.js index f68f2c98c4..c3b22a28bc 100644 --- a/dashboard-ui/scripts/userprofilespage.js +++ b/dashboard-ui/scripts/userprofilespage.js @@ -1,4 +1,5 @@ define(['jQuery', 'humanedate', 'paper-icon-button-light', 'cardStyle'], function ($) { + 'use strict'; function deleteUser(page, id) { @@ -230,9 +231,9 @@ require(['actionsheet'], function (actionsheet) { - var card = $(elem).parents('.card'); - var page = $(elem).parents('.page'); - var id = card.attr('data-id'); + var card = $(elem).parents('.card')[0]; + var page = $(elem).parents('.page')[0]; + var id = card.getAttribute('data-id'); actionsheet.show({ items: menuItems, diff --git a/dashboard-ui/scripts/wizardagreement.js b/dashboard-ui/scripts/wizardagreement.js index 09ef593ba7..9e39c04826 100644 --- a/dashboard-ui/scripts/wizardagreement.js +++ b/dashboard-ui/scripts/wizardagreement.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function onSubmit() { diff --git a/dashboard-ui/scripts/wizardcontroller.js b/dashboard-ui/scripts/wizardcontroller.js index aa770f4d6d..3f2e5c73cb 100644 --- a/dashboard-ui/scripts/wizardcontroller.js +++ b/dashboard-ui/scripts/wizardcontroller.js @@ -1,4 +1,5 @@ define([], function () { + 'use strict'; function navigateToComponents() { var apiClient = ApiClient; diff --git a/dashboard-ui/scripts/wizardlivetvguide.js b/dashboard-ui/scripts/wizardlivetvguide.js index 11b0749dcc..6081f8972e 100644 --- a/dashboard-ui/scripts/wizardlivetvguide.js +++ b/dashboard-ui/scripts/wizardlivetvguide.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; var guideController; diff --git a/dashboard-ui/scripts/wizardlivetvtuner.js b/dashboard-ui/scripts/wizardlivetvtuner.js index 89a862f6aa..1e654deef5 100644 --- a/dashboard-ui/scripts/wizardlivetvtuner.js +++ b/dashboard-ui/scripts/wizardlivetvtuner.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function save(page) { diff --git a/dashboard-ui/scripts/wizardsettings.js b/dashboard-ui/scripts/wizardsettings.js index fcd69a6e27..51ab666881 100644 --- a/dashboard-ui/scripts/wizardsettings.js +++ b/dashboard-ui/scripts/wizardsettings.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function save(page) { diff --git a/dashboard-ui/scripts/wizardstartpage.js b/dashboard-ui/scripts/wizardstartpage.js index 819f21a9ac..e434c602aa 100644 --- a/dashboard-ui/scripts/wizardstartpage.js +++ b/dashboard-ui/scripts/wizardstartpage.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function loadPage(page, config, languageOptions) { diff --git a/dashboard-ui/scripts/wizarduserpage.js b/dashboard-ui/scripts/wizarduserpage.js index 5608fba3af..f87b4781f2 100644 --- a/dashboard-ui/scripts/wizarduserpage.js +++ b/dashboard-ui/scripts/wizarduserpage.js @@ -1,4 +1,5 @@ define(['jQuery'], function ($) { + 'use strict'; function getApiClient() { return ApiClient; diff --git a/dashboard-ui/search.html b/dashboard-ui/search.html index 445eb2c6a0..a66677678f 100644 --- a/dashboard-ui/search.html +++ b/dashboard-ui/search.html @@ -4,7 +4,7 @@ @media all and (max-width: 800px) { .txtSearch { - text-indent: 7.5%; + padding-left: 7.5%; padding-bottom: 1em; } } @@ -12,14 +12,14 @@ @media all and (max-width: 650px) { .txtSearch { - text-indent: 10%; + padding-left: 10%; } } @media all and (max-width: 500px) { .txtSearch { - text-indent: 12.5%; + padding-left: 12.5%; } } diff --git a/dashboard-ui/secondaryitems.html b/dashboard-ui/secondaryitems.html index d59b6896d5..d5b7ae55b2 100644 --- a/dashboard-ui/secondaryitems.html +++ b/dashboard-ui/secondaryitems.html @@ -1,11 +1,15 @@ -
+
-
+
+ +
+
+
\ No newline at end of file diff --git a/dashboard-ui/strings/ar.json b/dashboard-ui/strings/ar.json index ba15e2766a..62479e5607 100644 --- a/dashboard-ui/strings/ar.json +++ b/dashboard-ui/strings/ar.json @@ -1,2146 +1,1949 @@ { - "LabelExit": "\u062e\u0631\u0648\u062c", - "LabelApiDocumentation": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0645\u062f\u062e\u0644 \u0628\u0631\u0645\u062c\u0629 \u0627\u0644\u062a\u0637\u0628\u064a\u0642", - "LabelBrowseLibrary": "\u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0643\u062a\u0628\u0629", - "LabelConfigureServer": "\u0625\u0639\u062f\u0627\u062f \u0625\u0645\u0628\u064a", + "OptionAutomaticallyGroupSeriesHelp": "\u0641\u064a \u062d\u0627\u0644 \u0627\u0644\u062a\u0641\u0639\u064a\u0644 \u0641\u0625\u0646 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0648\u0632\u0639\u0629 \u0628\u064a\u0646 \u0639\u062f\u0629 \u0645\u062c\u0644\u062f\u0627\u062a \u0633\u062a\u062f\u0645\u062c \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b \u0641\u064a \u0645\u062c\u0644\u062f \u0645\u0633\u0644\u0633\u0644 \u0648\u0627\u062d\u062f.", + "OptionAutomaticallyGroupSeries": "\u0625\u062f\u0645\u062c \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0648\u0632\u0639\u0629 \u0628\u064a\u0646 \u0639\u062f\u0629 \u0645\u062c\u0644\u062f\u0627\u062a \u0625\u0644\u0649 \u0645\u062c\u0644\u062f \u0648\u0627\u062d\u062f \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b.", "LabelPrevious": "\u0627\u0644\u0633\u0627\u0628\u0642", - "LabelFinish": "\u0627\u0646\u062a\u0647\u0627\u0621", - "LabelNext": "\u0627\u0644\u062a\u0627\u0644\u0649", + "LabelFinish": "\u0627\u0646\u0647\u0627\u0621", + "LabelNext": "\u0627\u0644\u062a\u0627\u0644\u064a", "LabelYoureDone": "\u062a\u0645 \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621!", - "WelcomeToProject": "\u0645\u0631\u062d\u0628\u0627 \u0628\u0625\u0645\u0628\u064a", - "ThisWizardWillGuideYou": "\u0645\u0631\u0634\u062f \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0633\u064a\u0633\u0627\u0639\u062f\u0643 \u062e\u0644\u0627\u0644 \u062e\u0637\u0648\u0627\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a. \u0644\u0644\u0628\u062f\u0621, \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0644\u063a\u062a\u0643 \u0627\u0644\u0645\u0641\u0636\u0644\u0629.", + "WelcomeToProject": "\u0645\u0631\u062d\u0628\u0627 \u0628\u0643 \u0641\u064a \u0625\u0645\u0628\u064a!", + "ThisWizardWillGuideYou": "\u0645\u0631\u0634\u062f \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0633\u064a\u0633\u0627\u0639\u062f\u0643 \u062e\u0644\u0627\u0644 \u062e\u0637\u0648\u0627\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a. \u0644\u0644\u0628\u062f\u0621\u060c \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0644\u063a\u062a\u0643 \u0627\u0644\u0645\u0641\u0636\u0644\u0629.", "TellUsAboutYourself": "\u0627\u062e\u0628\u0631\u0646\u0627 \u0639\u0646 \u0646\u0641\u0633\u0643", "ButtonQuickStartGuide": "\u062f\u0644\u064a\u0644 \u0628\u062f\u0621 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0633\u0631\u064a\u0639", "LabelYourFirstName": "\u0627\u0644\u0625\u0633\u0645 \u0627\u0644\u0627\u0648\u0644:", - "MoreUsersCanBeAddedLater": "\u064a\u0645\u0643\u0646 \u0627\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0644\u0627\u062d\u0642\u0627 \u0645\u0646 \u0644\u0648\u062d\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.", - "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "\u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632", - "AWindowsServiceHasBeenInstalled": "\u062a\u0645 \u062a\u062b\u0628\u064a\u062a \u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u0646\u062f\u0648\u0632", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", - "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", - "LabelConfigureSettings": "\u0636\u0628\u0637 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", - "HeaderTermsOfService": "Emby Terms of Service", - "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", - "OptionIAcceptTermsOfService": "I accept the terms of service", - "ButtonPrivacyPolicy": "Privacy policy", - "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", - "ButtonConvertMedia": "Convert media", - "ButtonOrganize": "Organize", - "HeaderSupporterBenefits": "Emby Premiere Benefits", - "HeaderAddUser": "Add User", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", - "LabelPinCode": "Pin code:", - "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "HeaderSync": "Sync", + "MoreUsersCanBeAddedLater": "\u064a\u0645\u0643\u0646 \u0627\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0644\u0627\u062d\u0642\u0627 \u0645\u0646 \u0644\u0648\u062d\u0629 \u0627\u0644\u0639\u062f\u0627\u062f\u0627\u062a.", + "UserProfilesIntro": "\u0625\u0645\u0628\u064a \u064a\u062a\u0636\u0645\u0646 \u0627\u0644\u062f\u0639\u0645 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a \u062d\u0633\u0627\u0628\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646\u060c \u0645\u0627 \u064a\u062a\u064a\u062d \u0644\u0643\u0644 \u0645\u0633\u062a\u062e\u062f\u0645 \u0623\u0646 \u064a\u062d\u0641\u0638 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u062e\u0627\u0635\u0629 \u0648\u062d\u0627\u0644\u0627\u062a \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0648\u062e\u0648\u0627\u0635 \u0627\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0623\u0628\u0648\u064a\u0629.", + "WizardCompleted": "\u0647\u0630\u0627 \u0643\u0644 \u0645\u0627 \u0646\u062d\u062a\u0627\u062c\u0647 \u0645\u0646\u0643 \u0627\u0644\u0622\u0646. \u0644\u0642\u062f \u0628\u062f\u0623 \u0623\u0645\u0628\u064a \u0628\u062c\u0645\u0639 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u062a\u064a \u064a\u062d\u062a\u0627\u062c\u0647\u0627 \u0639\u0646 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643. \u062a\u0641\u062d\u0635 \u0628\u0639\u0636 \u062a\u0637\u0628\u064a\u0642\u0627\u062a\u0646\u0627 \u062b\u0645 \u0627\u0636\u063a\u0637 \u0625\u0646\u0647\u0627\u0621<\/b> \u0644\u0639\u0631\u0636 \u0644\u0648\u062d\u0629 \u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645<\/b>.", + "LabelConfigureSettings": "\u0636\u0628\u0637 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", + "HeaderTermsOfService": "\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062d\u0643\u0627\u0645 \u0644\u062e\u062f\u0645\u0629 \u0623\u0645\u0628\u064a", + "MessagePleaseAcceptTermsOfService": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0642\u0628\u0648\u0644 \u0634\u0631\u0648\u0637 \u0648\u0623\u062d\u0643\u0627\u0645 \u0633\u064a\u0627\u0633\u0629 \u0627\u0644\u062e\u062f\u0645\u0629 \u0648\u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629 \u0642\u0628\u0644 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629.", + "OptionIAcceptTermsOfService": "\u0623\u0648\u0627\u0641\u0642 \u0639\u0644\u0649 \u0634\u0631\u0648\u0637 \u0648\u0623\u062d\u0643\u0627\u0645 \u0627\u0644\u062e\u062f\u0645\u0629", + "ButtonPrivacyPolicy": "\u0633\u064a\u0627\u0633\u0629 \u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629", + "ButtonTermsOfService": "\u0634\u0631\u0648\u0637 \u0648\u0623\u062d\u0643\u0627\u0645 \u0627\u0644\u062e\u062f\u0645\u0629", + "ButtonConvertMedia": "\u062a\u062d\u0648\u064a\u0644 \u0635\u064a\u063a\u0629 \u0627\u0644\u0648\u0633\u064a\u0637\u0629", + "ButtonOrganize": "\u062a\u0631\u062a\u064a\u0628", + "HeaderSupporterBenefits": "\u0641\u0648\u0627\u0626\u062f \u0625\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632", + "HeaderAddUser": "\u0625\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645", + "LabelAddConnectSupporterHelp": "\u0644\u0625\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645 \u063a\u064a\u0631 \u0645\u062f\u0631\u062c\u060c \u0639\u0644\u064a\u0643 \u0623\u0648\u0644\u0627\u064b \u0623\u0646 \u062a\u0631\u0628\u0637 \u062d\u0633\u0627\u0628\u0647 \u0644\u0640 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a \u0645\u0646 \u0635\u0641\u062d\u0629 \u062d\u0633\u0627\u0628 \u0627\u0644\u0645\u0633\u062e\u062f\u0645 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0647.", + "LabelPinCode": "\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a:", + "OptionHideWatchedContentFromLatestMedia": "\u0625\u062e\u0641\u0627\u0621 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0634\u0627\u0647\u062f \u0645\u0646 \u0623\u062d\u062f\u062b \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "DeleteMedia": "\u062d\u0630\u0641 \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "HeaderSync": "\u062a\u0632\u0627\u0645\u0646", "ButtonOk": "\u0645\u0648\u0627\u0641\u0642", "ButtonCancel": "\u0627\u0644\u063a\u0627\u0621", - "ButtonExit": "Exit", - "ButtonNew": "New", - "HeaderTaskTriggers": "Task Triggers", - "HeaderTV": "TV", - "HeaderAudio": "Audio", - "HeaderVideo": "Video", - "HeaderPaths": "Paths", - "CategorySync": "Sync", - "TabPlaylist": "Playlist", - "HeaderEasyPinCode": "Easy Pin Code", - "HeaderInstalledServices": "Installed Services", - "HeaderAvailableServices": "Available Services", - "MessageNoServicesInstalled": "No services are currently installed.", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "ButtonConfigurePinCode": "Configure pin code", - "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelCustomCertificatePath": "Custom certificate path:", - "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", - "TitleNotifications": "Notifications", - "OptionDetectArchiveFilesAsMedia": "Detect archive files as media", - "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", - "LabelEnterConnectUserName": "Username or email:", - "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", - "HeaderSyncJobInfo": "Sync Job", - "FolderTypeMixed": "Mixed content", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "FolderTypeInherit": "Inherit", - "LabelContentType": "Content type:", - "TitleScheduledTasks": "Scheduled Tasks", - "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "\u0627\u0636\u0627\u0641\u0629 \u0645\u062c\u0644\u062f \u0644\u0644\u0648\u0633\u0627\u0626\u0637", + "ButtonExit": "\u062e\u0631\u0648\u062c", + "ButtonNew": "\u062c\u062f\u064a\u062f", + "OptionDev": "\u0627\u0644\u0645\u0637\u0648\u0631", + "OptionBeta": "\u0628\u064a\u062a\u0627", + "HeaderTaskTriggers": "\u0632\u0646\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0647\u0627\u0645", + "HeaderTV": "\u0627\u0644\u062a\u0644\u0641\u0627\u0632", + "HeaderAudio": "\u0635\u0648\u062a\u064a\u0627\u062a", + "HeaderVideo": "\u0645\u0631\u0626\u064a\u0627\u062a", + "HeaderPaths": "\u0645\u0633\u0627\u0631\u0627\u062a", + "CategorySync": "\u062a\u0632\u0627\u0645\u0646", + "TabPlaylist": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "HeaderEasyPinCode": "\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0627\u0644\u0645\u064a\u0633\u0631", + "HeaderInstalledServices": "\u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u0645\u062b\u0628\u062a\u0629", + "HeaderAvailableServices": "\u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u0645\u062a\u0627\u062d\u0629", + "MessageNoServicesInstalled": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0623\u064a \u062e\u062f\u0645\u0627\u062a \u0645\u062b\u0628\u062a\u0629 \u062d\u0627\u0644\u064a\u0627\u064b.", + "HeaderToAccessPleaseEnterEasyPinCode": "\u0644\u0644\u062f\u062e\u0648\u0644\u060c \u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0627\u0644\u0645\u064a\u0633\u0631", + "ButtonConfigurePinCode": "\u0636\u0628\u0637 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a", + "RegisterWithPayPal": "\u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0639\u0628\u0631 PayPal", + "LabelSyncTempPath": "\u0645\u0633\u0627\u0631 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0624\u0642\u062a\u0629:", + "LabelSyncTempPathHelp": "\u062d\u062f\u062f \u0645\u062c\u0644\u062f \u0639\u0645\u0644 \u0645\u062e\u0635\u0648\u0635 \u0644\u0644\u062a\u0632\u0627\u0645\u0646. \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u0646\u0634\u0623\u0629 \u0646\u062a\u064a\u062c\u0629 \u062a\u062d\u0648\u064a\u0644 \u0635\u064a\u063a\u062a\u0647\u0627 \u062e\u0644\u0627\u0644 \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062a\u0632\u0627\u0645\u0646 \u0633\u062a\u062d\u0641\u0638 \u0647\u0646\u0627.", + "LabelCustomCertificatePath": "\u0645\u0633\u0627\u0631 \u0627\u0644\u0634\u0647\u0627\u062f\u0629 \u0627\u0644\u0645\u062e\u0635\u0648\u0635\u0629:", + "LabelCustomCertificatePathHelp": "\u0632\u0648\u062f \u0645\u0644\u0641 \u0634\u0647\u0627\u062f\u0629 ssl \u0628\u0627\u0645\u062a\u062f\u0627\u062f pfx \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643. \u0625\u0630\u0627 \u0623\u064f\u0647\u0645\u0644\u062a \u0627\u0644\u062e\u0627\u0646\u0629\u060c \u0641\u0633\u064a\u0642\u0648\u0645 \u0627\u0644\u062e\u0627\u062f\u0645 \u0628\u0625\u0646\u0634\u0627\u0621 \u0634\u0647\u0627\u062f\u0629 \u0645\u0648\u0642\u0639\u0629 \u0630\u0627\u062a\u064a\u0627\u064b.", + "TitleNotifications": "\u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a", + "OptionDetectArchiveFilesAsMedia": "\u0625\u0643\u062a\u0634\u0627\u0641 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0624\u0631\u0634\u0641\u0629 \u0643\u0648\u0633\u0627\u0626\u0637", + "OptionDetectArchiveFilesAsMediaHelp": "\u0639\u0646\u062f \u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0625\u0646 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0628\u0627\u0645\u062a\u062f\u0627\u062f\u0627\u062a rar \u0648 zip \u0633\u062a\u0643\u062a\u0634\u0641 \u0639\u0644\u0649 \u0623\u0646\u0647\u0627 \u0645\u0644\u0641\u0627\u062a \u0648\u0633\u0627\u0626\u0637.", + "LabelEnterConnectUserName": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0623\u0648 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", + "LabelEnterConnectUserNameHelp": "\u0647\u0630\u0627 \u0647\u0648 \u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0623\u0648 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0627\u0644\u062e\u0627\u0635 \u0628\u062d\u0633\u0627\u0628 \u0645\u0648\u0642\u0639 \u0623\u0645\u0628\u064a \u0639\u0644\u0649 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a.", + "HeaderSyncJobInfo": "\u0645\u0647\u0645\u0629 \u062a\u0632\u0627\u0645\u0646", + "FolderTypeMixed": "\u0645\u062d\u062a\u0648\u0649 \u0645\u0646\u0648\u0639", + "FolderTypeMovies": "\u0623\u0641\u0644\u0627\u0645", + "FolderTypeMusic": "\u0645\u0648\u0633\u064a\u0642\u0649", + "FolderTypePhotos": "\u0635\u0648\u0631", + "FolderTypeMusicVideos": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0629", + "FolderTypeGames": "\u0623\u0644\u0639\u0627\u0628", + "FolderTypeBooks": "\u0643\u062a\u0628", + "FolderTypeTvShows": "\u062a\u0644\u0641\u0627\u0632", + "FolderTypeInherit": "\u062a\u0648\u0631\u064a\u062b", + "LabelContentType": "\u0646\u0648\u0639 \u0627\u0644\u0645\u062d\u062a\u0648\u0649", + "TitleScheduledTasks": "\u0645\u0647\u0627\u0645 \u0645\u062c\u062f\u0648\u0644\u0629", + "HeaderSetupLibrary": "\u0636\u0628\u0637 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643", "LabelFolderType": "\u0646\u0648\u0639 \u0627\u0644\u0645\u062c\u0644\u062f:", "LabelCountry": "\u0627\u0644\u0628\u0644\u062f:", "LabelLanguage": "\u0627\u0644\u0644\u063a\u0629:", - "LabelTimeLimitHours": "Time limit (hours):", + "LabelTimeLimitHours": "\u0627\u0644\u0648\u0642\u062a \u0627\u0644\u0645\u062d\u062f\u062f (\u0628\u0627\u0644\u0633\u0627\u0639\u0629):", "HeaderPreferredMetadataLanguage": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a:", - "LabelSaveLocalMetadata": "\u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637", - "LabelSaveLocalMetadataHelp": "\u0628\u062d\u0642\u0638 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0628\u0627\u0634\u0631\u0629 \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0633\u064a\u0633\u0647\u0644 \u0639\u0644\u064a\u0643 \u0627\u0644\u0648\u0635\u0648\u0644 \u0648\u0639\u0645\u0644 \u0627\u0644\u062a\u0639\u062f\u064a\u0644\u0627\u0627\u062a \u0639\u0644\u064a\u0647\u0627.", - "LabelDownloadInternetMetadata": "\u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0627\u0646\u062a\u0631\u0646\u062a", - "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "\u062a\u0641\u0636\u064a\u0644\u0627\u062a", + "LabelSaveLocalMetadata": "\u062d\u0641\u0638 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "LabelSaveLocalMetadataHelp": "\u062d\u0642\u0638 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0628\u0627\u0634\u0631\u0629 \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0633\u064a\u0633\u0647\u0644 \u0639\u0644\u064a\u0643 \u0627\u0644\u0648\u0635\u0648\u0644 \u0648\u0639\u0645\u0644 \u0627\u0644\u062a\u0639\u062f\u064a\u0644\u0627\u0627\u062a \u0639\u0644\u064a\u0647\u0627.", + "LabelDownloadInternetMetadata": "\u0625\u0646\u0632\u0627\u0644 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0627\u0646\u062a\u0631\u0646\u062a", + "LabelDownloadInternetMetadataHelp": "\u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0628\u0625\u0645\u0643\u0627\u0646\u0647 \u0623\u0646 \u064a\u0646\u0632\u0644 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0639\u0646 \u0648\u0633\u0627\u0626\u0637\u0643 \u0644\u062a\u0641\u0639\u064a\u0644 \u062e\u0627\u0635\u064a\u0629 \u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0645\u062b\u0631\u064a.", "TabPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", "TabLibraryAccess": "\u0627\u0644\u062f\u062e\u0648\u0644 \u0627\u0644\u0649 \u0627\u0644\u0645\u0643\u062a\u0628\u0629", - "TabAccess": "Access", + "TabAccess": "\u0627\u0644\u062f\u062e\u0648\u0644", "TabImage": "\u0635\u0648\u0631\u0629", - "TabProfile": "\u0633\u062c\u0644", - "TabMetadata": "Metadata", - "TabImages": "Images", - "TabNotifications": "Notifications", - "TabCollectionTitles": "Titles", - "HeaderDeviceAccess": "Device Access", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "TabProfile": "\u0639\u0631\u064a\u0636\u0629", + "TabMetadata": "\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a", + "TabImages": "\u0635\u0648\u0631", + "TabNotifications": "\u0625\u0634\u0639\u0627\u0631\u0627\u062a", + "TabCollectionTitles": "\u0639\u0646\u0627\u0648\u064a\u0646", + "HeaderDeviceAccess": "\u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0644\u0649 \u062c\u0647\u0627\u0632", + "OptionEnableAccessFromAllDevices": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0644\u0649 \u0643\u0627\u0641\u0629 \u0627\u0644\u0623\u062c\u0647\u0632\u0629", + "OptionEnableAccessToAllChannels": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0644\u0649 \u0643\u0627\u0641\u0629 \u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "OptionEnableAccessToAllLibraries": "\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0644\u0649 \u0643\u0627\u0641\u0629 \u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a", + "DeviceAccessHelp": "\u0647\u0630\u0647 \u0627\u0644\u0645\u064a\u0632\u0629 \u062a\u0646\u0637\u0628\u0642 \u062d\u0635\u0631\u064a\u0627\u064b \u0639\u0644\u0649 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u062a\u064a \u064a\u0645\u0643\u0646 \u0627\u0644\u062a\u0639\u0631\u0641 \u0639\u0644\u064a\u0647\u0627 \u0641\u0631\u062f\u064a\u0627\u064b \u0648\u0644\u0646 \u062a\u0645\u0646\u0639 \u0627\u0644\u0645\u062a\u0635\u0641\u062d \u0645\u0646 \u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0644\u064a\u0647\u0627. \u062a\u0631\u0634\u064a\u062d \u0627\u0644\u0648\u0635\u0648\u0644 \u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0633\u062a\u0645\u0646\u0639 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0645\u0646 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0625\u0644\u0649 \u0623\u0646 \u064a\u062a\u0645 \u0627\u0639\u062a\u0645\u0627\u062f\u0647\u0645 \u0645\u0646 \u0647\u0646\u0627.", + "LabelDisplayMissingEpisodesWithinSeasons": "\u0623\u0638\u0647\u0631 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0641\u0642\u0648\u062f\u0629 \u0641\u064a \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0645\u0648\u0627\u0633\u0645", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "\u064a\u0646\u0628\u063a\u064a \u062a\u0641\u0639\u064a\u0644 \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629 \u0644\u0645\u0643\u062a\u0628\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0641\u064a \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a", + "LabelUnairedMissingEpisodesWithinSeasons": "\u0627\u0639\u0631\u0636 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u062a\u064a \u0644\u0645 \u062a\u0628\u062b \u0641\u064a \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0645\u0648\u0627\u0633\u0645", + "ImportMissingEpisodesHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0645\u0643\u064a\u0646\u060c \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0646\u0627\u0642\u0635\u0629 \u0644\u0644\u062d\u0644\u0642\u0627\u062a \u0633\u062a\u0648\u0631\u0651\u062f \u0625\u0644\u0649 \u0642\u0627\u0639\u062f\u0629 \u0628\u064a\u0627\u0646\u0627\u062a \u0623\u0645\u0628\u064a \u0648\u0633\u062a\u0639\u0631\u0636 \u062f\u0627\u062e\u0644 \u0627\u0644\u0645\u0648\u0627\u0633\u0645 \u0648\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a. \u0642\u062f \u062a\u062a\u0633\u0628\u0628 \u0647\u0630\u0647 \u0628\u0623\u0648\u0642\u0627\u062a \u0623\u0637\u0648\u0644 \u0628\u0643\u062b\u064a\u0631 \u0639\u0646\u062f \u062a\u0645\u0634\u064a\u0637 \u0627\u0644\u0645\u0643\u0646\u0628\u0627\u062a.", "HeaderVideoPlaybackSettings": "\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648", - "HeaderPlaybackSettings": "Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "\u062a\u0646\u0632\u064a\u0644 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a \u0644\u0644\u0628\u0631\u0627\u0645\u062c \u0627\u0644\u0645\u0630\u0643\u0648\u0631\u0629 \u0641\u064a \u0647\u0630\u0627 \u0627\u0644\u062f\u0644\u064a\u0644", + "HeaderPlaybackSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u0634\u063a\u064a\u0644", "LabelAudioLanguagePreference": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u0635\u0648\u062a:", "LabelSubtitleLanguagePreference": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u062a\u0631\u062c\u0645\u0629:", - "OptionDefaultSubtitles": "Default", - "OptionSmartSubtitles": "Smart", - "OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "OptionOnlyForcedSubtitles": "Only forced subtitles", - "OptionAlwaysPlaySubtitles": "Always play subtitles", - "OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.", - "TabProfiles": "\u0633\u062c\u0644 (\u0646\u0628\u0630\u0629)", - "TabSecurity": "\u062d\u0645\u0627\u064a\u0629", + "OptionDefaultSubtitles": "\u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a", + "OptionSmartSubtitles": "\u0630\u0643\u064a", + "OptionSmartSubtitlesHelp": "\u0627\u0644\u062a\u0631\u062c\u0645\u0629 \u0627\u0644\u062a\u064a \u062a\u0648\u0627\u0641\u0642 \u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0633\u062a\u062d\u0645\u0644 \u0639\u0646\u062f\u0645\u0627 \u064a\u0643\u0648\u0646 \u0627\u0644\u0635\u0648\u062a \u0628\u0644\u063a\u0629 \u0623\u062c\u0646\u0628\u064a\u0629", + "OptionOnlyForcedSubtitles": "\u062a\u0631\u062c\u0645\u0627\u062a \u0625\u062c\u0628\u0627\u0631\u064a\u0629 \u0641\u0642\u0637", + "OptionAlwaysPlaySubtitles": "\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u062f\u0627\u0626\u0645\u0627\u064b", + "OptionDefaultSubtitlesHelp": "\u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u062a\u064f\u062d\u0645\u0651\u0644 \u0648\u0641\u0642 \u0625\u0634\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0627\u0626\u064a\u0629 \u0648\u0627\u0644\u0625\u062c\u0628\u0627\u0631\u064a\u0629 \u062d\u0633\u0628 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0631\u0641\u0642\u0629. \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u0644\u063a\u0648\u064a\u0629 \u062a\u0624\u062e\u0630 \u0628\u0627\u0644\u0627\u0639\u062a\u0628\u0627\u0631 \u062d\u064a\u0646 \u064a\u0643\u0648\u0646 \u0647\u0646\u0627\u0643 \u062e\u064a\u0627\u0631\u0627\u062a \u0644\u063a\u0648\u064a\u0629 \u0645\u062a\u0639\u062f\u062f\u0629.", + "OptionOnlyForcedSubtitlesHelp": "\u0641\u0642\u0637 \u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u0627\u0644\u0645\u0624\u0634\u0631\u0629 \u0643\u062a\u0631\u062c\u0645\u0627\u062a \u0625\u062c\u0628\u0627\u0631\u064a\u0629 \u0633\u062a\u062d\u0645\u0651\u0644.", + "OptionAlwaysPlaySubtitlesHelp": "\u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0648\u0627\u0641\u0642 \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u0644\u063a\u0648\u064a\u0629 \u0633\u062a\u062d\u0645\u0644\u060c \u0628\u063a\u0636 \u0627\u0644\u0646\u0638\u0631 \u0639\u0646 \u0644\u063a\u0629 \u0627\u0644\u0635\u0648\u062a.", + "OptionNoSubtitlesHelp": "\u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u0644\u0646 \u062a\u062d\u0645\u0651\u0644 \u0628\u0634\u0643\u0644 \u062a\u0644\u0642\u0627\u0626\u064a.", + "TabProfiles": "\u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a", + "TabSecurity": "\u0627\u0644\u062d\u0645\u0627\u064a\u0629", "ButtonAddUser": "\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645", - "ButtonInviteUser": "Invite User", - "ButtonSave": "\u062a\u062e\u0632\u064a\u0646", - "ButtonResetPassword": "\u0645\u0633\u062d \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", - "LabelNewPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u062c\u062f\u064a\u062f\u0629:", - "LabelNewPasswordConfirm": "\u062a\u0627\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062c\u062f\u064a\u062f\u0629:", - "HeaderCreatePassword": "\u0627\u0646\u0634\u0627\u0621 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", - "LabelCurrentPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062d\u0627\u0644\u064a\u0629", - "LabelMaxParentalRating": "\u0627\u0644\u062d\u062f \u0627\u0644\u0627\u0642\u0635\u0649 \u0644\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0628\u0647 \u0644\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0627\u0628\u0648\u064a\u0629:", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "ButtonDeleteImage": "\u0627\u0632\u0627\u0644\u0629 \u0635\u0648\u0631\u0629", - "LabelSelectUsers": "Select users:", - "ButtonUpload": "\u062a\u062d\u0645\u064a\u0644", - "HeaderUploadNewImage": "\u062a\u062d\u0645\u064a\u0644 \u0635\u0648\u0631\u0629 \u062c\u062f\u064a\u062f\u0629", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", + "ButtonInviteUser": "\u062f\u0639\u0648\u0629 \u0645\u0633\u062a\u062e\u062f\u0645", + "ButtonSave": "\u062d\u0641\u0638", + "ButtonResetPassword": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", + "LabelNewPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062c\u062f\u064a\u062f\u0629:", + "LabelNewPasswordConfirm": "\u062a\u0623\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062c\u062f\u064a\u062f\u0629:", + "HeaderCreatePassword": "\u0625\u0646\u0634\u0627\u0621 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", + "LabelCurrentPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062d\u0627\u0644\u064a\u0629:", + "LabelMaxParentalRating": "\u0627\u0644\u062d\u062f \u0627\u0644\u0627\u0642\u0635\u0649 \u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0627\u0628\u0648\u064a\u0629 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0628\u0647\u0627:", + "MaxParentalRatingHelp": "\u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a \u0630\u0627\u062a \u0627\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0623\u0628\u0648\u064a \u0627\u0644\u0623\u0639\u0644\u0649 \u0633\u062a\u062e\u0641\u0649 \u0639\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645.", + "LibraryAccessHelp": "\u0627\u062e\u062a\u0631 \u0645\u062c\u0644\u062f \u0648\u0633\u0627\u0626\u0637 \u0644\u0645\u0634\u0627\u0631\u0643\u062a\u0647 \u0645\u0639 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645. \u0627\u0644\u0645\u062f\u0631\u0627\u0621 \u0633\u064a\u0643\u0648\u0646\u0648\u0646 \u0642\u0627\u062f\u0631\u064a\u0646 \u0639\u0644\u0649 \u062a\u063a\u064a\u064a\u0631 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u062f\u064a\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a.", + "ChannelAccessHelp": "\u0625\u062e\u062a\u0631 \u0642\u0646\u0627\u0629 \u0644\u0645\u0634\u0627\u0631\u0643\u062a\u0647\u0627 \u0645\u0639 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645. \u0627\u0644\u0645\u062f\u0631\u0627\u0621 \u0633\u064a\u0643\u0648\u0646\u0648\u0646 \u0642\u0627\u062f\u0631\u064a\u0646 \u0639\u0644\u0649 \u062a\u063a\u064a\u064a\u0631 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0642\u0646\u0648\u0627\u062a \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u062f\u064a\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a.", + "ButtonDeleteImage": "\u062d\u0630\u0641 \u0627\u0644\u0635\u0648\u0631\u0629", + "LabelSelectUsers": "\u0625\u062e\u062a\u0631 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645:", + "ButtonUpload": "\u0631\u0641\u0639", + "HeaderUploadNewImage": "\u0625\u0631\u0641\u0639 \u0635\u0648\u0631\u0629 \u062c\u062f\u064a\u062f\u0629", + "ImageUploadAspectRatioHelp": "\u0627\u0644\u0646\u0633\u0628\u0629 \u0627\u0644\u0628\u0627\u0639\u064a\u0629 \u0627\u0644\u0645\u0648\u0635\u0649 \u0628\u0647\u0627 \u0647\u064a \u0646\u0633\u0628\u0629 1 \u0625\u0644\u0649 1. \u0635\u064a\u063a\u0629 \u0627\u0644\u0645\u0644\u0641 \u0647\u064a jpg \u0623\u0648 png.", "MessageNothingHere": "\u0644\u0627 \u0634\u0649\u0621 \u0647\u0646\u0627.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "\u0645\u0642\u062a\u0631\u062d", - "TabSuggestions": "Suggestions", + "MessagePleaseEnsureInternetMetadata": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0625\u0645\u0643\u0627\u0646\u064a\u0629 \u0625\u0646\u0632\u0627\u0644 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0646 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a \u0645\u0645\u0643\u0646\u0629.", + "AlreadyPaidHelp1": "\u0625\u0646 \u0643\u0646\u062a \u0642\u062f \u062f\u0641\u0639\u062a \u0641\u064a\u0645\u0627 \u0645\u0636\u0649 \u0644\u062a\u062b\u0628\u064a\u062a \u0625\u0635\u062f\u0627\u0631 \u0642\u062f\u064a\u0645 \u0645\u0646 \u0628\u0631\u0646\u0627\u0645\u062c \"Media Browser\" \u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0623\u0646\u062f\u0631\u0648\u064a\u062f\u060c \u0641\u0644\u0627 \u062d\u0627\u062c\u0629 \u0644\u0623\u0646 \u062a\u062f\u0641\u0639 \u0645\u062c\u062f\u062f\u0627\u064b \u0644\u062a\u0641\u0639\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u062a\u0637\u0628\u064a\u0642. \u0625\u0636\u063a\u0637 \u0639\u0644\u0649 \"\u0645\u0648\u0627\u0641\u0642\" \u0644\u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629 \u0644\u0646\u0627 \u0641\u064a {0} \u0648\u0633\u0646\u0642\u0648\u0645 \u0628\u062a\u0641\u0639\u064a\u0644\u0647 \u0645\u0646 \u0623\u062c\u0644\u0643.", + "AlreadyPaidHelp2": "\u0647\u0644 \u0644\u062f\u064a\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632\u061f \u0625\u0630\u0627\u064b \u0623\u0644\u063a\u0650 \u0647\u0630\u0647 \u0627\u0644\u0631\u0633\u0627\u0644\u0629\u060c \u0648\u0642\u0645 \u0628\u062a\u0641\u0639\u064a\u0644 \u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0639\u0644\u0649 \u0644\u0648\u062d \u0639\u062f\u0627\u062f\u0627\u062a \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0645\u0646 \u062e\u0644\u0627\u0644 \u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629-->\u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0632\u060c \u0648\u0633\u062a\u0641\u0643 \u0642\u0641\u0644\u064a\u0629 \u0627\u0644\u0627\u0634\u062a\u0631\u0627\u0643 \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b.", + "TabSuggestions": "\u0645\u0642\u062a\u0631\u062d\u0627\u062a", "TabLatest": "\u0627\u0644\u0627\u062e\u064a\u0631", "TabUpcoming": "\u0627\u0644\u0642\u0627\u062f\u0645", "TabShows": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a", "TabEpisodes": "\u0627\u0644\u062d\u0644\u0642\u0627\u062a", - "TabGenres": "\u0627\u0646\u0648\u0627\u0639", - "TabPeople": "\u0627\u0644\u0646\u0627\u0633", + "TabGenres": "\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0623\u0641\u0644\u0627\u0645", "TabNetworks": "\u0627\u0644\u0634\u0628\u0643\u0627\u062a", - "HeaderUsers": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", - "HeaderFilters": "Filters", - "ButtonFilter": "\u0641\u0644\u062a\u0631", + "HeaderUsers": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0648\u0646", + "HeaderFilters": "\u0645\u0631\u0634\u062d\u0627\u062a", + "ButtonFilter": "\u0645\u0631\u0634\u0651\u0650\u062d", "OptionFavorite": "\u0627\u0644\u0645\u0641\u0636\u0644\u0627\u062a", - "OptionLikes": "\u0645\u062d\u0628\u0628", - "OptionDislikes": "\u0645\u0643\u0631\u0648\u0647", + "OptionLikes": "\u0627\u0644\u0645\u062d\u0628\u0628\u0627\u062a", + "OptionDislikes": "\u0627\u0644\u0645\u0646\u0643\u0648\u0631\u0627\u062a", "OptionActors": "\u0627\u0644\u0645\u0645\u062b\u0644\u0648\u0646", - "OptionGuestStars": "\u0636\u064a\u0648\u0641", + "OptionGuestStars": "\u0636\u064a\u0648\u0641 \u0627\u0644\u0634\u0631\u0641", "OptionDirectors": "\u0627\u0644\u0645\u062e\u0631\u062c\u0648\u0646", - "OptionWriters": "\u0645\u0624\u0644\u0641\u0648\u0646", - "OptionProducers": "\u0645\u0646\u062a\u062c\u0648\u0646", - "HeaderResume": "\u0627\u0633\u062a\u0623\u0646\u0641", + "OptionWriters": "\u0627\u0644\u0645\u0624\u0644\u0641\u0648\u0646", + "OptionProducers": "\u0627\u0644\u0645\u0646\u062a\u062c\u0648\u0646", + "HeaderResume": "\u0627\u0633\u062a\u0626\u0646\u0627\u0641", + "HeaderContinueWatching": "\u0627\u0633\u062a\u0626\u0646\u0627\u0641 \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629", "HeaderNextUp": "\u0627\u0644\u062a\u0627\u0644\u0649", - "NoNextUpItemsMessage": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u064a\u062c\u0627\u062f \u0634\u0649\u0621, \u0627\u0628\u062f\u0627 \u0628\u0645\u0634\u0627\u0647\u062f\u0629 \u0628\u0631\u0627\u0645\u062c\u0643!", + "NoNextUpItemsMessage": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u064a\u062c\u0627\u062f \u0634\u064a\u0621\u060c \u0625\u0628\u062f\u0623 \u0628\u0645\u0634\u0627\u0647\u062f\u0629 \u0628\u0631\u0627\u0645\u062c\u0643!", "HeaderLatestEpisodes": "\u0627\u062d\u062f\u062b \u0627\u0644\u062d\u0644\u0642\u0627\u062a", - "HeaderPersonTypes": "\u0646\u0648\u0639\u064a\u0629 \u0627\u0644\u0634\u062e\u0635:", + "HeaderPersonTypes": "\u0646\u0648\u0639\u064a\u0629 \u0627\u0644\u0623\u0634\u062e\u0627\u0635:", "TabSongs": "\u0627\u0644\u0627\u063a\u0627\u0646\u0649", - "TabAlbums": "\u0627\u0644\u0628\u0648\u0645\u0627\u062a", - "TabArtists": "\u0627\u0644\u0641\u0646\u0627\u0646\u064a\u0646", - "TabAlbumArtists": "\u0627\u0644\u0628\u0648\u0645 \u0627\u0644\u0641\u0646\u0627\u0646\u064a\u0646", - "TabMusicVideos": "\u0645\u0648\u0633\u064a\u0642\u0649 \u0627\u0644\u0641\u064a\u062f\u064a\u0648", + "TabAlbums": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a", + "TabArtists": "\u0627\u0644\u0641\u0646\u0627\u0646\u0648\u0646", + "TabAlbumArtists": "\u0641\u0646\u0627\u0646\u0648 \u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a", + "TabMusicVideos": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0629", "ButtonSort": "\u062a\u0631\u062a\u064a\u0628", "OptionPlayed": "\u0645\u0639\u0632\u0648\u0641", "OptionUnplayed": "\u063a\u064a\u0631 \u0645\u0639\u0632\u0648\u0641", - "OptionAscending": "\u062a\u0635\u0627\u0639\u062f\u0649", - "OptionDescending": "\u062a\u0646\u0627\u0632\u0644\u0649", + "OptionAscending": "\u062a\u0635\u0627\u0639\u062f\u064a", + "OptionDescending": "\u062a\u0646\u0627\u0632\u0644\u064a", "OptionRuntime": "\u0632\u0645\u0646 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", - "OptionReleaseDate": "Release Date", - "OptionPlayCount": "\u0639\u062f\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "OptionReleaseDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0646\u062a\u0627\u062c", + "OptionPlayCount": "\u0645\u0631\u0627\u062a \u0627\u0644\u062a\u0634\u063a\u064a\u0644", "OptionDatePlayed": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0634\u063a\u064a\u0644", - "OptionDateAdded": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0636\u0627\u0641\u0629", - "OptionAlbumArtist": "\u0627\u0644\u0628\u0648\u0645 \u0627\u0644\u0641\u0646\u0627\u0646", - "OptionArtist": "\u0641\u0646\u0627\u0646", - "OptionAlbum": "\u0627\u0644\u0628\u0648\u0645", - "OptionTrackName": "\u0627\u0633\u0645 \u0627\u0644\u0627\u063a\u0646\u064a\u0629", - "OptionCommunityRating": "\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u062c\u062a\u0645\u0639", - "OptionNameSort": "\u0627\u0633\u0645", - "OptionFolderSort": "Folders", - "OptionBudget": "\u0645\u064a\u0632\u0627\u0646\u064a\u0629", - "OptionRevenue": "\u0627\u064a\u0631\u0627\u062f\u0627\u062a", + "OptionDateAdded": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0636\u0627\u0641\u0629", + "DateAddedValue": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0636\u0627\u0641\u0629: {0}", + "OptionAlbumArtist": "\u0623\u0644\u0628\u0648\u0645 \u0627\u0644\u0641\u0646\u0627\u0646", + "OptionArtist": "\u0627\u0644\u0641\u0646\u0627\u0646", + "OptionAlbum": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645", + "OptionTrackName": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0642\u0637\u0648\u0639\u0629", + "OptionCommunityRating": "\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0645\u062c\u062a\u0645\u0639", + "OptionNameSort": "\u0627\u0644\u0627\u0633\u0645", + "OptionFolderSort": "\u0627\u0644\u0645\u062c\u0644\u062f", + "OptionBudget": "\u0627\u0644\u0645\u064a\u0632\u0627\u0646\u064a\u0629", + "OptionRevenue": "\u0627\u0644\u0625\u064a\u0631\u0627\u062f\u0627\u062a", "OptionPoster": "\u0627\u0644\u0645\u0644\u0635\u0642", - "OptionPosterCard": "Poster card", - "OptionBackdrop": "Backdrop", - "OptionTimeline": "\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "OptionCriticRating": "\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0646\u0627\u0642\u062f", + "OptionPosterCard": "\u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0630\u0643\u0631\u0649", + "OptionBackdrop": "\u0627\u0644\u062e\u0644\u0641\u064a\u0629", + "OptionTimeline": "\u0627\u0644\u0625\u0637\u0627\u0631 \u0627\u0644\u0632\u0645\u0646\u0649", + "OptionThumb": "\u0627\u0644\u0642\u0635\u0627\u0635\u0629", + "OptionThumbCard": "\u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0642\u0635\u0627\u0635\u0629", + "OptionBanner": "\u0627\u0644\u064a\u0627\u0641\u0637\u0629", + "OptionCriticRating": "\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0646\u0642\u0627\u062f", "OptionVideoBitrate": "\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0644\u0644\u0641\u064a\u062f\u064a\u0648", - "OptionResumable": "\u062a\u0643\u0645\u0644\u0629", - "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "\u062c\u062f\u0648\u0644\u0629 \u0627\u0644\u0645\u0647\u0627\u0645", - "TabMyPlugins": "My Plugins", - "TabCatalog": "Catalog", - "TitlePlugins": "Plugins", - "HeaderAutomaticUpdates": "Automatic Updates", - "HeaderNowPlaying": "Now Playing", - "HeaderLatestAlbums": "Latest Albums", - "HeaderLatestSongs": "Latest Songs", - "HeaderRecentlyPlayed": "Recently Played", - "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", - "LabelVideoType": "Video Type:", + "OptionResumable": "\u0625\u0645\u0643\u0627\u0646\u064a\u0629 \u0627\u0644\u062a\u0643\u0645\u0644\u0629", + "ScheduledTasksHelp": "\u0627\u0636\u063a\u0637 \u0639\u0644\u0649 \u0645\u0647\u0645\u0629 \u0644\u062a\u0639\u062f\u064a\u0644 \u062c\u062f\u0648\u0644\u062a\u0647\u0627.", + "TabMyPlugins": "\u0645\u0644\u062d\u0642\u0627\u062a\u064a", + "TabCatalog": "\u0627\u0644\u0643\u062a\u0627\u0644\u0648\u062c", + "TitlePlugins": "\u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a", + "HeaderAutomaticUpdates": "\u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a \u0627\u0644\u0622\u0644\u064a\u0629", + "HeaderNowPlaying": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "HeaderLatestAlbums": "\u0623\u062d\u062f\u062b \u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a", + "HeaderLatestSongs": "\u0623\u062d\u062f\u062b \u0627\u0644\u0623\u063a\u0627\u0646\u064a", + "HeaderRecentlyPlayed": "\u062a\u0645 \u062a\u0634\u063a\u064a\u0644\u0647 \u0645\u0624\u062e\u0631\u0627\u064b", + "HeaderFrequentlyPlayed": "\u062a\u0645 \u062a\u0634\u063a\u064a\u0644\u0647 \u0645\u0631\u0627\u0631\u0627\u064b", + "LabelVideoType": "\u0646\u0648\u0639 \u0627\u0644\u0641\u064a\u062f\u064a\u0629", "OptionBluray": "Bluray", "OptionDvd": "Dvd", "OptionIso": "Iso", - "Option3D": "3D", - "LabelStatus": "Status:", - "LabelLastResult": "Last result:", - "OptionHasSubtitles": "Subtitles", - "OptionHasTrailer": "Trailer", - "OptionHasThemeSong": "Theme Song", - "OptionHasThemeVideo": "Theme Video", - "TabMovies": "Movies", - "TabStudios": "Studios", - "TabTrailers": "Trailers", - "LabelArtists": "Artists:", - "LabelArtistsHelp": "Separate multiple using ;", - "HeaderLatestTrailers": "Latest Trailers", - "OptionHasSpecialFeatures": "Special Features", - "OptionImdbRating": "IMDb Rating", - "OptionParentalRating": "Parental Rating", + "Option3D": "\u062b\u0644\u0627\u062b\u064a \u0623\u0628\u0639\u0627\u062f", + "LabelStatus": "\u0627\u0644\u0648\u0636\u0639\u064a\u0629:", + "LabelLastResult": "\u0627\u0644\u0646\u062a\u064a\u062c\u0629 \u0627\u0644\u0623\u062e\u064a\u0631\u0629:", + "OptionHasSubtitles": "\u0627\u0644\u062a\u0631\u062c\u0645\u0629", + "OptionHasTrailer": "\u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a", + "OptionHasThemeSong": "\u0623\u063a\u0646\u064a\u0629 \u0627\u0644\u0634\u0627\u0631\u0629", + "OptionHasThemeVideo": "\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0634\u0627\u0631\u0629", + "TabMovies": "\u0627\u0644\u0641\u064a\u0644\u0645", + "TabStudios": "\u0627\u0644\u0623\u0633\u062a\u0648\u062f\u064a\u0648", + "TabTrailers": "\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629", + "LabelArtists": "\u0627\u0644\u0641\u0646\u0627\u0646\u0648\u0646:", + "LabelArtistsHelp": "\u0641\u0635\u0644 \u0627\u0644\u0627\u0633\u062a\u0639\u0645\u0627\u0644\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629:", + "HeaderLatestTrailers": "\u0622\u062e\u0631 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629", + "OptionHasSpecialFeatures": "\u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629", + "OptionImdbRating": "\u062a\u0642\u064a\u064a\u0645 IMDb", + "OptionParentalRating": "\u0627\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0623\u0628\u0648\u064a", "OptionPremiereDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0639\u0631\u0636", - "TabBasic": "Basic", - "TabAdvanced": "Advanced", - "OptionContinuing": "Continuing", - "OptionEnded": "Ended", - "HeaderAirDays": "Air Days", - "OptionSundayShort": "Sun", - "OptionMondayShort": "Mon", - "OptionTuesdayShort": "Tue", - "OptionWednesdayShort": "Wed", - "OptionThursdayShort": "Thu", - "OptionFridayShort": "Fri", - "OptionSaturdayShort": "Sat", - "OptionSunday": "\u0627\u0644\u0627\u062d\u062f", - "OptionMonday": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646", + "TabBasic": "\u0623\u0633\u0627\u0633\u064a", + "TabAdvanced": "\u0645\u062a\u0642\u062f\u0645", + "OptionContinuing": "\u0645\u062a\u0627\u0628\u0639\u0629", + "OptionEnded": "\u0625\u0646\u062a\u0647\u0649", + "HeaderAirDays": "\u0623\u064a\u0627\u0645 \u0627\u0644\u0628\u062b", + "OptionSundayShort": "\u0627\u0644\u0623\u062d\u062f", + "OptionMondayShort": "\u0627\u0644\u0623\u062b\u0646\u064a\u0646", + "OptionTuesdayShort": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", + "OptionWednesdayShort": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", + "OptionThursdayShort": "\u0627\u0644\u062e\u0645\u064a\u0633", + "OptionFridayShort": "\u0627\u0644\u062c\u0645\u0639\u0629", + "OptionSaturdayShort": "\u0627\u0644\u0633\u0628\u062a", + "OptionSunday": "\u0627\u0644\u0623\u062d\u062f", + "OptionMonday": "\u0627\u0644\u0623\u062b\u0646\u064a\u0646", "OptionTuesday": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", - "OptionWednesday": "\u0627\u0644\u0627\u0631\u0628\u0639\u0627\u0621", + "OptionWednesday": "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", "OptionThursday": "\u0627\u0644\u062e\u0645\u064a\u0633", "OptionFriday": "\u0627\u0644\u062c\u0645\u0639\u0629", "OptionSaturday": "\u0627\u0644\u0633\u0628\u062a", - "HeaderManagement": "Management", - "LabelManagement": "Management:", - "OptionMissingImdbId": "Missing IMDb Id", - "OptionMissingTvdbId": "Missing TheTVDB Id", - "OptionMissingOverview": "Missing Overview", - "TabGeneral": "General", - "TitleSupport": "Support", - "TabAbout": "About", - "TabSupporterKey": "Emby Premiere Key", - "TabBecomeSupporter": "Get Emby Premiere", - "TabEmbyPremiere": "Emby Premiere", - "ProjectHasCommunity": "Emby has a thriving community of users and contributors.", - "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", - "SearchKnowledgeBase": "Search the Knowledge Base", - "VisitTheCommunity": "Visit the Community", - "VisitProjectWebsite": "Visit the Emby Web Site", - "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.", - "OptionHideUser": "Hide this user from login screens", - "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", - "OptionDisableUser": "Disable this user", - "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", - "LabelName": "Name:", - "ButtonHelp": "Help", - "OptionAllowUserToManageServer": "Allow this user to manage the server", - "HeaderFeatureAccess": "Feature Access", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowDeleteLibraryContent": "Allow media deletion", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowLinkSharing": "Allow social media sharing", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", - "HeaderRemoteControl": "Remote Control", - "OptionMissingTmdbId": "Missing Tmdb Id", - "OptionIsHD": "HD", - "OptionIsSD": "SD", - "OptionMetascore": "Metascore", - "ButtonSelect": "Select", - "PismoMessage": "Utilizing Pismo File Mount through a donated license.", - "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", - "HeaderCredits": "Credits", - "PleaseSupportOtherProduces": "Please support other free products we utilize:", - "VersionNumber": "Version {0}", - "TabPaths": "Paths", - "TabServer": "Server", - "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", - "OptionRelease": "\u0627\u0644\u0627\u0635\u062f\u0627\u0631 \u0627\u0644\u0631\u0633\u0645\u0649", - "OptionBeta": "\u0628\u064a\u062a\u0627", - "OptionDev": "\u062a\u0637\u0648\u0631\u0649 (\u063a\u064a\u0631 \u0645\u0633\u062a\u0642\u0631)", - "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", - "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", - "LabelRunServerAtStartup": "Run server at startup", - "LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.", - "ButtonSelectDirectory": "Select Directory", - "LabelCachePath": "Cache path:", - "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelRecordingPath": "Default recording path:", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelMetadataPath": "Metadata path:", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", - "LabelTranscodingTempPath": "Transcoding temporary path:", - "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", - "TabBasics": "Basics", - "TabTV": "TV", - "TabGames": "Games", - "TabMusic": "Music", - "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", - "OptionMovies": "Movies", - "OptionEpisodes": "Episodes", - "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", - "LabelFanartApiKey": "Personal api key:", - "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", - "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", - "LabelMetadataDownloadLanguage": "Preferred download language:", - "ButtonSignIn": "Sign In", - "TitleSignIn": "Sign In", - "HeaderPleaseSignIn": "Please sign in", - "LabelUser": "User:", - "LabelPassword": "Password:", - "ButtonManualLogin": "Manual Login", - "TabGuide": "Guide", - "TabChannels": "Channels", - "TabCollections": "Collections", - "HeaderChannels": "Channels", - "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", - "TabSeries": "Series", - "TabFavorites": "Favorites", - "TabMyLibrary": "My Library", - "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", - "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", - "TabSettings": "Settings", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonRefresh": "Refresh", - "OptionPriority": "Priority", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordAnytime": "Record at any time", - "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", - "HeaderDays": "Days", - "HeaderActiveRecordings": "Active Recordings", - "HeaderLatestRecordings": "Latest Recordings", - "HeaderAllRecordings": "All Recordings", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonRecord": "Record", - "ButtonDelete": "Delete", - "ButtonRemove": "Remove", - "OptionRecordSeries": "Record Series", - "HeaderDetails": "Details", - "TitleLiveTV": "Live TV", - "LabelNumberOfGuideDays": "Number of days of guide data to download:", - "LabelNumberOfGuideDaysHelp": "Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.", - "OptionAutomatic": "Auto", - "HeaderServices": "Services", - "LabelCustomizeOptionsPerMediaType": "Customize for media type:", - "OptionDownloadThumbImage": "Thumb", - "OptionDownloadMenuImage": "Menu", - "OptionDownloadLogoImage": "Logo", - "OptionDownloadBoxImage": "Box", - "OptionDownloadDiscImage": "Disc", - "OptionDownloadBannerImage": "Banner", - "OptionDownloadBackImage": "Back", - "OptionDownloadArtImage": "Art", - "OptionDownloadPrimaryImage": "Primary", - "HeaderFetchImages": "Fetch Images:", - "HeaderImageSettings": "Image Settings", - "TabOther": "Other", - "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", - "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", - "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", - "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddScheduledTaskTrigger": "Add Trigger", - "ButtonAdd": "Add", - "LabelTriggerType": "Trigger Type:", - "OptionDaily": "Daily", - "OptionWeekly": "Weekly", - "OptionOnInterval": "On an interval", - "OptionOnAppStartup": "On application startup", - "OptionAfterSystemEvent": "After a system event", - "LabelDay": "Day:", - "LabelTime": "Time:", - "LabelEvent": "Event:", - "OptionWakeFromSleep": "Wake from sleep", - "LabelEveryXMinutes": "Every:", - "HeaderTvTuners": "Tuners", - "HeaderLatestGames": "Latest Games", - "HeaderRecentlyPlayedGames": "Recently Played Games", - "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", - "TabFolders": "Folders", - "TabPathSubstitution": "Path Substitution", - "LabelSeasonZeroDisplayName": "Season 0 display name:", - "LabelEnableRealtimeMonitor": "Enable real time monitoring", - "LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.", - "ButtonScanLibrary": "Scan Library", - "HeaderNumberOfPlayers": "Players", - "OptionAnyNumberOfPlayers": "Any", + "HeaderManagement": "\u0627\u0644\u0625\u062f\u0627\u0631\u0629", + "LabelManagement": "\u0627\u0644\u0625\u062f\u0627\u0631\u0629:", + "OptionMissingImdbId": "\u062a\u0639\u0631\u064a\u0641\u0629 IMDb \u0645\u0641\u0642\u0648\u062f\u0629", + "OptionMissingTvdbId": "\u062a\u0639\u0631\u064a\u0641\u0629 TheTVDB \u0645\u0641\u0642\u0648\u062f\u0629", + "OptionMissingOverview": "\u0627\u0644\u0645\u0648\u062c\u0632 \u0645\u0641\u0642\u0648\u062f", + "TabGeneral": "\u0639\u0627\u0645", + "TitleSupport": "\u062f\u0639\u0645", + "TabAbout": "\u062d\u0648\u0644", + "TabSupporterKey": "\u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632", + "TabBecomeSupporter": "\u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632", + "TabEmbyPremiere": "\u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632", + "ProjectHasCommunity": "\u064a\u062a\u0645\u062a\u0639 \u0623\u0645\u0628\u064a \u0628\u0645\u062c\u0645\u0639 \u0632\u0627\u062e\u0631 \u0645\u0646 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0648\u0627\u0644\u0645\u0633\u0627\u0647\u0645\u064a\u0646.", + "CheckoutKnowledgeBase": "\u0627\u0637\u0644\u0639 \u0639\u0644\u0649 \u0642\u0627\u0639\u062f\u0629 \u0627\u0644\u0645\u0639\u0627\u0631\u0641 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0640 \u0623\u0645\u0628\u064a \u0644\u0645\u0633\u0627\u0639\u062f\u062a\u0643 \u0639\u0644\u0649 \u0627\u0644\u0627\u0633\u062a\u0641\u0627\u062f\u0629 \u0645\u0646\u0647 \u0628\u0623\u0641\u0636\u0644 \u0637\u0631\u064a\u0642\u0629.", + "SearchKnowledgeBase": "\u0625\u0628\u062d\u062b \u0641\u064a \u0642\u0627\u0639\u062f\u0629 \u0627\u0644\u0645\u0639\u0627\u0631\u0641", + "VisitTheCommunity": "\u0632\u0631 \u0645\u062c\u062a\u0645\u0639 \u0623\u0645\u0628\u064a", + "VisitProjectWebsite": "\u0632\u0631 \u0645\u0648\u0642\u0639 \u0623\u0645\u0628\u064a \u0639\u0644\u0649 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a", + "VisitProjectWebsiteLong": "\u0632\u0631 \u0645\u0648\u0642\u0639 \u0623\u0645\u0628\u064a \u0639\u0644\u0649 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0622\u062e\u0631 \u0627\u0644\u0623\u062e\u0628\u0627\u0631 \u0648\u0645\u062a\u0627\u0628\u0639\u0629 \u0645\u062f\u0648\u0646\u0627\u062a \u0627\u0644\u0645\u0637\u0648\u0631\u064a\u0646.", + "OptionHideUser": "\u0623\u062e\u0641\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0646 \u0634\u0627\u0634\u0629 \u0627\u0644\u062f\u062e\u0648\u0644", + "OptionHideUserFromLoginHelp": "\u0647\u0630\u0647 \u0645\u0641\u064a\u062f\u0629 \u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0627\u0644\u0645\u062f\u0631\u0627\u0621 \u0627\u0644\u0645\u062a\u062e\u0641\u0651\u064a\u0646 \u0623\u0648 \u0627\u0644\u062e\u0635\u0648\u0635\u064a\u064a\u0646. \u0639\u0644\u0649 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u062d\u0627\u0644\u0629 \u0623\u0646 \u064a\u062f\u062e\u0644 \u0628\u064a\u0627\u0646\u0627\u062a\u0647 \u064a\u062f\u0648\u064a\u0627\u064b \u0639\u0628\u0631 \u0625\u062f\u062e\u0627\u0644 \u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0648\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631.", + "OptionDisableUser": "\u062a\u0639\u0637\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", + "OptionDisableUserHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0639\u0637\u064a\u0644\u060c \u0641\u0644\u0646 \u064a\u0633\u0645\u062d \u0627\u0644\u062e\u0627\u062f\u0645 \u0644\u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0628\u0627\u0644\u0627\u062a\u0635\u0627\u0644. \u0648\u0633\u064a\u062a\u0645 \u0642\u0637\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644\u0627\u062a \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629 \u0628\u0634\u0643\u0644 \u0641\u0648\u0631\u064a.", + "LabelName": "\u0627\u0644\u0627\u0633\u0645:", + "ButtonHelp": "\u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629", + "OptionAllowUserToManageServer": "\u0625\u0633\u0645\u062d \u0644\u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0628\u0627\u0644\u062a\u062d\u0643\u0645 \u0628\u0627\u0644\u062e\u0627\u062f\u0645", + "HeaderFeatureAccess": "\u0635\u0644\u0627\u062d\u064a\u0629 \u0627\u0644\u062e\u0627\u0635\u064a\u0629", + "OptionAllowMediaPlayback": "\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "OptionAllowBrowsingLiveTv": "\u0627\u0644\u0633\u0645\u0627\u062d \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u062d\u064a\u0629", + "OptionAllowDeleteLibraryContent": "\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u062d\u0630\u0641 \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "OptionAllowManageLiveTv": "\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u0625\u062f\u0627\u0631\u0629 \u0648\u062a\u0633\u062c\u064a\u0644 \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u062d\u064a\u0629", + "OptionAllowRemoteControlOthers": "\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u0627\u0644\u062a\u062d\u0643\u0645 \u0641\u064a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0627\u0644\u0622\u062e\u0631\u064a\u0646 \u0639\u0646 \u0628\u0639\u062f", + "OptionAllowRemoteSharedDevices": "\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u0627\u0644\u062a\u062d\u0643\u0645 \u0641\u064a \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629 \u0639\u0646 \u0628\u0639\u062f", + "OptionAllowRemoteSharedDevicesHelp": "\u0623\u062c\u0647\u0632\u0629 Dlna \u0633\u062a\u0639\u062a\u0628\u0631 \u0645\u0634\u0627\u0631\u0643\u0629 \u0625\u0644\u0649 \u0623\u0646 \u064a\u0628\u062f\u0623 \u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0627 \u0628\u0627\u0644\u062a\u062d\u0643\u0645 \u0628\u0647\u0627.", + "OptionAllowLinkSharing": "\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629 \u0641\u064a \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0627\u0644\u0627\u062c\u062a\u0645\u0627\u0639\u064a", + "OptionAllowLinkSharingHelp": "\u0641\u0642\u0637 \u0627\u0644\u0635\u0641\u062d\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u062d\u062a\u0648\u064a\u0649 \u0639\u0644\u0649 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0633\u064a\u0633\u0645\u062d \u0644\u0647\u0627 \u0628\u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629. \u0623\u0645\u0627 \u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0641\u0625\u0646\u0647\u0627 \u0644\u0646 \u062a\u0634\u0627\u0631\u0643 \u0645\u0639 \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u062a\u0648\u0627\u0635\u0644. \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0627\u062a \u0645\u062d\u062f\u062f\u0629 \u0632\u0645\u0646\u064a\u0627\u064b \u0648\u0633\u062a\u0646\u062a\u0647\u064a \u0628\u0639\u062f {0} \u064a\u0648\u0645\/\u0623\u064a\u0627\u0645.", + "HeaderRemoteControl": "\u0627\u0644\u062a\u062d\u0643\u0645 \u0639\u0646 \u0628\u0639\u062f", + "OptionMissingTmdbId": "\u062a\u0639\u0631\u064a\u0641\u0629 Tmdb \u0645\u0641\u0642\u0648\u062f\u0629", + "OptionIsHD": "\u062c\u0648\u062f\u0629 \u0639\u0627\u0644\u064a\u0629", + "OptionIsSD": "\u062c\u0648\u062f\u0629 \u0645\u0646\u062e\u0641\u0636\u0629", + "OptionMetascore": "\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0646\u0642\u0627\u062f \u0627\u0644\u0645\u0648\u062d\u062f", + "ButtonSelect": "\u0627\u062e\u062a\u064a\u0627\u0631", + "PismoMessage": "\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u062e\u0627\u0635\u064a\u0629 Pismo File Mount \u0639\u0628\u0631 \u0631\u062e\u0635\u0629 \u0645\u062a\u0628\u0631\u0639.", + "TangibleSoftwareMessage": "\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u062d\u0648\u0644\u0627\u062a Tangible Solutions Java\/C \u0639\u0628\u0631 \u0631\u062e\u0635\u0629 \u0645\u062a\u0628\u0631\u0639.", + "HeaderCredits": "\u0634\u0643\u0631 \u0648\u062a\u0642\u062f\u064a\u0631", + "PleaseSupportOtherProduces": "\u0646\u0623\u0645\u0644 \u062f\u0639\u0645 \u0627\u0644\u0645\u0646\u062a\u062c\u0627\u062a \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629 \u0627\u0644\u0623\u062e\u0631\u0649 \u0627\u0644\u062a\u064a \u0646\u0633\u062a\u0641\u064a\u062f \u0645\u0646\u0647\u0627:", + "VersionNumber": "\u0627\u0644\u0625\u0635\u062f\u0627\u0631 {0}", + "TabPaths": "\u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a", + "TabServer": "\u0627\u0644\u062e\u0627\u062f\u0645", + "TabTranscoding": "\u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a", + "OptionRelease": "\u0627\u0644\u0627\u0635\u062f\u0627\u0631 \u0627\u0644\u0631\u0633\u0645\u064a", + "LabelAllowServerAutoRestart": "\u0627\u0644\u0633\u0645\u0627\u062d \u0644\u0644\u062e\u0627\u062f\u0645 \u0623\u0646 \u064a\u0639\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0622\u0644\u064a\u0627\u064b \u0644\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a", + "LabelAllowServerAutoRestartHelp": "\u0627\u0644\u062e\u0627\u062f\u0645 \u0633\u064a\u0639\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0641\u064a \u0641\u062a\u0631\u0627\u062a \u0627\u0644\u0631\u0643\u0648\u062f \u0641\u0642\u0637\u060c \u062d\u064a\u0646 \u0644\u0627 \u064a\u0643\u0648\u0646 \u0647\u0646\u0627\u0643 \u0623\u064a \u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0645\u062a\u0635\u0644\u064a\u0646.", + "LabelRunServerAtStartup": "\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u0627\u062f\u0645 \u0639\u0646\u062f \u0628\u062f\u0621 \u0627\u0644\u062d\u0627\u0633\u0648\u0628", + "LabelRunServerAtStartupHelp": "\u0627\u062e\u062a\u064a\u0627\u0631 \u0647\u0630\u0647 \u0633\u064a\u0634\u063a\u0644 \u0623\u064a\u0642\u0648\u0646\u0629 \u0634\u0631\u064a\u0637 \u0627\u0644\u0645\u0647\u0627\u0645 \u0639\u0646\u062f \u0628\u062f\u0621 \u0627\u0644\u0648\u064a\u0646\u062f\u0648\u0632. \u0644\u0628\u062f\u0621 \u062e\u062f\u0645\u0629 \u0627\u0644\u0648\u064a\u0646\u062f\u0648\u0632\u060c \u064a\u062c\u0628 \u0639\u062f\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0647\u0630\u0647\u060c \u0628\u0644 \u0642\u0645 \u0628\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u062f\u0645\u0629 \u0645\u0646 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u062d\u0643\u0645 \u0628\u062e\u062f\u0645\u0627\u062a \u0648\u064a\u0646\u062f\u0648\u0632. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u0644\u0627\u062d\u0638\u0629 \u0623\u0646 \u0623\u0646\u0643 \u0644\u0646 \u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u064a\u0627\u0631\u064a\u0646 \u0645\u0639\u0627\u064b. \u0644\u0630\u0627 \u0633\u064a\u062a\u0648\u062c\u0628 \u0639\u0644\u064a\u0643 \u0623\u0646 \u062a\u062e\u0631\u062c \u0645\u0646 \u0623\u064a\u0642\u0648\u0646\u0629 \u0634\u0631\u064a\u0637 \u0627\u0644\u0645\u0647\u0627\u0645 \u0642\u0628\u0644 \u062a\u0634\u063a\u064a\u0644 \u062e\u062f\u0645\u0629 \u0648\u064a\u0646\u062f\u0648\u0632.", + "ButtonSelectDirectory": "\u0625\u062e\u062a\u0631 \u0627\u0644\u062f\u0644\u064a\u0644\u0629", + "LabelCachePath": "\u0645\u0633\u0627\u0631 \u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0643\u0627\u0634\u0629:", + "LabelCachePathHelp": "\u062d\u062f\u062f \u0645\u0648\u0642\u0639 \u0645\u062e\u0635\u0635 \u0644\u0645\u0644\u0641\u0627\u062a \u0643\u0627\u0634\u0629 \u0627\u0644\u062e\u0627\u062f\u0645\u060c \u0645\u062b\u0644 \u0627\u0644\u0635\u0648\u0631 \u0648\u063a\u064a\u0631\u0647\u0627. \u0623\u062a\u0631\u0643 \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0646\u0629 \u0641\u0627\u0631\u063a\u0629 \u0644\u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0627\u0644\u0642\u064a\u0645\u0629 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a\u0629.", + "LabelRecordingPath": "\u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a \u0644\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0633\u062c\u0644\u0629:", + "LabelMovieRecordingPath": "\u0645\u0633\u0627\u0631 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0623\u0641\u0644\u0627\u0645 (\u062e\u064a\u0627\u0631\u064a\u0629):", + "LabelSeriesRecordingPath": "\u0645\u0633\u0627\u0631 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a (\u062e\u064a\u0627\u0631\u064a\u0629):", + "LabelRecordingPathHelp": "\u062d\u062f\u062f \u0645\u0648\u0642\u0639 \u0627\u0641\u062a\u0631\u0627\u0636\u064a \u0644\u062d\u0641\u0638 \u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0633\u062c\u0644\u0629\u060c \u0644\u0648 \u062a\u0631\u0643\u062a \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0646\u0629 \u0641\u0627\u0631\u063a\u0629\u060c \u0641\u0633\u064a\u0633\u062a\u0639\u0645\u0644 \u0645\u062c\u0644\u062f \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c.", + "LabelMetadataPath": "\u0645\u0633\u0627\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a:", + "LabelMetadataPathHelp": "\u062d\u062f\u062f \u0645\u0648\u0642\u0639 \u0645\u062e\u0635\u0648\u0635 \u0644\u0625\u0646\u0632\u0627\u0644 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a.", + "LabelTranscodingTempPath": "\u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0645\u0624\u0642\u062a \u0644\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a:", + "LabelTranscodingTempPathHelp": "\u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0644\u062f \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0645\u0644\u0641\u0627\u062a \u0642\u064a\u062f \u0627\u0644\u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0645\u0646 \u0642\u0628\u0644 \u0627\u0644\u0645\u0634\u0641\u0631 \u0627\u0644\u0628\u064a\u0646\u064a. \u062d\u062f\u062f \u0645\u0633\u0627\u0631\u0627\u064b \u0645\u062e\u0635\u0648\u0635\u0627\u064b \u0627\u0648 \u0627\u062a\u0631\u0643\u0647 \u0641\u0627\u0631\u063a\u0627\u064b \u0644\u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0627\u0644\u0642\u064a\u0645\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u0641\u064a \u0645\u062c\u0644\u062f \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645.", + "TabBasics": "\u0627\u0644\u0623\u0633\u0627\u0633\u064a\u0627\u062a", + "TabTV": "\u0627\u0644\u062a\u0644\u0641\u0627\u0632", + "TabGames": "\u0627\u0644\u0623\u0644\u0639\u0627\u0628", + "TabMusic": "\u0627\u0644\u0645\u0648\u0633\u064a\u0642\u0649", + "TabOthers": "\u0623\u062e\u0631\u0649", + "OptionMovies": "\u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "OptionEpisodes": "\u0627\u0644\u062d\u0644\u0642\u0627\u062a", + "OptionOtherVideos": "\u0645\u0631\u0626\u064a\u0627\u062a \u0623\u062e\u0631\u0649", + "LabelFanartApiKey": "\u0645\u0641\u062a\u0627\u062d api \u0634\u062e\u0635\u064a:", + "LabelFanartApiKeyHelp": "\u0627\u0644\u0637\u0644\u0628\u0627\u062a \u0627\u0644\u0645\u0648\u062c\u0647\u0629 \u0644\u062e\u062f\u0645\u0629 fanart \u062f\u0648\u0646 \u062d\u064a\u0627\u0632\u0629 \u0645\u0641\u062a\u0627\u062d api \u0634\u062e\u0635\u064a \u0633\u062a\u0638\u0647\u0631 \u0644\u0643 \u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u062a\u064a \u062a\u0645 \u0627\u0639\u062a\u0645\u0627\u062f\u0647\u0627 \u0642\u0628\u0644 \u0623\u0643\u062b\u0631 \u0645\u0646 7 \u0623\u064a\u0627\u0645. \u0623\u0645\u0627 \u0645\u0639 \u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0645\u0641\u062a\u0627\u062d api \u0634\u062e\u0635\u064a\u060c \u0641\u0625\u0646 \u0641\u062a\u0631\u0629 \u0627\u0639\u062a\u0645\u0627\u062f \u0627\u0644\u0635\u0648\u0631 \u0633\u062a\u0646\u062e\u0641\u0636 \u0625\u0644\u0649 48 \u0633\u0627\u0639\u0629. \u0623\u0645\u0627 \u0625\u0630\u0627 \u0643\u0646\u062a \u062a\u0645\u0644\u0643 \u0627\u0634\u062a\u0631\u0627\u0643 VIP \u0641\u064a \u062e\u062f\u0645\u0629 fanart \u0641\u0625\u0646 \u0641\u062a\u0631\u0629 \u0627\u0644\u0627\u0639\u062a\u0645\u0627\u062f \u0633\u062a\u0646\u062e\u0641\u0636 \u0625\u0644\u0649 10 \u062f\u0642\u0627\u0626\u0642.", + "ExtractChapterImagesHelp": "\u0627\u0633\u062a\u062e\u0644\u0627\u0635 \u0635\u0648\u0631 \u0627\u0644\u0623\u0628\u0648\u0627\u0628 \u0633\u064a\u0633\u0645\u062d \u0644\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0623\u0646 \u062a\u0638\u0647\u0631 \u0644\u0643 \u0642\u0648\u0627\u0626\u0645 \u062a\u0635\u0648\u064a\u0631\u064a\u0629 \u0644\u062a\u0628\u0648\u064a\u0628\u0627\u062a \u0627\u0644\u0623\u0641\u0644\u0627\u0645. \u0647\u0630\u0647 \u0627\u0644\u0639\u0645\u0644\u064a\u0629 \u0642\u062f \u062a\u0643\u0648\u0646 \u0628\u0637\u064a\u0626\u0629\u060c \u0648\u062a\u0633\u062a\u063a\u0644 \u0642\u062f\u0631\u0629 \u0627\u0644\u0645\u0639\u0627\u0644\u062c \u0628\u0634\u0643\u0644 \u0645\u0644\u062d\u0648\u0638\u060c \u0648\u0642\u062f \u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u062d\u064a\u0627\u0632\u0629 \u0628\u0636\u0639\u0629 \u063a\u064a\u063a\u0627\u0628\u0627\u064a\u062a\u0627\u062a \u0645\u0646 \u0645\u0633\u0627\u062d\u0629 \u0627\u0644\u062a\u062e\u0632\u064a\u0646 \u0628\u0634\u0643\u0644 \u0645\u0624\u0642\u062a. \u0647\u0630\u0647 \u0627\u0644\u0645\u0647\u0645\u0629 \u062a\u0639\u0645\u0644 \u062e\u0644\u0627\u0644 \u0639\u0645\u0644\u064a\u0629 \u0627\u0633\u062a\u0643\u0634\u0627\u0641 \u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0631\u0626\u064a\u0629\u060c \u0643\u0645\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u062d\u062f\u062f \u0644\u062a\u0643\u0648\u0646 \u0645\u0647\u0645\u0629 \u0644\u064a\u0644\u064a\u0629 \u0645\u062c\u062f\u0648\u0644\u0629. \u064a\u0645\u0643\u0646\u0643 \u062c\u062f\u0648\u0644\u0629 \u0627\u0644\u0639\u0645\u0644\u064a\u0629 \u0645\u0646 \u0642\u0633\u0645 \u062c\u062f\u0648\u0644\u0629 \u0627\u0644\u0645\u0647\u0627\u0645. \u0644\u0627 \u064a\u0646\u0635\u062d \u0628\u062a\u0634\u063a\u064a\u0644 \u0647\u0630\u0647 \u0627\u0644\u0645\u0647\u0645\u0629 \u062e\u0644\u0627\u0644 \u0633\u0627\u0639\u0627\u062a \u0627\u0644\u0630\u0631\u0648\u0629 \u0645\u0646 \u062f\u062e\u0648\u0644 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646.", + "LabelMetadataDownloadLanguage": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u0625\u0646\u0632\u0627\u0644", + "ButtonSignIn": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644", + "TitleSignIn": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644", + "HeaderPleaseSignIn": "\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644", + "LabelUser": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645:", + "LabelPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631:", + "ButtonManualLogin": "\u0627\u0644\u062f\u062e\u0648\u0644 \u0627\u0644\u064a\u062f\u0648\u064a", + "TabGuide": "\u0627\u0644\u062f\u0644\u064a\u0644", + "TabChannels": "\u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "TabCollections": "\u0627\u0644\u0645\u062c\u0627\u0645\u064a\u0639", + "HeaderChannels": "\u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "TabRecordings": "\u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0633\u062c\u0644\u0629", + "TabSeries": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a", + "TabFavorites": "\u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "TabMyLibrary": "\u0645\u0643\u062a\u0628\u062a\u064a", + "ButtonCancelRecording": "\u0625\u0644\u063a\u0627\u0621 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0645\u0642\u0637\u0639", + "LabelStartWhenPossible": "\u0625\u0628\u062f\u0623 \u062d\u0627\u0644 \u0627\u0644\u0625\u0645\u0643\u0627\u0646:", + "LabelStopWhenPossible": "\u0623\u0648\u0642\u0641 \u062d\u0627\u0644 \u0627\u0644\u0625\u0645\u0643\u0627\u0646", + "MinutesBefore": "\u0639\u062f\u062f \u0627\u0644\u062f\u0642\u0627\u0626\u0642 \u0627\u0644\u0633\u0627\u0628\u0642\u0629", + "MinutesAfter": "\u0639\u062f\u062f \u0627\u0644\u062f\u0642\u0627\u0626\u0642 \u0627\u0644\u0644\u0627\u062d\u0642\u0629", + "HeaderWhatsOnTV": "\u0645\u0627 \u0647\u0648 \u0627\u0644\u0645\u0639\u0631\u0648\u0636 \u0627\u0644\u0622\u0646", + "TabSettings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", + "ButtonRefreshGuideData": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0646\u0634\u064a\u0637 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062f\u0644\u064a\u0644", + "ButtonRefresh": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0646\u0634\u064a\u0637", + "OptionPriority": "\u0627\u0644\u0623\u0648\u0644\u0648\u064a\u0627\u062a", + "OptionRecordOnAllChannels": "\u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0641\u064a \u0643\u0627\u0641\u0629 \u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "OptionRecordAnytime": "\u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0641\u064a \u0643\u0627\u0641\u0629 \u0627\u0644\u0623\u0648\u0642\u0627\u062a", + "OptionRecordOnlyNewEpisodes": "\u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0644\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0641\u0642\u0637", + "HeaderDays": "\u0627\u0644\u0623\u064a\u0627\u0645", + "HeaderActiveRecordings": "\u0627\u0644\u062a\u0633\u062c\u064a\u0644\u0627\u062a \u0627\u0644\u0645\u0641\u0639\u0644\u0629", + "HeaderLatestRecordings": "\u0627\u0644\u062a\u0633\u062c\u064a\u0644\u0629 \u0627\u0644\u0623\u062e\u064a\u0631\u0629", + "HeaderAllRecordings": "\u0643\u0627\u0641\u0629 \u0627\u0644\u062a\u0633\u062c\u064a\u0644\u0627\u062a", + "ButtonPlay": "\u062a\u0634\u063a\u064a\u0644", + "ButtonEdit": "\u062a\u0639\u062f\u064a\u0644", + "ButtonRecord": "\u062a\u0633\u062c\u064a\u0644", + "ButtonDelete": "\u062d\u0630\u0641", + "ButtonRemove": "\u0625\u0632\u0627\u0644\u0629", + "OptionRecordSeries": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0645\u0633\u0644\u0633\u0644", + "HeaderDetails": "\u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644", + "TitleLiveTV": "\u0627\u0644\u062a\u0644\u0641\u0627\u0632 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "LabelNumberOfGuideDays": "\u0639\u062f\u062f \u0623\u064a\u0627\u0645 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062f\u0644\u064a\u0644 \u0644\u0644\u0625\u0646\u0632\u0627\u0644:", + "LabelNumberOfGuideDaysHelp": "\u0625\u0646\u0632\u0627\u0644 \u0623\u064a\u0627\u0645 \u0623\u0643\u062b\u0631 \u0645\u0646 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062f\u0644\u064a\u0644 \u0633\u062a\u0648\u0641\u0631 \u0623\u0645\u0643\u0627\u0646\u064a\u0629 \u062c\u062f\u0648\u0644\u0629 \u0623\u064a\u0627\u0645 \u0623\u0628\u0639\u062f \u0648\u0625\u0638\u0647\u0627\u0631 \u0642\u0648\u0627\u0626\u0645 \u0623\u0637\u0648\u0644 \u0644\u0644\u0628\u0631\u0627\u0645\u062c\u060c \u0644\u0643\u0646\u0647\u0627 \u0633\u062a\u0623\u062e\u0630 \u0648\u0642\u062a\u0627\u064b \u0623\u0637\u0648\u0644 \u0644\u0644\u0625\u0646\u0632\u0627\u0644. \u0627\u0627\u0644\u062e\u064a\u0627\u0631 \u0627\u0644\u0622\u0644\u064a \u0633\u0648\u0641 \u064a\u062a\u062e\u064a\u0651\u0631 \u0628\u0646\u0627\u0621 \u0639\u0644\u0649 \u0639\u062f\u062f \u0627\u0644\u0642\u0646\u0648\u0627\u062a \u0627\u0644\u0645\u062a\u0627\u062d\u0629.", + "OptionAutomatic": "\u0627\u0644\u0622\u0644\u064a", + "HeaderServices": "\u0627\u0644\u062e\u062f\u0645\u0627\u062a", + "LabelCustomizeOptionsPerMediaType": "\u062a\u062e\u0635\u064a\u0635 \u0646\u0648\u0639\u064a\u0629 \u0627\u0644\u0648\u0633\u064a\u0637\u0629:", + "OptionDownloadThumbImage": "\u0627\u0644\u0642\u0635\u0627\u0635\u0629", + "OptionDownloadMenuImage": "\u0627\u0644\u0642\u0627\u0626\u0645\u0629", + "OptionDownloadLogoImage": "\u0627\u0644\u0644\u0648\u063a\u0648", + "OptionDownloadBoxImage": "\u0627\u0644\u0635\u0646\u062f\u0648\u0642", + "OptionDownloadDiscImage": "\u0627\u0644\u0642\u0631\u0635", + "OptionDownloadBannerImage": "\u0627\u0644\u064a\u0627\u0641\u0637\u0629", + "OptionDownloadBackImage": "\u0644\u0644\u062e\u0644\u0641", + "OptionDownloadArtImage": "\u0641\u0646\u064a\u0627\u062a", + "OptionDownloadPrimaryImage": "\u0623\u0648\u0644\u064a", + "HeaderFetchImages": "\u0625\u0637\u0647\u0627\u0631 \u0627\u0644\u0635\u0648\u0631:", + "HeaderImageSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0648\u0631\u0629", + "TabOther": "\u0623\u062e\u0631\u0649", + "LabelMaxBackdropsPerItem": "\u0623\u0643\u0628\u0631 \u0639\u062f\u062f \u0644\u0644\u062e\u0644\u0641\u064a\u0627\u062a \u0644\u0643\u0644 \u0639\u0646\u0635\u0631:", + "LabelMaxScreenshotsPerItem": "\u0623\u0643\u0628\u0631 \u0639\u062f\u062f \u0644\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u0644\u062a\u0642\u0637\u0629 \u0644\u0643\u0644 \u0639\u0646\u0635\u0631:", + "LabelMinBackdropDownloadWidth": "\u0623\u0642\u0644 \u062c\u0648\u062f\u0629 \u0644\u0644\u062e\u0644\u0641\u064a\u0629 \u0627\u0644\u0645\u0646\u0632\u0644\u0629:", + "LabelMinScreenshotDownloadWidth": "\u0623\u0642\u0644 \u062c\u0648\u062f\u0629 \u0644\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u0644\u062a\u0642\u0637\u0629 \u0627\u0644\u0645\u0646\u0632\u0644\u0629:", + "ButtonAddScheduledTaskTrigger": "\u0625\u0636\u0627\u0641\u0629 \u0632\u0646\u0627\u062f", + "HeaderAddScheduledTaskTrigger": "\u0625\u0636\u0627\u0641\u0629 \u0632\u0646\u0627\u062f", + "ButtonAdd": "\u0625\u0636\u0627\u0641\u0629", + "LabelTriggerType": "\u0646\u0648\u0639 \u0627\u0644\u0632\u0646\u0627\u062f:", + "OptionDaily": "\u064a\u0648\u0645\u064a", + "OptionWeekly": "\u0623\u0633\u0628\u0648\u0639\u064a", + "OptionOnInterval": "\u0628\u0646\u0627\u0621 \u0639\u0644\u0649 \u0641\u062a\u0631\u0629", + "OptionOnAppStartup": "\u0628\u0646\u0627\u0621 \u0639\u0644\u0649 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u0627\u062f\u0645", + "OptionAfterSystemEvent": "\u0628\u0639\u062f \u062d\u062f\u062b \u0645\u0639\u064a\u0646 \u0641\u064a \u0627\u0644\u0646\u0638\u0627\u0645", + "LabelDay": "\u0627\u0644\u064a\u0648\u0645: ", + "LabelTime": "\u0627\u0644\u0648\u0642\u062a:", + "LabelEvent": "\u0627\u0644\u062d\u062f\u062b:", + "OptionWakeFromSleep": "\u0627\u0633\u062a\u064a\u0642\u0638 \u0645\u0646 \u0627\u0644\u0633\u0628\u0627\u062a", + "LabelEveryXMinutes": "\u0643\u0644:", + "HeaderTvTuners": "\u0645\u0648\u0644\u0651\u0641\u0627\u062a", + "HeaderLatestGames": "\u0622\u062e\u0631 \u0627\u0644\u0623\u0644\u0639\u0627\u0628", + "HeaderRecentlyPlayedGames": "\u0623\u0644\u0639\u0627\u0628 \u0644\u064f\u0639\u0628\u062a \u0645\u0624\u062e\u0631\u0627\u064b", + "TabGameSystems": "\u0623\u0646\u0638\u0645\u0629 \u0623\u0644\u0639\u0627\u0628", + "TabFolders": "\u0645\u062c\u0644\u062f\u0627\u062a", + "TabPathSubstitution": "\u062a\u0628\u062f\u064a\u0644 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a", + "LabelSeasonZeroDisplayName": "\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0638\u0627\u0647\u0631 \u0644\u0644\u0645\u0648\u0633\u0645 \u0631\u0642\u0645 0:", + "LabelEnableRealtimeMonitor": "\u062a\u0641\u0639\u064a\u0644 \u062e\u0627\u0635\u064a\u0629 \u0627\u0644\u0645\u0631\u0627\u0642\u0628\u0629 \u0641\u064a \u0627\u0644\u0648\u0642\u062a \u0627\u0644\u062d\u0642\u064a\u0642\u064a", + "LabelEnableRealtimeMonitorHelp": "\u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0633\u062a\u0639\u0627\u0644\u062c \u0645\u0628\u0627\u0634\u0631\u0629 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0646\u0638\u0627\u0645 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0645\u062f\u0639\u0648\u0645.", + "ButtonScanLibrary": "\u062a\u0645\u0634\u064a\u0637 \u0627\u0644\u0645\u0643\u062a\u0628\u0629", + "HeaderNumberOfPlayers": "\u0627\u0644\u0645\u0634\u063a\u0644\u0627\u062a", + "OptionAnyNumberOfPlayers": "\u0623\u064a \u0639\u0646\u0635\u0631", "Option1Player": "1+", "Option2Player": "2+", "Option3Player": "3+", "Option4Player": "4+", - "HeaderMediaFolders": "Media Folders", - "HeaderThemeVideos": "Theme Videos", - "HeaderThemeSongs": "Theme Songs", - "HeaderScenes": "Scenes", - "HeaderAwardsAndReviews": "Awards and Reviews", - "HeaderSoundtracks": "Soundtracks", - "HeaderMusicVideos": "Music Videos", - "HeaderSpecialFeatures": "Special Features", - "HeaderCastCrew": "Cast & Crew", - "HeaderAdditionalParts": "Additional Parts", - "ButtonSplitVersionsApart": "Split Versions Apart", - "ButtonPlayTrailer": "Trailer", - "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", - "OptionSpecialEpisode": "Specials", - "OptionMissingEpisode": "Missing Episodes", - "OptionUnairedEpisode": "Unaired Episodes", - "OptionEpisodeSortName": "Episode Sort Name", - "OptionSeriesSortName": "Series Name", - "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", - "HeaderAddTitles": "Add Titles", - "LabelEnableDlnaPlayTo": "Enable DLNA Play To", - "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", - "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", - "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", - "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", - "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Emby.", - "HeaderCustomDlnaProfiles": "Custom Profiles", - "HeaderSystemDlnaProfiles": "System Profiles", - "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", - "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", - "TabHome": "Home", - "TabInfo": "Info", - "HeaderLinks": "Links", - "LinkCommunity": "Community", + "HeaderMediaFolders": "\u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "HeaderThemeVideos": "\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u0634\u0627\u0631\u0629", + "HeaderThemeSongs": "\u0623\u063a\u0627\u0646\u064a \u0627\u0644\u0634\u0627\u0631\u0629", + "HeaderScenes": "\u0627\u0644\u0645\u0634\u0627\u0647\u062f", + "HeaderAwardsAndReviews": "\u0627\u0644\u062c\u0648\u0627\u0626\u0632 \u0648\u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0627\u062a", + "HeaderSoundtracks": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a \u0627\u0644\u0635\u0648\u062a\u064a\u0629", + "HeaderMusicVideos": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0629", + "HeaderSpecialFeatures": "\u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629", + "HeaderCastCrew": "\u0627\u0644\u0645\u0645\u062b\u0644\u064a\u0646 \u0648\u0627\u0644\u0637\u0627\u0642\u0645", + "HeaderAdditionalParts": "\u0623\u062f\u0648\u0627\u0631 \u0625\u0636\u0627\u0641\u064a\u0629", + "ButtonSplitVersionsApart": "\u0641\u0635\u0644 \u0627\u0644\u0625\u0635\u062f\u0627\u0631\u0627\u062a \u0627\u0644\u0645\u062e\u062a\u0644\u0641\u0629 \u0639\u0644\u0649 \u062d\u062f\u0629", + "ButtonPlayTrailer": "\u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a", + "LabelMissing": "\u0645\u0641\u0642\u0648\u062f", + "OptionSpecialEpisode": "\u062d\u0635\u0631\u064a\u0627\u062a", + "OptionMissingEpisode": "\u062d\u0644\u0641\u0629 \u0645\u0641\u0642\u0648\u062f\u0629", + "OptionUnairedEpisode": "\u062d\u0644\u0641\u0629 \u0644\u0645 \u062a\u0628\u062b\u0651", + "OptionEpisodeSortName": "\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u062a\u0631\u062a\u064a\u0628\u064a \u0644\u0644\u062d\u0644\u0642\u0629", + "OptionSeriesSortName": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u0644\u0633\u0644", + "OptionTvdbRating": "\u062a\u0642\u064a\u064a\u0645 Tvdb", + "HeaderAddTitles": "\u0625\u0636\u0627\u0641\u0629 \u0639\u0646\u0627\u0648\u064a\u0646", + "LabelEnableDlnaPlayTo": "\u062a\u0641\u0639\u064a\u0644 \u062e\u0627\u0635\u064a\u0629 DLNA Play To", + "LabelEnableDlnaPlayToHelp": "\u0628\u0625\u0645\u0643\u0627\u0646 \u0623\u0645\u0628\u064a \u0623\u0646 \u064a\u0633\u062a\u0643\u0634\u0641 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0639\u0644\u0649 \u0634\u0628\u0643\u062a\u0643 \u0648\u064a\u0642\u062f\u0645 \u0644\u0643 \u0625\u0645\u0643\u0627\u0645\u064a\u0629 \u0627\u0644\u062a\u062d\u0643\u0645 \u0628\u0647\u0645 \u0639\u0646 \u0628\u0639\u062f.", + "LabelEnableDlnaDebugLogging": "\u062a\u0641\u0639\u064a\u0644 \u062e\u0627\u0635\u064a\u0629 \u0643\u0634\u0648\u0641\u0627\u062a \u0623\u062e\u0637\u0627\u0621 DLNA", + "LabelEnableDlnaDebugLoggingHelp": "\u0647\u0630\u0647 \u0633\u062a\u0646\u0634\u0626 \u0633\u062c\u0644\u0627\u062a \u0643\u0634\u0641\u064a\u0629 \u0636\u062e\u0645\u0629 \u0648\u0644\u0627 \u064a\u0646\u0628\u063a\u064a \u062a\u0641\u0639\u064a\u0644\u0647\u0627 \u0625\u0644\u0627 \u0639\u0646\u062f \u0627\u0644\u062d\u0627\u062c\u0629 \u0625\u0644\u064a\u0647\u0627 \u0628\u063a\u0631\u0636 \u0627\u0633\u062a\u0643\u0634\u0627\u0641 \u0627\u0644\u0623\u062e\u0637\u0627\u0621 \u0648\u062d\u0635\u0631\u0647\u0627.", + "LabelEnableDlnaClientDiscoveryInterval": "\u0641\u062a\u0631\u0627\u062a \u0627\u0633\u062a\u0643\u0634\u0627\u0641 \u0627\u0644\u0639\u0645\u0644\u0627\u0621 (\u0628\u0627\u0644\u062b\u0648\u0627\u0646\u064a)", + "LabelEnableDlnaClientDiscoveryIntervalHelp": "\u064a\u062d\u062f\u062f \u0627\u0644\u0641\u062a\u0631\u0629 \u0628\u0627\u0644\u062b\u0648\u0627\u0646\u064a \u0628\u064a\u0646 \u0639\u0645\u0644\u064a\u0627\u062a \u0628\u062d\u062b SSDP \u0627\u0644\u062a\u064a \u064a\u0642\u0648\u0645 \u0628\u0647\u0627 \u0623\u0645\u0628\u064a.", + "HeaderCustomDlnaProfiles": "\u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0627\u0644\u0645\u062e\u0635\u0648\u0635\u0629", + "HeaderSystemDlnaProfiles": "\u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u0646\u0638\u0627\u0645", + "CustomDlnaProfilesHelp": "\u0625\u0646\u0634\u0627\u0621 \u0639\u0631\u0627\u0626\u0636 \u0645\u062e\u0635\u0648\u0635\u0647 \u062a\u0633\u062a\u0647\u062f\u0641 \u062c\u0647\u0627\u0632\u0627\u064b \u062c\u062f\u064a\u062f\u0627\u064b \u0623\u0648 \u064a\u0645\u062a\u0637\u064a \u062d\u0633\u0627\u0628\u0627\u064b \u0646\u0638\u0627\u0645\u064a\u0627\u064b.", + "SystemDlnaProfilesHelp": "\u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u0646\u0638\u0627\u0645 \u062a\u0643\u0648\u0646 \u0645\u0642\u0641\u0644\u0629 \u0644\u0644\u0642\u0631\u0627\u0621\u0629-\u0641\u0642\u0637. \u0648\u0623\u064a \u062a\u063a\u064a\u064a\u0631 \u0639\u0644\u0649 \u0639\u0631\u064a\u0636\u0629 \u0645\u0646 \u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u0646\u0638\u0627\u0645 \u0633\u062a\u062d\u0641\u0638 \u0625\u0644\u0649 \u0639\u0631\u064a\u0636\u0629 \u0645\u062e\u0635\u0648\u0635\u0629 \u062c\u062f\u064a\u062f\u0629.", + "TabHome": "\u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629", + "TabInfo": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a", + "HeaderLinks": "\u0631\u0648\u0627\u0628\u0637", + "LinkCommunity": "\u0645\u062c\u062a\u0645\u0639 \u0627\u0644\u0623\u0639\u0636\u0627\u0621", "LinkGithub": "Github", - "LinkApi": "Api", - "LabelFriendlyServerName": "Friendly server name:", - "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.", - "LabelReadHowYouCanContribute": "Learn how you can contribute.", - "ButtonSubmit": "Submit", - "ButtonCreate": "Create", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", - "LabelEnableHttps": "Report https as external address", - "LabelEnableHttpsHelp": "If enabled, the server will report an https url to Emby apps as it's external address.", - "LabelHttpsPort": "Local https port number:", - "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.", - "LabelEnableAutomaticPortMap": "Enable automatic port mapping", - "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.", - "TitleAppSettings": "App Settings", - "LabelMinResumePercentage": "Min resume percentage:", - "LabelMaxResumePercentage": "Max resume percentage:", - "LabelMinResumeDuration": "Min resume duration (seconds):", - "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", - "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", - "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", - "TabActivityLog": "Activity Log", - "TabSmartMatches": "Smart Matches", - "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", - "HeaderName": "Name", - "HeaderDate": "Date", - "HeaderSource": "Source", - "HeaderStatus": "Status", - "HeaderDestination": "Destination", - "HeaderProgram": "Program", - "HeaderClients": "Clients", - "LabelCompleted": "Completed", - "LabelFailed": "Failed", - "LabelSkipped": "Skipped", - "LabelSeries": "Series:", - "LabelSeasonNumber": "Season number:", - "LabelEpisodeNumber": "Episode number:", - "LabelEndingEpisodeNumber": "Ending episode number:", - "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", - "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", - "HeaderSupportTheTeam": "Support the Emby Team", - "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", - "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", - "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", - "OptionEnableEpisodeOrganization": "Enable new episode organization", - "LabelWatchFolder": "Watch folder:", - "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", - "LabelMinFileSizeForOrganize": "Minimum file size (MB):", - "LabelMinFileSizeForOrganizeHelp": "Files under this size will be ignored.", - "LabelSeasonFolderPattern": "Season folder pattern:", - "LabelSeasonZeroFolderName": "Season zero folder name:", - "HeaderEpisodeFilePattern": "Episode file pattern", - "LabelEpisodePattern": "Episode pattern:", - "LabelMultiEpisodePattern": "Multi-Episode pattern:", - "HeaderSupportedPatterns": "Supported Patterns", - "HeaderTerm": "Term", - "HeaderPattern": "Pattern", - "HeaderResult": "Result", - "LabelDeleteEmptyFolders": "Delete empty folders after organizing", - "LabelDeleteEmptyFoldersHelp": "Enable this to keep the download directory clean.", - "LabelDeleteLeftOverFiles": "Delete left over files with the following extensions:", - "LabelDeleteLeftOverFilesHelp": "Separate with ;. For example: .nfo;.txt", - "OptionOverwriteExistingEpisodes": "Overwrite existing episodes", - "LabelTransferMethod": "Transfer method", - "OptionCopy": "Copy", - "OptionMove": "Move", - "LabelTransferMethodHelp": "Copy or move files from the watch folder", - "HeaderLatestNews": "Latest News", - "HeaderRunningTasks": "Running Tasks", - "HeaderActiveDevices": "Active Devices", - "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", - "ButtonRestartNow": "Restart Now", - "ButtonRestart": "Restart", - "ButtonShutdown": "Shutdown", - "ButtonUpdateNow": "Update Now", - "TabHosting": "Hosting", - "PleaseUpdateManually": "Please shutdown the server and update manually.", - "NewServerVersionAvailable": "A new version of Emby Server is available!", - "ServerUpToDate": "Emby Server is up to date", - "LabelComponentsUpdated": "The following components have been installed or updated:", - "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", - "LabelDownMixAudioScale": "Audio boost when downmixing:", - "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", - "ButtonLinkKeys": "Transfer Key", - "LabelOldSupporterKey": "Old Emby Premiere key", - "LabelNewSupporterKey": "New Emby Premiere key", - "HeaderMultipleKeyLinking": "Transfer to New Key", - "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.", - "LabelCurrentEmailAddress": "Current email address", - "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", - "HeaderForgotKey": "Forgot Key", - "LabelEmailAddress": "Email address", - "LabelSupporterEmailAddress": "The email address that was used to purchase the key.", - "ButtonRetrieveKey": "Retrieve Key", - "LabelSupporterKey": "Emby Premiere key (paste from email):", - "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.", - "MessageInvalidKey": "Emby Premiere key is missing or invalid.", - "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", - "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", - "LabelEnableDlnaServer": "Enable Dlna server", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", - "LabelEnableBlastAliveMessages": "Blast alive messages", - "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", - "LabelBlastMessageInterval": "Alive message interval (seconds)", - "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", - "LabelDefaultUser": "Default user:", - "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", - "HeaderServerSettings": "Server Settings", - "HeaderRequireManualLogin": "Require manual username entry for:", - "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", - "OptionOtherApps": "Other apps", - "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", - "LabelNotificationEnabled": "Enable this notification", - "LabelMonitorUsers": "Monitor activity from:", - "LabelSendNotificationToUsers": "Send the notification to:", - "LabelUseNotificationServices": "Use the following services:", - "CategoryUser": "User", - "CategorySystem": "System", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", - "LabelAvailableTokens": "Available tokens:", - "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", - "OptionAllUsers": "All users", - "OptionAdminUsers": "Administrators", - "OptionCustomUsers": "Custom", - "ButtonArrowUp": "Up", - "ButtonArrowDown": "Down", - "ButtonArrowLeft": "Left", - "ButtonArrowRight": "Right", - "ButtonBack": "Back", - "ButtonInfo": "Info", - "ButtonOsd": "On screen display", - "ButtonPageUp": "Page Up", - "ButtonPageDown": "Page Down", - "ButtonHome": "Home", - "ButtonSearch": "Search", - "ButtonSettings": "Settings", - "ButtonTakeScreenshot": "Capture Screenshot", + "LinkApi": "\u0648\u0627\u062c\u0647\u0629 \u0628\u0631\u0645\u062c\u064a\u0629", + "LabelFriendlyServerName": "\u0627\u0633\u0645 \u0627\u0644\u062e\u0627\u062f\u0645 \u0627\u0644\u0645\u064a\u0633\u0631:", + "LabelFriendlyServerNameHelp": "\u0647\u0630\u0627 \u0627\u0644\u0627\u0633\u0645 \u064a\u0633\u064a\u062a\u062e\u062f\u0645 \u0644\u0644\u062a\u0639\u0631\u0641 \u0639\u0644\u0649 \u0627\u0644\u062e\u0627\u062f\u0645. \u0625\u0646 \u062a\u0631\u0643 \u062e\u0627\u0644\u064d\u060c \u0641\u0625\u0646 \u0627\u0633\u0645 \u0627\u0644\u062d\u0627\u0633\u0648\u0628 \u0633\u0648\u0641 \u064a\u0633\u062a\u062e\u062f\u0645.", + "LabelPreferredDisplayLanguage": "\u0644\u063a\u0629 \u0627\u0644\u0648\u0627\u062c\u0647\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629:", + "LabelPreferredDisplayLanguageHelp": "\u0625\u0646 \u062a\u0631\u062c\u0645\u0629 \u0623\u0645\u0628\u064a \u0647\u0648 \u0645\u0634\u0631\u0648\u0639 \u062c\u0627\u0631\u064a \u0627\u0644\u062a\u0646\u0641\u064a\u0630.", + "LabelReadHowYouCanContribute": "\u062a\u0639\u0631\u0651\u0641 \u0639\u0644\u0649 \u0643\u064a\u0641\u064a\u0629 \u0627\u0644\u0645\u0633\u0627\u0647\u0645\u0629 \u0641\u064a\u0647.", + "ButtonSubmit": "\u062a\u0633\u0644\u064a\u0645", + "ButtonCreate": "\u0625\u0646\u0634\u0627\u0621", + "LabelCustomCss": "\u062a\u0646\u064a\u0633\u0642 CSS \u0645\u062e\u0635\u0648\u0635:", + "LabelCustomCssHelp": "\u0637\u0628\u0642 \u062a\u0646\u0633\u064a\u0642 css \u0645\u062e\u0635\u0648\u0635\u0629 \u0644\u0648\u0627\u062c\u0647\u0629 \u0627\u0644\u0648\u064a\u0628.", + "LabelLocalHttpServerPortNumber": "\u0631\u0642\u0645 \u0645\u0646\u0641\u0630 http \u0627\u0644\u0645\u062d\u0644\u064a:", + "LabelLocalHttpServerPortNumberHelp": "\u0631\u0642\u0645 \u0645\u0646\u0641\u0630 http \u0627\u0644\u0645\u062a\u0648\u062c\u0628 \u0639\u0644\u0649 \u0627\u0644\u062e\u0627\u062f\u0645 \u0623\u0646 \u064a\u0631\u062a\u0628\u0637 \u0645\u0646 \u062e\u0644\u0627\u0644\u0647.", + "LabelPublicHttpPort": "\u0631\u0642\u0645 \u0645\u0646\u0641\u0630 http \u0627\u0644\u0639\u0627\u0644\u0645\u064a:", + "LabelPublicHttpPortHelp": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u0639\u0627\u0644\u0645\u064a \u0627\u0644\u0630\u064a \u064a\u062c\u0628 \u0623\u0646 \u064a\u0648\u0627\u0641\u0642 \u0645\u0646\u0641\u0630 http \u0627\u0644\u0645\u062d\u0644\u064a.", + "LabelPublicHttpsPort": "\u0631\u0642\u0645 \u0645\u0646\u0641\u0630 https \u0627\u0644\u0639\u0627\u0644\u0645\u064a:", + "LabelPublicHttpsPortHelp": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u0639\u0627\u0644\u0645\u064a \u0627\u0644\u0630\u064a \u064a\u062c\u0628 \u0623\u0646 \u064a\u0648\u0627\u0641\u0642 \u0645\u0646\u0641\u0630 https \u0627\u0644\u0645\u062d\u0644\u064a.", + "LabelEnableHttps": "\u0623\u0639\u0637\u0650 https \u0641\u064a \u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u062e\u0627\u0631\u062c\u064a", + "LabelEnableHttpsHelp": "\u0641\u064a \u062d\u0627\u0644 \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0625\u0646 \u0627\u0644\u062e\u0627\u062f\u0645 \u0633\u0648\u0641 \u064a\u0639\u0637\u064a \u0631\u0627\u0628\u0637 \u0628\u0628\u0631\u0648\u062a\u0648\u0643\u0648\u0644 https \u0644\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0641\u064a \u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u062e\u0627\u0631\u062c\u064a \u0627\u0644\u0645\u0639\u0637\u0649.", + "LabelHttpsPort": "\u0631\u0642\u0645 \u0645\u0646\u0641\u0630 https \u0627\u0644\u0645\u062d\u062a\u0644\u064a:", + "LabelHttpsPortHelp": "\u0631\u0642\u0645 \u0645\u0646\u0641\u0630 tcp \u0627\u0644\u0645\u062a\u0648\u062c\u0628 \u0639\u0644\u0649 \u0628\u0631\u0648\u062a\u0648\u0643\u0648\u0644 https \u0623\u0646 \u064a\u0631\u062a\u0628\u0637 \u0645\u0646 \u062e\u0644\u0627\u0644\u0647 \u0641\u064a \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a.", + "LabelEnableAutomaticPortMap": "\u0641\u0639\u0644 \u0627\u0644\u062e\u0627\u0635\u064a\u0629 \u0627\u0644\u0622\u0644\u064a\u0629 \u0641\u064a \u0627\u0644\u062a\u0648\u0641\u064a\u0642 \u0628\u064a\u0646 \u0627\u0644\u0645\u0646\u0627\u0641\u0630", + "LabelEnableAutomaticPortMapHelp": "\u062d\u0627\u0648\u0644 \u0627\u0644\u062a\u0648\u0641\u064a\u0642 \u0628\u064a\u0646 \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u0639\u0627\u0644\u0645\u064a \u0648\u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u0645\u062d\u0644\u064a \u0622\u0644\u064a\u0627\u064b \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0622\u0644\u064a\u0629 UPnP. \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629 \u0642\u062f \u0644\u0627 \u062a\u0639\u0645\u0644 \u0645\u0639 \u0628\u0639\u0636 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0631\u0627\u0648\u062a\u0631\u0627\u062a.", + "LabelExternalDDNS": "\u0627\u0644\u0646\u0637\u0627\u0642 \u0627\u0644\u062e\u0627\u0631\u062c\u064a:", + "LabelExternalDDNSHelp": "\u0625\u0646 \u0643\u0646\u062a \u062a\u0645\u0644\u0643 \u0627\u0633\u0645 \u0646\u0638\u0627\u0645 \u062f\u064a\u0646\u0627\u0645\u064a\u0643\u064a DNS \u0641\u0623\u062f\u062e\u0644\u0647 \u0647\u0646\u0627. \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0633\u062a\u0633\u062a\u062e\u062f\u0645\u0647 \u0639\u0646\u062f \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0639\u0646 \u0628\u0639\u062f. \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0646\u0629 \u0645\u0637\u0644\u0648\u0628\u0629 \u0639\u0646\u062f \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u0639 \u0634\u0647\u0627\u062f\u0629 ssl \u0645\u062e\u0635\u0648\u0635\u0629.", + "TitleAppSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u0637\u064a\u0642\u0627\u062a", + "LabelMinResumePercentage": "\u0627\u0644\u0646\u0633\u0628\u0629 \u0627\u0644\u062f\u0646\u064a\u0627 \u0644\u0644\u0645\u062a\u0627\u0628\u0639\u0629:", + "LabelMaxResumePercentage": "\u0627\u0644\u0646\u0633\u0628\u0629 \u0627\u0644\u0639\u0644\u064a\u0627 \u0644\u0644\u0645\u062a\u0627\u0628\u0639\u0629:", + "LabelMinResumeDuration": "\u0627\u0644\u0641\u062a\u0631\u0629 \u0627\u0644\u062f\u0646\u064a\u0627 \u0644\u0644\u0645\u062a\u0627\u0628\u0639\u0629 (\u0628\u0627\u0644\u062b\u0648\u0627\u0646\u064a):", + "LabelMinResumePercentageHelp": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 \u0633\u062a\u0639\u062a\u0628\u0631 \u063a\u064a\u0631 \u0645\u0634\u063a\u0644\u0629 \u0625\u0630\u0627 \u0623\u0648\u0642\u0641\u062a \u0642\u0628\u0644 \u0647\u0630\u0627 \u0627\u0644\u0648\u0642\u062a", + "LabelMaxResumePercentageHelp": "\u0627\u0644\u0639\u0646\u0648\u0627\u064a\u0646 \u0633\u062a\u0639\u062a\u0628\u0631 \u0645\u0634\u063a\u0644\u0629 \u062d\u062a\u0649 \u0627\u0644\u0646\u0647\u0627\u064a\u0629 \u0625\u0630\u0627 \u0623\u0648\u0642\u0641\u062a \u0628\u0639\u062f \u0647\u0630\u0627 \u0627\u0644\u0648\u0642\u062a", + "LabelMinResumeDurationHelp": "\u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 \u0627\u0644\u0623\u0642\u0635\u0631 \u0645\u0646 \u0647\u0630\u0627 \u0627\u0644\u0648\u0642\u062a \u0644\u0646 \u064a\u062a\u0627\u062d \u0644\u0647\u0627 \u062e\u0627\u0635\u064a\u0629 \u0627\u0644\u0627\u0633\u062a\u0626\u0646\u0627\u0641", + "TabActivityLog": "\u0633\u062c\u0644 \u0627\u0644\u0646\u0634\u0627\u0637\u0627\u062a", + "TabSmartMatches": "\u0627\u0644\u062a\u0648\u0627\u0641\u064a\u0642 \u0627\u0644\u0630\u0643\u064a\u0629", + "TabSmartMatchInfo": "\u0642\u0645 \u0628\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u062a\u0648\u0627\u0641\u064a\u0642 \u0627\u0644\u0630\u0643\u064a\u0629 \u0627\u0644\u062a\u064a \u0623\u0636\u064a\u0641\u062a \u0645\u0646 \u062e\u0644\u0627\u0644 \u0645\u0631\u0628\u0639 \u062d\u0648\u0627\u0631 \u062a\u0635\u062d\u064a\u062d \u0627\u0644\u062a\u0646\u0638\u064a\u0645 \u0627\u0644\u0622\u0644\u064a", + "HeaderName": "\u0627\u0644\u0627\u0633\u0645", + "HeaderDate": "\u0627\u0644\u062a\u0627\u0631\u064a\u062e", + "HeaderSource": "\u0627\u0644\u0645\u0635\u062f\u0631", + "HeaderStatus": "\u0627\u0644\u0648\u0636\u0639\u064a\u0629", + "HeaderDestination": "\u0627\u0644\u0645\u0622\u0644", + "HeaderProgram": "\u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c", + "HeaderClients": "\u0627\u0644\u0639\u0645\u0644\u0627\u0621", + "LabelCompleted": "\u062a\u0645 \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621", + "LabelFailed": "\u0627\u0644\u0639\u0645\u0644\u064a\u0629 \u0641\u0634\u0644\u062a", + "LabelSkipped": "\u062a\u0645 \u0627\u0644\u062a\u062c\u0627\u0648\u0632", + "LabelSeries": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644:", + "LabelSeasonNumber": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u0633\u0645:", + "LabelEpisodeNumber": "\u0631\u0642\u0645 \u0627\u0644\u062d\u0644\u0642\u0629:", + "LabelEndingEpisodeNumber": "\u0631\u0642\u0645 \u0627\u0644\u062d\u0644\u0642\u0629 \u0627\u0644\u0623\u062e\u064a\u0631\u0629:", + "LabelEndingEpisodeNumberHelp": "\u0645\u0637\u0644\u0648\u0628\u0629 \u0641\u0642\u0637 \u0644\u0645\u0644\u0641\u0627\u062a \u0630\u0627\u062a \u062d\u0644\u0642\u0627\u062a \u0645\u062a\u0639\u062f\u062f\u0629", + "OptionRememberOrganizeCorrection": "\u0627\u062d\u0641\u0638 \u0648\u0637\u0628\u0642 \u0647\u0630\u0627 \u0627\u0644\u062a\u0635\u062d\u064a\u062d \u0644\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u0642\u0628\u0644\u064a\u0629 \u0628\u0623\u0646\u0645\u0627\u0637 \u062a\u0633\u0645\u064a\u0629 \u0645\u0634\u0627\u0628\u0647\u0629", + "HeaderSupportTheTeam": "\u0642\u0645 \u0628\u062f\u0639\u0645 \u0641\u0631\u064a\u0642 \u0623\u0645\u0628\u064a", + "HeaderSupportTheTeamHelp": "\u0642\u0645 \u0628\u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629 \u0644\u062a\u0623\u0643\u064a\u062f \u0627\u0633\u062a\u0645\u0631\u0627\u0631\u064a\u0629 \u0639\u0645\u0644\u064a\u0629 \u062a\u0637\u0648\u064a\u0631 \u0647\u0630\u0627 \u0627\u0644\u0645\u0634\u0631\u0648\u0639 \u0628\u0634\u0631\u0627\u0621 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632. \u062c\u0632\u0621 \u0645\u0646 \u062c\u0645\u064a\u0639 \u0627\u0644\u0625\u064a\u0631\u0627\u062f\u0627\u062a \u0633\u062a\u062e\u0635\u0635 \u0644\u0623\u062f\u0648\u0627\u062a \u0645\u062c\u0627\u0646\u064a\u0629 \u0623\u062e\u0631\u0649 \u064a\u0639\u062a\u0645\u062f \u0647\u0630\u0627 \u0627\u0644\u0645\u0646\u062a\u062c \u0639\u0644\u064a\u0647\u0627.", + "DonationNextStep": "\u0639\u0646\u062f \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621\u060c \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0639\u0648\u062f\u0629 \u0648\u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632\u060c \u0627\u0644\u0630\u064a \u0633\u064a\u0635\u0644\u0643 \u0625\u0644\u0649 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a.", + "AutoOrganizeHelp": "\u0627\u0644\u062a\u0646\u0638\u064a\u0645 \u0627\u0644\u0622\u0644\u064a \u064a\u0631\u0627\u0642\u0628 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0625\u0646\u0632\u0627\u0644 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643 \u0641\u064a \u062d\u0627\u0644 \u0648\u0631\u0648\u062f \u0623\u064a \u0645\u0644\u0641\u0627\u062a \u062c\u062f\u064a\u062f\u0629 \u062b\u0645 \u064a\u0646\u0642\u0644\u0647\u0627 \u0625\u0644\u0649 \u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643.", + "OptionEnableEpisodeOrganization": "\u062a\u0641\u0639\u064a\u0644 \u062e\u0627\u0635\u064a\u0629 \u062a\u0646\u0638\u064a\u0645 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f\u0629", + "LabelWatchFolder": "\u0645\u062c\u0644\u062f \u0627\u0644\u0645\u0631\u0627\u0642\u0628\u0629:", + "LabelWatchFolderHelp": "\u0627\u0644\u062e\u0627\u062f\u0645 \u0633\u064a\u0642\u0648\u0645 \u0628\u062a\u0645\u0634\u064a\u0637 \u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0644\u062f \u062e\u0644\u0627\u0644 \u062a\u0646\u0641\u064a\u0630 \u0627\u0644\u0645\u0647\u0645\u0629 \u0627\u0644\u0645\u0633\u0645\u0649: \u062a\u0646\u0638\u064a\u0645 \u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062c\u062f\u064a\u062f\u0629.", + "LabelMinFileSizeForOrganize": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u062f\u0646\u0649 \u0644\u062d\u062c\u0645 \u0627\u0644\u0645\u0644\u0641\u0627\u062a (\u0645\u064a\u063a\u0627\u0628\u0627\u064a\u062a).", + "LabelMinFileSizeForOrganizeHelp": "\u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0643\u0648\u0646 \u0623\u0635\u063a\u0631 \u0645\u0646 \u0647\u0630\u0627 \u0627\u0644\u062d\u062c\u0645 \u0633\u0648\u0641 \u062a\u0633\u062a\u062b\u0646\u0649.", + "LabelSeasonFolderPattern": "\u0646\u0645\u0637 \u0645\u062c\u0644\u062f \u0627\u0644\u0645\u0648\u0633\u0645:", + "LabelSeasonZeroFolderName": "\u0627\u0633\u0645 \u0645\u062c\u0644\u062f \u0627\u0644\u0645\u0648\u0633\u0645 \u0631\u0642\u0645 \u0635\u0641\u0631:", + "HeaderEpisodeFilePattern": "\u0646\u0645\u0637 \u062a\u0633\u0645\u064a\u0629 \u0645\u0644\u0641 \u0627\u0644\u062d\u0644\u0642\u0629", + "LabelEpisodePattern": "\u0646\u0645\u0637 \u0645\u0633\u0645\u0649 \u0627\u0644\u062d\u0644\u0642\u0629:", + "LabelMultiEpisodePattern": "\u0646\u0645\u0637 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629:", + "HeaderSupportedPatterns": "\u0627\u0644\u0623\u0646\u0645\u0627\u0637 \u0627\u0644\u0645\u062f\u0639\u0648\u0645\u0629", + "HeaderTerm": "\u0627\u0644\u0643\u0644\u0645\u0629", + "HeaderPattern": "\u0627\u0644\u0646\u0645\u0637", + "HeaderResult": "\u0627\u0644\u0646\u062a\u064a\u062c\u0629 \u0627\u0644\u0646\u0647\u0627\u0626\u064a\u0629", + "LabelDeleteEmptyFolders": "\u0627\u062d\u0630\u0641 \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u062e\u0627\u0644\u064a\u0629 \u0628\u0639\u062f \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062a\u0646\u0638\u064a\u0645", + "LabelDeleteEmptyFoldersHelp": "\u0641\u0639\u0644 \u0647\u0630\u0647 \u0644\u0625\u0628\u0642\u0627\u0621 \u0645\u0633\u0627\u0631 \u0627\u0644\u0625\u0646\u0632\u0627\u0644 \u0646\u0638\u064a\u0641 \u062f\u0627\u0626\u0645\u0627\u064b.", + "LabelDeleteLeftOverFiles": "\u0627\u062d\u0630\u0641 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u062a\u0628\u0642\u064a\u0629 \u0628\u0647\u0630\u0627 \u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f", + "LabelDeleteLeftOverFilesHelp": "\u0642\u0645 \u0628\u0641\u0635\u0644 \u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062b\u0644\u0627\u062b\u064a\u0629 \u0628\u0639\u0644\u0627\u0645\u0629 ; . \u0639\u0644\u0649 \u0633\u0628\u064a\u0644 \u0627\u0644\u0645\u062b\u0627\u0644: .nfo; .txt", + "OptionOverwriteExistingEpisodes": "\u0623\u0643\u062a\u0628 \u0639\u0644\u0649 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629 \u0633\u0644\u0641\u0627\u064b", + "LabelTransferMethod": "\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u0646\u0642\u0644", + "OptionCopy": "\u0646\u0633\u062e", + "OptionMove": "\u0646\u0642\u0644", + "LabelTransferMethodHelp": "\u0646\u0633\u062e \u0623\u0648 \u0646\u0642\u0644 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0645\u0646 \u0627\u0644\u0645\u062c\u0644\u062f \u0627\u0644\u0645\u0631\u0627\u0642\u0628", + "HeaderLatestNews": "\u0622\u062e\u0631 \u0627\u0644\u0623\u062e\u0628\u0627\u0631", + "HeaderRunningTasks": "\u0627\u0644\u0645\u0647\u0627\u0645 \u0627\u0644\u0645\u0634\u063a\u0651\u0644\u0629", + "HeaderActiveDevices": "\u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0645\u0641\u0639\u0651\u0644\u0629", + "HeaderPendingInstallations": "\u0627\u0644\u062a\u062b\u0628\u064a\u062a\u0627\u062a \u0627\u0644\u0645\u0639\u0644\u0642\u0629", + "ButtonRestartNow": "\u0623\u0639\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0622\u0646", + "ButtonRestart": "\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "ButtonShutdown": "\u0625\u0646\u0647\u0627\u0621 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "ButtonUpdateNow": "\u0627\u0644\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0622\u0646", + "TabHosting": "\u0627\u0644\u0627\u0633\u062a\u0636\u0627\u0641\u0629", + "PleaseUpdateManually": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u064a\u0642\u0627\u0641 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u0627\u062f\u0645 \u0648\u0625\u062c\u0631\u0627\u0621 \u0627\u0644\u062a\u062d\u062f\u064a\u062b \u064a\u062f\u0648\u064a\u0627\u064b.", + "NewServerVersionAvailable": "\u064a\u0648\u062c\u062f \u0625\u0635\u062f\u0627\u0631 \u062c\u062f\u064a\u062f \u0645\u0646 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u062d\u0627\u0644\u064a\u0627\u064b!", + "ServerUpToDate": "\u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0645\u062d\u062f\u062b \u0625\u0644\u0649 \u0627\u0644\u0625\u0635\u062f\u0627\u0631 \u0627\u0644\u0623\u062e\u064a\u0631", + "LabelComponentsUpdated": "\u0644\u0642\u062f \u062a\u0645 \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621 \u0645\u0646 \u062a\u062b\u0628\u064a\u062a \u0623\u0648 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0645\u0643\u0648\u0646 \u0627\u0644\u062a\u0627\u0644\u064a:", + "MessagePleaseRestartServerToFinishUpdating": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u0627\u062f\u0645 \u0644\u0625\u0646\u0647\u0627\u0621 \u062a\u0637\u0628\u064a\u0642 \u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a.", + "LabelDownMixAudioScale": "\u062a\u0639\u0632\u064a\u0632 \u0627\u0644\u0635\u0648\u062a \u0639\u0646\u062f \u062a\u0642\u0644\u064a\u0644 \u062a\u0648\u0632\u064a\u0639 \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u0635\u0648\u062a:", + "LabelDownMixAudioScaleHelp": "\u062a\u0639\u0632\u064a\u0632 \u0627\u0644\u0635\u0648\u062a \u0639\u0646\u062f \u062a\u0642\u0644\u064a\u0644 \u062a\u0648\u0632\u064a\u0639 \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u0635\u0648\u062a. \u062d\u062f\u062f \u0627\u0644\u0642\u064a\u0645\u0629 \u0628\u0640 1 \u0644\u0644\u0645\u062d\u0627\u0641\u0638\u0629 \u0639\u0644\u0649 \u0627\u0644\u0642\u064a\u0645\u0629 \u0627\u0644\u0623\u0635\u0644\u064a\u0629 \u0644\u0644\u0635\u0648\u062a.", + "ButtonLinkKeys": "\u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644", + "LabelOldSupporterKey": "\u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0627\u0644\u0642\u062f\u064a\u0645", + "LabelNewSupporterKey": "\u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0627\u0644\u062c\u062f\u064a\u062f", + "HeaderMultipleKeyLinking": "\u0627\u0644\u0627\u0646\u062a\u0642\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u0645\u0641\u062a\u0627\u062d \u0627\u0644\u062c\u062f\u064a\u062f", + "MultipleKeyLinkingHelp": "\u0625\u0630\u0627 \u0627\u0633\u062a\u0642\u0628\u0644\u062a \u0645\u0641\u062a\u0627\u062d \u062c\u062f\u064a\u062f \u0644\u0640 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632\u060c \u0641\u0627\u0633\u062a\u062e\u062f\u0645 \u0647\u0630\u0627 \u0627\u0644\u0646\u0645\u0648\u0630\u062c \u0644\u0646\u0642\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0642\u062f\u064a\u0645 \u0625\u0644\u0649 \u0627\u0644\u0645\u0641\u062a\u0627\u062d \u0627\u0644\u062c\u062f\u064a\u062f.", + "LabelCurrentEmailAddress": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0627\u0644\u062d\u0627\u0644\u064a", + "LabelCurrentEmailAddressHelp": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0627\u0644\u062d\u0627\u0644\u064a \u0627\u0644\u0630\u064a \u0627\u0633\u062a\u0644\u0645\u062a \u0639\u0646 \u0637\u0631\u064a\u0642\u0647 \u0645\u0641\u062a\u0627\u062d\u0643 \u0627\u0644\u062c\u062f\u064a\u062f.", + "HeaderForgotKey": "\u0646\u0633\u064a\u062a \u0627\u0644\u0645\u0641\u062a\u0627\u062d", + "LabelEmailAddress": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", + "LabelSupporterEmailAddress": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0627\u0644\u0630\u064a \u0627\u0633\u062a\u062e\u062f\u0645\u062a\u0647 \u0644\u0634\u0631\u0627\u0621 \u0627\u0644\u0645\u0641\u062a\u0627\u062d", + "ButtonRetrieveKey": "\u0627\u0633\u062a\u062f\u0639\u0627\u0621 \u0627\u0644\u0645\u0641\u062a\u0627\u062d", + "LabelSupporterKey": "\u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 (\u0623\u0644\u0635\u0642\u0647 \u0645\u0646 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a):", + "LabelSupporterKeyHelp": "\u0623\u062f\u062e\u0644 \u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0644\u062a\u0628\u062f\u0623 \u0628\u0627\u0644\u062a\u0645\u062a\u0639 \u0628\u0627\u0644\u0645\u0632\u0627\u064a\u0627 \u0627\u0644\u0625\u0636\u0627\u0641\u064a\u0629 \u0627\u0644\u062a\u064a \u0637\u0648\u0631\u0647\u0627 \u0627\u0644\u0645\u062c\u062a\u0645\u0639 \u0644\u0640 \u0623\u0645\u0628\u064a.", + "MessageInvalidKey": "\u0625\u0646 \u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u063a\u064a\u0631 \u0635\u062d\u064a\u062d.", + "ErrorMessageInvalidKey": "\u0644\u0643\u064a \u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0644\u0627\u0634\u062a\u0631\u0627\u0643 \u0641\u064a \u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062a\u0645\u064a\u0651\u0632\u060c \u0639\u0644\u064a\u0643 \u0623\u0646 \u062a\u0641\u0639\u0644 \u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0632 \u0623\u0648\u0644\u0627\u064b", + "HeaderDisplaySettings": "\u0623\u0638\u0647\u0631 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", + "LabelEnableDlnaServer": "\u062a\u0641\u0639\u064a\u0644 \u062e\u0627\u062f\u0645 Dlna", + "LabelEnableDlnaServerHelp": "\u064a\u0645\u0643\u0646 \u0623\u062c\u0647\u0632\u0629 UPnP \u0639\u0644\u0649 \u0634\u0628\u0643\u062a\u0643 \u0644\u062a\u0635\u0641\u062d \u0645\u062d\u062a\u0648\u0649 \u0623\u0645\u0628\u064a.", + "LabelEnableBlastAliveMessages": "\u0628\u062b \u0631\u0633\u0627\u0626\u0644 \u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "LabelEnableBlastAliveMessagesHelp": "\u0641\u0639\u0644 \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u062e\u0627\u062f\u0645 \u0644\u0627 \u064a\u0643\u062a\u0634\u0641 \u0628\u0643\u0641\u0627\u0621\u0629 \u0645\u0646 \u0642\u0628\u0644 \u0623\u062c\u0647\u0632\u0629 UPnP \u0627\u0644\u0623\u062e\u0631\u0649 \u0639\u0644\u0649 \u0634\u0628\u0643\u062a\u0643", + "LabelBlastMessageInterval": "\u0641\u062a\u0631\u0627\u062a \u0628\u062b \u0631\u0633\u0627\u0644\u0629 \u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 (\u0628\u0627\u0644\u062b\u0648\u0627\u0646\u064a)", + "LabelBlastMessageIntervalHelp": "\u064a\u062d\u062f\u062f \u0627\u0644\u0641\u062a\u0631\u0629 \u0628\u0627\u0644\u062b\u0648\u0627\u0646\u064a \u0628\u064a\u0646 \u064a\u062b \u0631\u0633\u0627\u0626\u0644 \u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "LabelDefaultUser": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a", + "LabelDefaultUserHelp": "\u0644\u062a\u062d\u062f\u064a\u062f \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u062a\u064a \u062a\u0638\u0647\u0631 \u0639\u0644\u0649 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0645\u062a\u0635\u0644\u0629. \u0628\u0625\u0645\u0643\u0627\u0646 \u0627\u0644\u0627\u0645\u062a\u0637\u0627\u0621 \u0639\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0642\u064a\u0645\u0629 \u0644\u0643\u0644 \u062c\u0647\u0627\u0632 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u0623\u062c\u0647\u0632\u0629.", + "HeaderServerSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645", + "HeaderRequireManualLogin": "\u064a\u062a\u0637\u0644\u0628 \u0627\u0644\u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u064a\u062f\u0648\u064a \u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0644\u0640:", + "HeaderRequireManualLoginHelp": "\u0639\u0646\u062f\u0645\u0627 \u0644\u0627 \u064a\u0643\u0648\u0646 \u0645\u0641\u0639\u0644\u060c \u0641\u0625\u0646 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0642\u062f \u062a\u0639\u0631\u0636 \u0634\u0627\u0634\u0629 \u062f\u062e\u0648\u0644 \u0628\u0627\u0633\u062a\u0639\u0631\u0627\u0636 \u062e\u064a\u0627\u0631\u0627\u062a \u0635\u0648\u0631\u064a\u0629 \u0644\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646.", + "OptionOtherApps": "\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u062e\u0631\u0649", + "OptionMobileApps": "\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0630\u0643\u064a\u0629", + "LabelNotificationEnabled": "\u062a\u0641\u0639\u064a\u0644 \u0647\u0630\u0647 \u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a", + "LabelMonitorUsers": "\u0631\u0627\u0642\u0628 \u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0645\u0646:", + "LabelSendNotificationToUsers": "\u0623\u0631\u0633\u0644 \u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a \u0625\u0644\u0649:", + "LabelUseNotificationServices": "\u0627\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u062a\u0627\u0644\u064a\u0629", + "CategoryUser": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", + "CategorySystem": "\u0627\u0644\u0646\u0638\u0627\u0645", + "CategoryApplication": "\u0627\u0644\u062a\u0637\u0628\u064a\u0642", + "CategoryPlugin": "\u0627\u0644\u0645\u0644\u062d\u0642", + "LabelAvailableTokens": "\u0627\u0644\u0641\u064a\u0634 \u0627\u0644\u0645\u062a\u0627\u062d\u0629:", + "AdditionalNotificationServices": "\u062a\u0635\u0641\u062d \u0643\u062a\u0627\u0644\u0648\u062c \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a \u0644\u062a\u062b\u0628\u064a\u062b \u062e\u062f\u0645\u0627\u062a \u0625\u0634\u0639\u0627\u0631\u0627\u062a \u0625\u0636\u0627\u0641\u064a\u0629.", + "OptionAllUsers": "\u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", + "OptionAdminUsers": "\u0627\u0644\u0645\u062f\u0631\u0627\u0621", + "OptionCustomUsers": "\u0645\u062e\u0635\u0648\u0635", + "ButtonArrowUp": "\u0623\u0639\u0644\u0649", + "ButtonArrowDown": "\u0623\u062f\u0646\u0649", + "ButtonArrowLeft": "\u064a\u0633\u0627\u0631", + "ButtonArrowRight": "\u064a\u0645\u064a\u0646", + "ButtonBack": "\u062e\u0644\u0641", + "ButtonInfo": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a", + "ButtonOsd": "\u0627\u0644\u0639\u0631\u0636 \u0639\u0644\u0649 \u0627\u0644\u0634\u0627\u0634\u0629", + "ButtonPageUp": "\u0623\u0639\u0644\u0649 \u0627\u0644\u0635\u0641\u062d\u0629", + "ButtonPageDown": "\u0623\u0633\u0641\u0644 \u0627\u0644\u0635\u0641\u062d\u0629", + "ButtonHome": "\u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629", + "ButtonSearch": "\u0628\u062d\u062b", + "ButtonSettings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", + "ButtonTakeScreenshot": "\u0625\u0644\u062a\u0642\u0627\u0637 \u0627\u0644\u0634\u0627\u0634\u0629", "LetterButtonAbbreviation": "A", - "TabNowPlaying": "Now Playing", - "TabNavigation": "Navigation", - "TabControls": "Controls", - "ButtonScenes": "Scenes", - "ButtonSubtitles": "Subtitles", - "ButtonPreviousTrack": "Previous track", - "ButtonNextTrack": "Next track", - "ButtonStop": "Stop", - "ButtonPause": "Pause", - "ButtonNext": "Next", - "ButtonPrevious": "Previous", - "LabelGroupMoviesIntoCollections": "Group movies into collections", - "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", - "ButtonVolumeUp": "Volume up", - "ButtonVolumeDown": "Volume down", - "HeaderLatestMedia": "Latest Media", - "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", - "HeaderCollections": "Collections", - "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", - "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", - "HeaderResponseProfile": "Response Profile", - "LabelType": "Type:", - "LabelProfileContainer": "Container:", - "LabelProfileVideoCodecs": "Video codecs:", - "LabelProfileAudioCodecs": "Audio codecs:", - "LabelProfileCodecs": "Codecs:", - "HeaderDirectPlayProfile": "Direct Play Profile", - "HeaderTranscodingProfile": "Transcoding Profile", - "HeaderCodecProfile": "Codec Profile", - "HeaderContainerProfile": "Container Profile", - "OptionProfileVideo": "Video", - "OptionProfileAudio": "Audio", - "OptionProfileVideoAudio": "Video Audio", - "OptionProfilePhoto": "Photo", - "LabelUserLibrary": "User library:", - "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", - "OptionPlainStorageFolders": "Display all folders as plain storage folders", - "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", - "OptionPlainVideoItems": "Display all videos as plain video items", - "OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".", - "LabelSupportedMediaTypes": "Supported Media Types:", - "HeaderIdentification": "Identification", - "TabDirectPlay": "Direct Play", - "TabContainers": "Containers", - "TabCodecs": "Codecs", - "TabResponses": "Responses", - "HeaderProfileInformation": "Profile Information", - "LabelEmbedAlbumArtDidl": "Embed album art in Didl", - "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", - "LabelAlbumArtPN": "Album art PN:", - "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", - "LabelAlbumArtMaxWidth": "Album art max width:", - "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelAlbumArtMaxHeight": "Album art max height:", - "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", - "LabelIconMaxWidth": "Icon max width:", - "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", - "LabelIconMaxHeight": "Icon max height:", - "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", + "TabNowPlaying": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0622\u0646", + "TabNavigation": "\u0627\u0644\u062a\u0646\u0642\u0644", + "TabControls": "\u0627\u0644\u062a\u062d\u0643\u0645", + "ButtonScenes": "\u0645\u0646\u0627\u0638\u0631", + "ButtonSubtitles": "\u062a\u0631\u062c\u0645\u0627\u062a", + "ButtonPreviousTrack": "\u0627\u0644\u0645\u0642\u0637\u0648\u0639\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629", + "ButtonNextTrack": "\u0627\u0644\u0645\u0642\u0637\u0648\u0639\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629", + "ButtonStop": "\u0625\u064a\u0642\u0627\u0641", + "ButtonPause": "\u062a\u0648\u0642\u0641 \u0645\u0624\u0642\u062a", + "ButtonNext": "\u0627\u0644\u062a\u0627\u0644\u064a", + "ButtonPrevious": "\u0627\u0644\u0633\u0627\u0628\u0642", + "LabelGroupMoviesIntoCollections": "\u062a\u062c\u0645\u064a\u0639 \u0627\u0644\u0623\u0641\u0644\u0627\u0645 \u0625\u0644\u0649 \u0645\u062c\u0627\u0645\u064a\u0639", + "LabelGroupMoviesIntoCollectionsHelp": "\u0639\u0646\u062f \u0627\u0633\u062a\u0639\u0631\u0627\u0636 \u0642\u0648\u0627\u0626\u0645 \u0627\u0644\u0623\u0641\u0644\u0627\u0645\u060c \u0641\u0625\u0646 \u0627\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u062a\u064a \u062a\u0646\u062a\u0645\u064a \u0625\u0644\u0649 \u0645\u062c\u0645\u0648\u0639\u0629 \u0648\u0627\u062d\u062f\u0629 \u0633\u062a\u0638\u0647\u0631 \u0643\u0639\u0646\u0635\u0631 \u062c\u0627\u0645\u0639.", + "ButtonVolumeUp": "\u0631\u0641\u0639 \u0627\u0644\u0635\u0648\u062a", + "ButtonVolumeDown": "\u062e\u0641\u0636 \u0627\u0644\u0635\u0648\u062a", + "HeaderLatestMedia": "\u0622\u062d\u062f\u062b \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "OptionNoSubtitles": "\u0644\u0627 \u062a\u0648\u062c\u062f \u062a\u0631\u062c\u0645\u0629", + "HeaderCollections": "\u0627\u0644\u0645\u062c\u0627\u0645\u064a\u0639", + "LabelProfileCodecsHelp": "\u064a\u062c\u0628 \u0641\u0635\u0644 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0628\u0641\u0648\u0627\u0635\u0644 (,). \u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u062a\u0631\u0643 \u0647\u0630\u0647 \u0641\u0627\u0631\u063a\u0629 \u0625\u0630\u0627 \u0623\u0631\u064a\u062f \u062a\u0637\u0628\u064a\u0642\u0647\u0627 \u0639\u0644\u0649 \u0643\u0644 \u0627\u0644\u0643\u0648\u062f\u0643\u0627\u062a.", + "LabelProfileContainersHelp": "\u064a\u062c\u0628 \u0641\u0635\u0644 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0628\u0641\u0648\u0627\u0635\u0644 (,). \u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u062a\u0631\u0643 \u0647\u0630\u0647 \u0641\u0627\u0631\u063a\u0629 \u0625\u0630\u0627 \u0623\u0631\u064a\u062f \u062a\u0637\u0628\u064a\u0642\u0647\u0627 \u0639\u0644\u0649 \u0643\u0644 \u0627\u0644\u062d\u0627\u0648\u064a\u0627\u062a.", + "HeaderResponseProfile": "\u0639\u0631\u064a\u0636\u0629 \u0627\u0644\u0631\u062f", + "LabelType": "\u0627\u0644\u0646\u0648\u0639:", + "LabelProfileContainer": "\u0627\u0644\u062d\u0627\u0648\u064a\u0629", + "LabelProfileVideoCodecs": "\u0643\u0648\u062f\u0643 \u0627\u0644\u0641\u064a\u062f\u064a\u0648", + "LabelProfileAudioCodecs": "\u0643\u0648\u062f\u0643 \u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0635\u0648\u062a", + "LabelProfileCodecs": "\u0627\u0644\u0643\u0648\u062f\u0643\u0627\u062a:", + "HeaderDirectPlayProfile": "\u0639\u0631\u064a\u0636\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "HeaderTranscodingProfile": "\u0639\u0631\u064a\u0636\u0629 \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a", + "HeaderCodecProfile": "\u0639\u0631\u064a\u0636\u0629 \u0627\u0644\u0643\u0648\u062f\u0643", + "HeaderContainerProfile": "\u0639\u0631\u064a\u0636\u0629 \u0627\u0644\u062d\u0627\u0648\u064a\u0629", + "OptionProfileVideo": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648", + "OptionProfileAudio": "\u0627\u0644\u0635\u0648\u062a\u064a\u0627\u062a", + "OptionProfileVideoAudio": "\u0635\u0648\u062a\u064a \u0645\u0631\u0626\u064a", + "OptionProfilePhoto": "\u0635\u0648\u0631", + "LabelUserLibrary": "\u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645:", + "LabelUserLibraryHelp": "\u0625\u0627\u062e\u062a\u0631 \u0623\u064a \u0645\u0646 \u0645\u0643\u062a\u0628\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0644\u0625\u0638\u0647\u0627\u0631\u0647\u0627 \u0639\u0644\u0649 \u0627\u0644\u062c\u0647\u0627\u0632. \u0623\u062a\u0631\u0643\u0647\u0627 \u0641\u0627\u0631\u063a\u0629 \u0644\u0648\u0631\u0627\u062b\u0629 \u0627\u0644\u0642\u064a\u0645\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629", + "OptionPlainStorageFolders": "\u063a\u0631\u0636 \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u0643\u0645\u062c\u0644\u062f\u0627\u062a \u062a\u062e\u0632\u064a\u0646 \u0628\u0633\u064a\u0637\u0629", + "OptionPlainStorageFoldersHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0625\u0646 \u062c\u0645\u064a\u0639 \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u0633\u062a\u064f\u0645\u062b\u0651\u0644 \u0641\u064a \u0645\u062e\u0637\u0637 DIDL \u0643\u0627\u0644\u062a\u0627\u0644\u064a: \"\u0643\u0627\u0626\u0646.\u062d\u0627\u0648\u064a\u0629.\u0645\u062c\u0644\u062f_\u062a\u062e\u0632\u064a\u0646\" \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0627\u0644\u0646\u0648\u0639 \u0627\u0644\u0623\u0643\u062b\u0631 \u062a\u062e\u0635\u064a\u0635\u0627\u064b \u0643\u0645\u0627 \u064a\u0644\u064a\"\u0627\u0644\u0643\u0627\u0626\u0646.\u0627\u0644\u062d\u0627\u0648\u064a\u0629.\u0627\u0644\u0634\u062e\u0635.\u0627\u0644\u0641\u0646\u0627\u0646_\u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\".", + "OptionPlainVideoItems": "\u0625\u0638\u0647\u0627\u0631 \u062c\u0645\u064a\u0639 \u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0643\u0639\u0646\u0627\u0635\u0631 \u0641\u064a\u062f\u064a\u0648 \u0628\u0633\u064a\u0637\u0629", + "OptionPlainVideoItemsHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0625\u0646 \u062c\u0645\u064a\u0639 \u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0633\u062a\u064f\u0645\u062b\u0651\u0644 \u0641\u064a \u0645\u062e\u0637\u0637 DIDL \u0643\u0627\u0644\u062a\u0627\u0644\u064a: \"\u0643\u0627\u0626\u0646.\u0639\u0646\u0635\u0631.\u0639\u0646\u0635\u0631_\u0641\u064a\u062f\u064a\u0648\" \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0627\u0644\u0646\u0648\u0639 \u0627\u0644\u0623\u0643\u062b\u0631 \u062a\u062e\u0635\u064a\u0635\u0627\u064b \u0643\u0645\u0627 \u064a\u0644\u064a \"\u0643\u0627\u0626\u0646.\u0639\u0646\u0635\u0631.\u0639\u0646\u0635\u0631_\u0641\u064a\u062f\u064a\u0648.\u0641\u064a\u0644\u0645\".", + "LabelSupportedMediaTypes": "\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062f\u0639\u0648\u0645\u0629:", + "HeaderIdentification": "\u0627\u0644\u062a\u0639\u0631\u064a\u0641\u0629", + "TabDirectPlay": "\u062a\u0634\u063a\u064a\u0644 \u0645\u0628\u0627\u0634\u0631", + "TabContainers": "\u0627\u0644\u062d\u0627\u0648\u064a\u0627\u062a", + "TabCodecs": "\u0627\u0644\u0643\u0648\u062f\u0643\u0627\u062a", + "TabResponses": "\u0627\u0644\u0631\u062f\u0648\u062f", + "HeaderProfileInformation": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0639\u0631\u064a\u0636\u0629", + "LabelEmbedAlbumArtDidl": "\u0636\u0645\u0646 \u0631\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0623\u0644\u0628\u0648\u0645 \u0641\u064a \u0645\u062e\u0637\u0637 DIDL", + "LabelEmbedAlbumArtDidlHelp": "\u0628\u0639\u0636 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u062a\u0641\u0636\u0644 \u0647\u0630\u0647 \u0627\u0644\u0637\u0631\u064a\u0642\u0629 \u0644\u0627\u0633\u062a\u062e\u0644\u0627\u0635 \u0631\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0623\u0644\u0628\u0648\u0645\u060c \u0641\u064a\u0645\u0627 \u0642\u062f \u064a\u0641\u0634\u0644 \u062a\u0634\u063a\u064a\u0644\u0647\u0627 \u0628\u062a\u0641\u0639\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u062e\u064a\u0627\u0631.", + "LabelAlbumArtPN": "\u0631\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0623\u0644\u0628\u0648\u0645 PN:", + "LabelAlbumArtHelp": "PN \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0629 \u0641\u064a \u0631\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0623\u0644\u0628\u0648\u0645\u060c \u062f\u0627\u062e\u0644 \u0633\u0645\u0629 dlna:profileID \u0641\u064a upnp:albumArtURI. \u0628\u0639\u0636 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u062a\u062d\u062a\u0627\u062c \u0642\u064a\u0645\u0629 \u0645\u062d\u062f\u062f\u0629\u060c \u0645\u0647\u0645\u0627 \u0643\u0627\u0646 \u062d\u062c\u0645 \u0627\u0644\u0635\u0648\u0631\u0629.", + "LabelAlbumArtMaxWidth": "\u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0631\u0633\u0648\u0645 \u0627\u0644\u0623\u0644\u0628\u0648\u0645:", + "LabelAlbumArtMaxWidthHelp": "\u0627\u0644\u062f\u0642\u0629 \u0627\u0644\u0642\u0635\u0648\u0649 \u0644\u0631\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0623\u0644\u0628\u0648\u0645 \u0627\u0644\u0645\u0638\u0647\u0651\u0631\u0629 \u0639\u0628\u0631 \u0633\u0645\u0629 upnp:albumArtURI.", + "LabelAlbumArtMaxHeight": "\u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639 \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0631\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0623\u0644\u0628\u0648\u0645", + "LabelAlbumArtMaxHeightHelp": "\u0627\u0644\u062f\u0642\u0629 \u0627\u0644\u0642\u0635\u0648\u0649 \u0644\u0631\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0623\u0644\u0628\u0648\u0645 \u0627\u0644\u0645\u0638\u0647\u0651\u0631\u0629 \u0639\u0628\u0631 \u0633\u0645\u0629 upnp:albumArtURI.", + "LabelIconMaxWidth": "\u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0644\u0623\u064a\u0642\u0648\u0646\u0629:", + "LabelIconMaxWidthHelp": "\u0627\u0644\u062f\u0642\u0629 \u0627\u0644\u0642\u0635\u0648\u0649 \u0644\u0631\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0623\u0644\u0628\u0648\u0645 \u0627\u0644\u0645\u0638\u0647\u0651\u0631\u0629 \u0639\u0628\u0631 \u0633\u0645\u0629 upnp:icon.", + "LabelIconMaxHeight": "\u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639 \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0644\u0623\u064a\u0642\u0648\u0646\u0629.", + "LabelIconMaxHeightHelp": "\u0627\u0644\u062f\u0642\u0629 \u0627\u0644\u0642\u0635\u0648\u0649 \u0644\u0644\u0623\u064a\u0642\u0648\u0646\u0629 \u0627\u0644\u0645\u0638\u0647\u0651\u0631\u0629 \u0639\u0628\u0631 \u0633\u0645\u0629 upnp:icon.", "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", - "HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.", - "LabelMaxBitrate": "Max bitrate:", - "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", - "LabelMaxStreamingBitrate": "Max streaming bitrate:", - "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", - "LabelMaxChromecastBitrate": "Max Chromecast bitrate:", - "LabelMusicStaticBitrate": "Music sync bitrate:", - "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", - "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", - "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", - "LabelFriendlyName": "Friendly name", - "LabelManufacturer": "Manufacturer", - "LabelManufacturerUrl": "Manufacturer url", - "LabelModelName": "Model name", - "LabelModelNumber": "Model number", - "LabelModelDescription": "Model description", - "LabelModelUrl": "Model url", - "LabelSerialNumber": "Serial number", - "LabelDeviceDescription": "Device description", - "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", - "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", - "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", - "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", - "LabelXDlnaCap": "X-Dlna cap:", - "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelXDlnaDoc": "X-Dlna doc:", - "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", - "LabelSonyAggregationFlags": "Sony aggregation flags:", - "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingVideoCodec": "Video codec:", - "LabelTranscodingAudioCodec": "Audio codec:", - "OptionEnableM2tsMode": "Enable M2ts mode", - "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", - "OptionEstimateContentLength": "Estimate content length when transcoding", - "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", - "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "TabSubtitles": "Subtitles", - "TabChapters": "Chapters", - "LabelOpenSubtitlesUsername": "Open Subtitles username:", - "LabelOpenSubtitlesPassword": "Open Subtitles password:", - "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", - "LabelSubtitlePlaybackMode": "Subtitle mode:", - "LabelDownloadLanguages": "Download languages:", - "ButtonRegister": "Register", - "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", - "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", - "HeaderSendMessage": "Send Message", - "ButtonSend": "Send", - "LabelMessageText": "Message text:", - "LabelMessageTitle": "Message title:", - "MessageNoAvailablePlugins": "No available plugins.", - "LabelDisplayPluginsFor": "Display plugins for:", - "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", - "LabelEpisodeNamePlain": "Episode name", - "LabelSeriesNamePlain": "Series name", + "HeaderProfileServerSettingsHelp": "\u0647\u0630\u0647 \u0627\u0644\u0642\u064a\u0645 \u0633\u062a\u062a\u062d\u0643\u0645 \u0641\u064a \u0643\u064a\u0641\u064a\u0629 \u062a\u0642\u062f\u064a\u0645 \u0634\u0643\u0644 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0641\u064a \u0627\u0644\u062c\u0647\u0627\u0632", + "LabelMaxBitrate": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a", + "LabelMaxBitrateHelp": "\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0645\u0639\u0644\u062f \u0627\u0644\u0628\u062a \u0641\u064a \u0627\u0644\u0628\u0626\u0627\u062a \u0627\u0644\u0645\u062d\u062f\u0648\u062f\u0629 \u0627\u0644\u0633\u0631\u0639\u0629\u060c \u0641\u064a \u0639\u0644\u0649 \u062c\u0647\u0627\u0632 \u0645\u0642\u064a\u062f \u0627\u0644\u0633\u0631\u0639\u0629.", + "LabelMaxStreamingBitrate": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062b \u0627\u0644\u062a\u062f\u0641\u0642\u064a:", + "LabelMaxStreamingBitrateHelp": "\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u0628\u062b \u0627\u0644\u062a\u062f\u0641\u0642\u064a.", + "LabelMaxChromecastBitrate": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0641\u064a Chromecast:", + "LabelMusicStaticBitrate": "\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u0649:", + "LabelMusicStaticBitrateHelp": "\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u062d\u062f \u0623\u0644\u0623\u0642\u0635\u0649 \u0644\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0639\u0646\u062f \u0645\u0632\u0627\u0645\u0646\u0629 \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u0649", + "LabelMusicStreamingTranscodingBitrate": "\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0644\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a", + "LabelMusicStreamingTranscodingBitrateHelp": "\u062a\u062d\u062f\u064a\u062f \u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0648\u0642\u062a \u0627\u0644\u0628\u062b \u0627\u0644\u062a\u062f\u0641\u0642\u064a \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a", + "OptionIgnoreTranscodeByteRangeRequests": "\u062a\u062c\u0627\u0647\u0644 \u0637\u0644\u0628\u0627\u062a \u0645\u062f\u064a\u0627\u062a \u0627\u0644\u0628\u0627\u064a\u062a\u0627\u062a \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a", + "OptionIgnoreTranscodeByteRangeRequestsHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0633\u064a\u0644\u062a\u0632\u0645 \u0628\u0647\u0630\u0647 \u0627\u0644\u0637\u0644\u0628\u0627\u062a \u0648\u0644\u0643\u0646 \u0633\u064a\u062a\u0645 \u062a\u062c\u0627\u0647\u0644 \u0631\u0624\u0648\u0633 \u0645\u062f\u064a\u0627\u062a \u0627\u0644\u0628\u0627\u064a\u062a\u0627\u062a.", + "LabelFriendlyName": "\u0627\u0633\u0645 \u0645\u062e\u0635\u0648\u0635 \u0644\u0643", + "LabelManufacturer": "\u0627\u0644\u0645\u0635\u0646\u0651\u0639", + "LabelManufacturerUrl": "\u0631\u0627\u0628\u0637 url \u0644\u0644\u0645\u0635\u0646\u0651\u0639", + "LabelModelName": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0648\u062f\u064a\u0644", + "LabelModelNumber": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u062f\u064a\u0644", + "LabelModelDescription": "\u0648\u0635\u0641 \u0627\u0644\u0645\u0648\u062f\u064a\u0644", + "LabelModelUrl": "\u0631\u0627\u0628\u0637 url \u0644\u0644\u0645\u0648\u062f\u064a\u0644", + "LabelSerialNumber": "\u0627\u0644\u0631\u0642\u0645 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a", + "LabelDeviceDescription": "\u0648\u0635\u0641 \u0627\u0644\u062c\u0647\u0627\u0632", + "HeaderIdentificationCriteriaHelp": "\u0623\u062f\u062e\u0644 \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 \u0645\u0639\u064a\u0627\u0631 \u0648\u0627\u062d\u062f \u0644\u0644\u062a\u0639\u0631\u064a\u0641", + "HeaderDirectPlayProfileHelp": "\u0623\u0636\u0641 \u0645\u0628\u0627\u0634\u0631\u0629\u064b \u0639\u0631\u064a\u0636\u0629 \u062a\u0634\u063a\u064a\u0644 \u0644\u0644\u0625\u0634\u0627\u0631\u0629 \u0644\u0623\u064a \u0635\u064a\u063a\u0629 \u064a\u062a\u0645\u0643\u0646 \u0627\u0644\u062c\u0647\u0627\u0632 \u0645\u0646 \u0627\u0644\u062a\u0639\u0627\u0645\u0644 \u0645\u0639\u0647 \u0628\u062a\u0644\u0642\u0627\u0626\u064a\u0629.", + "HeaderTranscodingProfileHelp": "\u0623\u0636\u0641 \u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a \u0644\u0644\u0625\u0634\u0627\u0631\u0629 \u0644\u0623\u064a \u0635\u064a\u063a\u0629 \u064a\u062a\u0639\u064a\u0651\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647\u0627 \u0639\u0646\u062f\u0645\u0627 \u062a\u0648\u062c\u062f \u062d\u0627\u062c\u0629 \u0644\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a.", + "HeaderContainerProfileHelp": "\u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u062d\u0627\u0648\u064a\u0627\u062a \u062a\u0634\u064a\u0631 \u0625\u0644\u0649 \u0645\u062d\u062f\u0648\u062f\u064a\u0627\u062a \u062c\u0647\u0627\u0632 \u0645\u0627 \u0639\u0646\u062f \u062a\u0634\u063a\u064a\u0644 \u0635\u064a\u063a \u0645\u0639\u064a\u0646\u0629. \u0625\u0646 \u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u0623\u064a \u0645\u062d\u062f\u0648\u062f\u064a\u0629 \u0645\u0630\u0643\u0648\u0631\u0629 \u0641\u0633\u062a\u062d\u0627\u0644 \u0627\u0644\u0648\u0633\u064a\u0637\u0629 \u0625\u0644\u0649 \u0627\u0644\u062a\u0634\u063a\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a\u060c \u062d\u062a\u0649 \u0644\u0648 \u0643\u0627\u0646\u062a \u0627\u0644\u0635\u064a\u063a\u0629 \u0645\u0636\u0628\u0648\u0637\u0629 \u0644\u0644\u0639\u0645\u0644 \u0628\u062a\u0644\u0642\u0627\u0626\u064a\u0629.", + "HeaderCodecProfileHelp": "\u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u0643\u0648\u062f\u0643 \u062a\u0634\u064a\u0631 \u0625\u0644\u0649 \u0645\u062d\u062f\u0648\u062f\u064a\u0629 \u062c\u0647\u0627\u0632 \u0645\u0627 \u0639\u0646\u062f \u062a\u0634\u063a\u064a\u0644 \u0648\u0633\u064a\u0637\u0629 \u0645\u0634\u0641\u0631 \u0628\u0643\u0648\u062f\u0643 \u0645\u0639\u064a\u0651\u0646. \u0625\u0646 \u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u0623\u064a \u0645\u062d\u062f\u0648\u062f\u064a\u0629 \u0645\u0630\u0643\u0648\u0631\u0629 \u0641\u0633\u062a\u062d\u0627\u0644 \u0627\u0644\u0648\u0633\u064a\u0637\u0629 \u0625\u0644\u0649 \u0627\u0644\u062a\u0634\u063a\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a\u060c \u062d\u062a\u0649 \u0644\u0648 \u0643\u0627\u0646\u062a \u0627\u0644\u0635\u064a\u063a\u0629 \u0645\u0636\u0628\u0648\u0637\u0629 \u0644\u0644\u0639\u0645\u0644 \u0628\u062a\u0644\u0642\u0627\u0626\u064a\u0629.", + "HeaderResponseProfileHelp": "\u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u0631\u062f \u062a\u062a\u064a\u062d \u0637\u0631\u064a\u0642\u0629 \u0644\u062a\u062e\u0635\u064a\u0635 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0631\u0633\u0644\u0629 \u0625\u0644\u0649 \u062c\u0647\u0627\u0632 \u0645\u0627 \u0639\u0646\u062f \u062a\u0634\u063a\u064a\u0644 \u0646\u0648\u0639 \u0645\u0646 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0648\u0633\u0627\u0626\u0637.", + "LabelXDlnaCap": "\u0633\u0642\u0641 X-Dlna:", + "LabelXDlnaCapHelp": "\u062a\u062d\u062f\u062f \u0645\u062d\u062a\u0648\u0649 \u0639\u0646\u0635\u0631 X_DLNACAP \u0641\u064a \u0627\u0644\u0646\u0637\u0627\u0642 \u0627\u0644\u0627\u0633\u0645\u064a \u0644\u0640 urn:schemas-dlna-org:device-1-0 .", + "LabelXDlnaDoc": "\u0648\u062b\u064a\u0642\u0629 X-Dlna:", + "LabelXDlnaDocHelp": "\u062a\u062d\u062f\u062f \u0645\u062d\u062a\u0648\u0649 \u0639\u0646\u0635\u0631 X_DLNADOC \u0641\u064a \u0627\u0644\u0646\u0637\u0627\u0642 \u0627\u0644\u0627\u0633\u0645\u064a \u0644\u0640 urn:schemas-dlna-org:device-1-0 .", + "LabelSonyAggregationFlags": "\u0625\u0634\u0627\u0631\u0627\u062a \u062a\u062d\u0634\u064a\u062f \u0633\u0648\u0646\u064a:", + "LabelSonyAggregationFlagsHelp": "\u062a\u062d\u062f\u062f \u0645\u062d\u062a\u0648\u0649 \u0639\u0646\u0635\u0631 aggregationFlags \u0641\u064a \u0627\u0644\u0646\u0637\u0627\u0642 \u0627\u0644\u0627\u0633\u0645\u064a \u0644\u0640 urn:schemas-sonycom:av namespace .", + "LabelTranscodingContainer": "\u0627\u0644\u062d\u0627\u0648\u064a\u0629:", + "LabelTranscodingVideoCodec": "\u0643\u0648\u062f\u0643 \u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0641\u064a\u062f\u064a\u0648:", + "LabelTranscodingAudioCodec": "\u0643\u0648\u062f\u0643 \u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0635\u0648\u062a:", + "OptionEnableM2tsMode": "\u062a\u0641\u0639\u064a\u0644 \u0637\u0648\u0631 M2ts", + "OptionEnableM2tsModeHelp": "\u062a\u0641\u0639\u064a\u0644 \u0637\u0648\u0631 M2ts \u0639\u0646\u062f \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0625\u0644\u0649 \u0635\u064a\u063a\u0629 mpegts.\n", + "OptionEstimateContentLength": "\u062a\u0648\u0642\u0651\u0639 \u0637\u0648\u0631 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u062d\u0627\u0644 \u0627\u0644\u062a\u0634\u0641\u064a\u0631", + "OptionReportByteRangeSeekingWhenTranscoding": "\u0642\u0631\u0651\u0631 \u0645\u0627 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u062e\u0627\u062f\u0645 \u064a\u062f\u0639\u0645 \u0627\u0644\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0628\u0627\u064a\u062a \u062d\u0627\u0644 \u0627\u0644\u062a\u0634\u0641\u064a\u0631", + "OptionReportByteRangeSeekingWhenTranscodingHelp": "\u0647\u0630\u0647 \u0645\u0637\u0644\u0648\u0628\u0629 \u0644\u0628\u0639\u0636 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u062a\u064a \u0644\u0627 \u062a\u062d\u0633\u0646 \u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0648\u0642\u062a.", + "HeaderDownloadSubtitlesFor": "\u0625\u0646\u0632\u0627\u0644 \u0627\u0644\u062a\u0631\u062c\u0645\u0629 \u0644\u0640:", + "LabelSkipIfGraphicalSubsPresent": "\u062a\u062e\u0637\u0651\u0649 \u0625\u0646 \u0643\u0627\u0646 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u064a\u062d\u062a\u0648\u0649 \u0639\u0644\u0649 \u062a\u0631\u062c\u0645\u0629 \u0645\u0633\u0628\u0642\u0627\u064b", + "LabelSkipIfGraphicalSubsPresentHelp": "\u0627\u0644\u0625\u0628\u0642\u0627\u0621 \u0639\u0644\u0649 \u0627\u0644\u0646\u0633\u062e \u0627\u0644\u0646\u0635\u064a\u0629 \u0644\u0644\u062a\u0631\u062c\u0645\u0629 \u0633\u064a\u0624\u062f\u064a \u0625\u0644\u0649 \u0631\u0641\u0639 \u0643\u0641\u0627\u0621\u0629 \u0627\u0644\u062a\u0648\u0635\u064a\u0644 \u0648\u0633\u064a\u0642\u0644\u0644 \u0645\u0646 \u0627\u062d\u062a\u0645\u0627\u0644\u064a\u0629 \u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a \u0644\u0644\u0641\u064a\u062f\u064a\u0648.", + "TabSubtitles": "\u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a", + "TabChapters": "\u0627\u0644\u0623\u0628\u0648\u0627\u0628", + "LabelOpenSubtitlesUsername": "\u0627\u0633\u0645 \u0645\u0633\u062a\u062e\u062f\u0645 \u062e\u062f\u0645\u0629 Open Subtitles:", + "LabelOpenSubtitlesPassword": "\u0643\u0645\u0644\u0629 \u0633\u0631 \u062e\u062f\u0645\u0629 Open Subtitles:", + "LabelPlayDefaultAudioTrack": "\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0645\u0642\u0637\u0639 \u0627\u0644\u0635\u0648\u062a\u064a \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a \u0628\u063a\u0636 \u0627\u0644\u0646\u0638\u0631 \u0639\u0646 \u0627\u0644\u0644\u063a\u0629", + "LabelSubtitlePlaybackMode": "\u0637\u0648\u0631 \u0627\u0644\u062a\u0631\u062c\u0645\u0629:", + "LabelDownloadLanguages": "\u0625\u0646\u0632\u0627\u0644 \u0627\u0644\u0644\u063a\u0629:", + "ButtonRegister": "\u062a\u0633\u062c\u064a\u0644", + "LabelSkipIfAudioTrackPresent": "\u062a\u062e\u0637\u0651\u0649\u0625\u0646 \u0643\u0627\u0646 \u0627\u0644\u0645\u0642\u0637\u0639 \u0627\u0644\u0635\u0648\u062a\u064a \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a \u064a\u062a\u0648\u0627\u0641\u0642 \u0645\u0639 \u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0646\u0632\u0644\u0629", + "LabelSkipIfAudioTrackPresentHelp": "\u0644\u0627 \u062a\u062e\u062a\u0631 \u0647\u0630\u0647 \u0644\u0643\u064a \u062a\u0624\u0643\u062f \u0648\u062c\u0648\u062f \u062a\u0631\u062c\u0645\u0629 \u0644\u062c\u0645\u064a\u0639 \u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a\u060c \u0628\u063a\u0636 \u0627\u0644\u0646\u0638\u0631 \u0639\u0646 \u0644\u063a\u0629 \u0627\u0644\u0635\u0648\u062a.", + "HeaderSendMessage": "\u0623\u0631\u0633\u0644 \u0631\u0633\u0627\u0644\u0629", + "ButtonSend": "\u0625\u0631\u0633\u0627\u0644", + "LabelMessageText": "\u0646\u0635 \u0627\u0644\u0631\u0633\u0627\u0644\u0629:", + "LabelMessageTitle": "\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0631\u0633\u0627\u0644\u0629:", + "MessageNoAvailablePlugins": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0623\u064a \u0645\u0644\u062d\u0642\u0627\u062a.", + "LabelDisplayPluginsFor": "\u0623\u0638\u0647\u0631 \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a \u0644\u0640:", + "PluginTabAppClassic": "\u0623\u0645\u0628\u064a \u0643\u0644\u0627\u0633\u064a\u0643", + "LabelEpisodeNamePlain": "\u0627\u0633\u0645 \u0627\u0644\u062d\u0644\u0642\u0629", + "LabelSeriesNamePlain": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u0644\u0633\u0644", "ValueSeriesNamePeriod": "Series.name", "ValueSeriesNameUnderscore": "Series_name", "ValueEpisodeNamePeriod": "Episode.name", "ValueEpisodeNameUnderscore": "Episode_name", - "LabelSeasonNumberPlain": "Season number", - "LabelEpisodeNumberPlain": "Episode number", - "LabelEndingEpisodeNumberPlain": "Ending episode number", - "HeaderTypeText": "Enter Text", - "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", - "TabDisplay": "Display", - "TabLanguages": "Languages", - "TabAppSettings": "App Settings", - "LabelEnableThemeSongs": "Enable theme songs", - "LabelEnableBackdrops": "Enable backdrops", - "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", - "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", - "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", - "OptionAuto": "Auto", - "OptionYes": "Yes", - "OptionNo": "No", - "HeaderOptions": "Options", - "LabelHomePageSection1": "Home page section 1:", - "LabelHomePageSection2": "Home page section 2:", - "LabelHomePageSection3": "Home page section 3:", - "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", - "OptionMyMedia": "My media", - "OptionMyMediaSmall": "My media (small)", - "OptionResumablemedia": "Resume", - "OptionLatestMedia": "Latest media", - "OptionLatestChannelMedia": "Latest channel items", - "HeaderLatestChannelItems": "Latest Channel Items", - "OptionNone": "None", - "HeaderLiveTv": "Live TV", - "HeaderReports": "Reports", - "HeaderSettings": "Settings", - "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", - "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", - "HeaderBecomeProjectSupporter": "Get Emby Premiere", - "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", - "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", - "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", - "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", - "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", - "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", - "OptionBestAvailableStreamQuality": "Best available", - "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", - "ViewTypeMovies": "Movies", - "ViewTypeTvShows": "TV", - "ViewTypeGames": "Games", - "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", - "HeaderOtherDisplaySettings": "Display Settings", - "ViewTypeMusicSongs": "Songs", - "ViewTypeMusicFavorites": "Favorites", - "ViewTypeMusicFavoriteAlbums": "Favorite Albums", - "ViewTypeMusicFavoriteArtists": "Favorite Artists", - "ViewTypeMusicFavoriteSongs": "Favorite Songs", - "HeaderMyViews": "My Views", - "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", - "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "OptionDisplayAdultContent": "Display adult content", - "OptionLibraryFolders": "Media folders", - "TitleRemoteControl": "Remote Control", - "OptionLatestTvRecordings": "Latest recordings", - "LabelProtocolInfo": "Protocol info:", - "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", - "TabNfoSettings": "Nfo Settings", - "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Services tab to configure options for your media types.", - "LabelKodiMetadataUser": "Sync user watch data to nfo's for:", - "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.", - "LabelKodiMetadataDateFormat": "Release date format:", - "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", - "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", - "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", - "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", - "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.", - "OptionDisplayChannelsInline": "Display channels as media folders", - "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", - "LabelDisplayCollectionsView": "Display a collections view to show movie collections", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", - "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", - "TabServices": "Services", - "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", - "TabBranding": "Branding", - "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", - "LabelLoginDisclaimer": "Login disclaimer:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", - "OptionList": "List", - "TabDashboard": "Dashboard", - "TitleServer": "Server", - "LabelCache": "Cache:", - "LabelLogs": "Logs:", - "LabelMetadata": "Metadata:", - "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", - "HeaderLatestMusic": "Latest Music", - "HeaderBranding": "Branding", - "HeaderApiKeys": "Api Keys", - "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.", - "HeaderApiKey": "Api Key", - "HeaderApp": "App", - "HeaderDevice": "Device", - "HeaderUser": "User", - "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", - "HeaderHttpHeaders": "Http Headers", - "HeaderIdentificationHeader": "Identification Header", - "LabelValue": "Value:", - "LabelMatchType": "Match type:", - "OptionEquals": "Equals", + "LabelSeasonNumberPlain": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u0633\u0645", + "LabelEpisodeNumberPlain": "\u0631\u0642\u0645 \u0627\u0644\u062d\u0644\u0642\u0629", + "LabelEndingEpisodeNumberPlain": "\u0631\u0642\u0645 \u0627\u0644\u062d\u0644\u0642\u0629 \u0627\u0644\u0623\u062e\u064a\u0631\u0629", + "HeaderTypeText": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0646\u0635", + "LabelTypeText": "\u0627\u0644\u0646\u0635", + "TabDisplay": "\u0625\u0638\u0647\u0627\u0631", + "TabLanguages": "\u0627\u0644\u0644\u063a\u0627\u062a", + "TabAppSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u0637\u0628\u064a\u0642", + "LabelEnableThemeSongs": "\u062a\u0641\u0639\u064a\u0644 \u0623\u063a\u0646\u064a\u0629 \u0627\u0644\u0634\u0627\u0631\u0629", + "LabelEnableBackdrops": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u062e\u0644\u0641\u064a\u0627\u062a", + "LabelEnableThemeSongsHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0625\u0646 \u0623\u063a\u0646\u064a\u0629 \u0627\u0644\u0634\u0627\u0631\u0629 \u0633\u062a\u0634\u062a\u063a\u0644 \u0641\u064a \u0627\u0644\u062e\u0644\u0641\u064a\u0629 \u0639\u0646\u062f \u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0643\u062a\u0628\u0629.", + "LabelEnableBackdropsHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0625\u0646 \u0627\u0644\u062e\u0644\u0641\u064a\u0627\u062a \u0633\u062a\u063a\u0631\u0636 \u0644\u0628\u0639\u0636 \u0627\u0644\u0635\u0641\u062d\u0627\u062a \u0639\u0646\u062f \u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0643\u062a\u0628\u0629.", + "HeaderHomePage": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629", + "OptionAuto": "\u0622\u0644\u064a", + "OptionYes": "\u0646\u0639\u0645", + "OptionNo": "\u0644\u0627", + "HeaderOptions": "\u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a", + "LabelHomePageSection1": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u0642\u0633\u0645 \u0627\u0644\u0623\u0648\u0644:", + "LabelHomePageSection2": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u0642\u0633\u0645 \u0627\u0644\u062b\u0627\u0646\u064a:", + "LabelHomePageSection3": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u0642\u0633\u0645 \u0627\u0644\u062b\u0627\u0644\u062b:", + "LabelHomePageSection4": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u0642\u0633\u0645 \u0627\u0644\u0631\u0627\u0628\u0639:", + "OptionMyMedia": "\u0648\u0633\u0627\u0626\u0637\u064a", + "OptionMyMediaSmall": "\u0648\u0633\u0627\u0626\u0637\u064a (\u0645\u0635\u063a\u0631\u0629)", + "OptionResumablemedia": "\u0627\u0633\u062a\u0626\u0646\u0627\u0641", + "OptionLatestMedia": "\u0623\u062d\u062f\u062b \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "OptionLatestChannelMedia": "\u0622\u062e\u0631 \u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0642\u0646\u0627\u0629", + "HeaderLatestChannelItems": "\u0623\u062d\u062f\u062b \u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0642\u0646\u0627\u0629", + "OptionNone": "\u0644\u0627 \u0634\u064a\u0621", + "HeaderLiveTv": "\u0627\u0644\u062a\u0644\u0641\u0627\u0632 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "HeaderReports": "\u0627\u0644\u062a\u0642\u0627\u0631\u064a\u0631", + "HeaderSettings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", + "OptionDefaultSort": "\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a", + "TabNextUp": "\u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u062a\u0627\u0644\u064a", + "HeaderBecomeProjectSupporter": "\u0623\u0637\u0644\u0628 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632", + "MessageNoMovieSuggestionsAvailable": "\u0644\u0627 \u064a\u0648\u062c\u062f \u062d\u0627\u0644\u064a\u0627\u064b \u0627\u0642\u062a\u0631\u0627\u062d\u0627\u062a \u0627\u0641\u0644\u0627\u0645. \u0625\u0628\u062f\u0627\u064b \u0628\u0645\u0634\u0627\u0647\u062f\u0629 \u0648\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0623\u0641\u0644\u0627\u0645 \u062b\u0645 \u0639\u0627\u0648\u062f \u0632\u064a\u0627\u0631\u0629 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629 \u0644\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0645\u0642\u062a\u0631\u062d\u0627\u062a.", + "MessageNoCollectionsAvailable": "\u0627\u0644\u0645\u062c\u0627\u0645\u064a\u0639 \u062a\u062a\u064a\u062d \u0644\u0643 \u0627\u0644\u0627\u0633\u062a\u0645\u062a\u0627\u0639 \u0628\u062a\u062e\u0635\u064a\u0635 \u0645\u062c\u0645\u0648\u0639\u0627\u062a \u0623\u0641\u0644\u0627\u0645 \u0623\u0648 \u0645\u0633\u0644\u0633\u0644\u0627\u062a \u0623\u0648 \u0623\u0644\u0628\u0648\u0645\u0627\u062a \u0623\u0648 \u0643\u062a\u0628 \u0623\u0648 \u0623\u0644\u0639\u0627\u0628. \u0623\u0636\u063a\u0637 \u0639\u0644\u0649 \u0632\u0631 + \u0644\u0644\u0628\u062f\u0621 \u0628\u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u062c\u0627\u0645\u064a\u0639.", + "MessageNoPlaylistsAvailable": "\u0642\u0648\u0627\u0626\u0645 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u062a\u062a\u064a\u062d \u0644\u0643 \u0625\u0646\u0634\u0627\u0621 \u0642\u0648\u0627\u0626\u0645 \u0645\u0646 \u0648\u0633\u0627\u0626\u0637\u0643 \u0644\u062a\u0634\u063a\u064a\u0644\u0647\u0627 \u0639\u0644\u0649 \u0627\u0644\u062a\u0648\u0627\u0644\u064a. \u0644\u0625\u0636\u0627\u0641\u0629 \u0639\u0646\u0627\u0635\u0631 \u0644\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644\u060c \u0623\u0646\u0642\u0631 \u0628\u0627\u0644\u064a\u0645\u064a\u0646 \u0623\u0648 \u0627\u0644\u0645\u0633 \u0645\u0637\u0648\u0651\u0644\u060c \u062b\u0645 \u0627\u062e\u062a\u0631 \u0625\u0636\u0627\u0641\u0629 \u0644\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644.", + "MessageNoPlaylistItemsAvailable": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0647\u0630\u0647 \u0641\u0627\u0631\u063a\u0629 \u062d\u0627\u0644\u064a\u0627\u064b.", + "ButtonEditOtherUserPreferences": "\u0627\u0636\u0628\u0637 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u062d\u0633\u0627\u0628 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0647\u0630\u0627\u060c \u0648\u0635\u0648\u0631\u062a\u0647 \u0648\u062a\u0641\u0636\u064a\u0644\u0627\u062a\u0647 \u0627\u0644\u0634\u062e\u0635\u064a\u0629.", + "LabelChannelStreamQuality": "\u0627\u0644\u062c\u0648\u062f\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0642\u0646\u0627\u0629 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a:", + "LabelChannelStreamQualityHelp": "\u0641\u064a \u0628\u064a\u0626\u0629 \u0630\u0627\u062a \u0627\u062a\u0635\u0627\u0644 \u0636\u0639\u064a\u0641\u060c \u062a\u0642\u0644\u064a\u0644 \u0627\u0644\u062c\u0648\u062f\u0629 \u0642\u062f \u062a\u062d\u0633\u0651\u0646 \u0641\u0627\u0639\u0644\u064a\u0629 \u062a\u062f\u0641\u0642 \u0639\u0631\u0636 \u0627\u0644\u0641\u064a\u062f\u064a\u0648.", + "OptionBestAvailableStreamQuality": "\u0623\u0641\u0636\u0644 \u0627\u0644\u0645\u0648\u062c\u0648\u062f", + "ChannelSettingsFormHelp": "\u062a\u062b\u0628\u064a\u062b \u0642\u0646\u0648\u0627\u062a \u0625\u0636\u0627\u0641\u064a\u0629 \u0645\u062b\u0644 \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0648\u0641\u064a\u0645\u064a\u0648 \u0645\u0646 \u0643\u062a\u0627\u0644\u0648\u062c \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a.", + "ViewTypeMovies": "\u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "ViewTypeTvShows": "\u0627\u0644\u062a\u0644\u0641\u0627\u0632", + "ViewTypeGames": "\u0627\u0644\u0623\u0644\u0639\u0627\u0628", + "ViewTypeMusic": "\u0627\u0644\u0645\u0648\u0633\u064a\u0642\u0649", + "HeaderOtherDisplaySettings": "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", + "ViewTypeMusicSongs": "\u0627\u0644\u0623\u063a\u0627\u0646\u064a", + "ViewTypeMusicFavorites": "\u0627\u0644\u0645\u0641\u0636\u0644\u0627\u062a", + "ViewTypeMusicFavoriteAlbums": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "ViewTypeMusicFavoriteArtists": "\u0627\u0644\u0641\u0646\u0627\u0646\u0648\u0646 \u0627\u0644\u0645\u0641\u0636\u0644\u0648\u0646", + "ViewTypeMusicFavoriteSongs": "\u0627\u0644\u0623\u063a\u0627\u0646\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "HeaderMyViews": "\u0645\u0634\u0627\u0647\u062f\u0627\u062a\u064a", + "LabelSelectFolderGroups": "\u0627\u062c\u0645\u0639 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0628\u0637\u0631\u064a\u0642\u0629 \u0622\u0644\u064a\u0629 \u0645\u0646 \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0625\u0644\u0649 \u0634\u0627\u0634\u0627\u062a \u0645\u062b\u0644 \u0627\u0644\u0623\u0641\u0644\u0627\u0645 \u0648\u0627\u0644\u0645\u0648\u0633\u064a\u0642\u0649 \u0648\u0627\u0644\u062a\u0644\u0641\u0627\u0632:", + "LabelSelectFolderGroupsHelp": "\u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u063a\u064a\u0631 \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u0629 \u0633\u062a\u0638\u0647\u0631 \u0644\u0648\u062d\u062f\u0647\u0627 \u0641\u064a \u0634\u0627\u0634\u062a\u0647\u0627 \u0627\u0644\u062e\u0627\u0635\u0629.", + "OptionDisplayAdultContent": "\u0623\u0638\u0647\u0631 \u0645\u0648\u0627\u062f \u0644\u0644\u0643\u0628\u0627\u0631 \u0641\u0642\u0637", + "OptionLibraryFolders": "\u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "TitleRemoteControl": "\u0627\u0644\u062a\u062d\u0643\u0645 \u0639\u0646 \u0628\u0639\u062f", + "OptionLatestTvRecordings": "\u0623\u062d\u062f\u062b \u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0633\u062c\u0651\u0644\u0629", + "LabelProtocolInfo": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0628\u0631\u0648\u062a\u0648\u0643\u0648\u0644:", + "LabelProtocolInfoHelp": "\u0627\u0644\u0642\u064a\u0645\u0629 \u0627\u0644\u062a\u064a \u0633\u062a\u0633\u062a\u062e\u062f\u0645 \u0639\u0646\u062f \u0627\u0644\u0631\u062f \u0639\u0644\u0649 \u0637\u0644\u0628 GetProtocolInfo \u0645\u0646 \u0627\u0644\u062c\u0647\u0627\u0632.", + "TabNfoSettings": "\u0623\u0639\u062f\u0627\u062f\u0627\u062a Nfo", + "HeaderKodiMetadataHelp": "\u0623\u0645\u0628\u064a \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u062f\u0639\u0645 \u0630\u0627\u062a\u064a \u0644\u0645\u0644\u0641\u0627\u062a \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0646 \u0635\u064a\u063a\u0629 nfo. \u0644\u062a\u0641\u0639\u064a\u0644 \u0623\u0648 \u0625\u0632\u0627\u0644\u0629 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a nfo\u060c \u0642\u0645 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u062a\u0628\u0648\u064a\u0628\u0629 \u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0648\u0642\u0645 \u0628\u0636\u0628\u0637 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a \u0644\u0635\u064a\u063a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643.", + "LabelKodiMetadataUser": "\u0645\u0632\u0627\u0645\u0646\u0629 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0639 \u0628\u064a\u0627\u0646\u0627\u062a nfo \u0644\u0640:", + "LabelKodiMetadataUserHelp": "\u0641\u0639\u0644 \u0647\u0630\u0647 \u0644\u0625\u0628\u0642\u0627\u0621 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629 \u0645\u062a\u0632\u0627\u0645\u0646\u0629 \u0645\u0639 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0648\u0645\u0644\u0641\u0627\u062a nfo.", + "LabelKodiMetadataDateFormat": "\u062a\u0646\u0633\u064a\u0642 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0635\u062f\u0627\u0631:", + "LabelKodiMetadataDateFormatHelp": "\u062c\u0645\u064a\u0639 \u0627\u0644\u062a\u0648\u0627\u0631\u064a\u062e \u062f\u0627\u062e\u0644 \u0645\u0644\u0641 nfo \u0633\u062a\u064f\u0642\u0631\u0623 \u0648\u062a\u064f\u0643\u062a\u0628 \u0648\u0641\u0642 \u0647\u0630\u0627 \u0627\u0644\u062a\u0646\u0633\u064a\u0642.", + "LabelKodiMetadataSaveImagePaths": "\u0625\u062d\u0641\u0638 \u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u0635\u0648\u0631 \u062f\u0627\u062e\u0644 \u0645\u0644\u0642\u0627\u062a nfo", + "LabelKodiMetadataSaveImagePathsHelp": "\u0647\u0630\u0627 \u0627\u0644\u062e\u064a\u0627\u0631 \u064a\u0646\u0635\u062d \u0628\u0647 \u0625\u0630\u0627 \u0643\u0627\u0646 \u0644\u062f\u064a\u0643 \u0635\u0648\u0631 \u0644\u0627 \u062a\u062a\u0648\u0627\u0641\u0642 \u0645\u0639 \u0627\u0644\u062f\u0644\u064a\u0644 \u0627\u0644\u0625\u0631\u0634\u0627\u062f\u064a \u0644\u0646\u0638\u0627\u0645 Kodi.", + "LabelKodiMetadataEnablePathSubstitution": "\u062a\u0641\u0639\u064a\u0644 \u0625\u0628\u062f\u0627\u0644 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a", + "LabelKodiMetadataEnablePathSubstitutionHelp": "\u0641\u0639\u0644 \u0625\u0628\u062f\u0627\u0644 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u0635\u0648\u0631 \u0645\u0633\u062a\u062e\u062f\u0645\u0627\u064b \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0625\u0628\u062f\u0627\u0644 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0627\u0644\u062e\u0627\u062f\u0645.", + "LabelKodiMetadataEnablePathSubstitutionHelp2": "\u0625\u0637\u0644\u0639 \u0639\u0644\u0649 \u0625\u0628\u062f\u0627\u0644 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a.", + "OptionDisplayChannelsInline": "\u0623\u0638\u0647\u0631 \u0627\u0644\u0642\u0646\u0648\u0627\u062a \u0643\u0645\u062c\u0644\u062f\u0627\u062a \u0648\u0633\u0627\u0626\u0637", + "OptionDisplayChannelsInlineHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0633\u064a\u062a\u0645 \u0639\u0631\u0636 \u0643\u0627\u0641\u0629 \u0627\u0644\u0642\u0646\u0648\u0627\u062a \u0645\u0628\u0627\u0634\u0631\u0629 \u0625\u0644\u0649 \u062c\u0646\u0628 \u0645\u0643\u062a\u0628\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0623\u062e\u0631\u0649. \u0639\u0646\u062f \u0625\u0647\u0645\u0627\u0644\u0647\u0627\u060c \u0641\u0633\u062a\u0639\u0631\u0636 \u062f\u0627\u062e\u0644 \u0645\u062c\u0644\u062f \u0642\u0646\u0648\u0627\u062a \u0645\u0646\u0641\u0635\u0644.", + "LabelDisplayCollectionsView": "\u0623\u0638\u0647\u0631 \u0634\u0627\u0634\u0629 \u0645\u062c\u0627\u0645\u064a\u0639 \u0644\u0625\u0638\u0647\u0627\u0631 \u0645\u062c\u0627\u0645\u064a\u0639 \u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "LabelDisplayCollectionsViewHelp": "\u0647\u0630\u0627 \u0633\u064a\u0646\u0634\u0626 \u0634\u0627\u0634\u0629 \u0645\u0646\u0641\u0635\u0644\u0629 \u0644\u0625\u0638\u0647\u0627\u0631 \u0645\u062c\u0627\u0645\u064a\u0639 \u0627\u0644\u0623\u0641\u0644\u0627\u0645. \u0644\u0625\u0646\u0634\u0627\u0621 \u0645\u062c\u0645\u0648\u0639\u0629\u060c \u0625\u0646\u0642\u0631 \u0628\u0627\u0644\u064a\u0645\u064a\u0646 \u0623\u0648 \u0627\u0644\u0645\u0633 \u0645\u0637\u0648\u0644\u0627\u064b \u0623\u064a \u0641\u064a\u0644\u0645 \u0648\u0627\u062e\u062a\u0631 \"\u0623\u0636\u0641 \u0625\u0644\u0649 \u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629\". ", + "LabelKodiMetadataEnableExtraThumbs": "\u0625\u0646\u0633\u062e extrafanart \u0625\u0644\u0649 extrathumbs", + "LabelKodiMetadataEnableExtraThumbsHelp": "\u0639\u0646\u062f \u0625\u0646\u0632\u0627\u0644 \u0627\u0644\u0635\u0648\u0631 \u0628\u0625\u0645\u0643\u0627\u0646 \u062d\u0641\u0638\u0647\u0627 \u0625\u0644\u0649 extrafanart \u0648 extrathumbs \u0644\u062a\u0643\u0648\u0646 \u0645\u062a\u0648\u0627\u0641\u0642\u0629 \u0645\u0639 \u0645\u0638\u0627\u0647\u0631 Kodi \u0628\u0623\u0642\u0635\u0649 \u062d\u062f.", + "TabServices": "\u0627\u0644\u062e\u062f\u0645\u0627\u062a", + "TabLogs": "\u0627\u0644\u0643\u0634\u0648\u0641\u0627\u062a", + "TabBranding": "\u0648\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c", + "HeaderBrandingHelp": "\u062e\u0635\u0635 \u0648\u0627\u062c\u0647\u0629 \u0623\u0645\u0628\u064a \u0644\u062a\u0644\u0627\u0626\u0645 \u0627\u062d\u062a\u0627\u062c\u0627\u062a \u0645\u062c\u0645\u0648\u0639\u062a\u0643 \u0623\u0648 \u0645\u0646\u0638\u0645\u062a\u0643.", + "LabelLoginDisclaimer": "\u0625\u062e\u0644\u0627\u0621 \u0645\u0633\u0624\u0648\u0644\u064a\u0629 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644:", + "LabelLoginDisclaimerHelp": "\u0647\u0630\u0647 \u0633\u062a\u0639\u0631\u0636 \u0623\u0633\u0641\u0644 \u0634\u0627\u0634\u0629 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644.", + "OptionList": "\u0627\u0644\u0642\u0627\u0626\u0645\u0629", + "TabDashboard": "\u0644\u0648\u062d\u0629 \u0627\u0644\u0639\u062f\u0627\u062f\u0627\u062a", + "TitleServer": "\u0627\u0644\u062e\u0627\u062f\u0645", + "LabelCache": "\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0643\u0627\u0634\u0629", + "LabelLogs": "\u0627\u0644\u0633\u062c\u0644\u0627\u062a \u0627\u0644\u0643\u0634\u0641\u064a\u0629:", + "LabelMetadata": "\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a:", + "LabelTranscodingTemporaryFiles": "\u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0624\u0642\u062a\u0629 \u0644\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a:", + "HeaderLatestMusic": "\u0623\u062d\u062f\u062b \u0627\u0644\u0645\u0648\u0633\u0642\u0649", + "HeaderBranding": "\u0648\u0633\u0648\u0645\u0627\u062a \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c", + "HeaderApiKeys": "\u0645\u0641\u0627\u062a\u064a\u062d api", + "HeaderApiKeysHelp": "\u0627\u0644\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629 \u062a\u062d\u062a\u0627\u062c \u0623\u0646 \u062a\u0645\u062a\u0644\u0643 \u0645\u0641\u062a\u0627\u062d api \u0644\u0643\u064a \u062a\u062a\u0635\u0644 \u0628\u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a. \u0647\u0630\u0647 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u062a\u064f\u0635\u062f\u0631 \u0639\u0646 \u0637\u0631\u064a\u0642 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a\u060c \u0623\u0648 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0645\u0646\u062d \u0627\u0644\u062a\u0637\u0628\u064a\u0642 \u0645\u0641\u062a\u0627\u062d\u0627\u064b \u0623\u0635\u062f\u0631 \u064a\u062f\u0648\u064a\u0627\u064b.", + "HeaderApiKey": "\u0645\u0641\u062a\u0627\u062d api", + "HeaderApp": "\u0627\u0644\u062a\u0637\u0628\u064a\u0642", + "HeaderDevice": "\u0627\u0644\u062c\u0647\u0627\u0632", + "HeaderUser": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", + "HeaderDateIssued": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0635\u062f\u0627\u0631", + "HeaderHttpHeaders": "\u0631\u0624\u0648\u0633 http", + "HeaderIdentificationHeader": "\u0631\u0623\u0633 \u0627\u0644\u062a\u0639\u0631\u064a\u0641\u0629", + "LabelValue": "\u0627\u0644\u0642\u064a\u0645\u0629:", + "LabelMatchType": "\u0648\u0641\u0651\u0642 \u0627\u0644\u0646\u0648\u0639:", + "OptionEquals": "\u062a\u0633\u0627\u0648\u064a", "OptionRegex": "Regex", "OptionSubstring": "Substring", - "TabView": "View", - "TabSort": "Sort", - "TabFilter": "Filter", - "ButtonView": "View", - "LabelPageSize": "Item limit:", - "LabelPath": "Path:", - "LabelView": "View:", - "TabUsers": "Users", - "HeaderFeatures": "Features", - "HeaderAdvanced": "Advanced", - "ButtonSync": "Sync", - "TabScheduledTasks": "Scheduled Tasks", - "HeaderChapters": "Chapters", - "HeaderResumeSettings": "Resume Settings", - "TabSync": "Sync", - "TitleUsers": "Users", - "LabelProtocol": "Protocol:", + "TabView": "\u0639\u0631\u0636", + "TabFilter": "\u062a\u0631\u0634\u064a\u062d", + "ButtonView": "\u0639\u0631\u0636", + "LabelPageSize": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0644\u0639\u0646\u0627\u0635\u0631:", + "LabelPath": "\u0627\u0644\u0645\u0633\u0627\u0631", + "LabelView": "\u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0627\u062a:", + "TabUsers": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0648\u0646", + "HeaderFeatures": "\u0627\u0644\u0645\u0648\u0627\u0635\u0642\u0627\u062a", + "HeaderAdvanced": "\u0645\u062a\u0642\u062f\u0645\u0629", + "ButtonSync": "\u0645\u0632\u0627\u0645\u0646\u0629", + "TabScheduledTasks": "\u0627\u0644\u0645\u0647\u0627\u0645 \u0627\u0644\u0645\u062c\u062f\u0648\u0644\u0629", + "HeaderChapters": "\u0627\u0644\u0623\u0628\u0648\u0627\u0628", + "HeaderResumeSettings": "\u0627\u0633\u062a\u0626\u0646\u0627\u0641 \u0627\u0644\u0636\u0628\u0637", + "TabSync": "\u0645\u0632\u0627\u0645\u0646\u0629", + "TitleUsers": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0648\u0646", + "LabelProtocol": "\u0627\u0644\u0628\u0631\u0648\u062a\u0648\u0643\u0648\u0644:", "OptionProtocolHttp": "Http", - "OptionProtocolHls": "Http Live Streaming", - "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", - "TabPlaylists": "Playlists", - "ButtonClose": "Close", - "LabelAllLanguages": "All languages", - "HeaderBrowseOnlineImages": "Browse Online Images", - "LabelSource": "Source:", - "OptionAll": "All", - "LabelImage": "Image:", - "HeaderImages": "Images", - "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", - "HeaderAddUpdateImage": "Add\/Update Image", + "OptionProtocolHls": "\u0627\u0644\u0628\u062a \u0627\u0644\u062d\u064a \u0639\u0628\u0631 http", + "LabelContext": "\u0627\u0644\u0633\u064a\u0627\u0642:", + "TabPlaylists": "\u0642\u0648\u0627\u0626\u0645 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "ButtonClose": "\u0625\u063a\u0644\u0627\u0642", + "LabelAllLanguages": "\u062c\u0645\u064a\u0639 \u0627\u0644\u0644\u063a\u0627\u062a", + "HeaderBrowseOnlineImages": "\u0627\u0633\u062a\u063a\u0631\u0627\u0636 \u0635\u0648\u0631 \u0645\u0646 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a", + "LabelSource": "\u0627\u0644\u0645\u0635\u062f\u0631:", + "OptionAll": "\u0627\u0644\u062c\u0645\u064a\u0639", + "LabelImage": "\u0627\u0644\u0635\u0648\u0631:", + "HeaderImages": "\u0627\u0644\u0635\u0648\u0631", + "HeaderBackdrops": "\u0627\u0644\u062e\u0644\u0641\u064a\u0627\u062a", + "HeaderAddUpdateImage": "\u0625\u0636\u0627\u0641\u0629\/\u062a\u062d\u062f\u064a\u062b \u0635\u0648\u0631\u0629", "LabelDropImageHere": "\u0627\u0633\u0642\u0627\u0637 \u0627\u0644\u0635\u0648\u0631\u0629 \u0647\u0646\u0627", - "LabelJpgPngOnly": "JPG\/PNG only", - "LabelImageType": "Image type:", - "OptionPrimary": "Primary", - "OptionArt": "Art", - "OptionBox": "Box", - "OptionBoxRear": "Box rear", - "OptionDisc": "Disc", - "OptionIcon": "Icon", - "OptionLogo": "Logo", - "OptionMenu": "Menu", - "OptionScreenshot": "Screenshot", - "OptionLocked": "Locked", - "OptionUnidentified": "Unidentified", - "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", - "OptionSeason0": "Season 0", - "LabelReport": "Report:", - "OptionReportSongs": "Songs", - "OptionReportSeries": "Series", - "OptionReportSeasons": "Seasons", - "OptionReportTrailers": "Trailers", - "OptionReportMusicVideos": "Music videos", - "OptionReportMovies": "Movies", - "OptionReportHomeVideos": "Home videos", - "OptionReportGames": "Games", - "OptionReportEpisodes": "Episodes", - "OptionReportCollections": "Collections", - "OptionReportBooks": "Books", - "OptionReportArtists": "Artists", - "OptionReportAlbums": "Albums", - "ButtonMore": "More", - "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", - "PluginInstalledWithName": "{0} was installed", - "PluginUpdatedWithName": "{0} was updated", - "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", - "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", - "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", - "LabelRunningTimeValue": "Running time: {0}", - "LabelIpAddressValue": "Ip address: {0}", - "UserLockedOutWithName": "User {0} has been locked out", - "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", - "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", - "UserDeletedWithName": "User {0} has been deleted", - "MessageServerConfigurationUpdated": "Server configuration has been updated", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageApplicationUpdated": "Emby Server has been updated", - "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", - "ProviderValue": "Provider: {0}", - "HeaderRecentActivity": "Recent Activity", - "HeaderPeople": "People", - "HeaderDownloadPeopleMetadataFor": "Download biography and images for:", - "OptionComposers": "Composers", - "OptionOthers": "Others", - "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", - "ViewTypeFolders": "Folders", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeLiveTvChannels": "Channels", - "LabelEasyPinCode": "Easy pin code:", - "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", - "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", - "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", - "HeaderPassword": "Password", - "HeaderViewOrder": "View Order", - "ButtonResetEasyPassword": "Reset easy pin code", - "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps", - "HeaderPersonInfo": "Person Info", - "HeaderConfirmDeletion": "Confirm Deletion", - "LabelAlbumArtist": "Album artist:", - "LabelAlbumArtists": "Album artists:", - "LabelAlbum": "Album:", - "LabelCommunityRating": "Community rating:", - "LabelAwardSummary": "Award summary:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelAirDate": "Air days:", - "LabelAirTime:": "Air time:", - "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", - "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", - "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", - "HeaderGenres": "Genres", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderStudios": "Studios", - "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", - "OptionNoTrailer": "No Trailer", - "ButtonPurchase": "Purchase", - "OptionActor": "Actor", - "OptionComposer": "Composer", - "OptionDirector": "Director", - "OptionProducer": "Producer", - "OptionWriter": "Writer", - "LabelAirDays": "Air days:", - "LabelAirTime": "Air time:", - "HeaderMediaInfo": "Media Info", - "HeaderPhotoInfo": "Photo Info", - "HeaderInstall": "Install", - "LabelSelectVersionToInstall": "Select version to install:", - "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere", - "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.", - "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.", - "HeaderReviews": "Reviews", - "HeaderDeveloperInfo": "Developer Info", - "HeaderRevisionHistory": "Revision History", - "ButtonViewWebsite": "View website", - "HeaderXmlSettings": "Xml Settings", - "HeaderXmlDocumentAttributes": "Xml Document Attributes", - "HeaderXmlDocumentAttribute": "Xml Document Attribute", - "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", - "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", - "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", - "LabelConnectGuestUserName": "Their Emby username or email address:", - "LabelConnectUserName": "Emby username or email address:", - "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.", - "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect", - "LabelExternalPlayers": "External players:", - "LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.", - "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.", - "HeaderSubtitleProfile": "Subtitle Profile", - "HeaderSubtitleProfiles": "Subtitle Profiles", - "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", - "LabelFormat": "Format:", - "LabelMethod": "Method:", - "LabelDidlMode": "Didl mode:", - "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionResElement": "res element", - "OptionEmbedSubtitles": "Embed within container", - "OptionExternallyDownloaded": "External download", - "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", - "LabelSubtitleFormatHelp": "Example: srt", - "ButtonLearnMore": "Learn more", - "TabPlayback": "Playback", - "HeaderAudioSettings": "Audio Settings", - "HeaderSubtitleSettings": "Subtitle Settings", - "TabCinemaMode": "Cinema Mode", - "TitlePlayback": "Playback", - "LabelEnableCinemaModeFor": "Enable cinema mode for:", - "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "OptionTrailersFromMyMovies": "Include trailers from movies in my library", - "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", - "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", - "LabelEnableIntroParentalControl": "Enable smart parental control", - "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", - "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.", - "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", - "LabelCustomIntrosPath": "Custom intros path:", - "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", - "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", - "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", - "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", - "CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", - "LabelEnableCinemaMode": "Enable cinema mode", - "HeaderCinemaMode": "Cinema Mode", - "LabelDateAddedBehavior": "Date added behavior for new content:", - "OptionDateAddedImportTime": "Use date scanned into the library", - "OptionDateAddedFileTime": "Use file creation date", - "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", - "LabelNumberTrailerToPlay": "Number of trailers to play:", - "TitleDevices": "Devices", - "TabCameraUpload": "Camera Upload", - "TabDevices": "Devices", - "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.", - "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", - "LabelCameraUploadPath": "Camera upload path:", - "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", - "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", - "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", - "LabelCustomDeviceDisplayName": "Display name:", - "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", - "HeaderInviteUser": "Invite User", - "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.", - "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.", - "ButtonSendInvitation": "Send Invitation", - "HeaderSignInWithConnect": "Sign in with Emby Connect", - "HeaderGuests": "Guests", - "HeaderPendingInvitations": "Pending Invitations", - "TabParentalControl": "Parental Control", - "HeaderAccessSchedule": "Access Schedule", - "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", - "LabelAccessDay": "Day of week:", - "LabelAccessStart": "Start time:", - "LabelAccessEnd": "End time:", - "HeaderSchedule": "Schedule", - "OptionEveryday": "Every day", - "OptionWeekdays": "Weekdays", - "OptionWeekends": "Weekends", - "MessageProfileInfoSynced": "User profile information synced with Emby Connect.", - "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account", - "ButtonTrailer": "Trailer", - "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "HeaderNewUsers": "New Users", - "ButtonSignUp": "Sign up", - "ButtonForgotPassword": "Forgot password", - "OptionDisableUserPreferences": "Disable access to user preferences", - "OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.", - "HeaderSelectServer": "Select Server", - "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "TitleNewUser": "New User", - "ButtonConfigurePassword": "Configure Password", - "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderLatestItems": "Latest Items", - "LabelSelectLastestItemsFolders": "Include media from the following sections in Latest Items", - "HeaderShareMediaFolders": "Share Media Folders", - "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", - "HeaderInvitations": "Invitations", - "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", - "HeaderForgotPassword": "Forgot Password", - "TitlePasswordReset": "Password Reset", - "LabelPasswordRecoveryPinCode": "Pin code:", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRatings": "Parental Ratings", - "HeaderVideoTypes": "Video Types", - "HeaderYears": "Years", - "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", - "LabelBlockContentWithTags": "Block content with tags:", - "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", - "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", - "TabActivity": "Activity", - "TitleSync": "Sync", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowContentDownloading": "Allow media downloading", - "NameSeasonUnknown": "Season Unknown", - "NameSeasonNumber": "Season {0}", - "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", - "TabJobs": "Jobs", - "TabSyncJobs": "Sync Jobs", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", - "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", - "OptionTVMovies": "TV Movies", - "HeaderUpcomingMovies": "Upcoming Movies", - "HeaderUpcomingSports": "Upcoming Sports", - "HeaderUpcomingPrograms": "Upcoming Programs", - "ButtonMoreItems": "More", - "OptionEnableTranscodingThrottle": "Enable throttling", - "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", - "OptionAllowSyncTranscoding": "Allow syncing that requires transcoding", - "HeaderPlayback": "Media Playback", - "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", - "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", - "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.", - "TabStreaming": "Streaming", - "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle.", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", - "OptionEnableFullSpeedConversion": "Enable full speed conversion", - "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "HeaderPlaylists": "Playlists", - "HeaderViewStyles": "View Styles", - "TabPhotos": "Photos", - "TabVideos": "Videos", - "HeaderWelcomeToEmby": "Welcome to Emby", - "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", - "ButtonSkip": "Skip", - "TextConnectToServerManually": "Connect to server manually", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "ButtonConnect": "Connect", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", - "LabelServerPort": "Port:", - "HeaderNewServer": "New Server", - "ButtonChangeServer": "Change Server", - "HeaderConnectToServer": "Connect to Server", - "OptionReportList": "List View", - "OptionReportStatistics": "Statistics", - "OptionReportGrouping": "Grouping", - "HeaderExport": "Export", - "HeaderColumns": "Columns", - "ButtonReset": "Reset", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEmail": "Email:", - "LabelUsername": "Username:", - "HeaderSignUp": "Sign Up", - "LabelPasswordConfirm": "Password (confirm):", - "ButtonAddServer": "Add Server", - "TabHomeScreen": "Home Screen", - "HeaderDisplay": "Display", - "HeaderNavigation": "Navigation", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", - "OptionOtherTrailers": "Include trailers from older movies", - "HeaderOverview": "Overview", - "HeaderShortOverview": "Short Overview", - "HeaderType": "Type", - "HeaderSeverity": "Severity", - "OptionReportActivities": "Activities Log", - "HeaderTunerDevices": "Tuner Devices", - "HeaderAddDevice": "Add Device", - "HeaderExternalServices": "External Services", - "LabelTunerIpAddress": "Tuner IP Address:", - "TabExternalServices": "External Services", - "HeaderGuideProviders": "Guide Providers", - "AddGuideProviderHelp": "Add a source for TV Guide information", - "LabelZipCode": "Zip Code:", - "GuideProviderSelectListings": "Select Listings", - "GuideProviderLogin": "Login", - "LabelLineup": "Lineup:", - "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", - "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", - "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", - "ButtonRepeat": "Repeat", - "LabelEnableThisTuner": "Enable this tuner", - "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", - "HeaderImagePrimary": "Primary", - "HeaderImageBackdrop": "Backdrop", - "HeaderImageLogo": "Logo", - "HeaderUserPrimaryImage": "User Image", - "ButtonProfile": "Profile", - "ButtonProfileHelp": "Set your profile image and password.", - "HeaderHomeScreenSettings": "Home Screen settings", - "HeaderProfile": "Profile", - "HeaderLanguage": "Language", - "LabelTranscodingThreadCount": "Transcoding thread count:", - "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.", - "OptionMax": "Max", - "LabelSyncPath": "Synced content path:", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", - "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", - "HeaderUpcomingForKids": "Upcoming for Kids", - "HeaderSetupLiveTV": "Setup Live TV", - "LabelTunerType": "Tuner type:", - "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", - "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", - "HeaderSetupTVGuide": "Setup TV Guide", - "LabelDataProvider": "Data provider:", - "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "HeaderSubtitles": "Subtitles", - "HeaderVideos": "Videos", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "ButtonServerDashboard": "Server Dashboard", - "HeaderAdmin": "Admin", - "ButtonSignOut": "Sign out", - "HeaderCameraUpload": "Camera Upload", - "SelectCameraUploadServers": "Upload camera photos to the following servers:", - "ButtonClear": "Clear", - "LabelFolder": "Folder:", - "HeadersFolders": "Folders", - "LabelDisplayName": "Display name:", - "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", - "LabelCodecIntrosPath": "Codec intros path:", - "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", - "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", - "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", - "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", - "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", - "OptionDownloadImagesInAdvance": "Download images in advance", + "LabelJpgPngOnly": "\u0635\u064a\u063a\u0629 JPG\/PNG \u0641\u0642\u0637", + "LabelImageType": "\u0635\u064a\u063a\u0629 \u0627\u0644\u0635\u0648\u0631\u0629:", + "OptionPrimary": "\u0627\u0644\u0623\u0648\u0644\u064a\u0629", + "OptionArt": "\u0641\u0646\u064a\u0627\u062a", + "OptionBox": "\u0627\u0644\u0635\u0646\u062f\u0648\u0642", + "OptionBoxRear": "\u062e\u0644\u0641\u064a\u0629 \u0627\u0644\u0635\u0646\u062f\u0648\u0642", + "OptionDisc": "\u0627\u0644\u0642\u0631\u0635", + "OptionIcon": "\u0627\u0644\u0623\u064a\u0642\u0648\u0646\u0629", + "OptionLogo": "\u0627\u0644\u0644\u0648\u063a\u0648", + "OptionMenu": "\u0627\u0644\u0642\u0627\u0626\u0645\u0629", + "OptionScreenshot": "\u0625\u0644\u062a\u0642\u0627\u0637 \u0627\u0644\u0634\u0627\u0634\u0629", + "OptionLocked": "\u0645\u0642\u0641\u0644\u0629", + "OptionUnidentified": "\u063a\u064a\u0631 \u0645\u0639\u0631\u0651\u0641\u0629", + "OptionMissingParentalRating": "\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0623\u0628\u0648\u064a\u0629 \u0645\u0641\u0642\u0648\u062f\u0629", + "OptionSeason0": "\u0627\u0644\u0645\u0648\u0633\u0645 \u0631\u0642\u0645 \u0635\u0641\u0631", + "LabelReport": "\u0627\u0644\u062a\u0642\u0631\u064a\u0631:", + "OptionReportSongs": "\u0627\u0644\u0623\u063a\u0627\u0646\u064a", + "OptionReportSeries": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a", + "OptionReportSeasons": "\u0627\u0644\u0645\u0648\u0627\u0633\u0645", + "OptionReportTrailers": "\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629", + "OptionReportMusicVideos": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0629", + "OptionReportMovies": "\u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "OptionReportHomeVideos": "\u0627\u0644\u0642\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u0645\u0646\u0632\u0644\u064a\u0629", + "OptionReportGames": "\u0627\u0644\u0623\u0644\u063a\u0627\u0628", + "OptionReportEpisodes": "\u0627\u0644\u062d\u0644\u0642\u0627\u062a", + "OptionReportCollections": "\u0627\u0644\u0645\u062c\u0627\u0645\u064a\u0639", + "OptionReportBooks": "\u0627\u0644\u0643\u062a\u0628", + "OptionReportArtists": "\u0627\u0644\u0641\u0646\u0627\u0646\u0648\u0646", + "OptionReportAlbums": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a", + "ButtonMore": "\u0627\u0644\u0645\u0632\u064a\u062f", + "HeaderActivity": "\u0627\u0644\u0623\u0646\u0634\u0637\u0629", + "PluginInstalledWithName": "\u062a\u0645 \u062a\u062b\u0628\u064a\u062b {0}", + "PluginUpdatedWithName": "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b {0}", + "PluginUninstalledWithName": "\u062a\u0645\u062a \u0625\u0632\u0627\u0644\u0629 {0}", + "UserOnlineFromDevice": "{0} \u0642\u064a\u062f \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0645\u0646 {1}", + "UserOfflineFromDevice": "{0} \u0642\u0637\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0645\u0646 {1}", + "LabelRunningTimeValue": "\u0625\u062c\u0645\u0627\u0644\u064a \u0648\u0642\u062a \u0627\u0644\u062a\u0634\u063a\u064a\u0644: {0}", + "LabelIpAddressValue": "\u0631\u0642\u0645 \u0627\u0644\u0622\u064a\u0628\u064a: {0}", + "UserLockedOutWithName": "\u062a\u0645 \u0625\u0642\u0641\u0627\u0644 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 {0}", + "UserConfigurationUpdatedWithName": "\u0625\u0639\u062f\u0627\u062f \u0627\u0644\u0645\u0633\u062a\u062e\u062a\u062f\u0645 {0} \u062a\u0645 \u062a\u062d\u062f\u064a\u062b\u0647\u0627", + "UserCreatedWithName": "\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 {0}", + "UserDeletedWithName": "\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 {0}", + "MessageServerConfigurationUpdated": "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645", + "MessageNamedServerConfigurationUpdatedWithValue": "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645 \u0645\u0646 \u0642\u0633\u0645 {0}", + "MessageApplicationUpdated": "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a", + "UserDownloadingItemWithValues": "{0} \u064a\u0642\u0648\u0645 \u0628\u0625\u0646\u0632\u0627\u0644 {1}", + "ProviderValue": "\u0647\u0648\u064a\u0629 \u0627\u0644\u0645\u0642\u062f\u0645: {0}", + "HeaderRecentActivity": "\u0627\u0644\u0623\u0646\u0634\u0637\u0629 \u0627\u0644\u0623\u062e\u064a\u0631\u0629", + "HeaderPeople": "\u0627\u0644\u0646\u0627\u0633", + "HeaderDownloadPeopleMetadataFor": "\u0625\u0646\u0632\u0627\u0644 \u0627\u0644\u0633\u064a\u0631 \u0627\u0644\u0630\u0627\u062a\u064a\u0629 \u0648\u0627\u0644\u0635\u0648\u0631 \u0644\u0640:", + "OptionComposers": "\u0627\u0644\u0645\u0644\u062d\u0646\u0648\u0646", + "OptionOthers": "\u0622\u062e\u0631\u0648\u0646", + "HeaderDownloadPeopleMetadataForHelp": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a \u0627\u0644\u0623\u062e\u0631\u0649 \u0633\u064a\u062a\u064a\u062d \u0639\u0631\u0636 \u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0644\u0643\u0646\u0647 \u0633\u064a\u0646\u062a\u062c \u0639\u0646 \u0625\u0628\u0637\u0627\u0621 \u062a\u0645\u0634\u064a\u0637 \u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a.", + "ViewTypeFolders": "\u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a", + "OptionDisplayFolderView": "\u0627\u0633\u062a\u0639\u0631\u0627\u0636 \u0627\u0644\u0645\u062c\u0644\u062f \u0643\u0645\u062c\u0644\u062f \u0648\u0633\u0627\u0626\u0637 \u0628\u0633\u064a\u0637\u0629", + "OptionDisplayFolderViewHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0625\u0646 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0633\u062a\u0639\u0631\u0636 \u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u0625\u0644\u0649 \u062c\u0627\u0646\u0628 \u0625\u0638\u0647\u0627\u0631 \u0645\u0643\u062a\u0628\u0629 \u0648\u0633\u0627\u0626\u0637\u0643. \u0633\u064a\u0643\u0648\u0646 \u0630\u0644\u0643 \u0645\u0641\u064a\u062f \u0625\u0646 \u0643\u0646\u062a \u062a\u062d\u0628 \u0623\u0646 \u062a\u0633\u062a\u0639\u0631\u0636 \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u0643\u0645\u062c\u0644\u062f\u0627\u062a \u0639\u0631\u0636 \u0628\u0633\u064a\u0637\u0629", + "ViewTypeLiveTvRecordingGroups": "\u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0633\u062c\u0644\u0629", + "ViewTypeLiveTvChannels": "\u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "LabelEasyPinCode": "\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0627\u0644\u0645\u064a\u0633\u0631:", + "EasyPasswordHelp": "\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0627\u0644\u0645\u064a\u0633\u0631\u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u064a\u0645\u0643\u0646\u0643 \u0645\u0646 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0625\u0644\u0649 \u062e\u0627\u062f\u0645 \u0645\u0643\u062a\u0628\u062a\u0643\u060c \u0639\u0628\u0631 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0639\u0644\u0649 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0623\u0648 \u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0644\u0649 \u062d\u0633\u0627\u0628\u0643 \u0641\u064a \u0627\u0644\u0634\u0628\u0643\u0629 \u0627\u0644\u062f\u0627\u062e\u0644\u064a\u0629.", + "LabelInNetworkSignInWithEasyPassword": "\u062a\u0641\u0639\u064a\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0645\u0646 \u0627\u0644\u0634\u0628\u0643\u0629 \u0627\u0644\u062f\u0627\u062e\u0644\u064a\u0629 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0627\u0644\u0645\u064a\u0633\u0631", + "LabelInNetworkSignInWithEasyPasswordHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0633\u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0627\u0644\u0645\u064a\u0633\u0631 \u0644\u0644\u062f\u062e\u0648\u0644 \u0625\u0644\u0649 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0639\u0628\u0631 \u0634\u0628\u0643\u062a\u0643 \u0627\u0644\u062f\u0627\u062e\u0644\u064a\u0629. \u0623\u0645\u0627 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643 \u0641\u0644\u0646 \u062a\u062d\u062a\u0627\u062c\u0647\u0627 \u0625\u0644\u0627 \u0639\u0646\u062f\u0645\u0627 \u062a\u0643\u0648\u0646 \u0639\u0644\u0649 \u0634\u0628\u0643\u0629 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a \u0628\u0639\u064a\u062f\u0627\u064b \u0639\u0646 \u0645\u0643\u0627\u0646\u0643. \u0625\u0646 \u062a\u0631\u0643 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0641\u0627\u0631\u063a\u0627\u064b \u0641\u0644\u0646 \u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0625\u062f\u062e\u0627\u0644 \u0634\u064a\u0621 \u0644\u0644\u062f\u062e\u0648\u0644 \u0645\u0646 \u062f\u0627\u062e\u0644 \u0627\u0644\u0634\u0628\u0643\u0629.", + "HeaderPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", + "HeaderViewOrder": "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0637\u0644\u0628", + "ButtonResetEasyPassword": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0627\u0644\u0645\u064a\u0633\u0631", + "LabelSelectUserViewOrder": "\u0627\u062e\u062a\u0631 \u0627\u0644\u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0630\u064a \u0633\u062a\u0638\u0647\u0631 \u0639\u0644\u064a\u0647 \u0627\u0644\u0634\u0627\u0634\u0627\u062a \u062f\u0627\u062e\u0644 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a", + "HeaderPersonInfo": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0634\u062e\u0635", + "HeaderConfirmDeletion": "\u062a\u0623\u0643\u064a\u062f \u0627\u0644\u062d\u0630\u0641", + "LabelAlbumArtist": "\u0641\u0646\u0627\u0646 \u0627\u0644\u0623\u0644\u0628\u0648\u0645:", + "LabelAlbumArtists": "\u0641\u0646\u0627\u0646\u0648 \u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a:", + "LabelAlbum": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645", + "LabelCommunityRating": "\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0645\u062c\u062a\u0645\u0639:", + "LabelAwardSummary": "\u0645\u0644\u062e\u0635 \u0627\u0644\u062c\u0648\u0627\u0626\u0632:", + "LabelReleaseDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0635\u062f\u0627\u0631", + "LabelEndDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621", + "LabelAirDate": "\u062a\u0648\u0627\u0631\u064a\u062e \u0627\u0644\u0628\u062b:", + "LabelAirTime:": "\u0648\u0642\u062a \u0627\u0644\u0628\u062b:", + "LabelRuntimeMinutes": "\u0645\u062f\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 (\u0628\u0627\u0644\u062f\u0642\u0627\u0626\u0642):", + "HeaderSpecialEpisodeInfo": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u062d\u0644\u0642\u0629 \u0627\u0644\u062e\u0627\u0635\u0629", + "LabelDisplaySpecialsWithinSeasons": "\u0623\u0638\u0647\u0631 \u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0641\u064a \u0627\u0644\u0645\u0648\u0627\u0633\u0645 \u0627\u0644\u062a\u064a \u0628\u062b\u062a \u0641\u064a\u0647\u0627", + "HeaderGenres": "\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "HeaderPlotKeywords": "\u0643\u0644\u0645\u0627\u062a \u0645\u0641\u062a\u0627\u062d\u064a\u0629 \u0644\u0644\u062d\u0628\u0643\u0629 \u0627\u0644\u062f\u0631\u0627\u0645\u064a\u0629", + "HeaderStudios": "\u0627\u0644\u0623\u0633\u062a\u0648\u062f\u064a\u0648\u0647\u0627\u062a", + "HeaderTags": "\u0627\u0644\u0628\u0637\u0627\u0642\u0627\u062a", + "OptionNoTrailer": "\u0644\u0627 \u064a\u0648\u062c\u062f \u0639\u0631\u0636 \u0625\u0639\u0644\u0627\u0646\u064a", + "ButtonPurchase": "\u0634\u0631\u0627\u0621", + "OptionActor": "\u0627\u0644\u0645\u0645\u062b\u0644", + "OptionComposer": "\u0627\u0644\u0645\u0644\u062d\u0646", + "OptionDirector": "\u0627\u0644\u0645\u062e\u0631\u062c", + "OptionProducer": "\u0627\u0644\u0645\u0646\u062a\u062c", + "LabelAirDays": "\u0623\u064a\u0627\u0645 \u0627\u0644\u0628\u062b:", + "LabelAirTime": "\u0648\u0642\u062a \u0627\u0644\u0628\u062b:", + "HeaderMediaInfo": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0648\u0633\u064a\u0637\u0629", + "HeaderPhotoInfo": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0635\u0648\u0631\u0629", + "HeaderInstall": "\u062a\u062b\u0628\u064a\u062a", + "LabelSelectVersionToInstall": "\u0625\u062e\u062a\u0631 \u0627\u0644\u0625\u0635\u062f\u0627\u0631 \u0644\u0644\u062a\u062b\u0628\u064a\u062a", + "LinkLearnMoreAboutSubscription": "\u0625\u0639\u0631\u0641 \u0627\u0644\u0645\u0632\u064a\u062f \u0639\u0646 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632", + "MessagePluginRequiresSubscription": "\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u062d\u0642 \u064a\u062a\u0637\u0644\u0628 \u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0633\u0627\u0631\u064a \u0627\u0644\u0645\u0641\u0639\u0648\u0644 \u0628\u0639\u062f 14 \u064a\u0648\u0645 \u0645\u0646 \u0627\u0644\u0641\u062a\u0631\u0629 \u0627\u0644\u062a\u062c\u0631\u064a\u0628\u064a\u0629 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629.", + "MessagePremiumPluginRequiresMembership": "\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u062d\u0642 \u064a\u062a\u0637\u0644\u0642 \u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0633\u0627\u0631\u064a \u0627\u0644\u0645\u0641\u0639\u0648\u0644 \u0644\u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0634\u0631\u0627\u0621\u0647 \u0628\u0639\u062f 14 \u064a\u0648\u0645 \u0645\u0646 \u0627\u0644\u0641\u062a\u0631\u0629 \u0627\u0644\u062a\u062c\u0631\u064a\u0628\u064a\u0629 \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629.", + "HeaderReviews": "\u0627\u0644\u062a\u0642\u064a\u064a\u0645\u0627\u062a \u0627\u0644\u0645\u0643\u062a\u0648\u0628\u0629", + "HeaderDeveloperInfo": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0637\u0648\u0631", + "HeaderRevisionHistory": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0627\u062a", + "ButtonViewWebsite": "\u0623\u0646\u0638\u0631 \u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", + "HeaderXmlSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a xml", + "HeaderXmlDocumentAttributes": "\u0633\u0645\u0627\u062a \u0645\u0633\u062a\u0646\u062f xml", + "HeaderXmlDocumentAttribute": "\u0633\u0645\u0627\u062a \u0645\u0633\u062a\u0646\u062f xml", + "XmlDocumentAttributeListHelp": "\u0647\u0630\u0647 \u0627\u0644\u0633\u0645\u0627\u062a \u062a\u0646\u0637\u0628\u0642 \u0639\u0644\u0649 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u062c\u0630\u0631\u064a\u0629 \u0644\u0643\u0644 \u0631\u062f xml.", + "OptionSaveMetadataAsHidden": "\u062d\u0641\u0638 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0648\u0627\u0644\u0635\u0648\u0631 \u0643\u0645\u0644\u0641\u0627\u062a \u0645\u062e\u0641\u064a\u0629", + "LabelExtractChaptersDuringLibraryScan": "\u0627\u0633\u062a\u062e\u0644\u0635 \u0635\u0648\u0631 \u0627\u0644\u0623\u0628\u0648\u0627\u0628 \u0623\u062b\u0646\u0627\u0621 \u062a\u0645\u0634\u064a\u0637 \u0627\u0644\u0645\u0643\u062a\u0628\u0629", + "LabelExtractChaptersDuringLibraryScanHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0625\u0646 \u0635\u0648\u0631 \u0627\u0644\u0623\u0628\u0648\u0627\u0628 \u0633\u062a\u064f\u0633\u062a\u062e\u0644\u0635 \u0639\u0646\u062f\u0645\u0627 \u062a\u062f\u0631\u062c \u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0623\u062b\u0646\u0627\u0621 \u062a\u0645\u0634\u064a\u0637 \u0627\u0644\u0645\u0643\u062a\u0628\u0629. \u0639\u0646\u062f \u0639\u062f\u0645 \u0627\u0644\u062a\u0641\u0639\u064a\u0644 \u0641\u0625\u0646 \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u0633\u062a\u062e\u0644\u0627\u0635 \u0633\u062a\u0643\u0648\u0646 \u0645\u062d\u0635\u0648\u0631\u0629 \u0623\u062b\u0646\u0627\u0621 \u0645\u0647\u0645\u0629 \u0635\u0648\u0631 \u0627\u0644\u0623\u0628\u0648\u0627\u0628 \u0627\u0644\u0645\u062c\u062f\u0648\u0644\u0629\u060c \u0645\u0627 \u064a\u0633\u0645\u062d \u0644\u0639\u0645\u0644\u064a\u0629 \u062a\u0645\u0634\u064a\u0637 \u0627\u0644\u0645\u0643\u062a\u0628\u0629 \u0623\u0646 \u062a\u0646\u062a\u0647\u064a \u0628\u0635\u0648\u0631\u0629 \u0623\u0633\u0631\u0639.", + "LabelConnectGuestUserName": "\u0627\u0633\u0645 \u0645\u0633\u062a\u062e\u062f\u0645 \u0623\u0645\u0628\u064a \u0623\u0648 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0627\u0644\u062e\u0627\u0635 \u0628\u0647:", + "LabelConnectUserName": "\u0627\u0633\u0645 \u0645\u0633\u062a\u062e\u062f\u0645 \u0623\u0645\u0628\u064a \u0623\u0648 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a:", + "LabelConnectUserNameHelp": "\u0623\u0631\u0628\u0637 \u062d\u0633\u0627\u0628 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0645\u062d\u0644\u064a \u0644\u062d\u0633\u0627\u0628 \u0645\u0633\u062a\u062e\u062f\u0645 \u0623\u0645\u0628\u064a \u062e\u0627\u0631\u062c\u064a \u0644\u062a\u0633\u0647\u064a\u0644 \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0645\u0646 \u0623\u064a \u062a\u0637\u0628\u064a\u0642 \u0623\u0645\u0628\u064a \u062f\u0648\u0646 \u0627\u0644\u062d\u0627\u062c\u0629 \u0644\u0645\u0639\u0631\u0641\u0629 \u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0622\u064a \u0628\u064a \u0644\u0644\u062e\u0627\u062f\u0645.", + "ButtonLearnMoreAboutEmbyConnect": "\u0625\u0639\u0631\u0641 \u0627\u0644\u0645\u0632\u064a\u062f \u0639\u0646 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a", + "LabelExternalPlayers": "\u0645\u0634\u063a\u0644\u0627\u062a \u062e\u0627\u0631\u062c\u064a\u0629:", + "LabelExternalPlayersHelp": "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0623\u0632\u0631\u0627\u0631 \u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0641\u064a \u0627\u0644\u0645\u0634\u063a\u0644\u0627\u062a \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629. \u0647\u0630\u0647 \u0644\u0627 \u062a\u062a\u0648\u0641\u0631 \u0625\u0644\u0627 \u0639\u0644\u0649 \u0627\u0644\u0623\u062c\u0647\u0632\u0631\u0629 \u0627\u0644\u062a\u064a \u062a\u062f\u0639\u0645 \u0645\u062e\u0637\u0637\u0627\u062a url\u060c \u0648\u0647\u064a \u0628\u0634\u0643\u0644 \u0639\u0627\u0645 \u0645\u062a\u0648\u0641\u0631\u0629 \u0641\u064a \u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0623\u0646\u062f\u0631\u0648\u064a\u062f \u0648 iOS. \u0628\u0634\u0643\u0644 \u0639\u0627\u0645\u060c \u0627\u0644\u0645\u0634\u063a\u0644\u0627\u062a \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629 \u0644\u0627 \u062a\u062f\u0639\u0645 \u062e\u0648\u0627\u0635 \u0627\u0644\u062a\u062d\u0643\u0645 \u0639\u0646 \u0628\u0639\u062f \u0623\u0648 \u0627\u0633\u062a\u0626\u0646\u0627\u0641 \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629.", + "LabelNativeExternalPlayersHelp": "\u0623\u0638\u0647\u0631 \u0627\u0644\u0623\u0632\u0631\u0627\u0631 \u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0641\u064a \u0627\u0644\u0645\u0634\u063a\u0644\u0627\u062a \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629.", + "HeaderSubtitleProfile": "\u0639\u0631\u064a\u0636\u0629 \u0627\u0644\u062a\u0631\u062c\u0645\u0629", + "HeaderSubtitleProfiles": "\u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u062a\u0631\u062c\u0645\u0629", + "HeaderSubtitleProfilesHelp": "\u0639\u0631\u0627\u0626\u0636 \u0627\u0644\u062a\u0631\u062c\u0645\u0629 \u062a\u0635\u0641 \u0635\u064a\u063a \u0627\u0644\u062a\u0631\u062c\u0645\u0629 \u0627\u0644\u0645\u062f\u0639\u0648\u0645\u0629 \u0639\u0644\u0649 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0645\u062e\u062a\u0644\u0641\u0629.", + "LabelFormat": "\u0627\u0644\u0635\u064a\u063a\u0629:", + "LabelMethod": "\u0627\u0644\u0637\u0631\u064a\u0642\u0629:", + "LabelDidlMode": "\u0637\u0648\u0631 didl:", + "OptionCaptionInfoExSamsung": "CaptionInfoEx (\u0623\u062c\u0647\u0632\u0629 \u0633\u0627\u0645\u0633\u0648\u0646\u062c)\n", + "OptionResElement": "\u0639\u0646\u0627\u0635\u0631 res", + "OptionEmbedSubtitles": "\u0636\u0645\u0651\u0646 \u062f\u0627\u062e\u0644 \u0627\u0644\u062d\u0627\u0648\u064a\u0629", + "OptionExternallyDownloaded": "\u0627\u0644\u0625\u0646\u0632\u0627\u0644 \u0645\u0646 \u0627\u0644\u062e\u0627\u0631\u062c", + "OptionHlsSegmentedSubtitles": "\u062a\u0631\u062c\u0645\u0627\u062a hsl \u0645\u0642\u0637\u0651\u0639\u0629", + "LabelSubtitleFormatHelp": "\u0645\u062b\u0627\u0644: \u0635\u064a\u063a\u0629 srt", + "ButtonLearnMore": "\u0625\u0639\u0631\u0641 \u0627\u0644\u0645\u0632\u064a\u062f", + "TabPlayback": "\u062a\u0634\u063a\u064a\u0644", + "HeaderAudioSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0648\u062a", + "HeaderSubtitleSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u0631\u062c\u0645\u0629", + "TabCinemaMode": "\u0627\u0644\u0637\u0648\u0631 \u0627\u0644\u0633\u064a\u0646\u0645\u0627\u0626\u064a", + "TitlePlayback": "\u062a\u0634\u063a\u064a\u0644", + "LabelEnableCinemaModeFor": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0637\u0648\u0631 \u0627\u0644\u0633\u064a\u0646\u0645\u0627\u0626\u064a \u0644\u0640:", + "CinemaModeConfigurationHelp": "\u0627\u0644\u0637\u0648\u0631 \u0627\u0644\u0633\u064a\u0646\u0645\u0627\u0626\u064a \u064a\u0648\u0641\u0631 \u0623\u062c\u0648\u0627\u0621 \u0633\u064a\u0646\u0645\u0627\u0626\u064a\u0629 \u0625\u0644\u0649 \u0642\u0644\u0628 \u0635\u0627\u0644\u062a\u0643 \u0645\u0639 \u0625\u0645\u0643\u0627\u0646\u064a\u0629 \u062a\u0634\u063a\u064a\u0644 \u0639\u0631\u0648\u0636 \u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0644\u0623\u0641\u0644\u0627\u0645 \u0623\u062e\u0631\u0649 \u0648\u0639\u0631\u0636 \u0645\u0642\u062f\u0645\u0627\u062a \u0623\u062e\u0631\u0649 \u0645\u0646 \u0627\u0646\u062a\u0642\u0627\u0621\u0627\u062a\u0643 \u0642\u0628\u0644 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u0644\u0645 \u0627\u0644\u0631\u0626\u064a\u0633\u064a.", + "OptionTrailersFromMyMovies": "\u0636\u0645\u0651\u0646 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0644\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629 \u0641\u064a \u0645\u0643\u062a\u0628\u062a\u064a", + "OptionUpcomingMoviesInTheaters": "\u0636\u0645\u0651\u0646 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0644\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0648\u0627\u0644\u0642\u0627\u062f\u0645\u0629", + "LabelLimitIntrosToUnwatchedContent": "\u0634\u063a\u0644 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0644\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u062a\u064a \u0644\u0645 \u062a\u062a\u0645 \u0645\u0634\u0627\u0647\u062f\u062a\u0647\u0627 \u0641\u0642\u0637", + "LabelEnableIntroParentalControl": "\u062a\u0641\u0639\u064a\u0644 \u062e\u0627\u0635\u064a\u0629 \u0627\u0644\u062a\u062d\u0643\u0645 \u0627\u0644\u0623\u0628\u0648\u064a \u0627\u0644\u0630\u0643\u064a", + "LabelEnableIntroParentalControlHelp": "\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0633\u062a\u064f\u062e\u062a\u0627\u0631 \u0641\u0642\u0637 \u0628\u062a\u0635\u0646\u064a\u0641 \u0631\u0642\u0627\u0628\u0629 \u0623\u0628\u0648\u064a\u0629 \u0623\u0642\u0644 \u0623\u0648 \u064a\u0633\u0627\u0648\u064a \u0627\u0644\u0645\u062d\u062a\u0648\u064a \u0627\u0644\u0630\u064a \u064a\u062a\u0645 \u0645\u0634\u0627\u0647\u062f\u062a\u0647.", + "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "\u0647\u0630\u0647 \u0627\u0644\u062e\u0648\u0627\u0635 \u062a\u062a\u0637\u0644\u0628 \u0625\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0633\u0627\u0631\u064a\u060c \u0643\u0645\u0627 \u062a\u062a\u0637\u0644\u0628 \u062a\u062b\u0628\u064a\u0628 \u0645\u0644\u062d\u0642 \u0642\u0646\u0627\u0629 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629.", + "OptionTrailersFromMyMoviesHelp": "\u064a\u062a\u0637\u0644\u0628 \u0625\u0639\u062f\u0627\u062f \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0627\u0644\u0645\u062d\u0644\u064a\u0629.", + "LabelCustomIntrosPath": "\u0645\u0633\u0627\u0631 \u0645\u062e\u0635\u0648\u0635 \u0644\u0645\u0642\u062f\u0645\u0627\u062a \u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0623\u062e\u0631\u0649:", + "LabelCustomIntrosPathHelp": "\u0645\u062c\u0644\u062f \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0645\u0644\u0641\u0627\u062a \u0641\u064a\u062f\u064a\u0648. \u0633\u064a\u062a\u0645 \u0627\u062e\u062a\u064a\u0627\u0631 \u0641\u064a\u062f\u064a\u0648 \u0639\u0634\u0648\u0627\u0626\u064a\u0627\u064b \u0645\u0646 \u0647\u0646\u0627 \u0644\u0639\u0631\u0636\u0647 \u0628\u0639\u062f \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629.", + "LabelSelectInternetTrailersForCinemaMode": "\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0645\u0646 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a:", + "OptionUpcomingDvdMovies": "\u0636\u0645\u0651\u0646 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0644\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0648\u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0639\u0644\u0649 \u0623\u0642\u0631\u0627\u0635 \u0628\u0644\u0648\u0631\u064a \u0648\u062f\u064a \u0641\u064a \u062f\u064a", + "OptionUpcomingStreamingMovies": "\u0636\u0645\u0651\u0646 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0644\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0648\u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0639\u0644\u0649 \u0634\u0628\u0643\u0629 \u0646\u062a\u0641\u0644\u0643\u0633", + "CinemaModeConfigurationHelp2": "\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0641\u064a\u0647\u0627 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0644\u062a\u0641\u0639\u064a\u0644 \u0623\u0648 \u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0637\u0648\u0631 \u0627\u0644\u0633\u064a\u0646\u0645\u0627\u0626\u064a. \u0623\u0645\u0627 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0639\u0644\u0649 \u0627\u0644\u062a\u0644\u0641\u0632\u064a\u0648\u0646\u0627\u062a \u0641\u0647\u064a \u0633\u062a\u0644\u063a\u064a \u0627\u0644\u0637\u0648\u0631 \u0627\u0644\u0633\u064a\u0646\u0645\u0627\u0626\u064a \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b.", + "LabelEnableCinemaMode": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0637\u0648\u0631 \u0627\u0644\u0633\u064a\u0646\u0645\u0627\u0626\u064a", + "HeaderCinemaMode": "\u0627\u0644\u0637\u0648\u0631 \u0627\u0644\u0633\u064a\u0646\u0645\u0627\u0626\u064a", + "LabelDateAddedBehavior": "\u0643\u064a\u0641 \u064a\u062a\u0635\u0631\u0641 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062c\u062f\u064a\u062f \u0646\u062d\u0648 \"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0636\u0627\u0641\u0629\" \u0627\u0644\u062e\u0627\u0635 \u0628\u0647:", + "OptionDateAddedImportTime": "\u0627\u0633\u062a\u062e\u062f\u0645 \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0645\u0634\u064a\u0637 \u0641\u064a \u0627\u0644\u0645\u0643\u062a\u0628\u0629", + "OptionDateAddedFileTime": "\u0627\u0633\u062a\u062e\u062f\u0645 \u062a\u0627\u0631\u064a\u062e \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u0644\u0641", + "LabelDateAddedBehaviorHelp": "\u0625\u0630\u0627 \u0627\u0633\u062a\u0639\u0631\u0636\u062a \u0642\u064a\u0645\u0629 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627 \u0641\u0625\u0646\u0647\u0627 \u0633\u0648\u0641 \u062a\u0633\u062a\u062e\u062f\u0645 \u0642\u0628\u0644 \u0623\u0646 \u062a\u0633\u062a\u062e\u062f\u0645 \u0623\u064a \u0645\u0646 \u0647\u0630\u0647 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a.", + "LabelNumberTrailerToPlay": "\u0639\u062f\u062f \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0627\u0644\u0645\u0634\u063a\u0651\u0644\u0629", + "TitleDevices": "\u0627\u0644\u0623\u062c\u0647\u0632\u0629", + "TabCameraUpload": "\u0631\u0641\u0639 \u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627", + "TabDevices": "\u0627\u0644\u0623\u062c\u0647\u0632\u0629", + "HeaderCameraUploadHelp": "\u0625\u0631\u0641\u0639 \u0627\u0644\u0635\u0648\u0631 \u0648\u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0645\u0644\u062a\u0642\u0637 \u0645\u0646 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0645\u062d\u0645\u0648\u0644\u0629 \u0625\u0644\u0649 \u0623\u0645\u0628\u064a \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b.", + "MessageNoDevicesSupportCameraUpload": "\u0623\u0646\u062a \u062d\u0627\u0644\u064a\u0627\u064b \u0644\u0627 \u062a\u0645\u0644\u0643 \u0623\u064a \u0623\u062c\u0647\u0632\u0629 \u062a\u062f\u0639\u0645 \u0631\u0641\u0639 \u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627.", + "LabelCameraUploadPath": "\u0645\u0633\u0627\u0631 \u062d\u0641\u0638 \u0631\u0641\u0639 \u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627:", + "LabelCameraUploadPathHelp": "\u0625\u062e\u062a\u0631 \u0645\u0633\u0627\u0631\u0627\u064b \u0645\u062e\u0635\u0648\u0635\u0627\u064b \u0644\u0644\u0631\u0641\u0639\u060c \u0644\u0648 \u0631\u063a\u0628\u062a \u0628\u0630\u0644\u0643. \u0625\u0646 \u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u062a\u062e\u0635\u064a\u0635 \u0641\u0633\u064a\u0633\u062a\u062e\u062f\u0645 \u0645\u062c\u0644\u062f \u0627\u0641\u062a\u0631\u0627\u0636\u064a. \u0648\u0625\u0646 \u062a\u0645 \u062a\u062e\u0635\u064a\u0635 \u0645\u0633\u0627\u0631 \u0627\u0641\u062a\u0631\u0627\u0636\u064a \u0641\u064a\u0646\u0628\u063a\u064a \u0623\u0646 \u062a\u062a\u0645 \u0625\u0636\u0627\u0641\u062a\u0647 \u0641\u064a \u0642\u0633\u0645 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0643\u062a\u0628\u0629.", + "LabelCreateCameraUploadSubfolder": "\u0623\u0646\u0634\u0626 \u0645\u062c\u0644\u062f\u0627\u064b \u0641\u0631\u0639\u064a\u0627\u064b \u0644\u0643\u0644 \u062c\u0647\u0627\u0632", + "LabelCreateCameraUploadSubfolderHelp": "\u0628\u0627\u0644\u0625\u0645\u0643\u0627\u0646 \u062a\u062e\u0635\u064a\u0635 \u0645\u062c\u0644\u062f \u0644\u0643\u0644 \u062c\u0647\u0627\u0632 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0627\u0644\u0636\u063a\u0637 \u0639\u0644\u064a\u0647 \u0645\u0646 \u0635\u0641\u062d\u0629 \u0627\u0644\u0623\u062c\u0647\u0632\u0629.", + "LabelCustomDeviceDisplayName": "\u0627\u0633\u0645 \u0627\u0644\u0639\u0631\u0636:", + "LabelCustomDeviceDisplayNameHelp": "\u0623\u0630\u0643\u0631 \u0627\u0633\u0645 \u0639\u0631\u0636 \u0645\u062e\u0635\u0648\u0635 \u0623\u0648 \u0623\u062a\u0631\u0643\u0647 \u0641\u0627\u0631\u063a\u0627\u064b \u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645", + "HeaderInviteUser": "\u062f\u0639\u0648\u0629 \u0645\u0633\u062a\u062e\u062f\u0645", + "LabelConnectGuestUserNameHelp": "\u0647\u0630\u0627 \u0647\u0648 \u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0630\u064a \u0633\u064a\u0633\u062a\u062e\u062f\u0645\u0647 \u0635\u062f\u064a\u0642\u0643 \u0644\u0644\u062f\u062e\u0648\u0644 \u0625\u0644\u0649 \u0645\u0648\u0642\u0639 \u0623\u0645\u0628\u064a\u060c \u0623\u0648 \u0628\u0631\u064a\u062f\u0647 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a.", + "HeaderInviteUserHelp": "\u0645\u0634\u0627\u0631\u0643\u0629 \u0648\u0633\u0627\u0626\u0637\u0643 \u0645\u0639 \u0623\u0635\u062f\u0642\u0627\u0624\u0643 \u0633\u064a\u0643\u0648\u0646 \u0623\u0633\u0647\u0644 \u0645\u0646 \u0623\u064a \u0648\u0642\u062a \u0645\u0639 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a", + "ButtonSendInvitation": "\u0623\u0631\u0633\u0644 \u0627\u0644\u062f\u0639\u0648\u0629", + "HeaderSignInWithConnect": "\u0633\u062c\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u0640 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a", + "HeaderGuests": "\u0627\u0644\u0636\u064a\u0648\u0641", + "HeaderPendingInvitations": "\u0627\u0644\u062f\u0639\u0648\u0627\u062a \u0627\u0644\u0645\u0639\u0644\u0642\u0629", + "TabParentalControl": "\u0627\u0644\u062a\u062d\u0643\u0645 \u0627\u0644\u0623\u0628\u0648\u064a", + "HeaderAccessSchedule": "\u062c\u062f\u0648\u0644 \u0627\u0644\u062f\u062e\u0648\u0644\u0627\u062a", + "HeaderAccessScheduleHelp": "\u0625\u0646\u0634\u0626 \u062c\u062f\u0648\u0644 \u062f\u062e\u0648\u0644\u0627\u062a \u0644\u0643\u064a \u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u062a\u062d\u062f\u064a\u062f \u0633\u0627\u0639\u0627\u062a \u0644\u0644\u062f\u062e\u0648\u0644.", + "LabelAccessDay": "\u064a\u0648\u0645 \u0627\u0644\u0623\u0633\u0628\u0648\u0639:", + "LabelAccessStart": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0628\u062f\u0627\u064a\u0629", + "LabelAccessEnd": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0646\u0647\u0627\u064a\u0629", + "HeaderSchedule": "\u0627\u0644\u062c\u062f\u0648\u0644", + "OptionEveryday": "\u0643\u0644 \u064a\u0648\u0645", + "OptionWeekdays": "\u0623\u064a\u0627\u0645 \u0627\u0644\u0623\u0633\u0628\u0648\u0639", + "OptionWeekends": "\u0623\u064a\u0627\u0645 \u0627\u0644\u0639\u0637\u0644\u0629", + "MessageProfileInfoSynced": "\u062d\u0633\u0627\u0628 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0645\u0631\u0628\u0648\u0637 \u0645\u0639 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a.", + "HeaderOptionalLinkEmbyAccount": "\u062e\u064a\u0627\u0631\u064a: \u0623\u0631\u0628\u0637 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0627\u0644\u062e\u0627\u0635 \u0628\u0643", + "ButtonTrailer": "\u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a", + "MessageNoTrailersFound": "\u0644\u0645 \u064a\u062a\u0645 \u0625\u064a\u062c\u0627\u062f \u0623\u064a \u0639\u0631\u0648\u0636 \u0625\u0639\u0644\u0627\u0646\u064a\u0629. \u0642\u0645 \u0628\u062a\u062b\u0628\u064a\u062a \u0642\u0646\u0627\u0629 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0644\u062a\u062d\u0633\u064a\u0646 \u0645\u062a\u0639\u0629 \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629 \u0628\u0625\u0636\u0627\u0641\u0629 \u0645\u0643\u062a\u0628\u0629 \u0639\u0631\u0648\u0636 \u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0645\u0646 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a.", + "HeaderNewUsers": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0648\u0646 \u0627\u0644\u062c\u062f\u062f", + "ButtonSignUp": "\u062d\u0633\u0627\u0628 \u062c\u062f\u064a\u062f", + "ButtonForgotPassword": "\u0646\u0633\u064a\u062a \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", + "OptionDisableUserPreferences": "\u0625\u0645\u0646\u0639 \u0627\u0644\u062f\u0647\u0648\u0644 \u0639\u0644\u0649 \u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", + "OptionDisableUserPreferencesHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0644\u0646 \u064a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0644\u0649 \u0636\u0628\u0637 \u062e\u064a\u0627\u0631\u0627\u062a \u0627\u0644\u0635\u0648\u0631 \u0648\u0643\u0644\u0645\u0627\u062a \u0627\u0644\u0633\u0631 \u0648\u0627\u0644\u0644\u063a\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u062d\u0633\u0627\u0628\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0625\u0644\u0627 \u0627\u0644\u0645\u062f\u0631\u0627\u0621\u060c", + "HeaderSelectServer": "\u0625\u062e\u062a\u0631 \u0627\u0644\u062e\u0627\u062f\u0645", + "MessageNoServersAvailableToConnect": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0623\u064a\u0629 \u062e\u0648\u0627\u062f\u0645 \u0644\u0644\u0625\u062a\u0635\u0627\u0644 \u0628\u0647\u0627. \u0625\u0630\u0627 \u0643\u0646\u062a \u0642\u062f \u062f\u0639\u064a\u062a \u0625\u0644\u0649 \u062e\u0627\u062f\u0645 \u0645\u0627\u060c \u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u0642\u0628\u0644\u062a \u0627\u0644\u062f\u0639\u0648\u0629 \u0623\u0648 \u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0644\u0649 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u0631\u0633\u0644 \u0641\u064a \u0628\u0631\u064a\u062f \u0627\u0644\u062f\u0639\u0648\u0629.", + "TitleNewUser": "\u0645\u0633\u062a\u062e\u062f\u0645 \u062c\u062f\u064a\u062f", + "ButtonConfigurePassword": "\u0636\u064a\u0637 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", + "HeaderDashboardUserPassword": "\u0643\u0644\u0645\u0627\u062a \u0633\u0631 \u0627\u0644\u0645\u0633\u062a\u062a\u062e\u062f\u0645\u064a\u0646 \u064a\u062a\u0645 \u0636\u0628\u0637\u0647\u0627 \u0645\u0646 \u062e\u0644\u0627\u0644 \u0642\u0633\u0645 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0641\u064a \u0645\u0639\u0631\u0648\u0636 \u062d\u0633\u0627\u0628 \u0643\u0644 \u0645\u0633\u062a\u062e\u062f\u0645.", + "HeaderLibraryAccess": "\u0635\u0644\u0627\u062d\u064a\u0627\u062a \u0627\u0644\u0645\u0643\u062a\u0628\u0629", + "HeaderChannelAccess": "\u0635\u0644\u0627\u062d\u064a\u0627\u062a \u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "HeaderLatestItems": "\u0623\u062d\u062f\u062b \u0627\u0644\u0639\u0646\u0627\u0635\u0631", + "LabelSelectLastestItemsFolders": "\u0636\u0645\u0651\u0646 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0645\u0646 \u0627\u0644\u0623\u0642\u0633\u0627\u0645 \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0641\u064a \u0623\u062d\u062f\u062b \u0627\u0644\u0639\u0646\u0627\u0635\u0631", + "HeaderShareMediaFolders": "\u0634\u0627\u0631\u0643 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "MessageGuestSharingPermissionsHelp": "\u0645\u0639\u0638\u0645 \u0627\u0644\u0645\u0632\u0627\u064a\u0627 \u063a\u064a\u0631 \u0645\u062a\u0627\u062d\u0629 \u0644\u0644\u0636\u064a\u0648\u0641 \u0641\u064a \u0627\u0644\u0628\u062f\u0627\u064a\u0629 \u0644\u0643\u0646 \u064a\u0645\u0643\u0646\u0643 \u0623\u0646 \u062a\u0641\u0639\u0644\u0647\u0627 \u0639\u0646\u062f \u0627\u0644\u062d\u0627\u062c\u0629.", + "HeaderInvitations": "\u0627\u0644\u062f\u0639\u0648\u0627\u062a", + "LabelForgotPasswordUsernameHelp": "\u0623\u062f\u062e\u0644 \u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643\u060c \u0625\u0646 \u0643\u0646\u062a \u062a\u062a\u0630\u0643\u0631\u0647\u0627", + "HeaderForgotPassword": "\u0646\u0633\u064a\u062a \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", + "TitlePasswordReset": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", + "LabelPasswordRecoveryPinCode": "\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a:", + "HeaderPasswordReset": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", + "HeaderParentalRatings": "\u0627\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0623\u0628\u0648\u064a", + "HeaderVideoTypes": "\u0635\u064a\u063a \u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a", + "HeaderYears": "\u0627\u0644\u0633\u0646\u0648\u0627\u062a", + "HeaderBlockItemsWithNoRating": "\u0625\u062d\u062c\u0628 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u062a\u0635\u0646\u064a\u0641 \u0623\u0628\u0648\u064a \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641 \u0623\u0648 \u0641\u0627\u0631\u063a:", + "LabelBlockContentWithTags": "\u0623\u062d\u062c\u0628 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0628\u0627\u0644\u062a\u0627\u063a\u0627\u062a \u0627\u0644\u062a\u0627\u0644\u064a\u0629:", + "LabelEnableSingleImageInDidlLimit": "\u062d\u062f\u062f \u0639\u062f\u062f \u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u0636\u0645\u0651\u0646\u0629 \u0644\u0635\u0648\u0631 \u0648\u0627\u062d\u062f\u0629", + "LabelEnableSingleImageInDidlLimitHelp": "\u0628\u0639\u0636 \u0627\u0644\u0623\u062c\u0647\u0632\u0647 \u0644\u0646 \u062a\u0638\u0647\u0631 \u0627\u0644\u0635\u0648\u0631 \u062c\u064a\u062f\u0627\u064b \u0625\u0646 \u0636\u0645\u0651\u0646\u062a \u0635\u0648\u0631 \u0639\u062f\u064a\u062f\u0629 \u0641\u064a \u0645\u062e\u0637\u0637 didl.", + "TabActivity": "\u0627\u0644\u0646\u0634\u0627\u0643", + "TitleSync": "\u0645\u0632\u0627\u0645\u0646\u0629", + "OptionAllowSyncContent": "\u0627\u0633\u0645\u062d \u0628\u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629", + "OptionAllowContentDownloading": "\u0627\u0633\u0645\u062d \u0628\u0625\u0646\u0632\u0627\u0644 \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "NameSeasonUnknown": "\u0627\u0644\u0645\u0648\u0633\u0645 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641", + "NameSeasonNumber": "\u0627\u0644\u0645\u0648\u0633\u0645 {0}", + "LabelNewUserNameHelp": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0627\u0644\u062d\u0631\u0648\u0641 (a-z)\u060c \u0648\u0627\u0644\u0623\u0631\u0642\u0627\u0645 (0-9)\u060c \u0648\u0639\u0644\u0627\u0645\u0627\u062a \u0627\u0644\u062a\u0631\u0645\u064a\u0632 (-_'.)", + "TabJobs": "\u0627\u0644\u0645\u0647\u0627\u0645", + "TabSyncJobs": "\u0645\u0647\u0627\u0645 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629", + "HeaderThisUserIsCurrentlyDisabled": "\u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0648\u0642\u0641 \u062d\u0627\u0644\u064a\u0627\u064b", + "MessageReenableUser": "\u0623\u0646\u0638\u0631 \u0623\u062f\u0646\u0627\u0647 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0641\u0639\u064a\u0644", + "OptionTVMovies": "\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u062a\u0644\u0641\u0627\u0632", + "HeaderUpcomingMovies": "\u0627\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u0642\u0627\u062f\u0645\u0629", + "HeaderUpcomingSports": "\u0627\u0644\u0623\u062d\u062f\u0627\u062b \u0627\u0644\u0631\u064a\u0627\u0636\u064a\u0629 \u0627\u0644\u0642\u0627\u062f\u0645\u0629", + "HeaderUpcomingPrograms": "\u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u0642\u0627\u062f\u0645\u0629", + "ButtonMoreItems": "\u0627\u0644\u0645\u0632\u064a\u062f", + "OptionEnableTranscodingThrottle": "\u062a\u0641\u0639\u064a\u0644 \u0635\u0645\u0627\u0645 \u0627\u0644\u0627\u062e\u062a\u0646\u0627\u0642", + "OptionEnableTranscodingThrottleHelp": "\u0635\u0645\u0627\u0645 \u0627\u0644\u0627\u062e\u062a\u0646\u0627\u0642 \u0633\u064a\u0639\u062f\u0644 \u0633\u0631\u0639\u0629 \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a \u0628\u0634\u0643\u0644 \u062a\u0644\u0642\u0627\u0626\u064a \u0644\u0643\u064a \u064a\u0642\u0644\u0644 \u0645\u0646 \u0645\u062f\u0649 \u0627\u0633\u062a\u0647\u0644\u0627\u0643 \u0627\u0644\u0645\u0639\u0627\u0644\u062c \u0623\u062b\u0646\u0627\u0621 \u0639\u0631\u0636 \u0627\u0644\u0623\u0641\u0644\u0627\u0645.", + "LabelUploadSpeedLimit": "\u062d\u062f \u0633\u0631\u0639\u0629 \u0627\u0644\u0631\u0641\u0639 (Mbps):", + "OptionAllowSyncTranscoding": "\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u062a\u0632\u0627\u0645\u0646 \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0627\u062c \u062a\u0634\u0641\u064a\u0631\u0627\u064b \u0628\u064a\u0646\u064a\u0627\u064b", + "HeaderPlayback": "\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "OptionAllowAudioPlaybackTranscoding": "\u062a\u0645\u0643\u064a\u0646 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0635\u0648\u062a \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0627\u062c \u062a\u0634\u0641\u064a\u0631\u0627\u064b \u0628\u064a\u0646\u064a\u0627\u064b", + "OptionAllowVideoPlaybackTranscoding": "\u062a\u0645\u0643\u064a\u0646 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0627\u062c \u062a\u0634\u0641\u064a\u0631\u0627\u064b \u0628\u064a\u0646\u064a\u0627\u064b", + "OptionAllowVideoPlaybackRemuxing": "\u062a\u0645\u0643\u064a\u0646 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0627\u0644\u062a\u062d\u0648\u064a\u0644 \u0645\u0646 \u063a\u064a\u0631 \u062a\u0634\u0641\u064a\u0631", + "OptionAllowMediaPlaybackTranscodingHelp": "\u0633\u064a\u0633\u062a\u0642\u0628\u0644 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0648\u0646 \u0625\u0634\u0639\u0627\u0631\u0627\u064b \u0648\u062f\u0651\u064a\u0627\u064b \u0639\u0646\u062f\u0645\u0627 \u0644\u0627 \u064a\u0645\u0643\u0646\u0647\u0645 \u062a\u0634\u063a\u064a\u0644 \u0645\u062d\u062a\u0648\u0649 \u064a\u062a\u062c\u0627\u0648\u0632 \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629.", + "TabStreaming": "\u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062a\u062f\u0641\u0642\u064a", + "LabelRemoteClientBitrateLimit": "\u062d\u062f\u062f \u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0644\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062a\u062f\u0641\u0642\u064a \u0639\u0628\u0631 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a (Mbps)", + "LabelRemoteClientBitrateLimitHelp": "\u0647\u0630\u0627 \u062e\u064a\u0627\u0631 \u0644\u062a\u062d\u062f\u064a\u062f \u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0644\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062a\u062f\u0641\u0642\u064a \u0644\u0643\u0644 \u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0634\u0628\u0643\u0629. \u0647\u0630\u0627 \u064a\u0643\u0648\u0646 \u0645\u0641\u064a\u062f \u0644\u0645\u0646\u0639 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0645\u0646 \u0637\u0644\u0628 \u0645\u0639\u062f\u0644\u0627\u062a \u0628\u062a \u0623\u0639\u0644\u0649 \u0645\u0646 \u0625\u0645\u0643\u0627\u0646\u064a\u0627\u062a \u0634\u0628\u0643\u062a\u0643.", + "LabelConversionCpuCoreLimit": "\u062d\u062f\u062f \u0623\u0646\u0648\u064a\u0629 \u0627\u0644\u0645\u0639\u0627\u0644\u062c:", + "LabelConversionCpuCoreLimitHelp": "\u062d\u062f\u062f \u0639\u062f\u062f \u0623\u0646\u0648\u064a\u0629 \u0627\u0644\u0645\u0639\u0627\u0644\u062c \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u0629 \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u062a\u062d\u0648\u064a\u0644 \u0648\u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629", + "OptionEnableFullSpeedConversion": "\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u062a\u062d\u0648\u064a\u0644 \u0628\u0627\u0644\u0633\u0631\u0639\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629", + "OptionEnableFullSpeedConversionHelp": "\u0625\u0641\u062a\u0631\u0627\u0636\u064a\u0627\u064b\u060c \u0627\u0644\u062a\u062d\u0648\u064a\u0644 \u0648\u0627\u0644\u0632\u0627\u0645\u0646\u0629 \u062a\u062a\u0645 \u0628\u0633\u0631\u0639\u0627\u062a \u0645\u0646\u062e\u0641\u0636\u0629 \u0644\u062a\u0642\u0644\u064a\u0644 \u0627\u0644\u0645\u0648\u0627\u0631\u062f \u0627\u0644\u0645\u0633\u062a\u0647\u0644\u0643\u0629.", + "HeaderPlaylists": "\u0642\u0648\u0627\u0626\u0645 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "HeaderViewStyles": "\u0623\u0638\u0647\u0631 \u0623\u062c\u0648\u0627\u0621 \u0627\u0644\u0648\u0627\u062c\u0647\u0629", + "TabPhotos": "\u0627\u0644\u0635\u0648\u0631", + "HeaderWelcomeToEmby": "\u0645\u0631\u062d\u0628\u0627\u064b \u0628\u0643 \u0641\u064a \u0623\u0645\u0628\u064a", + "EmbyIntroMessage": "\u0645\u0639 \u0623\u0645\u0628\u064a \u064a\u0645\u0643\u0646\u0643 \u0623\u0646 \u062a\u0634\u063a\u0644 \u062a\u062f\u0641\u0642\u064a\u0627\u064b \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0648\u0627\u0644\u0645\u0648\u0633\u064a\u0642\u0649 \u0648\u0627\u0644\u0635\u0648\u0631 \u0625\u0644\u0649 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0648\u0627\u0644\u0623\u0644\u0648\u0627\u062d \u0627\u0644\u0630\u0643\u064a\u0629 \u0648\u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0623\u062e\u0631\u0649 \u0645\u0646 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0627\u0644\u062e\u0627\u0635 \u0628\u0643.", + "ButtonSkip": "\u062a\u062e\u0637\u0651\u064a", + "TextConnectToServerManually": "\u0627\u062a\u0635\u0644 \u0628\u0627\u0644\u062e\u0627\u062f\u0645 \u0628\u0627\u0644\u0625\u0639\u062f\u0627\u062f \u0627\u0644\u064a\u062f\u0648\u064a", + "ButtonSignInWithConnect": "\u0633\u062f\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0639\u0646 \u0637\u0631\u064a\u0642 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a", + "ButtonConnect": "\u0627\u062a\u0635\u0644", + "LabelServerHost": "\u0627\u0644\u0645\u0636\u064a\u0641:", + "LabelServerHostHelp": "192.168.1.100 \u0623\u0648 https:\/\/myserver.com", + "LabelServerPort": "\u0627\u0644\u0645\u0646\u0641\u0630:", + "HeaderNewServer": "\u062e\u0627\u062f\u0645 \u062c\u062f\u064a\u062f", + "ButtonChangeServer": "\u063a\u064a\u0631 \u0627\u0644\u062e\u0627\u062f\u0645", + "HeaderConnectToServer": "\u0627\u062a\u0635\u0644 \u0625\u0644\u0649 \u0627\u0644\u062e\u0627\u062f\u0645", + "OptionReportList": "\u0634\u0643\u0644 \u0627\u0644\u0642\u0627\u0626\u0645\u0629", + "OptionReportStatistics": "\u0627\u0644\u0625\u062d\u0635\u0627\u0626\u064a\u0627\u062a", + "OptionReportGrouping": "\u062a\u062c\u0645\u064a\u0639", + "HeaderExport": "\u062a\u0635\u062f\u064a\u0631", + "HeaderColumns": "\u0627\u0644\u0623\u0639\u0645\u062f\u0629", + "ButtonReset": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629", + "OptionEnableExternalVideoPlayers": "\u062a\u0645\u0643\u064a\u0646 \u0645\u0634\u063a\u0644\u0627\u062a \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629", + "LabelEnableFullScreen": "\u062a\u0645\u0643\u064a\u0646 \u0637\u0648\u0631 \u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629", + "LabelEmail": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a:", + "LabelUsername": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645:", + "HeaderSignUp": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062d\u0633\u0627\u0628", + "LabelPasswordConfirm": "\u062a\u0623\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631:", + "ButtonAddServer": "\u0625\u0636\u0627\u0641\u0629 \u062e\u0627\u062f\u0645", + "TabHomeScreen": "\u0627\u0644\u0634\u0627\u0634\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629", + "HeaderDisplay": "\u0625\u0638\u0647\u0627\u0631", + "HeaderNavigation": "\u062a\u0646\u0642\u0651\u0644", + "OptionEnableAutomaticServerUpdates": "\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a \u0627\u0644\u0622\u0644\u064a\u0629 \u0641\u064a \u0627\u0644\u062e\u0627\u062f\u0645", + "OptionOtherTrailers": "\u0636\u0645\u0651\u0646 \u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0645\u0646 \u0627\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u0642\u062f\u064a\u0645\u0629", + "HeaderOverview": "\u0646\u0628\u0630\u0629 \u0639\u0627\u0645\u0629", + "HeaderShortOverview": "\u0646\u0628\u0630\u0629 \u0645\u0648\u062c\u0632\u0629", + "HeaderType": "\u0627\u0644\u0646\u0648\u0639", + "OptionReportActivities": "\u0627\u0644\u0633\u062c\u0644 \u0627\u0644\u0643\u0634\u0641\u064a", + "HeaderTunerDevices": "\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u062a\u0648\u0644\u064a\u0641", + "HeaderAddDevice": "\u0623\u0636\u0627\u0641\u0629 \u062c\u0647\u0627\u0632", + "HeaderExternalServices": "\u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629", + "LabelTunerIpAddress": "\u0639\u0646\u0648\u0627\u0646 \u0622\u064a \u0628\u064a \u0627\u0644\u0645\u0648\u0644\u0641:", + "TabExternalServices": "\u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629", + "HeaderGuideProviders": "\u0645\u0632\u0648\u062f\u0648 \u0627\u0644\u0623\u062f\u0644\u0629", + "AddGuideProviderHelp": "\u0623\u0636\u0641 \u0645\u0635\u062f\u0631\u0627\u064b \u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u062f\u0644\u064a\u0644 \u0627\u0644\u062a\u0644\u0641\u0632\u064a\u0648\u0646\u064a", + "LabelZipCode": "\u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0628\u0631\u064a\u062f\u064a:", + "GuideProviderSelectListings": "\u0625\u062e\u062a\u0631 \u0627\u0644\u0645\u0628\u0648\u0628\u0627\u062a", + "GuideProviderLogin": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644", + "LabelLineup": "\u0633\u0644\u0633\u0644:", + "MessageTunerDeviceNotListed": "\u0647\u0644 \u062c\u0647\u0627\u0632 \u0627\u0644\u0645\u0648\u0644\u0641 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f\u061f \u062d\u0627\u0648\u0644 \u062a\u062b\u0628\u064a\u062a \u0645\u0632\u0648\u062f \u062e\u062f\u0645\u0629 \u062e\u0627\u0631\u062c\u064a \u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u062e\u064a\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629.", + "LabelImportOnlyFavoriteChannels": "\u0623\u062d\u0635\u0631 \u0627\u0644\u0639\u0631\u0636 \u0639\u0644\u0649 \u0627\u0644\u0642\u0646\u0648\u0627\u062a \u0627\u0644\u0645\u0639\u0644\u0651\u0645\u0629 \u0643\u0645\u0641\u0636\u0644\u0627\u062a", + "ImportFavoriteChannelsHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0641\u0642\u0637 \u0627\u0644\u0642\u0646\u0648\u0627\u062a \u0627\u0644\u062a\u064a \u0639\u0644\u0651\u0645\u062a \u0641\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0639\u0644\u0649 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0644\u0641 \u0633\u062a\u0648\u0631\u062f \u0625\u0644\u0649 \u0627\u0644\u0646\u0638\u0627\u0645.", + "ButtonRepeat": "\u0643\u0631\u0631", + "LabelEnableThisTuner": "\u062a\u0645\u0643\u064a\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0644\u0641", + "LabelEnableThisTunerHelp": "\u0623\u0644\u063a \u0627\u0644\u062e\u064a\u0627\u0631 \u0644\u0645\u0646\u0639 \u062a\u0648\u0631\u064a\u062f \u0627\u0644\u0642\u0646\u0648\u0627\u062a \u0645\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0644\u0641.", + "HeaderImagePrimary": "\u0623\u0648\u0644\u064a", + "HeaderImageBackdrop": "\u0627\u0644\u062e\u0644\u0641\u064a\u0629", + "HeaderImageLogo": "\u0627\u0644\u0644\u0648\u063a\u0648", + "HeaderUserPrimaryImage": "\u0635\u0648\u0631\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", + "ButtonProfile": "\u062d\u0633\u0627\u0628", + "ButtonProfileHelp": "\u0623\u0636\u0628\u0637 \u0625\u0639\u062f\u0627\u062f \u0635\u0648\u0631\u0629 \u0648\u0643\u0644\u0645\u0629 \u0633\u0631 \u062d\u0633\u0627\u0628\u0643", + "HeaderHomeScreenSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629", + "HeaderProfile": "\u0627\u0644\u062d\u0633\u0627\u0628", + "HeaderLanguage": "\u0627\u0644\u0644\u063a\u0629", + "LabelTranscodingThreadCount": "\u0639\u062f\u062f \u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a", + "LabelTranscodingThreadCountHelp": "\u0625\u062e\u062a\u0631 \u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0628\u0647 \u0645\u0646 \u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a. \u0625\u0646 \u062a\u0642\u0644\u064a\u0644 \u0639\u062f\u062f \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a \u0633\u064a\u0642\u0644\u0644 \u0645\u0646 \u0646\u0633\u0628\u0629 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0645\u0639\u0627\u0644\u062c \u0644\u0643\u0646\u0647 \u0642\u062f \u0644\u0627 \u064a\u062d\u0648\u0651\u0644 \u0627\u0644\u0648\u0633\u064a\u0637\u0629 \u0628\u0627\u0644\u0633\u0631\u0639\u0629 \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629 \u0644\u062a\u0634\u063a\u064a\u0644 \u0633\u0644\u0633.", + "OptionMax": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649", + "LabelSyncPath": "\u0645\u0633\u0627\u0631 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u062a\u0632\u0627\u0645\u0646:", + "OptionSyncOnlyOnWifi": "\u0645\u0632\u0627\u0645\u0646\u0629 \u0639\u0646 \u0627\u0644\u0648\u0627\u064a\u0641\u0627\u064a \u0641\u0642\u0637", + "OptionSyncLosslessAudioOriginal": "\u0632\u0627\u0645\u0646 \u0627\u0644\u0635\u0648\u062a \u0628\u0627\u0644\u062c\u0648\u062f\u0629 \u0627\u0644\u0623\u0635\u0644\u064a\u0629 \u0641\u0642\u0637", + "HeaderUpcomingForKids": "\u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0642\u0627\u062f\u0645 \u0644\u0644\u0623\u0637\u0641\u0627\u0644", + "HeaderSetupLiveTV": "\u0636\u0628\u0637 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0627\u0632 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "LabelTunerType": "\u0646\u0648\u0639 \u0627\u0644\u0645\u0648\u0644\u0641:", + "HelpMoreTunersCanBeAdded": "\u064a\u0645\u0643\u0646 \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0648\u0644\u0641\u0627\u062a \u0644\u0627\u062d\u0642\u0627\u064b \u0639\u0628\u0631 \u0642\u0633\u0645 \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629.", + "AdditionalLiveTvProvidersCanBeInstalledLater": "\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0645\u0632\u0648\u062f\u064a \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629 \u064a\u0645\u0643\u0646\u0647\u0645 \u0625\u062f\u0631\u0627\u062c\u0647\u0645 \u0644\u0627\u062d\u0642\u0627\u064b \u0645\u0646 \u0642\u0633\u0645 \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629.", + "HeaderSetupTVGuide": "\u0636\u0628\u0637 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062f\u0644\u064a\u0644 \u0627\u0644\u062a\u0644\u0641\u0632\u064a\u0648\u0646\u064a", + "LabelDataProvider": "\u0645\u0632\u0648\u062f \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a:", + "OptionSendRecordingsToAutoOrganize": "\u0631\u062a\u0628 \u0627\u0644\u0633\u062c\u0644\u0627\u062a \u0622\u0644\u064a\u0627\u064b \u0641\u064a \u0645\u062c\u0644\u062f\u0627\u062a \u0645\u0633\u0644\u0633\u0644\u0627\u062a \u0645\u0648\u062c\u0648\u062f\u0629 \u0641\u064a \u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a", + "HeaderDefaultRecordingSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629", + "OptionEnableRecordingSubfolders": "\u0625\u0646\u0634\u0626 \u0645\u062c\u0644\u062f\u0627\u064b \u0641\u0631\u0639\u064a\u0627\u064b \u0644\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0645\u062b\u0644 \u0627\u0644\u0631\u064a\u0627\u0636\u0629 \u0648\u0627\u0644\u0625\u0637\u0641\u0627\u0644 \u0648\u060c\u060c \u0625\u0644\u062e.", + "HeaderSubtitles": "\u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a", + "HeaderVideos": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a", + "LabelHardwareAccelerationType": "\u0627\u0644\u062a\u0633\u0631\u064a\u0639 \u0628\u0639\u062a\u0627\u062f \u0627\u0644\u062d\u0627\u0633\u0628", + "LabelHardwareAccelerationTypeHelp": "\u0645\u062a\u0627\u062d \u0641\u064a \u0627\u0644\u0623\u0646\u0638\u0645\u0629 \u0627\u0644\u0645\u062f\u0639\u0648\u0645\u0629 \u0641\u0642\u0637.", + "ButtonServerDashboard": "\u0644\u0648\u062d\u0629 \u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645", + "HeaderAdmin": "\u0627\u0644\u0645\u062f\u064a\u0631", + "ButtonSignOut": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062e\u0631\u0648\u062c", + "HeaderCameraUpload": "\u0631\u0641\u0639 \u0644\u0642\u0637\u0627\u062a \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627", + "SelectCameraUploadServers": "\u0631\u0641\u0639 \u0635\u0648\u0631 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627 \u0625\u0644\u0649 \u0627\u0644\u062e\u0648\u0627\u062f\u0645 \u0627\u0644\u062a\u0627\u0644\u064a\u0629:", + "ButtonClear": "\u062a\u0635\u0641\u064a\u0629", + "LabelFolder": "\u0645\u062c\u0644\u062f:", + "HeadersFolders": "\u0645\u062c\u0644\u062f:", + "LabelDisplayName": "\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0645\u0639\u0631\u0648\u0636:", + "HeaderNewRecording": "\u0645\u0642\u0637\u0639 \u0645\u0633\u062c\u0644 \u062c\u062f\u064a\u062f", + "LabelCodecIntrosPath": "\u0645\u0633\u0627\u0631 \u0627\u0644\u0645\u0642\u0637\u0639 \u0627\u0644\u062f\u0639\u0627\u0626\u064a \u0644\u0644\u0643\u0648\u062f\u0643:", + "LabelCodecIntrosPathHelp": "\u0647\u0630\u0627 \u0645\u062c\u0644\u062f \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0645\u0644\u0641\u0627\u062a \u0641\u064a\u062f\u064a\u0648. \u0625\u0630\u0627 \u0643\u0627\u0646 \u0645\u0644\u0641 \u0627\u0644\u0645\u0642\u0637\u0639 \u0627\u0644\u062f\u0639\u0627\u0626\u064a \u064a\u062a\u0648\u0627\u0641\u0642 \u0645\u0639 \u0643\u0648\u062f\u0643 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0623\u0648\u0643\u0648\u062f\u0643 \u0627\u0644\u0635\u0648\u062a \u0623\u0648\u0639\u0631\u064a\u0636\u0629 \u0627\u0644\u0635\u0648\u062a \u0623\u0648 \u0627\u0644\u0628\u0637\u0627\u0642\u0629\u060c \u0641\u0625\u0646\u0647 \u0633\u064a\u0634\u063a\u0644 \u0642\u0628\u0644 \u0628\u062f\u0627\u064a\u0629 \u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0631\u0626\u064a\u0633\u064a.", + "OptionConvertRecordingsToStreamingFormat": "\u062d\u0648\u0644 \u0627\u0644\u062a\u0633\u062c\u064a\u0644\u0627\u062a \u0625\u0644\u0649 \u062a\u062f\u0641\u0642\u0627\u062a \u0630\u0627\u062a \u0635\u064a\u063a \u0645\u0639\u0631\u0648\u0641\u0629 \u0628\u0634\u0643\u0644 \u0622\u0644\u064a.", + "OptionConvertRecordingsToStreamingFormatHelp": "\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0633\u062a\u062d\u0648\u0644 \u0639\u0644\u0649 \u0627\u0644\u0637\u0627\u0626\u0631 \u0625\u0644\u0649 mp4 \u0623\u0648 mkv \u0644\u0623\u062c\u0644 \u062a\u0634\u063a\u064a\u0644 \u0623\u0643\u062b\u0631 \u0633\u0647\u0648\u0644\u0629 \u0648\u0633\u0644\u0627\u0633\u0629 \u0639\u0644\u0649 \u0623\u062c\u0647\u0632\u062a\u0643.", + "FeatureRequiresEmbyPremiere": "\u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629 \u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0633\u0627\u0631\u064a.", + "FileExtension": "\u0627\u0645\u062a\u062f\u0627\u062f \u0627\u0644\u0645\u0644\u0641", + "OptionPlayNextEpisodeAutomatically": "\u0634\u063a\u0644 \u0627\u0644\u062d\u0644\u0642\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b", + "OptionDownloadImagesInAdvance": "\u0623\u0646\u0632\u0644 \u0627\u0644\u0635\u0648\u0631 \u0645\u0633\u0628\u0642\u0627\u064b", "SettingsSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0627\u064b\u060c \u0645\u0639\u0638\u0645 \u0627\u0644\u0635\u0648\u0631 \u064a\u062a\u0645 \u062a\u062d\u0645\u064a\u0644\u0647\u0627 \u0639\u0646\u062f\u0645\u0627 \u062a\u064f\u0637\u0644\u0628 \u0645\u0646 \u0642\u0628\u0644 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a. \u0641\u0639\u0644 \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629 \u0644\u0625\u0646\u0632\u0627\u0644 \u062c\u0645\u064a\u0639 \u0627\u0644\u0635\u0648\u0631 \u0645\u0633\u0628\u0642\u0627\u064b \u062d\u0627\u0644 \u0625\u062f\u0631\u0627\u062c \u0648\u0633\u0627\u0626\u0637 \u062c\u062f\u064a\u062f\u0629.", "Users": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", "Delete": "\u062d\u0630\u0641", "Password": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", "DeleteImage": "\u062d\u0630\u0641 \u0635\u0648\u0631\u0629", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", + "MessageThankYouForSupporting": "\u0634\u0643\u0631\u0627\u064b \u0644\u062f\u0639\u0645\u0643 \u0645\u0634\u0631\u0648\u0639 \u0623\u0645\u0628\u064a.", "DeleteImageConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0635\u0648\u0631\u0629\u061f", "FileReadCancelled": "\u062a\u0645 \u0627\u0644\u063a\u0627\u0621 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u0644\u0641.", "FileNotFound": "\u0627\u0644\u0645\u0644\u0641 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f.", "FileReadError": "\u062d\u062f\u062b \u062e\u0637\u0623 \u0628\u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u0644\u0641.", "DeleteUser": "\u062d\u0630\u0641 \u0645\u0633\u062a\u062e\u062f\u0645", "DeleteUserConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0645\u0646 \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u061f", - "PasswordResetHeader": "Reset Password", + "PasswordResetHeader": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", "PasswordResetComplete": "\u0644\u0642\u062f \u062a\u0645 \u0627\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631.", - "PinCodeResetComplete": "The pin code has been reset.", + "PinCodeResetComplete": "\u062a\u0645\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a", "PasswordResetConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0645\u0646 \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631\u061f", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", + "PinCodeResetConfirmation": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a\u061f", + "HeaderPinCodeReset": "\u0623\u0639\u062f \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a", "PasswordSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631.", "PasswordMatchError": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0648\u062a\u0627\u0643\u064a\u062f\u0647\u0627 \u064a\u062c\u0628 \u0627\u0646 \u064a\u062a\u0637\u0627\u0628\u0642\u0627\u0646.", "UninstallPluginHeader": "\u0627\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0644\u062d\u0642", - "UninstallPluginConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u063a\u0627\u0621 {0} \u061f", - "NoPluginConfigurationMessage": "\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u062d\u0642 \u0644\u064a\u0633 \u0644\u0647 \u0636\u0628\u0637.", + "UninstallPluginConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u0625\u0632\u0627\u0644\u0629 \u062a\u062b\u0628\u064a\u062a {0}\u061f", + "NoPluginConfigurationMessage": "\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u062d\u0642 \u0644\u064a\u0633 \u0644\u0647 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u062a\u0636\u0628\u0637.", "NoPluginsInstalledMessage": "\u0644\u0627 \u064a\u0648\u062c\u062f \u0644\u062f\u064a\u0643 \u0627\u0649 \u0645\u0644\u0627\u062d\u0642 \u0645\u062b\u0628\u062a\u0629.", "BrowsePluginCatalogMessage": "\u062a\u0635\u0641\u062d \u0642\u0627\u0626\u0645\u062a\u0646\u0627 \u0644\u0644\u0645\u0644\u062d\u0642 \u0644\u062a\u0631\u0649 \u0627\u0644\u0645\u062a\u0648\u0641\u0631 \u0645\u0646 \u0627\u0644\u0645\u0644\u0627\u062d\u0642.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "Series": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "Cancelled", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", - "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonPlaylist": "Playlist", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageRecordingSaved": "Recording saved.", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "HeaderLibraryFolders": "Media Folders", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following duplicates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonShuffle": "Shuffle", - "ButtonResume": "Resume", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "MetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", + "HeaderNewApiKey": "\u0645\u0641\u062a\u0627\u062d api \u062c\u062f\u064a\u062f", + "LabelAppName": "\u0627\u0633\u0645 \u0627\u0644\u062a\u0637\u0628\u064a\u0642", + "LabelAppNameExample": "\u0645\u062b\u0627\u0644: Sickbeard\u060c NzbDrone", + "HeaderNewApiKeyHelp": "\u0625\u0645\u0646\u062d \u0627\u0644\u062a\u0637\u0628\u064a\u0642 \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a", + "MessageKeyEmailedTo": "\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0645\u0641\u062a\u0627\u062d \u0625\u0644\u0649 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a {0}.", + "MessageKeysLinked": "\u062a\u0645 \u0631\u0628\u0637 \u0627\u0644\u0645\u0641\u062a\u0627\u062d", + "HeaderConfirmation": "\u062a\u0623\u0643\u064a\u062f", + "MessageKeyUpdated": "\u0634\u0643\u0631\u0627\u064b \u0644\u0643. \u0644\u0642\u062f \u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632.", + "MessageKeyRemoved": "\u0634\u0643\u0631\u0627\u064b \u0644\u0643. \u0644\u0642\u062f \u062a\u0645\u062a \u0625\u0632\u0627\u0644\u0629 \u0645\u0641\u062a\u0627\u062d \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632.", + "TextEnjoyBonusFeatures": "\u0627\u0633\u062a\u0645\u062a\u0639 \u0628\u0627\u0644\u0645\u0632\u0627\u064a\u0627 \u0627\u0644\u0625\u0636\u0627\u0641\u064a\u0629", + "ButtonCancelSyncJob": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629", + "HeaderAddTag": "\u0625\u0636\u0627\u0641\u0629 \u0628\u0637\u0627\u0642\u0629", + "LabelTag": "\u0627\u0644\u0628\u0637\u0627\u0642\u0629:", + "ButtonSelectView": "\u0625\u062e\u062a\u0631 \u0637\u0631\u064a\u0642\u0629 \u0639\u0631\u0636", + "HeaderSelectDate": "\u0625\u062e\u062a\u0631 \u0627\u0644\u062a\u0627\u0631\u064a\u062e", + "ServerUpdateNeeded": "\u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0628\u062d\u0627\u062c\u0629 \u0625\u0644\u0649 \u0627\u0644\u062a\u062d\u062f\u064a\u062b. \u0644\u0625\u0646\u0632\u0627\u0644 \u0623\u062d\u062f\u062b \u0625\u0635\u062f\u0627\u0631 \u0623\u0645\u0628\u064a\u060c \u0627\u0644\u0631\u062c\u0627\u0621 \u0632\u064a\u0627\u0631\u0629 {0}", + "LabelFromHelp": "\u0645\u062b\u0627\u0644: {0} (\u0639\u0644\u0649 \u0627\u0644\u062e\u0627\u062f\u0645)", + "HeaderMyMedia": "\u0648\u0633\u0627\u0626\u0637\u064a", + "ErrorLaunchingChromecast": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u062a\u0634\u063a\u064a\u0644 \u0643\u0631\u0648\u0645\u0643\u0627\u0633\u062a. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u062c\u0647\u0627\u0632\u0643 \u0645\u0648\u0635\u0644 \u0625\u0644\u0649 \u0627\u0644\u0634\u0628\u0643\u0629 \u0627\u0644\u0644\u0627\u0633\u0644\u0643\u064a\u0629", + "MessageErrorLoadingSupporterInfo": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u062a\u062d\u0645\u064a\u0644 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0644\u0627\u062d\u0642\u0627\u064b.", + "HeaderConfirmRemoveUser": "\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", + "ValueTimeLimitSingleHour": "\u0627\u0644\u062d\u062f \u0627\u0644\u0632\u0645\u0646\u064a: \u0633\u0627\u0639\u0629 \u0648\u0627\u062d\u062f\u0629", + "ValueTimeLimitMultiHour": "\u0627\u0644\u062d\u062f \u0627\u0644\u0632\u0645\u0646\u064a: {0} \u0633\u0627\u0639\u0629\/\u0633\u0627\u0639\u0627\u062a", + "PluginCategoryGeneral": "\u0627\u0644\u0639\u0627\u0645\u0629", + "PluginCategoryContentProvider": "\u0645\u0632\u0648\u062f\u064a \u0627\u0644\u0645\u062d\u062a\u0648\u0649", + "PluginCategoryScreenSaver": "\u0634\u0627\u0634\u0627\u062a \u0627\u0644\u062a\u0648\u0642\u0641", + "PluginCategoryTheme": "\u0627\u0644\u0633\u0645\u0627\u062a \u0627\u0644\u0645\u0638\u0647\u0631\u064a\u0629", + "PluginCategorySync": "\u0645\u0632\u0627\u0645\u0646\u0629", + "PluginCategorySocialIntegration": "\u0627\u0644\u0634\u0628\u0643\u0627\u062a \u0627\u0644\u0627\u062c\u062a\u0645\u0627\u0639\u064a\u0629", + "PluginCategoryNotifications": "\u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a", + "PluginCategoryMetadata": "\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a", + "PluginCategoryLiveTV": "\u0627\u0644\u062a\u0644\u0641\u0627\u0632 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "PluginCategoryChannel": "\u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "HeaderSearch": "\u0628\u062d\u062b", + "ValueDateCreated": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0646\u0634\u0627\u0621: {0}", + "LabelArtist": "\u0627\u0644\u0641\u0646\u0627\u0646", + "LabelMovie": "\u0627\u0644\u0641\u064a\u0644\u0645", + "LabelMusicVideo": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a", + "LabelEpisode": "\u0627\u0644\u062d\u0644\u0642\u0629", + "Series": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644", + "LabelStopping": "\u0642\u064a\u062f \u0627\u0644\u0625\u064a\u0642\u0627\u0641", + "LabelCancelled": "\u062a\u0645 \u0627\u0644\u0625\u0644\u063a\u0627\u0621", + "ButtonDownload": "\u0625\u0646\u0632\u0627\u0644", + "SyncJobStatusQueued": "\u0641\u064a \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631", + "SyncJobStatusConverting": "\u062c\u0627\u0631\u0650 \u0627\u0644\u062a\u062d\u0648\u064a\u0644", + "SyncJobStatusFailed": "\u0627\u0644\u0639\u0645\u0644\u064a\u0629 \u0641\u0634\u0644\u062a", + "SyncJobStatusCancelled": "\u062a\u0645 \u0627\u0644\u0625\u0644\u063a\u0627\u0621", + "SyncJobStatusCompleted": "\u062a\u0645\u062a \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629", + "SyncJobStatusReadyToTransfer": "\u062c\u0627\u0647\u0632 \u0644\u0644\u0646\u0641\u0644", + "SyncJobStatusTransferring": "\u0642\u064a\u062f \u0627\u0644\u0646\u0642\u0644", + "SyncJobStatusCompletedWithError": "\u062a\u0645\u062a \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u0645\u0639 \u0628\u0639\u0636 \u0627\u0644\u0623\u062e\u0637\u0627\u0621", + "SyncJobItemStatusReadyToTransfer": "\u062c\u0627\u0647\u0632 \u0644\u0644\u0646\u0642\u0644", + "LabelCollection": "\u0627\u0644\u0645\u062c\u0645\u0648\u0639\u0629", + "HeaderDevices": "\u0627\u0644\u0623\u062c\u0647\u0632\u0629", + "ButtonScheduledTasks": "\u0627\u0644\u0645\u0647\u0627\u0645 \u0627\u0644\u0645\u062c\u062f\u0648\u0644\u0629", + "MessageItemsAdded": "\u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0645\u0636\u0627\u0641\u0629", + "HeaderSelectCertificatePath": "\u0625\u062e\u062a\u0631 \u0645\u0633\u0627\u0631 \u0627\u0644\u0634\u0647\u0627\u062f\u0629", + "HeaderSupporterBenefit": "\u0648\u062c\u0648\u062f \u0627\u0634\u062a\u0631\u0627\u0643 \u0633\u0627\u0631\u064a \u0644\u0640 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u064a\u0648\u0641\u0631\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0632\u0627\u064a\u0627 \u0645\u062b\u0644 \u062a\u0645\u0643\u064a\u0644 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629\u060c \u0648\u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a \u0627\u0644\u0645\u0645\u062a\u0627\u0632\u0629\u060c \u0648\u0645\u062d\u062a\u0648\u064a\u0627\u062a \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a \u0648\u0627\u0644\u0645\u0632\u064a\u062f \u063a\u064a\u0631\u0647\u0627.\n{0} \u0625\u0639\u0631\u0641 \u0627\u0644\u0645\u0632\u064a\u062f {1}.", + "HeaderWelcomeToProjectServerDashboard": "\u0645\u0631\u062d\u0628\u0627\u064b \u0628\u0643 \u0641\u064a \u0644\u0648\u062d\u0629 \u0639\u062f\u0627\u062f\u0627\u062a \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a", + "HeaderWelcomeToProjectWebClient": "\u0645\u0631\u062d\u0628\u0627\u064b \u0628\u0643 \u0641\u064a \u0623\u0645\u0628\u064a", + "ButtonTakeTheTour": "\u0642\u0645 \u0628\u0627\u0644\u062c\u0648\u0644\u0629 \u0627\u0644\u0622\u0646", + "HeaderWelcomeBack": "\u0645\u0631\u062d\u0628\u0627\u064b \u0628\u0643 \u0645\u062c\u062f\u062f\u0627\u064b!", + "ButtonTakeTheTourToSeeWhatsNew": "\u0642\u0645 \u0628\u0627\u0644\u062c\u0648\u0644\u0629 \u0627\u0644\u0622\u0646 \u0644\u062a\u062a\u063a\u0631\u0641 \u0639\u0644\u0649 \u0627\u0644\u0645\u0633\u062a\u062c\u062f\u0627\u062a", + "MessageNoSyncJobsFound": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0647\u0645\u0627\u0645 \u0645\u0632\u0627\u0645\u0646\u0629. \u0642\u0645 \u0628\u0625\u0646\u0634\u0627\u0621 \u0645\u0647\u0627\u0645 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0632\u0631 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u0627\u0644\u0645\u0648\u062c\u0648\u062f \u0641\u064a \u0623\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0637\u0628\u064a\u0642.", + "MessageDownloadsFound": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0625\u0646\u0632\u0627\u0644\u0627\u062a \u0645\u0642\u0637\u0648\u0639\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644. \u0642\u0645 \u0628\u0625\u062a\u0627\u062d\u0629 \u0648\u0633\u0627\u0626\u0637\u0643 \u0639\u0646\u062f\u0645\u0627 \u064a\u0642\u0637\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0648\u0630\u0644\u0643 \u0628\u0636\u063a\u0637 \u0632\u0631 \"\u0625\u062c\u0639\u0644\u0647\u0627 \u0645\u062a\u0627\u062d\u0629 \u0645\u0639 \u0627\u0646\u0642\u0637\u0627\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644\" \u0627\u0644\u0645\u0648\u062c\u0648\u062f \u0641\u064a \u0623\u0631\u062c\u0627\u0621 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c.", + "HeaderSelectDevices": "\u0625\u062e\u062a\u0631 \u0627\u0644\u062c\u0647\u0627\u0632", + "ButtonCancelItem": "\u0623\u0644\u063a \u0627\u0644\u0639\u0646\u0635\u0631", + "ButtonQueueForRetry": "\u0623\u0636\u0641 \u0625\u0644\u0649 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631 \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629", + "ButtonReenable": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0641\u0639\u064a\u0644", + "SyncJobItemStatusSyncedMarkForRemoval": "\u0645\u0624\u0634\u0651\u064e\u0631 \u0644\u0644\u0625\u0632\u0627\u0644\u0629", + "LabelAbortedByServerShutdown": "(\u062a\u0645 \u0625\u0647\u0645\u0627\u0644\u0647 \u0628\u0633\u0628\u0628 \u0639\u0645\u0644\u064a\u0629 \u0625\u063a\u0644\u0627\u0642 \u0627\u0644\u062e\u0627\u062f\u0645)", + "LabelScheduledTaskLastRan": "\u0622\u062e\u0631 \u062a\u0634\u063a\u064a\u0644 {0}\u060c \u0648\u0642\u062f \u0627\u0633\u062a\u063a\u0631\u0642 {1}.", + "HeaderDeleteTaskTrigger": "\u062d\u0630\u0641 \u0632\u0646\u0627\u062f \u0627\u0644\u0645\u0647\u0645\u0629", + "MessageDeleteTaskTrigger": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0632\u0646\u0627\u062f \u0627\u0644\u0645\u0647\u0645\u0629\u061f", + "MessageNoPluginsInstalled": "\u0644\u064a\u0633 \u0639\u0646\u062f\u0643 \u0623\u064a \u0645\u0644\u062d\u0642\u0627\u062a \u0645\u062b\u0628\u062a\u0629.", + "MessageNoPluginsDueToAppStore": "\u0644\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a\u060c \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u062a\u0637\u0628\u064a\u0642 \u0623\u0645\u0628\u064a \u0644\u0644\u0648\u064a\u0628.", + "LabelVersionInstalled": "{0} \u0645\u062b\u0628\u062a\u0629", + "LabelNumberReviews": "{0} \u0645\u0642\u064a\u0645\u0629 \u0643\u062a\u0627\u0628\u064a\u0627\u064b", + "LabelFree": "\u0645\u062c\u0627\u0646\u064a\u0629", + "HeaderPlaybackError": "\u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "MessagePlaybackErrorNotAllowed": "\u0623\u0646\u062a \u062d\u0627\u0644\u064a\u0627\u064b \u0644\u0633\u062a \u0645\u062e\u0648\u0644\u0627\u064b \u0644\u062a\u0634\u063a\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u0645\u062d\u062a\u0648\u0649. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0645\u0639 \u0645\u062f\u064a\u0631 \u0627\u0644\u0646\u0638\u0627\u0645 \u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644.", + "MessagePlaybackErrorNoCompatibleStream": "\u0644\u0627 \u062a\u0648\u062c\u062f \u062a\u062f\u0641\u0642\u0627\u062a \u0645\u062a\u0627\u062d\u0629 \u062d\u0627\u0644\u064a\u0627\u064b. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0644\u0627\u062d\u0642\u0627\u064b \u0623\u0648 \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0645\u0639 \u0645\u062f\u064a\u0631 \u0627\u0644\u0646\u0638\u0627\u0645 \u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644.", + "MessagePlaybackErrorPlaceHolder": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u062f\u0633\u0643 \u0644\u062a\u0634\u063a\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u0641\u064a\u062f\u064a\u0648.", + "HeaderSelectAudio": "\u0627\u062e\u062a\u0631 \u0627\u0644\u0635\u0648\u062a", + "HeaderSelectSubtitles": "\u0627\u062e\u062a\u0631 \u0627\u0644\u062a\u0631\u062c\u0645\u0629", + "ButtonMarkForRemoval": "\u0625\u062e\u0631\u0627\u062c \u0645\u0646 \u0627\u0644\u062c\u0647\u0627\u0632", + "ButtonUnmarkForRemoval": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0625\u062e\u0631\u0627\u062c \u0645\u0646 \u0627\u0644\u062c\u0647\u0627\u0632", + "LabelDefaultStream": "(\u0625\u0641\u062a\u0631\u0627\u0636\u064a)", + "LabelForcedStream": "(\u0625\u062c\u0628\u0627\u0631)", + "LabelDefaultForcedStream": "(\u0625\u0641\u062a\u0631\u0627\u0636\u064a\/\u0625\u062c\u0628\u0627\u0631)", + "LabelUnknownLanguage": "\u0644\u063a\u0629 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\u0629", + "ButtonMute": "\u0625\u0635\u0645\u0627\u062a", + "ButtonUnmute": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0625\u0635\u0645\u0627\u062a", + "ButtonPlaylist": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "LabelEnabled": "\u0645\u0641\u0639\u0644", + "LabelDisabled": "\u063a\u064a\u0631 \u0645\u0641\u0639\u0644", + "ButtonMoreInformation": "\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a", + "LabelNoUnreadNotifications": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0625\u0634\u0639\u0627\u0631\u0627\u062a \u063a\u064a\u0631 \u0645\u0642\u0631\u0648\u0621\u0629.", + "MessageInvalidUser": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0623\u0648 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u063a\u064a\u0631 \u0635\u062d\u064a\u062d\u0629. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.", + "HeaderLoginFailure": "\u0641\u0634\u0644 \u0641\u064a \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644", + "RecommendationBecauseYouLike": "\u0644\u0623\u0646\u0643 \u0623\u062d\u0628\u0628\u062a {0}", + "RecommendationBecauseYouWatched": "\u0644\u0623\u0646\u0643 \u0634\u0627\u0647\u062f\u062a {0}", + "RecommendationDirectedBy": "\u0625\u062e\u0631\u0627\u062c {0}", + "RecommendationStarring": "\u0628\u0637\u0648\u0644\u0629 {0}", + "HeaderConfirmRecordingCancellation": "\u0623\u0643\u0651\u062f \u0625\u0644\u063a\u0627\u0621 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0645\u0642\u0637\u0639", + "MessageConfirmRecordingCancellation": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0625\u0644\u063a\u0627\u0621 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0645\u0642\u0637\u0639\u061f", + "MessageRecordingCancelled": "\u062a\u0645 \u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u062a\u0633\u062c\u064a\u0644", + "MessageRecordingScheduled": "\u062a\u0645 \u062c\u062f\u0648\u0644\u0629 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0645\u0642\u0637\u0639", + "HeaderConfirmSeriesCancellation": "\u0623\u0643\u062f \u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a", + "HeaderConfirmRecordingDeletion": "\u0623\u0643\u0651\u062f \u062d\u0630\u0641 \u0627\u0644\u062a\u0633\u062c\u064a\u0644", + "MessageRecordingSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0645\u0642\u0637\u0639 \u0627\u0644\u0645\u0633\u062c\u0644.", + "OptionWeekend": "\u0627\u0644\u0639\u0637\u0644 \u0627\u0644\u0623\u0633\u0628\u0648\u0639\u064a\u0629", + "OptionWeekday": "\u0623\u064a\u0627\u0645 \u0627\u0644\u0623\u0633\u0628\u0648\u0639", + "MessageConfirmPathSubstitutionDeletion": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0623\u0646 \u062a\u062d\u0630\u0641 \u0625\u0628\u062f\u0627\u0644 \u0627\u0644\u0645\u0633\u0627\u0631\u0627\u062a \u0647\u0630\u0627\u061f", + "LiveTvUpdateAvailable": "(\u0647\u0646\u0627\u0643 \u062a\u062d\u062f\u064a\u062b\u0627\u062a \u0645\u062a\u0648\u0641\u0631\u0629)", + "LabelVersionUpToDate": "\u0645\u062d\u062f\u062b \u0625\u0644\u0649 \u0627\u0644\u0625\u0635\u062f\u0627\u0631 \u0627\u0644\u0623\u062e\u064a\u0631!", + "ButtonResetTuner": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0645\u0648\u0644\u0641", + "HeaderResetTuner": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0645\u0648\u0644\u0641", + "MessageConfirmResetTuner": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0625\u0639\u0627\u062f\u0629 \u062a\u0647\u064a\u0626\u0629 \u0627\u0644\u0645\u0648\u0644\u0641\u061f \u0623\u064a \u0645\u0634\u063a\u0644 \u0623\u0648 \u0645\u0633\u062c\u0644 \u064a\u0633\u062a\u062e\u062f\u0645 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0644\u0641 \u0633\u064a\u0642\u0637\u0639 \u0628\u0634\u0643\u0644 \u0645\u0641\u0627\u062c\u0626.", + "ButtonCancelSeries": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0633\u0644\u0633\u0644", + "HeaderSeriesRecordings": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a", + "LabelAnytime": "\u0623\u064a \u0648\u0642\u062a", + "StatusRecording": "\u062c\u0627\u0631\u0650 \u0627\u0644\u062a\u0633\u062c\u064a\u0644", + "StatusWatching": "\u0642\u064a\u062f \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629", + "StatusRecordingProgram": "\u062c\u0627\u0631\u0650 \u062a\u0633\u062c\u064a\u0644 {0}", + "StatusWatchingProgram": "\u0642\u064a\u062f \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629 {0}", + "HeaderSplitMedia": "\u062c\u0632\u0651\u0626 \u0627\u0644\u0648\u0633\u064a\u0637\u0629 \u0625\u0644\u0649 \u062c\u0632\u0626\u064a\u0646", + "MessageConfirmSplitMedia": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0623\u0646 \u062a\u062c\u0632\u0651\u0626 \u0645\u0635\u0627\u062f\u0631 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0625\u0644\u0649 \u0639\u0646\u0627\u0635\u0631 \u0645\u0646\u0641\u0635\u0644\u0629\u061f", + "HeaderError": "\u062d\u062f\u062b \u062e\u0637\u0623", + "MessageChromecastConnectionError": "\u062c\u0647\u0627\u0632 \u0627\u0633\u062a\u0642\u0628\u0627\u0631 \u0643\u0631\u0648\u0645\u0643\u0627\u0633\u062a \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u063a\u064a\u0631 \u0642\u0627\u062f\u0631 \u0639\u0644\u0649 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0628\u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0636\u0628\u0637 \u0627\u062a\u0635\u0627\u0644\u0647 \u062b\u0645 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u062c\u062f\u062f\u0627\u064b.", + "HeaderLibraryFolders": "\u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "HeaderFavoriteMovies": "\u0627\u0644\u0623\u0641\u0644\u0627\u0645 \u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "HeaderFavoriteShows": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a \u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "HeaderFavoriteEpisodes": "\u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "HeaderFavoriteGames": "\u0627\u0644\u0623\u0644\u0639\u0627\u0628 \u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "HeaderConfirmProfileDeletion": "\u0623\u0643\u0651\u062f \u062d\u0630\u0641 \u0627\u0644\u0639\u0631\u064a\u0636\u0629", + "MessageConfirmProfileDeletion": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0639\u0631\u064a\u0636\u0629\u061f", + "HeaderSelectServerCachePath": "\u0625\u062e\u062a\u0631 \u0645\u0633\u0627\u0631 \u0643\u0627\u0634\u0629 \u0627\u0644\u062e\u0627\u062f\u0645", + "HeaderSelectTranscodingPath": "\u0625\u062e\u062a\u0631 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0645\u0624\u0642\u062a \u0644\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a", + "HeaderSelectMetadataPath": "\u0625\u062e\u062a\u0631 \u0645\u0633\u0627\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a", + "HeaderSelectServerCachePathHelp": "\u062a\u0635\u0641\u062d \u0623\u0648 \u0623\u062f\u062e\u0644 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0630\u064a \u062a\u0631\u063a\u0628 \u0623\u0646 \u064a\u064f\u0633\u062a\u062e\u062f\u0645 \u0643\u0627\u0634\u0629 \u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645. \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0644\u062f \u0642\u0627\u0628\u0644 \u0644\u0644\u0643\u062a\u0627\u0628\u0629 \u0641\u064a\u0647.", + "HeaderSelectTranscodingPathHelp": "\u062a\u0635\u0641\u062d \u0623\u0648 \u0623\u062f\u062e\u0644 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0630\u064a \u062a\u0631\u063a\u0628 \u0623\u0646 \u064a\u064f\u0633\u062a\u062e\u062f\u0645 \u0644\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0624\u0642\u062a\u0629 \u0644\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a. \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0644\u062f \u0642\u0627\u0628\u0644 \u0644\u0644\u0643\u062a\u0627\u0628\u0629 \u0641\u064a\u0647.", + "HeaderSelectMetadataPathHelp": "\u062a\u0635\u0641\u062d \u0623\u0648 \u0623\u062f\u062e\u0644 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0630\u064a \u062a\u0631\u063a\u0628 \u0623\u0646 \u064a\u064f\u0633\u062a\u062e\u062f\u0645 \u0644\u062d\u0641\u0638 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a. \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0644\u062f \u0642\u0627\u0628\u0644 \u0644\u0644\u0643\u062a\u0627\u0628\u0629 \u0641\u064a\u0647.", + "HeaderFavoriteAlbums": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "HeaderLatestChannelMedia": "\u0623\u062d\u062f\u062b \u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "ButtonOrganizeFile": "\u0631\u062a\u0651\u0628 \u0627\u0644\u0645\u0644\u0641\u0627\u062a", + "ButtonDeleteFile": "\u0625\u062d\u0630\u0641 \u0627\u0644\u0645\u0644\u0641\u0627\u062a", + "HeaderOrganizeFile": "\u0631\u062a\u0651\u0628 \u0627\u0644\u0645\u0644\u0641\u0627\u062a", + "HeaderDeleteFile": "\u0625\u062d\u0630\u0641 \u0627\u0644\u0645\u0644\u0641\u0627\u062a", + "StatusSkipped": "\u062a\u0645 \u0627\u0644\u062a\u062e\u0637\u0651\u064a", + "StatusFailed": "\u0627\u0644\u0639\u0645\u0644\u064a\u0629 \u0641\u0634\u0644\u062a", + "StatusSuccess": "\u062a\u0645\u062a \u0628\u0646\u062c\u0627\u062d", + "MessageFileWillBeDeleted": "\u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0633\u062a\u062d\u0630\u0641", + "MessageSureYouWishToProceed": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u0625\u0642\u062f\u0627\u0645 \u0639\u0644\u0649 \u0630\u0644\u0643\u061f", + "MessageDuplicatesWillBeDeleted": "\u0628\u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0630\u0644\u0643\u060c \u0641\u0625\u0646 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0643\u0631\u0631\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0633\u062a\u062d\u0630\u0641:", + "MessageFollowingFileWillBeMovedFrom": "\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u062a\u0627\u0644\u064a \u0633\u064a\u0646\u0642\u0644 \u0645\u0646:", + "MessageDestinationTo": "\u0625\u0644\u0649:", + "HeaderSelectWatchFolder": "\u0625\u062e\u062a\u0631 \u0645\u062c\u0644\u062f \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629", + "HeaderSelectWatchFolderHelp": "\u062a\u0635\u0641\u062d \u0623\u0648 \u0623\u062f\u062e\u0644 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0630\u064a \u062a\u0631\u063a\u0628 \u0623\u0646 \u064a\u064f\u0633\u062a\u062e\u062f\u0645 \u0644\u0645\u062c\u0644\u062f \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629. \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0644\u062f \u0642\u0627\u0628\u0644 \u0644\u0644\u0643\u062a\u0627\u0628\u0629 \u0641\u064a\u0647.", + "OrganizePatternResult": "\u0627\u0644\u0646\u062a\u064a\u062c\u0629: {0}", + "AutoOrganizeError": "\u062e\u0637\u0623 \u0641\u064a \u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0645\u0644\u0641\u0627\u062a", + "FileOrganizeManually": "\u0631\u062a\u0651\u0628 \u0627\u0644\u0645\u0644\u0641\u0627\u062a", + "ErrorOrganizingFileWithErrorCode": "\u062d\u0635\u0644 \u062e\u0637\u0623 \u0641\u064a \u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0645\u0644\u0641\u0627\u062a. \u0631\u0645\u0631 \u0627\u0644\u062e\u0637\u0623 \u0647\u0648: {0}.", + "HeaderRestart": "\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "HeaderShutdown": "\u0625\u0646\u0647\u0627\u0621 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "MessageConfirmRestart": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0623\u0646 \u062a\u0639\u064a\u062f \u062a\u0634\u063a\u064a\u0644 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a\u061f", + "MessageConfirmShutdown": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0623\u0646 \u062a\u0646\u0647\u064a \u062a\u0634\u063a\u064a\u0644 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a\u061f", + "ValueItemCount": "{0} \u0639\u0646\u0635\u0631", + "ValueItemCountPlural": "{0} \u0639\u0646\u0635\u0631\/\u0639\u0646\u0627\u0635\u0631", + "NewVersionOfSomethingAvailable": "\u0647\u0646\u0627\u0643 \u0625\u0635\u062f\u0627\u0631 \u062c\u062f\u064a\u062f \u0645\u062a\u0648\u0641\u0631 \u0631\u0642\u0645\u0647 {0}!", + "VersionXIsAvailableForDownload": "\u0627\u0644\u0625\u0635\u062f\u0627\u0631 \u0631\u0642\u0645 {0} \u0645\u062a\u0648\u0641\u0631 \u0627\u0644\u0622\u0646 \u0644\u0644\u0625\u0646\u0632\u0627\u0644", + "LabelVersionNumber": "\u0627\u0644\u0625\u0635\u062f\u0627\u0631 {0}", + "LabelPlayMethodTranscoding": "\u062c\u0627\u0631\u0650 \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a", + "LabelPlayMethodDirectStream": "\u0628\u062b \u0627\u0644\u062a\u062f\u0641\u0642 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "LabelPlayMethodDirectPlay": "\u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "LabelAudioCodec": "\u0645\u0642\u0637\u0639 \u0627\u0644\u0635\u0648\u062a: {0}", + "LabelVideoCodec": "\u0645\u0642\u0637\u0639 \u0627\u0644\u0641\u064a\u062f\u064a\u0648: {0}", + "LabelLocalAccessUrl": "\u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u0634\u0628\u0643\u0629 \u0627\u0644\u062f\u0627\u062e\u0644\u064a\u0629: {0}", + "LabelRemoteAccessUrl": "\u0627\u062a\u0635\u0627\u0644 \u0639\u0646 \u0628\u0639\u062f: {0}", + "LabelRunningOnPort": "\u0645\u062a\u0635\u0644 \u0639\u0628\u0631 \u0645\u0646\u0641\u0630 http\u0640 {0}", + "LabelRunningOnPorts": "\u0645\u062a\u0635\u0644 \u0639\u0628\u0631 \u0645\u0646\u0641\u0630 http\u0640 {0}\u060c \u0648\u0645\u0646\u0641\u0630 https\u0640 {1}.", + "HeaderLatestFromChannel": "\u0627\u0644\u0623\u062d\u062f\u062b \u0645\u0646 {0}", + "ButtonRemoteControl": "\u0627\u0644\u062a\u062d\u0643\u0645 \u0639\u0646 \u0628\u0639\u062f", + "HeaderLatestTvRecordings": "\u0623\u062d\u062f\u062b \u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0633\u062c\u0644\u0629", + "LabelCurrentPath": "\u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u062d\u0627\u0644\u064a", + "HeaderSelectMediaPath": "\u0625\u062e\u062a\u0631 \u0645\u0633\u0627\u0631 \u0627\u0644\u0648\u0633\u064a\u0637\u0629", + "HeaderSelectPath": "\u0625\u062e\u062a\u0631 \u0627\u0644\u0645\u0633\u0627\u0631", + "ButtonNetwork": "\u0627\u0644\u0634\u0628\u0643\u0629", + "MessageDirectoryPickerInstruction": "\u064a\u0645\u0643\u0646 \u0625\u062f\u062e\u0627\u0644 \u0645\u0633\u0627\u0631\u0627\u062a \u0627\u0644\u0634\u0628\u0643\u0629 \u064a\u062f\u0648\u064a\u0627\u064b \u0641\u064a \u062d\u0627\u0644 \u0623\u0646 \u0632\u0631 \u0627\u0644\u0634\u0628\u0643\u0629 \u064a\u062e\u0641\u0642 \u0641\u064a \u0627\u0643\u062a\u0634\u0627\u0641 \u0623\u062c\u0647\u0632\u062a\u0643. \u0639\u0644\u0649 \u0633\u0628\u064a\u0644 \u0627\u0644\u0645\u062b\u0627\u0644\u060c {0} \u0623\u0648 {1}.", + "MessageDirectoryPickerBSDInstruction": "\u0645\u0646 \u0623\u062c\u0644 BSD\u060c \u064a\u0645\u0643\u0646\u0643 \u0623\u0646 \u062a\u0636\u0628\u0637 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062a\u062e\u0632\u064a\u0646 \u062f\u062e\u0627\u0644 \u062d\u0633\u0627\u0628 FreeNAS Jail \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0644\u0643\u064a \u064a\u062a\u0645\u0643\u0646 \u0623\u0645\u0628\u064a \u0623\u0646 \u064a\u062a\u0635\u0644 \u0628\u0647.", + "MessageDirectoryPickerLinuxInstruction": "\u0645\u0646 \u0623\u062c\u0644 \u0623\u0646\u0638\u0645\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062a\u0627\u0644\u064a\u0629: Linux \u0623\u0648 Arch Linux \u0623\u0648 CentOS \u0623\u0648 Debian \u0623\u0648 Fedora \u0623\u0648 OpenSuse \u0623\u0648 Ubuntu\u060c \u0641\u064a\u062c\u0628 \u0623\u0646 \u062a\u0645\u0646\u062d \u0645\u0633\u062a\u062e\u062f\u0645 \u0623\u0645\u0628\u064a \u0627\u0644\u0646\u0638\u0627\u0645\u064a \u0635\u0644\u0627\u062d\u064a\u0629 \u0627\u0644\u0642\u0631\u0627\u0621\u0629 \u0644\u064a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0623\u0645\u0627\u0643\u0646 \u0627\u0644\u062a\u062e\u0632\u064a\u0646.", + "HeaderMenu": "\u0627\u0644\u0642\u0627\u0626\u0645\u0629", + "ButtonOpen": "\u0625\u0641\u062a\u062d", + "ButtonShuffle": "\u0625\u062e\u0644\u0637", + "ButtonResume": "\u0627\u0633\u062a\u0623\u0646\u0641", + "HeaderAudioTracks": "\u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0635\u0648\u062a\u064a\u0629", + "HeaderLibraries": "\u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a", + "HeaderVideoQuality": "\u062c\u0648\u062f\u0629 \u0627\u0644\u0641\u064a\u062f\u064a\u0648", + "MessageErrorPlayingVideo": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648.", + "MessageEnsureOpenTuner": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0647\u0646\u0627\u0643 \u0645\u0648\u0644\u0641 \u0645\u0641\u062a\u0648\u062d \u0645\u062a\u0627\u062d.", + "ButtonDashboard": "\u0644\u0648\u062d\u0629 \u0627\u0644\u0639\u062f\u0627\u062f\u0627\u062a", + "ButtonReports": "\u0627\u0644\u062a\u0642\u0627\u0631\u064a\u0631", + "MetadataManager": "\u0645\u062f\u064a\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a", + "HeaderTime": "\u0627\u0644\u0648\u0642\u062a", + "LabelAddedOnDate": "\u062a\u0645 \u0625\u0636\u0627\u0641\u0629 {0}", + "ButtonStart": "\u0625\u0628\u062f\u0623", + "OptionBlockOthers": "\u0623\u062e\u0631\u064a\u0627\u062a", + "OptionBlockTvShows": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0632\u064a\u0648\u0646\u064a\u0629", + "OptionBlockTrailers": "\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629", + "OptionBlockMusic": "\u0627\u0644\u0645\u0648\u0633\u064a\u0642\u0649", + "OptionBlockMovies": "\u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "OptionBlockBooks": "\u0627\u0644\u0643\u062a\u0628", + "OptionBlockGames": "\u0627\u0644\u0623\u0644\u0639\u0627\u0628", + "OptionBlockLiveTvPrograms": "\u0628\u0631\u0627\u0645\u062c \u0627\u0644\u062a\u0644\u0641\u0627\u0632 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "OptionBlockLiveTvChannels": "\u0642\u0646\u0648\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0627\u0632 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "OptionBlockChannelContent": "\u0645\u062d\u062a\u0648\u0649 \u0642\u0646\u0648\u0627\u062a \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a", + "ButtonRevoke": "\u0623\u0631\u0641\u0636", + "MessageConfirmRevokeApiKey": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0623\u0646 \u062a\u0631\u0641\u0636 \u0627\u0644\u0645\u0641\u062a\u0627\u062d (api) \u0647\u0630\u0627\u061f \u0633\u064a\u062a\u0645 \u0642\u0637\u0639 \u0627\u062a\u0635\u0627\u0644 \u0627\u0644\u062a\u0637\u0628\u064a\u0642 \u0639\u0646 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0645\u0628\u0627\u0634\u0631\u0629.", + "HeaderConfirmRevokeApiKey": "\u0623\u0631\u0641\u0636 \u0645\u0641\u062a\u0627\u062d api", + "ValueContainer": "\u0627\u0644\u062d\u0627\u0648\u064a\u0629: {0}", + "ValueAudioCodec": "\u0643\u0648\u062f\u0643 \u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0635\u0648\u062a: {0}", + "ValueVideoCodec": "\u0643\u0648\u062f\u0643 \u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0641\u064a\u062f\u064a\u0648: {0}", + "ValueCodec": "\u0643\u0648\u062f\u0643 \u0627\u0644\u062a\u0634\u0641\u064a\u0631: {0}", + "ValueConditions": "\u0627\u0644\u0634\u0631\u0648\u0637: {0}", + "LabelAll": "\u0627\u0644\u062c\u0645\u064a\u0639", + "HeaderDeleteImage": "\u0627\u062d\u0630\u0641 \u0627\u0644\u0635\u0648\u0631\u0629", + "MessageFileNotFound": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0645\u0644\u0641\u0627", + "MessageFileReadError": "\u062d\u0635\u0644 \u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u0644\u0641", + "ButtonNextPage": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629", + "ButtonPreviousPage": "\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629", + "ButtonMoveLeft": "\u0627\u0646\u062a\u0642\u0644 \u064a\u0633\u0627\u0631\u0627\u064b", + "ButtonMoveRight": "\u0627\u0646\u062a\u0642\u0644 \u064a\u0645\u064a\u0646\u0627\u064b", + "ButtonBrowseOnlineImages": "\u062a\u0635\u0641\u062d \u0635\u0648\u0631 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a", + "HeaderDeleteItem": "\u0627\u062d\u0630\u0641 \u0627\u0644\u0639\u0646\u0635\u0631", + "ConfirmDeleteItem": "\u0625\u0646 \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0639\u0646\u0635\u0631 \u0633\u064a\u062d\u0630\u0641\u0647 \u0645\u0646 \u0646\u0638\u0627\u0645 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0648\u0645\u0643\u062a\u0628\u0629 \u0648\u0633\u0627\u0626\u0637\u0643 \u0645\u0639\u0627\u064b. \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u061f", + "ConfirmDeleteItems": "\u0625\u0646 \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0633\u064a\u062d\u0630\u0641\u0647\u0627 \u0645\u0646 \u0646\u0638\u0627\u0645 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0648\u0645\u0643\u062a\u0628\u0629 \u0648\u0633\u0627\u0626\u0637\u0643 \u0645\u0639\u0627\u064b. \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u061f", + "MessageItemSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0639\u0646\u0635\u0631.", + "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0642\u0628\u0648\u0644 \u0634\u0631\u0648\u0637 \u0648\u0623\u062d\u0643\u0627\u0645 \u0627\u0644\u062e\u062f\u0645\u0629 \u0642\u0628\u0644 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629.", "OptionOff": "\u0627\u064a\u0642\u0627\u0641", "OptionOn": "\u062a\u0634\u063a\u064a\u0644", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionPeople": "People", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "TabLibrary": "Library", + "ButtonUninstall": "\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u062a\u062b\u0628\u064a\u062a", + "HeaderEnabledFields": "\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u062e\u0627\u0646\u0627\u062a", + "HeaderEnabledFieldsHelp": "\u0623\u0632\u0644 \u0627\u062e\u062a\u064a\u0627\u0631 \u062e\u0627\u0646\u0629 \u0645\u0627 \u0644\u0625\u0642\u0641\u0627\u0644\u0647\u0627 \u0648\u062d\u0645\u0627\u064a\u0629 \u0628\u064a\u0627\u0646\u0627\u062a\u0647\u0627 \u0645\u0646 \u0627\u0644\u062a\u063a\u064a\u064a\u0631", + "HeaderLiveTV": "\u0627\u0644\u062a\u0644\u0641\u0627\u0632 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "MissingPrimaryImage": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0635\u0648\u0631\u0629 \u0631\u0626\u064a\u0633\u064a\u0629.", + "MissingBackdropImage": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0635\u0648\u0631\u0629 \u062e\u0644\u0641\u064a\u0629.", + "MissingLogoImage": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0635\u0648\u0631\u0629 \u0644\u0648\u063a\u0648.", + "MissingEpisode": "\u0627\u0644\u062d\u0644\u0642\u0629 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f\u0629", + "OptionBackdrops": "\u0627\u0644\u062e\u0644\u0641\u064a\u0627\u062a", + "OptionImages": "\u0627\u0644\u0635\u0648\u0631", + "OptionKeywords": "\u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0627\u0644\u0645\u0641\u062a\u0627\u062d\u064a\u0629", + "OptionTags": "\u0627\u0644\u0628\u0637\u0627\u0642\u0627\u062a", + "OptionStudios": "\u0627\u0644\u0623\u0633\u062a\u0648\u062f\u064a\u0648\u0647\u0627\u062a", + "OptionName": "\u0627\u0644\u0627\u0633\u0645", + "OptionOverview": "\u0646\u0628\u0630\u0647 \u0639\u0627\u0645\u0629", + "OptionGenres": "\u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "OptionPeople": "\u0627\u0644\u0646\u0627\u0633", + "OptionProductionLocations": "\u0623\u0645\u0627\u0643\u0646 \u0627\u0644\u0625\u0646\u062a\u0627\u062c", + "OptionBirthLocation": "\u0645\u0643\u0627\u0646 \u0627\u0644\u0645\u064a\u0644\u0627\u062f", + "HeaderChangeFolderType": "\u063a\u064a\u0651\u0631 \u0646\u0648\u0639 \u0627\u0644\u0645\u062d\u062a\u0648\u0649", + "HeaderChangeFolderTypeHelp": "\u0644\u062a\u063a\u064a\u064a\u0631 \u0646\u0648\u0639 \u0627\u0644\u0645\u062d\u062a\u0648\u0649\u060c \u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0643\u062a\u0628\u0629 \u0648\u0628\u0646\u0627\u0621\u0647\u0627 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649 \u0628\u0646\u0648\u0639 \u062c\u062f\u064a\u062f.", + "HeaderAlert": "\u062a\u0646\u0628\u064a\u0647", + "MessagePleaseRestart": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0644\u0625\u0646\u0647\u0627\u0621 \u0639\u0645\u0644\u064a\u0627\u062a \u0627\u0644\u062a\u062d\u062f\u064a\u062b.", + "ButtonHide": "\u0625\u062e\u0641\u0627\u0621", + "MessageSettingsSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a.", + "TabLibrary": "\u0627\u0644\u0645\u0643\u062a\u0628\u0629", "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabHelp": "Help", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonViewSeriesRecording": "View series recording", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderResolution": "Resolution", + "TabLiveTV": "\u0627\u0644\u062a\u0644\u0641\u0627\u0632 \u0627\u0644\u0645\u0628\u0627\u0634\u0631", + "TabAutoOrganize": "\u0627\u0644\u062a\u0631\u062a\u064a\u0628 \u0627\u0644\u0622\u0644\u064a", + "TabPlugins": "\u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a", + "TabHelp": "\u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629", + "ButtonFullscreen": "\u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629", + "ButtonAudioTracks": "\u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0635\u0648\u062a\u064a\u0629", + "ButtonQuality": "\u0627\u0644\u062c\u0648\u062f\u0629", + "HeaderNotifications": "\u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a", + "HeaderSelectPlayer": "\u0625\u062e\u062a\u0631 \u0627\u0644\u0645\u0634\u063a\u0644", + "HeaderVideoError": "\u062e\u0637\u0623 \u0628\u0627\u0644\u0641\u064a\u062f\u064a\u0648", + "ButtonViewSeriesRecording": "\u0625\u0639\u0631\u0636 \u062a\u0633\u062c\u064a\u0644\u0627\u062a \u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a", + "HeaderSpecials": "\u062d\u0644\u0642\u0627\u062a \u062e\u0627\u0635\u0629", + "HeaderTrailers": "\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629", + "HeaderResolution": "\u0627\u0644\u062c\u0648\u062f\u0629", "HeaderRuntime": "Runtime", - "HeaderParentalRating": "Parental Rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", - "HeaderSeries": "Series:", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year:", - "HeaderGameSystem": "Game system", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos & photos", - "OptionBooks": "Books", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "LabelDynamicExternalId": "{0} Id:", - "PersonTypePerson": "Person", - "OptionSortName": "Sort name", - "LabelDateOfBirth": "Date of birth:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "ValueSeriesYearToPresent": "{0} - Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderMoreLikeThis": "More Like This", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "ReleaseYearValue": "Release year: {0}", - "OriginalAirDateValue": "Original air date: {0}", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install the free Emby Server visit {0}.", - "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.", - "ButtonNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", - "NoResultsFound": "No results found.", - "ButtonManageServer": "Manage Server", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "ButtonDisconnect": "Disconnect", - "ButtonMenu": "Menu", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", + "HeaderParentalRating": "\u0627\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0623\u0628\u0648\u064a", + "HeaderReleaseDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0635\u062f\u0627\u0631", + "HeaderSeries": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a", + "HeaderSeason": "\u0627\u0644\u0645\u0648\u0633\u0645", + "HeaderSeasonNumber": "\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u0633\u0645", + "HeaderNetwork": "\u0627\u0644\u0634\u0628\u0643\u0629", + "HeaderYear": "\u0627\u0644\u0639\u0627\u0645", + "HeaderGameSystem": "\u0646\u0638\u0627\u0645 \u0627\u0644\u0644\u0639\u0628\u0629", + "HeaderEmbeddedImage": "\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u0636\u0645\u0651\u0646\u0629", + "HeaderTrack": "\u0627\u0644\u0645\u0642\u0637\u0639", + "OptionCollections": "\u0627\u0644\u0645\u062c\u0627\u0645\u064a\u0639", + "OptionSeries": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a", + "OptionSeasons": "\u0627\u0644\u0645\u0648\u0627\u0633\u0645", + "OptionGames": "\u0627\u0644\u0623\u0644\u0639\u0627\u0628", + "OptionGameSystems": "\u0623\u0646\u0638\u0645\u0629 \u0627\u0644\u0623\u0644\u0639\u0627\u0628", + "OptionMusicArtists": "\u0627\u0644\u0641\u0646\u0627\u0646\u0648\u0646 \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0648\u0646", + "OptionMusicAlbums": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0629", + "OptionMusicVideos": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u0645\u0648\u0633\u064a\u0642\u064a\u0629", + "OptionSongs": "\u0627\u0644\u0623\u063a\u0627\u0646\u064a", + "OptionHomeVideos": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0648\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u0646\u0632\u0644\u064a\u0629", + "OptionBooks": "\u0627\u0644\u0643\u062a\u0628", + "ButtonUp": "\u0623\u0639\u0644\u0649", + "ButtonDown": "\u0623\u0633\u0641\u0644", + "LabelMetadataReaders": "\u0642\u0627\u0631\u0621\u0627\u062a \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a", + "LabelMetadataReadersHelp": "\u0631\u062a\u0628 \u0645\u0635\u0627\u062f\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0641\u0636\u0644\u0647\u0627 \u062d\u0633\u0628 \u0623\u0648\u0644\u0648\u064a\u0629 \u0627\u0644\u062a\u0641\u0636\u064a\u0644. \u0623\u0648\u0644 \u0645\u0644\u0641 \u064a\u0639\u062b\u0631 \u0639\u0644\u064a\u0647 \u0633\u064a\u062d\u0645\u0651\u0644.", + "LabelMetadataDownloaders": "\u0645\u0646\u0632\u0651\u0644\u0627\u062a \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a", + "LabelMetadataDownloadersHelp": "\u0645\u0643\u0651\u0646 \u0648\u0631\u062a\u0651\u0628 \u0645\u0646\u0632\u0651\u0644\u0627\u062a \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0641\u0636\u0644\u0647\u0627 \u062d\u0633\u0628 \u0623\u0648\u0644\u0648\u064a\u0629 \u0627\u0644\u062a\u0641\u0636\u064a\u0644. \u0627\u0644\u0645\u0646\u0632\u0651\u0644\u0627\u062a \u0627\u0644\u0623\u0642\u0644 \u0623\u0648\u0644\u0648\u064a\u0629 \u0633\u062a\u0633\u062a\u062e\u062f\u0645 \u0644\u062a\u062d\u0644 \u0645\u062d\u0644 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u062a\u064a \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u064a\u0647\u0627.", + "LabelMetadataSavers": "\u062d\u0627\u0641\u0638\u0627\u062a \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a:", + "LabelMetadataSaversHelp": "\u0625\u062e\u062a\u0631 \u0635\u064a\u063a \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0631\u063a\u0628 \u0641\u064a \u062d\u0641\u0638 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0625\u0644\u064a\u0647\u0627.", + "LabelImageFetchers": "\u062c\u0627\u0644\u0628\u0627\u062a \u0627\u0644\u0635\u0648\u0631:", + "LabelImageFetchersHelp": "\u0645\u0643\u0651\u0646 \u0648\u0631\u062a\u0651\u0628 \u062c\u0627\u0644\u0628\u0627\u062a \u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u062a\u064a \u062a\u0641\u0636\u0644\u0647\u0627 \u062d\u0633\u0628 \u0623\u0648\u0644\u0648\u064a\u0629 \u0627\u0644\u062a\u0641\u0636\u064a\u0644. ", + "LabelDynamicExternalId": "\u0645\u0639\u0631\u0641\u0629 {0}:", + "PersonTypePerson": "\u0627\u0644\u0634\u062e\u0635", + "OptionSortName": "\u0627\u0633\u0645 \u0627\u0644\u062a\u0631\u062a\u064a\u0628", + "LabelDateOfBirth": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u064a\u0644\u0627\u062f:", + "LabelDeathDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0648\u0641\u0627\u0629:", + "HeaderRemoveMediaLocation": "\u0625\u062d\u0630\u0641 \u0645\u0643\u0627\u0646 \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "MessageConfirmRemoveMediaLocation": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0645\u0643\u0627\u0646\u061f", + "LabelNewName": "\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u062c\u062f\u064a\u062f:", + "HeaderRemoveMediaFolder": "\u0625\u062d\u0630\u0641 \u0645\u062c\u0644\u062f \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "\u0645\u0643\u0627\u0646 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u062a\u0627\u0644\u064a \u0633\u064a\u0632\u0627\u0644 \u0645\u0646 \u0645\u0643\u062a\u0628\u0629 \u0623\u0645\u0628\u064a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643:", + "MessageAreYouSureYouWishToRemoveMediaFolder": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0625\u0632\u0627\u0644\u0629 \u0645\u062c\u0644\u062f \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0647\u0630\u0627\u061f", + "ButtonRename": "\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0633\u0645\u064a\u0629", + "ButtonChangeContentType": "\u063a\u064a\u0651\u0631 \u0646\u0648\u0639 \u0627\u0644\u0645\u062d\u062a\u0648\u0649", + "HeaderMediaLocations": "\u0623\u0645\u0627\u0643\u0646 \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "LabelContentTypeValue": "\u0646\u0648\u0639 \u0627\u0644\u0645\u062d\u062a\u0648\u0649: {0}", + "FolderTypeUnset": "\u063a\u064a\u0631 \u0645\u062e\u0635\u0635 (\u062e\u0644\u064a\u0637 \u0645\u062d\u062a\u0648\u064a\u0627\u062a)", + "BirthPlaceValue": "\u0645\u0643\u0627\u0646 \u0627\u0644\u0645\u064a\u0644\u0627\u062f: {0}", + "DeathDateValue": "\u062a\u0648\u0641\u064a: {0}", + "BirthDateValue": "\u0648\u064f\u0644\u062f: {0}", + "HeaderLatestReviews": "\u0623\u062d\u062f\u062b \u0627\u0644\u062a\u0642\u064a\u064a\u0645\u0627\u062a \u0627\u0644\u0643\u062a\u0648\u0628\u0629", + "HeaderPluginInstallation": "\u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0645\u0644\u062d\u0641\u0627\u062a", + "MessageAlreadyInstalled": "\u0647\u0630\u0627 \u0627\u0644\u0625\u0635\u062f\u0627\u0631 \u062a\u0645 \u062a\u062b\u0628\u064a\u062a\u0647 \u0645\u0633\u0628\u0642\u0627\u064b", + "ValueReviewCount": "{0} \u062a\u0642\u064a\u064a\u0645\u0640(\u0627\u062a) \u0645\u0643\u062a\u0648\u0628\u0640(\u0640\u0629)", + "MessageYouHaveVersionInstalled": "\u0627\u0644\u0625\u0635\u062f\u0627\u0631 \u0627\u0644\u0645\u062b\u0628\u062a \u062d\u0627\u0644\u064a\u0627\u064b \u0647\u0648 {0}.", + "MessageTrialExpired": "\u0627\u0644\u0641\u062a\u0631\u0629 \u0627\u0644\u062a\u062c\u0631\u064a\u0628\u064a\u0629 \u0644\u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629 \u0627\u0646\u062a\u0647\u062a", + "MessageTrialWillExpireIn": "\u0627\u0644\u0641\u062a\u0631\u0629 \u0627\u0644\u062a\u062c\u0631\u064a\u0628\u064a\u0629 \u0644\u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629 \u0633\u062a\u0646\u062a\u0647\u064a \u0628\u0639\u062f {0} \u064a\u0648\u0645\/\u0623\u064a\u0627\u0645", + "MessageInstallPluginFromApp": "\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u062d\u0642 \u064a\u062c\u0628 \u0623\u0646 \u064a\u062b\u0628\u062a \u0645\u0646 \u062f\u0627\u062e\u0644 \u0627\u0644\u062a\u0637\u0628\u064a\u0642 \u0627\u0644\u0630\u064a \u062a\u0631\u064a\u062f \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647 \u0628\u062f\u0627\u062e\u0644\u0647.", + "ValuePriceUSD": "\u0627\u0644\u0633\u0639\u0631: {0} (\u062f\u0648\u0644\u0627\u0631 \u0623\u0645\u0631\u064a\u0643\u064a)", + "MessageFeatureIncludedWithSupporter": "\u0623\u0646\u062a \u0645\u0633\u062c\u0644 \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629\u060c \u0648\u0633\u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0645\u062a\u0627\u0628\u0639\u0629 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647 \u0644\u0648 \u0642\u0645\u062a \u0628\u0627\u0644\u0627\u0634\u062a\u0631\u0627\u0643 \u0641\u064a \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632.", + "HeaderEmbyAccountAdded": "\u062a\u0645\u062a \u0625\u0636\u0627\u0641\u0629 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a ", + "MessageEmbyAccountAdded": "\u062a\u0645 \u0631\u0628\u0637 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0644\u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", + "MessagePendingEmbyAccountAdded": "\u062a\u0645\u062a \u0625\u0636\u0627\u0641\u062a\u0647 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0644\u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645. \u0633\u064a\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0625\u0644\u0649 \u0628\u0631\u064a\u062f \u0635\u0627\u062d\u0628 \u0627\u0644\u062d\u0633\u0627\u0628. \u064a\u062c\u0628 \u062a\u0623\u0643\u064a\u062f \u0627\u0644\u062f\u0639\u0648\u0629 \u0639\u0628\u0631 \u0627\u0644\u0636\u063a\u0637 \u0639\u0644\u0649 \u0627\u0644\u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u0635\u0627\u062d\u0628 \u0644\u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a.", + "HeaderEmbyAccountRemoved": "\u062a\u0645\u062a \u0625\u0632\u0627\u0644\u0629 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a", + "MessageEmbyAccontRemoved": "\u062a\u0645\u062a \u0625\u0632\u0627\u0644\u0629 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0645\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645", + "TooltipLinkedToEmbyConnect": "\u062a\u0645 \u0627\u0644\u0631\u0628\u0637 \u0645\u0639 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a", + "HeaderUnrated": "\u063a\u064a\u0631 \u0645\u0642\u064a\u0651\u0645", + "ValueDiscNumber": "\u0627\u0644\u0642\u0631\u0635 {0}", + "HeaderUnknownDate": "\u0627\u0644\u062a\u0627\u0631\u064a\u062e \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641", + "HeaderUnknownYear": "\u0627\u0644\u0639\u0627\u0645 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641", + "ValueMinutes": "{0} \u062f\u0642\u064a\u0642\u0629\/\u062f\u0642\u0627\u0626\u0642", + "HeaderSelectExternalPlayer": "\u0625\u062e\u062a\u0631 \u0645\u0634\u063a\u0644 \u062e\u0627\u0631\u062c\u064a", + "HeaderExternalPlayerPlayback": "\u062a\u0634\u063a\u064a\u0644 \u0645\u0646 \u0645\u0634\u063a\u0644 \u062e\u0627\u0631\u062c\u064a", + "ButtonImDone": "\u0644\u0642\u062f \u0627\u0646\u062a\u0647\u064a\u062a", + "OptionWatched": "\u062a\u0645\u062a \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629", + "OptionUnwatched": "\u0644\u0645 \u064a\u0634\u0627\u0647\u062f", + "ExternalPlayerPlaystateOptionsHelp": "\u062d\u062f\u062f \u0643\u064a\u0641 \u062a\u062d\u0628 \u0623\u0646 \u062a\u0633\u062a\u0623\u0646\u0641 \u062a\u0634\u063a\u064a\u0644 \u0647\u0630\u0627 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0645\u0631\u0629 \u0627\u0644\u0645\u0642\u0628\u0644\u0629.", + "LabelMarkAs": "\u062d\u062f\u062f\u0647 \u0643\u0640:", + "OptionInProgress": "\u0642\u064a\u062f \u0627\u0644\u062a\u0646\u0641\u064a\u0630", + "LabelResumePoint": "\u0646\u0642\u0637\u0629 \u0627\u0644\u0627\u0633\u062a\u0626\u0646\u0627\u0641", + "ValueOneMovie": "\u0641\u064a\u0644\u0645 \u0648\u0627\u062d\u062f", + "ValueMovieCount": "{0} \u0641\u064a\u0644\u0645\/\u0623\u0641\u0644\u0627\u0645", + "ValueOneTrailer": "\u0639\u0631\u0636 \u0625\u0639\u0644\u0627\u0646\u064a \u0648\u0627\u062d\u062f", + "ValueTrailerCount": "{0} \u0639\u0631\u0648\u0636 \u0625\u0639\u0644\u0627\u0646\u064a\u0629", + "ValueOneSeries": "\u0645\u0633\u0644\u0633\u0644 \u0648\u0627\u062d\u062f\u0629", + "ValueSeriesCount": "{0} \u0645\u0633\u0644\u0633\u0644(\u0627\u062a)", + "ValueOneEpisode": "\u062d\u0644\u0642\u0629 \u0648\u0627\u062d\u062f\u0629", + "ValueEpisodeCount": "{0} \u062d\u0644\u0642\u0629\/\u062d\u0644\u0642\u0627\u062a", + "ValueOneGame": "\u0644\u0639\u0628\u0629 \u0648\u0627\u062d\u062f\u0629", + "ValueGameCount": "{0} \u0644\u0639\u0628\u0629\/\u0623\u0644\u0639\u0627\u0628", + "ValueOneAlbum": "\u0623\u0644\u0628\u0648\u0645 \u0648\u0627\u062d\u062f", + "ValueAlbumCount": "{0} \u0623\u0644\u0628\u0648\u0645\u0640(\u0627\u062a)", + "ValueOneSong": "\u0623\u063a\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629", + "ValueSongCount": "{0} \u0623\u063a\u0646\u064a\u0629\/\u0623\u063a\u0627\u0646\u064a", + "ValueOneMusicVideo": "\u0641\u064a\u062f\u064a\u0648 \u0645\u0648\u0633\u064a\u0642\u064a \u0648\u0627\u062d\u062f", + "ValueMusicVideoCount": "{0} \u0641\u064a\u062f\u064a\u0648(\u0647\u0627\u062a) \u0645\u0648\u0633\u064a\u0642\u064a\u0640(\u0640\u0629)", + "HeaderOffline": "\u0645\u0646\u0642\u0637\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644", + "HeaderUnaired": "\u0644\u0645 \u064a\u0628\u062b", + "HeaderMissing": "\u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f", + "ButtonWebsite": "\u0645\u0648\u0642\u0639 \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", + "ValueSeriesYearToPresent": "{0} - \u0644\u062d\u062f \u0627\u0644\u062d\u0627\u0636\u0631", + "ValueAwards": "\u0627\u0644\u062c\u0648\u0627\u0626\u0632: {0}", + "ValuePremiered": "\u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0623\u0648\u0644 {0}", + "ValuePremieres": "\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0623\u0648\u0644\u0649 {0}", + "ValueStudio": "\u0627\u0644\u0623\u0633\u062a\u0648\u062f\u064a\u0648: {0}", + "ValueStudios": "\u0627\u0644\u0623\u0633\u062a\u0648\u062f\u064a\u0648\u0647\u0627\u062a: {0}", + "ValueStatus": "\u0627\u0644\u0648\u0636\u0639\u064a\u0629: {0}", + "LabelLimit": "\u0627\u0644\u062d\u062f:", + "ValueLinks": "\u0627\u0644\u0631\u0648\u0627\u0628\u0637: {0}", + "HeaderCastAndCrew": "\u0627\u0644\u0645\u0645\u062b\u0644\u064a\u0646 \u0648\u0637\u0627\u0642\u0645 \u0627\u0644\u0639\u0645\u0644", + "ValueArtist": "\u0627\u0644\u0641\u0646\u0627\u0646: {0}", + "ValueArtists": "\u0627\u0644\u0641\u0646\u0627\u0646\u0648\u0646: {0}", + "MediaInfoCameraMake": "\u0645\u0635\u0646\u0651\u0639 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627", + "MediaInfoCameraModel": "\u0637\u0631\u0627\u0632 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627", + "MediaInfoAltitude": "\u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639", + "MediaInfoAperture": "\u062d\u062f\u0642\u0629 \u0627\u0644\u0639\u062f\u0633\u0629", + "MediaInfoExposureTime": "\u0648\u0642\u062a \u0627\u0644\u062a\u0639\u0631\u064a\u0636", + "MediaInfoFocalLength": "\u0637\u0648\u0644 \u0627\u0644\u0628\u0624\u0631\u0629", + "MediaInfoOrientation": "\u0627\u0644\u0627\u062a\u062c\u0627\u0647", + "MediaInfoIsoSpeedRating": "\u0645\u0639\u062f\u0644 \u0633\u0631\u0639\u0629 \u0627\u0644\u0628\u0631\u064a\u0642 (\u0622\u064a\u0632\u0648)", + "MediaInfoLatitude": "\u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639", + "MediaInfoLongitude": "\u062e\u0637 \u0627\u0644\u0637\u0648\u0644", + "MediaInfoShutterSpeed": "\u0633\u0631\u0639\u0629 \u0627\u0644\u063a\u0627\u0644\u0642", + "MediaInfoSoftware": "\u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c", + "HeaderMoreLikeThis": "\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0644\u0647\u0630\u0627", + "HeaderMovies": "\u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "HeaderAlbums": "\u0627\u0644\u0623\u0644\u0628\u0648\u0645\u0627\u062a", + "HeaderGames": "\u0627\u0644\u0623\u0644\u0639\u0627\u0628", + "HeaderBooks": "\u0627\u0644\u0643\u062a\u0628", + "HeaderEpisodes": "\u0627\u0644\u062d\u0644\u0642\u0627\u062a", + "HeaderSeasons": "\u0627\u0644\u0645\u0648\u0627\u0633\u0645", + "HeaderTracks": "\u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0635\u0648\u062a\u064a\u0629", + "HeaderItems": "\u0627\u0644\u0639\u0646\u0627\u0635\u0631", + "HeaderOtherItems": "\u0639\u0646\u0627\u0635\u0631 \u0623\u062e\u0631\u0649", + "ButtonFullReview": "\u0627\u0644\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0643\u0627\u0645\u0644", + "ValueAsRole": "\u0643\u0640{0}", + "ValueGuestStar": "\u0636\u064a\u0641 \u0627\u0644\u0634\u0631\u0641", + "MediaInfoSize": "\u062d\u062c\u0645", + "MediaInfoPath": "\u0645\u0633\u0627\u0631", + "MediaInfoFile": "\u0645\u0644\u0641", + "MediaInfoFormat": "\u0635\u064a\u063a\u0629", + "MediaInfoContainer": "\u062d\u0627\u0648\u064a\u0629", + "MediaInfoDefault": "\u0625\u0641\u062a\u0631\u0627\u0636\u064a", + "MediaInfoForced": "\u0645\u062c\u0628\u0631", + "MediaInfoExternal": "\u062e\u0627\u0631\u062c\u064a", + "MediaInfoTimestamp": "\u0627\u0644\u0628\u0635\u0645\u0629 \u0627\u0644\u0632\u0645\u0646\u064a\u0629", + "MediaInfoPixelFormat": "\u0635\u064a\u063a\u0629 \u0627\u0644\u0628\u0643\u0633\u0644", + "MediaInfoBitDepth": "\u0639\u0645\u0642 \u0627\u0644\u0628\u062a", + "MediaInfoSampleRate": "\u0645\u0639\u062f\u064b\u0644 \u0627\u0644\u0625\u0639\u062a\u064a\u0627\u0646", + "MediaInfoBitrate": "\u0645\u0639\u062f\u0651\u0644 \u0627\u0644\u0628\u062a", + "MediaInfoChannels": "\u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "MediaInfoLayout": "\u0645\u062e\u0637\u0637 \u0627\u0644\u062a\u0635\u0645\u064a\u0645", + "MediaInfoLanguage": "\u0627\u0644\u0644\u063a\u0629", + "MediaInfoCodec": "\u0627\u0644\u0643\u0648\u062f\u0643", + "MediaInfoCodecTag": "\u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0643\u0648\u062f\u0643", + "MediaInfoProfile": "\u0627\u0644\u0639\u0631\u064a\u0636\u0629", + "MediaInfoLevel": "\u0627\u0644\u0645\u0633\u062a\u0648\u0649", + "MediaInfoAspectRatio": "\u0627\u0644\u0646\u0633\u0628\u0629 \u0627\u0644\u0628\u0627\u0639\u064a\u0629", + "MediaInfoResolution": "\u0627\u0644\u062c\u0648\u062f\u0629", + "MediaInfoAnamorphic": "\u0627\u0644\u062a\u0634\u0648\u0647", + "MediaInfoInterlaced": "\u062e\u0637\u0648\u0637 \u0645\u062a\u0639\u0627\u0631\u0636\u0629", + "MediaInfoFramerate": "\u0645\u0639\u062f\u0644 \u0627\u0644\u0623\u0637\u0627\u0631\u0627\u062a", + "MediaInfoStreamTypeAudio": "\u0627\u0644\u0635\u0648\u062a", + "MediaInfoStreamTypeData": "\u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a", + "MediaInfoStreamTypeVideo": "\u0627\u0644\u0641\u064a\u062f\u064a\u0648", + "MediaInfoStreamTypeSubtitle": "\u0627\u0644\u062a\u0631\u062c\u0645\u0629", + "MediaInfoStreamTypeEmbeddedImage": "\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u0645\u0636\u0645\u0646\u0629", + "MediaInfoRefFrames": "\u0627\u0644\u0623\u0637\u0631 \u0627\u0644\u0645\u0631\u062c\u0639\u064a\u0629", + "TabExpert": "\u0627\u0644\u062e\u0628\u064a\u0631", + "HeaderSelectCustomIntrosPath": "\u0625\u062e\u062a\u0631 \u0645\u0633\u0627\u0631 \u0645\u062e\u0635\u0648\u0635 \u0644\u0645\u0642\u062f\u0645\u0627\u062a \u0627\u0644\u0639\u0631\u0636 \u0627\u0644\u0623\u062e\u0631\u0649:", + "HeaderThankYou": "\u0634\u0643\u0631\u0627\u064b \u0644\u0643", + "LabelFullReview": "\u0627\u0644\u062a\u0642\u064a\u064a\u0645 \u0627\u0644\u0643\u0627\u0645\u0644", + "ReleaseYearValue": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0625\u0635\u062f\u0627\u0631: {0}", + "OriginalAirDateValue": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0628\u062b \u0627\u0644\u0623\u0635\u0644\u064a: {0}", + "WebClientTourContent": "\u0627\u0633\u062a\u0639\u0631\u0636 \u0648\u0633\u0627\u0626\u0637\u0643 \u0627\u0644\u0645\u0636\u0627\u0641\u0629 \u062d\u062f\u064a\u062b\u0627\u064b\u060c \u0648\u0627\u0644\u062d\u0644\u0642\u0627\u062a \u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0648\u0627\u0644\u0645\u0632\u064a\u062f \u063a\u064a\u0631\u0647\u0627. \u0627\u0644\u062f\u0627\u0626\u0631\u0629 \u0627\u0644\u062e\u0636\u0631\u0627\u0621 \u062a\u0634\u064a\u0631 \u0625\u0644\u0649 \u0639\u062f\u062f \u0627\u0644\u0639\u0646\u0627\u0635\u0631 \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629 \u0644\u062f\u064a\u0643 \u0644\u0645 \u064a\u062a\u0645 \u062a\u0634\u063a\u064a\u0644\u0647\u0627.", + "WebClientTourMovies": "\u0634\u063a\u0651\u0644 \u0627\u0644\u0623\u0641\u0644\u0627\u0645 \u0648\u0627\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0648\u0627\u0644\u0645\u0632\u064a\u062f \u063a\u064a\u0631\u0647\u0627 \u0645\u0646 \u0623\u064a \u062c\u0647\u0627\u0632 \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0645\u062a\u0635\u0641\u062d", + "WebClientTourMouseOver": "\u062d\u0631\u0643 \u0627\u0644\u0641\u0623\u0631\u0629 \u0639\u0644\u0649 \u0623\u064a \u0644\u0648\u062d\u0629 \u0645\u0646 \u0623\u062c\u0644 \u0627\u0644\u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0633\u0631\u064a\u0642\u0629 \u0639\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0647\u0627\u0645\u0629", + "WebClientTourTapHold": "\u0627\u0644\u0645\u0633 \u0648\u062b\u0628\u062a \u0623\u0648 \u0623\u0646\u0642\u0631 \u0628\u0627\u0644\u064a\u0645\u064a\u0646 \u0639\u0644\u0649 \u0623\u064a \u0644\u0648\u062d\u0629 \u0644\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0633\u0631\u064a\u0639\u0629", + "WebClientTourMetadataManager": "\u0623\u0636\u063a\u0637 \u0639\u0644\u0649 \u0632\u0631 \"\u062a\u062d\u0631\u064a\u0631\" \u0644\u0641\u062a\u062d \u0645\u062f\u064a\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a", + "WebClientTourPlaylists": "\u0623\u0646\u0634\u0626 \u0642\u0648\u0627\u0626\u0645 \u062a\u0634\u063a\u064a\u0644 \u0648\u062e\u0644\u0637\u0627\u062a \u0633\u0631\u064a\u0639\u0629 \u0628\u0633\u0647\u0648\u0644\u0629 \u0648\u0634\u063a\u0644\u0647\u0627 \u0639\u0644\u0649 \u0623\u064a \u062c\u0647\u0627\u0632", + "WebClientTourCollections": "\u0623\u0646\u0634\u064a\u0621 \u0645\u062c\u0627\u0645\u064a\u0639 \u0623\u0641\u0644\u0627\u0645 \u0641\u062c\u0645\u0639 \u0627\u0644\u0635\u0646\u0627\u062f\u064a\u0642 \u0645\u0639\u0627\u064b", + "WebClientTourUserPreferences1": "\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u062a\u062a\u064a\u062d \u0644\u0643 \u062a\u062e\u0635\u064a\u0635 \u0627\u0644\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u062a\u064a \u062a\u0642\u062f\u0651\u0645 \u0628\u0647\u0627 \u0645\u0643\u062a\u0628\u062a\u0643 \u0641\u064a \u062c\u0645\u064a\u0639 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a", + "WebClientTourUserPreferences2": "\u0627\u0636\u0628\u0637 \u0644\u063a\u0627\u062a \u0627\u0644\u0635\u0648\u062a \u0648\u0627\u0644\u062a\u0631\u062c\u0645\u0629 \u0645\u0631\u0629 \u0648\u0627\u062d\u062f\u0629 \u0644\u0643\u0644 \u0646\u0648\u0639 \u0645\u0646 \u0623\u0646\u0648\u0627\u0639 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a", + "WebClientTourUserPreferences3": "\u0635\u0645\u0645 \u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0648\u064a\u0628 \u062d\u0633\u0628 \u0645\u0632\u0627\u062c\u0643", + "WebClientTourUserPreferences4": "\u0627\u0636\u0628\u0637 \u0627\u0644\u062e\u0644\u0641\u064a\u0627\u062a\u060c \u0648\u0623\u063a\u0627\u0646\u064a \u0627\u0644\u0634\u0627\u0631\u0629 \u0648\u0627\u0644\u0645\u0634\u063a\u0644\u0627\u062a \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629", + "WebClientTourMobile1": "\u0635\u0641\u062d\u0629 \u0627\u0644\u0648\u064a\u0628 \u062a\u0639\u0645\u0644 \u0628\u0634\u0643\u0644 \u0645\u0645\u062a\u0627\u0632 \u0639\u0644\u0649 \u0627\u0644\u0647\u0648\u0627\u062a\u0641 \u0627\u0644\u0630\u0643\u064a\u0629 \u0648\u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0644\u0648\u062d\u064a\u0629", + "WebClientTourMobile2": "\u0648\u062a\u062d\u0643\u0645 \u0628\u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0623\u062e\u0631\u0649 \u0648\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0628\u0643\u0644 \u0633\u0647\u0648\u0644\u0629", + "WebClientTourMySync": "\u0642\u0645 \u0628\u0645\u0632\u0627\u0645\u0646\u0629 \u0648\u0633\u0627\u0626\u0637\u0643 \u0627\u0644\u062e\u0627\u0635\u0629 \u0644\u0623\u062c\u0647\u0632\u062a\u0643 \u0644\u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629 \u062e\u0627\u0631\u062c \u0627\u0644\u0627\u062a\u0635\u0627\u0644", + "MessageEnjoyYourStay": "\u0627\u0633\u062a\u0645\u062a\u0639 \u0628\u0632\u064a\u0627\u0631\u062a\u0643", + "DashboardTourDashboard": "\u0644\u0648\u062d\u0629 \u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u062e\u0627\u062f\u0645 \u062a\u062a\u064a\u062d \u0644\u0643 \u0623\u0646 \u062a\u0631\u0627\u0642\u0628 \u062e\u0627\u062f\u0643\u0645 \u0648\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0643. \u0633\u062a\u0639\u0631\u0641 \u062f\u0627\u0626\u0645\u0627\u064b \u0645\u0646 \u064a\u0642\u0648\u0645 \u0628\u0645\u0627\u0630\u0627 \u0648\u0623\u064a\u0646 \u0647\u0645.", + "DashboardTourHelp": "\u0627\u0644\u0645\u0633\u0627\u0639\u062f\u0629 \u062f\u0627\u062e\u0644 \u0627\u0644\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u064a\u062a\u064a\u062d \u0623\u0632\u0631\u0627\u0631 \u0633\u0647\u0644\u0629 \u0644\u0641\u062a\u062d \u0635\u0641\u062d\u0627\u062a \u0627\u0644\u0648\u064a\u0643\u064a \u0627\u0644\u0645\u062a\u0639\u0644\u0642\u0629 \u0628\u0645\u062d\u062a\u0648\u064a\u0627\u062a \u0627\u0644\u0634\u0627\u0634\u0629.", + "DashboardTourUsers": "\u0642\u0645 \u0628\u0625\u0646\u0634\u0627\u0621 \u062d\u0633\u0627\u0628\u0627\u062a \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0644\u0623\u0635\u062f\u0642\u0627\u0626\u0643 \u0648\u0639\u0627\u0626\u0644\u062a\u0643 \u0628\u0643\u0644 \u0633\u0647\u0648\u0644\u0629\u060c \u0643\u0644\u0651\u064c \u0628\u0635\u0644\u0627\u062d\u064a\u0627\u062a\u0647\u0645 \u0627\u0644\u062e\u0627\u0635\u0629 \u0648\u0645\u0643\u062a\u0628\u0627\u062a\u0647\u0645 \u0648\u062e\u0637\u0629 \u0631\u0642\u0627\u0628\u062a\u0647\u0645 \u0627\u0644\u0623\u0628\u0648\u064a\u0629 \u0648\u0627\u0644\u0645\u0632\u064a\u062f.", + "DashboardTourCinemaMode": "\u0627\u0644\u0637\u0648\u0631 \u0627\u0644\u0633\u064a\u0646\u0645\u0627\u0626\u064a \u064a\u0648\u0641\u0631 \u0623\u062c\u0648\u0627\u0621 \u0633\u064a\u0646\u0645\u0627\u0626\u064a\u0629 \u0625\u0644\u0649 \u0642\u0644\u0628 \u0635\u0627\u0644\u062a\u0643 \u0645\u0639 \u0625\u0645\u0643\u0627\u0646\u064a\u0629 \u062a\u0634\u063a\u064a\u0644 \u0639\u0631\u0648\u0636 \u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0644\u0623\u0641\u0644\u0627\u0645 \u0623\u062e\u0631\u0649 \u0648\u0639\u0631\u0636 \u0645\u0642\u062f\u0645\u0627\u062a \u0623\u062e\u0631\u0649 \u0645\u0646 \u0627\u0646\u062a\u0642\u0627\u0621\u0627\u062a\u0643 \u0642\u0628\u0644 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u0644\u0645 \u0627\u0644\u0631\u0626\u064a\u0633\u064a.", + "DashboardTourChapters": "\u0641\u0639\u0644 \u062e\u0627\u0635\u064a\u0629 \u062a\u0648\u0644\u064a\u062f \u0635\u0648\u0631 \u0627\u0644\u0623\u0628\u0648\u0627\u0628 \u0644\u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643\u060c \u0644\u0645\u062a\u0639\u0629 \u0623\u062d\u0633\u0646 \u0623\u062b\u0646\u0627\u0621 \u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0623\u0641\u0644\u0627\u0645.", + "DashboardTourSubtitles": "\u0623\u0646\u0632\u0644 \u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u0622\u0644\u064a\u0627\u064b \u0644\u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a\u0643 \u0628\u0623\u064a \u0644\u063a\u0629.", + "DashboardTourPlugins": "\u062b\u0628\u0651\u062a \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a \u0645\u062b\u0644 \u0642\u0646\u0648\u0627\u062a \u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a \u0648\u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u062d\u064a\u0629 \u0648 \u0642\u0627\u0631\u0626\u0627\u062a \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0648\u063a\u064a\u0631\u0647\u0627.", + "DashboardTourNotifications": "\u0623\u0631\u0633\u0644 \u0627\u0644\u0625\u0634\u0639\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a\u0629 \u062d\u0648\u0644 \u0623\u062d\u062f\u0627\u062b \u0627\u0644\u062e\u0627\u062f\u0645 \u0625\u0644\u0649 \u062c\u0647\u0627\u0632\u0643 \u0627\u0644\u0645\u062d\u0645\u0648\u0644 \u0623\u0648 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0623\u0648 \u063a\u064a\u0631 \u0630\u0644\u0643.", + "DashboardTourScheduledTasks": "\u0623\u062f\u0631 \u0628\u0643\u0644 \u0633\u0647\u0648\u0644\u0629 \u0627\u0644\u0639\u0645\u0644\u064a\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0633\u062a\u063a\u0631\u0642 \u0623\u0648\u0642\u0627\u062a\u0627\u064b \u0637\u0648\u064a\u0644\u0629 \u0639\u0628\u0631 \u062c\u062f\u0648\u0644\u0629 \u0627\u0644\u0645\u0647\u0627\u0645. \u0642\u0631\u0631 \u0645\u062a\u0649 \u062a\u0628\u062f\u0623 \u0627\u0644\u0639\u0645\u0644 \u0648\u0639\u062f\u062f \u0645\u0631\u0627\u062a \u0627\u0644\u062a\u0643\u0631\u0627\u0631.", + "DashboardTourMobile": "\u0625\u0646 \u0644\u0648\u062d\u0629 \u0639\u062f\u0627\u062f\u0627\u062a \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u062a\u0639\u0645\u0644 \u0628\u0637\u0631\u064a\u0642\u0629 \u0645\u0645\u062a\u0627\u0632\u0629 \u0645\u0639 \u0627\u0644\u0647\u0648\u0627\u062a\u0641 \u0627\u0644\u0630\u0643\u064a\u0629 \u0648\u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0644\u0648\u062d\u064a\u0629. \u0623\u062f\u0631 \u062e\u0627\u062f\u0645\u0643 \u0645\u0646 \u0631\u0627\u062d\u0629 \u064a\u062f\u0643 \u0641\u064a \u0623\u064a \u0648\u0642\u062a \u0648\u0623\u064a \u0645\u0643\u0627\u0646.", + "DashboardTourSync": "\u0642\u0645 \u0628\u0645\u0632\u0627\u0645\u0646\u0629 \u0648\u0633\u0627\u0626\u0637\u0643 \u0627\u0644\u062e\u0627\u0635\u0629 \u0645\u0639 \u0623\u062c\u0647\u0632\u062a\u0643 \u0644\u0644\u0645\u0634\u0627\u0647\u062f\u0629 \u062f\u0648\u0646 \u0627\u062a\u0635\u0627\u0644.", + "TabExtras": "\u0627\u0644\u0645\u0632\u064a\u062f", + "HeaderUploadImage": "\u0631\u0641\u0639 \u0627\u0644\u0635\u0648\u0631", + "DeviceLastUsedByUserName": "\u0622\u062e\u0631 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0643\u0627\u0646 \u0645\u0646 \u0642\u0628\u0644 {0}", + "HeaderDeleteDevice": "\u062d\u0630\u0641 \u0627\u0644\u062c\u0647\u0627\u0632", + "DeleteDeviceConfirmation": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u062c\u0647\u0627\u0632\u061f \u0633\u064a\u0638\u0647\u0631 \u0627\u0644\u062c\u0647\u0627\u0632 \u0645\u0646 \u062c\u062f\u064a\u062f \u0641\u064a \u0627\u0644\u0645\u0631\u0629 \u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0627\u0644\u062a\u064a \u064a\u0633\u062c\u0644 \u0641\u0647\u0627 \u0645\u0633\u062a\u062e\u062f\u0645 \u062f\u062e\u0648\u0644\u0647 \u0639\u0628\u0631\u0647.", + "LabelEnableCameraUploadFor": "\u0641\u0639\u0644 \u062e\u0627\u0635\u064a\u0629 \u0631\u0641\u0639 \u0635\u0648\u0631 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627 \u0644\u0640:", + "HeaderSelectUploadPath": "\u0625\u062e\u062a\u0631 \u0645\u0633\u0627\u0631 \u0627\u0644\u0631\u0641\u0639", + "LabelEnableCameraUploadForHelp": "\u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0631\u0641\u0639 \u0633\u062a\u062d\u062f\u062b \u062a\u0644\u0642\u0627\u0626\u064a\u0627\u064b \u0641\u064a \u0627\u0644\u0623\u062d\u062f\u0627\u062b \u0627\u0644\u062e\u0644\u0641\u064a\u0629 \u0639\u0646\u062f \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0644\u0640 \u0623\u0645\u0628\u064a", + "ErrorMessageStartHourGreaterThanEnd": "\u0648\u0642\u062a \u0627\u0644\u0646\u0647\u0627\u064a\u0629 \u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0623\u0643\u0628\u0631 \u0645\u0646 \u0648\u0642\u062a \u0627\u0644\u0628\u062f\u0627\u064a\u0629.", + "ButtonLibraryAccess": "\u0635\u0644\u0627\u062d\u064a\u0627\u062a \u0627\u0644\u0645\u0643\u062a\u0628\u0629", + "ButtonParentalControl": "\u0627\u0644\u062a\u062d\u0643\u0645 \u0627\u0644\u0623\u0628\u0648\u064a", + "HeaderInvitationSent": "\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062f\u0639\u0648\u0629", + "MessageInvitationSentToUser": "\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0625\u0644\u0649 \u0628\u0631\u064a\u062f {0}\u060c \u0644\u062f\u0639\u0648\u062a\u0647\u0645 \u0644\u0642\u0628\u0648\u0644 \u062f\u0639\u0648\u0629 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629.", + "MessageInvitationSentToNewUser": "\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0625\u0644\u0649 \u0628\u0631\u064a\u062f {0}\u060c \u0644\u062f\u0639\u0648\u062a\u0647\u0645 \u0644\u0644\u062a\u0633\u062c\u064a\u0644 \u0641\u064a \u062e\u062f\u0645\u0629 \u0623\u0645\u0628\u064a.", + "HeaderConnectionFailure": "\u0641\u0634\u0644 \u0641\u064a \u0627\u0644\u0627\u062a\u0635\u0627\u0644", + "MessageUnableToConnectToServer": "\u0644\u0645 \u0646\u0633\u062a\u0637\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0625\u0644\u0649 \u0627\u0644\u062e\u0627\u062f\u0645 \u0627\u0644\u0645\u062e\u062a\u0627\u0631 \u0641\u064a \u0627\u0644\u0648\u0642\u062a \u0627\u0644\u062d\u0627\u0644\u064a. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0647 \u064a\u0639\u0645\u0644 \u062b\u0645 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.", + "ButtonSelectServer": "\u0625\u062e\u062a\u0631 \u0627\u0644\u062e\u0627\u062f\u0645", + "MessagePluginConfigurationRequiresLocalAccess": "\u0644\u0636\u0628\u0637", + "MessageLoggedOutParentalControl": "\u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629 \u063a\u064a\u0631 \u0645\u0633\u0645\u0648\u062d\u0629 \u062d\u0627\u0644\u064a\u0627\u064b. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0644\u0627\u062d\u0642\u0627\u064b.", + "DefaultErrorMessage": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0645\u0639\u0627\u0644\u062c\u0629 \u0627\u0644\u0637\u0644\u0628. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0644\u0627\u062d\u0642\u0627\u064b", + "ButtonAccept": "\u0642\u0628\u0648\u0644", + "ButtonReject": "\u0631\u0641\u0636", + "MessageContactAdminToResetPassword": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0645\u0639 \u0645\u062f\u064a\u0631 \u0627\u0644\u0646\u0638\u0627\u0645 \u0644\u0625\u0639\u0627\u062f\u0629 \u0623\u0639\u062f\u0627\u062f \u0643\u0645\u0644\u0629 \u0633\u0631\u0651\u0643.", + "MessageForgotPasswordInNetworkRequired": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0646 \u062e\u0644\u0627\u0644 \u0634\u0628\u0643\u0629 \u0627\u0644\u0645\u0646\u0632\u0644 \u0644\u0628\u062f\u0621 \u0639\u0645\u0644\u064a\u0629 \u0625\u0639\u0627\u062f\u0629 \u0625\u0639\u062f\u0627\u062f \u0643\u0645\u0644\u0629 \u0627\u0644\u0633\u0631.", + "MessageForgotPasswordFileCreated": "\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u062a\u0627\u0644\u064a \u0642\u062f \u0623\u0646\u0634\u064a\u0621 \u0639\u0644\u0649 \u062e\u0627\u062f\u0645\u0643 \u0648\u0647\u0648 \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0627\u0644\u062a\u0648\u062c\u064a\u0647\u0627\u062a \u0644\u0643\u064a\u0641\u064a\u0629 \u0627\u0644\u0628\u062f\u0621:", + "MessageForgotPasswordFileExpiration": "\u0625\u0639\u0627\u062f\u0629 \u0625\u0639\u062f\u0627\u062f \u0627\u0644\u0631\u0645\u0632 \u0627\u0644\u0634\u062e\u0635\u064a \u0633\u062a\u0646\u062a\u0647\u064a \u0635\u0644\u0627\u062d\u064a\u062a\u0647 \u0641\u064a {0}.", + "MessageInvalidForgotPasswordPin": "\u0644\u0642\u062f \u062a\u0645 \u0625\u062f\u062e\u0627\u0644 \u0631\u0645\u0632 \u0634\u062e\u0635\u064a \u063a\u064a\u0631 \u0635\u062d\u064a\u062d \u0623\u0648 \u0645\u0646\u062a\u0647\u064a \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.", + "MessagePasswordResetForUsers": "\u0644\u0642\u062f \u062a\u0645 \u062d\u0630\u0641 \u0643\u0644\u0645\u0627\u062a \u0627\u0644\u0633\u0631 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u0627\u0644\u062a\u0627\u0644\u064a\u064a\u0646. \u0644\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644\u060c \u064a\u062c\u0628 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0643\u0644\u0645\u0629 \u0633\u0631\u064a\u0629 \u0641\u0627\u0631\u063a\u0629.", + "ButtonLinkMyEmbyAccount": "\u0625\u0631\u0628\u0637 \u062d\u0633\u0627\u0628\u064a \u0627\u0644\u0622\u0646", + "MessageConnectAccountRequiredToInviteGuest": "\u0644\u0643\u064a \u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u062f\u0639\u0648\u0629 \u0636\u064a\u0648\u0641 \u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0623\u0648\u0644\u0627\u064b \u0623\u0646 \u062a\u0631\u0628\u0637 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0628\u0647\u0630\u0627 \u0627\u0644\u062e\u0627\u062f\u0645.", + "SyncMedia": "\u0645\u0631\u0627\u0645\u0646\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "HeaderCancelSyncJob": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629", + "CancelSyncJobConfirmation": "\u0625\u0646 \u0625\u0644\u063a\u0627\u0621 \u0645\u0647\u0645\u0629 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u0633\u064a\u0632\u064a\u0644 \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0632\u0627\u0645\u0646\u0629 \u0645\u0646 \u0627\u0644\u062c\u0647\u0627\u0632 \u0623\u062b\u0646\u0627\u0621 \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u0627\u0644\u0642\u0627\u062f\u0645\u0629. \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u063a\u0628 \u0628\u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u061f", + "LabelQuality": "\u0627\u0644\u062c\u0648\u062f\u0629:", + "MessageBookPluginRequired": "\u0647\u0630\u0627 \u064a\u062a\u0637\u0644\u0628 \u062a\u062b\u0628\u064a\u062a \u0645\u0644\u062d\u0642 \u0631\u0641 \u0627\u0644\u0643\u062a\u0628\u060c Bookshelf.", + "MessageGamePluginRequired": "\u0647\u0630\u0627 \u064a\u062a\u0637\u0644\u0628 \u062a\u062b\u0628\u064a\u062a \u0645\u0644\u062d\u0642 \u0645\u062a\u0635\u0641\u062d \u0627\u0644\u0623\u0644\u0639\u0627\u0628 GameBrowser .", + "MessageUnsetContentHelp": "\u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0633\u064a\u0639\u0631\u0636 \u0643\u0645\u062c\u062f\u0627\u062a \u0627\u0639\u062a\u064a\u0627\u062f\u064a\u0629. \u0644\u0623\u0641\u0636\u0644 \u0627\u0644\u0646\u062a\u0627\u0626\u062c \u0627\u0633\u062a\u062e\u062f\u0645 \u0645\u062f\u064a\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0644\u0625\u0639\u062f\u0627\u062f \u0646\u0648\u0639 \u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0641\u0631\u0639\u064a\u0629.", + "SyncJobItemStatusQueued": "\u0641\u064a \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631", + "SyncJobItemStatusConverting": "\u062c\u0627\u0631\u0650 \u0627\u0644\u062a\u062d\u0648\u064a\u0644", + "SyncJobItemStatusTransferring": "\u062c\u0627\u0631\u0650 \u0627\u0644\u0646\u0642\u0644", + "SyncJobItemStatusSynced": "\u062a\u0645\u062a \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629", + "SyncJobItemStatusFailed": "\u0627\u0644\u0639\u0645\u0644\u064a\u0629 \u0641\u0634\u0644\u062a", + "SyncJobItemStatusRemovedFromDevice": "\u062a\u0645\u062a \u0627\u0644\u0625\u0632\u0627\u0644\u0629 \u0645\u0646 \u0627\u0644\u062c\u0647\u0627\u0632", + "SyncJobItemStatusCancelled": "\u062a\u0645 \u0627\u0644\u0625\u0644\u063a\u0627\u0621", + "LabelProfile": "\u0627\u0644\u0639\u0631\u064a\u0636\u0629:", + "LabelBitrateMbps": "\u0645\u0639\u062f\u0651\u0644 \u0627\u0644\u0628\u062a (\u0628\u0627\u0644\u0645\u064a\u063a\u0627\u0628\u062a):", + "EmbyIntroDownloadMessage": "\u0644\u0625\u0646\u0632\u0627\u0644 \u0648\u062a\u062b\u0628\u064a\u062a \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0627\u0644\u0645\u062c\u0627\u0646\u064a \u0642\u0645 \u0628\u0632\u064a\u0627\u0631\u0629 {0}.", + "EmbyIntroDownloadMessageWithoutLink": "\u0644\u0625\u0646\u0632\u0627\u0644 \u0648\u062a\u062b\u0628\u064a\u062a \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0627\u0644\u0645\u062c\u0627\u0646\u064a \u0642\u0645 \u0628\u0632\u064a\u0627\u0631\u0629 \u0645\u0648\u0642\u0639 \u0623\u0645\u0628\u064a.", + "ButtonNewServer": "\u062e\u0627\u062f\u0645 \u062c\u062f\u064a\u062f", + "MyDevice": "\u0623\u062c\u0647\u0632\u062a\u064a", + "ButtonRemote": "\u0639\u0646 \u0628\u0639\u062f", + "TabCast": "\u0623\u0644\u0642\u0650", + "TabScenes": "\u0627\u0644\u0645\u0634\u0627\u0647\u062f", + "HeaderUnlockApp": "\u0641\u0643 \u0642\u0641\u0644\u064a\u0629 \u0627\u0644\u062a\u0637\u0628\u064a\u0642", + "HeaderUnlockSync": "\u0641\u0643 \u0642\u0641\u0644\u064a\u0629 \u0645\u0632\u0627\u0645\u0646\u0629 \u0623\u0645\u0628\u064a", + "MessagePaymentServicesUnavailable": "\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u062f\u0641\u0639 \u063a\u064a\u0631 \u0645\u062a\u0648\u0641\u0631\u0629 \u062d\u0627\u0644\u064a\u0627\u064b. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0641\u064a\u0645\u0627 \u0628\u0639\u062f.", + "OptionEnableFullscreen": "\u062a\u0645\u0643\u064a\u0646 \u0645\u0644\u0621 \u0627\u0644\u0634\u0627\u0634\u0629", + "ButtonServer": "\u0627\u0644\u062e\u0627\u062f\u0645", + "HeaderLibrary": "\u0627\u0644\u0645\u0643\u062a\u0628\u0629", + "HeaderMedia": "\u0627\u0644\u0648\u0633\u0627\u0626\u0637", + "NoResultsFound": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0623\u064a\u0629 \u0646\u062a\u0627\u0626\u062c.", + "ButtonManageServer": "\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u062e\u0627\u062f\u0645", + "ButtonPreferences": "\u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a", + "ButtonViewArtist": "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0641\u0646\u0627\u0646", + "ButtonViewAlbum": "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0623\u0644\u0628\u0648\u0645", + "ButtonEditImages": "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0635\u0648\u0631", + "ErrorMessagePasswordNotMatchConfirm": "\u0625\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0648\u062a\u0623\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u063a\u064a\u0631 \u0645\u062a\u0637\u0627\u0628\u0642\u062a\u0627\u0646.", + "ErrorMessageUsernameInUse": "\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u062a\u0645 \u062d\u062c\u0632\u0647 \u0645\u0633\u0628\u0642\u0627\u064b. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0633\u0645 \u0645\u0633\u062a\u062e\u062f\u0645 \u062c\u062f\u064a\u062f \u0648\u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.", + "ErrorMessageEmailInUse": "\u0627\u0644\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0628\u0631\u064a\u062f\u064a \u062a\u0645 \u062d\u062c\u0632\u0647 \u0645\u0633\u0628\u0642\u0627\u064b. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f\u064a \u062c\u062f\u064a\u062f \u0648\u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649\u060c \u0623\u0648 \u0627\u0633\u062a\u062e\u062f\u0645 \u062e\u0627\u0635\u064a\u0629 \"\u0646\u0633\u064a\u062a \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631\".", + "MessageThankYouForConnectSignUp": "\u0634\u0643\u0631\u0627\u064b \u0644\u0644\u062a\u0633\u062c\u064a\u0644 \u0641\u064a \u062e\u062f\u0645\u0629 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a. \u0644\u0642\u062f \u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0625\u0644\u0649 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0628\u0627\u0644\u062a\u0639\u0644\u064a\u0645\u0627\u062a \u062d\u0648\u0644 \u0643\u064a\u0641\u064a\u0629 \u062a\u0623\u0643\u064a\u062f \u062d\u0633\u0627\u0628\u0643 \u0627\u0644\u062c\u062f\u064a\u062f. \u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0623\u0643\u064a\u062f \u0627\u0644\u062d\u0633\u0627\u0628 \u062b\u0645 \u0627\u0644\u0639\u0648\u062f\u0629 \u0625\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629 \u0644\u0644\u062f\u062e\u0648\u0644.", + "MessageThankYouForConnectSignUpNoValidation": "\u0634\u0643\u0631\u0627\u064b \u0644\u062a\u0633\u062c\u064a\u0644\u0643 \u0641\u064a \u062e\u062f\u0645\u0629 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a! \u0633\u0648\u0641 \u064a\u0637\u0644\u0628 \u0645\u0646\u0643 \u0627\u0644\u0622\u0646 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643.", + "ButtonShare": "\u0645\u0634\u0627\u0631\u0643\u0629", + "HeaderConfirm": "\u062a\u0623\u0643\u064a\u062f", + "MessageConfirmDeleteTunerDevice": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0644\u0641\u061f", + "MessageConfirmDeleteGuideProvider": "\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u063a\u0628 \u0641\u064a \u062d\u0630\u0641 \u0645\u0632\u0648\u062f \u0627\u0644\u062f\u0644\u064a\u0644 \u0647\u0630\u0627\u061f", + "HeaderDeleteProvider": "\u062d\u0630\u0641 \u0627\u0644\u0645\u0632\u0648\u062f", + "ErrorAddingTunerDevice": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0625\u0636\u0627\u0641\u0629 \u062c\u0647\u0627\u0632 \u0627\u0644\u0645\u0648\u0644\u0641. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0635\u0644\u0627\u062d\u064a\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u064a\u0647 \u062b\u0645 \u0639\u0627\u0648\u062f \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629.", + "ErrorSavingTvProvider": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u062d\u0641\u0638 \u0645\u0632\u0648\u062f \u0627\u0644\u062a\u0644\u0641\u0632\u0629. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0635\u0644\u0627\u062d\u064a\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u064a\u0647 \u062b\u0645 \u0639\u0627\u0648\u062f \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629.", + "ErrorGettingTvLineups": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0625\u0646\u0632\u0627\u0644 \u0627\u0635\u0637\u0641\u0627\u0641\u0627\u062a \u0627\u0644\u062a\u0644\u0641\u0632\u0629. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0628\u064a\u0627\u0646\u0627\u062a\u0643 \u0635\u062d\u064a\u062d\u0629 \u062b\u0645 \u0639\u0627\u0648\u062f \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629.", + "MessageCreateAccountAt": "\u0623\u0646\u0634\u0626 \u062d\u0633\u0627\u0628 \u0641\u064a {0}", + "ErrorPleaseSelectLineup": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0635\u0637\u0641\u0627\u0641 \u062b\u0645 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649. \u0625\u0646 \u0644\u0645 \u062a\u062a\u0648\u0641\u0631 \u0623\u064a\u0629 \u0627\u0635\u0637\u0641\u0627\u0641\u0627\u062a\u060c \u0641\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u0648\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643\u060c \u0648\u062a\u0623\u0643\u062f \u0645\u0646 \u0635\u062d\u0629 \u0631\u0645\u0632\u0643 \u0627\u0644\u0628\u0631\u064a\u062f\u064a.", + "HeaderTryEmbyPremiere": "\u062c\u0631\u0651\u0628 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632", + "OptionEnableDisplayMirroring": "\u062a\u0645\u0643\u064a\u0646 \u0639\u0631\u0636 \u0627\u0644\u0634\u0627\u0634\u0627\u062a \u0627\u0644\u0645\u0632\u062f\u0648\u062c\u0629", + "HeaderSyncRequiresSupporterMembership": "\u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u062a\u062a\u0637\u0644\u0628 \u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0633\u0627\u0631\u064a \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629.", + "HeaderSyncRequiresSupporterMembershipAppVersion": "\u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u062a\u062a\u0637\u0644\u0628 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0644\u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0628\u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0633\u0627\u0631\u064a \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629.", + "ErrorValidatingSupporterInfo": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0625\u062b\u0628\u0627\u062a \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0632 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0644\u0627\u062d\u0642\u0627\u064b.", + "LabelLocalSyncStatusValue": "\u0627\u0644\u0648\u0636\u0639\u064a\u0629: {0}", + "MessageSyncStarted": "\u0628\u062f\u0621 \u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629", + "OptionBackdropSlideshow": "\u0639\u0631\u0636 \u0634\u0631\u0627\u0626\u062d \u0627\u0644\u062e\u0644\u0641\u064a\u0627\u062a", + "HeaderTopPlugins": "\u0623\u0639\u0644\u0649 \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a", + "ButtonOther": "\u0623\u062e\u0631\u0649", + "HeaderSortBy": "\u062a\u0631\u062a\u064a\u0628 \u062d\u0633\u0628", + "HeaderSortOrder": "\u062a\u0633\u0644\u0633\u0644 \u0627\u0644\u062a\u0631\u062a\u064a\u0628", + "ButtonDisconnect": "\u0642\u0637\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644", + "ButtonMenu": "\u0627\u0644\u0642\u0627\u0626\u0645\u0629", + "ForAdditionalLiveTvOptions": "\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0645\u0632\u0648\u062f\u064a \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u0645\u0628\u0627\u0634\u0631\u0629\u060c \u0625\u0636\u063a\u0637 \u0639\u0644\u0649 \u062a\u0628\u0648\u064a\u0628\u0629 \u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u062e\u0627\u0631\u062c\u064a\u0629 \u0644\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a \u0627\u0644\u0645\u062a\u0627\u062d\u0629.", + "ButtonGuide": "\u0627\u0644\u062f\u0644\u064a\u0644", + "ConfirmEndPlayerSession": "\u0647\u0644 \u062a\u0631\u063a\u0628 \u0641\u064a \u0623\u0646 \u062a\u063a\u0644\u0642 \u0623\u0645\u0628\u064a \u0639\u0644\u0649 \u0627\u0644\u062c\u0647\u0627\u0632\u061f", + "ButtonYes": "\u0646\u0639\u0645", "AddUser": "\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", - "ButtonNowPlaying": "Now Playing", - "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.", - "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", - "ValueExample": "Example: {0}", - "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", - "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", - "LabelFileOrUrl": "File or url:", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "HeaderTuners": "Tuners", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Yesterday": "Yesterday", - "DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "HeaderHealthMonitor": "Health Monitor", - "HealthMonitorNoAlerts": "There are no active alerts.", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "VisualLoginFormHelp": "Select a user or sign in manually", - "LabelSportsCategories": "Sports categories:", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "LabelNewsCategories": "News categories:", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "LabelKidsCategories": "Children's categories:", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "LabelMovieCategories": "Movie categories:", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", - "TitleHostingSettings": "Hosting Settings", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "MapChannels": "Map Channels", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegVersion": "FFmpeg version:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "DownloadFFmpeg": "Download FFmpeg", - "FFmpegSuggestedDownload": "Suggested download: {0}", - "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", - "OptionUseSystemInstalledVersion": "Use system installed version", - "OptionUseMyCustomVersion": "Use a custom version", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "XmlTvPremiere": "By default, Emby will import {0} hours of guide data. Importing unlimited data requires an active Emby Premiere subscription.", - "MoreFromValue": "More from {0}", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "MakeAvailableOffline": "Make available offline", - "ConfirmRemoveDownload": "Remove download?", - "RemoveDownload": "Remove download", - "SyncToOtherDevices": "Sync to other devices", - "ManageOfflineDownloads": "Manage offline downloads", - "MessageDownloadScheduled": "Download scheduled", - "RememberMe": "Remember me", - "HeaderOfflineSync": "Offline Sync", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", - "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", - "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", - "LabelEnableDebugLogging": "Enable debug logging", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", - "HeaderForKids": "For Kids", - "HeaderRecordingGroups": "Recording Groups", - "LabelConvertRecordingsTo": "Convert recordings to:", - "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", - "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", - "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "ButtonNo": "\u0644\u0627", + "ButtonNowPlaying": "\u0642\u064a\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "HeaderLatestMovies": "\u0623\u062d\u062f\u062b \u0627\u0644\u0623\u0641\u0644\u0627\u0645", + "HeaderEmailAddress": "\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a", + "LoginDisclaimer": "\u0644\u0642\u062f \u0635\u0645\u0645 \u0623\u0645\u0628\u064a \u0644\u0645\u0633\u0627\u0639\u062f\u062a\u0643 \u0641\u064a \u0625\u062f\u0627\u0631\u0629 \u0645\u0643\u062a\u0628\u0627\u062a \u0648\u0633\u0627\u0626\u0637\u0643. \u0645\u062b\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0645\u0646\u0632\u0644\u064a \u0648\u0627\u0644\u0635\u0648\u0631 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643. \u0627\u0644\u0631\u062c\u0627\u0621 \u0645\u0637\u0627\u0644\u0639\u0629 \u0634\u0631\u0648\u0637 \u0648\u0623\u062d\u0643\u0627\u0645 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645. \u0625\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0623\u064a \u0628\u0631\u0646\u0627\u0645\u062c \u0645\u0646 \u0628\u0631\u0627\u0645\u062c \u0623\u0645\u0628\u064a \u064a\u0639\u062a\u0628\u0631 \u0642\u0628\u0648\u0644 \u0645\u0646\u0643 \u0639\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062d\u0643\u0627\u0645.", + "TermsOfUse": "\u0634\u0631\u0648\u0637 \u0648\u0623\u062d\u0643\u0627\u0645 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645", + "NumLocationsValue": "{0} \u0645\u062c\u0644\u062f(\u0627\u062a)", + "ButtonAddMediaLibrary": "\u0625\u0636\u0627\u0641\u0629 \u0645\u0643\u062a\u0628\u0629 \u0648\u0633\u0627\u0626\u0637", + "ButtonManageFolders": "\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a", + "ErrorAddingListingsToSchedulesDirect": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0627\u0635\u0637\u0641\u0627\u0641 \u0644\u062e\u062f\u0645\u0629 \"Schedules Direct\" \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0643. \u062e\u062f\u0645\u0629 \"Schedules Direct\" \u0644\u0627 \u062a\u0633\u0645\u062d \u0625\u0644\u0627 \u0628\u0639\u062f\u062f \u0645\u062d\u062f\u0648\u062f \u0645\u0646 \u0627\u0644\u0627\u0635\u0637\u0641\u0627\u0641\u0627\u062a \u0644\u0643\u0644 \u062d\u0633\u0627\u0628. \u0642\u062f \u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0625\u0644\u0649 \u0645\u0648\u0642\u0639 \"Schedules Direct\" \u0644\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0627\u0635\u0637\u0641\u0627\u0641\u0627\u062a \u0627\u0644\u0623\u062e\u0631\u0649 \u0645\u0646 \u062d\u0633\u0627\u0628\u0643 \u0642\u0628\u0644 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629.", + "PleaseAddAtLeastOneFolder": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u0636\u0627\u0641\u0629 \u0645\u062c\u0644\u062f \u0648\u0627\u062d\u062f \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 \u0644\u0647\u0630\u0647 \u0627\u0644\u0645\u0643\u062a\u0628\u0629 \u0628\u0627\u0644\u0636\u063a\u0637 \u0639\u0644\u0649 \u0632\u0631 \"\u0625\u0636\u0627\u0641\u0629\"", + "ErrorAddingMediaPathToVirtualFolder": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0625\u0636\u0627\u0641\u0629 \u0645\u0633\u0627\u0631 \u0627\u0644\u0648\u0633\u0627\u0626\u0637. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0635\u062d\u0629 \u0627\u0644\u0645\u0633\u0627\u0631 \u0648\u0623\u0646 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0644\u062f\u064a\u0647 \u0635\u0644\u0627\u062d\u064a\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0627\u0644\u0645\u0648\u0642\u0639.", + "ErrorRemovingEmbyConnectAccount": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0625\u0632\u0627\u0644\u0629 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0644\u062f\u064a\u0643 \u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u0628 \u0633\u0627\u0631\u064a \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629 \u062b\u0645 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.", + "ErrorAddingEmbyConnectAccount1": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0625\u0636\u0627\u0641\u0629 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a. \u0647\u0644 \u0642\u0645\u062a \u0628\u0625\u0646\u0634\u0627\u0621 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a\u061f \u062a\u0642\u062f\u0651\u0645 \u0628\u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0639\u0628\u0631 \u0645\u0648\u0642\u0639 {0}.", + "ErrorAddingEmbyConnectAccount2": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0642\u062f \u062a\u0645 \u062a\u0641\u0639\u064a\u0644\u0647 \u0639\u0628\u0631 \u0627\u062a\u0628\u0627\u0639 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u0627\u062a \u0627\u0644\u062a\u064a \u0623\u0631\u0633\u0644\u062a \u0639\u0644\u0649 \u0628\u0631\u064a\u062f\u0643 \u0628\u0639\u062f \u0625\u0646\u0634\u0627\u0621 \u0627\u0644\u062d\u0633\u0627\u0628. \u0625\u0646 \u0644\u0645 \u062a\u0633\u062a\u0642\u0628\u0644 \u0631\u0633\u0627\u0644\u0629 \u0639\u0644\u0649 \u0628\u0631\u064a\u062f\u0643 \u0641\u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0625\u0644\u0649 {0} \u0645\u0646 \u0639\u0646\u0648\u0627\u0646\u0643 \u0627\u0644\u0628\u0631\u064a\u062f\u064a \u0627\u0644\u0630\u064a \u0633\u062c\u0644\u062a\u0647 \u0645\u0639 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a.", + "ErrorAddingEmbyConnectAccount3": "\u0625\u0646 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0645\u0631\u0628\u0648\u0637 \u0645\u0633\u0628\u0642\u0627\u064b \u0628\u062d\u0633\u0627\u0628 \u0645\u062d\u0644\u064a\u060c \u0648\u0644\u0627 \u064a\u0645\u0643\u0646 \u0631\u0628\u0637 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0628\u062d\u0633\u0627\u0628 \u0645\u062d\u0644\u064a \u063a\u064a\u0631 \u0645\u0631\u0629 \u0648\u0627\u062d\u062f\u0629 \u0641\u0642\u0637.", + "HeaderFavoriteArtists": "\u0627\u0644\u0641\u0646\u0627\u0646\u0648\u0646 \u0627\u0644\u0645\u0641\u0636\u0644\u0648\u0646", + "HeaderFavoriteSongs": "\u0627\u0644\u0623\u063a\u0627\u0646\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0629", + "HeaderConfirmPluginInstallation": "\u0623\u0643\u062f \u0639\u0645\u0644\u064a\u0629 \u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0645\u0644\u062d\u0642", + "PleaseConfirmPluginInstallation": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u0636\u063a\u0637 \u0639\u0644\u0649 \u0632\u0631 \u0645\u0648\u0627\u0641\u0642 \u0644\u062a\u0623\u0643\u064a\u062f \u0642\u0631\u0627\u0626\u062a\u0643 \u0644\u0645\u0627 \u0648\u0631\u062f \u0623\u0639\u0644\u0627\u0647 \u0648\u0623\u0646\u0643 \u062a\u0631\u063a\u0628 \u0641\u064a \u0627\u0644\u0627\u0633\u062a\u0645\u0631\u0627\u0631 \u0641\u064a \u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0645\u0644\u062d\u0642.", + "MessagePluginInstallDisclaimer": "\u0625\u0646 \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a \u0627\u0644\u062a\u064a \u0628\u0646\u0627\u0647\u0627 \u0623\u0639\u0636\u0627\u0621 \u0645\u062c\u062a\u0645\u0639 \u0623\u0645\u0628\u064a \u0644\u0647\u064a \u0637\u0631\u064a\u0642\u0629 \u0631\u0627\u0626\u0639\u0629 \u0644\u062a\u062d\u0633\u064a\u0646 \u0645\u062a\u0639\u0629 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0623\u0645\u0628\u064a \u0648\u0630\u0644\u0643 \u0628\u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0632\u0627\u064a\u0627 \u0648\u0627\u0644\u062e\u062f\u0645\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f\u0629. \u0642\u0628\u0644 \u062a\u062b\u0628\u064a\u062a \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a\u060c \u0646\u0631\u062c\u0648 \u0623\u062e\u0630 \u0627\u0644\u0639\u0644\u0645 \u0628\u0627\u0644\u0622\u062b\u0627\u0631 \u0627\u0644\u062a\u064a \u0642\u062f \u062a\u0644\u062d\u0642\u0647\u0627 \u0628\u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0627\u0644\u062e\u0627\u0635 \u0628\u0643\u060c \u0645\u062b\u0644 \u0623\u0648\u0642\u0627\u062a \u0623\u0637\u0648\u0644\u0629 \u0644\u062a\u0645\u0634\u064a\u0637 \u0645\u0643\u062a\u0628\u062a\u0643\u060c \u0648\u0627\u0644\u0639\u0645\u0644\u064a\u0627\u062a \u0627\u0644\u062e\u0644\u0641\u064a\u0629 \u0627\u0644\u0625\u0636\u0627\u0641\u064a\u0629 \u0648\u062a\u0642\u0644\u064a\u0644 \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u0646\u0638\u0627\u0645\u0643.", + "HeaderMobileSync": "\u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u0627\u0644\u0645\u062d\u0645\u0648\u0644\u0629", + "HeaderCloudSync": "\u0627\u0644\u0645\u0632\u0627\u0645\u0646\u0629 \u0627\u0644\u0633\u062d\u0627\u0628\u064a\u0629", + "HeaderFreeApps": "\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0627\u0644\u0645\u062c\u0627\u0646\u064a\u0629", + "CoverArt": "\u0635\u0648\u0631 \u0627\u0644\u0623\u063a\u0644\u0641\u0629", + "ButtonOff": "\u0625\u064a\u0642\u0627\u0641 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", + "TitleHardwareAcceleration": "\u062a\u0633\u0631\u064a\u0639 \u0628\u0639\u062a\u0627\u062f \u0627\u0644\u062d\u0627\u0633\u0648\u0628", + "HardwareAccelerationWarning": "\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u062a\u0633\u0631\u064a\u0639 \u0628\u0639\u062a\u0627\u062f \u0627\u0644\u062d\u0627\u0633\u0648\u0628 \u0642\u062f \u064a\u062a\u0633\u0628\u0628 \u0641\u064a \u0639\u062f\u0645 \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u0628\u0639\u0636 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0623\u0646\u0638\u0645\u0629. \u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0646\u0638\u0627\u0645 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643 \u0645\u062d\u062f\u062b \u0625\u0644\u0649 \u0622\u062e\u0631 \u0646\u0633\u062e\u0629 \u0648\u0623\u0646 \u0633\u0648\u0627\u0642\u0627\u062a \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0645\u062d\u062f\u062b\u0629 \u0623\u064a\u0636\u0627\u064b. \u0625\u0630\u0627 \u0648\u0627\u062c\u0647\u062a \u0623\u064a\u0629 \u0635\u0639\u0648\u0628\u0627\u062a \u0641\u064a \u062a\u0633\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0628\u0639\u062f \u062a\u0645\u0643\u064a\u0646 \u0647\u0630\u0647 \u0627\u0644\u062e\u0627\u0635\u064a\u0629\u060c \u0641\u0639\u0644\u064a\u0643 \u0625\u0631\u062c\u0627\u0639 \u0627\u0644\u0625\u0639\u062f\u0627\u062f \u0625\u0644\u0649 \u0648\u0636\u0639\u064a\u0629 \u0622\u0644\u064a.", + "HeaderSelectCodecIntrosPath": "\u0625\u062e\u062a\u0631 \u0645\u0633\u0627\u0631 \u0645\u0642\u062f\u0645\u0627\u062a \u0627\u0644\u0643\u0648\u062f\u0643", + "ValueExample": "\u0645\u062b\u0627\u0644: {0}", + "OptionEnableAnonymousUsageReporting": "\u062a\u0641\u0639\u064a\u0644 \u062a\u0642\u0627\u0631\u064a\u0631 \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0645\u062c\u0647\u0648\u0644", + "OptionEnableAnonymousUsageReportingHelp": "\u0627\u0633\u0645\u062d \u0644\u0623\u0645\u0628\u064a \u0623\u0646 \u062a\u062c\u0645\u0639 \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0645\u062c\u0647\u0648\u0644 \u0645\u062b\u0644 \u0627\u0644\u0645\u0644\u062d\u0642\u0627\u062a \u0627\u0644\u0645\u062b\u0628\u062a\u0629 \u0648\u0631\u0642\u0645 \u0627\u0635\u062f\u0627\u0631\u0627\u062a \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a\u060c \u0625\u0644\u062e. \u0647\u0630\u0647 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062a\u0633\u062a\u062e\u062f\u0645 \u0641\u0642\u0637 \u0644\u063a\u0631\u0636 \u062a\u062d\u0633\u064a\u0646 \u0627\u0644\u0628\u0631\u0627\u0645\u062c.", + "LabelFileOrUrl": "\u0627\u0644\u0645\u0644\u0641 \u0623\u0648 \u0627\u0644\u0631\u0627\u0628\u0637:", + "OptionEnableForAllTuners": "\u062a\u0645\u0643\u064a\u0646 \u0643\u0644 \u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0645\u0648\u0644\u0641\u0627\u062a", + "HeaderTuners": "\u0627\u0644\u0645\u0648\u0644\u0641\u0627\u062a", + "LabelOptionalM3uUrl": "\u0631\u0627\u0628\u0637 M3U (\u062e\u064a\u0627\u0631\u064a):", + "LabelOptionalM3uUrlHelp": "\u0628\u0639\u062f \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u062a\u062f\u0639\u0645 \u0642\u0648\u0627\u0626\u0645 \u0642\u0646\u0648\u0627\u062a M3U.", + "TabResumeSettings": "\u0627\u0633\u062a\u0626\u0646\u0627\u0641 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a", + "DrmChannelsNotImported": "\u0627\u0644\u0642\u0646\u0648\u0627\u062a \u0627\u0644\u0645\u062c\u0647\u0632\u0629 \u0628\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u062d\u0642\u0648\u0642 \u0627\u0644\u0631\u0642\u0645\u064a\u0629 DRM \u0644\u0646 \u062a\u0648\u0631\u0651\u062f.", + "LabelAllowHWTranscoding": "\u0627\u0644\u0633\u0645\u0627\u062d \u0628\u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a \u0628\u0639\u062a\u0627\u062f \u0627\u0644\u062d\u0627\u0633\u0628", + "AllowHWTranscodingHelp": "\u0639\u0646\u062f \u0627\u0644\u062a\u0641\u0639\u064a\u0644\u060c \u0633\u064a\u064f\u0633\u0645\u062d \u0644\u0644\u0645\u0648\u0644\u0641 \u0628\u0639\u0645\u0644 \u062a\u062f\u0641\u0642\u0627\u062a \u0645\u0634\u0641\u0631\u0629 \u0628\u064a\u0646\u064a\u0627\u064b \u0639\u0644\u0649 \u0627\u0644\u0637\u0627\u0626\u0631. \u0647\u0630\u0627 \u0642\u062f \u064a\u0633\u0627\u0639\u062f \u0641\u064a \u062e\u0641\u0636 \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0628\u064a\u0646\u064a \u0627\u0644\u0645\u0637\u0644\u0648\u0628 \u0645\u0646 \u0627\u0644\u062e\u0627\u062f\u0645.", + "OptionRequirePerfectSubtitleMatch": "\u0646\u0632\u0651\u0644 \u0641\u0642\u0637 \u0627\u0644\u062a\u0631\u062c\u0645\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0648\u0627\u0641\u0642 \u0628\u062f\u0642\u0629 \u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u064a", + "ErrorAddingGuestAccount1": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0628\u0625\u0636\u0627\u0641\u0629 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a \u0643\u0648\u0646\u0643\u062a. \u0647\u0644 \u0642\u0627\u0645 \u0636\u064a\u0641\u0643 \u0628\u0625\u0646\u0634\u0627\u0621 \u062d\u0633\u0627\u0628 \u0623\u0645\u0628\u064a\u061f \u0628\u0625\u0645\u0643\u0627\u0646\u0647 \u0623\u0646 \u064a\u0642\u0648\u0645 \u0628\u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0645\u0646 {0}.", + "ErrorAddingGuestAccount2": "\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646 \u0636\u064a\u0641\u0643 \u0642\u0627\u0645 \u0628\u0627\u0644\u062a\u0641\u0639\u064a\u0644 \u0628\u0627\u062a\u0628\u0627\u0639 \u0627\u0644\u062a\u0639\u0644\u064a\u0645\u0627\u062a \u0627\u0644\u0645\u0631\u0633\u0644\u0629 \u0644\u0647 \u0639\u0644\u0649 \u0628\u0631\u064a\u062f\u0647 \u0628\u0639\u062f \u0625\u0646\u0634\u0627\u0621 \u062d\u0633\u0627\u0628\u0647. \u0625\u0646 \u0644\u0645 \u064a\u0643\u0646 \u0642\u062f \u0627\u0633\u062a\u0644\u0645 \u0631\u0633\u0627\u0644\u0629 \u0628\u0631\u064a\u062f\u060c \u0641\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0644\u0640 {0}\u060c \u0648\u0642\u0645 \u0628\u0643\u062a\u0627\u0628\u0629 \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0628\u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0625\u0644\u0649 \u0628\u0631\u064a\u062f\u0647 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a.", + "GuestUserNotFound": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0627\u0633\u0645\u0647 \u0648\u062d\u0627\u0648\u0644 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649 \u0623\u0648 \u062d\u0627\u0648\u0644 \u0625\u062f\u062e\u0627\u0644 \u0639\u0646\u0648\u0627\u0646 \u0628\u0631\u064a\u062f\u0647 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a.", + "Yesterday": "\u0627\u0644\u0628\u0627\u0631\u062d\u0629", + "DownloadImagesInAdvanceWarning": "\u0625\u0646\u0632\u0627\u0644 \u062c\u0645\u064a\u0639 \u0627\u0644\u0635\u0648\u0631 \u0645\u0633\u0628\u0642\u0627\u064b \u0633\u064a\u0646\u062a\u062c \u0639\u0646\u0647 \u0623\u0648\u0642\u0627\u062a \u0623\u0637\u0648\u0644 \u0644\u062a\u0645\u0634\u064a\u0637 \u0627\u0644\u0645\u0643\u062a\u0628\u0629.", + "MetadataSettingChangeHelp": "\u062a\u063a\u064a\u064a\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0633\u064a\u0643\u0648\u0646 \u0644\u0647 \u062a\u0623\u062b\u064a\u0631 \u0639\u0644\u0649 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062c\u062f\u064a\u062f \u0627\u0644\u0630\u064a \u0633\u064a\u0636\u0627\u0641 \u0644\u0627\u062d\u0642\u0627\u064b. \u0644\u0625\u0639\u0627\u062f\u0629 \u062a\u0646\u0634\u064a\u0637 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u060c \u0625\u0641\u062a\u062d \u0634\u0627\u0634\u0629 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644 \u062b\u0645 \u0627\u0636\u063a\u0637 \u0639\u0644\u0649 \u0632\u0631 \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0646\u0634\u064a\u0637\u060c \u0623\u0648 \u0642\u0645 \u0628\u0639\u0645\u0644 \u0625\u0639\u0627\u062f\u0629 \u062a\u0646\u0634\u064a\u0637 \u062c\u0645\u0627\u0639\u064a\u0629 \u0645\u0646 \u062e\u0644\u0627\u0644 \u0645\u062f\u064a\u0631 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a.", + "OptionConvertRecordingPreserveAudio": "\u062d\u0627\u0641\u0638 \u0639\u0644\u0649 \u0627\u0644\u0635\u0648\u062a \u0627\u0644\u0623\u0635\u0644\u064a \u0639\u0646\u062f \u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u062a\u0633\u062c\u064a\u0644 (\u0645\u062a\u0649 \u0645\u0627 \u0623\u0645\u0643\u0646)", + "OptionConvertRecordingPreserveAudioHelp": "\u0647\u0630\u0627 \u0633\u064a\u0639\u0637\u064a \u062c\u0648\u062f\u0629 \u0635\u0648\u062a \u0623\u0641\u0636\u0644 \u0644\u0643\u0646\u0647 \u0633\u064a\u062c\u062a\u0627\u062c \u0625\u0644\u0649 \u062a\u0634\u0641\u064a\u0631 \u0628\u064a\u0646\u064a \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0639\u0644\u0649 \u0628\u0639\u0636 \u0627\u0644\u0623\u062c\u0647\u0632\u0629.", + "OptionConvertRecordingPreserveVideo": "\u0625\u062d\u0641\u0638 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0623\u0635\u0644\u064a \u0639\u0646\u062f \u062a\u062d\u0648\u064a\u0644 \u0627\u0644\u062a\u0633\u062c\u064a\u0644", + "OptionConvertRecordingPreserveVideoHelp": "\u0647\u0630\u0627 \u0633\u064a\u0639\u0637\u064a \u062c\u0648\u062f\u0629 \u0641\u064a\u062f\u064a\u0648 \u0623\u0641\u0636\u0644 \u0644\u0643\u0646\u0647 \u0633\u064a\u062c\u062a\u0627\u062c \u0625\u0644\u0649 \u062a\u0634\u0641\u064a\u0631 \u0628\u064a\u0646\u064a \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0639\u0644\u0649 \u0628\u0639\u0636 \u0627\u0644\u0623\u062c\u0647\u0632\u0629.", + "AddItemToCollectionHelp": "\u0623\u0636\u0641 \u0639\u0646\u0627\u0635\u0631 \u0625\u0644\u0649 \u0627\u0644\u0645\u062c\u0627\u0645\u064a\u0639 \u0628\u0627\u0644\u0628\u062d\u062b \u0639\u0646\u0647\u0645 \u0648\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0632\u0631 \u0627\u0644\u0623\u064a\u0645\u0646 \u0623\u0648 \u0642\u0626\u0627\u0645\u0629 \u0627\u0644\u0644\u0645\u0633 \u0644\u0625\u0636\u0627\u0641\u062a\u0647\u0645 \u0625\u0644\u0649 \u0627\u0644\u0645\u062c\u0627\u0645\u064a\u0639.", + "HeaderHealthMonitor": "\u0645\u0624\u0634\u0631 \u0627\u0644\u0635\u062d\u0629", + "HealthMonitorNoAlerts": "\u0644\u064a\u0633 \u0647\u0646\u0627\u0644\u0643 \u0623\u064a\u0629 \u0625\u0634\u0639\u0627\u0631\u0627\u062a \u0641\u0627\u0639\u0644\u0629", + "RecordingPathChangeMessage": "\u0625\u0646 \u062a\u063a\u064a\u064a\u0631 \u0645\u062c\u0644\u062f \u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0644\u0645 \u064a\u0647\u062c\u0651\u0631 \u0627\u0644\u062a\u0633\u062c\u064a\u0644\u0627\u062a \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629 \u0645\u0646 \u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0642\u062f\u064a\u0645 \u0625\u0644\u0649 \u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u062c\u062f\u064a\u062f. \u0633\u064a\u062a\u0639\u064a\u0646 \u0639\u0644\u064a\u0643 \u0623\u0646 \u062a\u0646\u0642\u0644\u0647\u0645 \u0628\u0646\u0641\u0633\u0643 \u0644\u0648 \u0634\u0626\u062a.", + "VisualLoginFormHelp": "\u0625\u062e\u062a\u0631 \u0645\u0633\u062a\u062e\u062f\u0645\u0627\u064b \u0623\u0648 \u0633\u062c\u0644 \u062f\u062e\u0648\u0644\u0643 \u064a\u062f\u0648\u064a\u0627\u064b", + "LabelSportsCategories": "\u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0627\u0644\u0631\u064a\u0627\u0636\u064a\u0629:", + "XmlTvSportsCategoriesHelp": "\u0627\u0644\u0628\u0631\u0627\u0645\u062c \u0645\u0646 \u0647\u0630\u0647 \u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0633\u062a\u0639\u0631\u0636 \u0643\u0628\u0631\u0627\u0645\u062c \u0631\u064a\u0627\u0636\u064a\u0629. \u0625\u0641\u0635\u0644 \u0627\u0644\u0625\u062f\u062e\u0627\u0644\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629 \u0628\u0631\u0645\u0632 \"|\".", + "LabelNewsCategories": "\u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0627\u0644\u0623\u062e\u0628\u0627\u0631\u064a\u0629:", + "XmlTvNewsCategoriesHelp": "\u0627\u0644\u0628\u0631\u0627\u0645\u062c \u0645\u0646 \u0647\u0630\u0647 \u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0633\u062a\u0639\u0631\u0636 \u0643\u0628\u0631\u0627\u0645\u062c \u0623\u062e\u0628\u0627\u0631\u064a\u0629. \u0625\u0641\u0635\u0644 \u0627\u0644\u0625\u062f\u062e\u0627\u0644\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629 \u0628\u0631\u0645\u0632 \"|\".", + "LabelKidsCategories": "\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0627\u0644\u0623\u0637\u0641\u0627\u0644:", + "XmlTvKidsCategoriesHelp": "\u0627\u0644\u0628\u0631\u0627\u0645\u062c \u0645\u0646 \u0647\u0630\u0647 \u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0633\u062a\u0639\u0631\u0636 \u0643\u0628\u0631\u0627\u0645\u062c \u0623\u0637\u0641\u0627\u0644. \u0625\u0641\u0635\u0644 \u0627\u0644\u0625\u062f\u062e\u0627\u0644\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629 \u0628\u0631\u0645\u0632 \"|\".", + "LabelMovieCategories": "\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0627\u0644\u0623\u0641\u0644\u0627\u0645:", + "XmlTvMovieCategoriesHelp": "\u0627\u0644\u0628\u0631\u0627\u0645\u062c \u0645\u0646 \u0647\u0630\u0647 \u0627\u0644\u062a\u0635\u0646\u064a\u0641\u0627\u062a \u0633\u062a\u0639\u0631\u0636 \u0643\u0623\u0641\u0644\u0627\u0645. \u0625\u0641\u0635\u0644 \u0627\u0644\u0625\u062f\u062e\u0627\u0644\u0627\u062a \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629 \u0628\u0631\u0645\u0632 \"|\".", + "XmlTvPathHelp": "\u0645\u0633\u0627\u0631 \u0625\u0644\u0649 \u0645\u0644\u0641 xml \u062a\u0644\u0641\u0632\u064a\u0648\u0646\u064a. \u0633\u064a\u0642\u0648\u0645 \u0623\u0645\u0628\u064a \u0628\u0642\u0631\u0627\u0621\u0629 \u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u0648\u064a\u062a\u0623\u0643\u062f \u0628\u0627\u0633\u062a\u0645\u0631\u0627\u0631 \u0644\u0623\u064a\u0629 \u062a\u062d\u062f\u064a\u062b\u0627\u062a. \u0633\u062a\u0643\u0648\u0646 \u0623\u0646\u062a \u0627\u0644\u0645\u0633\u0624\u0648\u0644 \u0639\u0646 \u0625\u0646\u0634\u0627\u0621 \u0648\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0645\u0644\u0641.", + "LabelBindToLocalNetworkAddress": "\u0625\u0631\u0628\u0637\u0647 \u0625\u0644\u0649 \u0639\u0646\u0648\u0627\u0646 \u0634\u0628\u0643\u0629 \u0645\u062d\u0644\u064a:", + "LabelBindToLocalNetworkAddressHelp": "\u0647\u0630\u0627 \u062e\u064a\u0627\u0631\u064a. \u0627\u0645\u062a\u0637\u064a \u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0622\u064a \u0628\u064a \u0627\u0644\u0645\u062d\u0644\u064a \u0644\u0631\u0628\u0637\u0647 \u0628\u062e\u0627\u062f\u0645 http. \u0625\u0630\u0627 \u062a\u0631\u0643 \u0641\u0627\u0631\u063a\u0627\u064b\u060c \u0641\u0625\u0646 \u0627\u0644\u062e\u0627\u062f\u0645 \u0633\u064a\u0631\u0628\u0637\u0647 \u0628\u062c\u0645\u064a\u0639 \u0627\u0644\u0639\u0646\u0627\u0648\u064a\u0646 \u0627\u0644\u0645\u062a\u0627\u062d\u0629. \u062a\u063a\u064a\u064a\u0631 \u0647\u0630\u0647 \u0627\u0644\u0642\u064a\u0645\u0629 \u064a\u062a\u0637\u0644\u0628 \u0625\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a.", + "TitleHostingSettings": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0627\u0633\u062a\u0636\u0627\u0641\u0629", + "SettingsWarning": "\u0625\u0646 \u062a\u063a\u064a\u064a\u0631 \u0647\u0630\u0647 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0633\u064a\u062a\u0633\u0628\u0628 \u0641\u064a \u0639\u062f\u0645 \u0627\u0633\u062a\u0642\u0631\u0627\u0631 \u0627\u0644\u0646\u0638\u0627\u0645 \u0623\u0648 \u0641\u0634\u0644 \u0641\u064a \u0627\u0644\u0627\u062a\u0635\u0627\u0644\u0627\u062a. \u0625\u0646 \u0635\u0631\u062a \u062a\u0644\u0627\u062d\u0638 \u0623\u064a\u0629 \u0645\u0634\u0627\u0643\u0644\u060c \u0641\u0646\u0646\u0635\u062d \u0623\u0646 \u062a\u0631\u062c\u0639 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0625\u0644\u0649 \u0627\u0644\u0642\u064a\u0645 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629.", + "MapChannels": "\u062a\u0648\u0641\u064a\u0642 \u0627\u0644\u0642\u0646\u0648\u0627\u062a", + "LabelffmpegPath": "\u0645\u0633\u0627\u0631 ffmpeg:", + "LabelffmpegVersion": "\u0625\u0635\u062f\u0627\u0631 ffmpeg:", + "LabelffmpegPathHelp": "\u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u062f\u0627\u0644 \u0639\u0644\u0649 \u0645\u0644\u0641 \u062a\u0637\u0628\u064a\u0642 ffmpeg \u0623\u0648 \u0627\u0644\u0645\u062c\u0644\u062f \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0648\u064a ffmpeg.", + "SetupFFmpeg": "\u0636\u0628\u0637 \u0625\u0639\u062f\u0627\u062f\u0627\u062a ffmpeg", + "SetupFFmpegHelp": "\u0623\u0645\u0628\u064a \u0642\u062f \u064a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u062d\u0632\u0645\u0629 \u0623\u0648 \u062a\u0637\u0628\u064a\u0642 \u0644\u062a\u062d\u0648\u064a\u0644 \u0628\u0639\u0636 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0648\u0633\u0627\u0626\u0637. \u0647\u0646\u0627\u0643 \u0627\u0644\u0643\u062b\u064a\u0631 \u0645\u0646 \u0627\u0644\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0627\u0644\u0645\u062e\u062a\u0644\u0641\u0629 \u0645\u062a\u0627\u062d\u0629\u060c \u0644\u0643\u0646 \u0623\u0645\u0628\u064a \u062a\u0645 \u062a\u0637\u0648\u064a\u0631\u0647 \u0648\u0627\u062e\u062a\u0628\u0627\u0631\u0647 \u0645\u0639 \u062a\u0637\u0628\u064a\u0642 ffmpeg. \u0625\u0646 \u0623\u0645\u0628\u064a \u0644\u064a\u0633 \u0645\u0631\u062a\u0628\u0637 \u0628\u0623\u064a \u0637\u0631\u064a\u0642\u0629 \u0645\u0646 \u0627\u0644\u0637\u0631\u0642 \u0628\u0640 ffmpeg \u0648\u0644\u0627 \u062d\u0642\u0648\u0642 \u0645\u0644\u0643\u064a\u062a\u0647 \u0648\u0644\u0627 \u0623\u0643\u0648\u0627\u062f \u0628\u0631\u0645\u062c\u062a\u0647 \u0648\u0644\u0627 \u062a\u0648\u0632\u064a\u0639\u0647.", + "EnterFFmpegLocation": "\u0625\u062f\u062e\u0644 \u0645\u0633\u0627\u0631 ffmpeg", + "DownloadFFmpeg": "\u0642\u0645 \u0628\u0625\u0646\u0632\u0627\u0644 ffmpeg", + "FFmpegSuggestedDownload": "\u0627\u0644\u0625\u0646\u0632\u0627\u0644\u0627\u062a \u0627\u0644\u0645\u0642\u062a\u0631\u062d\u0629: {0}", + "UnzipFFmpegFile": "\u0641\u0643 \u0645\u0644\u0641\u0627\u062a zip \u0627\u0644\u0645\u0646\u0632\u0644\u0629 \u0625\u0644\u0649 \u0645\u062c\u0644\u062f \u0645\u0646 \u0627\u062e\u062a\u064a\u0627\u0631\u0643.", + "OptionUseSystemInstalledVersion": "\u0627\u0633\u062a\u062e\u062f\u0645 \u0631\u0642\u0645 \u0625\u0635\u062f\u0627\u0631 \u0627\u0644\u0646\u0638\u0627\u0645 \u0627\u0644\u0645\u062b\u0628\u062a", + "OptionUseMyCustomVersion": "\u0627\u0633\u062a\u062e\u062f\u0645 \u0625\u0635\u062f\u0627\u0631 \u0645\u062e\u0635\u0648\u0635", + "FFmpegSavePathNotFound": "\u0644\u0645 \u0646\u0633\u062a\u0637\u0639 \u062a\u062d\u062f\u064a\u062f \u0645\u0648\u0642\u0639 ffmpeg \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0630\u064a \u0623\u062f\u062e\u0644\u062a\u0647. \u0633\u0648\u0641 \u0646\u062d\u062a\u0627\u062c \u062a\u0637\u0628\u064a\u0642 FFprobe \u0623\u064a\u0636\u0627\u064b \u0648\u064a\u062c\u0628 \u0623\u0646 \u064a\u062a\u0648\u0627\u062c\u062f \u0641\u064a \u0646\u0641\u0633 \u0627\u0644\u0645\u0643\u0627\u0646. \u0625\u0646 \u0647\u0630\u0647 \u0627\u0644\u0623\u062c\u0632\u0627\u0621 \u062a\u0643\u0648\u0646 \u0628\u0627\u0644\u0639\u0627\u062f\u0629 \u0645\u062d\u0632\u0648\u0645\u0629 \u0645\u0639\u0627\u064b \u0641\u064a \u0646\u0641\u0633 \u0645\u0644\u0641 \u0627\u0644\u0625\u0646\u0632\u0627\u0644. \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0627\u0644\u0645\u0633\u0627\u0631 \u0627\u0644\u0645\u062f\u062e\u0644 \u0648\u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.", + "XmlTvPremiere": "\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0627\u064b\u060c \u0633\u064a\u0642\u0648\u0645 \u0623\u0645\u0628\u064a \u0628\u062a\u0648\u0631\u064a\u062f {0} \u0633\u0627\u0639\u0629\/\u0633\u0627\u0639\u0627\u062a \u0645\u0646 \u0628\u064a\u0627\u0646\u0627\u062a \u062f\u0644\u064a\u0644 \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629. \u0625\u0646 \u062a\u0648\u0631\u064a\u062f \u0643\u0645 \u063a\u064a\u0631 \u0645\u062d\u062f\u0648\u062f \u0645\u0646 \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0633\u064a\u062a\u0637\u0644\u0628 \u0627\u0634\u062a\u0631\u0627\u0643 \u0623\u0645\u0628\u064a \u0627\u0644\u062a\u0645\u064a\u0651\u0632 \u0633\u0627\u0631\u064a \u0627\u0644\u0635\u0644\u0627\u062d\u064a\u0629.", + "MoreFromValue": "\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 {0}", + "OptionSaveMetadataAsHiddenHelp": "\u0625\u0646 \u062a\u063a\u064a\u064a\u0631 \u0647\u0630\u0647 \u0633\u064a\u0637\u0628\u0642 \u0639\u0644\u0649 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0645\u0646 \u0627\u0644\u0622\u0646. \u0623\u0645\u0627 \u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629 \u0645\u0633\u0628\u0642\u0627\u064b\u060c \u0641\u0647\u064a \u0633\u062a\u062d\u062f\u062b \u0645\u0646 \u0642\u0628\u0644 \u0627\u0644\u062e\u0627\u062f\u0645 \u0641\u064a \u0627\u0644\u0645\u0631\u0629 \u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0627\u0644\u062a\u064a \u064a\u062a\u0645 \u062d\u0641\u0638\u0647\u0627.", + "EnablePhotos": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0644\u0635\u0648\u0631", + "EnablePhotosHelp": "\u0633\u064a\u062a\u0645 \u0627\u0643\u062a\u0634\u0627\u0641 \u0627\u0644\u0635\u0648\u0631 \u0648\u0639\u0631\u0636\u0647\u0627 \u0645\u0639 \u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0623\u062e\u0631\u0649", + "MakeAvailableOffline": "\u0625\u062c\u0639\u0644\u0647\u0627 \u0645\u062a\u0627\u062d\u0629 \u0645\u0639 \u0627\u0646\u0642\u0637\u0627\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644", + "ConfirmRemoveDownload": "\u0647\u0644 \u062a\u0631\u064a\u062f \u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0646\u0632\u0644\u0629\u061f", + "RemoveDownload": "\u0623\u0632\u0644 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0646\u0632\u0644\u0629", + "SyncToOtherDevices": "\u0645\u0632\u0627\u0645\u0646\u0629 \u0645\u0639 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0623\u062e\u0631\u0649", + "ManageOfflineDownloads": "\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0646\u0632\u0644\u0629 \u0645\u0642\u0637\u0648\u0639\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644", + "MessageDownloadScheduled": "\u062a\u0645\u062a \u062c\u062f\u0648\u0644\u0629 \u0645\u0644\u0641\u0627\u062a \u0644\u0644\u0625\u0646\u0632\u0627\u0644", + "RememberMe": "\u062a\u0630\u0643\u0631\u0646\u064a", + "HeaderOfflineSync": "\u0645\u0632\u0627\u0645\u0646\u0629 \u0645\u0642\u0637\u0648\u0639\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644", + "LabelMaxAudioFileBitrate": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649 \u0644\u0645\u0639\u062f\u0651\u0644 \u0627\u0644\u0628\u062a \u0644\u0644\u0635\u0648\u062a", + "LabelMaxAudioFileBitrateHelp": "\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0635\u0648\u062a \u0627\u0644\u062a\u064a \u062a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0645\u0639\u062f\u0644 \u0628\u062a \u0623\u0639\u0644\u0649 \u0633\u064a\u0642\u0648\u0645 \u062e\u0627\u062f\u0645 \u0623\u0645\u0628\u064a \u0628\u062a\u062e\u0641\u064a\u0636\u0647\u0627. \u0643\u0644\u0645\u0627 \u0643\u0627\u0646\u062a \u0627\u0644\u0642\u064a\u0645\u0629 \u0623\u0639\u0644\u0649\u060c \u0643\u0627\u0646\u062a \u0627\u0644\u062c\u0648\u062f\u0629 \u0627\u0644\u0635\u0648\u062a \u0623\u0639\u0644\u0649\u060c \u0648\u0643\u0644\u0645\u0627 \u0643\u0627\u0646\u062a \u0627\u0644\u062c\u0648\u062f\u0629 \u0623\u062f\u0646\u0649\u060c \u0642\u0644\u062a \u0645\u0633\u0627\u062d\u0629 \u0627\u0644\u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629.", + "LabelVaapiDevice": "\u062c\u0647\u0627\u0632 \u0648\u0627\u062c\u0647\u0629 API \u0635\u0648\u062a \u0648\u0635\u0648\u0631\u0629:", + "LabelVaapiDeviceHelp": "\u0647\u0630\u0647 \u0647\u064a \u0639\u0642\u062f\u0629 \u0627\u0644\u062a\u0635\u064a\u064a\u0631 \u0627\u0644\u062a\u064a \u0633\u062a\u0633\u062a\u062e\u062f\u0645 \u0645\u0646 \u0642\u0628\u0644 \u0627\u0644\u062a\u0633\u0631\u064a\u0639 \u0628\u0639\u062a\u0627\u062f \u0627\u0644\u062d\u0627\u0633\u0648\u0628.", + "HowToConnectFromEmbyApps": "\u0643\u064a\u0641\u064a\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0645\u0646 \u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a", + "MessageFolderRipPlaybackExperimental": "\u062f\u0639\u0645 \u062a\u0634\u063a\u064a\u0644 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0646\u0634\u0648\u0644 \u0648\u0648\u0633\u0627\u0626\u0637 ISO \u0647\u064a \u0641\u064a \u0627\u0644\u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u062a\u062c\u0631\u064a\u0628\u064a\u0629 \u0641\u0642\u0637. \u0644\u0623\u0641\u0636\u0644 \u0627\u0644\u0646\u062a\u0627\u0626\u062c\u060c \u062c\u0631\u0628 \u062a\u0637\u0628\u064a\u0642 \u0623\u0645\u0628\u064a \u064a\u062f\u0639\u0645 \u0628\u0627\u0644\u0623\u0635\u0644 \u0647\u0630\u0647 \u0627\u0644\u0635\u064a\u063a\u060c \u0623\u0648 \u0627\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0639\u0627\u062f\u064a\u0629.", + "OptionExtractChapterImage": "\u062a\u0641\u0639\u064a\u0644 \u0627\u0633\u062a\u062e\u0644\u0627\u0635 \u0635\u0648\u0631 \u0627\u0644\u0623\u0628\u0648\u0627\u0628", + "Downloads": "\u0627\u0644\u062a\u0646\u0632\u064a\u0644\u0627\u062a", + "LabelEnableDebugLogging": "\u062a\u0645\u0643\u064a\u0646 \u062a\u0633\u064a\u062c\u0644 \u0627\u0644\u0623\u062e\u0637\u0627\u0621 \u0641\u064a \u0627\u0644\u0633\u062c\u0644 \u0627\u0644\u0643\u0634\u0641\u064a", + "OptionEnableExternalContentInSuggestions": "\u062a\u0645\u0643\u064a\u0646 \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u062e\u0627\u0631\u062c\u064a \u0641\u064a \u0627\u0644\u0645\u0642\u062a\u0631\u062d\u0627\u062a", + "OptionEnableExternalContentInSuggestionsHelp": "\u0627\u0644\u0633\u0645\u0627\u062d \u0644\u0644\u0639\u0631\u0648\u0636 \u0627\u0644\u0625\u0639\u0644\u0627\u0646\u064a\u0629 \u0645\u0646 \u0627\u0644\u0625\u0646\u062a\u0631\u0646\u062a \u0648\u0628\u0631\u0627\u0645\u062c \u0628\u062b \u0627\u0644\u062a\u0644\u0641\u0632\u0629 \u0627\u0644\u062d\u064a \u0644\u062a\u0636\u0645\u0651\u0646 \u0641\u064a \u0627\u0644\u0645\u062d\u062a\u0648\u0649 \u0627\u0644\u0645\u0642\u062a\u0631\u062d.", + "LabelH264EncodingPreset": "\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u062a\u0634\u0641\u064a\u0631 H264:", + "H264EncodingPresetHelp": "\u0627\u062e\u062a\u0631 \u0642\u064a\u0645\u0629 \u0623\u0639\u0644\u0649 \u0644\u062a\u062d\u0633\u064a\u0646 \u0627\u0644\u0633\u0631\u0629 \u0648\u0627\u0644\u0623\u062f\u0627\u0621 \u0648\u0642\u064a\u0645\u0629 \u0623\u0642\u0644 \u0644\u062a\u062d\u0633\u064a\u0646 \u0627\u0644\u062c\u0648\u062f\u0629.", + "LabelH264Crf": "\u0642\u064a\u0645\u0629 CRF \u0644\u062a\u0634\u0641\u064a\u0631 H264:", + "H264CrfHelp": "\u0645\u0639\u0627\u0645\u0644 \u0627\u0644\u0645\u0639\u062f\u0644 \u0627\u0644\u062b\u0627\u0628\u062a CRF \u0647\u0648 \u0627\u0644\u062c\u0648\u062f\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0645\u0634\u0641\u0631 x264. \u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u0625\u0639\u0637\u0627\u0621 \u0642\u064a\u0645\u0629 \u062a\u062a\u0631\u0627\u0648\u062d \u0628\u064a\u0646 0 \u0648 51\u060c \u0648\u0643\u0644\u0645\u0627 \u0642\u0644\u062a \u0627\u0644\u0642\u064a\u0645\u0629 \u0641\u0633\u064a\u0646\u062a\u062c \u0639\u0646 \u0630\u0644\u0643 \u062c\u0648\u062f\u0629 \u0623\u0641\u0636\u0644 (\u0639\u0644\u0649 \u062d\u0633\u0627\u0628 \u062d\u062c\u0645 \u062a\u062e\u0632\u064a\u0646 \u0623\u0639\u0644\u0649). \u0627\u0644\u0642\u064a\u0645 \u0627\u0644\u0645\u0639\u0642\u0648\u0644 \u062a\u062a\u0631\u0627\u0648\u062d \u0628\u064a\u0646 18 \u0648 28. \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a \u0644\u0640 x264 \u0647\u064a 23\u060c \u0644\u0630\u0627 \u0641\u0628\u0625\u0645\u0643\u0627\u0646\u0643 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0647\u0630\u0647 \u0627\u0644\u0642\u064a\u0645\u0629 \u0643\u0646\u0642\u0637\u0629 \u0628\u062f\u0627\u064a\u0629.", + "Sports": "\u0627\u0644\u0631\u064a\u0627\u0636\u0629", + "HeaderForKids": "\u0644\u0644\u0623\u0637\u0641\u0627\u0644", + "HeaderRecordingGroups": "\u0645\u062c\u0645\u0648\u0639\u0627\u062a \u0627\u0644\u062a\u0633\u062c\u064a\u0644", + "LabelConvertRecordingsTo": "\u062a\u062d\u0648\u064a\u0644 \u0627\u0644\u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0645\u0633\u062c\u0644\u0629 \u0625\u0644\u0649:", + "HeaderUpcomingOnTV": "\u0627\u0644\u0628\u0631\u0627\u0645\u062c \u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0639\u0644\u0649 \u0627\u0644\u062a\u0644\u0641\u0627\u0632", + "LabelOptionalNetworkPath": "(\u062e\u064a\u0627\u0631\u064a) \u0645\u062c\u0644\u062f\u0629 \u0645\u0634\u0627\u0631\u0643\u0629 \u0627\u0644\u0634\u0628\u0643\u0629:", + "LabelOptionalNetworkPathHelp": "\u0625\u0646 \u0643\u0627\u0646 \u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0644\u062f \u0645\u0634\u0627\u0631\u0643\u0627\u064b \u0639\u0644\u0649 \u0634\u0628\u0643\u062a\u0643 \u0641\u0625\u0646 \u062a\u0632\u0648\u064a\u062f \u0645\u0633\u0627\u0631 \u0627\u0644\u0634\u0628\u0643\u0629 \u0633\u064a\u0633\u0645\u062d \u0644\u062a\u0637\u0628\u064a\u0642\u0627\u062a \u0623\u0645\u0628\u064a \u0639\u0644\u0649 \u0627\u0644\u0623\u062c\u0647\u0632\u0629 \u0627\u0644\u0623\u062e\u0631\u0649 \u0628\u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0645\u0628\u0627\u0634\u0631\u0629.", + "ButtonPlayExternalPlayer": "\u062a\u0634\u063a\u064a\u0644 \u0628\u0645\u0634\u063a\u0644\u0627\u062a \u062e\u0627\u0631\u062c\u064a\u0629", + "NotScheduledToRecord": "\u0644\u0645 \u062a\u064a\u0645 \u062c\u062f\u0648\u0644\u062a\u0647 \u0644\u0644\u062a\u0633\u062c\u064a\u0644", + "SynologyUpdateInstructions": "\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0625\u0644\u0649 DSM \u062b\u0645 \u062a\u0648\u062c\u0647 \u0644\u0640 \u0645\u0631\u0643\u0632 \u0627\u0644\u062d\u0632\u0645 \u0644\u0644\u062a\u062d\u062f\u064a\u062b.", + "LatestFromLibrary": "\u0623\u062d\u062f\u062b \u0627\u0644{0}", + "LabelMoviePrefix": "\u0628\u0627\u062f\u0626\u0629 \u0627\u0644\u0623\u0641\u0644\u0627\u0645:", + "LabelMoviePrefixHelp": "\u0625\u0646 \u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u0628\u0627\u062f\u0626\u0629 \u0644\u0639\u0646\u0627\u0648\u064a\u0646 \u0627\u0644\u0623\u0641\u0644\u0627\u0645\u060c \u0641\u0623\u062f\u062e\u0644\u0647\u0627 \u0647\u0646\u0627 \u0644\u0643\u064a \u064a\u062a\u0645\u0643\u0646 \u0623\u0645\u0628\u064a \u0645\u0646 \u0623\u0646 \u064a\u062a\u0639\u0627\u0645\u0644 \u0645\u0639\u0647\u0627 \u0628\u0627\u0644\u0637\u0631\u064a\u0642\u0629 \u0627\u0644\u0635\u062d\u064a\u062d\u0629.", + "HeaderRecordingPostProcessing": "\u062a\u0637\u0628\u064a\u0642 \u0645\u0627-\u0628\u0639\u062f-\u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629 \u0644\u0644\u062a\u0633\u062c\u064a\u0644", + "LabelPostProcessorArguments": "\u0645\u0639\u0637\u064a\u0627\u062a \u0633\u0637\u0631 \u0627\u0644\u0623\u0648\u0627\u0645\u0631 \u0644\u062a\u0637\u0628\u064a\u0642 \u0645\u0627 \u0628\u0639\u062f \u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629", + "LabelPostProcessorArgumentsHelp": "\u0627\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0645\u0633\u0627\u0631: {path} \u0643\u0645\u0633\u0627\u0631 \u0644\u0645\u0644\u0641 \u0627\u0644\u062a\u0633\u062c\u064a\u0644.", + "LabelPostProcessor": "\u062a\u0637\u0628\u064a\u0642 \u0645\u0627-\u0628\u0639\u062f-\u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629", + "ErrorAddingXmlTvFile": "\u0643\u0627\u0646 \u0647\u0646\u0627\u0643 \u062e\u0637\u0623 \u0641\u064a \u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0645\u0644\u0641 XmlTV . \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0648\u062c\u0648\u062f \u0627\u0644\u0645\u0644\u0641 \u062b\u0645 \u062d\u0627\u0648\u0644 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649." } \ No newline at end of file diff --git a/dashboard-ui/strings/be-BY.json b/dashboard-ui/strings/be-BY.json index 2ccc8fbdb0..fb33928387 100644 --- a/dashboard-ui/strings/be-BY.json +++ b/dashboard-ui/strings/be-BY.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u0412\u044b\u0445\u0430\u0434", - "LabelApiDocumentation": "\u0414\u0430\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u044b\u044f \u043f\u0430 API", - "LabelBrowseLibrary": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u044b\u044f \u043f\u0430 \u043c\u0435\u0434\u044b\u044f\u0442\u044d\u0446\u044b", - "LabelConfigureServer": "\u041d\u0430\u043b\u0430\u0434\u0430 Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "\u041f\u0430\u043f\u044f\u0440\u044d\u0434\u043d\u044f\u0435", "LabelFinish": "\u0413\u0430\u0442\u043e\u0432\u0430", "LabelNext": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u0435", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\u0412\u0430\u0448\u0430 \u0456\u043c\u044f:", "MoreUsersCanBeAddedLater": "\u041f\u043e\u0442\u044b\u043c \u043c\u043e\u0436\u043d\u0430 \u0434\u0430\u0434\u0430\u0446\u044c \u044f\u0448\u0447\u044d \u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043b\u044c\u043d\u0456\u043a\u0430\u045e \u043f\u0440\u0430\u0437 \u00ab\u0406\u043d\u0444\u0430\u043f\u0430\u043d\u044d\u043b\u044c\u00bb.", "UserProfilesIntro": "\u0423 Emby \u0456\u0441\u043d\u0443\u0435 \u045e\u0431\u0443\u0434\u0430\u0432\u0430\u043d\u0430\u044f \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043a\u0430 \u0434\u043b\u044f \u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043b\u044c\u043d\u0456\u0446\u043a\u0456\u0445 \u043f\u0440\u043e\u0444\u0456\u043b\u044f\u045e, \u0434\u0430\u0437\u0432\u0430\u043b\u044f\u044e\u0447\u044b \u043a\u043e\u0436\u043d\u0430\u043c\u0443 \u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043b\u044c\u043d\u0456\u043a\u0443 \u0432\u0430\u043b\u043e\u0434\u0430\u0446\u044c \u0441\u0432\u0430\u0456\u043c\u0456 \u045e\u043b\u0430\u0441\u043d\u044b\u043c\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0456 \u0430\u0434\u043b\u044e\u0441\u0442\u0440\u0430\u0432\u0430\u043d\u043d\u044f, \u0441\u0442\u0430\u043d\u0430\u043c \u043f\u0440\u0430\u0439\u0433\u0440\u0430\u0432\u0430\u043d\u043d\u044f \u0456 \u043a\u0456\u0440\u0430\u0432\u0430\u043d\u043d\u0435\u043c \u045e\u0442\u0440\u044b\u043c\u0430\u043d\u043d\u044f.", - "LabelWindowsService": "\u0421\u043b\u0443\u0436\u0431\u0430 Windows", - "AWindowsServiceHasBeenInstalled": "\u0421\u043b\u0443\u0436\u0431\u0430 Windows \u0431\u044b\u043b\u0430 \u045e\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u043d\u0430\u044f.", - "WindowsServiceIntro1": "Emby Server \u0437\u0432\u044b\u0447\u0430\u0439\u043d\u0430 \u043f\u0440\u0430\u0446\u0443\u0435 \u044f\u043a \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043d\u044b \u0434\u0430\u0434\u0430\u0442\u0430\u043a \u0441\u0430 \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0443 \u0441\u0456\u0441\u0442\u044d\u043c\u043d\u044b\u043c \u043b\u0430\u0442\u043a\u0443, \u0430\u043b\u0435 \u043a\u0430\u043b\u0456 \u043f\u0435\u0440\u0430\u0432\u0430\u0436\u043d\u0430 \u043f\u0440\u0430\u0446\u0430 \u044f\u043a \u0444\u043e\u043d\u0430\u0432\u0430\u0439 \u0441\u043b\u0443\u0436\u0431\u044b, \u0437\u0430\u043c\u0435\u0441\u0442 \u0433\u044d\u0442\u0430\u0433\u0430 \u044f\u0433\u043e \u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u0430\u043f\u0443\u0441\u0446\u0456\u0446\u044c \u043f\u0440\u0430\u0437 \u0434\u044b\u0441\u043f\u0435\u0442\u0447\u0430\u0440 \u0441\u043b\u0443\u0436\u0431\u0430\u045e Windows.", - "WindowsServiceIntro2": "\u041f\u0440\u044b \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043d\u043d\u0456 \u0441\u043b\u0443\u0436\u0431\u044b Windows, \u043f\u0430\u043c\u044f\u0442\u0430\u0439\u0446\u0435, \u0448\u0442\u043e \u043d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430\u044f \u044f\u0435 \u0430\u0434\u043d\u0430\u0447\u0430\u0441\u043e\u0432\u0430\u044f \u043f\u0440\u0430\u0446\u0430 \u0441\u0430 \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0443 \u0441\u0456\u0441\u0442\u044d\u043c\u043d\u044b\u043c \u043b\u0430\u0442\u043a\u0443, \u0442\u0430\u043c\u0443 \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u0430 \u0432\u044b\u0439\u0441\u0446\u0456 \u0437 \u0437\u043d\u0430\u0447\u043a\u0430 \u045e \u043b\u0430\u0442\u043a\u0443 \u0434\u043b\u044f \u0442\u0430\u0433\u043e, \u043a\u0430\u0431 \u0441\u043b\u0443\u0436\u0431\u0430 \u043f\u0430\u0447\u0430\u043b\u0430 \u043f\u0440\u0430\u0446\u0430\u0432\u0430\u0446\u044c. \u0421\u043b\u0443\u0436\u0431\u0443 \u0442\u0430\u043a\u0441\u0430\u043c\u0430 \u0442\u0440\u044d\u0431\u0430 \u0431\u0443\u0434\u0437\u0435 \u043d\u0430\u043b\u0430\u0434\u0437\u0456\u0446\u044c, \u0443\u0432\u0430\u0439\u0448\u043e\u045e\u0448\u044b \u0437 \u043f\u0440\u0430\u0432\u0430\u043c\u0456 \u0430\u0434\u043c\u0456\u043d\u0456\u0441\u0442\u0440\u0430\u0442\u0430\u0440\u0430 \u045e \u043a\u0430\u043d\u0441\u043e\u043b\u044c \u0423\u043f\u0440\u0430\u045e\u043b\u0435\u043d\u043d\u0435 \u043a\u0430\u043c\u043f\u0443\u0442\u0430\u0440\u0430\u043c. \u041f\u0440\u044b \u0437\u0430\u043f\u0443\u0441\u043a\u0443 \u044f\u043a \u0441\u043b\u0443\u0436\u0431\u044b, \u0432\u044b \u043f\u0430\u0432\u0456\u043d\u043d\u044b \u043f\u0435\u0440\u0430\u043a\u0430\u043d\u0430\u0446\u0446\u0430, \u0448\u0442\u043e \u0456\u043c\u044f \u045e\u0434\u0437\u0435\u043b\u044c\u043d\u0456\u043a\u0430 \u0441\u043b\u0443\u0436\u0431\u044b \u043c\u0430\u0435 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u0430 \u0432\u0430\u0448\u044b\u0445 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0430\u043c.", "WizardCompleted": "\u0413\u044d\u0442\u0430 \u045e\u0441\u0451, \u0448\u0442\u043e \u043d\u0430\u043c \u0442\u0440\u044d\u0431\u0430 \u0437\u0430\u0440\u0430\u0437. Emby \u043f\u0430\u0447\u044b\u043d\u0430\u0435 \u0437\u0431\u0456\u0440\u0430\u0446\u044c \u0437\u0432\u0435\u0441\u0442\u043a\u0456 \u0430\u0431 \u0432\u0430\u0448\u0430\u0439 \u043c\u0435\u0434\u044b\u044f\u0442\u044d\u0446\u044b. \u0410\u0437\u043d\u0430\u0451\u043c\u0446\u0435\u0441\u044f \u043f\u0430\u043a\u0443\u043b\u044c \u0437 \u043d\u0435\u043a\u0430\u0442\u043e\u0440\u044b\u043c\u0456 \u043d\u0430\u0448\u044b\u043c\u0456 \u043f\u0440\u0430\u0433\u0440\u0430\u043c\u0430\u043c\u0456, \u0430 \u0437\u0430\u0442\u044b\u043c \u043d\u0430\u0446\u0456\u0441\u043d\u0456\u0446\u0435 \u0413\u0430\u0442\u043e\u0432\u0430<\/b>, \u043a\u0430\u0431 \u043f\u0440\u0430\u0433\u043b\u044f\u0434\u0437\u0435\u0446\u044c \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430<\/b>.", "LabelConfigureSettings": "\u041f\u0440\u044b\u0437\u043d\u0430\u0447\u044b\u0446\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b", - "LabelEnableAutomaticPortMapping": "\u0414\u0430\u0437\u0432\u043e\u043b\u0456\u0446\u044c \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0447\u043d\u0430\u0435 \u0441\u0443\u043f\u0430\u0441\u0442\u0430\u045e\u043b\u0435\u043d\u043d\u0435 \u043f\u0430\u0440\u0442\u043e\u045e", - "LabelEnableAutomaticPortMappingHelp": "UPnP \u0434\u0430\u0435 \u043c\u0430\u0433\u0447\u044b\u043c\u0430\u0441\u0446\u0456 \u0430\u045e\u0442\u0430\u043c\u0430\u0442\u044b\u0437\u0430\u0432\u0430\u043d\u0430\u0433\u0430 \u043a\u0430\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0432\u0430\u043d\u043d\u044f \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u044b\u0437\u0430\u0442\u0430\u0440\u0430 \u0434\u043b\u044f \u0437\u0440\u0443\u0447\u043d\u0430\u0433\u0430 \u0437\u043d\u0435\u0448\u043d\u044f\u0433\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0443. \u0413\u044d\u0442\u0430 \u043c\u043e\u0436\u0430 \u043d\u0435 \u0441\u043f\u0440\u0430\u0446\u0430\u0432\u0430\u0446\u044c \u0437 \u043d\u0435\u043a\u0430\u0442\u043e\u0440\u044b\u043c\u0456 \u043c\u0430\u0434\u044d\u043b\u044f\u043c\u0456 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u044b\u0437\u0430\u0442\u0430\u0440\u0430\u045e.", "HeaderTermsOfService": "\u0423\u043c\u043e\u0432\u044b \u043f\u0440\u0430\u0434\u0430\u0441\u0442\u0430\u045e\u043b\u0435\u043d\u043d\u044f \u043f\u0430\u0441\u043b\u0443\u0433 Emby", "MessagePleaseAcceptTermsOfService": "\u041f\u0430\u0446\u0432\u0435\u0440\u0434\u0437\u0456\u0446\u0435 \u0437\u0433\u043e\u0434\u0443 \u0437 \u0423\u043c\u043e\u0432\u0430\u043c\u0456 \u043f\u0440\u0430\u0434\u0430\u0441\u0442\u0430\u045e\u043b\u0435\u043d\u043d\u044f \u043f\u0430\u0441\u043b\u0443\u0433 \u0456 \u041f\u0430\u043b\u0456\u0442\u044b\u043a\u0430\u0439 \u043f\u0440\u044b\u0432\u0430\u0442\u043d\u0430\u0441\u0446\u0456, \u043f\u0435\u0440\u0448 \u0447\u044b\u043c \u043f\u0440\u0430\u0446\u044f\u0433\u043d\u0443\u0446\u044c.", "OptionIAcceptTermsOfService": "\u042f \u0437\u0433\u0430\u0434\u0436\u0430\u044e\u0441\u044f \u0437 \u0423\u043c\u043e\u0432\u0430\u043c\u0456 \u043f\u0440\u0430\u0434\u0430\u0441\u0442\u0430\u045e\u043b\u0435\u043d\u043d\u044f \u043f\u0430\u0441\u043b\u0443\u0433", "ButtonPrivacyPolicy": "\u041f\u0430\u043b\u0456\u0442\u044b\u043a\u0430 \u043f\u0440\u044b\u0432\u0430\u0442\u043d\u0430\u0441\u0446\u0456...", "ButtonTermsOfService": "\u0423\u043c\u043e\u0432\u044b \u043f\u0440\u0430\u0434\u0430\u0441\u0442\u0430\u045e\u043b\u0435\u043d\u043d\u044f \u043f\u0430\u0441\u043b\u0443\u0433...", - "HeaderDeveloperOptions": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0430\u0441\u043f\u0440\u0430\u0446\u043e\u045e\u0448\u0447\u044b\u043a\u0430\u045e", - "OptionEnableWebClientResponseCache": "\u0423\u043a\u043b\u044e\u0447\u044b\u0446\u044c \u043a\u044d\u0448\u0430\u0432\u0430\u043d\u043d\u0435 \u0432\u044d\u0431-\u0432\u043e\u0434\u0433\u0443\u043a\u0430\u045e.", - "OptionDisableForDevelopmentHelp": "\u041d\u0430\u043b\u0430\u0434\u0436\u0432\u0430\u0439\u0446\u0435 \u0456\u0445, \u0443 \u0432\u044b\u043f\u0430\u0434\u043a\u0443 \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u0430\u0441\u0446\u0456, \u0434\u043b\u044f \u0432\u044d\u0431-\u0440\u0430\u0441\u043f\u0440\u0430\u0446\u043e\u045e\u043a\u0456.", - "OptionEnableWebClientResourceMinification": "\u0423\u043a\u043b\u044e\u0447\u044b\u0446\u044c \u043c\u0456\u043d\u0456\u043c\u0456\u0437\u0430\u0446\u044b\u044e \u0432\u044d\u0431-\u0440\u044d\u0441\u0443\u0440\u0441\u0430\u045e", - "LabelDashboardSourcePath": "\u0428\u043b\u044f\u0445 \u0434\u0430 \u043a\u0440\u044b\u043d\u0456\u0446\u044b \u0432\u044d\u0431-\u043a\u043b\u0456\u0435\u043d\u0442\u0430:", - "LabelDashboardSourcePathHelp": "\u041a\u0430\u043b\u0456 \u0441\u0435\u0440\u0432\u0435\u0440 \u043f\u0440\u0430\u0446\u0443\u0435 \u0430\u0434 \u0437\u044b\u0445\u043e\u0434\u043d\u044b\u0445 \u043a\u043e\u0434\u0430\u045e, \u043f\u0430\u043a\u0430\u0436\u044b\u0446\u0435 \u0448\u043b\u044f\u0445 \u0434\u0430 \u0442\u044d\u0447\u0446\u044b dashboard-ui. \u0423\u0441\u0435 \u0444\u0430\u0439\u043b\u044b \u0432\u044d\u0431-\u043a\u043b\u0456\u0435\u043d\u0442\u0430 \u0431\u0443\u0434\u0443\u0446\u044c \u043f\u0430\u0434\u0430\u0432\u0430\u0446\u0446\u0430 \u0437 \u0433\u044d\u0442\u0430\u0433\u0430 \u0440\u0430\u0437\u043c\u044f\u0448\u0447\u044d\u043d\u043d\u044f.", "ButtonConvertMedia": "\u041a\u0430\u043d\u0432\u0435\u0440\u0442\u0430\u0432\u0430\u0446\u044c \u043c\u044d\u0434\u044b\u044f\u0437\u044c\u0432\u0435\u0441\u0442\u043a\u0456", "ButtonOrganize": "\u0423\u043f\u0430\u0440\u0430\u0434\u043a\u0430\u0432\u0430\u0446\u044c", "HeaderSupporterBenefits": "\u041a\u0430\u043c\u043f\u0430\u043d\u0435\u043d\u0442\u044b Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "\u041a\u0430\u0431 \u0434\u0430\u0434\u0430\u0446\u044c \u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043b\u044c\u043d\u0456\u043a\u0430, \u044f\u043a\u043e\u0433\u0430 \u043d\u044f\u043c\u0430 \u045e \u0441\u043f\u0456\u0441\u0435, \u0441\u043f\u0430\u0447\u0430\u0442\u043a\u0443 \u043d\u0435\u0430\u0431\u0445\u043e\u0434\u043d\u0430 \u0437\u0432\u044f\u0437\u0430\u0446\u044c \u044f\u0433\u043e, \u0441\u0442\u0432\u0430\u0440\u044b\u045e \u0440\u0430\u0445\u0443\u043d\u0430\u043a \u0437 Emby Connect \u0437 \u044f\u0433\u043e \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0456 \u043f\u0440\u043e\u0444\u0456\u043b\u044e \u043a\u0430\u0440\u044b\u0441\u0442\u0430\u043b\u044c\u043d\u0456\u043a\u0430.", "LabelPinCode": "PIN-\u043a\u043e\u0434:", "OptionHideWatchedContentFromLatestMedia": "\u0421\u0445\u0430\u0432\u0430\u0446\u044c \u043f\u0440\u0430\u0433\u043b\u0435\u0434\u0436\u0430\u043d\u0430\u0435 \u045e\u0442\u0440\u044b\u043c\u0430\u043d\u043d\u0435 \u0437 \u0410\u043f\u043e\u0448\u043d\u0456\u0445 \u043c\u0435\u0434\u044b\u044f\u0434\u0430\u0434\u0437\u0435\u043d\u044b\u0445", + "DeleteMedia": "Delete media", "HeaderSync": "\u0421\u0456\u043d\u0445\u0440\u0430\u043d\u0456\u0437\u0430\u0446\u044b\u044f", "ButtonOk": "\u041e\u041a", "ButtonCancel": "\u0410\u0434\u043c\u044f\u043d\u0456\u0446\u044c", "ButtonExit": "\u0412\u044b\u0439\u0441\u0446\u0456", "ButtonNew": "\u041d\u043e\u0432\u0430\u0435", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "\u0422\u0440\u044b\u0433\u0435\u0440\u044b \u0437\u0430\u0434\u0430\u0447\u044b", "HeaderTV": "\u0422\u0411", "HeaderAudio": "\u0410\u045e\u0434\u044b\u0451", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u0443\u0432\u044f\u0434\u0437\u0456\u0446\u0435 \u0432\u0430\u0448 \u043f\u0440\u043e\u0441\u0442\u044b PIN-\u043a\u043e\u0434", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", "LabelCountry": "Country:", "LabelLanguage": "Language:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", "TabPassword": "Password", "TabLibraryAccess": "Library Access", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Episodes", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", "HeaderSeries": "Series", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/bg-BG.json b/dashboard-ui/strings/bg-BG.json index 034ce80709..e8251c545b 100644 --- a/dashboard-ui/strings/bg-BG.json +++ b/dashboard-ui/strings/bg-BG.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u0418\u0437\u0445\u043e\u0434", - "LabelApiDocumentation": "API \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f", - "LabelBrowseLibrary": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430", - "LabelConfigureServer": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d", "LabelFinish": "\u041a\u0440\u0430\u0439", "LabelNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\u041f\u044a\u0440\u0432\u043e\u0442\u043e \u0432\u0438 \u0438\u043c\u0435:", "MoreUsersCanBeAddedLater": "\u041f\u043e\u0432\u0435\u0447\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0438 \u043f\u043e-\u043a\u044a\u0441\u043d\u043e \u043e\u0442 \u0433\u043b\u0430\u0432\u043d\u0438\u044f \u043f\u0430\u043d\u0435\u043b.", "UserProfilesIntro": "Emby \u0432\u043a\u043b\u044e\u0447\u0432\u0430 \u0432\u0433\u0440\u0430\u0434\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b\u0438, \u043a\u043e\u0438\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430\u0442 \u043d\u0430 \u0432\u0441\u0435\u043a\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0442\u0435\u043b \u0434\u0430 \u0438\u043c\u0430 \u0441\u0432\u043e\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u0430\u0442\u0430, \u043c\u044f\u0441\u0442\u043e \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u0438 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "Windows Service \u0431\u0435\u0448\u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d.", - "WindowsServiceIntro1": "\u041d\u043e\u0440\u043c\u0430\u043b\u043d\u043e, Emby \u0421\u044a\u0440\u0432\u044a\u0440 \u0440\u0430\u0431\u043e\u0442\u0438 \u043a\u0430\u0442\u043e \u0434\u0435\u0441\u043a\u0442\u043e\u043f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430 \u0441 \u0442\u0440\u0435\u0439 \u0438\u043a\u043e\u043d\u0430, \u043d\u043e \u0432 \u0441\u043b\u0443\u0447\u0430\u0439, \u0447\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u0430 \u043a\u0430\u0442\u043e \u0443\u0441\u043b\u0443\u0433\u0430 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0433\u043e \u043f\u0443\u0441\u043d\u0435\u0442\u0435 \u043e\u0442 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u043d\u0438\u044f \u043f\u0430\u043d\u0435\u043b \u043d\u0430 windows \u0443\u0441\u043b\u0443\u0433\u0438\u0442\u0435.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "\u0422\u043e\u0432\u0430 \u0435 \u0432\u0441\u0438\u0447\u043a\u043e \u043e\u0442 \u043a\u043e\u0435\u0442\u043e \u0441\u0435 \u043d\u0443\u0436\u0434\u0430\u0435\u043c \u0437\u0430 \u043c\u043e\u043c\u0435\u043d\u0442\u0430. Emby \u0435 \u0437\u0430\u043f\u043e\u0447\u043d\u0430\u043b \u0434\u0430 \u0441\u044a\u0431\u0438\u0440\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043c\u0435\u0434\u0438\u0439\u043d\u0430\u0442\u0430 \u0432\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430. \u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u043d\u044f\u043a\u043e\u0438 \u043e\u0442 \u043d\u0430\u0448\u0438\u0442\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043f\u043e\u0441\u043b\u0435 \u043d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0413\u043e\u0442\u043e\u0432\u043e<\/b>, \u0437\u0430 \u0434\u0430 \u0432\u0438\u0434\u0438\u0442\u0435 Server Dashboard<\/b>.", "LabelConfigureSettings": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", - "LabelEnableAutomaticPortMapping": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043d\u0430 \u043f\u043e\u0440\u0442\u043e\u0432\u0435\u0442\u0435", - "LabelEnableAutomaticPortMappingHelp": "UPnP \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u043d\u0430 \u0440\u0443\u0442\u0435\u0440\u0430 \u0437\u0430 \u043b\u0435\u0441\u0435\u043d \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f. \u0422\u043e\u0432\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0438 \u0441 \u043d\u044f\u043a\u043e\u0438 \u0440\u0443\u0442\u0435\u0440\u0438.", "HeaderTermsOfService": "Emby \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435", "MessagePleaseAcceptTermsOfService": "\u041c\u043e\u043b\u044f \u043f\u0440\u0438\u0435\u043c\u0435\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u0438 \u0434\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442, \u043f\u0440\u0435\u0434\u0438 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435.", "OptionIAcceptTermsOfService": "\u041f\u0440\u0438\u0435\u043c\u0430\u043c \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435", "ButtonPrivacyPolicy": "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442", "ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435", - "HeaderDeveloperOptions": "\u041e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "\u0413\u043b\u0430\u0432\u0435\u043d \u043f\u044a\u0442 \u043a\u044a\u043c \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0430", - "LabelDashboardSourcePathHelp": "\u0410\u043a\u043e \u043f\u0443\u0441\u043a\u0430\u0442\u0435 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 \u043e\u0442 \u0438\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434, \u043f\u043e\u0441\u043e\u0447\u0435\u0442\u0435 \u043f\u044a\u0442\u044f \u043a\u044a\u043c \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u043e\u0442\u043e \u0442\u0430\u0431\u043b\u043e. \u0412\u0441\u0438\u0447\u043a\u0438 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0438 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0431\u0441\u043b\u0443\u0436\u0432\u0430\u043d\u0438 \u043e\u0442 \u0442\u0430\u043c.", "ButtonConvertMedia": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043c\u0435\u0434\u0438\u044f\u0442\u0430", "ButtonOrganize": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u0439", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "\u0417\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043a\u043e\u0439\u0442\u043e \u043d\u0435 \u0435 \u0432 \u043b\u0438\u0441\u0442\u0438\u0442\u0435, \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u043f\u044a\u0440\u0432\u043e \u0434\u0430 \u0437\u0430\u043a\u0430\u0447\u0438\u0442\u0435 \u0442\u0435\u0445\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b \u043a\u044a\u043c Emby Connect \u043e\u0442 \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430.", "LabelPinCode": "\u041f\u0418\u041d \u043a\u043e\u0434:", "OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u0438\u0439 \u0433\u043b\u0435\u0434\u0430\u043d\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u043c\u0435\u0434\u0438\u044f", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "\u041e\u043a", "ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438", "ButtonExit": "\u0418\u0437\u0445\u043e\u0434", "ButtonNew": "\u041d\u043e\u0432", + "OptionDev": "\u0417\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438 (\u041d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u0435\u043d)", + "OptionBeta": "\u0411\u0435\u0442\u0430", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "\u0410\u0443\u0434\u0438\u043e", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "\u0417\u0430 \u0434\u043e\u0441\u0442\u044a\u043f, \u043c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u0432\u043e\u044f \u043b\u0435\u0441\u0435\u043d \u041f\u0418\u041d \u043a\u043e\u0434", "ButtonConfigurePinCode": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 \u041f\u0418\u041d \u043a\u043e\u0434", "RegisterWithPayPal": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0439 \u0441 PayPal", - "HeaderEnjoyDayTrial": "\u041d\u0430\u0441\u043b\u0430\u0434\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0431\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u0430 14 \u0434\u043d\u0435\u0432\u043d\u0430 \u043f\u0440\u043e\u0431\u0430", "LabelSyncTempPath": "\u0412\u0440\u0435\u043c\u0435\u043d\u0435\u043d \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u044a\u0442:", "LabelSyncTempPathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u0430 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f.", "LabelCustomCertificatePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "\u0410\u043a\u043e \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u043e, \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u0440\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u044f .rar \u0438 .zip \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435.", "LabelEnterConnectUserName": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0438\u043b\u0438 email:", "LabelEnterConnectUserNameHelp": "\u0422\u043e\u0432\u0430 \u0435 \u0438\u043c\u0435\u0442\u043e \u043d\u0430 \u0432\u0430\u0448\u0438\u044f\u0442 Emby online \u0430\u043a\u0430\u0443\u043d\u0442 \u0438\u043b\u0438 email.", - "LabelEnableEnhancedMovies": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0444\u0438\u043b\u043c\u043e\u0432\u0438 \u0434\u0438\u0441\u043f\u043b\u0435\u0438", - "LabelEnableEnhancedMoviesHelp": "\u041f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044f, \u0444\u0438\u043b\u043c\u0438\u0442\u0435 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0430\u043f\u043a\u0438, \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0449\u0438 \u0442\u0440\u0435\u0439\u043b\u044a\u0440\u0438, \u0435\u043a\u0441\u0442\u0440\u0438, \u0430\u043a\u0442\u044c\u043e\u0440\u0438\u0442\u0435, \u0435\u043a\u0438\u043f\u0430, \u043a\u0430\u043a\u0442\u043e \u0438 \u0434\u0440\u0443\u0433\u043e \u0441\u0432\u044a\u0440\u0437\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.", "HeaderSyncJobInfo": "\u0421\u0438\u043d\u0445\u0440. \u0417\u0430\u0434\u0430\u0447\u0430", "FolderTypeMixed": "\u0421\u043c\u0435\u0441\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435", "FolderTypeMovies": "\u0424\u0438\u043b\u043c\u0438", @@ -84,7 +70,6 @@ "LabelContentType": "\u0422\u0438\u043f \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e:", "TitleScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "\u0414\u043e\u0431\u0430\u0432\u0438 \u043c\u0435\u0434\u0438\u0439\u043d\u0430 \u043f\u0430\u043f\u043a\u0430", "LabelFolderType": "\u0422\u0438\u043f \u043d\u0430 \u043f\u0430\u043f\u043a\u0430\u0442\u0430:", "LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:", "LabelLanguage": "\u0415\u0437\u0438\u043a:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "\u0417\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u0432 \u043c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u043f\u0430\u043f\u043a\u0438 \u0449\u0435 \u0433\u0438 \u0441\u043b\u043e\u0436\u0438 \u043d\u0430 \u043c\u044f\u0441\u0442\u043e, \u043a\u044a\u0434\u0435\u0442\u043e \u043b\u0435\u0441\u043d\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0438.", "LabelDownloadInternetMetadata": "\u0421\u0432\u0430\u043b\u044f\u0439 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0442 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442", "LabelDownloadInternetMetadataHelp": "Emby Server \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0432\u0430\u043b\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043a\u0440\u0430\u0441\u0438\u0432\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u043c\u0435\u0434\u0438\u044f.", - "TabPreferences": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f", "TabPassword": "\u041f\u0430\u0440\u043e\u043b\u0430", "TabLibraryAccess": "\u0414\u043e\u0441\u044a\u043f \u0434\u043e \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430", "TabAccess": "\u0414\u043e\u0441\u0442\u044a\u043f", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438", "DeviceAccessHelp": "\u0422\u043e\u0432\u0430 \u0441\u0435 \u043e\u0442\u043d\u0430\u0441\u044f \u0441\u0430\u043c\u043e \u0437\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043e\u0438\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u0435\u043d\u0438 \u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u043f\u043e\u043f\u0440\u0435\u0447\u0438 \u043d\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u043e\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440. \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0449\u0435 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u0438\u043c \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0442\u0443\u043a.", "LabelDisplayMissingEpisodesWithinSeasons": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u043b\u0438\u043f\u0441\u0432\u0430\u0449\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0432 \u0441\u0435\u0437\u043e\u043d\u0438\u0442\u0435", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u043d\u0435\u0438\u0437\u043b\u044a\u0447\u0435\u043d\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0432 \u0441\u0435\u0437\u043e\u043d\u0438\u0442\u0435", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0438\u0434\u0435\u043e", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e", "LabelAudioLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e:", "LabelSubtitleLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438\u0442\u0435:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 \u043f\u0440\u0435\u043f\u043e\u0440\u044a\u0447\u0430\u043d\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u044f. \u0421\u0430\u043c\u043e JPG\/PNG", "MessageNothingHere": "\u0422\u0443\u043a \u043d\u044f\u043c\u0430 \u043d\u0438\u0449\u043e.", "MessagePleaseEnsureInternetMetadata": "\u041c\u043e\u043b\u044f, \u0443\u0432\u0435\u0440\u0435\u0442\u0435 \u0441\u0435 \u0447\u0435 \u0441\u0432\u0430\u043b\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0442 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e.", - "TabSuggested": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "TabLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438", "TabUpcoming": "\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438", "TabShows": "\u041f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f", "TabEpisodes": "\u0415\u043f\u0438\u0437\u043e\u0434\u0438", "TabGenres": "\u0416\u0430\u043d\u0440\u043e\u0432\u0435", - "TabPeople": "\u0425\u043e\u0440\u0430", "TabNetworks": "\u041c\u0440\u0435\u0436\u0438", "HeaderUsers": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "\u041f\u0438\u0441\u0430\u0442\u0435\u043b\u0438", "OptionProducers": "\u041f\u0440\u043e\u0434\u0443\u0446\u0435\u043d\u0442\u0438", "HeaderResume": "\u041f\u0440\u043e\u0436\u044a\u043b\u0436\u0438", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "\u0421\u043b\u0435\u0434\u0432\u0430", "NoNextUpItemsMessage": "\u041d\u0438\u0449\u043e \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u043e. \u0417\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435 \u0434\u0430 \u0433\u043b\u0435\u0434\u0430\u0442\u0435 \u0432\u0430\u0448\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f!", "HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0415\u043f\u0438\u0437\u043e\u0434\u0438", @@ -185,6 +173,7 @@ "OptionPlayCount": "\u0411\u0440\u043e\u0439 \u043f\u0443\u0441\u043a\u0430\u043d\u0438\u044f", "OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435", "OptionDateAdded": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "\u0410\u043b\u0431\u0443\u043c\u043e\u0432 \u0410\u0440\u0442\u0438\u0441\u0442", "OptionArtist": "\u0410\u0440\u0442\u0438\u0441\u0442", "OptionAlbum": "\u0410\u043b\u0431\u0443\u043c", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "\u0412\u0438\u0434\u0435\u043e \u0431\u0438\u0442\u0440\u0435\u0439\u0442", "OptionResumable": "\u0412\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u043e\u0441\u0442", "ScheduledTasksHelp": "\u0426\u044a\u043a\u043d\u0435\u0442\u0435 \u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430, \u0437\u0430 \u0434\u0430 \u043d\u0430\u0433\u043b\u0430\u0441\u0438\u0442\u0435 \u043f\u043b\u0430\u043d\u0430 \u045d.", - "ScheduledTasksTitle": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438 \u0417\u0430\u0434\u0430\u0447\u0438", "TabMyPlugins": "\u041c\u043e\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438", "TabCatalog": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u041f\u0435\u0441\u043d\u0438", "HeaderRecentlyPlayed": "\u0421\u043a\u043e\u0440\u043e \u041f\u0443\u0441\u043a\u0430\u043d\u0438", "HeaderFrequentlyPlayed": "\u0427\u0435\u0441\u0442\u043e \u041f\u0443\u0441\u043a\u0430\u043d\u0438", - "DevBuildWarning": "\u0412\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438 \u0441\u0430 \u043d\u0430\u0439-\u043d\u043e\u0432\u043e\u0442\u043e. \u0422\u0435 \u0441\u0435 \u0432\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u0442 \u0447\u0435\u0441\u0442\u043e, \u043d\u043e \u043d\u0435 \u0441\u0435 \u0442\u0435\u0441\u0442\u0432\u0430\u0442. \u041c\u043e\u0436\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0434\u0430 \u0441\u0435 \u0447\u0443\u043f\u0438 \u0438 \u0446\u0435\u043b\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0438\u0437\u043e\u0431\u0449\u043e \u0434\u0430 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u044f\u0442.", "LabelVideoType": "\u0422\u0438\u043f \u043d\u0430 \u0432\u0438\u0434\u0435\u043e\u0442\u043e:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "\u041f\u043e\u043b\u0435\u0437\u043d\u043e \u0437\u0430 \u0447\u0430\u0441\u0442\u043d\u0438 \u0438\u043b\u0438 \u0441\u043a\u0440\u0438\u0442\u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0441\u043a\u0438 \u0430\u043a\u0430\u0443\u043d\u0442\u0438. \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f\u0442 \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0432\u043b\u0435\u0437\u0435 \u0440\u044a\u0447\u043d\u043e \u0447\u0440\u0435\u0437 \u0432\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0438 \u043f\u0430\u0440\u043e\u043b\u0430.", "OptionDisableUser": "\u0414\u0435\u0437\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b", "OptionDisableUserHelp": "\u0410\u043a\u043e \u0435 \u0434\u0435\u0437\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d, \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u043d\u044f\u043c\u0430 \u0434\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u0438 \u043a\u0430\u043a\u0432\u0438\u0442\u043e \u0438 \u0434\u0430 \u0431\u0438\u043b\u043e \u0432\u0440\u044a\u0437\u043a\u0438 \u043e\u0442 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b. \u0421\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u0442\u0435 \u0432\u0440\u044a\u0437\u043a\u0438 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0432\u043d\u0435\u0437\u0430\u043f\u043d\u043e \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0435\u043d\u0438.", - "HeaderAdvancedControl": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u043d \u041a\u043e\u043d\u0442\u0440\u043e\u043b", "LabelName": "\u0418\u043c\u0435:", "ButtonHelp": "\u041f\u043e\u043c\u043e\u0449", "OptionAllowUserToManageServer": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043d\u0430 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0434\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0435 \u0441\u0447\u0438\u0442\u0430\u0442 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u044f\u043a\u043e\u0439 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043d\u0435 \u0437\u0430\u043f\u043e\u0447\u043d\u0435 \u0434\u0430 \u0433\u0438 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0430.", "OptionAllowLinkSharing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435 \u0432 \u0441\u043e\u0446\u0438\u0430\u043b\u043d\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0438", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "\u0421\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435", "HeaderRemoteControl": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u041a\u043e\u043d\u0442\u0440\u043e\u043b", "OptionMissingTmdbId": "\u041b\u0438\u043f\u0441\u0432\u0430\u0449\u043e Tmdb ID", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "\u041f\u044a\u0442\u0438\u0449\u0430", "TabServer": "\u0421\u044a\u0440\u0432\u044a\u0440", "TabTranscoding": "\u041f\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435", - "TitleAdvanced": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438", "OptionRelease": "\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u0438\u0435", - "OptionBeta": "\u0411\u0435\u0442\u0430", - "OptionDev": "\u0417\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438 (\u041d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u0435\u043d)", "LabelAllowServerAutoRestart": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d \u0440\u0435\u0441\u0442\u0430\u0440\u0442 \u0437\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438\u0442\u0435", "LabelAllowServerAutoRestartHelp": "\u0421\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0449\u0435 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0441\u0430\u043c\u043e \u043f\u0440\u0435\u0437 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0442\u043e \u0441\u0438 \u0432\u0440\u0435\u043c\u0435, \u043a\u043e\u0433\u0430\u0442\u043e \u043d\u044f\u043c\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438.", "LabelRunServerAtStartup": "\u041f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 \u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435", @@ -330,11 +312,9 @@ "TabGames": "\u0418\u0433\u0440\u0438", "TabMusic": "\u041c\u0443\u0437\u0438\u043a\u0430", "TabOthers": "\u0414\u0440\u0443\u0433\u043e", - "HeaderExtractChapterImagesFor": "\u0418\u0437\u0432\u0430\u0434\u0435\u043d\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u043b\u0430\u0432\u0438\u0442\u0435 \u0437\u0430:", "OptionMovies": "\u0424\u0438\u043b\u043c\u0438", "OptionEpisodes": "\u0415\u043f\u0438\u0437\u043e\u0434\u0438", "OptionOtherVideos": "\u0414\u0440\u0443\u0433\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435", - "TitleMetadata": "\u041c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", "LabelFanartApiKey": "\u041b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447:", "LabelFanartApiKeyHelp": "\u0417\u0430\u044f\u0432\u043a\u0438 \u0434\u043e fanart \u0431\u0435\u0437 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447 \u0432\u0440\u044a\u0449\u0430\u0442 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0431\u0438\u043b\u0438 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u043f\u0440\u0435\u0434\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 7 \u0434\u043d\u0438. \u0421 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447, \u0442\u043e\u0432\u0430 \u0432\u0440\u0435\u043c\u0435 \u043f\u0430\u0434\u0430 \u043d\u0430 48 \u0447\u0430\u0441\u0430, \u0430 \u0430\u043a\u043e \u0441\u0442\u0435 \u0438 fanart VIP \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0442\u043e \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e \u0449\u0435 \u043f\u0430\u0434\u043d\u0435 \u0434\u043e \u043e\u043a\u043e\u043b\u043e 10 \u043c\u0438\u043d\u0443\u0442\u0438.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0438\u0438", "HeaderChannels": "\u041a\u0430\u043d\u0430\u043b\u0438", "TabRecordings": "\u0417\u0430\u043f\u0438\u0441\u0438", - "TabScheduled": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438", "TabSeries": "\u041f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f", "TabFavorites": "\u041b\u044e\u0431\u0438\u043c\u0438", "TabMyLibrary": "\u041c\u043e\u044f\u0442\u0430 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430", "ButtonCancelRecording": "\u041f\u0440\u0435\u043a\u044a\u0441\u043d\u0438 \u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435\u0442\u043e", - "LabelPrePaddingMinutes": "\u041f\u0440\u0435\u0434\u0435\u043d \u0431\u0430\u043b\u0430\u0441\u0442 \u0432 \u043c\u0438\u043d\u0443\u0442\u0438:", - "LabelPostPaddingMinutes": "\u0417\u0430\u0434\u0435\u043d \u0431\u0430\u043b\u0430\u0441\u0442 \u0432 \u043c\u0438\u043d\u0443\u0442\u0438:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "\u0412 \u043c\u043e\u043c\u0435\u043d\u0442\u0430", - "TabStatus": "\u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "TabSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "ButtonRefreshGuideData": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u0432 \u0433\u0438\u0434-\u0430", "ButtonRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u0439 \u0441\u0430\u043c\u043e \u043d\u043e\u0432\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "\u0414\u043d\u0438", "HeaderActiveRecordings": "\u0410\u043a\u0442\u0438\u0432\u043d\u0438 \u0417\u0430\u043f\u0438\u0441\u0438", "HeaderLatestRecordings": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0417\u0430\u043f\u0438\u0441\u0438", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0418\u0433\u0440\u0438", "HeaderRecentlyPlayedGames": "\u0421\u043a\u043e\u0440\u043e \u0418\u0433\u0440\u0430\u043d\u0438 \u0418\u0433\u0440\u0438", "TabGameSystems": "\u0418\u0433\u0440\u043e\u0432\u0438 \u0421\u0438\u0441\u0442\u0435\u043c\u0438", - "TitleMediaLibrary": "\u041c\u0435\u0434\u0438\u0439\u043d\u0430 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430", "TabFolders": "\u041f\u0430\u043f\u043a\u0438", "TabPathSubstitution": "\u0417\u0430\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u044a\u0442", "LabelSeasonZeroDisplayName": "\u0418\u043c\u0435 \u043d\u0430 \u0421\u0435\u0437\u043e\u043d 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u044f", "LabelEnableDlnaPlayTo": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 DLNA Play To", "LabelEnableDlnaPlayToHelp": "\u0415mby \u043c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u0441\u0438\u0447\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u043c\u0440\u0435\u0436\u0430\u0442\u0430 \u0432\u0438 \u0438 \u0434\u0430 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430\u0434 \u0442\u044f\u0445.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0438 \u043f\u0440\u043e\u0444\u0438\u043b\u0438", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "\u0413\u043b\u0430\u0432\u0435\u043d \u043f\u0430\u043d\u0435\u043b", "TabHome": "\u0412\u043a\u044a\u0449\u0438", "TabInfo": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", "HeaderLinks": "\u041b\u0438\u043d\u043a\u043e\u0432\u0435", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f\u0442\u0430 \u0441\u0435 \u0441\u0447\u0438\u0442\u0430\u0442 \u0437\u0430 \u043d\u0435\u043f\u0443\u0441\u043a\u0430\u043d\u0438 \u0430\u043a\u043e \u0431\u044a\u0434\u0430\u0442 \u0441\u043f\u0440\u0435\u043d\u0438 \u043f\u0440\u0435\u0434\u0438 \u0442\u043e\u0432\u0430 \u0432\u0440\u0435\u043c\u0435.", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430 \u043d\u0430 UPnP \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u043c\u0440\u0435\u0436\u0430\u0442\u0430 \u0434\u0430 \u0440\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u0442 \u0438 \u043f\u0443\u0441\u043a\u0430\u0442 Emby \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u0439\u0442\u0435 \u0438\u0437\u0433\u043b\u0435\u0434\u0430 \u043d\u0430 Emby \u0437\u0430 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u043e\u0442\u043e \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e \u043d\u0430 \u0432\u0430\u0448\u0430\u0442\u0430 \u0433\u0440\u0443\u043f\u0430 \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "\u041f\u0443\u0441\u043d\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0442\u0443\u043a", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0431\u0435 \u043e\u0431\u043d\u043e\u0432\u0435\u043d.", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f, \u0447\u0435 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0438\u0445\u0442\u0435 Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0424\u0438\u043b\u043c\u0438", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/ca.json b/dashboard-ui/strings/ca.json index 605befbeb4..46eb8a64d0 100644 --- a/dashboard-ui/strings/ca.json +++ b/dashboard-ui/strings/ca.json @@ -1,8 +1,6 @@ { - "LabelExit": "Sortir", - "LabelApiDocumentation": "Documentaci\u00f3 de l'API", - "LabelBrowseLibrary": "Examina la Biblioteca", - "LabelConfigureServer": "Configura Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Anterior", "LabelFinish": "Finalitzar", "LabelNext": "Seg\u00fcent", @@ -14,25 +12,13 @@ "LabelYourFirstName": "El teu nom:", "MoreUsersCanBeAddedLater": "Pots afegir m\u00e9s usuaris despr\u00e9s des del tauler de control.", "UserProfilesIntro": "Emby inclou suport integrat per a perfils d'usuari, habilitant a cada usuari tenir les seves pr\u00f2pies prefer\u00e8ncies de visualitzaci\u00f3, estats de reproducci\u00f3 i controls parentals.", - "LabelWindowsService": "Servei de Windows", - "AWindowsServiceHasBeenInstalled": "El servei de Windows s'ha instal\u00b7lat.", - "WindowsServiceIntro1": "El servidor d'Emby normalment corre com a una aplicaci\u00f3 d'escriptori amb icona a la safata del sistema, per\u00f2 si ho prefereixes c\u00f3rrer com a servei de fons el pots iniciar des del tauler de control de serveis del windows.", - "WindowsServiceIntro2": "Si s'utilitza el servei de Windows, tingues en compte que no es pot executar a la vegada que la icona de la safata, de manera que haur\u00e0s de sortir de la safata per tal d'executar el servei. Tamb\u00e9 haur\u00e0 de ser configurat amb privilegis administratius a trav\u00e9s del tauler de control del servei. Quan s'executi com a servei, necessitar\u00e0s assegurar-te de que el compte emprat pel servei tingui acc\u00e9s als teus directoris multim\u00e8dia.", "WizardCompleted": "Aix\u00f2 \u00e9s tot el que necessitem per ara. Emby ha comen\u00e7at a recollir informaci\u00f3 de la teva biblioteca multim\u00e8dia. Mira't alguna de les nostres apps, i llavors fes clic a Finalitzar<\/b> per veure el Tauler de Control del Servidor<\/b>.", "LabelConfigureSettings": "Configura prefer\u00e8ncies", - "LabelEnableAutomaticPortMapping": "Habilitar mapeig autom\u00e0tic de ports", - "LabelEnableAutomaticPortMappingHelp": "L'UPnP configura autom\u00e0ticament el router per a accedir f\u00e0cilment de manera remota. Aix\u00f2 podria no funcionar amb determinats models de router.", "HeaderTermsOfService": "Termes del Servei Emby", "MessagePleaseAcceptTermsOfService": "Si et plau, accepta els termes i condicions i la pol\u00edtica de privacitat abans de continuar.", "OptionIAcceptTermsOfService": "Accepto els termes del servei", "ButtonPrivacyPolicy": "Pol\u00edtica de privacitat", "ButtonTermsOfService": "Termes del Servei", - "HeaderDeveloperOptions": "Opcions de desenvolupador", - "OptionEnableWebClientResponseCache": "Habilita mem\u00f2ria cau al web", - "OptionDisableForDevelopmentHelp": "Configura'ls com necessitis per a desenvolupament web.", - "OptionEnableWebClientResourceMinification": "Habilita la reducci\u00f3 de recursos al web", - "LabelDashboardSourcePath": "Directori del codi font del client web:", - "LabelDashboardSourcePathHelp": "Si executes el servidor des del codi font, especifica el directori de l'UI del tauler de control. Tots els fitxers del client web se serviran des d'aquesta ubicaci\u00f3.", "ButtonConvertMedia": "Converteix m\u00e8dia", "ButtonOrganize": "Organitza", "HeaderSupporterBenefits": "Beneficis d'Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Per afegir un usuari que no estigui llistat primer necessitar\u00e0s vincular el seu compte a Emby Connect des del seu perfil d'usuari.", "LabelPinCode": "Codi pin:", "OptionHideWatchedContentFromLatestMedia": "Oculta contingut ja visualitzat a darrers multim\u00e8dia", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "D'acord", "ButtonCancel": "Cancel\u00b7la", "ButtonExit": "Surt", "ButtonNew": "Nou", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Disparadors de Tasques", "HeaderTV": "TV", "HeaderAudio": "\u00c0udio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Per accedir, si et plau introdueix el teu codi pin senzill", "ButtonConfigurePinCode": "Configura codi pin", "RegisterWithPayPal": "Registra amb PayPal", - "HeaderEnjoyDayTrial": "Gaudeix una Prova Gratu\u00efta de 14 Dies", "LabelSyncTempPath": "Directori de fitxers temporals:", "LabelSyncTempPathHelp": "Especifica un directori de treball personalitzat per al sync. Els multim\u00e8dia convertits durant el proc\u00e9s de sincronitzaci\u00f3 es desaran aqu\u00ed.", "LabelCustomCertificatePath": "Directori del certificat personalitzat:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Si s'habilita, els fitxers amb extensions .rar i .zip es detectaran com a fitxers multim\u00e8dia.", "LabelEnterConnectUserName": "Nom d'usuari o e-mail:", "LabelEnterConnectUserNameHelp": "Aquest \u00e9s l'usuari o e-mail del teu compte en l\u00ednia d'Emby.", - "LabelEnableEnhancedMovies": "Habilita la visualitzaci\u00f3 millorada de pel\u00b7l\u00edcules", - "LabelEnableEnhancedMoviesHelp": "Si s'habilita, les pel\u00b7l\u00edcules es mostraran com a directoris per a incloure tr\u00e0ilers, extres, elenc i equip i qualsevol altre contingut relacionat.", "HeaderSyncJobInfo": "Feina del Sync", "FolderTypeMixed": "Contingut mesclat", "FolderTypeMovies": "Pel\u00b7l\u00edcules", @@ -84,17 +70,15 @@ "LabelContentType": "Tipus de contingut:", "TitleScheduledTasks": "Tasques Programades", "HeaderSetupLibrary": "Configura les teves biblioteques multim\u00e8dia", - "ButtonAddMediaFolder": "Afegir directori multim\u00e8dia", "LabelFolderType": "Tipus de directori:", "LabelCountry": "Pa\u00eds:", "LabelLanguage": "Idioma:", "LabelTimeLimitHours": "Temps l\u00edmit (en hores):", - "HeaderPreferredMetadataLanguage": "Idioma de metadades preferit", + "HeaderPreferredMetadataLanguage": "Idioma de Metadades Preferit", "LabelSaveLocalMetadata": "Desa l'artwork i les metadades als directoris dels multim\u00e8dia", "LabelSaveLocalMetadataHelp": "Desar l'artwork i les metadades directament als directoris dels multim\u00e8dia els posar\u00e0 tots en llocs on podran ser editats f\u00e0cilment.", "LabelDownloadInternetMetadata": "Descarrega artwork i metadades d'internet", "LabelDownloadInternetMetadataHelp": "El Servidor d'Emby pot descarregar informaci\u00f3 dels teus multim\u00e8dia habilitant unes millors presentacions.", - "TabPreferences": "Prefer\u00e8ncies", "TabPassword": "Contrasenya", "TabLibraryAccess": "Acc\u00e9s a la Biblioteca", "TabAccess": "Acc\u00e9s", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Habilita l'acc\u00e9s a totes les biblioteques", "DeviceAccessHelp": "Aix\u00f2 nom\u00e9s s'aplica a dispositius que poden ser identificats i no previndr\u00e0 l'acc\u00e9s des del navegador. Filtrant l'acc\u00e9s de dispositius a l'usuari previndr\u00e0 l'\u00fas de nous dispositius fins que hagin estat aprovats aqu\u00ed.", "LabelDisplayMissingEpisodesWithinSeasons": "Mostra els episodis que manquen dins les temporades", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Mostra els episodis que no han estat emesos dins les temporades", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Opcions de Reproducci\u00f3 de V\u00eddeo", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Opcions de Reproducci\u00f3", "LabelAudioLanguagePreference": "Prefer\u00e8ncia de l'idioma de l'\u00e0udio:", "LabelSubtitleLanguagePreference": "Prefer\u00e8ncia de l'idioma dels subt\u00edtols:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Relaci\u00f3 d'Aspecte Recomanada. Nom\u00e9s JPG\/PNG.", "MessageNothingHere": "Res aqu\u00ed.", "MessagePleaseEnsureInternetMetadata": "Si et plau, assegura't que la desc\u00e0rrega de metadades d'internet est\u00e0 habilitada.", - "TabSuggested": "Suggerits", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Sugger\u00e8ncies", "TabLatest": "Darrers", "TabUpcoming": "Propers", "TabShows": "Programes", "TabEpisodes": "Episodis", "TabGenres": "G\u00e8neres", - "TabPeople": "Gent", "TabNetworks": "Cadenes", "HeaderUsers": "Usuaris", "HeaderFilters": "Filtres", @@ -166,6 +153,7 @@ "OptionWriters": "Guionistes", "OptionProducers": "Productors", "HeaderResume": "Reprendre", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "A Continuaci\u00f3", "NoNextUpItemsMessage": "Cap trobat. Comen\u00e7a a mirar els teus programes!", "HeaderLatestEpisodes": "Darrers episodis", @@ -185,6 +173,7 @@ "OptionPlayCount": "Nombre de Reproduccions", "OptionDatePlayed": "Data de Reproducci\u00f3", "OptionDateAdded": "Data afegida", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artista", "OptionAlbum": "\u00c0lbum", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Bitrate del V\u00eddeo", "OptionResumable": "Continuable", "ScheduledTasksHelp": "Fes clic a una tasca per ajustar-ne la programaci\u00f3.", - "ScheduledTasksTitle": "Tasques Programades", "TabMyPlugins": "Els meus complements", "TabCatalog": "Cat\u00e0leg", "TitlePlugins": "Complements", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Darreres Can\u00e7ons", "HeaderRecentlyPlayed": "Reprodu\u00eft Recentment", "HeaderFrequentlyPlayed": "Reprodu\u00eft Freq\u00fcentment", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Tipus de V\u00eddeo:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Pr\u00e0ctic per a comptes d'administrador ocults o privats. L'usuari necessitar\u00e0 accedir manualment introduint el seu nom d'usuari i contrasenya.", "OptionDisableUser": "Desactiva aquest usuari", "OptionDisableUserHelp": "Si es desactiva el servidor no permetr\u00e0 cap connexi\u00f3 des d'aquest usuari. Les connexions existents seran interrompudes abruptament.", - "HeaderAdvancedControl": "Control Avan\u00e7at", "LabelName": "Nom:", "ButtonHelp": "Ajuda", "OptionAllowUserToManageServer": "Permet aquest usuari gestionar el servidor", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Els dispositius dlna es consideren compartits fins que un usuari comen\u00e7a a controlar-los.", "OptionAllowLinkSharing": "Permetre compartir els mitjans a les xarxes socials", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Compartir", "HeaderRemoteControl": "Control Remot", "OptionMissingTmdbId": "Sense id de Tmdb", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Directoris", "TabServer": "Servidor", "TabTranscoding": "Transcodificaci\u00f3", - "TitleAdvanced": "Avan\u00e7at", "OptionRelease": "Versi\u00f3 Oficial", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Permetre el servidor reiniciar-se autom\u00e0ticament per aplicar actualitzacions", "LabelAllowServerAutoRestartHelp": "El servidor nom\u00e9s es reiniciar\u00e0 durant per\u00edodes d'inactivitat, quan no tingui usuaris actius.", "LabelRunServerAtStartup": "Engega el servidor en iniciar el sistema", @@ -330,11 +312,9 @@ "TabGames": "Jocs", "TabMusic": "M\u00fasica", "TabOthers": "Altres", - "HeaderExtractChapterImagesFor": "Extrau imatges d'episodis per a:", "OptionMovies": "Pel\u00b7l\u00edcules", "OptionEpisodes": "Episodis", "OptionOtherVideos": "Altres V\u00eddeos", - "TitleMetadata": "Metadades", "LabelFanartApiKey": "Clau api personal:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Col\u00b7leccions", "HeaderChannels": "Canals", "TabRecordings": "Enregistraments", - "TabScheduled": "Programats", "TabSeries": "S\u00e8ries", "TabFavorites": "Preferits", "TabMyLibrary": "La Meva Biblioteca", "ButtonCancelRecording": "Cancel\u00b7la enregistrament", - "LabelPrePaddingMinutes": "Minuts d'espaiat anterior:", - "LabelPostPaddingMinutes": "Minuts d'espaiat posterior:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "Qu\u00e8 Fan", - "TabStatus": "Estat", "TabSettings": "Prefer\u00e8ncies", "ButtonRefreshGuideData": "Refresca les Dades de la Guia", "ButtonRefresh": "Refresca", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Enregistra a tots els canals", "OptionRecordAnytime": "Enregistra en qualsevol moment", "OptionRecordOnlyNewEpisodes": "Enregistra nom\u00e9s nous episodis", - "HeaderRepeatingOptions": "Opcions Repetitives", "HeaderDays": "Dies", "HeaderActiveRecordings": "Enregistraments Actius", "HeaderLatestRecordings": "Darrers Enregistraments", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Darrers Jocs", "HeaderRecentlyPlayedGames": "Jocs Jugats Recentment", "TabGameSystems": "Sistemes de Jocs", - "TitleMediaLibrary": "Biblioteca multim\u00e8dia", "TabFolders": "Directoris", "TabPathSubstitution": "Substituci\u00f3 de Directoris", "LabelSeasonZeroDisplayName": "Nom a mostrar a la temporada 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Tr\u00e0iler", "LabelMissing": "Manca", - "LabelOffline": "Desconnectat", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "De", - "HeaderTo": "A", - "LabelFrom": "De:", - "LabelTo": "A:", - "LabelToHelp": "Exemple: \\\\ElMeuServidor\\Films (un directori que els clients puguin accedir)", - "ButtonAddPathSubstitution": "Afegir Substituci\u00f3", "OptionSpecialEpisode": "Especials", "OptionMissingEpisode": "Episodis Perduts", "OptionUnairedEpisode": "Episodis No Emesos", "OptionEpisodeSortName": "Nom per Endre\u00e7ar l'Episodi", "OptionSeriesSortName": "Nom de la s\u00e8rie", "OptionTvdbRating": "Valoraci\u00f3 TVDB", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Afegir T\u00edtols", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby pot detectar dispositius dins de la teva xarxa i ofereix la possibilitat de controlar-los a dist\u00e0ncia.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Perfils del Sistema", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Tauler de Control", "TabHome": "Inici", "TabInfo": "Informaci\u00f3", "HeaderLinks": "Enlla\u00e7os", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Es considerar\u00e0 que no s'ha reprodu\u00eft si s'atura abans d'aquest temps", "LabelMaxResumePercentageHelp": "Es considerar\u00e0 que s'ha reprodu\u00eft del tot si s'atura despr\u00e9s d'aquest temps", "LabelMinResumeDurationHelp": "Els t\u00edtols m\u00e9s curts que aix\u00f2 no seran continuables", - "TitleAutoOrganize": "Auto-Organitza", "TabActivityLog": "Registre d'Activitat", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organitza supervisa els teus directoris de desc\u00e0rregues en cerca de nous fitxers i els mou als teus directoris multim\u00e8dia.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Directori a supervisar:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Tasques Corrent", "HeaderActiveDevices": "Dispositius Actius", "HeaderPendingInstallations": "Instal\u00b7lacions Pendents", - "HeaderServerInformation": "Informaci\u00f3 del Servidor", "ButtonRestartNow": "Reinicia ara", "ButtonRestart": "Reinicia", "ButtonShutdown": "Atura", @@ -588,7 +553,6 @@ "MessageInvalidKey": "La clau d'Emby Premiere no hi \u00e9s o \u00e9s inv\u00e0lida.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Prefer\u00e8ncies de Visualitzaci\u00f3", - "TabPlayTo": "Reprodueix A", "LabelEnableDlnaServer": "Habilita servidor DLNA", "LabelEnableDlnaServerHelp": "Permet als dispositius UPnP de la teva xarxa explorar i reproduir contingut d'Emby", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Usuari per defecte:", "LabelDefaultUserHelp": "Determina quina biblioteca d'usuari s'hauria de mostrar als dispositius connectats. Pots sobre-escriure aix\u00f2 per a cada dispositiu emprant perfils.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Prefer\u00e8ncies del Servidor", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Altres apps", "OptionMobileApps": "Apps per a m\u00f2bils", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Actualitzaci\u00f3 d'aplicaci\u00f3 disponible", - "NotificationOptionApplicationUpdateInstalled": "Actualitzaci\u00f3 d'aplicaci\u00f3 instal\u00b7lada", - "NotificationOptionPluginUpdateInstalled": "Actualitzaci\u00f3 de complement instal\u00b7lada", - "NotificationOptionPluginInstalled": "Complement instal\u00b7lat", - "NotificationOptionPluginUninstalled": "Complement desinstal\u00b7lat", - "NotificationOptionVideoPlayback": "Reproducci\u00f3 de v\u00eddeo iniciada", - "NotificationOptionAudioPlayback": "Reproducci\u00f3 d'\u00e0udio iniciada", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Reproducci\u00f3 de v\u00eddeo aturada", - "NotificationOptionAudioPlaybackStopped": "Reproducci\u00f3 d'\u00e0udio aturada", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Tasca programada fallida", - "NotificationOptionInstallationFailed": "Instal\u00b7laci\u00f3 fallida", - "NotificationOptionNewLibraryContent": "Nou contingut afegit", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "Usuari blocat", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Cal reiniciar el servidor", "LabelNotificationEnabled": "Habilita aquesta notificaci\u00f3", "LabelMonitorUsers": "Supervisar activitat de:", "LabelSendNotificationToUsers": "Envia la notificaci\u00f3 a:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Anterior", "LabelGroupMoviesIntoCollections": "Agrupa pel\u00b7l\u00edcules a col\u00b7leccions", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Puja el volum", "ButtonVolumeDown": "Baixa el volum", "HeaderLatestMedia": "Darrers Multim\u00e8dia", "OptionNoSubtitles": "Sense Subt\u00edtols", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Col\u00b7leccions", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No hi ha extensions disponibles.", "LabelDisplayPluginsFor": "Mostra complements per a:", "PluginTabAppClassic": "Emby Cl\u00e0ssic", - "PluginTabAppTheater": "Emby Teatre", "LabelEpisodeNamePlain": "Nom de l'episodi", "LabelSeriesNamePlain": "Nom de la s\u00e8rie", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Introdueix Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Cercar Subt\u00edtols", - "MessageNoSubtitleSearchResultsFound": "No s'han trobat resultats de cerca.", "TabDisplay": "Visualitzaci\u00f3", "TabLanguages": "Idiomes", "TabAppSettings": "Prefer\u00e8ncies d'App", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Si s'habilita es reproduiran can\u00e7ons tem\u00e0tiques de fons mentre naveguis per la biblioteca.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "P\u00e0gina d'Inici", - "HeaderSettingsForThisDevice": "Prefer\u00e8ncies per Aquest Dispositiu", "OptionAuto": "Autom\u00e0tc", "OptionYes": "S\u00ed", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "2a secci\u00f3 de la p\u00e0gina d'inici:", "LabelHomePageSection3": "3a secci\u00f3 de la p\u00e0gina d'inici:", "LabelHomePageSection4": "4a secci\u00f3 de la p\u00e0gina d'inici:", - "OptionMyMediaButtons": "Els meus multim\u00e8dia (botons)", "OptionMyMedia": "Els meus multim\u00e8dia", "OptionMyMediaSmall": "Els meus multim\u00e8dia (petit)", "OptionResumablemedia": "Continuable", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Prefer\u00e8ncies", "OptionDefaultSort": "Per defecte", - "OptionCommunityMostWatchedSort": "Els M\u00e9s Vistos", "TabNextUp": "A Continuaci\u00f3", - "PlaceholderUsername": "Nom d'usuari", "HeaderBecomeProjectSupporter": "Obtenir Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "Aquesta llista de reproducci\u00f3 \u00e9s buida actualment.", - "ButtonDismiss": "Descarta", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Millor disponible", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Llistes de reproducci\u00f3", "ViewTypeMovies": "Pel\u00b7l\u00edcules", "ViewTypeTvShows": "TV", "ViewTypeGames": "Jocs", "ViewTypeMusic": "M\u00fasica", - "ViewTypeMusicGenres": "G\u00e8neres", - "ViewTypeMusicArtists": "Artistes", - "ViewTypeBoxSets": "Col\u00b7leccions", - "ViewTypeChannels": "Canals", - "ViewTypeLiveTV": "TV en Directe", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Darrers Jocs", - "ViewTypeRecentlyPlayedGames": "Reprodu\u00eft Recentment", - "ViewTypeGameFavorites": "Preferits", - "ViewTypeGameSystems": "Sistemes de Jocs", - "ViewTypeGameGenres": "G\u00e8neres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "A Continuaci\u00f3", - "ViewTypeTvLatest": "Darrers", - "ViewTypeTvShowSeries": "S\u00e8ries:", - "ViewTypeTvGenres": "G\u00e8neres", - "ViewTypeTvFavoriteSeries": "S\u00e8ries Preferides", - "ViewTypeTvFavoriteEpisodes": "Episodis Preferits", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Darrers", - "ViewTypeMovieMovies": "Pel\u00b7l\u00edcules", - "ViewTypeMovieCollections": "Col\u00b7leccions", - "ViewTypeMovieFavorites": "Preferides", - "ViewTypeMovieGenres": "G\u00e8neres", - "ViewTypeMusicLatest": "Novetats", - "ViewTypeMusicPlaylists": "Llistes de reproducci\u00f3", - "ViewTypeMusicAlbums": "\u00c0lbums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Prefer\u00e8ncies de Visualitzaci\u00f3", "ViewTypeMusicSongs": "Can\u00e7ons", "ViewTypeMusicFavorites": "Preferides", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Serveis", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Aparen\u00e7a", "HeaderBrandingHelp": "Personalitza l'aparen\u00e7a d'Emby de manera que encaixi amb les necessitats del teu grup o organitzaci\u00f3.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Dispositiu", "HeaderUser": "Usuari", "HeaderDateIssued": "Data d'Emissi\u00f3", - "LabelChapterName": "Cap\u00edtol {0}", "HeaderHttpHeaders": "Cap\u00e7aleres Http", "HeaderIdentificationHeader": "Cap\u00e7alera d'Identificaci\u00f3", "LabelValue": "Valor:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Subcadena", "TabView": "Vista", - "TabSort": "Sort", "TabFilter": "Filtrar", "ButtonView": "Vista", "LabelPageSize": "L\u00edmit d'\u00edtems:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Llistes de reproducci\u00f3", "ButtonClose": "Tanca", "LabelAllLanguages": "Tots els idiomes", @@ -956,7 +856,6 @@ "LabelImage": "Imatge", "HeaderImages": "Imatges", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Captures", "HeaderAddUpdateImage": "Afegir\/Actualitzar Imatge", "LabelDropImageHere": "Deixa anar aqu\u00ed la imatge", "LabelJpgPngOnly": "Nom\u00e9s JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Blocat", "OptionUnidentified": "No identificat", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Temporada 0", "LabelReport": "Report:", "OptionReportSongs": "Can\u00e7ons", @@ -991,34 +889,21 @@ "OptionReportAlbums": "\u00c0lbums", "ButtonMore": "M\u00e9s", "HeaderActivity": "Activitat", - "ScheduledTaskStartedWithName": "{0} ha iniciat", - "ScheduledTaskCancelledWithName": "{0} ha estat cancel\u00b7lat", - "ScheduledTaskCompletedWithName": "{0} completat", - "ScheduledTaskFailed": "Tasca programada completada", "PluginInstalledWithName": "{0} ha estat instal\u00b7lat", "PluginUpdatedWithName": "{0} ha estat actualitzat", "PluginUninstalledWithName": "{0} ha estat desinstal\u00b7lat", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} s'ha desconnectat de {1}", - "SubtitlesDownloadedForItem": "Subt\u00edtols descarregats per a {0}", - "SubtitleDownloadFailureForItem": "La desc\u00e0rrega de subt\u00edtols ha fallat per a {0}", "LabelRunningTimeValue": "Temps executant-se: {0}", "LabelIpAddressValue": "Adre\u00e7a IP: {0}", "UserLockedOutWithName": "L'usuari {0} ha estat blocat", "UserConfigurationUpdatedWithName": "La configuraci\u00f3 d'usuari ha estat actualitzada per a {0}", "UserCreatedWithName": "S'ha creat l'usuari {0}", - "UserPasswordChangedWithName": "La contrasenya ha estat canviada per a l'usuari {0}", "UserDeletedWithName": "L'usuari {0} ha estat eliminat", "MessageServerConfigurationUpdated": "S'ha actualitzat la configuraci\u00f3 del servidor", "MessageNamedServerConfigurationUpdatedWithValue": "La secci\u00f3 de configuraci\u00f3 {0} ha estat actualitzada", "MessageApplicationUpdated": "El Servidor d'Emby ha estat actualitzat", "UserDownloadingItemWithValues": "{0} est\u00e0 descarregant {1}", - "UserStartedPlayingItemWithValues": "{0} ha comen\u00e7at a reproduir {1}", - "UserStoppedPlayingItemWithValues": "{0} ha parat de reproduir {1}", - "AppDeviceValues": "App: {0}, Dispositiu: {1}", "ProviderValue": "Prove\u00efdor: {0}", "HeaderRecentActivity": "Activitat Recent", "HeaderPeople": "Gent", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Mostra els especials dins les temporades en que van ser emesos", - "HeaderCountries": "Pa\u00efsos", "HeaderGenres": "G\u00e8neres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Estudis", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Compositor", "OptionDirector": "Director", "OptionProducer": "Productor", - "OptionWriter": "Guionista", "LabelAirDays": "Dies en directe:", "LabelAirTime": "Horari en directe:", "HeaderMediaInfo": "Info Multim\u00e8dia", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Control Parental", "HeaderAccessSchedule": "Horari d'Acc\u00e9s", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Afegir Horari", "LabelAccessDay": "Dia de la setmana:", "LabelAccessStart": "Hora d'inici:", "LabelAccessEnd": "Hora de fi:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Llistes de reproducci\u00f3", "HeaderViewStyles": "View Styles", "TabPhotos": "Fotos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Benvingut a Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reinicia", "OptionEnableExternalVideoPlayers": "Habilita reproductors de v\u00eddeo externs", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Nom d'usuari:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Tipus", - "HeaderSeverity": "Severitat", "OptionReportActivities": "Registre d'activitats", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Afegeix Dispositiu", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "No identificat", "HeaderImagePrimary": "Primari", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subt\u00edtols", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Directoris", "LabelDisplayName": "Nom a mostrar:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Reempla\u00e7a imatges existents", "OptionPlayNextEpisodeAutomatically": "Reprodueix el seg\u00fcent episodi autom\u00e0ticament", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Configuraci\u00f3 guardada.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Usuaris", "Delete": "Esborrar", "Password": "Contrasenya", "DeleteImage": "Esborrar Imatge", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Si et plau d\u00f3na suport a Emby.", + "MessageThankYouForSupporting": "Gr\u00e0cies per donar suport a Emby.", "DeleteImageConfirmation": "Esteu segur que voleu suprimir aquesta imatge?", "FileReadCancelled": "La lectura de l'arxiu ha estat cancel\u00b7lada.", "FileNotFound": "Arxiu no trobat.", @@ -1365,7 +1232,7 @@ "PasswordMatchError": "La confirmaci\u00f3 de la contrasenya i la contrasenya han de coincidir.", "UninstallPluginHeader": "Desinstal\u00b7lar Complement.", "UninstallPluginConfirmation": "Est\u00e0s segur que vols desinstal\u00b7lar {0}?", - "NoPluginConfigurationMessage": "Aquest complement no necessita configuraci\u00f3.", + "NoPluginConfigurationMessage": "Aquest complement no t\u00e9 opcions de configuraci\u00f3.", "NoPluginsInstalledMessage": "No tens cap complement instal\u00b7lat.", "BrowsePluginCatalogMessage": "Consulta el nostre cat\u00e0leg per veure els complements disponibles.", "HeaderNewApiKey": "Nova Clau Api", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Exemple: {0} (al servidor)", "HeaderMyMedia": "Els Meus Multim\u00e8dia", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "\u00cdtems afegits", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Benvingut al Tauler de Control del Servidor Emby", "HeaderWelcomeToProjectWebClient": "Benvingut a Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Enregistrament cancel\u00b7lat.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Acc\u00e9s local: {0}", - "LabelRemoteAccessUrl": "Acc\u00e9s remot: {0}", + "LabelLocalAccessUrl": "Acc\u00e9s local (LAN): {0}", + "LabelRemoteAccessUrl": "Acc\u00e9s remot (WAN): {0}", "LabelRunningOnPort": "Corrent al port http {0}.", "LabelRunningOnPorts": "Corrent al port http {0} i al port https {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Control Remot", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1577,13 +1431,13 @@ "ButtonShuffle": "Shuffle", "ButtonResume": "Repr\u00e8n", "HeaderAudioTracks": "Pistes d'\u00c0udio", - "HeaderLibraries": "Libraries", + "HeaderLibraries": "Biblioteques", "HeaderVideoQuality": "Video Quality", "MessageErrorPlayingVideo": "There was an error playing the video.", "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", "ButtonDashboard": "Tauler de Control", "ButtonReports": "Reports", - "MetadataManager": "Metadata Manager", + "MetadataManager": "Gestor de Metadades", "HeaderTime": "Time", "LabelAddedOnDate": "Added {0}", "ButtonStart": "Start", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Esborrar \u00cdtem", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "\u00cdtem desat.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Apagat", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notificacions", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Valoraci\u00f3 Parental", "HeaderReleaseDate": "Data de publicaci\u00f3", - "HeaderDateAdded": "Data afegida", "HeaderSeries": "S\u00e8ries:", "HeaderSeason": "Temporada", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "Nou nom:", - "HeaderAddMediaFolder": "Afegir Directori Multim\u00e8dia", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "No definit (contingut mesclat)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,45 +1687,39 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Gr\u00e0cies", - "MessageThankYouForYourReview": "Gr\u00e0cies per la teva valoraci\u00f3.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", + "WebClientTourContent": "Mira els teus multim\u00e8dia m\u00e9s recents, propers episodis i m\u00e9s. Els cercles verds indiquen el nombre d'elements que encara no has reprodu\u00eft", + "WebClientTourMovies": "Reprodueix pel\u00b7l\u00edcules, tr\u00e0ilers i m\u00e9s des de qualsevol dispositiu amb navegador web", + "WebClientTourMouseOver": "Posa't damunt de qualsevol p\u00f2ster per accedir r\u00e0pidament a la informaci\u00f3 m\u00e9s important", + "WebClientTourTapHold": "Mantingues premut o fes clic dret sobre qualsevol p\u00f2ster per al men\u00fa contextual", "WebClientTourMetadataManager": "Fes clic a edita per obrir el gestor de metadades", "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", + "WebClientTourCollections": "Crea col\u00b7leccions de pel\u00b7l\u00edcules per agrupar-les com quan les tens en caixes", + "WebClientTourUserPreferences1": "Les prefer\u00e8ncies d'usuari et permeten personalitzar la manera en que la teva llibreria es mostra a totes les teves apps d'Emby", "WebClientTourUserPreferences2": "Configura les teves prefer\u00e8ncies d'\u00e0udio i subt\u00edtols un sol cop per a totes les apps d'Emby", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "i controla f\u00e0cilment altres dispositius i aplicacions Emby", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", + "WebClientTourUserPreferences3": "Dissenya la home del teu client web com a tu t'agradi", + "WebClientTourUserPreferences4": "Configura telons de fons, can\u00e7ons tem\u00e0tiques i reproductors externs", + "WebClientTourMobile1": "El client web funciona b\u00e9 a tauletes i dispositius...", + "WebClientTourMobile2": "i controla f\u00e0cilment altres dispositius i apps d'Emby", + "WebClientTourMySync": "Sincronitza els teus multim\u00e8dia amb la resta de dispositius per veure-ho sense connexi\u00f3", "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Descarrega autom\u00e0ticament subt\u00edtols per als teus v\u00eddeos en qualsevol idioma", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", + "DashboardTourDashboard": "El tauler de control del servidor et permet monitoritzar el teu servidor i els teus usuaris. Sempre sabr\u00e0s qui est\u00e0 fent qu\u00e8 i on \u00e9s.", + "DashboardTourHelp": "L'ajuda in-app duu senzills botons per obrir p\u00e0gines wiki relacionades al contingut en pantalla.", + "DashboardTourUsers": "Crea f\u00e0cilment comptes d'usuari per als teus amics i fam\u00edlia, cadascun amb els seus permisos, acc\u00e9s a llibreries, controls parentals i m\u00e9s.", + "DashboardTourCinemaMode": "El mode cinema et porta l'experi\u00e8ncia del cinema directament a la teva sala d'estar reproduint tr\u00e0ilers i introduccions personalitzades abans de l'espectacle.", + "DashboardTourChapters": "Habilita la generaci\u00f3 d'imatges d'episodis dels teus v\u00eddeos per presentaci\u00f3 de la reproducci\u00f3 m\u00e9s agradable.", + "DashboardTourSubtitles": "Descarrega autom\u00e0ticament subt\u00edtols per als teus v\u00eddeos en qualsevol idioma.", + "DashboardTourPlugins": "Instal\u00b7la complements com canals d'internet, televisi\u00f3 en directe, esc\u00e0nners de metadades i m\u00e9s.", + "DashboardTourNotifications": "Envia autom\u00e0ticament notificacions d'esdeveniments del teu servidor cap al teu dispositiu m\u00f2bil, email i m\u00e9s.", + "DashboardTourScheduledTasks": "Gestiona f\u00e0cilment operacions de llarga durada amb les tasques programades. Decideix quan corren i com de sovint.", + "DashboardTourMobile": "El tauler de control del servidor d'Emby funciona b\u00e9 a smartphones i tablets. Gestiona el teu servidor des del palmell de la teva m\u00e0 en qualsevol moment i a qualsevol lloc.", + "DashboardTourSync": "Sincronitza els teus multim\u00e8dia personals als teus dispositius per veure'ls sense connexi\u00f3.", "TabExtras": "Extres", "HeaderUploadImage": "Pujar Imatge", - "DeviceLastUsedByUserName": "Last used by {0}", + "DeviceLastUsedByUserName": "Emprat per darrer cop per {0}", "HeaderDeleteDevice": "Eliminar Dispositiu", "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "LabelEnableCameraUploadFor": "Enable camera upload for:", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Qualitat", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Escenes", "HeaderUnlockApp": "Desbloqueja App", "HeaderUnlockSync": "Desbloqueja Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Desbloqueja aquesta funci\u00f3 amb una subscripci\u00f3 activa Emby Premiere.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Els serveis de pagament no estan disponibles actualment. Siusplau, intenta-ho m\u00e9s tard.", - "ButtonUnlockWithPurchase": "Desbloquejar amb la compra", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Habilita pantalla completa", "ButtonServer": "Servidor", "HeaderLibrary": "Biblioteca", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Digues alguna cosa com...", "NoResultsFound": "No results found.", "ButtonManageServer": "Gestionar Servidor", "ButtonPreferences": "Prefer\u00e8ncies", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Obtenir Emby Premiere", - "ButtonClosePlayVideo": "Tanca i reprodueix els meus multim\u00e8dia", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Habilita el mirall de pantalla", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Presentaci\u00f3 de diapositives", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Altres", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Men\u00fa", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guia", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Vols apagar l'emby al dispositiu?", "ButtonYes": "S\u00ed", "AddUser": "Afegir Usuari", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restaurar la compra", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Reprodu\u00efnt", "HeaderLatestMovies": "\u00daltimes pel\u00b7l\u00edcules", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "Correu electr\u00f2nic", - "TextPleaseEnterYourEmailAddressForSubscription": "Introdu\u00efu la vostra adre\u00e7a de correu electr\u00f2nic", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Condicions d'\u00fas", "NumLocationsValue": "{0} directoris", "ButtonAddMediaLibrary": "Afegir Biblioteca Multim\u00e8dia", "ButtonManageFolders": "Gestiona directoris", - "MessageTryMicrosoftEdge": "Per una millor experi\u00e8ncia a Windows 10, prova el nou Microsoft Edge Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Si et plau, gaudeix d'un minut de reproducci\u00f3. Gr\u00e0cies per provar Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Apps d'Emby gratu\u00eftes.", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "El Mode Cinema li d\u00f3na la veritable experi\u00e8ncia de cinema amb tr\u00e0ilers i intros perzonalitzats abans de la funci\u00f3.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/cs.json b/dashboard-ui/strings/cs.json index 575e8f96cf..e87220b576 100644 --- a/dashboard-ui/strings/cs.json +++ b/dashboard-ui/strings/cs.json @@ -1,8 +1,6 @@ { - "LabelExit": "Zav\u0159\u00edt", - "LabelApiDocumentation": "Dokumentace API", - "LabelBrowseLibrary": "Proch\u00e1zet knihovnu", - "LabelConfigureServer": "Konfigurovat Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "P\u0159edchoz\u00ed", "LabelFinish": "Dokon\u010dit", "LabelNext": "Dal\u0161\u00ed", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Va\u0161e k\u0159estn\u00ed jm\u00e9no:", "MoreUsersCanBeAddedLater": "Dal\u0161\u00ed u\u017eivatele m\u016f\u017eete p\u0159idat pozd\u011bji na Hlavn\u00ed nab\u00eddce.", "UserProfilesIntro": "Emby obsahuje zabudovanou podporu u\u017eivatelsk\u00fdch profil\u016f, umo\u017e\u0148uj\u00edc\u00ed ka\u017ed\u00e9mu u\u017eivateli m\u00edt sv\u00e9 vlastn\u00ed nastaven\u00ed zobrazen\u00ed, stav p\u0159ehr\u00e1n\u00ed a rodi\u010dovsk\u00e9 kontroly.", - "LabelWindowsService": "Slu\u017eba Windows", - "AWindowsServiceHasBeenInstalled": "Slu\u017eba Windows byla nainstalov\u00e1na.", - "WindowsServiceIntro1": "Emby Server norm\u00e1ln\u011b b\u011b\u017e\u00ed jako desktopov\u00e1 aplikace s tray ikonu, ale pokud chcete spustit jako slu\u017ebu na pozad\u00ed, m\u016f\u017ee b\u00fdt spu\u0161t\u011bn pomoc\u00ed Slu\u017eeb syst\u00e9mu Windows.", - "WindowsServiceIntro2": "Pokud pou\u017e\u00edv\u00e1te slu\u017ebu syst\u00e9mu Windows, upozor\u0148ujeme, \u017ee ji nelze spustit ve stejnou dobu jako ikonu na hlavn\u00edm panelu, tak\u017ee budete muset ukon\u010dit aplikaci na hlavn\u00edm panelu, aby se slu\u017eba spustila. Tato slu\u017eba bude tak\u00e9 muset b\u00fdt nakonfigurov\u00e1na s opr\u00e1vn\u011bn\u00edm spr\u00e1vce za pomoc\u00ed ovl\u00e1dac\u00edho panelu. P\u0159i spu\u0161t\u011bn\u00ed jako slu\u017eba, budete muset zajistit, aby \u00fa\u010det slu\u017eby m\u011bl p\u0159\u00edstup k va\u0161im slo\u017ek\u00e1m m\u00e9di\u00ed.", "WizardCompleted": "To je v\u0161e, co nyn\u00ed pot\u0159ebujeme. Emby za\u010dala shroma\u017e\u010fovat informace o va\u0161\u00ed knihovn\u011b m\u00e9di\u00ed. Pod\u00edvejte se na n\u011bkter\u00e9 z na\u0161ich aplikac\u00ed, a potom klepn\u011bte na tla\u010d\u00edtko Dokon\u010dit <\/b> pro zobrazen\u00ed Server Dashboard <\/b>.", "LabelConfigureSettings": "Konfigurovat nastaven\u00ed", - "LabelEnableAutomaticPortMapping": "Povolit automatick\u00e9 mapov\u00e1n\u00ed port\u016f", - "LabelEnableAutomaticPortMappingHelp": "UPnP umo\u017e\u0148uje automatick\u00e9 nastaven\u00ed routeru pro vzd\u00e1len\u00fd p\u0159\u00edstup. Nemus\u00ed fungovat s n\u011bkter\u00fdmi typy router\u016f.", "HeaderTermsOfService": "Podm\u00ednky slu\u017eby Emby", "MessagePleaseAcceptTermsOfService": "Ne\u017e budete pokra\u010dovat, p\u0159ijm\u011bte pros\u00edm podm\u00ednky slu\u017eby a z\u00e1sady ochrany osobn\u00edch \u00fadaj\u016f.", "OptionIAcceptTermsOfService": "Souhlas\u00edm s podm\u00ednkami slu\u017eby", "ButtonPrivacyPolicy": "Ochrana osobn\u00edch \u00fadaj\u016f", "ButtonTermsOfService": "Podm\u00ednky slu\u017eby", - "HeaderDeveloperOptions": "Nastaven\u00ed pro v\u00fdvoj\u00e1\u0159e", - "OptionEnableWebClientResponseCache": "Povolit mezipam\u011b\u0165 pro webovou odezvu", - "OptionDisableForDevelopmentHelp": "Nakonfigurujte dle pot\u0159eb pro \u00fa\u010dely webov\u00e9ho v\u00fdvoje.", - "OptionEnableWebClientResourceMinification": "Povolit minifikaci webov\u00fdch zdroj\u016f", - "LabelDashboardSourcePath": "Zdrojov\u00e1 cesta pro webov\u00e9ho klienta:", - "LabelDashboardSourcePathHelp": "Jestli\u017ee pou\u017e\u00edv\u00e1te server se zdroji, zadejte cestu ke slo\u017ece dashboard-ui. V\u0161echny soubory webov\u00e9ho klienta budou poskytov\u00e1ny z tohoto m\u00edsta.", "ButtonConvertMedia": "Konverze m\u00e9di\u00ed", "ButtonOrganize": "Organizovat", "HeaderSupporterBenefits": "V\u00fdhody pro Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Chcete-li p\u0159idat u\u017eivatele, kter\u00fd nen\u00ed uveden v seznamu, budete muset nejprve propojit sv\u016fj \u00fa\u010det Emby Connect ze strany profilu u\u017eivatele.", "LabelPinCode": "Pin k\u00f3d:", "OptionHideWatchedContentFromLatestMedia": "Skr\u00fdt p\u0159ehran\u00e9 polo\u017eky ze seznamu naposledy p\u0159idan\u00fdch m\u00e9di\u00ed", + "DeleteMedia": "Delete media", "HeaderSync": "Synchronizace", "ButtonOk": "Ok", "ButtonCancel": "Zru\u0161it", "ButtonExit": "Zav\u0159\u00edt", "ButtonNew": "Nov\u00e9", + "OptionDev": "Dev (Nestabiln\u00ed\/V\u00fdvoj\u00e1\u0159sk\u00e1)", + "OptionBeta": "Betaverze", "HeaderTaskTriggers": "Spou\u0161t\u011b\u010de \u00faloh", "HeaderTV": "TV", "HeaderAudio": "Zvuk", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Zadejte pros\u00edm sv\u016fj easy pin pro p\u0159\u00edstup", "ButtonConfigurePinCode": "Konfigurace pin code", "RegisterWithPayPal": "Zaregistrujte se pomoc\u00ed PayPal", - "HeaderEnjoyDayTrial": "U\u017eijte si 14 denn\u00ed zku\u0161ebn\u00ed verzi zdarma", "LabelSyncTempPath": "Slo\u017eka pro do\u010dasn\u00e9 soubory:", "LabelSyncTempPathHelp": "Zadejte vlastn\u00ed synchroniza\u010dn\u00ed pracovn\u00ed slo\u017eku. P\u0159eveden\u00e9 m\u00e9dia vytvo\u0159en\u00e9 b\u011bhem synchroniza\u010dn\u00edho procesu zde budou ulo\u017eeny.", "LabelCustomCertificatePath": "Cesta k vlastn\u00edmu certifik\u00e1tu:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Pokud povol\u00edte, pot\u00e9 budou .rar a .zip p\u0159\u00edpony detekov\u00e1ny jako medi\u00e1ln\u00ed soubory.", "LabelEnterConnectUserName": "U\u017eivatelsk\u00e9 jm\u00e9no nebo email:", "LabelEnterConnectUserNameHelp": "Toto je va\u0161e u\u017eivatelsk\u00e9 jm\u00e9no nebo email pro v\u00e1\u0161 online Emby \u00fa\u010det.", - "LabelEnableEnhancedMovies": "Povolit roz\u0161\u00ed\u0159en\u00e9 zobrazen\u00ed film\u016f", - "LabelEnableEnhancedMoviesHelp": "Pokud je povoleno, filmy se zobraz\u00ed jako slo\u017eky zahrnuj\u00edc\u00ed trailery, bonusy, herci & ans\u00e1mbl, a dal\u0161\u00ed souvisej\u00edc\u00ed obsah.", "HeaderSyncJobInfo": "Synchroniza\u010dn\u00ed \u00faloha", "FolderTypeMixed": "Sm\u00ed\u0161en\u00fd obsah", "FolderTypeMovies": "Filmy", @@ -84,7 +70,6 @@ "LabelContentType": "Typ obsahu:", "TitleScheduledTasks": "Napl\u00e1novan\u00e9 \u00falohy", "HeaderSetupLibrary": "Nastaven\u00ed Va\u0161ich knihoven m\u00e9di\u00ed", - "ButtonAddMediaFolder": "P\u0159idat slo\u017eku m\u00e9di\u00ed", "LabelFolderType": "Typ slo\u017eky:", "LabelCountry": "Zem\u011b:", "LabelLanguage": "Jazyk:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Povol\u00edte-li ulo\u017een\u00ed p\u0159ebal\u016f a metadat do slo\u017eky s m\u00e9dii bude mo\u017en\u00e9 je jednodu\u0161e upravovat.", "LabelDownloadInternetMetadata": "St\u00e1hnout p\u0159ebal a metadata z Internetu", "LabelDownloadInternetMetadataHelp": "P\u0159i povolen\u00ed \"zlep\u0161en\u00e9\" prezentace m\u016f\u017ee Emby server stahovat informace o va\u0161ich medi\u00e1ln\u00edch souborech", - "TabPreferences": "P\u0159edvolby", "TabPassword": "Heslo", "TabLibraryAccess": "P\u0159\u00edstup ke knihovn\u011b", "TabAccess": "P\u0159\u00edstup", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Povolit p\u0159\u00edstup ke v\u0161em knihovn\u00e1m", "DeviceAccessHelp": "Plat\u00ed pouze pro za\u0159\u00edzen\u00ed, kter\u00e1 mohou b\u00fdt jednozna\u010dn\u011b identifikov\u00e1na. T\u011bmto za\u0159\u00edzen\u00edm nebude br\u00e1n\u011bno v p\u0159\u00edstupu. Filtrov\u00e1n\u00ed p\u0159\u00edstupu u\u017eivatelsk\u00fdch za\u0159\u00edzen\u00ed bude br\u00e1nit v u\u017e\u00edv\u00e1n\u00ed nov\u00fdch za\u0159\u00edzen\u00ed, dokud nebudou schv\u00e1leny.", "LabelDisplayMissingEpisodesWithinSeasons": "Zobrazit chyb\u011bj\u00edc\u00ed epizody", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Zobrazit neodvys\u00edlan\u00e9 epizody v r\u00e1mci sez\u00f3n", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Nastaven\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed videa", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Nastaven\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed", "LabelAudioLanguagePreference": "Up\u0159ednost\u0148ovan\u00fd jazyk videa:", "LabelSubtitleLanguagePreference": "Up\u0159ednost\u0148ovan\u00fd jazyk titulk\u016f:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "Doporu\u010den pom\u011br 1:1. Pouze JPG\/PNG.", "MessageNothingHere": "Tady nic nen\u00ed.", "MessagePleaseEnsureInternetMetadata": "Pros\u00edm zkontrolujte, zda m\u00e1te povoleno stahov\u00e1n\u00ed metadat z internetu.", - "TabSuggested": "Doporu\u010den\u00e9", + "AlreadyPaidHelp1": "Pokud jste ji\u017e zaplatili star\u0161\u00ed verzi Media Browser pro Android, nemus\u00edte platit znovu, aby jste aktivovali tuto aplikaci. Kliknut\u00edm na tla\u010d\u00edtko OK n\u00e1m po\u0161lete e-mail na {0} a my aktivujeme Va\u0161e p\u0159edplatn\u00e9.", + "AlreadyPaidHelp2": "Vlastn\u00edte Emby Premiere? Jen stornujte toto dialogov\u00e9 okno, nastavte Emby Premiere v ovl\u00e1dac\u00edm panelu Emby Server N\u00e1pov\u011bda -> Emby Premiere, a funkce bude automaticky odblokov\u00e1na.", "TabSuggestions": "N\u00e1vrhy", "TabLatest": "Posledn\u00ed", "TabUpcoming": "Nov\u00e9", "TabShows": "Seri\u00e1ly", "TabEpisodes": "Epizody", "TabGenres": "\u017d\u00e1nry", - "TabPeople": "Lid\u00e9", "TabNetworks": "S\u00edt\u011b", "HeaderUsers": "U\u017eivatel\u00e9", "HeaderFilters": "Filtry", @@ -166,6 +153,7 @@ "OptionWriters": "Spisovatel\u00e9", "OptionProducers": "Producenti", "HeaderResume": "Pozastavit", + "HeaderContinueWatching": "Pokra\u010dovat ve sledov\u00e1n\u00ed", "HeaderNextUp": "O\u010dek\u00e1van\u00e9", "NoNextUpItemsMessage": "Nic nenalezeno. Za\u010dn\u011bte sledovat Va\u0161e obl\u00edben\u00e9 seri\u00e1ly!", "HeaderLatestEpisodes": "Posledn\u00ed d\u00edly", @@ -185,6 +173,7 @@ "OptionPlayCount": "Po\u010det p\u0159ehr\u00e1n\u00ed", "OptionDatePlayed": "Datum p\u0159ehr\u00e1n\u00ed", "OptionDateAdded": "Datum p\u0159id\u00e1n\u00ed", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Um\u011blec Alba", "OptionArtist": "Um\u011blec", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Datov\u00fd tok videa", "OptionResumable": "Pozastavaviteln\u00fd", "ScheduledTasksHelp": "Klikn\u011bte na \u00falohu pro zobrazen\u00ed rozvrhu.", - "ScheduledTasksTitle": "Rozvrh \u00faloh", "TabMyPlugins": "Moje z\u00e1suvn\u00e9 moduly", "TabCatalog": "Katalog", "TitlePlugins": "Z\u00e1suvn\u00e9 moduly", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Posledn\u00ed skladby", "HeaderRecentlyPlayed": "Naposledy p\u0159ehr\u00e1v\u00e1no", "HeaderFrequentlyPlayed": "Nej\u010dast\u011bji p\u0159ehr\u00e1v\u00e1no", - "DevBuildWarning": "Dev (v\u00fdvoj\u00e1\u0159sk\u00e1) sestaven\u00ed jsou vyd\u00e1v\u00e1na ob\u010das a nepravideln\u011b. Tato sestaven\u00ed nejsou testov\u00e1na, aplikace mohou b\u00fdt nestabiln\u00ed a n\u011bkter\u00e9 sou\u010d\u00e1sti nemus\u00ed fungovat v\u016fbec.", "LabelVideoType": "Typ vide:", "OptionBluray": "Bluray", "OptionDvd": "DVD", @@ -242,13 +229,13 @@ "OptionContinuing": "Pokra\u010dov\u00e1n\u00ed", "OptionEnded": "Ukon\u010deno", "HeaderAirDays": "Vys\u00edl\u00e1no ve dnech", - "OptionSundayShort": "Sun", - "OptionMondayShort": "Mon", - "OptionTuesdayShort": "Tue", - "OptionWednesdayShort": "Wed", - "OptionThursdayShort": "Thu", - "OptionFridayShort": "Fri", - "OptionSaturdayShort": "Sat", + "OptionSundayShort": "Ned", + "OptionMondayShort": "Pon", + "OptionTuesdayShort": "\u00date", + "OptionWednesdayShort": "St\u0159", + "OptionThursdayShort": "\u010ctv", + "OptionFridayShort": "P\u00e1t", + "OptionSaturdayShort": "Sob", "OptionSunday": "Ned\u011ble", "OptionMonday": "Pond\u011bl\u00ed", "OptionTuesday": "\u00dater\u00fd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Vhodn\u00e9 pro soukrom\u00e9 a administr\u00e1torsk\u00e9 \u00fa\u010dty. Pro p\u0159ihl\u00e1\u0161en\u00ed mus\u00ed u\u017eivatel manu\u00e1ln\u011b zadat u\u017eivatelsk\u00e9 jm\u00e9no a heslo.", "OptionDisableUser": "Zablokovat tohoto u\u017eivatele", "OptionDisableUserHelp": "Pokud nen\u00ed povoleno, server nedovol\u00ed tomuto u\u017eivateli \u017e\u00e1dn\u00e9 p\u0159ipojen\u00ed. Existuj\u00edc\u00ed p\u0159ipojen\u00ed bude okam\u017eit\u011b p\u0159eru\u0161eno.", - "HeaderAdvancedControl": "Pokro\u010dil\u00e9 nastaven\u00ed", "LabelName": "Jm\u00e9no:", "ButtonHelp": "N\u00e1pov\u011bda", "OptionAllowUserToManageServer": "Povolit tomuto u\u017eivateli spr\u00e1vu serveru", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA za\u0159\u00edzen\u00ed jsou pova\u017eov\u00e1ny za sd\u00edlen\u00e9, dokud je u\u017eivatel neza\u010dne omezovat.", "OptionAllowLinkSharing": "Povolit sd\u00edlen\u00ed pomoc\u00ed soci\u00e1ln\u00edch m\u00e9di\u00ed", "OptionAllowLinkSharingHelp": "Pouze webov\u00e9 str\u00e1nky, kter\u00e9 obsahuj\u00ed informace o m\u00e9di\u00edch jsou sd\u00edlen\u00e9. Medi\u00e1ln\u00ed soubory se nikdy nesd\u00edlej\u00ed ve\u0159ejn\u011b. Sd\u00edlen\u00e9 polo\u017eky jsou \u010dasov\u011b omezen\u00e9 a jejich platnost vypr\u0161\u00ed na z\u00e1klad\u011b nastaven\u00ed va\u0161ich serverov\u00fdch sd\u00edlen\u00ed.", - "HeaderSharing": "Sd\u00edlen\u00ed", "HeaderRemoteControl": "Vzd\u00e1len\u00e9 ovl\u00e1d\u00e1n\u00ed", "OptionMissingTmdbId": "Chyb\u011bj\u00edc\u00ed Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Cesty", "TabServer": "Server", "TabTranscoding": "P\u0159ek\u00f3dov\u00e1n\u00ed", - "TitleAdvanced": "Pokro\u010dil\u00e9", "OptionRelease": "Ofici\u00e1ln\u00ed vyd\u00e1n\u00ed", - "OptionBeta": "Betaverze", - "OptionDev": "Dev (Nestabiln\u00ed\/V\u00fdvoj\u00e1\u0159sk\u00e1)", "LabelAllowServerAutoRestart": "Povolit automatick\u00fd restart serveru pro proveden\u00ed aktualizace", "LabelAllowServerAutoRestartHelp": "Server se restartuje pouze v p\u0159\u00edpad\u011b, \u017ee \u017e\u00e1dn\u00fd z u\u017eivatel\u016f nen\u00ed aktivn\u00ed-", "LabelRunServerAtStartup": "Spustit server p\u0159i startu", @@ -317,10 +299,10 @@ "ButtonSelectDirectory": "Vybrat slo\u017eku", "LabelCachePath": "Slo\u017eka pro cache:", "LabelCachePathHelp": "Zadejte vlastn\u00ed um\u00edst\u011bn\u00ed pro serverov\u00e9 do\u010dasn\u00e9 soubory, jako jsou obr\u00e1zky. Ponechte pr\u00e1zdn\u00e9, pokud chcete pou\u017e\u00edt v\u00fdchoz\u00ed nastaven\u00ed serveru.", - "LabelRecordingPath": "Default recording path:", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelSeriesRecordingPath": "Series recording path (optional):", - "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", + "LabelRecordingPath": "Standardn\u00ed slo\u017eka pro nahr\u00e1v\u00e1n\u00ed:", + "LabelMovieRecordingPath": "Slo\u017eka pro nahr\u00e1v\u00e1n\u00ed film\u016f (voliteln\u00e9):", + "LabelSeriesRecordingPath": "Slo\u017eka pro nahr\u00e1v\u00e1n\u00ed seri\u00e1l\u016f (voliteln\u00e9):", + "LabelRecordingPathHelp": "Ur\u010dete v\u00fdchoz\u00ed um\u00edst\u011bn\u00ed pro ulo\u017een\u00ed nahr\u00e1vky. Pokud je ponech\u00e1no pr\u00e1zdn\u00e9, budou pou\u017eity slo\u017eky programu na serveru (data).", "LabelMetadataPath": "Slo\u017eka pro metadata:", "LabelMetadataPathHelp": "Zadejte vlastn\u00ed um\u00edst\u011bn\u00ed pro sta\u017een\u00ed obr\u00e1zk\u016f a metadat.", "LabelTranscodingTempPath": "Adres\u00e1\u0159 p\u0159ek\u00f3dov\u00e1n\u00ed:", @@ -330,11 +312,9 @@ "TabGames": "Hry", "TabMusic": "Hudba", "TabOthers": "Ostatn\u00ed", - "HeaderExtractChapterImagesFor": "Extrahovat obr\u00e1zky kapitol pro:", "OptionMovies": "Filmy", "OptionEpisodes": "Episody", "OptionOtherVideos": "Ostatn\u00ed videa", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Osobn\u00ed kl\u00ed\u010d api:", "LabelFanartApiKeyHelp": "\u017d\u00e1dosti o fanart bez osobn\u00edho API kl\u00ed\u010de vr\u00e1t\u00ed v\u00fdsledky, kter\u00e9 byly schv\u00e1leny p\u0159ed 7-mi dny a d\u0159\u00edve. S osobn\u00edm kl\u00ed\u010dem API, z\u00edsk\u00e1te schv\u00e1len\u00e9 v\u00fdsledky p\u0159ed 48-mi hodinami, a pokud jste i fanart VIP \u010dlen, pak limit klesne na 10 minut.", "ExtractChapterImagesHelp": "Extrakce obr\u00e1zk\u016f kapitol umo\u017en\u00ed klient\u016fm zobrazit menu pro v\u00fdb\u011br sc\u00e9ny. Tento proces m\u016f\u017ee b\u00fdt n\u00e1ro\u010dn\u00fd na cpu a m\u016f\u017ee vy\u017eadovat n\u011bkolik GB prostoru. \u00daloha je standardn\u011b napl\u00e1nov\u00e1na p\u0159i anal\u00fdze vide\u00ed v no\u010dn\u00edch hodin\u00e1ch. Nen\u00ed doporu\u010deno spu\u0161t\u011bn\u00ed t\u00e9to \u00falohy b\u011bhem standardn\u00edch hodin, kdy je server vyt\u00ed\u017een u\u017eivateli.", @@ -350,15 +330,15 @@ "TabCollections": "Kolekce", "HeaderChannels": "Kan\u00e1ly", "TabRecordings": "Nahran\u00e9", - "TabScheduled": "Napl\u00e1nov\u00e1no", "TabSeries": "S\u00e9rie", "TabFavorites": "Obl\u00edben\u00e9", "TabMyLibrary": "Moje knihovna", "ButtonCancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed", - "LabelPrePaddingMinutes": "Minuty nahr\u00e1van\u00e9 p\u0159ed za\u010d\u00e1tkem nahr\u00e1v\u00e1n\u00ed", - "LabelPostPaddingMinutes": "Minuty nahr\u00e1van\u00e9 po skon\u010den\u00ed nahr\u00e1v\u00e1n\u00ed.", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "Pr\u00e1v\u011b vych\u00e1z\u00ed", - "TabStatus": "Stav", "TabSettings": "Nastaven\u00ed", "ButtonRefreshGuideData": "Obnovit data pr\u016fvodce", "ButtonRefresh": "Obnovit", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Z\u00e1znam na v\u0161ech kan\u00e1lech", "OptionRecordAnytime": "Nahr\u00e1vat kdykoliv", "OptionRecordOnlyNewEpisodes": "Nahr\u00e1vat pouze nov\u00e9 epizody", - "HeaderRepeatingOptions": "Mo\u017enosti opakov\u00e1n\u00ed", "HeaderDays": "Dny", "HeaderActiveRecordings": "Aktivn\u00ed nahr\u00e1v\u00e1n\u00ed", "HeaderLatestRecordings": "Posledn\u00ed nahr\u00e1v\u00e1n\u00ed", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Posledn\u00ed hry", "HeaderRecentlyPlayedGames": "Naposled hran\u00e9 hry", "TabGameSystems": "Hern\u00ed syst\u00e9my", - "TitleMediaLibrary": "Knihovna m\u00e9di\u00ed", "TabFolders": "Slo\u017eky", "TabPathSubstitution": "Nahrazen\u00ed cest", "LabelSeasonZeroDisplayName": "Jm\u00e9no pro zobrazen\u00ed sez\u00f3ny 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Rozd\u011blit verze", "ButtonPlayTrailer": "Uk\u00e1zka", "LabelMissing": "Chyb\u00ed", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Nahrazen\u00ed cest se pou\u017e\u00edv\u00e1 pro namapov\u00e1n\u00ed cest k serveru, kter\u00e9 je p\u0159\u00edstupn\u00e9 u\u017eivateli. Povolen\u00edm p\u0159\u00edm\u00e9ho p\u0159\u00edstupu m\u016f\u017ee umo\u017enit u\u017eivateli jeho p\u0159ehr\u00e1n\u00ed bez u\u017eit\u00ed streamov\u00e1n\u00ed a p\u0159ek\u00f3dov\u00e1n\u00ed servru.", - "HeaderFrom": "Z", - "HeaderTo": "Do", - "LabelFrom": "Z:", - "LabelTo": "Do:", - "LabelToHelp": "P\u0159\u00edklad: \\\\MujServer\\Filmy (cesta, ke kter\u00e9 maj\u00ed klienti p\u0159\u00edstup)", - "ButtonAddPathSubstitution": "P\u0159idat p\u0159emapov\u00e1n\u00ed", "OptionSpecialEpisode": "Speci\u00e1ln\u00ed", "OptionMissingEpisode": "Chyb\u011bj\u00edc\u00ed episody", "OptionUnairedEpisode": "Neodvys\u00edlan\u00e9 epizody", "OptionEpisodeSortName": "Se\u0159azen\u00ed n\u00e1zvu epizod", "OptionSeriesSortName": "Jm\u00e9no serie", "OptionTvdbRating": "Tvdb hodnocen\u00ed", - "EditCollectionItemsHelp": "P\u0159idejte nebo odeberte v\u0161echny filmy, seri\u00e1ly, alba, knihy nebo hry, kter\u00e9 chcete seskupit v r\u00e1mci t\u00e9to kolekce.", "HeaderAddTitles": "P\u0159idat n\u00e1zvy", "LabelEnableDlnaPlayTo": "Povolit DLNA p\u0159ehr\u00e1v\u00e1n\u00ed", "LabelEnableDlnaPlayToHelp": "Emby dok\u00e1\u017ee detekovat za\u0159\u00edzen\u00ed v r\u00e1mci va\u0161\u00ed s\u00edt\u011b a nab\u00edz\u00ed mo\u017enost jeho d\u00e1lkov\u00e9ho ovl\u00e1d\u00e1n\u00ed.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Syst\u00e9mov\u00e9 profily", "CustomDlnaProfilesHelp": "Vytvo\u0159te si vlastn\u00ed profil se zam\u011b\u0159it na nov\u00e9 za\u0159\u00edzen\u00ed nebo p\u0159epsat profil syst\u00e9mu.", "SystemDlnaProfilesHelp": "Syst\u00e9mov\u00e9 profily jsou jen pro \u010dten\u00ed. Chcete-li p\u0159epsat profil syst\u00e9mu, vytvo\u0159it vlastn\u00ed profil zam\u011b\u0159en\u00fd na stejn\u00e9 za\u0159\u00edzen\u00ed.", - "TitleDashboard": "Hlavn\u00ed nab\u00eddka", "TabHome": "Dom\u016f", "TabInfo": "Info", "HeaderLinks": "Odkazy", @@ -498,8 +466,8 @@ "LabelHttpsPortHelp": "Tcp port, se kter\u00fdm by Emby https server m\u011bl b\u00fdt sv\u00e1z\u00e1n.", "LabelEnableAutomaticPortMap": "Povolit automatick\u00e9 mapov\u00e1n\u00ed port\u016f", "LabelEnableAutomaticPortMapHelp": "Pokus\u00ed se automaticky namapovat ve\u0159ejn\u00fd port m\u00edstn\u00edho portu p\u0159es UPnP na va\u0161em routeru. Nemus\u00ed fungovat u n\u011bkter\u00fdch model\u016f routeru.", - "LabelExternalDDNS": "External domain:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.", + "LabelExternalDDNS": "Extern\u00ed dom\u00e9na:", + "LabelExternalDDNSHelp": "M\u00e1te-li dynamick\u00fd DNS zadejte jej zde. Emby aplikace jej bude p\u0159i p\u0159ipojov\u00e1n\u00ed pou\u017e\u00edvat. Toto pole je vy\u017eadov\u00e1no p\u0159i pou\u017eit\u00ed ned\u016fv\u011bryhodn\u00e9ho certifik\u00e1tu SSL.", "TitleAppSettings": "Nastaven\u00ed aplikace", "LabelMinResumePercentage": "Minim\u00e1ln\u00ed procento pro p\u0159eru\u0161en\u00ed:", "LabelMaxResumePercentage": "Maxim\u00e1ln\u00ed procento pro p\u0159eru\u0161en\u00ed:", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Tituly budou ozna\u010deny jako \"nep\u0159ehr\u00e1no\", pokud budou zastaveny p\u0159ed t\u00edmto \u010dasem.", "LabelMaxResumePercentageHelp": "Tituly budou ozna\u010deny jako \"p\u0159ehr\u00e1no\", pokud budou zastaveny po tomto \u010dase", "LabelMinResumeDurationHelp": "Tituly krat\u0161\u00ed, ne\u017e tento \u010das nebudou pozastaviteln\u00e9.", - "TitleAutoOrganize": "Auto-organizace", "TabActivityLog": "Z\u00e1znam \u010dinnosti", "TabSmartMatches": "Smart srovn\u00e1n\u00ed", "TabSmartMatchInfo": "Spravujte va\u0161e smart srovn\u00e1n\u00ed, kter\u00e9 bylo p\u0159id\u00e1no za pou\u017eit\u00ed dialogu oprav pro Auto organizaci", @@ -522,8 +489,8 @@ "LabelFailed": "Selh\u00e1n\u00ed", "LabelSkipped": "P\u0159esko\u010deno", "LabelSeries": "Seri\u00e1ly", - "LabelSeasonNumber": "Season number:", - "LabelEpisodeNumber": "Episode number:", + "LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny:", + "LabelEpisodeNumber": "\u010c\u00edslo epizody:", "LabelEndingEpisodeNumber": "\u010c\u00edslo posledn\u00ed epizody:", "LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami", "OptionRememberOrganizeCorrection": "Ulo\u017e a aplikuj tuto korekci pro budouc\u00ed soubory s podobn\u00fdmi jm\u00e9ny", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Pomozte zajistit pokra\u010dov\u00e1n\u00ed v\u00fdvoje tohoto projektu v\u010detn\u011b Emby Premiere. \u010c\u00e1st ve\u0161ker\u00fdch p\u0159\u00edjm\u016f p\u0159isp\u011bje na dal\u0161\u00ed bezplatn\u00e9 n\u00e1stroje, na kter\u00fdch jsme z\u00e1visl\u00ed.", "DonationNextStep": "Po dokon\u010den\u00ed se vra\u0165te a zadejte kl\u00ed\u010d Emby Premiere, kter\u00fd obdr\u017e\u00edte e-mailem.", "AutoOrganizeHelp": "Automaticky uspo\u0159\u00e1dat va\u0161e slo\u017eky p\u0159i stahov\u00e1n\u00ed nov\u00fdch soubor a p\u0159esun\u016f mezi va\u0161imi medi\u00e1ln\u00edmi adres\u00e1\u0159i.", - "AutoOrganizeTvHelp": "Organizace TV soubor\u016f jen p\u0159id\u00e1 epizody do ji\u017e existuj\u00edc\u00edch seri\u00e1l\u016f. Nebude vytv\u00e1\u0159et nov\u00e9 slo\u017eky seri\u00e1l\u016f.", "OptionEnableEpisodeOrganization": "Povolit organizaci nov\u00fdch epizod", "LabelWatchFolder": "Pozrie\u0165 slo\u017eku:", "LabelWatchFolderHelp": "Server zvol\u00ed tuto slo\u017eku b\u011bhem pl\u00e1novan\u00e9 \u00falohy \"Organizovat nov\u00e9 medi\u00e1ln\u00ed soubory.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "B\u011b\u017e\u00edc\u00ed \u00falohy", "HeaderActiveDevices": "Akt\u00edvn\u00ed za\u0159\u00edzen\u00ed", "HeaderPendingInstallations": "\u010cekaj\u00edc\u00ed instalace", - "HeaderServerInformation": "Informace o serveru", "ButtonRestartNow": "Restartovat nyn\u00ed", "ButtonRestart": "Restart", "ButtonShutdown": "Vypnout", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere kl\u00ed\u010d nen\u00ed zad\u00e1n nebo je nevalidn\u00ed.", "ErrorMessageInvalidKey": "K tomu, aby n\u011bkter\u00fd z pr\u00e9miov\u00e9ho obsahy byl registrov\u00e1n, mus\u00edte m\u00edt tak\u00e9 aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.", "HeaderDisplaySettings": "Nastaven\u00ed zobrazen\u00ed", - "TabPlayTo": "P\u0159ehr\u00e1vat do", "LabelEnableDlnaServer": "Povolit Dlna Server", "LabelEnableDlnaServerHelp": "Povolit UPnP pr\u016fchod za\u0159\u00edzen\u00ed v s\u00edti pro p\u0159ehr\u00e1n\u00ed obsahu Emby.", "LabelEnableBlastAliveMessages": "Vytroubit zpr\u00e1vu do sv\u011bta", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Ur\u010duje dobu trv\u00e1n\u00ed v sekund\u00e1ch mezi serverov\u00fdm zobrazen\u00edm aktu\u00e1ln\u00edch zpr\u00e1v.", "LabelDefaultUser": "V\u00fdchoz\u00ed u\u017eivatel", "LabelDefaultUserHelp": "Ur\u010d\u00ed, kter\u00e1 u\u017eivatelsk\u00e1 knihovna by m\u011bla b\u00fdt zobrazena na p\u0159ipojen\u00fdch za\u0159\u00edzen\u00ed. Nastaven\u00ed m\u016f\u017ee b\u00fdt p\u0159eps\u00e1no pomoc\u00ed profil\u016f pro ka\u017ed\u00e9 za\u0159\u00edzen\u00ed.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Nastaven\u00ed serveru", "HeaderRequireManualLogin": "Vy\u017eadovat ru\u010dn\u00ed zad\u00e1n\u00ed u\u017eivatelsk\u00e9ho jm\u00e9na pro:", "HeaderRequireManualLoginHelp": "Kdy\u017e mohou byt deaktivovan\u00ed klienti zobrazeni na p\u0159ihla\u0161ovac\u00ed obrazovce s vizu\u00e1ln\u00edm v\u00fdb\u011brem u\u017eivatel\u016f.", "OptionOtherApps": "Dal\u0161\u00ed aplikace", "OptionMobileApps": "Mobiln\u00ed aplikace", - "HeaderNotificationList": "Klikni na notifikaci ke konfiguraci nastaven\u00ed odes\u00edl\u00e1n\u00ed.", - "NotificationOptionApplicationUpdateAvailable": "Dostupnost aktualizace aplikace", - "NotificationOptionApplicationUpdateInstalled": "Instalace aktualizace aplikace", - "NotificationOptionPluginUpdateInstalled": "Aktualizace z\u00e1suvn\u00e9ho modulu instalov\u00e1na", - "NotificationOptionPluginInstalled": "Z\u00e1suvn\u00fd modul instalov\u00e1n", - "NotificationOptionPluginUninstalled": "Z\u00e1suvn\u00fd modul odstran\u011bn", - "NotificationOptionVideoPlayback": "P\u0159ehr\u00e1v\u00e1n\u00ed videa zah\u00e1jeno", - "NotificationOptionAudioPlayback": "P\u0159ehr\u00e1v\u00e1n\u00ed audia zah\u00e1jeno", - "NotificationOptionGamePlayback": "Spu\u0161t\u011bn\u00ed hry zah\u00e1jeno", - "NotificationOptionVideoPlaybackStopped": "P\u0159ehr\u00e1v\u00e1n\u00ed videa ukon\u010deno", - "NotificationOptionAudioPlaybackStopped": "P\u0159ehr\u00e1v\u00e1n\u00ed audia ukon\u010deno", - "NotificationOptionGamePlaybackStopped": "Hra ukon\u010dena", - "NotificationOptionTaskFailed": "Chyba napl\u00e1novan\u00e9 \u00falohy", - "NotificationOptionInstallationFailed": "Chyba instalace", - "NotificationOptionNewLibraryContent": "P\u0159id\u00e1n nov\u00fd obsah", - "NotificationOptionCameraImageUploaded": "Kamerov\u00fd z\u00e1znam nahr\u00e1n", - "NotificationOptionUserLockedOut": "U\u017eivatel uzam\u010den", - "HeaderSendNotificationHelp": "Ozn\u00e1men\u00ed jsou doru\u010dena do va\u0161\u00ed e-mailov\u00e9 schr\u00e1nky Emby. Dal\u0161\u00ed nastaven\u00ed lze instalovat z karty Slu\u017eby.", - "NotificationOptionServerRestartRequired": "Je vy\u017eadov\u00e1n restart serveru", "LabelNotificationEnabled": "Povolit toto ozn\u00e1men\u00ed", "LabelMonitorUsers": "Sledov\u00e1n\u00ed aktivity z:", "LabelSendNotificationToUsers": "Odeslat ozn\u00e1men\u00ed pro:", @@ -662,12 +606,10 @@ "ButtonPrevious": "P\u0159edchoz\u00ed", "LabelGroupMoviesIntoCollections": "Seskupit filmy do kolekc\u00ed.", "LabelGroupMoviesIntoCollectionsHelp": "P\u0159i zobrazen\u00ed seznam\u016f filmu, budou filmy pat\u0159\u00edc\u00ed do kolekce, zobrazeny jako jedna polo\u017eka.", - "NotificationOptionPluginError": "Chyba z\u00e1suvn\u00e9ho modulu", "ButtonVolumeUp": "Zv\u00fd\u0161it hlasitost", "ButtonVolumeDown": "Sn\u00ed\u017eit hlasitost", "HeaderLatestMedia": "Nejnov\u011bj\u0161\u00ed m\u00e9dia", "OptionNoSubtitles": "\u017d\u00e1dn\u00e9 titulky", - "OptionSpecialFeatures": "Speci\u00e1ln\u00ed funkce", "HeaderCollections": "Kolekce", "LabelProfileCodecsHelp": "Odd\u011bl \u010d\u00e1rkou. Pokud ponech\u00e1te pr\u00e1zdn\u00e9, aplikuj\u00ed se v\u0161echny kodeky.", "LabelProfileContainersHelp": "Odd\u011bl \u010d\u00e1rkou. Pokud ponech\u00e1te pr\u00e1zdn\u00e9, aplikuje se na v\u0161echny obaly.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Nejsou dostupn\u00e9 \u017e\u00e1dn\u00e9 z\u00e1suvn\u00e9 moduly.", "LabelDisplayPluginsFor": "Zobrazovac\u00ed z\u00e1suvn\u00e9 moduly pro:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "N\u00e1zev epizody", "LabelSeriesNamePlain": "N\u00e1zev seri\u00e1lu", "ValueSeriesNamePeriod": "Seri\u00e1l.n\u00e1zev", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "\u010c\u00edslo posledn\u00ed epizody", "HeaderTypeText": "Vlo\u017ete text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Vyhledat titulky", - "MessageNoSubtitleSearchResultsFound": "Nenalezeny \u017e\u00e1dn\u00e9 v\u00fdsledky.", "TabDisplay": "Zobrazen\u00ed", "TabLanguages": "Jazyky", "TabAppSettings": "Nastaven\u00ed aplikace", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Pokud povol\u00edte, bude p\u0159i proch\u00e1zen\u00ed knihovny p\u0159ehr\u00e1v\u00e1na t\u00e9matick\u00e1 melodie na pozad\u00ed.", "LabelEnableBackdropsHelp": "Pokud je povoleno, pozad\u00ed je zobrazeno pro n\u011bkter\u00e9 str\u00e1nky p\u0159i proch\u00e1zen\u00ed va\u0161\u00ed knihovny.", "HeaderHomePage": "Hlavn\u00ed str\u00e1nka", - "HeaderSettingsForThisDevice": "Nastaven\u00ed pro TOTO za\u0159\u00edzen\u00ed", "OptionAuto": "Automaticky", "OptionYes": "Ano", "OptionNo": "Ne", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "\u00davodn\u00ed str\u00e1nka sekce 2:", "LabelHomePageSection3": "\u00davodn\u00ed str\u00e1nka sekce 3:", "LabelHomePageSection4": "\u00davodn\u00ed str\u00e1nka sekce 4:", - "OptionMyMediaButtons": "Moje m\u00e9dia (tla\u010d\u00edtka)", "OptionMyMedia": "Moje m\u00e9dia", "OptionMyMediaSmall": "Moje m\u00e9dia (mal\u00e9)", "OptionResumablemedia": "Pokra\u010dovat", @@ -815,53 +752,21 @@ "HeaderReports": "Hl\u00e1\u0161en\u00ed", "HeaderSettings": "Nastaven\u00ed", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Nejsledovan\u011bj\u0161\u00ed", "TabNextUp": "O\u010dek\u00e1van\u00e9", - "PlaceholderUsername": "U\u017eivatelsk\u00e9 jm\u00e9no", "HeaderBecomeProjectSupporter": "Z\u00edskat Emby Premiere", "MessageNoMovieSuggestionsAvailable": "\u017d\u00e1dn\u00e9 n\u00e1vrhy nejsou v sou\u010dasnosti k dispozici. Za\u010dn\u011bte sledovat a hodnotit filmy, a pak se v\u00e1m doporu\u010den\u00ed zobraz\u00ed.", "MessageNoCollectionsAvailable": "Kolekce v\u00e1m umo\u017en\u00ed vychutnat si personalizovan\u00e9 seskupen\u00ed film\u016f, seri\u00e1l\u016f, alb, knih a her. Pro vytvo\u0159en\u00ed kolekce klepn\u011bte na tla\u010d\u00edtko +.", "MessageNoPlaylistsAvailable": "Playlisty umo\u017e\u0148uj\u00ed vytv\u00e1\u0159et seznamy obsahu pro postupn\u00e9 p\u0159ehr\u00e1n\u00ed. Chcete-li p\u0159idat polo\u017eky do playlist\u016f, klepn\u011bte prav\u00fdm tla\u010d\u00edtkem my\u0161i, nebo klepn\u011bte podr\u017ete, a pot\u00e9 vyberte mo\u017enost P\u0159idat do Playlistu.", "MessageNoPlaylistItemsAvailable": "Playlist je zat\u00edm pr\u00e1zdn\u00fd.", - "ButtonDismiss": "Zam\u00edtnout", "ButtonEditOtherUserPreferences": "Editace u\u017eivatelsk\u00e9ho profilu, avataru a osobn\u00edch preferenc\u00ed.", "LabelChannelStreamQuality": "Preferovan\u00e1 kvalita pro vys\u00edl\u00e1n\u00ed p\u0159es internet:", "LabelChannelStreamQualityHelp": "P\u0159i mal\u00e9 \u0161\u00ed\u0159ce p\u00e1sma, m\u016f\u017ee pomoci omezov\u00e1n\u00ed kvality pro hlad\u0161\u00ed streamov\u00e1n\u00ed videa.", "OptionBestAvailableStreamQuality": "Nejl\u00e9pe dostupn\u00e9", "ChannelSettingsFormHelp": "Instalace kan\u00e1l\u016f jako Trailers a Vimeo v katalogu z\u00e1suvn\u00fdch modul\u016f.", - "ViewTypePlaylists": "Playlisty", "ViewTypeMovies": "Filmy", "ViewTypeTvShows": "Televize", "ViewTypeGames": "Hry", "ViewTypeMusic": "Hudba", - "ViewTypeMusicGenres": "\u017d\u00e1nry", - "ViewTypeMusicArtists": "\u00dam\u011blci", - "ViewTypeBoxSets": "Kolekce", - "ViewTypeChannels": "Kan\u00e1ly", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Vys\u00edl\u00e1no nyn\u00ed", - "ViewTypeLatestGames": "Nejnov\u011bj\u0161\u00ed hry", - "ViewTypeRecentlyPlayedGames": "Ned\u00e1vno p\u0159ehr\u00e1no", - "ViewTypeGameFavorites": "Obl\u00edben\u00e9", - "ViewTypeGameSystems": "Syst\u00e9my hry", - "ViewTypeGameGenres": "\u017d\u00e1nry", - "ViewTypeTvResume": "Obnovit", - "ViewTypeTvNextUp": "O\u010dek\u00e1van\u00e9", - "ViewTypeTvLatest": "Nejnov\u011bj\u0161\u00ed", - "ViewTypeTvShowSeries": "Seri\u00e1l", - "ViewTypeTvGenres": "\u017d\u00e1nry", - "ViewTypeTvFavoriteSeries": "Obl\u00edben\u00e9 seri\u00e1ly", - "ViewTypeTvFavoriteEpisodes": "Obl\u00edben\u00e9 epizody", - "ViewTypeMovieResume": "Obnovit", - "ViewTypeMovieLatest": "Nejnov\u011bj\u0161\u00ed", - "ViewTypeMovieMovies": "Filmy", - "ViewTypeMovieCollections": "Kolekce", - "ViewTypeMovieFavorites": "Obl\u00edben\u00e9", - "ViewTypeMovieGenres": "\u017d\u00e1nry", - "ViewTypeMusicLatest": "Nejnov\u011bj\u0161\u00ed", - "ViewTypeMusicPlaylists": "Playlisty", - "ViewTypeMusicAlbums": "Alba", - "ViewTypeMusicAlbumArtists": "Alba \u00fam\u011blc\u016f", "HeaderOtherDisplaySettings": "Nastaven\u00ed zobrazen\u00ed", "ViewTypeMusicSongs": "Songy", "ViewTypeMusicFavorites": "Obl\u00edben\u00e9", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Sta\u017een\u00e9 obr\u00e1zky mohou b\u00fdt ulo\u017eeny do obou extrafanart a extrathumbs. Pro zaji\u0161t\u011bn\u00ed maxim\u00e1ln\u00ed kompatibility se vzhledem Kodi.", "TabServices": "Slu\u017eby", "TabLogs": "Z\u00e1znamy", - "HeaderServerLogFiles": "Soubory serverov\u00e9ho \u017eurn\u00e1lu:", "TabBranding": "Ozna\u010den\u00ed", "HeaderBrandingHelp": "P\u0159izp\u016fsobit vzhled Emby, aby odpov\u00eddal pot\u0159eb\u00e1m va\u0161\u00ed skupiny nebo organizace.", "LabelLoginDisclaimer": "Z\u0159eknut\u00ed se n\u00e1sleduj\u00edc\u00edch pr\u00e1v p\u0159i p\u0159ihl\u00e1\u0161en\u00ed:", @@ -917,7 +821,6 @@ "HeaderDevice": "Za\u0159\u00edzen\u00ed", "HeaderUser": "U\u017eivatel", "HeaderDateIssued": "Datum vyd\u00e1n\u00ed", - "LabelChapterName": "Kapitola {0}", "HeaderHttpHeaders": "HTTP hlavi\u010dky", "HeaderIdentificationHeader": "Hlavi\u010dka identifikace", "LabelValue": "Hodnota:", @@ -926,7 +829,6 @@ "OptionRegex": "Regexp", "OptionSubstring": "sub\u0159et\u011bzec", "TabView": "Pohled", - "TabSort": "T\u0159\u00edd\u011bn\u00ed", "TabFilter": "Filtr", "ButtonView": "Zobrazit", "LabelPageSize": "Limit polo\u017eek:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Kontext:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Synchronizace", "TabPlaylists": "Playlisty", "ButtonClose": "Zav\u0159\u00edt", "LabelAllLanguages": "V\u0161echny jazyky", @@ -956,7 +856,6 @@ "LabelImage": "Obr\u00e1zek:", "HeaderImages": "Obr\u00e1zky", "HeaderBackdrops": "Pozad\u00ed", - "HeaderScreenshots": "Sn\u00edmky", "HeaderAddUpdateImage": "P\u0159idat\/Aktualizovat obr\u00e1zek", "LabelDropImageHere": "Sem p\u0159et\u00e1hn\u011bte obr\u00e1zek", "LabelJpgPngOnly": "Pouze JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Zam\u010deno", "OptionUnidentified": "Neidentifikov\u00e1no", "OptionMissingParentalRating": "Chyb\u011bj\u00edc\u00ed rodi\u010dovsk\u00e9 hodnocen\u00ed", - "OptionStub": "Pah\u00fdl", "OptionSeason0": "Sez\u00f3na 0", "LabelReport": "Hl\u00e1\u0161en\u00ed:", "OptionReportSongs": "Songy", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Alba", "ButtonMore": "V\u00edce", "HeaderActivity": "Aktivity", - "ScheduledTaskStartedWithName": "{0} zah\u00e1jeno", - "ScheduledTaskCancelledWithName": "{0} bylo ukon\u010deno", - "ScheduledTaskCompletedWithName": "{0} dokon\u010deno", - "ScheduledTaskFailed": "Napl\u00e1novan\u00e1 \u00faloha dokon\u010dena", "PluginInstalledWithName": "{0} byl nainstalov\u00e1n", "PluginUpdatedWithName": "{0} byl aktualizov\u00e1n", "PluginUninstalledWithName": "{0} byl odinstalov\u00e1n", - "ScheduledTaskFailedWithName": "{0} selhalo", - "DeviceOnlineWithName": "{0} je p\u0159ipojen", "UserOnlineFromDevice": "{0} se p\u0159ipojil z {1}", - "DeviceOfflineWithName": "{0} se odpojil", "UserOfflineFromDevice": "{0} se odpojil od {1}", - "SubtitlesDownloadedForItem": "Sta\u017eeny titulky pro {0}", - "SubtitleDownloadFailureForItem": "Stahov\u00e1n\u00ed titulk\u016f selhalo pro {0}", "LabelRunningTimeValue": "D\u00e9lka m\u00e9dia: {0}", "LabelIpAddressValue": "IP adresa: {0}", "UserLockedOutWithName": "U\u017eivatel {0} byl odem\u010den", "UserConfigurationUpdatedWithName": "Konfigurace u\u017eivatele byla aktualizov\u00e1na pro {0}", "UserCreatedWithName": "U\u017eivatel {0} byl vytvo\u0159en", - "UserPasswordChangedWithName": "Pro u\u017eivatele {0} byla provedena zm\u011bna hesla", "UserDeletedWithName": "U\u017eivatel {0} byl smaz\u00e1n", "MessageServerConfigurationUpdated": "Konfigurace serveru byla aktualizov\u00e1na", "MessageNamedServerConfigurationUpdatedWithValue": "Konfigurace sekce {0} na serveru byla aktualizov\u00e1na", "MessageApplicationUpdated": "Emby Server byl aktualizov\u00e1n", "UserDownloadingItemWithValues": "{0} pr\u00e1v\u011b stahuje {1}", - "UserStartedPlayingItemWithValues": "{0} spustil p\u0159ehr\u00e1v\u00e1n\u00ed {1}", - "UserStoppedPlayingItemWithValues": "{0} zastavil p\u0159ehr\u00e1v\u00e1n\u00ed {1}", - "AppDeviceValues": "Aplikace: {0}, Za\u0159\u00edzen\u00ed: {1}", "ProviderValue": "Poskytl: {0}", "HeaderRecentActivity": "Ned\u00e1vn\u00e1 aktivita", "HeaderPeople": "Lid\u00e9", @@ -1027,8 +912,8 @@ "OptionOthers": "Dal\u0161\u00ed", "HeaderDownloadPeopleMetadataForHelp": "Povolen\u00edm dal\u0161\u00edch mo\u017enost\u00ed zobraz\u00edte v\u00edce informac\u00ed na obrazovce, ale bude m\u00edt za n\u00e1sledek pomalej\u0161\u00ed skenov\u00e1n\u00ed knihovny.", "ViewTypeFolders": "Slo\u017eky", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", + "OptionDisplayFolderView": "Zobrazit slo\u017eku s origin\u00e1ln\u00edm zobrazen\u00edm slo\u017eek m\u00e9di\u00ed", + "OptionDisplayFolderViewHelp": "Pokud je povoleno, Emby aplikace zobraz\u00ed skupinu slo\u017eek vedle knihovny m\u00e9di\u00ed. To je u\u017eite\u010dn\u00e9, pokud chcete m\u00edt pohled na origin\u00e1ln\u00ed slo\u017eky medi\u00ed.", "ViewTypeLiveTvRecordingGroups": "Nahr\u00e1vky", "ViewTypeLiveTvChannels": "Kan\u00e1ly", "LabelEasyPinCode": "K\u00f3d Easy pin:", @@ -1051,27 +936,18 @@ "LabelAirDate": "Dny vys\u00edl\u00e1n\u00ed", "LabelAirTime:": "\u010cas vys\u00edl\u00e1n\u00ed:", "LabelRuntimeMinutes": "D\u00e9lka (v minut\u00e1ch):", - "LabelRevenue": "V\u00fdnos ($):", - "HeaderAlternateEpisodeNumbers": "Alternativn\u00ed \u010d\u00edslov\u00e1n\u00ed epizod", "HeaderSpecialEpisodeInfo": "Infromace o speci\u00e1ln\u00ed epizod\u011b", - "HeaderExternalIds": "Extern\u00ed Id:", - "LabelAirsBeforeSeason": "Vys\u00edl\u00e1no p\u0159ed sez\u00f3nou:", - "LabelAirsAfterSeason": "Vys\u00edl\u00e1no po sez\u00f3n\u011b:", - "LabelAirsBeforeEpisode": "Vys\u00edl\u00e1no p\u0159ed epizodou:", "LabelDisplaySpecialsWithinSeasons": "Zobraz speci\u00e1ln\u00ed epizody dle odvys\u00edl\u00e1n\u00fdch sez\u00f3n", - "HeaderCountries": "Zem\u011b", "HeaderGenres": "\u017d\u00e1nry", "HeaderPlotKeywords": "Kl\u00ed\u010dov\u00e1 slova obsahu", "HeaderStudios": "Studia", "HeaderTags": "Tagy", - "MessageLeaveEmptyToInherit": "P\u0159i ponech\u00e1n\u00ed pr\u00e1zdn\u00e9 polo\u017eky bude zd\u011bd\u011bno nastaven\u00ed z polo\u017eky p\u0159edka nebo z glob\u00e1ln\u00ed defaultn\u00ed hodnoty.", "OptionNoTrailer": "Bez traileru", "ButtonPurchase": "Zakoupeno", "OptionActor": "Herec", "OptionComposer": "Skladatel", "OptionDirector": "Re\u017eis\u00e9r", "OptionProducer": "Producent", - "OptionWriter": "Napsal", "LabelAirDays": "Vys\u00edl\u00e1no:", "LabelAirTime": "\u010cas vys\u00edl\u00e1n\u00ed:", "HeaderMediaInfo": "Informace o m\u00e9diu", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Rodi\u010dovsk\u00e1 kontrola", "HeaderAccessSchedule": "P\u0159\u00edstup k napl\u00e1novan\u00e9 \u00faloze", "HeaderAccessScheduleHelp": "Vytvo\u0159te pl\u00e1n p\u0159\u00edstupu pro limitov\u00e1n\u00ed p\u0159\u00edstupu jen ur\u010dit\u00e9m \u010dase.", - "ButtonAddSchedule": "Napl\u00e1novat novou \u00falohu", "LabelAccessDay": "Den t\u00fddne:", "LabelAccessStart": "Za\u010d\u00e1tek:", "LabelAccessEnd": "Konec:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Synchroniza\u010dn\u00ed \u00falohy", "HeaderThisUserIsCurrentlyDisabled": "Tento u\u017eivatel je aktu\u00e1ln\u011b zak\u00e1z\u00e1n", "MessageReenableUser": "Viz n\u00ed\u017ee pro znovuzapnut\u00ed", - "LabelEnableInternetMetadataForTvPrograms": "Stahovat metadata z Internetu pro:", "OptionTVMovies": "TV Filmy", "HeaderUpcomingMovies": "Nadch\u00e1zej\u00edc\u00ed filmy", "HeaderUpcomingSports": "Nadch\u00e1zej\u00edc\u00ed sportovn\u00ed ud\u00e1losti", @@ -1225,7 +1099,7 @@ "HeaderPlayback": "P\u0159ehr\u00e1n\u00ed m\u00e9dia", "OptionAllowAudioPlaybackTranscoding": "Povolit p\u0159ehr\u00e1v\u00e1n\u00ed audia, kter\u00e9 vy\u017eaduje p\u0159ek\u00f3dov\u00e1n\u00ed.", "OptionAllowVideoPlaybackTranscoding": "Povolit p\u0159ehr\u00e1v\u00e1n\u00ed videa, kter\u00e9 vy\u017eaduje p\u0159ek\u00f3dov\u00e1n\u00ed.", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowVideoPlaybackRemuxing": "Umo\u017en\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed videa, kter\u00e1 vy\u017eaduje konverzi bez op\u011btovn\u00e9ho p\u0159ek\u00f3dov\u00e1n\u00ed", "OptionAllowMediaPlaybackTranscodingHelp": "U\u017eivatel\u00e9 budou dost\u00e1vat p\u0159\u00e1telsk\u00e9 zpr\u00e1vy, pokud je nehratelnost obsahu zalo\u017een\u00e1 na politice.", "TabStreaming": "Streamov\u00e1n\u00ed", "LabelRemoteClientBitrateLimit": "Datov\u00fd tok streamov\u00e1n\u00ed do Internetu (Mbps):", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlisty", "HeaderViewStyles": "Styl zobrazen\u00ed", "TabPhotos": "Fotky", - "TabVideos": "Videa", "HeaderWelcomeToEmby": "V\u00edtejte v Emby", "EmbyIntroMessage": "S Emby m\u016f\u017eete snadno streamovat videa, hudbu a fotografie na chytr\u00e9 telefony, tablety a dal\u0161\u00ed za\u0159\u00edzen\u00ed ze sv\u00e9ho Emby serveru.", "ButtonSkip": "P\u0159esko\u010dit", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Sloupce", "ButtonReset": "Obnovit", "OptionEnableExternalVideoPlayers": "Povolit extern\u00ed video p\u0159ehr\u00e1va\u010de", - "ButtonUnlockGuide": "Pr\u016fvodce pro odem\u010den\u00ed", "LabelEnableFullScreen": "Povolit celoobrazovkov\u00fd m\u00f3d", "LabelEmail": "Email:", "LabelUsername": "U\u017eivatelsk\u00e9 jm\u00e9no:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "P\u0159ehled", "HeaderShortOverview": "Stru\u010dn\u00fd p\u0159ehled", "HeaderType": "Typ", - "HeaderSeverity": "Z\u00e1va\u017enost", "OptionReportActivities": "\u017durn\u00e1l aktivit", "HeaderTunerDevices": "Tunery", "HeaderAddDevice": "P\u0159idat za\u0159\u00edzen\u00ed", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Opakovat", "LabelEnableThisTuner": "Povolit tuner", "LabelEnableThisTunerHelp": "Zru\u0161te za\u0161krtnut\u00ed pro zabr\u00e1n\u011bn\u00ed importu kan\u00e1ly z tohoto tuneru.", - "HeaderUnidentified": "Neidentifikov\u00e1n", "HeaderImagePrimary": "Prim\u00e1rn\u00ed", "HeaderImageBackdrop": "Pozad\u00ed", "HeaderImageLogo": "Logo", @@ -1314,9 +1184,9 @@ "AdditionalLiveTvProvidersCanBeInstalledLater": "Dal\u0161\u00ed poskytovatel\u00e9 Live TV mohou b\u00fdt p\u0159id\u00e1ny pozd\u011bji v sekci Live TV.", "HeaderSetupTVGuide": "Nastaven\u00ed TV pr\u016fvodce", "LabelDataProvider": "Poskytovatel dat:", - "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Standardn\u00ed odsazen\u00ed", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", + "OptionSendRecordingsToAutoOrganize": "Automaticky uspo\u0159\u00e1dat z\u00e1znamy do st\u00e1vaj\u00edc\u00edch slo\u017eek seri\u00e1l\u016f v r\u016fzn\u00fdch knihovn\u00e1ch", + "HeaderDefaultRecordingSettings": "Default Recording Settings", + "OptionEnableRecordingSubfolders": "Vytvo\u0159it podslo\u017eky pro kategorie, jako je Sport, D\u011bti, atd.", "HeaderSubtitles": "Titulky", "HeaderVideos": "Videa", "LabelHardwareAccelerationType": "Hardwarov\u00e1 akcelerace:", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Slo\u017eky", "LabelDisplayName": "Zobrazovan\u00e9 jm\u00e9no:", "HeaderNewRecording": "Nov\u00fd z\u00e1znam", - "ButtonAdvanced": "Pokro\u010dil\u00e9", "LabelCodecIntrosPath": "Slo\u017eka pro vlastn\u00ed p\u0159edehry:", "LabelCodecIntrosPathHelp": "Slo\u017eka obsahuj\u00edc\u00ed video soubory. Pokud n\u00e1zev \u00favodn\u00edho videa souboru odpov\u00edd\u00e1 video kodek, zvukov\u00fd kodek, zvukov\u00fd profil, nebo tag, pak bude hr\u00e1t p\u0159ed hlavn\u00edm spou\u0161t\u011bn\u00fdm m\u00e9diem.", "OptionConvertRecordingsToStreamingFormat": "Automaticky prov\u00e1d\u011bt konverzi do podporovan\u00fdch streamov\u00fdch form\u00e1t\u016f", "OptionConvertRecordingsToStreamingFormatHelp": "Nahr\u00e1vky budou p\u0159i p\u0159ehr\u00e1v\u00e1n\u00ed p\u0159eved\u011bny do MP4 pro snadn\u00e9 p\u0159ehr\u00e1v\u00e1n\u00ed na va\u0161ich za\u0159\u00edzen\u00edch.", "FeatureRequiresEmbyPremiere": "Tato funkce vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.", "FileExtension": "P\u0159\u00edpona souboru", - "OptionReplaceExistingImages": "Nahradit existuj\u00edc\u00ed obr\u00e1zky", "OptionPlayNextEpisodeAutomatically": "Automaticky p\u0159ehr\u00e1vat dal\u0161\u00ed epizodu", "OptionDownloadImagesInAdvance": "St\u00e1hnout v\u0161echny obr\u00e1zky do z\u00e1lohy", "SettingsSaved": "Nastaven\u00ed ulo\u017eeno.", @@ -1348,7 +1216,6 @@ "Password": "Heslo", "DeleteImage": "Odstranit obr\u00e1zek", "MessageThankYouForSupporting": "Emby v\u00e1m t\u00edmto d\u011bkuje za va\u0161\u00ed podporu.", - "MessagePleaseSupportProject": "Pros\u00edm podpo\u0159te Emby.", "DeleteImageConfirmation": "Jste si jisti, \u017ee chcete odstranit tento obr\u00e1zek?", "FileReadCancelled": "\u010cten\u00ed souboru bylo zru\u0161eno.", "FileNotFound": "Soubor nebyl nalezen.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Tento Emby Server je t\u0159eba aktualizovat. Chcete-li st\u00e1hnout nejnov\u011bj\u0161\u00ed verzi, nav\u0161tivte pros\u00edm {0}", "LabelFromHelp": "Nap\u0159\u00edklad: {0} (na serveru)", "HeaderMyMedia": "Moje m\u00e9dia", - "LabelAutomaticUpdateLevel": "\u00darove\u0148 automatick\u00e9 aktualizace:", - "LabelAutomaticUpdateLevelForPlugins": "\u00darove\u0148 automatick\u00e9 aktualizace pro z\u00e1suvn\u00e9 moduly:", "ErrorLaunchingChromecast": "Do\u0161lo k chyb\u011b p\u0159i spou\u0161t\u011bn\u00ed Chromecast. Zkontrolujte zda je va\u0161e za\u0159\u00edzen\u00ed p\u0159ipojeno k bezdr\u00e1tov\u00e9 s\u00edti.", "MessageErrorLoadingSupporterInfo": "Do\u0161lo k chyb\u011b p\u0159i na\u010d\u00edt\u00e1n\u00ed informac\u00ed o Emby Premiere. Pros\u00edm zkuste to znovu pozd\u011bji.", - "MessageLinkYourSupporterKey": "Propojte zdarma Emby Premiere kl\u00ed\u010d a\u017e s {0} \u010dleny Emby Connect pro n\u00e1sleduj\u00edc\u00ed aplikac\u00edm:", "HeaderConfirmRemoveUser": "Odstranit u\u017eivatele", - "MessageConfirmRemoveConnectSupporter": "Jste si jisti, \u017ee chcete odstranit v\u00fdhody Emby Premier tomuto u\u017eivateli?", "ValueTimeLimitSingleHour": "\u010casov\u00fd limit: 1 hodina", "ValueTimeLimitMultiHour": "\u010casov\u00fd limit: {0} hodin", "PluginCategoryGeneral": "Obecn\u00e9", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Napl\u00e1novan\u00e9 \u00falohy", "MessageItemsAdded": "Polo\u017eka p\u0159id\u00e1na", "HeaderSelectCertificatePath": "Vyber cestu k certifik\u00e1tu", - "ConfirmMessageScheduledTaskButton": "Tato operace se obvykle spust\u00ed automaticky pomoc\u00ed napl\u00e1novan\u00e9 \u00falohy a nevy\u017eaduje \u017e\u00e1dn\u00fd v\u00e1\u0161 z\u00e1sah. Chcete-li napl\u00e1novat \u00falohy, pak:", "HeaderSupporterBenefit": "Aktivn\u00ed Emby Premiere p\u0159edplatn\u00e9 poskytuje dal\u0161\u00ed v\u00fdhody, jako je p\u0159\u00edstup k synchronizaci, pr\u00e9miov\u00fdm z\u00e1suvn\u00fdm modul\u016fm, obsahu internetov\u00e9ho kan\u00e1lu, a dal\u0161\u00edm. {0} Dal\u0161\u00ed informace {1}.", "HeaderWelcomeToProjectServerDashboard": "V\u00edtejte na hlavn\u00ed nab\u00eddce Server Emby", "HeaderWelcomeToProjectWebClient": "V\u00edtejte v Emby", @@ -1437,7 +1299,7 @@ "HeaderWelcomeBack": "V\u00edtejte zp\u011bt!", "ButtonTakeTheTourToSeeWhatsNew": "Chci vid\u011bt co je nov\u00e9ho", "MessageNoSyncJobsFound": "Nebyly nalezeny \u017e\u00e1dn\u00e9 synchroniza\u010dn\u00ed \u00falohy. Synchroniza\u010dn\u00ed \u00falohy vytvo\u0159\u00edte pomoc\u00ed tla\u010d\u00edtek \"Synchronizace\" kdekoliv ve webov\u00e9m rozhran\u00ed.", - "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "MessageDownloadsFound": "\u017d\u00e1dn\u00e9 stahov\u00e1n\u00ed v re\u017eimu offline. Zp\u0159\u00edstupn\u011bte sv\u00e1 m\u00e9dia i v re\u017eimu offline kliknut\u00edm na Zp\u0159\u00edstupnit Offline pro celou aplikaci.", "HeaderSelectDevices": "Vyber za\u0159\u00edzen\u00ed", "ButtonCancelItem": "Zru\u0161it polo\u017eku", "ButtonQueueForRetry": "Za\u0159azeno pro obnoven\u00ed", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Zak\u00e1z\u00e1no", "ButtonMoreInformation": "Dal\u0161\u00ed informace", "LabelNoUnreadNotifications": "V\u0161echna ozn\u00e1men\u00ed p\u0159e\u010dtena.", - "LabelAllPlaysSentToPlayer": "V\u0161echny nahr\u00e1vky budou odesl\u00e1ny do zvolen\u00e9ho p\u0159ehr\u00e1va\u010de.", "MessageInvalidUser": "Neplatn\u00e9 u\u017eivatelsk\u00e9 jm\u00e9no nebo heslo. Zkuste znovu.", "HeaderLoginFailure": "P\u0159ihl\u00e1\u0161en\u00ed selhalo", "RecommendationBecauseYouLike": "Proto\u017ee se v\u00e1m l\u00edb\u00ed {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Nahr\u00e1v\u00e1n\u00ed zru\u0161eno.", "MessageRecordingScheduled": "Pl\u00e1n nahr\u00e1v\u00e1n\u00ed.", "HeaderConfirmSeriesCancellation": "Potvrdit zru\u0161en\u00ed nahr\u00e1v\u00e1n\u00ed seri\u00e1l\u016f", - "MessageConfirmSeriesCancellation": "Jste si jisti, \u017ee chcete zru\u0161it tento seri\u00e1l?", - "MessageSeriesCancelled": "S\u00e9rie zru\u0161ena.", "HeaderConfirmRecordingDeletion": "Potvrdit smaz\u00e1n\u00ed z\u00e1znamu", "MessageRecordingSaved": "Nahr\u00e1van\u00ed ulo\u017eeno", "OptionWeekend": "V\u00edkendy", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Vyberte nebo zadejte slo\u017eku vyrovn\u00e1vac\u00ed pam\u011bti soubor\u016f. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", "HeaderSelectTranscodingPathHelp": "Vyberte nebo zadejte slo\u017eku pro do\u010dasn\u00e9 soubory p\u0159ek\u00f3dov\u00e1n\u00ed. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", "HeaderSelectMetadataPathHelp": "V\u00fdb\u011br nebo zad\u00e1n\u00ed cesty, kde chcete ulo\u017eit metadata. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", - "HeaderSelectChannelDownloadPath": "V\u00fdb\u011br slo\u017eky pro stahov\u00e1n\u00ed kan\u00e1lu", - "HeaderSelectChannelDownloadPathHelp": "Vyberte nebo zadejte slo\u017eku pro ukl\u00e1d\u00e1n\u00ed cache soubor\u016f kan\u00e1lu. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", - "LabelChapterDownloaders": "Stahova\u010d kapitol:", - "LabelChapterDownloadersHelp": "Povol\u00ed \u0159azen\u00ed va\u0161ich preferovan\u00fdch stahova\u010d\u016f kapitol podle priority. Stahova\u010d s ni\u017e\u0161\u00ed prioritou bude pou\u017eit pouze k dopln\u011bn\u00ed chyb\u011bj\u00edc\u00edch informac\u00ed.", "HeaderFavoriteAlbums": "Obl\u00edben\u00e1 alba", "HeaderLatestChannelMedia": "Nejnov\u011bj\u0161\u00ed polo\u017eky kan\u00e1lu", "ButtonOrganizeFile": "Uspo\u0159\u00e1dat soubor", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "Spu\u0161t\u011bno na http portu {0}.", "LabelRunningOnPorts": "Spu\u0161t\u011bno na http portu {0} a https portu {1}.", "HeaderLatestFromChannel": "Nejnov\u011bj\u0161\u00ed od {0}", - "HeaderCurrentSubtitles": "Vybran\u00e9 titulky", "ButtonRemoteControl": "D\u00e1lkov\u00fd ovlada\u010d", "HeaderLatestTvRecordings": "Nejnov\u011bj\u0161\u00ed nahr\u00e1vky", "LabelCurrentPath": "Aktu\u00e1ln\u00ed cesta:", @@ -1583,7 +1437,7 @@ "MessageEnsureOpenTuner": "Pros\u00edm ujist\u011bte se, \u017ee je otev\u0159en\u00fd tuner dostupn\u00fd.", "ButtonDashboard": "Hlavn\u00ed nab\u00eddka", "ButtonReports": "Hl\u00e1\u0161en\u00ed", - "MetadataManager": "Metadata Manager", + "MetadataManager": "Mana\u017eer metadat", "HeaderTime": "\u010cas", "LabelAddedOnDate": "P\u0159id\u00e1no {0}", "ButtonStart": "Start", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Smazat polo\u017eku", "ConfirmDeleteItem": "Smaz\u00e1n\u00edm polo\u017eky odstran\u00edte soubor jak z knihovny m\u00e9di\u00ed tak ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?", "ConfirmDeleteItems": "Odstran\u011bn\u00edm t\u011bchto polo\u017eek odstran\u00edte va\u0161e m\u00e9dia jak z knihovny m\u00e9di\u00ed, tak i ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?", - "MessageValueNotCorrect": "Zadan\u00e1 hodnota nen\u00ed spr\u00e1vn\u00e1. Pros\u00edm zkuste to znovu.", "MessageItemSaved": "Polo\u017eka ulo\u017eena.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Ne\u017e budete pokra\u010dovat, p\u0159ijm\u011bte pros\u00edm smluvn\u00ed podm\u00ednky.", "OptionOff": "Vypnout", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Nedostupn\u00fd obr\u00e1zek pozad\u00ed.", "MissingLogoImage": "Nedostupn\u00e9 logo", "MissingEpisode": "Chyb\u00ed epizoda.", - "OptionScreenshots": "Sn\u00edmky obrazovky", "OptionBackdrops": "Pozad\u00ed", "OptionImages": "Obr\u00e1zky", "OptionKeywords": "Kl\u00ed\u010dov\u00e1 slova", @@ -1642,10 +1494,6 @@ "OptionPeople": "Lid\u00e9", "OptionProductionLocations": "M\u00edsto v\u00fdroby", "OptionBirthLocation": "M\u00edsto narozen\u00ed", - "LabelAllChannels": "V\u0161echny kan\u00e1ly", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Zm\u011bna typu obsahu", "HeaderChangeFolderTypeHelp": "Chcete-li zm\u011bnit typ, vyjm\u011bte a znovu prohledejte knihovny s nov\u011b p\u0159i\u0159azen\u00fdm typem.", "HeaderAlert": "Upozorn\u011bn\u00ed", @@ -1658,12 +1506,11 @@ "TabAutoOrganize": "Auto-organizace", "TabPlugins": "Z\u00e1suvn\u00e9 moduly", "TabHelp": "N\u00e1pov\u011bda", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", + "ButtonFullscreen": "Cel\u00e1 obrazovka", + "ButtonAudioTracks": "Audio stopy", "ButtonQuality": "Kvalita", "HeaderNotifications": "Ozn\u00e1men\u00ed", "HeaderSelectPlayer": "V\u00fdb\u011br p\u0159ehr\u00e1va\u010de", - "MessageInternetExplorerWebm": "Pro dosa\u017een\u00ed nejlep\u0161\u00edch v\u00fdsledk\u016f s aplikac\u00ed Internet Explorer, nainstalujte z\u00e1suvn\u00fd modul pro p\u0159ehr\u00e1v\u00e1n\u00ed WebM.", "HeaderVideoError": "Chyba videa", "ButtonViewSeriesRecording": "Zobrazit nahr\u00e1vky seri\u00e1l\u016f", "HeaderSpecials": "Speci\u00e1ly", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "D\u00e9lka", "HeaderParentalRating": "Rodi\u010dovsk\u00e9 hodnocen\u00ed", "HeaderReleaseDate": "Datum vyd\u00e1n\u00ed", - "HeaderDateAdded": "P\u0159id\u00e1no", "HeaderSeries": "Seri\u00e1l:", "HeaderSeason": "Sez\u00f3na", "HeaderSeasonNumber": "\u010c\u00edslo sez\u00f3ny", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Odebrat um\u00edst\u011bn\u00ed media", "MessageConfirmRemoveMediaLocation": "Jste si jist, \u017ee chcete odstranit toto um\u00edst\u011bn\u00ed?", "LabelNewName": "Nov\u00fd n\u00e1zev:", - "HeaderAddMediaFolder": "P\u0159idat slo\u017eku medi\u00ed", - "HeaderAddMediaFolderHelp": "N\u00e1zev (Film\u016f, Hudby, Seri\u00e1l\u016f, atd.):", "HeaderRemoveMediaFolder": "Odebrat slo\u017eku m\u00e9di\u00ed", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "N\u00e1sleduj\u00edc\u00ed um\u00edst\u011bn\u00ed m\u00e9di\u00ed budou odstran\u011bna z knihovny Emby:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Jste si jist, \u017ee chcete odstranit tuto slo\u017eku m\u00e9di\u00ed?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Zm\u011bnit typ obsahu", "HeaderMediaLocations": "Slo\u017eky m\u00e9di\u00ed", "LabelContentTypeValue": "Typ obsahu: {0}", - "LabelPathSubstitutionHelp": "Voliteln\u00e9: Nahrazen\u00edm cest m\u016f\u017eete namapovat serverov\u00e9 cesty se sd\u00edlen\u00fdmi s\u00ed\u0165ov\u00fdmi slo\u017ekami, ke kter\u00fdm mohou klienti z\u00edskat p\u0159\u00edm\u00fd p\u0159\u00edstup pro p\u0159ehr\u00e1n\u00ed.", "FolderTypeUnset": "Nenastaveno (sm\u00ed\u0161en\u00fd obsah)", "BirthPlaceValue": "M\u00edsto narozen\u00ed: {0}", "DeathDateValue": "Zem\u0159el: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Webov\u00e9 str\u00e1nky", "ValueSeriesYearToPresent": "{0}-Sou\u010dasnost", "ValueAwards": "Ocen\u011bn\u00ed: {0}", - "ValueBudget": "Rozpo\u0159et: {0}", - "ValueRevenue": "P\u0159\u00edjem: {0}", "ValuePremiered": "Uvedeno {0}", "ValuePremieres": "Premi\u00e9ry {0}", "ValueStudio": "Studio: {0}", @@ -1800,12 +1641,12 @@ "MediaInfoLongitude": "Zem\u011bpisn\u00e1 d\u00e9lka", "MediaInfoShutterSpeed": "Rychlost uz\u00e1v\u011brky", "MediaInfoSoftware": "Software", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "Podobn\u00e9 polo\u017eky", "HeaderMovies": "Filmy", "HeaderAlbums": "Alba", "HeaderGames": "Hry", "HeaderBooks": "Knihy", - "HeaderEpisodes": "Episodes", + "HeaderEpisodes": "Epizody", "HeaderSeasons": "Sez\u00f3ny", "HeaderTracks": "Stopy", "HeaderItems": "Polo\u017eky", @@ -1846,15 +1687,10 @@ "MediaInfoRefFrames": "Ref sn\u00edmky", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Vyberte cestu k uvodn\u00edm vide\u016fm", - "HeaderRateAndReview": "Hodnocen\u00ed a recenze", "HeaderThankYou": "D\u011bkuji", - "MessageThankYouForYourReview": "D\u00edky za va\u0161\u00ed recenzi.", - "LabelYourRating": "Tv\u00e9 hodnocen\u00ed:", "LabelFullReview": "Cel\u00e1 recenze:", - "LabelShortRatingDescription": "Kr\u00e1tk\u00e9 shrnut\u00ed hodnocen\u00ed:", - "OptionIRecommendThisItem": "Doporu\u010duji tuto polo\u017eku", - "ReleaseYearValue": "Release year: {0}", - "OriginalAirDateValue": "Original air date: {0}", + "ReleaseYearValue": "Rok vyd\u00e1n\u00ed: {0}", + "OriginalAirDateValue": "Vys\u00edl\u00e1no: {0}", "WebClientTourContent": "Pod\u00edvejte se na sv\u00e9 ned\u00e1vno p\u0159idan\u00e1 m\u00e9dia, dal\u0161\u00ed epizody a dal\u0161\u00ed. Zelen\u00e9 kruhy ukazuj\u00ed, kolik nep\u0159ehran\u00fdch polo\u017eek m\u00e1te.", "WebClientTourMovies": "P\u0159ehr\u00e1vat filmy, uk\u00e1zky a dal\u0161\u00ed z jak\u00e9hokoliv za\u0159\u00edzen\u00ed pomoc\u00ed webov\u00e9ho prohl\u00ed\u017ee\u010de", "WebClientTourMouseOver": "Podr\u017ete ukazatel my\u0161i nad jak\u00fdmkoliv plak\u00e1tem pro rychl\u00fd p\u0159\u00edstup k d\u016fle\u017eit\u00fdm informac\u00edm", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Snadn\u00e1 spr\u00e1va dlouhotrvaj\u00edc\u00edch operac\u00ed pomoc\u00ed pl\u00e1nova\u010de \u00faloh. Rozhodn\u011bte, kdy pob\u011b\u017e\u00ed, a jak \u010dasto.", "DashboardTourMobile": "Emby Server dashboard funguje skv\u011ble na chytr\u00fdch telefonech a tabletech. Spravujte sv\u016fj server ze dlan\u011b kdykoliv a kdekoliv.", "DashboardTourSync": "Synchronizujte va\u0161e osobn\u00ed m\u00e9dia do sv\u00fdch za\u0159\u00edzen\u00ed pro offline prohl\u00ed\u017een\u00ed.", - "MessageRefreshQueued": "Obnoven\u00ed za\u0159azeno", "TabExtras": "Extras", "HeaderUploadImage": "Upload obr\u00e1zku", "DeviceLastUsedByUserName": "Posledn\u011b pou\u017eil {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Synchronizovat m\u00e9dia", "HeaderCancelSyncJob": "Zru\u0161it synchronizaci", "CancelSyncJobConfirmation": "Zru\u0161en\u00edm synchroniza\u010dn\u00edch \u00faloh budou odstran\u011bna synchronizovan\u00e1 m\u00e9dia ze za\u0159\u00edzen\u00ed b\u011bhem p\u0159\u00ed\u0161t\u00edho synchroniza\u010dn\u00edho procesu. Jste si jisti, \u017ee chcete pokra\u010dovat?", - "MessagePleaseSelectDeviceToSyncTo": "Vyberte za\u0159\u00edzen\u00ed k synchronizaci.", - "MessageSyncJobCreated": "\u00daloha Sync vytvo\u0159ena", "LabelQuality": "Kvalita:", - "OptionAutomaticallySyncNewContent": "Automaticky synchronizovat nov\u00fd obsah", - "OptionAutomaticallySyncNewContentHelp": "Nov\u00fd p\u0159idan\u00fd obsah bude automaticky synchronizov\u00e1n s va\u0161\u00edm za\u0159\u00edzen\u00edm.", "MessageBookPluginRequired": "Vy\u017eaduje instalaci Bookshelf z\u00e1suvn\u00e9ho modulu", "MessageGamePluginRequired": "Vy\u017eaduje instalaci z\u00e1suvn\u00e9ho modulu GameBrowser", "MessageUnsetContentHelp": "Obsah je zobrazen pomoc\u00ed prost\u00fdch slo\u017eek. Pro dosa\u017een\u00ed nejlep\u0161\u00edch v\u00fdsledk\u016f pomoc\u00ed spr\u00e1vce metadat nastavte typy obsahu pod-slo\u017eek.", @@ -1941,19 +1772,12 @@ "TabScenes": "Sc\u00e9ny", "HeaderUnlockApp": "Odemknout aplikaci", "HeaderUnlockSync": "Odemknout synchronizaci Emby", - "MessageUnlockAppWithPurchaseOrSupporter": "Odemknout tuto funkci pomoc\u00ed jednor\u00e1zov\u00e9 platby, nebo pomoc\u00ed aktivace p\u0159edplatn\u00e9ho Emby Premiere.", - "MessageUnlockAppWithSupporter": "Odemknout tuto funkci pomoc\u00ed aktivn\u00edho p\u0159edplatn\u00e9ho Emby Premiere.", - "MessageToValidateSupporter": "Pokud m\u00e1te aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere, ujist\u011bte se, \u017ee m\u00e1te nastaven Emby Premiere v panelu Nastaven\u00ed pod N\u00e1pov\u011bda -> Emby Premiere.", "MessagePaymentServicesUnavailable": "Platebn\u00ed slu\u017eby nejsou v sou\u010dasn\u00e9 dob\u011b k dispozici. Pros\u00edm zkuste to pozd\u011bji znovu.", - "ButtonUnlockWithPurchase": "Odemkn\u011bte pomoc\u00ed koup\u011b", - "ButtonUnlockPrice": "Odemknout {0} ", - "MessageLiveTvGuideRequiresUnlock": "Live TV programov\u00fd pr\u016fvodce je v sou\u010dasn\u00e9 dob\u011b omezen na {0} kan\u00e1l\u016f. Odemknut\u00edm se m\u016f\u017eete nau\u010dit jak si u\u017e\u00edt tuto funkci.", "OptionEnableFullscreen": "Povolit celou obrazovku", "ButtonServer": "Server", "HeaderLibrary": "Knihovna", "HeaderMedia": "M\u00e9dia", - "HeaderSaySomethingLike": "Vyslovte n\u011bco jako...", - "NoResultsFound": "No results found.", + "NoResultsFound": "\u017d\u00e1dn\u00e9 v\u00fdsledky.", "ButtonManageServer": "Spr\u00e1vce serveru", "ButtonPreferences": "P\u0159edvolby", "ButtonViewArtist": "Zobrazit \u00fam\u011blce", @@ -1963,7 +1787,7 @@ "ErrorMessageUsernameInUse": "U\u017eivatelsk\u00e9 jm\u00e9no se ji\u017e pou\u017e\u00edv\u00e1. Pros\u00edm, vyberte nov\u00fd n\u00e1zev a zkuste to znovu.", "ErrorMessageEmailInUse": "E-mailov\u00e1 adresa je ji\u017e pou\u017e\u00edv\u00e1na. Zadejte novou e-mailovou adresu a zkuste to znovu, nebo pou\u017eijte funkci zapomenut\u00e9ho hesla.", "MessageThankYouForConnectSignUp": "D\u011bkujeme za p\u0159ihl\u00e1\u0161en\u00ed se k Emby Connect. Dal\u0161\u00ed pokyny, jak potvrdit sv\u016fj nov\u00fd \u00fa\u010det, V\u00e1m budou zasl\u00e1ny na va\u0161\u00ed emailovou adresu. Pros\u00edm potvr\u010fte \u00fa\u010det a pak se vr\u00e1\u0165te pro p\u0159ihl\u00e1\u0161en\u00ed.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "MessageThankYouForConnectSignUpNoValidation": "D\u011bkujeme v\u00e1m za p\u0159ihl\u00e1\u0161en\u00ed se k Emby Connect! Nyn\u00ed budete vyzv\u00e1ni k p\u0159ihl\u00e1\u0161en\u00ed s informacemi Emby Connect.", "ButtonShare": "Sd\u00edlet", "HeaderConfirm": "Souhlas", "MessageConfirmDeleteTunerDevice": "Jste si jisti, \u017ee chcete smazat tento p\u0159\u00edstroj?", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Vytvo\u0159it \u00fa\u010det v {0}", "ErrorPleaseSelectLineup": "Vyberte seskupen\u00ed a zkuste to znovu. Pokud nejsou k dispozici \u017e\u00e1dn\u00e9 seskupen\u00ed, pak pros\u00edm zkontrolujte, zda va\u0161e u\u017eivatelsk\u00e9 jm\u00e9no, heslo a po\u0161tovn\u00ed sm\u011brovac\u00ed \u010d\u00edslo je spr\u00e1vn\u00e9.s", "HeaderTryEmbyPremiere": "Zkuste Emby Premiere", - "ButtonBecomeSupporter": "Z\u00edskat Emby Premiere", - "ButtonClosePlayVideo": "Zav\u0159\u00edt a p\u0159ehr\u00e1t m\u00e1 m\u00e9dia", - "MessageDidYouKnowCinemaMode": "Vyberte za\u0159azen\u00ed a zkuste to znovu. Pokud nejsou k dispozici \u017e\u00e1dn\u00e1 za\u0159azen\u00ed, pak pros\u00edm zkontrolujte, zda va\u0161e u\u017eivatelsk\u00e9 jm\u00e9no, heslo a po\u0161tovn\u00ed sm\u011brovac\u00ed \u010d\u00edslo je spr\u00e1vn\u00e9.", - "MessageDidYouKnowCinemaMode2": "S re\u017eimem Kino budou p\u0159ed hlavn\u00edm programem p\u0159ehr\u00e1ny trailery a u\u017eivatelsk\u00e1 intra.", "OptionEnableDisplayMirroring": "Povolit zrcadlen\u00ed zobrazen\u00ed", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", + "HeaderSyncRequiresSupporterMembership": "Synchronizace vy\u017eaduje aktivn\u00ed p\u0159ihl\u00e1\u0161en\u00ed k Emby Premiere.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Synchronizace vy\u017eaduje p\u0159ipojen\u00ed k Emby serveru s aktivn\u00edm p\u0159edplatn\u00fdm Emby Premiere.", "ErrorValidatingSupporterInfo": "Do\u0161lo k chyb\u011b p\u0159i ov\u011b\u0159ov\u00e1n\u00ed informac\u00ed o va\u0161em p\u0159edplatn\u00e9m Emby Premiere. Pros\u00edm zkuste to pozd\u011bji.", "LabelLocalSyncStatusValue": "Stav: {0}", "MessageSyncStarted": "Sync zapo\u010dat", - "NoSlideshowContentFound": "Pro slideshow nebyly nalezeny \u017e\u00e1dn\u00e9 obr\u00e1zky.", - "OptionPhotoSlideshow": "Foto slideshow", "OptionBackdropSlideshow": "Slideshow pro pozad\u00ed", "HeaderTopPlugins": "Nejl\u00e9pe hodnocen\u00e9 z\u00e1suvn\u00e9 moduly", "ButtonOther": "Dal\u0161\u00ed", @@ -1996,58 +1814,38 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "Pro dal\u0161\u00ed mo\u017enosti poskytovatele Live TV, klikn\u011bte na z\u00e1lo\u017eku Extern\u00ed slu\u017eby.", "ButtonGuide": "Pr\u016fvodce", - "ButtonRecordedTv": "TV nahr\u00e1vky", "ConfirmEndPlayerSession": "Chcete zav\u0159\u00edt Emby na za\u0159\u00edzen\u00ed?", "ButtonYes": "Ano", "AddUser": "P\u0159idat u\u017eivatele", "ButtonNo": "Ne", - "ButtonRestorePreviousPurchase": "Obnovit n\u00e1kup", - "AlreadyPaid": "U\u017e jste provedli platbu?", - "AlreadyPaidHelp1": "Pokud jste ji\u017e zaplatili star\u0161\u00ed verzi Media Browser pro Android, nemus\u00edte platit znovu, aby jste aktivovali tuto aplikaci. Kliknut\u00edm na tla\u010d\u00edtko OK n\u00e1m po\u0161lete e-mail na {0} a my aktivujeme Va\u0161e p\u0159edplatn\u00e9.", - "AlreadyPaidHelp2": "Vlastn\u00edte Emby Premiere? Jen stornujte toto dialogov\u00e9 okno, nastavte Emby Premiere v ovl\u00e1dac\u00edm panelu Emby Server N\u00e1pov\u011bda -> Emby Premiere, a funkce bude automaticky odblokov\u00e1na.", "ButtonNowPlaying": "Nyn\u00ed je p\u0159ehr\u00e1v\u00e1no", "HeaderLatestMovies": "Posledn\u00ed filmy", - "EmbyPremiereMonthly": "M\u011bs\u00ed\u010dn\u00ed Emby Premiere", - "EmbyPremiereMonthlyWithPrice": "M\u011bs\u00ed\u010dn\u00ed Emby Premiere {0}", "HeaderEmailAddress": "E-mailov\u00e1 adresa", - "TextPleaseEnterYourEmailAddressForSubscription": "Vlo\u017ete e-mailovou adresu, pros\u00edm.", "LoginDisclaimer": "Emby je navr\u017een tak, aby v\u00e1m pomohl spravovat sv\u00e9 osobn\u00ed knihovny m\u00e9di\u00ed, jako jsou dom\u00e1c\u00ed videa a fotografie. P\u0159e\u010dt\u011bte si pros\u00edm na\u0161e podm\u00ednky pou\u017eit\u00ed. Pou\u017e\u00edv\u00e1n\u00edm jak\u00e9hokoli softwaru Emby souhlas\u00edte s t\u011bmito podm\u00ednkami.", "TermsOfUse": "Podm\u00ednky pou\u017eit\u00ed", "NumLocationsValue": "{0} slo\u017eky", "ButtonAddMediaLibrary": "P\u0159idat knihovnu m\u00e9di\u00ed", "ButtonManageFolders": "Spr\u00e1va slo\u017eek", - "MessageTryMicrosoftEdge": "Pro lep\u0161\u00ed z\u00e1\u017eitek na syst\u00e9mu Windows 10, zkuste nov\u00fd prohl\u00ed\u017ee\u010d Microsoft EDGE.", - "MessageTryModernBrowser": "Pro lep\u0161\u00ed z\u00e1\u017eitek na Windows, zkuste modern\u00ed webov\u00fd prohl\u00ed\u017ee\u010d, jako Google Chrome, Firefox nebo Operu", "ErrorAddingListingsToSchedulesDirect": "Do\u0161lo k chyb\u011b p\u0159i p\u0159id\u00e1n\u00ed sestavy do \u00fa\u010dtu va\u0161eho Direct pl\u00e1nova\u010de. Direct pl\u00e1nova\u010d umo\u017e\u0148uje pouze omezen\u00fd po\u010det sestav na \u00fa\u010det. Mo\u017en\u00e1 se budete muset p\u0159ihl\u00e1sit do webov\u00fdch str\u00e1nek Direct pl\u00e1nova\u010de a p\u0159ed pokra\u010dov\u00e1n\u00edm odstranit ostatn\u00ed v\u00fdpisy ze sv\u00e9ho \u00fa\u010dtu.", "PleaseAddAtLeastOneFolder": "P\u0159idejte pros\u00edm nejm\u00e9n\u011b jednu slo\u017eku do t\u00e9to knihovny pomoc\u00ed tla\u010d\u00edtka P\u0159idat.", "ErrorAddingMediaPathToVirtualFolder": "Nastala chyba p\u0159i p\u0159id\u00e1v\u00e1n\u00ed cesty k m\u00e9di\u00edm. Zkontrolujte zda zadan\u00e1 slo\u017eka je validn\u00ed a Emby Server m\u00e1 k t\u00e9to slo\u017ece p\u0159\u00edstup.", "ErrorRemovingEmbyConnectAccount": "Nastala chyba p\u0159i odebr\u00e1n\u00ed \u00fa\u010dtu Emby Connect. Zkontrolujte zda m\u00e1te aktivn\u00ed internetov\u00e9 p\u0159ipojen\u00ed a zkuste znovu.", "ErrorAddingEmbyConnectAccount1": "Nastala chyba p\u0159i p\u0159id\u00e1v\u00e1n\u00ed \u00fa\u010dtu Emby Connect. Opravdu m\u00e1te vytvo\u0159en \u00fa\u010det u Emby? P\u0159ihlaste se zde {0}.", "ErrorAddingEmbyConnectAccount2": "Pros\u00edm, ujist\u011bte se, \u017ee \u00fa\u010det Emby byl aktivov\u00e1n podle pokyn\u016f v e-mailu zaslan\u00e9m po vytvo\u0159en\u00ed \u00fa\u010dtu. Pokud jste neobdr\u017eeli e-mail, pak pros\u00edm po\u0161lete e-mail na adresu {0} z e-mailov\u00e9 adresy pou\u017eit\u00fd na \u00fa\u010dtu Emby.", - "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "ErrorAddingEmbyConnectAccount3": "\u00da\u010det Emby je ji\u017e propojen s existuj\u00edc\u00edm m\u00edstn\u00edm u\u017eivatelem. \u00da\u010det Emby m\u016f\u017ee b\u00fdt spojen pouze s jedn\u00edm lok\u00e1ln\u00edm u\u017eivatelem sou\u010dasn\u011b.", "HeaderFavoriteArtists": "Obl\u00edben\u00ed \u00fam\u011blci", "HeaderFavoriteSongs": "Obl\u00edben\u00e1 hudba", "HeaderConfirmPluginInstallation": "Potvrzen\u00ed instalace z\u00e1suvn\u00e9ho modulu", "PleaseConfirmPluginInstallation": "Pro potvrzen\u00ed, \u017ee jste si p\u0159e\u010detli text v\u00fd\u0161e a chcete pokra\u010dovat v instalaci z\u00e1suvn\u00fdch modul\u016f, klikn\u011bte na tla\u010d\u00edtko OK.", "MessagePluginInstallDisclaimer": "Zasuvn\u00e9 moduly vytvo\u0159en\u00e9 \u010dleny Emby komunity jsou skv\u011bl\u00fd zp\u016fsob, jak zv\u00fd\u0161it sv\u016fj Emby pro\u017eitek pomoc\u00ed dopl\u0148kov\u00fdch funkc\u00ed :-) P\u0159ed instalac\u00ed, se pros\u00edm seznamte se v\u0161emi dopady, kter\u00e9 mohou m\u00edt na Emby Server, jako je nap\u0159\u00edklad del\u0161\u00ed prohled\u00e1v\u00e1n\u00ed knihovny, dal\u0161\u00ed zpracov\u00e1n\u00ed na pozad\u00ed, a sn\u00ed\u017een\u00ed stability syst\u00e9mu.", - "ButtonPlayOneMinute": "P\u0159ehr\u00e1t jednu minutu", - "ThankYouForTryingEnjoyOneMinute": "Pros\u00edm zkuste jednu minutu p\u0159ehr\u00e1v\u00e1n\u00ed. D\u011bkujeme v\u00e1m za vyzkou\u0161en\u00ed Emby.", - "HeaderTryPlayback": "Zkusit playback", - "HeaderBenefitsEmbyPremiere": "V\u00fdhody Emby Premiere", - "MobileSyncFeatureDescription": "Synchronizovat m\u00e9dia do va\u0161ich chytr\u00fdch telefon\u016f a tablet\u016f pro snadn\u00fd p\u0159\u00edstup offline.", - "CoverArtFeatureDescription": "Cover Art vytv\u00e1\u0159\u00ed z\u00e1bavn\u00e9 obaly a dal\u0161\u00ed mo\u017enosti \u00faprav, kter\u00e9 v\u00e1m pomohou p\u0159izp\u016fsobit va\u0161e medi\u00e1ln\u00ed obr\u00e1zky.", "HeaderMobileSync": "Synchronizace s mobilem", "HeaderCloudSync": "Synchronizace s Cloudem", - "CloudSyncFeatureDescription": "Synchronizujte va\u0161e m\u00e9dia na cloud pro jednodu\u0161\u0161\u00ed z\u00e1lohov\u00e1n\u00ed, archivaci a konverzi.", "HeaderFreeApps": "Emby Apps zdarma", - "FreeAppsFeatureDescription": "U\u017eijte si zdarma v\u00fdb\u011br Emby aplikac\u00ed pro va\u0161e za\u0159\u00edzen\u00ed.", - "CinemaModeFeatureDescription": "S re\u017eimem Kino z\u00edskate funkci, kter\u00e1 p\u0159ed hlavn\u00edm programem p\u0159ehraje trailery a u\u017eivatelsk\u00e1 intra.", "CoverArt": "Obal", "ButtonOff": "Vypnout", "TitleHardwareAcceleration": "Hardwarov\u00e1 akcelerace", "HardwareAccelerationWarning": "Zapnut\u00ed hardwarov\u00e9 akcelerace m\u016f\u017ee zp\u016fsobit nestabilitu v n\u011bkter\u00fdch prost\u0159ed\u00edch. Ujist\u011bte se, \u017ee va\u0161e ovlada\u010de opera\u010dn\u00edho syst\u00e9mu a videa jsou pln\u011b aktu\u00e1ln\u00ed. M\u00e1te-li pot\u00ed\u017ee s p\u0159ehr\u00e1v\u00e1n\u00edm videa po zapnut\u00ed, budete muset zm\u011bnit nastaven\u00ed zp\u011bt na Auto.", "HeaderSelectCodecIntrosPath": "Vyberte cestu ke kodeku pro p\u0159edehry", - "ButtonAddMissingData": "P\u0159idat pouze chyb\u011bj\u00edc\u00ed data", "ValueExample": "13:00", "OptionEnableAnonymousUsageReporting": "Povolit anonymn\u00ed zpr\u00e1vy o vyu\u017eit\u00ed", "OptionEnableAnonymousUsageReportingHelp": "Dovolit Emby shroma\u017e\u010fovat anonymn\u00ed data, jako jsou instalovan\u00e9 dopl\u0148ky, \u010d\u00edsla verz\u00ed va\u0161ich aplikac\u00ed Emby apod. Tyto informace se pou\u017e\u00edvaj\u00ed pouze pro \u00fa\u010dely zlep\u0161en\u00ed softwaru.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (nepovinn\u00e9):", "LabelOptionalM3uUrlHelp": "N\u011bkter\u00e1 za\u0159\u00edzen\u00ed podporuj\u00edc\u00ed M3U v\u00fdpis kan\u00e1lu.", "TabResumeSettings": "Obnovit nastaven\u00ed", - "HowDidYouPay": "Jak chcete platit?", - "IHaveEmbyPremiere": "Ji\u017e m\u00e1m Emby Premiere", - "IPurchasedThisApp": "Tuto aplikaci m\u00e1m ji\u017e zaplacenu", "DrmChannelsNotImported": "Kan\u00e1l s DRM nebude importov\u00e1n", "LabelAllowHWTranscoding": "Povolit hardwarov\u00e9 p\u0159ek\u00f3dov\u00e1n\u00ed", "AllowHWTranscodingHelp": "Pokud nastav\u00edte, povol\u00edte tuneru p\u0159ek\u00f3dov\u00e1n\u00ed v re\u00e1ln\u00e9m \u010dase. M\u016f\u017ee sn\u00ed\u017eit z\u00e1t\u011b\u017e p\u0159ek\u00f3dov\u00e1v\u00e1n\u00ed po\u017eadovan\u00e9 Emby Serverem.", @@ -2070,77 +1865,85 @@ "Yesterday": "V\u010dera", "DownloadImagesInAdvanceWarning": "St\u00e1hnut\u00ed v\u0161ech obr\u00e1zk\u016f p\u0159edem m\u016f\u017ee prodlou\u017eit skenov\u00e1n\u00ed knihovny.", "MetadataSettingChangeHelp": "Zm\u011bna nastaven\u00ed metadat bude m\u00edt vliv na nov\u00fd obsah, kter\u00fd bude p\u0159id\u00e1v\u00e1n. Chcete-li aktualizovat st\u00e1vaj\u00edc\u00ed obsah, otev\u0159te obrazovku s detailem a klepn\u011bte na tla\u010d\u00edtko Aktualizovat, nebo prove\u010fte hromadnou aktualizaci pomoc\u00ed spr\u00e1vce metadat.", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", - "HeaderHealthMonitor": "Health Monitor", - "HealthMonitorNoAlerts": "There are no active alerts.", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "VisualLoginFormHelp": "Select a user or sign in manually", - "LabelSportsCategories": "Sports categories:", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "LabelNewsCategories": "News categories:", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "LabelKidsCategories": "Children's categories:", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "LabelMovieCategories": "Movie categories:", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", - "TitleHostingSettings": "Hosting Settings", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "MapChannels": "Map Channels", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegVersion": "FFmpeg version:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "DownloadFFmpeg": "Download FFmpeg", - "FFmpegSuggestedDownload": "Suggested download: {0}", - "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", - "OptionUseSystemInstalledVersion": "Use system installed version", - "OptionUseMyCustomVersion": "Use a custom version", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "XmlTvPremiere": "By default, Emby will import {0} hours of guide data. Importing unlimited data requires an active Emby Premiere subscription.", - "MoreFromValue": "More from {0}", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "MakeAvailableOffline": "Make available offline", - "ConfirmRemoveDownload": "Remove download?", - "RemoveDownload": "Remove download", - "SyncToOtherDevices": "Sync to other devices", - "ManageOfflineDownloads": "Manage offline downloads", - "MessageDownloadScheduled": "Download scheduled", - "RememberMe": "Remember me", - "HeaderOfflineSync": "Offline Sync", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", - "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", - "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", + "OptionConvertRecordingPreserveAudio": "Zachovat p\u016fvodn\u00ed zvuk p\u0159i konverzi nahr\u00e1vky (pokud je to mo\u017en\u00e9)", + "OptionConvertRecordingPreserveAudioHelp": "M\u016f\u017ee poskytnout lep\u0161\u00ed zvuk, ale m\u016f\u017ee vy\u017eadovat transk\u00f3dov\u00e1n\u00ed p\u0159i p\u0159ehr\u00e1v\u00e1n\u00ed na n\u011bkter\u00fdch za\u0159\u00edzen\u00edch.", + "OptionConvertRecordingPreserveVideo": "Zachovat origin\u00e1ln\u00ed video p\u0159i konverzi nahr\u00e1vek", + "OptionConvertRecordingPreserveVideoHelp": "M\u016f\u017ee poskytnout lep\u0161\u00ed kvalitu videa, ale bude vy\u017eadovat transk\u00f3dov\u00e1n\u00ed p\u0159i p\u0159ehr\u00e1v\u00e1n\u00ed na n\u011bkter\u00fdch za\u0159\u00edzen\u00edch.", + "AddItemToCollectionHelp": "P\u0159idat polo\u017eky do kolekce jejich vyhled\u00e1n\u00edm a pou\u017eit\u00edm prav\u00e9ho tla\u010d\u00edtka my\u0161i nebo klepnut\u00edm na tla\u010d\u00edtko menu - p\u0159idat do sb\u00edrky.", + "HeaderHealthMonitor": "Konrola zdrav\u00ed", + "HealthMonitorNoAlerts": "Nejsou \u017e\u00e1dn\u00e9 aktivn\u00ed upozorn\u011bn\u00ed.", + "RecordingPathChangeMessage": "Zm\u011bna z\u00e1znamov\u00e9 slo\u017eky automaticky nep\u0159esune st\u00e1vaj\u00edc\u00ed z\u00e1znamy ze star\u00e9ho um\u00edst\u011bn\u00ed do nov\u00e9ho. Budete muset p\u0159esunout ru\u010dn\u011b, pokud je to \u017e\u00e1douc\u00ed.", + "VisualLoginFormHelp": "Vyberte u\u017eivatele, nebo se p\u0159ihla\u0161te manu\u00e1ln\u011b.", + "LabelSportsCategories": "Sportovn\u00ed kategorie:", + "XmlTvSportsCategoriesHelp": "Programy s t\u011bmito kategoriemi budou zobrazeny jako sportovn\u00ed po\u0159ady. V\u00edce kategori\u00ed odd\u011blte \"|\".", + "LabelNewsCategories": "Nov\u00e9 kategorie:", + "XmlTvNewsCategoriesHelp": "Programy s t\u011bmito kategoriemi budou zobrazeny jako zpravodajsk\u00e9 po\u0159ady. V\u00edce kategori\u00ed odd\u011blte \"|\".", + "LabelKidsCategories": "D\u011btsk\u00e9 kategorie:", + "XmlTvKidsCategoriesHelp": "Programy s t\u011bmito kategoriemi budou zobrazeny jako programy pro d\u011bti. V\u00edce kategori\u00ed odd\u011blte \"|\".", + "LabelMovieCategories": "Filmov\u00e9 kategorie:", + "XmlTvMovieCategoriesHelp": "Programy s t\u011bmito kategoriemi budou zobrazeny jako filmy. V\u00edce kategori\u00ed odd\u011blte \"|\".", + "XmlTvPathHelp": "Cesta ke XML tv souboru. Emby bude \u010d\u00edst tento soubor a pravideln\u011b kontrolovat dostupnost aktualizac\u00ed. Jste zodpov\u011bdn\u00fd za vytv\u00e1\u0159en\u00ed a aktualizaci souboru.", + "LabelBindToLocalNetworkAddress": "V\u00e1zat na m\u00edstn\u00ed s\u00ed\u0165ovou adresu:", + "LabelBindToLocalNetworkAddressHelp": "Voliteln\u00e9. P\u0159epsat lok\u00e1ln\u00ed IP adresu vazanou na http server. Pokud je ponech\u00e1no pr\u00e1zdn\u00e9, server se sv\u00e1\u017ee ke v\u0161em dostupn\u00fdm adres\u00e1m (aplikace bude dostupn\u00e1 na v\u0161ech s\u00ed\u0165ov\u00fdch za\u0159\u00edzen\u00ed, kter\u00e9 server nab\u00edz\u00ed). Zm\u011bna t\u00e9to hodnoty vy\u017eaduje restartov\u00e1n\u00ed Emby Serveru.", + "TitleHostingSettings": "Nastaven\u00ed hostingu", + "SettingsWarning": "Zm\u011bna t\u011bchto hodnot m\u016f\u017ee zp\u016fsobit nestabilitu nebo selh\u00e1n\u00ed p\u0159ipojen\u00ed. Pokud naraz\u00edte na n\u011bjak\u00e9 probl\u00e9my, doporu\u010dujeme jej zm\u011bnit zp\u011bt na v\u00fdchoz\u00ed hodnotu.", + "MapChannels": "Mapa kan\u00e1l\u016f", + "LabelffmpegPath": "FFmpeg - cesta:", + "LabelffmpegVersion": "FFmpeg - verze:", + "LabelffmpegPathHelp": "Cesta k souboru aplikace ffmpeg, nebo slo\u017eka obsahuj\u00edc\u00ed aplikaci ffmpeg.", + "SetupFFmpeg": "Nastaven\u00ed FFmpeg", + "SetupFFmpegHelp": "Emby m\u016f\u017ee vy\u017eadovat knihovnu nebo aplikaci pro konverzi ur\u010dit\u00fdch typ\u016f m\u00e9di\u00ed. Existuje mnoho r\u016fzn\u00fdch aplikac\u00ed, nicm\u00e9n\u011b, Emby byla testov\u00e1na pro pr\u00e1ci s ffmpeg. Emby nen\u00ed nijak spojen s ffmpeg, jeho vlastnictv\u00edm, k\u00f3dem nebo distribuc\u00ed.", + "EnterFFmpegLocation": "Vlo\u017e cestu k FFmpeg", + "DownloadFFmpeg": "St\u00e1hni FFmpeg", + "FFmpegSuggestedDownload": "Doporu\u010den\u00e9 sta\u017een\u00ed: {0}", + "UnzipFFmpegFile": "Rozbalte sta\u017een\u00fd soubor do slo\u017eky dle vlastn\u00edho v\u00fdb\u011bru.", + "OptionUseSystemInstalledVersion": "Pou\u017eit\u00ed syst\u00e9movou verzi", + "OptionUseMyCustomVersion": "Pou\u017e\u00edt vlastn\u00ed verzi", + "FFmpegSavePathNotFound": "Nepoda\u0159ilo se n\u00e1m naj\u00edt FFmpeg pomoc\u00ed cesty, kterou jste zadali. FFprobe je tak\u00e9 zapot\u0159eb\u00ed a mus\u00ed existovat ve stejn\u00e9 slo\u017ece. Tyto aplikace jsou obvykle instalov\u00e1ny spole\u010dn\u011b ve stejn\u00e9 slo\u017ece. Zkontrolujte cestu a zkuste to znovu.", + "XmlTvPremiere": "Ve v\u00fdchoz\u00edm nastaven\u00ed Emby bude importovat dat pr\u016fvodce {0} hodin. Neomezen\u00fd import dat, vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.", + "MoreFromValue": "V\u00edce z {0}", + "OptionSaveMetadataAsHiddenHelp": "Zm\u011bna bude platit pro nov\u011b ulo\u017een\u00e1 metadata do budoucna. Existuj\u00edc\u00ed soubory metadat budou aktualizov\u00e1ny p\u0159\u00ed\u0161t\u011b, jakmile budou ulo\u017eeny Emby Serverem.", + "EnablePhotos": "Povolit fotky", + "EnablePhotosHelp": "Fotografie budou detekov\u00e1ny a zobrazeny spolu s dal\u0161\u00edmi multimedi\u00e1ln\u00edmi soubory.", + "MakeAvailableOffline": "Zp\u0159\u00edstupnit offline", + "ConfirmRemoveDownload": "Odebrat sta\u017een\u00ed?", + "RemoveDownload": "Odebrat sta\u017een\u00ed?", + "SyncToOtherDevices": "Synchronizovat na dal\u0161\u00ed za\u0159\u00edzen\u00ed", + "ManageOfflineDownloads": "Spravovat offline soubory ke sta\u017een\u00ed", + "MessageDownloadScheduled": "Sta\u017een\u00ed napl\u00e1nov\u00e1no", + "RememberMe": "Zapamatuj si m\u011b", + "HeaderOfflineSync": "Offline synchronizace", + "LabelMaxAudioFileBitrate": "Maxim\u00e1ln\u00ed audio datov\u00fd tok:", + "LabelMaxAudioFileBitrateHelp": "Zvukov\u00e9 soubory s vy\u0161\u0161\u00edm datov\u00fdm tokem budou p\u0159evedeny dle Emby Server. Vyberte vy\u0161\u0161\u00ed hodnotu pro lep\u0161\u00ed kvalitu, nebo pro zachov\u00e1n\u00ed dostatku \u00falo\u017en\u00e9ho prostoru, vyberte ni\u017e\u0161\u00ed hodnotu.", + "LabelVaapiDevice": "VA API Za\u0159\u00edzen\u00ed", + "LabelVaapiDeviceHelp": "Toto je p\u0159ekreslovac\u00ed node, kter\u00fd je pou\u017eit pro hardwarovou akceleraci.", + "HowToConnectFromEmbyApps": "Jak se p\u0159ipojit z aplikac\u00ed Emby", + "MessageFolderRipPlaybackExperimental": "Podpora pro p\u0159ehr\u00e1v\u00e1n\u00ed slo\u017eky RIP a ISO obraz\u016f v t\u00e9to aplikaci je pouze experiment\u00e1ln\u00ed. Pro dosa\u017een\u00ed nejlep\u0161\u00edch v\u00fdsledk\u016f, zkuste aplikaci Emby, kter\u00e1 podporuje tyto form\u00e1ty nativn\u011b, nebo pomoc\u00ed b\u011b\u017en\u00e9ho video p\u0159ehr\u00e1va\u010de.", + "OptionExtractChapterImage": "Povolit extrakci obr\u00e1zk\u016f z videa", + "Downloads": "Sta\u017een\u00ed", "LabelEnableDebugLogging": "Povolit z\u00e1znam pro lad\u011bn\u00ed", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", - "HeaderForKids": "For Kids", - "HeaderRecordingGroups": "Recording Groups", - "LabelConvertRecordingsTo": "Convert recordings to:", - "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", + "OptionEnableExternalContentInSuggestions": "Aktivovat extern\u00ed obsah v n\u00e1vrz\u00edch", + "OptionEnableExternalContentInSuggestionsHelp": "Povolit internetov\u00e9 upout\u00e1vky a \u017eiv\u00e9 televizn\u00ed programy, kter\u00e9 maj\u00ed b\u00fdt zahrnuty do navr\u017een\u00e9ho obsahu.", + "LabelH264EncodingPreset": "P\u0159ednastaven\u00ed H264 k\u00f3dov\u00e1n\u00ed:", + "H264EncodingPresetHelp": "Vyber hodnotu faster ke zv\u00fd\u0161en\u00ed v\u00fdkonu, nebo slower ke zv\u00fd\u0161en\u00ed kvality.", + "LabelH264Crf": "H264 k\u00f3dov\u00e1n\u00ed CRF:", + "H264CrfHelp": "Constant Rate faktor (CRF) je v\u00fdchoz\u00edm nastaven\u00ed kvality pro kod\u00e9r x264. M\u016f\u017eete nastavit hodnoty mezi 0 a 51, kde ni\u017e\u0161\u00ed hodnoty vedou lep\u0161\u00ed kvalit\u011b (na \u00fakor v\u011bt\u0161\u00ed velikosti soubor\u016f). Rozumn\u00e9 hodnoty jsou mezi 18 a 28. V\u00fdchoz\u00ed hodnota pro x264 je 23, kter\u00fd m\u016f\u017eete pou\u017e\u00edt jako v\u00fdchoz\u00ed bod.", + "Sports": "Sport", + "HeaderForKids": "Pro d\u011bti", + "HeaderRecordingGroups": "Skupiny nahr\u00e1vek", + "LabelConvertRecordingsTo": "Konverze nahr\u00e1vek do:", + "HeaderUpcomingOnTV": "Bude vys\u00edl\u00e1no v TV", + "LabelOptionalNetworkPath": "(Nepovinn\u00e9) Sd\u00edlen\u00e1 s\u00ed\u0165ov\u00e1 slo\u017eka:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "P\u0159ehr\u00e1t s extern\u00edm p\u0159ehr\u00e1va\u010dem", - "WillRecord": "Will record", - "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "NotScheduledToRecord": "Nen\u00ed napl\u00e1nov\u00e1no nahr\u00e1v\u00e1n\u00ed", + "SynologyUpdateInstructions": "Pros\u00edm p\u0159ihla\u0161te se k DSM a aktualizujte Centrum Bal\u00ed\u010dk\u016f.", + "LatestFromLibrary": "Nejnov\u011bj\u0161\u00ed {0}", + "LabelMoviePrefix": "P\u0159edpona filmu:", + "LabelMoviePrefixHelp": "Je-li prefix aplikov\u00e1n na filmov\u00e9 tituly, zadejte jej zde, aby jej Emby spr\u00e1vn\u011b zpracoval.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/da.json b/dashboard-ui/strings/da.json index c916145bfd..fbf4fc6e5e 100644 --- a/dashboard-ui/strings/da.json +++ b/dashboard-ui/strings/da.json @@ -1,8 +1,6 @@ { - "LabelExit": "Afslut", - "LabelApiDocumentation": "Api dokumentation", - "LabelBrowseLibrary": "Gennemse bibliotek", - "LabelConfigureServer": "Konfigurer Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Forrige", "LabelFinish": "Slut", "LabelNext": "N\u00e6ste", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Dit fornavn", "MoreUsersCanBeAddedLater": "Flere brugere kan tilf\u00f8jes senere i betjeningspanelet.", "UserProfilesIntro": "Emby har indbygget underst\u00f8ttelse af brugerprofiler. Dette giver hver bruger sine egne indstillinger for visning, afspilningsstatus og for\u00e6ldrekontrol.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "Der er blevet installeret en Windows Service.", - "WindowsServiceIntro1": "Emby Server k\u00f8rer normalt som en desktop applikation med et statusbar ikon, men hvis du \u00f8nsker at k\u00f8re det som en baggrundsservice kan programmet startes fra windows services kontrolpanel istedet.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "Det er alt vi beh\u00f8ver for nu. Emby er begyndt at indsamle information omkring dit mediebibliotek. Tjek nogle af vores apps og klik derefter p\u00e5 F\u00e6rdig<\/b> for at se Server betjeningspanelet<\/b>.", "LabelConfigureSettings": "Konfigurer indstillinger", - "LabelEnableAutomaticPortMapping": "Aktiver automatisk port kortl\u00e6gning", - "LabelEnableAutomaticPortMappingHelp": "UPnP tillader automatisk routerkonfiguration for nem fjernadgang. Dette virker muligvis ikke med alle routere.", "HeaderTermsOfService": "Emby tjenestevilk\u00e5r", "MessagePleaseAcceptTermsOfService": "Accepter venligst tjenestevilk\u00e5rene og privatlivspolitikken f\u00f8r du forts\u00e6tter.", "OptionIAcceptTermsOfService": "Jeg accepterer tjenestevilk\u00e5rene", "ButtonPrivacyPolicy": "Privatlivspolitik", "ButtonTermsOfService": "Tjenestevilk\u00e5r", - "HeaderDeveloperOptions": "Indstillinger for udviklere", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Webklient kildesti:", - "LabelDashboardSourcePathHelp": "Hvis serveren k\u00f8rer fra kilden, specificer da stien til dashboard-ui mappen. Alle webklient-filer vil blive leveret fra denne lokation.", "ButtonConvertMedia": "Konverter medie", "ButtonOrganize": "Organiser", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "For at tilf\u00f8je en bruger som ikke er angivet skal du f\u00f8rst sammenk\u00e6de deres konto til Emby Connect fra deres brugers profilside.", "LabelPinCode": "Pinkode:", "OptionHideWatchedContentFromLatestMedia": "Skjul sete fra seneste", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Annuller", "ButtonExit": "Afslut", "ButtonNew": "Ny", + "OptionDev": "Dev (Ustabil)", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Lyd", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Indtast din pinkode for adgang", "ButtonConfigurePinCode": "Konfigurer pinkode", "RegisterWithPayPal": "Registrer med PayPal", - "HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode", "LabelSyncTempPath": "Sti for midlertidige filer:", "LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.", "LabelCustomCertificatePath": "Sti til eget certifikat:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Aktiver dette for at f\u00e5 filer med .zip og .rar endelser genkendt dom medier.", "LabelEnterConnectUserName": "Brugernavn eller email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Aktiver udvidede filmvisninger", - "LabelEnableEnhancedMoviesHelp": "Aktiver dette for at f\u00e5 vist film som mapper med trailere, medvirkende og andet relateret inhold.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "FIlm", @@ -84,7 +70,6 @@ "LabelContentType": "Indholdstype:", "TitleScheduledTasks": "Planlagte opgaver", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Tilf\u00f8j mediemappe", "LabelFolderType": "Mappetype:", "LabelCountry": "Land:", "LabelLanguage": "Sprog:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Lagring af illustrationer og metadata i mediemapper vil placerer dem et sted hvor de nemt kan redigeres.", "LabelDownloadInternetMetadata": "Hent illustrationer og metadata fra internettet", "LabelDownloadInternetMetadataHelp": "Emby Server kan hente informationer om dine medier, der kan give mere indholdsrige visninger.", - "TabPreferences": "Indstillinger", "TabPassword": "Adgangskode", "TabLibraryAccess": "Biblioteksadgang", "TabAccess": "Adgang", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Tillad adgang til alle biblioteker", "DeviceAccessHelp": "Dette g\u00e6lder kun for enheder, der kan identificeres unikt, og vil ikke forhindre adgang fra en browser. Ved at filtrere brugeres adgang fra enheder, kan du forhindre dem i at bruge nye enheder f\u00f8r de er blevet godkendt her.", "LabelDisplayMissingEpisodesWithinSeasons": "Vis manglende episoder i s\u00e6soner", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Vis endnu ikke sendte episoder i s\u00e6soner", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Indstillinger for videoafspilning", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Indstillinger for afspilning", "LabelAudioLanguagePreference": "Foretrukket lydsprog:", "LabelSubtitleLanguagePreference": "Foretrukket undertekstsprog:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 h\u00f8jde\/breddeforhold anbefalet. Kun JPG\/PNG.", "MessageNothingHere": "Her er ingenting.", "MessagePleaseEnsureInternetMetadata": "S\u00f8rg venligst for at hentning af metadata fra internettet er aktiveret.", - "TabSuggested": "Foresl\u00e5et", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Forslag", "TabLatest": "Seneste", "TabUpcoming": "Kommende", "TabShows": "Serier", "TabEpisodes": "Episoder", "TabGenres": "Genre", - "TabPeople": "Personer", "TabNetworks": "Netv\u00e6rk", "HeaderUsers": "Brugere", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Forfattere", "OptionProducers": "Producenter", "HeaderResume": "Fors\u00e6t", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "N\u00e6ste", "NoNextUpItemsMessage": "Ingen fundet. Se dine serier!", "HeaderLatestEpisodes": "Sidste episoder", @@ -185,6 +173,7 @@ "OptionPlayCount": "Gange afspillet", "OptionDatePlayed": "Dato for afspilning", "OptionDateAdded": "Dato for tilf\u00f8jelse", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album-artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Kan genoptages", "ScheduledTasksHelp": "Klik p\u00e5 en opgave for at tilpasse dens tidsplan", - "ScheduledTasksTitle": "Planlagte opgaver", "TabMyPlugins": "Mine tilf\u00f8jelser", "TabCatalog": "Katalog", "TitlePlugins": "Tilf\u00f8jelser", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Seneste sange", "HeaderRecentlyPlayed": "Afspillet for nyligt", "HeaderFrequentlyPlayed": "Ofte afspillet", - "DevBuildWarning": "Udviklerversionen er bleeding edge. Nye versioner bliver ofte udgivet og bliver ikke testet inden. Applikationen kan risikere at lukke ned og funktioner kan nogle gange slet ikke virke.", "LabelVideoType": "Video type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Nyttigt for private kontoer eller skjulte administratorkontoer. Brugeren skal logge ind ved at skive sit brugernavn og adgangskode.", "OptionDisableUser": "Deaktiver denne bruger", "OptionDisableUserHelp": "Hvis deaktiveret vil serveren ikke tillade forbindelser fra denne bruger. Eksisterende forbindelser vil blive afbrudt \u00f8jeblikkeligt.", - "HeaderAdvancedControl": "Avanceret kontrol", "LabelName": "Navn:", "ButtonHelp": "Hj\u00e6lp", "OptionAllowUserToManageServer": "Tillad denne bruger at administrere serveren", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheder er delte indtil en bruger begynder at bruge den.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Fjernstyring", "OptionMissingTmdbId": "Manglende Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Stier", "TabServer": "Server", "TabTranscoding": "Transkodning", - "TitleAdvanced": "Avanceret", "OptionRelease": "Officiel udgivelse", - "OptionBeta": "Beta", - "OptionDev": "Dev (Ustabil)", "LabelAllowServerAutoRestart": "Tillad serveren at genstarte automatisk for at p\u00e5f\u00f8re opdateringer", "LabelAllowServerAutoRestartHelp": "Serveren vil kun genstarte i inaktive perioder, n\u00e5r ingen brugere er aktive", "LabelRunServerAtStartup": "Start serveren ved opstart", @@ -330,11 +312,9 @@ "TabGames": "Spil", "TabMusic": "Musik", "TabOthers": "Andre", - "HeaderExtractChapterImagesFor": "Udtr\u00e6k kapitelbilleder for:", "OptionMovies": "Film", "OptionEpisodes": "Episoder", "OptionOtherVideos": "Andre videoer", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personlig api n\u00f8gle:", "LabelFanartApiKeyHelp": "Foresp\u00f8rgsler til fanart uden en personlig api n\u00f8gle returnerer resultater godkendt for over 7 dage siden. Med en personlig api n\u00f8gle falder dette til 48 timer, og hvis du er fanart VIP medlem falder dette yderligere til omkring 10 minutter.", "ExtractChapterImagesHelp": "Udtr\u00e6kning af kapitelbilleder lader klienter vise billeder i scenev\u00e6lgeren. Denne proces kan v\u00e6re langsom og processorbelastende, og kan kr\u00e6ve adskillige gigabytes harddiskplads. Processen k\u00f8rer som en natlig planlagt opgave, selv om dette kan \u00e6ndres i planl\u00e6ggeren. Det anbefales ikke at k\u00f8re denne proces i tidsrum hvor der er brugere p\u00e5 systemet.", @@ -350,15 +330,15 @@ "TabCollections": "Samlinger", "HeaderChannels": "Kanaler", "TabRecordings": "Optagelser", - "TabScheduled": "Planlagt", "TabSeries": "Serier", "TabFavorites": "Favoritter", "TabMyLibrary": "Mit bibliotek", "ButtonCancelRecording": "Annuller optagelse", - "LabelPrePaddingMinutes": "Start minutter f\u00f8r:", - "LabelPostPaddingMinutes": "Stop optagelse minutter efter:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "Vises nu", - "TabStatus": "Status", "TabSettings": "Indstillinger", "ButtonRefreshGuideData": "Opdater Guide data", "ButtonRefresh": "Opdater", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Optag fra alle kanaler", "OptionRecordAnytime": "Optag p\u00e5 ethverts tidspunkt", "OptionRecordOnlyNewEpisodes": "Optag kun nye episoder", - "HeaderRepeatingOptions": "Indstillinger for gentagelse", "HeaderDays": "Dage", "HeaderActiveRecordings": "Aktive optagelser", "HeaderLatestRecordings": "Seneste optagelse", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Nyeste spil", "HeaderRecentlyPlayedGames": "Spillet for nylig", "TabGameSystems": "Spilsystemer", - "TitleMediaLibrary": "Mediebibliotek", "TabFolders": "Mapper", "TabPathSubstitution": "Stisubstitution", "LabelSeasonZeroDisplayName": "S\u00e6son 0 vist navn:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Opdel versioner", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Mangler", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Stisubstitutioner bruges til at \u00e6ndre en sti p\u00e5 serveren til en sti klienterne kan tilg\u00e5. Ved at tillade klienterne direkte adgang til medier p\u00e5 serveren, kan de m\u00e5ske afpille dem direkte over netv\u00e6rket uden at skulle bruge serverens ressourcer til at streame og transkode dem.", - "HeaderFrom": "Fra", - "HeaderTo": "Til", - "LabelFrom": "Fra:", - "LabelTo": "Til:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Tilf\u00f8j substitution", "OptionSpecialEpisode": "S\u00e6rudsendelser", "OptionMissingEpisode": "Manglende episoder", "OptionUnairedEpisode": "Ikke sendte episoder", "OptionEpisodeSortName": "Navn for sortering af episoder", "OptionSeriesSortName": "Seriens navn", "OptionTvdbRating": "Tvdb bed\u00f8mmelse", - "EditCollectionItemsHelp": "Tilf\u00f8j eller fjern hvilken som helst film, serie, albums, bog eller spil, du har lyst til at tilf\u00f8je til denne samling.", "HeaderAddTitles": "Tilf\u00f8j titler", "LabelEnableDlnaPlayTo": "Aktiver DLNA \"Afspil Til\"", "LabelEnableDlnaPlayToHelp": "Emby kan finde enheder i dit netv\u00e6rk og tilbyde at kontrollere dem.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Systemprofiler", "CustomDlnaProfilesHelp": "Lav brugerdefinerede profiler til nye enheder eller for at overstyre en systemprofil.", "SystemDlnaProfilesHelp": "Systemprofiler kan ikke overskrives. \u00c6ndringer i en systemprofil vil blive gemt i en ny brugerdefineret profil.", - "TitleDashboard": "Betjeningspanel", "TabHome": "Hjem", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Medier anses om ikke afspillet, hvis de stoppes inden denne tid.", "LabelMaxResumePercentageHelp": "Medier anses som fuldt afspillet, hvis de stoppes efter denne tid.", "LabelMinResumeDurationHelp": "Medier med kortere afspilningstid en denne kan ikke forts\u00e6ttes.", - "TitleAutoOrganize": "Organiser automatisk", "TabActivityLog": "Aktivitetslog", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Organiser automatisk overv\u00e5ger de mapper, du henter til, og flytter filerne til dine mediemapper.", - "AutoOrganizeTvHelp": "TV-fil organisering vil kun tilf\u00f8je episoder til eksisterende serier. Der oprettes ikke mapper til nye serier.", "OptionEnableEpisodeOrganization": "Aktiver organisering af nye episoder.", "LabelWatchFolder": "Overv\u00e5get mappe:", "LabelWatchFolderHelp": "Serveren vil unders\u00f8ge denne mappe n\u00e5r den planlagte opgave 'Organiser nye mediefiler' k\u00f8rer.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "K\u00f8rende opgaver", "HeaderActiveDevices": "Aktive enheder", "HeaderPendingInstallations": "Ventende installationer", - "HeaderServerInformation": "Information om serveren", "ButtonRestartNow": "Genstart nu", "ButtonRestart": "Genstart", "ButtonShutdown": "Luk", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Indstillinger for visning", - "TabPlayTo": "Afspil til", "LabelEnableDlnaServer": "Aktiver DNLA server", "LabelEnableDlnaServerHelp": "Tillader UPnP enheder i dit netv\u00e6rk at gennemse og afspille Embys indhold.", "LabelEnableBlastAliveMessages": "Masseudsend 'i live' beskeder", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Angiver intervallet i sekunder mellem serverens 'i live' beskeder.", "LabelDefaultUser": "Standardbruger:", "LabelDefaultUserHelp": "Bestemmer hvilken brugers bibliotek der bliver vist p\u00e5 tilkoblede enheder. Dette kan \u00e6ndres ved at bruge profiler.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Serverindstillinger", "HeaderRequireManualLogin": "Kr\u00e6v manuel indtastning af brugernavn for:", "HeaderRequireManualLoginHelp": "N\u00e5r dette ikke bruges, kan klienter vise en loginsk\u00e6rm med billeder af brugerne.", "OptionOtherApps": "Andre apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Programopdatering tilg\u00e6ngelig", - "NotificationOptionApplicationUpdateInstalled": "Programopdatering installeret", - "NotificationOptionPluginUpdateInstalled": "Opdatering til plugin installeret", - "NotificationOptionPluginInstalled": "Plugin installeret", - "NotificationOptionPluginUninstalled": "Plugin afinstalleret", - "NotificationOptionVideoPlayback": "Videoafspilning startet", - "NotificationOptionAudioPlayback": "Lydafspilning startet", - "NotificationOptionGamePlayback": "Spilafspilning startet", - "NotificationOptionVideoPlaybackStopped": "Videoafspilning stoppet", - "NotificationOptionAudioPlaybackStopped": "Lydafspilning stoppet", - "NotificationOptionGamePlaybackStopped": "Spilafspilning stoppet", - "NotificationOptionTaskFailed": "Fejl i planlagt opgave", - "NotificationOptionInstallationFailed": "Fejl ved installation", - "NotificationOptionNewLibraryContent": "Nyt indhold tilf\u00f8jet", - "NotificationOptionCameraImageUploaded": "Kamerabillede tilf\u00f8jet", - "NotificationOptionUserLockedOut": "Bruger l\u00e5st", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Genstart af serveren p\u00e5kr\u00e6vet", "LabelNotificationEnabled": "Aktiver denne underretning", "LabelMonitorUsers": "Overv\u00e5g aktivitet fra:", "LabelSendNotificationToUsers": "Send underretning til:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Forrige", "LabelGroupMoviesIntoCollections": "Grupper film i samlinger", "LabelGroupMoviesIntoCollectionsHelp": "Film i samlinger vil blive vist som en samlet enhed i filmlister.", - "NotificationOptionPluginError": "Plugin fejl", "ButtonVolumeUp": "Volume +", "ButtonVolumeDown": "Volume -", "HeaderLatestMedia": "Seneste medier", "OptionNoSubtitles": "Ingen undertekster", - "OptionSpecialFeatures": "Specielle egenskaber", "HeaderCollections": "Samlinger", "LabelProfileCodecsHelp": "Adskil med komma. Kan efterlades tom for at g\u00e6lde for alle codecs.", "LabelProfileContainersHelp": "Adskil med komma. Kan efterlades tom for at g\u00e6lde for alle containere.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Ingen tilg\u00e6ngelige plugins.", "LabelDisplayPluginsFor": "Vis plugins til:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episodenavn", "LabelSeriesNamePlain": "Serienavn", "ValueSeriesNamePeriod": "Serie.navn", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Nummer p\u00e5 sidste episode", "HeaderTypeText": "Indtast tekst", "LabelTypeText": "Tekst", - "HeaderSearchForSubtitles": "S\u00f8g efter undertekster", - "MessageNoSubtitleSearchResultsFound": "Ingenting fundet.", "TabDisplay": "Visning", "TabLanguages": "Sprog", "TabAppSettings": "App-indstillinger", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "N\u00e5r dette er aktiveret vil der blive afspillet temasange mens man kigger i biblioteket.", "LabelEnableBackdropsHelp": "N\u00e5r dette er aktiveret vil der blive vist backdrops i baggrunden af nogle sider n\u00e5r man kigger i biblioteket.", "HeaderHomePage": "Hjemmeside", - "HeaderSettingsForThisDevice": "Indstillinger for denne enhed", "OptionAuto": "Auto", "OptionYes": "Ja", "OptionNo": "Nej", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Hjemmeside sektion 2", "LabelHomePageSection3": "Hjemmeside sektion 3", "LabelHomePageSection4": "Hjemmeside sektion 4", - "OptionMyMediaButtons": "Mine medier (knapper)", "OptionMyMedia": "Mine medier", "OptionMyMediaSmall": "Mine medier (lille)", "OptionResumablemedia": "Forts\u00e6t", @@ -815,53 +752,21 @@ "HeaderReports": "Rapporter", "HeaderSettings": "Indstillinger", "OptionDefaultSort": "Standard", - "OptionCommunityMostWatchedSort": "Mest sete", "TabNextUp": "N\u00e6ste", - "PlaceholderUsername": "Brugernavn", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "Ingen filmforslag er tilg\u00e6ngelige. Begynd at se og vurder dine film, og kom tilbage for at se dine anbefalinger.", "MessageNoCollectionsAvailable": "Samlinger tillader dig at lave personlige grupperinger affi lm, serier, albums, b\u00f8ger og spil. Klik p\u00e5 + knappen for at starte med at lave samlinger.", "MessageNoPlaylistsAvailable": "Afspilningslister lader dig lave lister af indhold der kan afspilles lige efter hinanden. For at tilf\u00f8je indhold til afspilningslisten, skal du h\u00f8jreklikke, eller trykke og holde, og derefter v\u00e6lge Tilf\u00f8j til afspilningsliste.", "MessageNoPlaylistItemsAvailable": "Denne afspilningsliste er tom.", - "ButtonDismiss": "Afvis", "ButtonEditOtherUserPreferences": "Rediger denne brugers profil, billede og personlige indstillinger.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "I omr\u00e5der med lav b\u00e5ndbredde kan begr\u00e6nsning af kvaliteten sikre en flydende streamingoplevelse.", "OptionBestAvailableStreamQuality": "Bedst mulige", "ChannelSettingsFormHelp": "Installer kanaler som f. eks. Trailers og Vimeo fra plugin-kataloget.", - "ViewTypePlaylists": "Afspilningslister", "ViewTypeMovies": "Film", "ViewTypeTvShows": "TV", "ViewTypeGames": "Spil", "ViewTypeMusic": "Musik", - "ViewTypeMusicGenres": "Genrer", - "ViewTypeMusicArtists": "Artister", - "ViewTypeBoxSets": "Samlinger", - "ViewTypeChannels": "Kanaler", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Vises nu", - "ViewTypeLatestGames": "Seneste spil", - "ViewTypeRecentlyPlayedGames": "Afspillet for nylig", - "ViewTypeGameFavorites": "Favoritter", - "ViewTypeGameSystems": "Spilsystemer", - "ViewTypeGameGenres": "Genrer", - "ViewTypeTvResume": "Forts\u00e6t", - "ViewTypeTvNextUp": "N\u00e6ste", - "ViewTypeTvLatest": "Seneste", - "ViewTypeTvShowSeries": "Serier", - "ViewTypeTvGenres": "Genrer", - "ViewTypeTvFavoriteSeries": "Favoritserier", - "ViewTypeTvFavoriteEpisodes": "Favoritepisoder", - "ViewTypeMovieResume": "Forts\u00e6t", - "ViewTypeMovieLatest": "Seneste", - "ViewTypeMovieMovies": "Film", - "ViewTypeMovieCollections": "Samlinger", - "ViewTypeMovieFavorites": "Favoritter", - "ViewTypeMovieGenres": "Genrer", - "ViewTypeMusicLatest": "Seneste", - "ViewTypeMusicPlaylists": "Afspilningslister", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Albumartister", "HeaderOtherDisplaySettings": "Indstillinger for visning", "ViewTypeMusicSongs": "Sange", "ViewTypeMusicFavorites": "Favoritter", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Ved hentning af billeder, kan de gemmes i b\u00e5de extrafanart og extrathumbs. Dette giver maksimal Kodi skin kompatibilitet.", "TabServices": "Tjenester", "TabLogs": "Logs", - "HeaderServerLogFiles": "Serverlogfiler:", "TabBranding": "Branding", "HeaderBrandingHelp": "Brugertilpas udseendet af Emby s\u00e5 den passer til dine behov.", "LabelLoginDisclaimer": "Login ansvarsfraskrivelse:", @@ -917,7 +821,6 @@ "HeaderDevice": "Enhed", "HeaderUser": "Bruger", "HeaderDateIssued": "Udstedelsesdato", - "LabelChapterName": "Kapitel {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "V\u00e6rdi:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Delstreng", "TabView": "Visning", - "TabSort": "Sorter", "TabFilter": "Filtrer", "ButtonView": "Visning", "LabelPageSize": "Maks. enheder:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Kontekst:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Afspilningslister", "ButtonClose": "Luk", "LabelAllLanguages": "Alle sprog", @@ -956,7 +856,6 @@ "LabelImage": "Billede:", "HeaderImages": "Billeder", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Sk\u00e6rmbilleder", "HeaderAddUpdateImage": "Tilf\u00f8j\/opdater billede", "LabelDropImageHere": "Tr\u00e6k billede hertil og slip", "LabelJpgPngOnly": "Kun JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "L\u00e5st", "OptionUnidentified": "Uidentificeret", "OptionMissingParentalRating": "Mangler aldersgr\u00e6nse", - "OptionStub": "P\u00e5begyndt", "OptionSeason0": "S\u00e6son 0", "LabelReport": "Rapport:", "OptionReportSongs": "Sange", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Aktivitet", - "ScheduledTaskStartedWithName": "{0} startet", - "ScheduledTaskCancelledWithName": "{0} blev afbrudt", - "ScheduledTaskCompletedWithName": "{0} f\u00e6rdig", - "ScheduledTaskFailed": "Planlagt opgave udf\u00f8rt", "PluginInstalledWithName": "{0} blev installeret", "PluginUpdatedWithName": "{0} blev opdateret", "PluginUninstalledWithName": "{0} blev afinstalleret", - "ScheduledTaskFailedWithName": "{0} fejlede", - "DeviceOnlineWithName": "{0} er forbundet", "UserOnlineFromDevice": "{0} er online fra {1}", - "DeviceOfflineWithName": "{0} har afbrudt forbindelsen", "UserOfflineFromDevice": "{0} har afbrudt forbindelsen fra {1}", - "SubtitlesDownloadedForItem": "Undertekster hentet til {0}", - "SubtitleDownloadFailureForItem": "Hentning af undertekster til {0} fejlede", "LabelRunningTimeValue": "K\u00f8rselstid: {0}", "LabelIpAddressValue": "IP-adresse: {0}", "UserLockedOutWithName": "Bruger {0} er blevet l\u00e5st", "UserConfigurationUpdatedWithName": "Brugerkonfigurationen for {0} er blevet opdateret", "UserCreatedWithName": "Bruger {0} er skabt", - "UserPasswordChangedWithName": "Adgangskoden for {0} er blevet \u00e6ndret", "UserDeletedWithName": "Bruger {0} er slettet", "MessageServerConfigurationUpdated": "Serverkonfigurationen er opdateret", "MessageNamedServerConfigurationUpdatedWithValue": "Serverkonfiguration sektion {0} er opdateret", "MessageApplicationUpdated": "Emby er blevet opdateret", "UserDownloadingItemWithValues": "{0} henter {1}", - "UserStartedPlayingItemWithValues": "{0} afspiller {1}", - "UserStoppedPlayingItemWithValues": "{0} har stoppet afpilningen af {1}", - "AppDeviceValues": "App: {0}, Enhed: {1}", "ProviderValue": "Udbyder: {0}", "HeaderRecentActivity": "Seneste aktivitet", "HeaderPeople": "Mennesker", @@ -1051,27 +936,18 @@ "LabelAirDate": "Sendedage:", "LabelAirTime:": "Sendetid:", "LabelRuntimeMinutes": "Spilletid (minutter):", - "LabelRevenue": "Indt\u00e6gter ($):", - "HeaderAlternateEpisodeNumbers": "Alternative episodenumre", "HeaderSpecialEpisodeInfo": "Information om specialepisoder", - "HeaderExternalIds": "Eksterne ID'er:", - "LabelAirsBeforeSeason": "Sendes f\u00f8r s\u00e6son:", - "LabelAirsAfterSeason": "Sendes efter s\u00e6son:", - "LabelAirsBeforeEpisode": "Sendes f\u00f8r episode:", "LabelDisplaySpecialsWithinSeasons": "Vis specialepisoder sammen med den s\u00e6son de blev sent i", - "HeaderCountries": "Lande", "HeaderGenres": "Genrer", "HeaderPlotKeywords": "Plot n\u00f8gleord", "HeaderStudios": "Studier", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Efterlad tom for at arve indstillinger fra en overliggende post eller den globale standardv\u00e6rdi.", "OptionNoTrailer": "Ingen trailer", "ButtonPurchase": "K\u00f8b", "OptionActor": "Skuespiller", "OptionComposer": "Komponist", "OptionDirector": "Instrukt\u00f8r", "OptionProducer": "Producent", - "OptionWriter": "Forfatter", "LabelAirDays": "Sendedage:", "LabelAirTime": "Sendetid:", "HeaderMediaInfo": "Medieinformation", @@ -1160,7 +1036,6 @@ "TabParentalControl": "For\u00e6ldrekontrol", "HeaderAccessSchedule": "Adgangsskema", "HeaderAccessScheduleHelp": "Skab et adgangsskema for at begr\u00e6nse adgangen til bestemte tidsrum.", - "ButtonAddSchedule": "Tilf\u00f8j skema", "LabelAccessDay": "Ugedag:", "LabelAccessStart": "Starttid:", "LabelAccessEnd": "Sluttid:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync opgaver", "HeaderThisUserIsCurrentlyDisabled": "Denne bruger er for \u00f8jeblikket deaktiveret.", "MessageReenableUser": "Se nedenfor om genaktivering", - "LabelEnableInternetMetadataForTvPrograms": "Hent internet metadata for:", "OptionTVMovies": "TV film", "HeaderUpcomingMovies": "Kommende film", "HeaderUpcomingSports": "Kommende sportsudsendelser", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Afspilningslister", "HeaderViewStyles": "Visningsstiler", "TabPhotos": "Fotos", - "TabVideos": "Videoer", "HeaderWelcomeToEmby": "Velkommen til Emby", "EmbyIntroMessage": "Med Emby kan du nemt streame videoer, musik og fotos til din smartphone, tablet eller andre enheder.", "ButtonSkip": "Spring over", @@ -1257,7 +1130,6 @@ "HeaderColumns": "S\u00f8jler", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Aktiver eksterne afspillere", - "ButtonUnlockGuide": "Opl\u00e5s guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Undertekster", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Erstat eksisterende billeder", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Indstillinger er gemt", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Brugere", "Delete": "Slet", "Password": "Adgangskode", "DeleteImage": "Slet billede", "MessageThankYouForSupporting": "Tak for at du st\u00f8tter Emby.", - "MessagePleaseSupportProject": "V\u00e6r venlig at st\u00f8tte Emby.", "DeleteImageConfirmation": "Er du sikker p\u00e5 du vil slette dette billede?", "FileReadCancelled": "L\u00e6sning af filen er annulleret.", "FileNotFound": "Filen blev ikke fundet.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "Mine medier", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "Der opstod en fejl ved start af cromecast. Tjek venligst at din enhed er forbundet til det tr\u00e5dl\u00f8se netv\u00e6rk.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Fjern bruger", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Tidsbegr\u00e6nsning: 1 time", "ValueTimeLimitMultiHour": "Tidsbegr\u00e6nsning: {0} timer", "PluginCategoryGeneral": "Generelt", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Planlagte opgaver", "MessageItemsAdded": "Elementer tilf\u00f8jet", "HeaderSelectCertificatePath": "V\u00e6lg certifikatsti", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Velkommen til Emby betjeningspanel", "HeaderWelcomeToProjectWebClient": "Velkommen til Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Sl\u00e5et fra", "ButtonMoreInformation": "Mere information", "LabelNoUnreadNotifications": "Ingen ul\u00e6ste notifikationer", - "LabelAllPlaysSentToPlayer": "Alle afspilninger vil blive sendt til den valgte afspiller.", "MessageInvalidUser": "Ukendt brugernavn eller adgangskode. Pr\u00f8v igen.", "HeaderLoginFailure": "Login fejl", "RecommendationBecauseYouLike": "Fordi du kan lide {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Optagelse annulleret.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Bekr\u00e6ft annullering af serie", - "MessageConfirmSeriesCancellation": "Er du sikker p\u00e5 du \u00f8nsker at annullere denne serie?", - "MessageSeriesCancelled": "Serie annulleret.", "HeaderConfirmRecordingDeletion": "Bekr\u00e6ft sletning af optagelse", "MessageRecordingSaved": "Optagelse gemt.", "OptionWeekend": "Weekender", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "V\u00e6lg eller indtast stien som skal benyttes til serverens cache filer. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", "HeaderSelectTranscodingPathHelp": "V\u00e6lg eller indtast stien som skal benyttes til midlertidige transkodningsfiler. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", "HeaderSelectMetadataPathHelp": "V\u00e6lg eller indtast stien for hvor du \u00f8nsker at gemme din metadata. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", - "HeaderSelectChannelDownloadPath": "V\u00e6lg sti for hentning af kanalindhold", - "HeaderSelectChannelDownloadPathHelp": "V\u00e6lg eller indtast stien for hvor du \u00f8nsker at gemme kanalindholds cache filer. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", - "LabelChapterDownloaders": "Kapitel downloadere:", - "LabelChapterDownloadersHelp": "Aktiver og ranger dine fortrukne kapitel downloadere i en prioriteret r\u00e6kkef\u00f8lge. Lavt rangerende downloadere bliver kun benyttet til at udfylde manglende information.", "HeaderFavoriteAlbums": "Favoritalbums", "HeaderLatestChannelMedia": "Seneste kanalenheder", "ButtonOrganizeFile": "Organiser fil", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "K\u00f8rer p\u00e5 http port {0}.", "LabelRunningOnPorts": "K\u00f8rer p\u00e5 http port {0}, og https port {1}.", "HeaderLatestFromChannel": "Seneste fra {0}", - "HeaderCurrentSubtitles": "Nuv\u00e6rende undertekster", "ButtonRemoteControl": "Fjernstyring", "HeaderLatestTvRecordings": "Seneste optagelser", "LabelCurrentPath": "Nuv\u00e6rende sti:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Slet element", "ConfirmDeleteItem": "Hvis dette element slettes, fjernes det b\u00e5de fra dit filsystem samt din mediebibliotek. Er du sikker p\u00e5 du \u00f8nsker at forts\u00e6tte?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "Det indtastede v\u00e6rdi er ikke korrekt. Pr\u00f8v igen.", "MessageItemSaved": "Element gemt.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Accepter venligst tjenestevilk\u00e5rene f\u00f8r du forts\u00e6tter.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Mangler baggrundsbillede.", "MissingLogoImage": "Mangler logo.", "MissingEpisode": "Mangler episode.", - "OptionScreenshots": "Sk\u00e6rmbilleder", "OptionBackdrops": "Baggrunde", "OptionImages": "Billeder", "OptionKeywords": "N\u00f8gleord", @@ -1642,10 +1494,6 @@ "OptionPeople": "Personer", "OptionProductionLocations": "Produktionslokationer", "OptionBirthLocation": "F\u00f8dselssted", - "LabelAllChannels": "Alle kanaler", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "\u00c6ndre indholdstype", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Advarsel", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Kvalitet", "HeaderNotifications": "Notifikationer", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For at opn\u00e5 de bedste resultater med Internet Explorer bedes du installere WebM afspilningstilf\u00f8jelsen.", "HeaderVideoError": "Video fejl", "ButtonViewSeriesRecording": "Vis serieoptagelse", "HeaderSpecials": "S\u00e6rudsendelser", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Varighed", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Udgivelsesdato", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "S\u00e6son", "HeaderSeasonNumber": "S\u00e6sonnummer", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Fjern medielokalisation", "MessageConfirmRemoveMediaLocation": "Er du sikker p\u00e5 du \u00f8nsker at fjerne denne lokalisation?", "LabelNewName": "Nyt navn:", - "HeaderAddMediaFolder": "Tilf\u00f8j mediemappe", - "HeaderAddMediaFolderHelp": "Navn (Film, Musik, TV, osv.):", "HeaderRemoveMediaFolder": "Fjern mediemappe", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Er du sikker p\u00e5 du \u00f8nsker at fjerne denne mediemappe?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Medielokationer", "LabelContentTypeValue": "Indholdstype: {0}", - "LabelPathSubstitutionHelp": "Valgfri: Stisubstitution kan sammenk\u00e6de serverstier til netv\u00e6rksstier som klienter derved kan tilg\u00e5 for direkte afspilning.", "FolderTypeUnset": "Ikke valgt (blandet indhold)", "BirthPlaceValue": "F\u00f8dselssted: {0}", "DeathDateValue": "D\u00f8dsdato: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Hjemmeside", "ValueSeriesYearToPresent": "{0}-Nu", "ValueAwards": "Priser: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Indtjening: {0}", "ValuePremiered": "Pr\u00e6miere {0}", "ValuePremieres": "Pr\u00e6miere {0}", "ValueStudio": "Studie: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Ekspert", "HeaderSelectCustomIntrosPath": "V\u00e6lg sti til brugerdefinerede introduktioner", - "HeaderRateAndReview": "Bed\u00f8m og anmeld", "HeaderThankYou": "Tak", - "MessageThankYouForYourReview": "Tak for din anmeldelse", - "LabelYourRating": "Din bed\u00f8mmelse:", "LabelFullReview": "Fuld anmeldelse:", - "LabelShortRatingDescription": "Kort bed\u00f8mmelsesresum\u00e9:", - "OptionIRecommendThisItem": "Jeg anbefaler dette", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "Se dit seneste tilf\u00f8jet media, kommende episoder samt mere. Den gr\u00f8nne cirkel indikerer hvor mange uafspillet elementer du har.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Administrer let processer der l\u00f8ber over l\u00e6ngere tid via planlagte opgaver. Bestem hvorn\u00e5r de udf\u00f8res samt hvor ofte.", "DashboardTourMobile": "Emby betjeningspanelet virker uden problemer p\u00e5 b\u00e5de smartphones og tablets. Kontrol over din server er altid ved dine fingrespidser hvor som helst, n\u00e5r som helst.", "DashboardTourSync": "Synkroniser dine personlige mediefiler til dine enheder s\u00e5 det kan ses offline.", - "MessageRefreshQueued": "Opdatering sat i k\u00f8", "TabExtras": "Ekstra", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Sidst brugt af {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Synkroniser medier", "HeaderCancelSyncJob": "Afbryd synkronisering", "CancelSyncJobConfirmation": "Afbrydelse af synkroniseringen vil fjerne medier fra enheden under n\u00e6ste synkroniseringsproces. Er du sikker p\u00e5 du \u00f8nsker at forts\u00e6tte?", - "MessagePleaseSelectDeviceToSyncTo": "V\u00e6lg en enhed at synkroniserer til.", - "MessageSyncJobCreated": "Synkroniserings job oprettet", "LabelQuality": "Kvalitet:", - "OptionAutomaticallySyncNewContent": "Synkroniser automatisk nyt indhold", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Kr\u00e6ver installation af Bookshelf tilf\u00f8jelsen", "MessageGamePluginRequired": "Kr\u00e6ver installation af GameBrowser tilf\u00f8jelsen", "MessageUnsetContentHelp": "Indhold vil blive vist som almindelige mapper. For det bedste resultat benyt metadata manageren til at v\u00e6lge indholdstypen i undermapper.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scener", "HeaderUnlockApp": "Opl\u00e5s app", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Betalingsservicen er ikke tilg\u00e6ngelig p\u00e5 nuv\u00e6rende tidspunkt. Pr\u00f8v igen senere.", - "ButtonUnlockWithPurchase": "L\u00e5s op gennem k\u00f8b", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "Live TV Guiden er p\u00e5 nuv\u00e6rende tidspunkt begr\u00e6nset til {0} kanaler. Klik p\u00e5 \"L\u00e5s op\" knappen for at f\u00e5 mere at vide omkring hvordan du kan f\u00e5 den fulde oplevelse.", "OptionEnableFullscreen": "Aktiver fuldsk\u00e6rm", "ButtonServer": "Server", "HeaderLibrary": "Bibliotek", "HeaderMedia": "Medier", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Tilf\u00f8j bruger", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Seneste film", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Afspil med ekstern afspiller", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/de-DE.json b/dashboard-ui/strings/de-DE.json new file mode 100644 index 0000000000..e6a8ac7e7e --- /dev/null +++ b/dashboard-ui/strings/de-DE.json @@ -0,0 +1,1949 @@ +{ + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", + "LabelPrevious": "Previous", + "LabelFinish": "Finish", + "LabelNext": "Next", + "LabelYoureDone": "You're Done!", + "WelcomeToProject": "Willkommen zu Emby!", + "ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.", + "TellUsAboutYourself": "Tell us about yourself", + "ButtonQuickStartGuide": "Quick start guide", + "LabelYourFirstName": "Your first name:", + "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", + "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", + "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", + "LabelConfigureSettings": "Configure settings", + "HeaderTermsOfService": "Emby Terms of Service", + "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", + "OptionIAcceptTermsOfService": "I accept the terms of service", + "ButtonPrivacyPolicy": "Privacy policy", + "ButtonTermsOfService": "Terms of Service", + "ButtonConvertMedia": "Convert media", + "ButtonOrganize": "Organize", + "HeaderSupporterBenefits": "Emby Premiere Benefits", + "HeaderAddUser": "Add User", + "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", + "LabelPinCode": "Pin code:", + "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", + "HeaderSync": "Sync", + "ButtonOk": "Ok", + "ButtonCancel": "Abbrechen", + "ButtonExit": "Exit", + "ButtonNew": "Neu", + "OptionDev": "Dev", + "OptionBeta": "Beta", + "HeaderTaskTriggers": "Task Triggers", + "HeaderTV": "TV", + "HeaderAudio": "Audio", + "HeaderVideo": "Video", + "HeaderPaths": "Pfade", + "CategorySync": "Sync", + "TabPlaylist": "Playlist", + "HeaderEasyPinCode": "Easy Pin Code", + "HeaderInstalledServices": "Installed Services", + "HeaderAvailableServices": "Available Services", + "MessageNoServicesInstalled": "No services are currently installed.", + "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", + "ButtonConfigurePinCode": "Configure pin code", + "RegisterWithPayPal": "Mit PayPal registrieren", + "LabelSyncTempPath": "Temporary file path:", + "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", + "LabelCustomCertificatePath": "Custom certificate path:", + "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", + "TitleNotifications": "Notifications", + "OptionDetectArchiveFilesAsMedia": "Detect archive files as media", + "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", + "LabelEnterConnectUserName": "Username or email:", + "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", + "HeaderSyncJobInfo": "Sync Job", + "FolderTypeMixed": "Mixed content", + "FolderTypeMovies": "Movies", + "FolderTypeMusic": "Music", + "FolderTypePhotos": "Photos", + "FolderTypeMusicVideos": "Music videos", + "FolderTypeGames": "Games", + "FolderTypeBooks": "Books", + "FolderTypeTvShows": "TV", + "FolderTypeInherit": "Inherit", + "LabelContentType": "Content type:", + "TitleScheduledTasks": "Scheduled Tasks", + "HeaderSetupLibrary": "Setup your media libraries", + "LabelFolderType": "Folder type:", + "LabelCountry": "Country:", + "LabelLanguage": "Language:", + "LabelTimeLimitHours": "Time limit (hours):", + "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", + "LabelSaveLocalMetadata": "Save artwork and metadata into media folders", + "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", + "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", + "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", + "TabPassword": "Password", + "TabLibraryAccess": "Library Access", + "TabAccess": "Access", + "TabImage": "Image", + "TabProfile": "Profile", + "TabMetadata": "Metadata", + "TabImages": "Images", + "TabNotifications": "Notifications", + "TabCollectionTitles": "Titles", + "HeaderDeviceAccess": "Device Access", + "OptionEnableAccessFromAllDevices": "Enable access from all devices", + "OptionEnableAccessToAllChannels": "Enable access to all channels", + "OptionEnableAccessToAllLibraries": "Enable access to all libraries", + "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", + "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", + "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", + "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", + "HeaderPlaybackSettings": "Playback Settings", + "LabelAudioLanguagePreference": "Audio language preference:", + "LabelSubtitleLanguagePreference": "Subtitle language preference:", + "OptionDefaultSubtitles": "Default", + "OptionSmartSubtitles": "Smart", + "OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", + "OptionOnlyForcedSubtitles": "Only forced subtitles", + "OptionAlwaysPlaySubtitles": "Always play subtitles", + "OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", + "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", + "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", + "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.", + "TabProfiles": "Profiles", + "TabSecurity": "Security", + "ButtonAddUser": "Add User", + "ButtonInviteUser": "Invite User", + "ButtonSave": "Save", + "ButtonResetPassword": "Reset Password", + "LabelNewPassword": "New password:", + "LabelNewPasswordConfirm": "New password confirm:", + "HeaderCreatePassword": "Create Password", + "LabelCurrentPassword": "Current password:", + "LabelMaxParentalRating": "Maximum allowed parental rating:", + "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", + "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", + "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", + "ButtonDeleteImage": "Delete Image", + "LabelSelectUsers": "Select users:", + "ButtonUpload": "Upload", + "HeaderUploadNewImage": "Upload New Image", + "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", + "MessageNothingHere": "Nothing here.", + "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", + "TabSuggestions": "Suggestions", + "TabLatest": "Latest", + "TabUpcoming": "Upcoming", + "TabShows": "Shows", + "TabEpisodes": "Episodes", + "TabGenres": "Genres", + "TabNetworks": "Networks", + "HeaderUsers": "Users", + "HeaderFilters": "Filters", + "ButtonFilter": "Filter", + "OptionFavorite": "Favorites", + "OptionLikes": "Likes", + "OptionDislikes": "Dislikes", + "OptionActors": "Actors", + "OptionGuestStars": "Guest Stars", + "OptionDirectors": "Directors", + "OptionWriters": "Writers", + "OptionProducers": "Producers", + "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", + "HeaderNextUp": "Next Up", + "NoNextUpItemsMessage": "None found. Start watching your shows!", + "HeaderLatestEpisodes": "Latest Episodes", + "HeaderPersonTypes": "Person Types:", + "TabSongs": "Songs", + "TabAlbums": "Albums", + "TabArtists": "Artists", + "TabAlbumArtists": "Album Artists", + "TabMusicVideos": "Music Videos", + "ButtonSort": "Sort", + "OptionPlayed": "Played", + "OptionUnplayed": "Unplayed", + "OptionAscending": "Ascending", + "OptionDescending": "Descending", + "OptionRuntime": "Runtime", + "OptionReleaseDate": "Release Date", + "OptionPlayCount": "Play Count", + "OptionDatePlayed": "Date Played", + "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", + "OptionAlbumArtist": "Album Artist", + "OptionArtist": "Artist", + "OptionAlbum": "Album", + "OptionTrackName": "Track Name", + "OptionCommunityRating": "Community Rating", + "OptionNameSort": "Name", + "OptionFolderSort": "Folders", + "OptionBudget": "Budget", + "OptionRevenue": "Revenue", + "OptionPoster": "Poster", + "OptionPosterCard": "Poster card", + "OptionBackdrop": "Backdrop", + "OptionTimeline": "Timeline", + "OptionThumb": "Thumb", + "OptionThumbCard": "Thumb card", + "OptionBanner": "Banner", + "OptionCriticRating": "Critic Rating", + "OptionVideoBitrate": "Video Bitrate", + "OptionResumable": "Resumable", + "ScheduledTasksHelp": "Click a task to adjust its schedule.", + "TabMyPlugins": "My Plugins", + "TabCatalog": "Catalog", + "TitlePlugins": "Plugins", + "HeaderAutomaticUpdates": "Automatic Updates", + "HeaderNowPlaying": "Now Playing", + "HeaderLatestAlbums": "Latest Albums", + "HeaderLatestSongs": "Latest Songs", + "HeaderRecentlyPlayed": "Recently Played", + "HeaderFrequentlyPlayed": "Frequently Played", + "LabelVideoType": "Video Type:", + "OptionBluray": "Bluray", + "OptionDvd": "Dvd", + "OptionIso": "Iso", + "Option3D": "3D", + "LabelStatus": "Status:", + "LabelLastResult": "Last result:", + "OptionHasSubtitles": "Subtitles", + "OptionHasTrailer": "Trailer", + "OptionHasThemeSong": "Theme Song", + "OptionHasThemeVideo": "Theme Video", + "TabMovies": "Movies", + "TabStudios": "Studios", + "TabTrailers": "Trailers", + "LabelArtists": "Artists:", + "LabelArtistsHelp": "Separate multiple using ;", + "HeaderLatestTrailers": "Latest Trailers", + "OptionHasSpecialFeatures": "Special Features", + "OptionImdbRating": "IMDb Rating", + "OptionParentalRating": "Parental Rating", + "OptionPremiereDate": "Premiere Date", + "TabBasic": "Basic", + "TabAdvanced": "Advanced", + "OptionContinuing": "Continuing", + "OptionEnded": "Ended", + "HeaderAirDays": "Air Days", + "OptionSundayShort": "Sun", + "OptionMondayShort": "Mon", + "OptionTuesdayShort": "Tue", + "OptionWednesdayShort": "Wed", + "OptionThursdayShort": "Thu", + "OptionFridayShort": "Fri", + "OptionSaturdayShort": "Sat", + "OptionSunday": "Sunday", + "OptionMonday": "Monday", + "OptionTuesday": "Tuesday", + "OptionWednesday": "Wednesday", + "OptionThursday": "Thursday", + "OptionFriday": "Friday", + "OptionSaturday": "Saturday", + "HeaderManagement": "Management", + "LabelManagement": "Management:", + "OptionMissingImdbId": "Missing IMDb Id", + "OptionMissingTvdbId": "Missing TheTVDB Id", + "OptionMissingOverview": "Missing Overview", + "TabGeneral": "General", + "TitleSupport": "Support", + "TabAbout": "About", + "TabSupporterKey": "Emby Premiere Key", + "TabBecomeSupporter": "Get Emby Premiere", + "TabEmbyPremiere": "Emby Premiere", + "ProjectHasCommunity": "Emby has a thriving community of users and contributors.", + "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", + "SearchKnowledgeBase": "Search the Knowledge Base", + "VisitTheCommunity": "Visit the Community", + "VisitProjectWebsite": "Visit the Emby Web Site", + "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.", + "OptionHideUser": "Hide this user from login screens", + "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", + "OptionDisableUser": "Disable this user", + "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", + "LabelName": "Name:", + "ButtonHelp": "Help", + "OptionAllowUserToManageServer": "Allow this user to manage the server", + "HeaderFeatureAccess": "Feature Access", + "OptionAllowMediaPlayback": "Allow media playback", + "OptionAllowBrowsingLiveTv": "Allow Live TV access", + "OptionAllowDeleteLibraryContent": "Allow media deletion", + "OptionAllowManageLiveTv": "Allow Live TV recording management", + "OptionAllowRemoteControlOthers": "Allow remote control of other users", + "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", + "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", + "OptionAllowLinkSharing": "Allow social media sharing", + "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", + "HeaderRemoteControl": "Remote Control", + "OptionMissingTmdbId": "Missing Tmdb Id", + "OptionIsHD": "HD", + "OptionIsSD": "SD", + "OptionMetascore": "Metascore", + "ButtonSelect": "Select", + "PismoMessage": "Utilizing Pismo File Mount through a donated license.", + "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", + "HeaderCredits": "Credits", + "PleaseSupportOtherProduces": "Please support other free products we utilize:", + "VersionNumber": "Version {0}", + "TabPaths": "Paths", + "TabServer": "Server", + "TabTranscoding": "Transcoding", + "OptionRelease": "Official Release", + "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", + "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", + "LabelRunServerAtStartup": "Run server at startup", + "LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.", + "ButtonSelectDirectory": "Select Directory", + "LabelCachePath": "Cache path:", + "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", + "LabelRecordingPath": "Default recording path:", + "LabelMovieRecordingPath": "Movie recording path (optional):", + "LabelSeriesRecordingPath": "Series recording path (optional):", + "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", + "LabelMetadataPath": "Metadata path:", + "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", + "LabelTranscodingTempPath": "Transcoding temporary path:", + "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", + "TabBasics": "Basics", + "TabTV": "TV", + "TabGames": "Games", + "TabMusic": "Music", + "TabOthers": "Others", + "OptionMovies": "Movies", + "OptionEpisodes": "Episodes", + "OptionOtherVideos": "Other Videos", + "LabelFanartApiKey": "Personal api key:", + "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", + "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", + "LabelMetadataDownloadLanguage": "Preferred download language:", + "ButtonSignIn": "Sign In", + "TitleSignIn": "Sign In", + "HeaderPleaseSignIn": "Please sign in", + "LabelUser": "User:", + "LabelPassword": "Password:", + "ButtonManualLogin": "Manual Login", + "TabGuide": "Guide", + "TabChannels": "Channels", + "TabCollections": "Collections", + "HeaderChannels": "Channels", + "TabRecordings": "Recordings", + "TabSeries": "Series", + "TabFavorites": "Favorites", + "TabMyLibrary": "My Library", + "ButtonCancelRecording": "Cancel Recording", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", + "HeaderWhatsOnTV": "What's On", + "TabSettings": "Settings", + "ButtonRefreshGuideData": "Refresh Guide Data", + "ButtonRefresh": "Refresh", + "OptionPriority": "Priority", + "OptionRecordOnAllChannels": "Record on all channels", + "OptionRecordAnytime": "Record at any time", + "OptionRecordOnlyNewEpisodes": "Record only new episodes", + "HeaderDays": "Days", + "HeaderActiveRecordings": "Active Recordings", + "HeaderLatestRecordings": "Latest Recordings", + "HeaderAllRecordings": "All Recordings", + "ButtonPlay": "Play", + "ButtonEdit": "Edit", + "ButtonRecord": "Record", + "ButtonDelete": "Delete", + "ButtonRemove": "Remove", + "OptionRecordSeries": "Record Series", + "HeaderDetails": "Details", + "TitleLiveTV": "Live TV", + "LabelNumberOfGuideDays": "Number of days of guide data to download:", + "LabelNumberOfGuideDaysHelp": "Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.", + "OptionAutomatic": "Auto", + "HeaderServices": "Services", + "LabelCustomizeOptionsPerMediaType": "Customize for media type:", + "OptionDownloadThumbImage": "Thumb", + "OptionDownloadMenuImage": "Menu", + "OptionDownloadLogoImage": "Logo", + "OptionDownloadBoxImage": "Box", + "OptionDownloadDiscImage": "Disc", + "OptionDownloadBannerImage": "Banner", + "OptionDownloadBackImage": "Back", + "OptionDownloadArtImage": "Art", + "OptionDownloadPrimaryImage": "Primary", + "HeaderFetchImages": "Fetch Images:", + "HeaderImageSettings": "Image Settings", + "TabOther": "Other", + "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", + "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", + "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", + "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", + "ButtonAddScheduledTaskTrigger": "Add Trigger", + "HeaderAddScheduledTaskTrigger": "Add Trigger", + "ButtonAdd": "Add", + "LabelTriggerType": "Trigger Type:", + "OptionDaily": "Daily", + "OptionWeekly": "Weekly", + "OptionOnInterval": "On an interval", + "OptionOnAppStartup": "On application startup", + "OptionAfterSystemEvent": "After a system event", + "LabelDay": "Day:", + "LabelTime": "Time:", + "LabelEvent": "Event:", + "OptionWakeFromSleep": "Wake from sleep", + "LabelEveryXMinutes": "Every:", + "HeaderTvTuners": "Tuners", + "HeaderLatestGames": "Latest Games", + "HeaderRecentlyPlayedGames": "Recently Played Games", + "TabGameSystems": "Game Systems", + "TabFolders": "Folders", + "TabPathSubstitution": "Path Substitution", + "LabelSeasonZeroDisplayName": "Season 0 display name:", + "LabelEnableRealtimeMonitor": "Enable real time monitoring", + "LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.", + "ButtonScanLibrary": "Scan Library", + "HeaderNumberOfPlayers": "Players", + "OptionAnyNumberOfPlayers": "Any", + "Option1Player": "1+", + "Option2Player": "2+", + "Option3Player": "3+", + "Option4Player": "4+", + "HeaderMediaFolders": "Media Folders", + "HeaderThemeVideos": "Theme Videos", + "HeaderThemeSongs": "Theme Songs", + "HeaderScenes": "Scenes", + "HeaderAwardsAndReviews": "Awards and Reviews", + "HeaderSoundtracks": "Soundtracks", + "HeaderMusicVideos": "Music Videos", + "HeaderSpecialFeatures": "Special Features", + "HeaderCastCrew": "Cast & Crew", + "HeaderAdditionalParts": "Additional Parts", + "ButtonSplitVersionsApart": "Split Versions Apart", + "ButtonPlayTrailer": "Trailer", + "LabelMissing": "Missing", + "OptionSpecialEpisode": "Specials", + "OptionMissingEpisode": "Missing Episodes", + "OptionUnairedEpisode": "Unaired Episodes", + "OptionEpisodeSortName": "Episode Sort Name", + "OptionSeriesSortName": "Series Name", + "OptionTvdbRating": "Tvdb Rating", + "HeaderAddTitles": "Add Titles", + "LabelEnableDlnaPlayTo": "Enable DLNA Play To", + "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", + "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", + "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", + "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", + "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Emby.", + "HeaderCustomDlnaProfiles": "Custom Profiles", + "HeaderSystemDlnaProfiles": "System Profiles", + "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", + "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", + "TabHome": "Home", + "TabInfo": "Info", + "HeaderLinks": "Links", + "LinkCommunity": "Community", + "LinkGithub": "Github", + "LinkApi": "Api", + "LabelFriendlyServerName": "Friendly server name:", + "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", + "LabelPreferredDisplayLanguage": "Preferred display language:", + "LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.", + "LabelReadHowYouCanContribute": "Learn how you can contribute.", + "ButtonSubmit": "Submit", + "ButtonCreate": "Create", + "LabelCustomCss": "Custom css:", + "LabelCustomCssHelp": "Apply your own custom css to the web interface.", + "LabelLocalHttpServerPortNumber": "Local http port number:", + "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.", + "LabelPublicHttpPort": "Public http port number:", + "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", + "LabelPublicHttpsPort": "Public https port number:", + "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", + "LabelEnableHttps": "Report https as external address", + "LabelEnableHttpsHelp": "If enabled, the server will report an https url to Emby apps as it's external address.", + "LabelHttpsPort": "Local https port number:", + "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.", + "LabelEnableAutomaticPortMap": "Enable automatic port mapping", + "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", + "LabelExternalDDNS": "External domain:", + "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.", + "TitleAppSettings": "App Settings", + "LabelMinResumePercentage": "Min resume percentage:", + "LabelMaxResumePercentage": "Max resume percentage:", + "LabelMinResumeDuration": "Min resume duration (seconds):", + "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", + "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", + "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", + "TabActivityLog": "Activity Log", + "TabSmartMatches": "Smart Matches", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", + "HeaderName": "Name", + "HeaderDate": "Date", + "HeaderSource": "Source", + "HeaderStatus": "Status", + "HeaderDestination": "Destination", + "HeaderProgram": "Program", + "HeaderClients": "Clients", + "LabelCompleted": "Completed", + "LabelFailed": "Failed", + "LabelSkipped": "Skipped", + "LabelSeries": "Series:", + "LabelSeasonNumber": "Season number:", + "LabelEpisodeNumber": "Episode number:", + "LabelEndingEpisodeNumber": "Ending episode number:", + "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", + "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", + "HeaderSupportTheTeam": "Support the Emby Team", + "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", + "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", + "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", + "OptionEnableEpisodeOrganization": "Enable new episode organization", + "LabelWatchFolder": "Watch folder:", + "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", + "LabelMinFileSizeForOrganize": "Minimum file size (MB):", + "LabelMinFileSizeForOrganizeHelp": "Files under this size will be ignored.", + "LabelSeasonFolderPattern": "Season folder pattern:", + "LabelSeasonZeroFolderName": "Season zero folder name:", + "HeaderEpisodeFilePattern": "Episode file pattern", + "LabelEpisodePattern": "Episode pattern:", + "LabelMultiEpisodePattern": "Multi-Episode pattern:", + "HeaderSupportedPatterns": "Supported Patterns", + "HeaderTerm": "Term", + "HeaderPattern": "Pattern", + "HeaderResult": "Result", + "LabelDeleteEmptyFolders": "Delete empty folders after organizing", + "LabelDeleteEmptyFoldersHelp": "Enable this to keep the download directory clean.", + "LabelDeleteLeftOverFiles": "Delete left over files with the following extensions:", + "LabelDeleteLeftOverFilesHelp": "Separate with ;. For example: .nfo;.txt", + "OptionOverwriteExistingEpisodes": "Overwrite existing episodes", + "LabelTransferMethod": "Transfer method", + "OptionCopy": "Copy", + "OptionMove": "Move", + "LabelTransferMethodHelp": "Copy or move files from the watch folder", + "HeaderLatestNews": "Latest News", + "HeaderRunningTasks": "Running Tasks", + "HeaderActiveDevices": "Active Devices", + "HeaderPendingInstallations": "Pending Installations", + "ButtonRestartNow": "Restart Now", + "ButtonRestart": "Restart", + "ButtonShutdown": "Shutdown", + "ButtonUpdateNow": "Update Now", + "TabHosting": "Hosting", + "PleaseUpdateManually": "Please shutdown the server and update manually.", + "NewServerVersionAvailable": "A new version of Emby Server is available!", + "ServerUpToDate": "Emby Server is up to date", + "LabelComponentsUpdated": "The following components have been installed or updated:", + "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", + "LabelDownMixAudioScale": "Audio boost when downmixing:", + "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", + "ButtonLinkKeys": "Transfer Key", + "LabelOldSupporterKey": "Old Emby Premiere key", + "LabelNewSupporterKey": "New Emby Premiere key", + "HeaderMultipleKeyLinking": "Transfer to New Key", + "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.", + "LabelCurrentEmailAddress": "Current email address", + "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", + "HeaderForgotKey": "Forgot Key", + "LabelEmailAddress": "Email address", + "LabelSupporterEmailAddress": "The email address that was used to purchase the key.", + "ButtonRetrieveKey": "Retrieve Key", + "LabelSupporterKey": "Emby Premiere key (paste from email):", + "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.", + "MessageInvalidKey": "Emby Premiere key is missing or invalid.", + "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", + "HeaderDisplaySettings": "Display Settings", + "LabelEnableDlnaServer": "Enable Dlna server", + "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", + "LabelEnableBlastAliveMessages": "Blast alive messages", + "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", + "LabelBlastMessageInterval": "Alive message interval (seconds)", + "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", + "LabelDefaultUser": "Default user:", + "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", + "HeaderServerSettings": "Server Settings", + "HeaderRequireManualLogin": "Require manual username entry for:", + "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", + "OptionOtherApps": "Other apps", + "OptionMobileApps": "Mobile apps", + "LabelNotificationEnabled": "Enable this notification", + "LabelMonitorUsers": "Monitor activity from:", + "LabelSendNotificationToUsers": "Send the notification to:", + "LabelUseNotificationServices": "Use the following services:", + "CategoryUser": "User", + "CategorySystem": "System", + "CategoryApplication": "Application", + "CategoryPlugin": "Plugin", + "LabelAvailableTokens": "Available tokens:", + "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", + "OptionAllUsers": "All users", + "OptionAdminUsers": "Administrators", + "OptionCustomUsers": "Custom", + "ButtonArrowUp": "Up", + "ButtonArrowDown": "Down", + "ButtonArrowLeft": "Left", + "ButtonArrowRight": "Right", + "ButtonBack": "Back", + "ButtonInfo": "Info", + "ButtonOsd": "On screen display", + "ButtonPageUp": "Page Up", + "ButtonPageDown": "Page Down", + "ButtonHome": "Home", + "ButtonSearch": "Search", + "ButtonSettings": "Settings", + "ButtonTakeScreenshot": "Capture Screenshot", + "LetterButtonAbbreviation": "A", + "TabNowPlaying": "Now Playing", + "TabNavigation": "Navigation", + "TabControls": "Controls", + "ButtonScenes": "Scenes", + "ButtonSubtitles": "Subtitles", + "ButtonPreviousTrack": "Previous track", + "ButtonNextTrack": "Next track", + "ButtonStop": "Stop", + "ButtonPause": "Pause", + "ButtonNext": "Next", + "ButtonPrevious": "Previous", + "LabelGroupMoviesIntoCollections": "Group movies into collections", + "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", + "ButtonVolumeUp": "Volume up", + "ButtonVolumeDown": "Volume down", + "HeaderLatestMedia": "Latest Media", + "OptionNoSubtitles": "No Subtitles", + "HeaderCollections": "Collections", + "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", + "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", + "HeaderResponseProfile": "Response Profile", + "LabelType": "Type:", + "LabelProfileContainer": "Container:", + "LabelProfileVideoCodecs": "Video codecs:", + "LabelProfileAudioCodecs": "Audio codecs:", + "LabelProfileCodecs": "Codecs:", + "HeaderDirectPlayProfile": "Direct Play Profile", + "HeaderTranscodingProfile": "Transcoding Profile", + "HeaderCodecProfile": "Codec Profile", + "HeaderContainerProfile": "Container Profile", + "OptionProfileVideo": "Video", + "OptionProfileAudio": "Audio", + "OptionProfileVideoAudio": "Video Audio", + "OptionProfilePhoto": "Photo", + "LabelUserLibrary": "User library:", + "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", + "OptionPlainStorageFolders": "Display all folders as plain storage folders", + "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", + "OptionPlainVideoItems": "Display all videos as plain video items", + "OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".", + "LabelSupportedMediaTypes": "Supported Media Types:", + "HeaderIdentification": "Identification", + "TabDirectPlay": "Direct Play", + "TabContainers": "Containers", + "TabCodecs": "Codecs", + "TabResponses": "Responses", + "HeaderProfileInformation": "Profile Information", + "LabelEmbedAlbumArtDidl": "Embed album art in Didl", + "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", + "LabelAlbumArtPN": "Album art PN:", + "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", + "LabelAlbumArtMaxWidth": "Album art max width:", + "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", + "LabelAlbumArtMaxHeight": "Album art max height:", + "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", + "LabelIconMaxWidth": "Icon max width:", + "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", + "LabelIconMaxHeight": "Icon max height:", + "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", + "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", + "HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.", + "LabelMaxBitrate": "Max bitrate:", + "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", + "LabelMaxStreamingBitrate": "Max streaming bitrate:", + "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", + "LabelMaxChromecastBitrate": "Max Chromecast bitrate:", + "LabelMusicStaticBitrate": "Music sync bitrate:", + "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", + "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", + "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", + "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", + "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", + "LabelFriendlyName": "Friendly name", + "LabelManufacturer": "Manufacturer", + "LabelManufacturerUrl": "Manufacturer url", + "LabelModelName": "Model name", + "LabelModelNumber": "Model number", + "LabelModelDescription": "Model description", + "LabelModelUrl": "Model url", + "LabelSerialNumber": "Serial number", + "LabelDeviceDescription": "Device description", + "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", + "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", + "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", + "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", + "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", + "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", + "LabelXDlnaCap": "X-Dlna cap:", + "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", + "LabelXDlnaDoc": "X-Dlna doc:", + "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", + "LabelSonyAggregationFlags": "Sony aggregation flags:", + "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", + "LabelTranscodingContainer": "Container:", + "LabelTranscodingVideoCodec": "Video codec:", + "LabelTranscodingAudioCodec": "Audio codec:", + "OptionEnableM2tsMode": "Enable M2ts mode", + "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", + "OptionEstimateContentLength": "Estimate content length when transcoding", + "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", + "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", + "HeaderDownloadSubtitlesFor": "Download subtitles for:", + "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", + "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", + "TabSubtitles": "Subtitles", + "TabChapters": "Chapters", + "LabelOpenSubtitlesUsername": "Open Subtitles username:", + "LabelOpenSubtitlesPassword": "Open Subtitles password:", + "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", + "LabelSubtitlePlaybackMode": "Subtitle mode:", + "LabelDownloadLanguages": "Download languages:", + "ButtonRegister": "Register", + "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", + "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", + "HeaderSendMessage": "Send Message", + "ButtonSend": "Send", + "LabelMessageText": "Message text:", + "LabelMessageTitle": "Message title:", + "MessageNoAvailablePlugins": "No available plugins.", + "LabelDisplayPluginsFor": "Display plugins for:", + "PluginTabAppClassic": "Emby Classic", + "LabelEpisodeNamePlain": "Episode name", + "LabelSeriesNamePlain": "Series name", + "ValueSeriesNamePeriod": "Series.name", + "ValueSeriesNameUnderscore": "Series_name", + "ValueEpisodeNamePeriod": "Episode.name", + "ValueEpisodeNameUnderscore": "Episode_name", + "LabelSeasonNumberPlain": "Season number", + "LabelEpisodeNumberPlain": "Episode number", + "LabelEndingEpisodeNumberPlain": "Ending episode number", + "HeaderTypeText": "Enter Text", + "LabelTypeText": "Text", + "TabDisplay": "Display", + "TabLanguages": "Languages", + "TabAppSettings": "App Settings", + "LabelEnableThemeSongs": "Enable theme songs", + "LabelEnableBackdrops": "Enable backdrops", + "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", + "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", + "HeaderHomePage": "Home Page", + "OptionAuto": "Auto", + "OptionYes": "Yes", + "OptionNo": "No", + "HeaderOptions": "Options", + "LabelHomePageSection1": "Home page section 1:", + "LabelHomePageSection2": "Home page section 2:", + "LabelHomePageSection3": "Home page section 3:", + "LabelHomePageSection4": "Home page section 4:", + "OptionMyMedia": "My media", + "OptionMyMediaSmall": "My media (small)", + "OptionResumablemedia": "Resume", + "OptionLatestMedia": "Latest media", + "OptionLatestChannelMedia": "Latest channel items", + "HeaderLatestChannelItems": "Latest Channel Items", + "OptionNone": "None", + "HeaderLiveTv": "Live TV", + "HeaderReports": "Reports", + "HeaderSettings": "Settings", + "OptionDefaultSort": "Default", + "TabNextUp": "Next Up", + "HeaderBecomeProjectSupporter": "Get Emby Premiere", + "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", + "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", + "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", + "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", + "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", + "LabelChannelStreamQuality": "Preferred internet channel quality:", + "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", + "OptionBestAvailableStreamQuality": "Best available", + "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", + "ViewTypeMovies": "Movies", + "ViewTypeTvShows": "TV", + "ViewTypeGames": "Games", + "ViewTypeMusic": "Music", + "HeaderOtherDisplaySettings": "Display Settings", + "ViewTypeMusicSongs": "Songs", + "ViewTypeMusicFavorites": "Favorites", + "ViewTypeMusicFavoriteAlbums": "Favorite Albums", + "ViewTypeMusicFavoriteArtists": "Favorite Artists", + "ViewTypeMusicFavoriteSongs": "Favorite Songs", + "HeaderMyViews": "My Views", + "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", + "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", + "OptionDisplayAdultContent": "Display adult content", + "OptionLibraryFolders": "Media folders", + "TitleRemoteControl": "Remote Control", + "OptionLatestTvRecordings": "Latest recordings", + "LabelProtocolInfo": "Protocol info:", + "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", + "TabNfoSettings": "Nfo Settings", + "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Services tab to configure options for your media types.", + "LabelKodiMetadataUser": "Sync user watch data to nfo's for:", + "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.", + "LabelKodiMetadataDateFormat": "Release date format:", + "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", + "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", + "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", + "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", + "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", + "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.", + "OptionDisplayChannelsInline": "Display channels as media folders", + "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", + "LabelDisplayCollectionsView": "Display a collections view to show movie collections", + "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", + "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", + "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", + "TabServices": "Services", + "TabLogs": "Logs", + "TabBranding": "Branding", + "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", + "LabelLoginDisclaimer": "Login disclaimer:", + "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", + "OptionList": "List", + "TabDashboard": "Dashboard", + "TitleServer": "Server", + "LabelCache": "Cache:", + "LabelLogs": "Logs:", + "LabelMetadata": "Metadata:", + "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", + "HeaderLatestMusic": "Latest Music", + "HeaderBranding": "Branding", + "HeaderApiKeys": "Api Keys", + "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.", + "HeaderApiKey": "Api Key", + "HeaderApp": "App", + "HeaderDevice": "Device", + "HeaderUser": "User", + "HeaderDateIssued": "Date Issued", + "HeaderHttpHeaders": "Http Headers", + "HeaderIdentificationHeader": "Identification Header", + "LabelValue": "Value:", + "LabelMatchType": "Match type:", + "OptionEquals": "Equals", + "OptionRegex": "Regex", + "OptionSubstring": "Substring", + "TabView": "View", + "TabFilter": "Filter", + "ButtonView": "View", + "LabelPageSize": "Item limit:", + "LabelPath": "Path:", + "LabelView": "View:", + "TabUsers": "Users", + "HeaderFeatures": "Features", + "HeaderAdvanced": "Advanced", + "ButtonSync": "Sync", + "TabScheduledTasks": "Scheduled Tasks", + "HeaderChapters": "Chapters", + "HeaderResumeSettings": "Resume Settings", + "TabSync": "Sync", + "TitleUsers": "Users", + "LabelProtocol": "Protocol:", + "OptionProtocolHttp": "Http", + "OptionProtocolHls": "Http Live Streaming", + "LabelContext": "Context:", + "TabPlaylists": "Playlists", + "ButtonClose": "Close", + "LabelAllLanguages": "All languages", + "HeaderBrowseOnlineImages": "Browse Online Images", + "LabelSource": "Source:", + "OptionAll": "All", + "LabelImage": "Image:", + "HeaderImages": "Images", + "HeaderBackdrops": "Backdrops", + "HeaderAddUpdateImage": "Add\/Update Image", + "LabelDropImageHere": "Drop image here", + "LabelJpgPngOnly": "JPG\/PNG only", + "LabelImageType": "Image type:", + "OptionPrimary": "Primary", + "OptionArt": "Art", + "OptionBox": "Box", + "OptionBoxRear": "Box rear", + "OptionDisc": "Disc", + "OptionIcon": "Icon", + "OptionLogo": "Logo", + "OptionMenu": "Menu", + "OptionScreenshot": "Screenshot", + "OptionLocked": "Locked", + "OptionUnidentified": "Unidentified", + "OptionMissingParentalRating": "Missing parental rating", + "OptionSeason0": "Season 0", + "LabelReport": "Report:", + "OptionReportSongs": "Songs", + "OptionReportSeries": "Series", + "OptionReportSeasons": "Seasons", + "OptionReportTrailers": "Trailers", + "OptionReportMusicVideos": "Music videos", + "OptionReportMovies": "Movies", + "OptionReportHomeVideos": "Home videos", + "OptionReportGames": "Games", + "OptionReportEpisodes": "Episodes", + "OptionReportCollections": "Collections", + "OptionReportBooks": "Books", + "OptionReportArtists": "Artists", + "OptionReportAlbums": "Albums", + "ButtonMore": "More", + "HeaderActivity": "Activity", + "PluginInstalledWithName": "{0} was installed", + "PluginUpdatedWithName": "{0} was updated", + "PluginUninstalledWithName": "{0} was uninstalled", + "UserOnlineFromDevice": "{0} is online from {1}", + "UserOfflineFromDevice": "{0} has disconnected from {1}", + "LabelRunningTimeValue": "Running time: {0}", + "LabelIpAddressValue": "Ip address: {0}", + "UserLockedOutWithName": "User {0} has been locked out", + "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", + "UserCreatedWithName": "User {0} has been created", + "UserDeletedWithName": "User {0} has been deleted", + "MessageServerConfigurationUpdated": "Server configuration has been updated", + "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", + "MessageApplicationUpdated": "Emby Server has been updated", + "UserDownloadingItemWithValues": "{0} is downloading {1}", + "ProviderValue": "Provider: {0}", + "HeaderRecentActivity": "Recent Activity", + "HeaderPeople": "People", + "HeaderDownloadPeopleMetadataFor": "Download biography and images for:", + "OptionComposers": "Composers", + "OptionOthers": "Others", + "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", + "ViewTypeFolders": "Folders", + "OptionDisplayFolderView": "Display a folder view to show plain media folders", + "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", + "ViewTypeLiveTvRecordingGroups": "Recordings", + "ViewTypeLiveTvChannels": "Channels", + "LabelEasyPinCode": "Easy pin code:", + "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", + "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", + "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", + "HeaderPassword": "Password", + "HeaderViewOrder": "View Order", + "ButtonResetEasyPassword": "Reset easy pin code", + "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps", + "HeaderPersonInfo": "Person Info", + "HeaderConfirmDeletion": "Confirm Deletion", + "LabelAlbumArtist": "Album artist:", + "LabelAlbumArtists": "Album artists:", + "LabelAlbum": "Album:", + "LabelCommunityRating": "Community rating:", + "LabelAwardSummary": "Award summary:", + "LabelReleaseDate": "Release date:", + "LabelEndDate": "End date:", + "LabelAirDate": "Air days:", + "LabelAirTime:": "Air time:", + "LabelRuntimeMinutes": "Run time (minutes):", + "HeaderSpecialEpisodeInfo": "Special Episode Info", + "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", + "HeaderGenres": "Genres", + "HeaderPlotKeywords": "Plot Keywords", + "HeaderStudios": "Studios", + "HeaderTags": "Tags", + "OptionNoTrailer": "No Trailer", + "ButtonPurchase": "Purchase", + "OptionActor": "Actor", + "OptionComposer": "Composer", + "OptionDirector": "Director", + "OptionProducer": "Producer", + "LabelAirDays": "Air days:", + "LabelAirTime": "Air time:", + "HeaderMediaInfo": "Media Info", + "HeaderPhotoInfo": "Photo Info", + "HeaderInstall": "Install", + "LabelSelectVersionToInstall": "Select version to install:", + "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere", + "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.", + "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.", + "HeaderReviews": "Reviews", + "HeaderDeveloperInfo": "Developer Info", + "HeaderRevisionHistory": "Revision History", + "ButtonViewWebsite": "View website", + "HeaderXmlSettings": "Xml Settings", + "HeaderXmlDocumentAttributes": "Xml Document Attributes", + "HeaderXmlDocumentAttribute": "Xml Document Attribute", + "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", + "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", + "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", + "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", + "LabelConnectGuestUserName": "Their Emby username or email address:", + "LabelConnectUserName": "Emby username or email address:", + "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.", + "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect", + "LabelExternalPlayers": "External players:", + "LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.", + "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.", + "HeaderSubtitleProfile": "Subtitle Profile", + "HeaderSubtitleProfiles": "Subtitle Profiles", + "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", + "LabelFormat": "Format:", + "LabelMethod": "Method:", + "LabelDidlMode": "Didl mode:", + "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", + "OptionResElement": "res element", + "OptionEmbedSubtitles": "Embed within container", + "OptionExternallyDownloaded": "External download", + "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", + "LabelSubtitleFormatHelp": "Example: srt", + "ButtonLearnMore": "Learn more", + "TabPlayback": "Playback", + "HeaderAudioSettings": "Audio Settings", + "HeaderSubtitleSettings": "Subtitle Settings", + "TabCinemaMode": "Cinema Mode", + "TitlePlayback": "Playback", + "LabelEnableCinemaModeFor": "Enable cinema mode for:", + "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "OptionTrailersFromMyMovies": "Include trailers from movies in my library", + "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", + "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", + "LabelEnableIntroParentalControl": "Enable smart parental control", + "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", + "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.", + "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", + "LabelCustomIntrosPath": "Custom intros path:", + "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", + "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", + "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", + "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", + "CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", + "LabelEnableCinemaMode": "Enable cinema mode", + "HeaderCinemaMode": "Cinema Mode", + "LabelDateAddedBehavior": "Date added behavior for new content:", + "OptionDateAddedImportTime": "Use date scanned into the library", + "OptionDateAddedFileTime": "Use file creation date", + "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", + "LabelNumberTrailerToPlay": "Number of trailers to play:", + "TitleDevices": "Devices", + "TabCameraUpload": "Camera Upload", + "TabDevices": "Devices", + "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.", + "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", + "LabelCameraUploadPath": "Camera upload path:", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", + "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", + "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", + "LabelCustomDeviceDisplayName": "Display name:", + "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", + "HeaderInviteUser": "Invite User", + "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.", + "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.", + "ButtonSendInvitation": "Send Invitation", + "HeaderSignInWithConnect": "Sign in with Emby Connect", + "HeaderGuests": "Guests", + "HeaderPendingInvitations": "Pending Invitations", + "TabParentalControl": "Parental Control", + "HeaderAccessSchedule": "Access Schedule", + "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", + "LabelAccessDay": "Day of week:", + "LabelAccessStart": "Start time:", + "LabelAccessEnd": "End time:", + "HeaderSchedule": "Schedule", + "OptionEveryday": "Every day", + "OptionWeekdays": "Weekdays", + "OptionWeekends": "Weekends", + "MessageProfileInfoSynced": "User profile information synced with Emby Connect.", + "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account", + "ButtonTrailer": "Trailer", + "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", + "HeaderNewUsers": "New Users", + "ButtonSignUp": "Sign up", + "ButtonForgotPassword": "Forgot password", + "OptionDisableUserPreferences": "Disable access to user preferences", + "OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.", + "HeaderSelectServer": "Select Server", + "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", + "TitleNewUser": "New User", + "ButtonConfigurePassword": "Configure Password", + "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", + "HeaderLibraryAccess": "Library Access", + "HeaderChannelAccess": "Channel Access", + "HeaderLatestItems": "Latest Items", + "LabelSelectLastestItemsFolders": "Include media from the following sections in Latest Items", + "HeaderShareMediaFolders": "Share Media Folders", + "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", + "HeaderInvitations": "Invitations", + "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", + "HeaderForgotPassword": "Forgot Password", + "TitlePasswordReset": "Password Reset", + "LabelPasswordRecoveryPinCode": "Pin code:", + "HeaderPasswordReset": "Password Reset", + "HeaderParentalRatings": "Parental Ratings", + "HeaderVideoTypes": "Video Types", + "HeaderYears": "Years", + "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", + "LabelBlockContentWithTags": "Block content with tags:", + "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", + "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", + "TabActivity": "Activity", + "TitleSync": "Sync", + "OptionAllowSyncContent": "Allow Sync", + "OptionAllowContentDownloading": "Allow media downloading", + "NameSeasonUnknown": "Season Unknown", + "NameSeasonNumber": "Season {0}", + "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", + "TabJobs": "Jobs", + "TabSyncJobs": "Sync Jobs", + "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", + "MessageReenableUser": "See below to reenable", + "OptionTVMovies": "TV Movies", + "HeaderUpcomingMovies": "Upcoming Movies", + "HeaderUpcomingSports": "Upcoming Sports", + "HeaderUpcomingPrograms": "Upcoming Programs", + "ButtonMoreItems": "More", + "OptionEnableTranscodingThrottle": "Enable throttling", + "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", + "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", + "OptionAllowSyncTranscoding": "Allow syncing that requires transcoding", + "HeaderPlayback": "Media Playback", + "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", + "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", + "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.", + "TabStreaming": "Streaming", + "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", + "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle.", + "LabelConversionCpuCoreLimit": "CPU core limit:", + "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", + "OptionEnableFullSpeedConversion": "Enable full speed conversion", + "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", + "HeaderPlaylists": "Playlists", + "HeaderViewStyles": "View Styles", + "TabPhotos": "Photos", + "HeaderWelcomeToEmby": "Welcome to Emby", + "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", + "ButtonSkip": "Skip", + "TextConnectToServerManually": "Connect to server manually", + "ButtonSignInWithConnect": "Sign in with Emby Connect", + "ButtonConnect": "Connect", + "LabelServerHost": "Host:", + "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", + "LabelServerPort": "Port:", + "HeaderNewServer": "New Server", + "ButtonChangeServer": "Change Server", + "HeaderConnectToServer": "Connect to Server", + "OptionReportList": "List View", + "OptionReportStatistics": "Statistics", + "OptionReportGrouping": "Grouping", + "HeaderExport": "Export", + "HeaderColumns": "Columns", + "ButtonReset": "Reset", + "OptionEnableExternalVideoPlayers": "Enable external video players", + "LabelEnableFullScreen": "Enable fullscreen mode", + "LabelEmail": "Email:", + "LabelUsername": "Username:", + "HeaderSignUp": "Sign Up", + "LabelPasswordConfirm": "Password (confirm):", + "ButtonAddServer": "Add Server", + "TabHomeScreen": "Home Screen", + "HeaderDisplay": "Display", + "HeaderNavigation": "Navigation", + "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", + "OptionOtherTrailers": "Include trailers from older movies", + "HeaderOverview": "Overview", + "HeaderShortOverview": "Short Overview", + "HeaderType": "Type", + "OptionReportActivities": "Activities Log", + "HeaderTunerDevices": "Tuner Devices", + "HeaderAddDevice": "Add Device", + "HeaderExternalServices": "External Services", + "LabelTunerIpAddress": "Tuner IP Address:", + "TabExternalServices": "External Services", + "HeaderGuideProviders": "Guide Providers", + "AddGuideProviderHelp": "Add a source for TV Guide information", + "LabelZipCode": "Zip Code:", + "GuideProviderSelectListings": "Select Listings", + "GuideProviderLogin": "Login", + "LabelLineup": "Lineup:", + "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", + "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", + "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", + "ButtonRepeat": "Repeat", + "LabelEnableThisTuner": "Enable this tuner", + "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", + "HeaderImagePrimary": "Primary", + "HeaderImageBackdrop": "Backdrop", + "HeaderImageLogo": "Logo", + "HeaderUserPrimaryImage": "User Image", + "ButtonProfile": "Profile", + "ButtonProfileHelp": "Set your profile image and password.", + "HeaderHomeScreenSettings": "Home Screen settings", + "HeaderProfile": "Profile", + "HeaderLanguage": "Language", + "LabelTranscodingThreadCount": "Transcoding thread count:", + "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.", + "OptionMax": "Max", + "LabelSyncPath": "Synced content path:", + "OptionSyncOnlyOnWifi": "Sync only on Wifi", + "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", + "HeaderUpcomingForKids": "Upcoming for Kids", + "HeaderSetupLiveTV": "Setup Live TV", + "LabelTunerType": "Tuner type:", + "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", + "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", + "HeaderSetupTVGuide": "Setup TV Guide", + "LabelDataProvider": "Data provider:", + "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", + "HeaderDefaultRecordingSettings": "Default Recording Settings", + "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", + "HeaderSubtitles": "Subtitles", + "HeaderVideos": "Videos", + "LabelHardwareAccelerationType": "Hardware acceleration:", + "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "ButtonServerDashboard": "Server Dashboard", + "HeaderAdmin": "Admin", + "ButtonSignOut": "Sign out", + "HeaderCameraUpload": "Camera Upload", + "SelectCameraUploadServers": "Upload camera photos to the following servers:", + "ButtonClear": "Clear", + "LabelFolder": "Folder:", + "HeadersFolders": "Folders", + "LabelDisplayName": "Display name:", + "HeaderNewRecording": "New Recording", + "LabelCodecIntrosPath": "Codec intros path:", + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", + "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", + "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", + "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", + "FileExtension": "File extension", + "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", + "OptionDownloadImagesInAdvance": "Download images in advance", + "SettingsSaved": "Settings saved.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", + "Users": "Users", + "Delete": "Delete", + "Password": "Password", + "DeleteImage": "Delete Image", + "MessageThankYouForSupporting": "Thank you for supporting Emby.", + "DeleteImageConfirmation": "Are you sure you wish to delete this image?", + "FileReadCancelled": "The file read has been canceled.", + "FileNotFound": "File not found.", + "FileReadError": "An error occurred while reading the file.", + "DeleteUser": "Delete User", + "DeleteUserConfirmation": "Are you sure you wish to delete this user?", + "PasswordResetHeader": "Reset Password", + "PasswordResetComplete": "The password has been reset.", + "PinCodeResetComplete": "The pin code has been reset.", + "PasswordResetConfirmation": "Are you sure you wish to reset the password?", + "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", + "HeaderPinCodeReset": "Reset Pin Code", + "PasswordSaved": "Password saved.", + "PasswordMatchError": "Password and password confirmation must match.", + "UninstallPluginHeader": "Uninstall Plugin", + "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", + "NoPluginConfigurationMessage": "This plugin has no settings to configure.", + "NoPluginsInstalledMessage": "You have no plugins installed.", + "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", + "HeaderNewApiKey": "New Api Key", + "LabelAppName": "App name", + "LabelAppNameExample": "Example: Sickbeard, NzbDrone", + "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", + "MessageKeyEmailedTo": "Key emailed to {0}.", + "MessageKeysLinked": "Keys linked.", + "HeaderConfirmation": "Confirmation", + "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", + "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", + "TextEnjoyBonusFeatures": "Enjoy Bonus Features", + "ButtonCancelSyncJob": "Cancel sync", + "HeaderAddTag": "Add Tag", + "LabelTag": "Tag:", + "ButtonSelectView": "Select view", + "HeaderSelectDate": "Select Date", + "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", + "LabelFromHelp": "Example: {0} (on the server)", + "HeaderMyMedia": "My Media", + "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", + "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", + "HeaderConfirmRemoveUser": "Remove User", + "ValueTimeLimitSingleHour": "Time limit: 1 hour", + "ValueTimeLimitMultiHour": "Time limit: {0} hours", + "PluginCategoryGeneral": "General", + "PluginCategoryContentProvider": "Content Providers", + "PluginCategoryScreenSaver": "Screen Savers", + "PluginCategoryTheme": "Themes", + "PluginCategorySync": "Sync", + "PluginCategorySocialIntegration": "Social Networks", + "PluginCategoryNotifications": "Notifications", + "PluginCategoryMetadata": "Metadata", + "PluginCategoryLiveTV": "Live TV", + "PluginCategoryChannel": "Channels", + "HeaderSearch": "Search", + "ValueDateCreated": "Date created: {0}", + "LabelArtist": "Artist", + "LabelMovie": "Movie", + "LabelMusicVideo": "Music Video", + "LabelEpisode": "Episode", + "Series": "Series", + "LabelStopping": "Stopping", + "LabelCancelled": "Cancelled", + "ButtonDownload": "Download", + "SyncJobStatusQueued": "Queued", + "SyncJobStatusConverting": "Converting", + "SyncJobStatusFailed": "Failed", + "SyncJobStatusCancelled": "Cancelled", + "SyncJobStatusCompleted": "Synced", + "SyncJobStatusReadyToTransfer": "Ready to Transfer", + "SyncJobStatusTransferring": "Transferring", + "SyncJobStatusCompletedWithError": "Synced with errors", + "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", + "LabelCollection": "Collection", + "HeaderDevices": "Devices", + "ButtonScheduledTasks": "Scheduled tasks", + "MessageItemsAdded": "Items added", + "HeaderSelectCertificatePath": "Select Certificate Path", + "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", + "HeaderWelcomeToProjectWebClient": "Welcome to Emby", + "ButtonTakeTheTour": "Take the tour", + "HeaderWelcomeBack": "Welcome back!", + "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", + "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", + "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "HeaderSelectDevices": "Select Devices", + "ButtonCancelItem": "Cancel item", + "ButtonQueueForRetry": "Queue for retry", + "ButtonReenable": "Re-enable", + "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", + "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", + "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", + "HeaderDeleteTaskTrigger": "Delete Task Trigger", + "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", + "MessageNoPluginsInstalled": "You have no plugins installed.", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", + "LabelVersionInstalled": "{0} installed", + "LabelNumberReviews": "{0} Reviews", + "LabelFree": "Free", + "HeaderPlaybackError": "Playback Error", + "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", + "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", + "MessagePlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", + "HeaderSelectAudio": "Select Audio", + "HeaderSelectSubtitles": "Select Subtitles", + "ButtonMarkForRemoval": "Remove from device", + "ButtonUnmarkForRemoval": "Cancel removal from device", + "LabelDefaultStream": "(Default)", + "LabelForcedStream": "(Forced)", + "LabelDefaultForcedStream": "(Default\/Forced)", + "LabelUnknownLanguage": "Unknown language", + "ButtonMute": "Mute", + "ButtonUnmute": "Unmute", + "ButtonPlaylist": "Playlist", + "LabelEnabled": "Enabled", + "LabelDisabled": "Disabled", + "ButtonMoreInformation": "More Information", + "LabelNoUnreadNotifications": "No unread notifications.", + "MessageInvalidUser": "Invalid username or password. Please try again.", + "HeaderLoginFailure": "Login Failure", + "RecommendationBecauseYouLike": "Because you like {0}", + "RecommendationBecauseYouWatched": "Because you watched {0}", + "RecommendationDirectedBy": "Directed by {0}", + "RecommendationStarring": "Starring {0}", + "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", + "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", + "MessageRecordingCancelled": "Recording cancelled.", + "MessageRecordingScheduled": "Recording scheduled.", + "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", + "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", + "MessageRecordingSaved": "Recording saved.", + "OptionWeekend": "Weekends", + "OptionWeekday": "Weekdays", + "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", + "LiveTvUpdateAvailable": "(Update available)", + "LabelVersionUpToDate": "Up to date!", + "ButtonResetTuner": "Reset tuner", + "HeaderResetTuner": "Reset Tuner", + "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", + "ButtonCancelSeries": "Cancel Series", + "HeaderSeriesRecordings": "Series Recordings", + "LabelAnytime": "Any time", + "StatusRecording": "Recording", + "StatusWatching": "Watching", + "StatusRecordingProgram": "Recording {0}", + "StatusWatchingProgram": "Watching {0}", + "HeaderSplitMedia": "Split Media Apart", + "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", + "HeaderError": "Error", + "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", + "HeaderLibraryFolders": "Media Folders", + "HeaderFavoriteMovies": "Favorite Movies", + "HeaderFavoriteShows": "Favorite Shows", + "HeaderFavoriteEpisodes": "Favorite Episodes", + "HeaderFavoriteGames": "Favorite Games", + "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", + "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", + "HeaderSelectServerCachePath": "Select Server Cache Path", + "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", + "HeaderSelectMetadataPath": "Select Metadata Path", + "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", + "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", + "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", + "HeaderFavoriteAlbums": "Favorite Albums", + "HeaderLatestChannelMedia": "Latest Channel Items", + "ButtonOrganizeFile": "Organize File", + "ButtonDeleteFile": "Delete File", + "HeaderOrganizeFile": "Organize File", + "HeaderDeleteFile": "Delete File", + "StatusSkipped": "Skipped", + "StatusFailed": "Failed", + "StatusSuccess": "Success", + "MessageFileWillBeDeleted": "The following file will be deleted:", + "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", + "MessageDuplicatesWillBeDeleted": "In addition the following duplicates will be deleted:", + "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", + "MessageDestinationTo": "to:", + "HeaderSelectWatchFolder": "Select Watch Folder", + "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", + "OrganizePatternResult": "Result: {0}", + "AutoOrganizeError": "Error Organizing File", + "FileOrganizeManually": "Organize File", + "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", + "HeaderRestart": "Restart", + "HeaderShutdown": "Shutdown", + "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", + "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", + "ValueItemCount": "{0} item", + "ValueItemCountPlural": "{0} items", + "NewVersionOfSomethingAvailable": "A new version of {0} is available!", + "VersionXIsAvailableForDownload": "Version {0} is now available for download.", + "LabelVersionNumber": "Version {0}", + "LabelPlayMethodTranscoding": "Transcoding", + "LabelPlayMethodDirectStream": "Direct Streaming", + "LabelPlayMethodDirectPlay": "Direct Playing", + "LabelAudioCodec": "Audio: {0}", + "LabelVideoCodec": "Video: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", + "LabelRunningOnPort": "Running on http port {0}.", + "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", + "HeaderLatestFromChannel": "Latest from {0}", + "ButtonRemoteControl": "Remote Control", + "HeaderLatestTvRecordings": "Latest Recordings", + "LabelCurrentPath": "Current path:", + "HeaderSelectMediaPath": "Select Media Path", + "HeaderSelectPath": "Select Path", + "ButtonNetwork": "Network", + "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", + "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", + "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Emby system user at least read access to your storage locations.", + "HeaderMenu": "Menu", + "ButtonOpen": "Open", + "ButtonShuffle": "Shuffle", + "ButtonResume": "Resume", + "HeaderAudioTracks": "Audio Tracks", + "HeaderLibraries": "Libraries", + "HeaderVideoQuality": "Video Quality", + "MessageErrorPlayingVideo": "There was an error playing the video.", + "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", + "ButtonDashboard": "Dashboard", + "ButtonReports": "Reports", + "MetadataManager": "Metadata Manager", + "HeaderTime": "Time", + "LabelAddedOnDate": "Added {0}", + "ButtonStart": "Start", + "OptionBlockOthers": "Others", + "OptionBlockTvShows": "TV Shows", + "OptionBlockTrailers": "Trailers", + "OptionBlockMusic": "Music", + "OptionBlockMovies": "Movies", + "OptionBlockBooks": "Books", + "OptionBlockGames": "Games", + "OptionBlockLiveTvPrograms": "Live TV Programs", + "OptionBlockLiveTvChannels": "Live TV Channels", + "OptionBlockChannelContent": "Internet Channel Content", + "ButtonRevoke": "Revoke", + "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", + "HeaderConfirmRevokeApiKey": "Revoke Api Key", + "ValueContainer": "Container: {0}", + "ValueAudioCodec": "Audio Codec: {0}", + "ValueVideoCodec": "Video Codec: {0}", + "ValueCodec": "Codec: {0}", + "ValueConditions": "Conditions: {0}", + "LabelAll": "All", + "HeaderDeleteImage": "Delete Image", + "MessageFileNotFound": "File not found.", + "MessageFileReadError": "An error occurred reading this file.", + "ButtonNextPage": "Next Page", + "ButtonPreviousPage": "Previous Page", + "ButtonMoveLeft": "Move left", + "ButtonMoveRight": "Move right", + "ButtonBrowseOnlineImages": "Browse online images", + "HeaderDeleteItem": "Delete Item", + "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", + "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", + "MessageItemSaved": "Item saved.", + "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", + "OptionOff": "Off", + "OptionOn": "On", + "ButtonUninstall": "Uninstall", + "HeaderEnabledFields": "Enabled Fields", + "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", + "HeaderLiveTV": "Live TV", + "MissingPrimaryImage": "Missing primary image.", + "MissingBackdropImage": "Missing backdrop image.", + "MissingLogoImage": "Missing logo image.", + "MissingEpisode": "Missing episode.", + "OptionBackdrops": "Backdrops", + "OptionImages": "Images", + "OptionKeywords": "Keywords", + "OptionTags": "Tags", + "OptionStudios": "Studios", + "OptionName": "Name", + "OptionOverview": "Overview", + "OptionGenres": "Genres", + "OptionPeople": "People", + "OptionProductionLocations": "Production Locations", + "OptionBirthLocation": "Birth Location", + "HeaderChangeFolderType": "Change Content Type", + "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", + "HeaderAlert": "Alert", + "MessagePleaseRestart": "Please restart to finish updating.", + "ButtonHide": "Hide", + "MessageSettingsSaved": "Settings saved.", + "TabLibrary": "Library", + "TabDLNA": "DLNA", + "TabLiveTV": "Live TV", + "TabAutoOrganize": "Auto-Organize", + "TabPlugins": "Plugins", + "TabHelp": "Help", + "ButtonFullscreen": "Fullscreen", + "ButtonAudioTracks": "Audio Tracks", + "ButtonQuality": "Quality", + "HeaderNotifications": "Notifications", + "HeaderSelectPlayer": "Select Player", + "HeaderVideoError": "Video Error", + "ButtonViewSeriesRecording": "View series recording", + "HeaderSpecials": "Specials", + "HeaderTrailers": "Trailers", + "HeaderResolution": "Resolution", + "HeaderRuntime": "Runtime", + "HeaderParentalRating": "Parental rating", + "HeaderReleaseDate": "Release date", + "HeaderSeries": "Series", + "HeaderSeason": "Season", + "HeaderSeasonNumber": "Season number", + "HeaderNetwork": "Network", + "HeaderYear": "Year", + "HeaderGameSystem": "Game system", + "HeaderEmbeddedImage": "Embedded image", + "HeaderTrack": "Track", + "OptionCollections": "Collections", + "OptionSeries": "Series", + "OptionSeasons": "Seasons", + "OptionGames": "Games", + "OptionGameSystems": "Game systems", + "OptionMusicArtists": "Music artists", + "OptionMusicAlbums": "Music albums", + "OptionMusicVideos": "Music videos", + "OptionSongs": "Songs", + "OptionHomeVideos": "Home videos & photos", + "OptionBooks": "Books", + "ButtonUp": "Up", + "ButtonDown": "Down", + "LabelMetadataReaders": "Metadata readers:", + "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", + "LabelMetadataDownloaders": "Metadata downloaders:", + "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", + "LabelMetadataSavers": "Metadata savers:", + "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", + "LabelImageFetchers": "Image fetchers:", + "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", + "LabelDynamicExternalId": "{0} Id:", + "PersonTypePerson": "Person", + "OptionSortName": "Sort name", + "LabelDateOfBirth": "Date of birth:", + "LabelDeathDate": "Death date:", + "HeaderRemoveMediaLocation": "Remove Media Location", + "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", + "LabelNewName": "New name:", + "HeaderRemoveMediaFolder": "Remove Media Folder", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", + "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", + "ButtonRename": "Rename", + "ButtonChangeContentType": "Change content type", + "HeaderMediaLocations": "Media Locations", + "LabelContentTypeValue": "Content type: {0}", + "FolderTypeUnset": "Unset (mixed content)", + "BirthPlaceValue": "Birth place: {0}", + "DeathDateValue": "Died: {0}", + "BirthDateValue": "Born: {0}", + "HeaderLatestReviews": "Latest Reviews", + "HeaderPluginInstallation": "Plugin Installation", + "MessageAlreadyInstalled": "This version is already installed.", + "ValueReviewCount": "{0} Reviews", + "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", + "MessageTrialExpired": "The trial period for this feature has expired", + "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", + "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", + "ValuePriceUSD": "Price: {0} (USD)", + "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", + "HeaderEmbyAccountAdded": "Emby Account Added", + "MessageEmbyAccountAdded": "The Emby account has been added to this user.", + "MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", + "HeaderEmbyAccountRemoved": "Emby Account Removed", + "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", + "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", + "HeaderUnrated": "Unrated", + "ValueDiscNumber": "Disc {0}", + "HeaderUnknownDate": "Unknown Date", + "HeaderUnknownYear": "Unknown Year", + "ValueMinutes": "{0} min", + "HeaderSelectExternalPlayer": "Select External Player", + "HeaderExternalPlayerPlayback": "External Player Playback", + "ButtonImDone": "I'm Done", + "OptionWatched": "Watched", + "OptionUnwatched": "Unwatched", + "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", + "LabelMarkAs": "Mark as:", + "OptionInProgress": "In-Progress", + "LabelResumePoint": "Resume point:", + "ValueOneMovie": "1 movie", + "ValueMovieCount": "{0} movies", + "ValueOneTrailer": "1 trailer", + "ValueTrailerCount": "{0} trailers", + "ValueOneSeries": "1 series", + "ValueSeriesCount": "{0} series", + "ValueOneEpisode": "1 episode", + "ValueEpisodeCount": "{0} episodes", + "ValueOneGame": "1 game", + "ValueGameCount": "{0} games", + "ValueOneAlbum": "1 album", + "ValueAlbumCount": "{0} albums", + "ValueOneSong": "1 song", + "ValueSongCount": "{0} songs", + "ValueOneMusicVideo": "1 music video", + "ValueMusicVideoCount": "{0} music videos", + "HeaderOffline": "Offline", + "HeaderUnaired": "Unaired", + "HeaderMissing": "Missing", + "ButtonWebsite": "Website", + "ValueSeriesYearToPresent": "{0} - Present", + "ValueAwards": "Awards: {0}", + "ValuePremiered": "Premiered {0}", + "ValuePremieres": "Premieres {0}", + "ValueStudio": "Studio: {0}", + "ValueStudios": "Studios: {0}", + "ValueStatus": "Status: {0}", + "LabelLimit": "Limit:", + "ValueLinks": "Links: {0}", + "HeaderCastAndCrew": "Cast & Crew", + "ValueArtist": "Artist: {0}", + "ValueArtists": "Artists: {0}", + "MediaInfoCameraMake": "Camera make", + "MediaInfoCameraModel": "Camera model", + "MediaInfoAltitude": "Altitude", + "MediaInfoAperture": "Aperture", + "MediaInfoExposureTime": "Exposure time", + "MediaInfoFocalLength": "Focal length", + "MediaInfoOrientation": "Orientation", + "MediaInfoIsoSpeedRating": "Iso speed rating", + "MediaInfoLatitude": "Latitude", + "MediaInfoLongitude": "Longitude", + "MediaInfoShutterSpeed": "Shutter speed", + "MediaInfoSoftware": "Software", + "HeaderMoreLikeThis": "More Like This", + "HeaderMovies": "Movies", + "HeaderAlbums": "Albums", + "HeaderGames": "Games", + "HeaderBooks": "Books", + "HeaderEpisodes": "Episodes", + "HeaderSeasons": "Seasons", + "HeaderTracks": "Tracks", + "HeaderItems": "Items", + "HeaderOtherItems": "Other Items", + "ButtonFullReview": "Full review", + "ValueAsRole": "as {0}", + "ValueGuestStar": "Guest star", + "MediaInfoSize": "Size", + "MediaInfoPath": "Path", + "MediaInfoFile": "File", + "MediaInfoFormat": "Format", + "MediaInfoContainer": "Container", + "MediaInfoDefault": "Default", + "MediaInfoForced": "Forced", + "MediaInfoExternal": "External", + "MediaInfoTimestamp": "Timestamp", + "MediaInfoPixelFormat": "Pixel format", + "MediaInfoBitDepth": "Bit depth", + "MediaInfoSampleRate": "Sample rate", + "MediaInfoBitrate": "Bitrate", + "MediaInfoChannels": "Channels", + "MediaInfoLayout": "Layout", + "MediaInfoLanguage": "Language", + "MediaInfoCodec": "Codec", + "MediaInfoCodecTag": "Codec tag", + "MediaInfoProfile": "Profile", + "MediaInfoLevel": "Level", + "MediaInfoAspectRatio": "Aspect ratio", + "MediaInfoResolution": "Resolution", + "MediaInfoAnamorphic": "Anamorphic", + "MediaInfoInterlaced": "Interlaced", + "MediaInfoFramerate": "Framerate", + "MediaInfoStreamTypeAudio": "Audio", + "MediaInfoStreamTypeData": "Data", + "MediaInfoStreamTypeVideo": "Video", + "MediaInfoStreamTypeSubtitle": "Subtitle", + "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", + "MediaInfoRefFrames": "Ref frames", + "TabExpert": "Expert", + "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", + "HeaderThankYou": "Thank You", + "LabelFullReview": "Full review:", + "ReleaseYearValue": "Release year: {0}", + "OriginalAirDateValue": "Original air date: {0}", + "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", + "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", + "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", + "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", + "WebClientTourMetadataManager": "Click edit to open the metadata manager", + "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", + "WebClientTourCollections": "Create movie collections to group box sets together", + "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", + "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", + "WebClientTourUserPreferences3": "Design the web client home page to your liking", + "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", + "WebClientTourMobile1": "The web client works great on smartphones and tablets...", + "WebClientTourMobile2": "and easily controls other devices and Emby apps", + "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", + "MessageEnjoyYourStay": "Enjoy your stay", + "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", + "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", + "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", + "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", + "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", + "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", + "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", + "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", + "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", + "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", + "TabExtras": "Extras", + "HeaderUploadImage": "Upload Image", + "DeviceLastUsedByUserName": "Last used by {0}", + "HeaderDeleteDevice": "Delete Device", + "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", + "LabelEnableCameraUploadFor": "Enable camera upload for:", + "HeaderSelectUploadPath": "Select Upload Path", + "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", + "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", + "ButtonLibraryAccess": "Library access", + "ButtonParentalControl": "Parental control", + "HeaderInvitationSent": "Invitation Sent", + "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", + "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", + "HeaderConnectionFailure": "Connection Failure", + "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", + "ButtonSelectServer": "Select Server", + "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", + "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", + "DefaultErrorMessage": "There was an error processing the request. Please try again later.", + "ButtonAccept": "Accept", + "ButtonReject": "Reject", + "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", + "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", + "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", + "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", + "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", + "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", + "ButtonLinkMyEmbyAccount": "Link my account now", + "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", + "SyncMedia": "Sync Media", + "HeaderCancelSyncJob": "Cancel Sync", + "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", + "LabelQuality": "Quality:", + "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", + "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", + "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", + "SyncJobItemStatusQueued": "Queued", + "SyncJobItemStatusConverting": "Converting", + "SyncJobItemStatusTransferring": "Transferring", + "SyncJobItemStatusSynced": "Synced", + "SyncJobItemStatusFailed": "Failed", + "SyncJobItemStatusRemovedFromDevice": "Removed from device", + "SyncJobItemStatusCancelled": "Cancelled", + "LabelProfile": "Profile:", + "LabelBitrateMbps": "Bitrate (Mbps):", + "EmbyIntroDownloadMessage": "To download and install the free Emby Server visit {0}.", + "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.", + "ButtonNewServer": "New Server", + "MyDevice": "My Device", + "ButtonRemote": "Remote", + "TabCast": "Cast", + "TabScenes": "Scenes", + "HeaderUnlockApp": "Unlock App", + "HeaderUnlockSync": "Unlock Emby Sync", + "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", + "OptionEnableFullscreen": "Enable Fullscreen", + "ButtonServer": "Server", + "HeaderLibrary": "Library", + "HeaderMedia": "Media", + "NoResultsFound": "No results found.", + "ButtonManageServer": "Manage Server", + "ButtonPreferences": "Preferences", + "ButtonViewArtist": "View artist", + "ButtonViewAlbum": "View album", + "ButtonEditImages": "Edit images", + "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", + "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", + "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", + "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", + "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "ButtonShare": "Share", + "HeaderConfirm": "Confirm", + "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", + "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", + "HeaderDeleteProvider": "Delete Provider", + "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", + "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", + "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", + "MessageCreateAccountAt": "Create an account at {0}", + "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", + "HeaderTryEmbyPremiere": "Try Emby Premiere", + "OptionEnableDisplayMirroring": "Enable display mirroring", + "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", + "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", + "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", + "LabelLocalSyncStatusValue": "Status: {0}", + "MessageSyncStarted": "Sync started", + "OptionBackdropSlideshow": "Backdrop slideshow", + "HeaderTopPlugins": "Top Plugins", + "ButtonOther": "Andere", + "HeaderSortBy": "Sortieren nach", + "HeaderSortOrder": "Sort Order", + "ButtonDisconnect": "Disconnect", + "ButtonMenu": "Men\u00fc", + "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", + "ButtonGuide": "Guide", + "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", + "ButtonYes": "Ja", + "AddUser": "Add User", + "ButtonNo": "Nein", + "ButtonNowPlaying": "Now Playing", + "HeaderLatestMovies": "Latest Movies", + "HeaderEmailAddress": "E-Mail Adresse", + "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", + "TermsOfUse": "Terms of use", + "NumLocationsValue": "{0} folders", + "ButtonAddMediaLibrary": "Add Media Library", + "ButtonManageFolders": "Verwalte Ordner", + "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", + "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", + "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", + "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.", + "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", + "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", + "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "HeaderFavoriteArtists": "Favorite Artists", + "HeaderFavoriteSongs": "Favorite Songs", + "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", + "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", + "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", + "HeaderMobileSync": "Mobile Sync", + "HeaderCloudSync": "Cloud Sync", + "HeaderFreeApps": "Free Emby Apps", + "CoverArt": "Cover Art", + "ButtonOff": "Off", + "TitleHardwareAcceleration": "Hardwarebeschleunigung", + "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", + "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", + "ValueExample": "13:00", + "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", + "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", + "LabelFileOrUrl": "Datei oder URL:", + "OptionEnableForAllTuners": "Enable for all tuner devices", + "HeaderTuners": "Tuners", + "LabelOptionalM3uUrl": "M3U url (optional):", + "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", + "TabResumeSettings": "Resume Settings", + "DrmChannelsNotImported": "Channels with DRM will not be imported.", + "LabelAllowHWTranscoding": "Allow hardware transcoding", + "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", + "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", + "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.", + "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.", + "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", + "Yesterday": "Gestern", + "DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", + "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", + "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", + "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", + "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", + "HeaderHealthMonitor": "Health Monitor", + "HealthMonitorNoAlerts": "There are no active alerts.", + "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", + "VisualLoginFormHelp": "Benutzer w\u00e4hlen oder manuell anmelden", + "LabelSportsCategories": "Sports categories:", + "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", + "LabelNewsCategories": "News categories:", + "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", + "LabelKidsCategories": "Children's categories:", + "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", + "LabelMovieCategories": "Movie categories:", + "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", + "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", + "LabelBindToLocalNetworkAddress": "Bind to local network address:", + "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", + "TitleHostingSettings": "Hosting Settings", + "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", + "MapChannels": "Map Channels", + "LabelffmpegPath": "FFmpeg path:", + "LabelffmpegVersion": "FFmpeg version:", + "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", + "SetupFFmpeg": "Setup FFmpeg", + "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", + "EnterFFmpegLocation": "Enter FFmpeg path", + "DownloadFFmpeg": "Download FFmpeg", + "FFmpegSuggestedDownload": "Suggested download: {0}", + "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", + "OptionUseSystemInstalledVersion": "Use system installed version", + "OptionUseMyCustomVersion": "Use a custom version", + "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", + "XmlTvPremiere": "By default, Emby will import {0} hours of guide data. Importing unlimited data requires an active Emby Premiere subscription.", + "MoreFromValue": "More from {0}", + "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", + "EnablePhotos": "Enable photos", + "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", + "MakeAvailableOffline": "Make available offline", + "ConfirmRemoveDownload": "Remove download?", + "RemoveDownload": "Remove download", + "SyncToOtherDevices": "Sync to other devices", + "ManageOfflineDownloads": "Manage offline downloads", + "MessageDownloadScheduled": "Download scheduled", + "RememberMe": "Remember me", + "HeaderOfflineSync": "Offline Sync", + "LabelMaxAudioFileBitrate": "Max audio file bitrate:", + "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", + "LabelVaapiDevice": "VA API Device:", + "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", + "HowToConnectFromEmbyApps": "How to Connect from Emby apps", + "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", + "OptionExtractChapterImage": "Enable chapter image extraction", + "Downloads": "Downloads", + "LabelEnableDebugLogging": "Enable debug logging", + "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", + "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", + "LabelH264EncodingPreset": "H264 encoding preset:", + "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", + "LabelH264Crf": "H264 encoding CRF:", + "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", + "Sports": "Sports", + "HeaderForKids": "For Kids", + "HeaderRecordingGroups": "Recording Groups", + "LabelConvertRecordingsTo": "Convert recordings to:", + "HeaderUpcomingOnTV": "Upcoming On TV", + "LabelOptionalNetworkPath": "(Optional) Shared network folder:", + "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", + "ButtonPlayExternalPlayer": "Play with external player", + "NotScheduledToRecord": "Not scheduled to record", + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." +} \ No newline at end of file diff --git a/dashboard-ui/strings/de.json b/dashboard-ui/strings/de.json index 16dad85ecb..4d6c59dfc7 100644 --- a/dashboard-ui/strings/de.json +++ b/dashboard-ui/strings/de.json @@ -1,8 +1,6 @@ { - "LabelExit": "Beenden", - "LabelApiDocumentation": "Api Dokumentation", - "LabelBrowseLibrary": "Bibliothek durchsuchen", - "LabelConfigureServer": "Konfiguriere Emby", + "OptionAutomaticallyGroupSeriesHelp": "Wenn aktiviert, werden Inhalte einer Serie in verschiedenen Ordnern innerhalb einer Bibliothek als eine Serie angezeigt.", + "OptionAutomaticallyGroupSeries": "Vermische Serieninhalte, die in verschiedenen Ordnern abgelegt sind.", "LabelPrevious": "Vorheriges", "LabelFinish": "Fertig", "LabelNext": "N\u00e4chstes", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Vorname:", "MoreUsersCanBeAddedLater": "Weitere Benutzer k\u00f6nnen sp\u00e4ter \u00fcber die Optionsleiste hinzugef\u00fcgt werden.", "UserProfilesIntro": "Emby bietet von Haus aus Unterst\u00fctzung von Benutzerprofilen, die ihre eigenen Ansichten, Altersfreigaben und Spielst\u00e4nde von Medien kontrollieren k\u00f6nnen.", - "LabelWindowsService": "Windows Dienst", - "AWindowsServiceHasBeenInstalled": "Ein Windows Dienst wurde installiert.", - "WindowsServiceIntro1": "Emby Server l\u00e4uft normalerweise als Desktop-Anwendung mit einem Icon in der Anwendungsanzeige. Wenn Sie es lieber als Hintergrunddienst starten m\u00f6chten, so k\u00f6nnen Sie den Server \u00fcber die Windows Dienste starten.", - "WindowsServiceIntro2": "Wenn Sie Emby als Windows Dienst verwenden m\u00f6chten, beachten Sie bitte, dass die gleichzeitige Verwendung des Benchrichtigungssymbols nicht m\u00f6glich ist. Um den Service zu starten muss das Benachrichtigungssymbol geschlossen werden. Der Service ben\u00f6tigt dar\u00fcberhinaus administrative Rechte. Wenn Sie Emby als Dienst starten, stellen Sie bitte sicher, dass das verwendete Konto die notwendigen Rechte zum Zugriff auf Ihre Medienverzeichnisse hat.", "WizardCompleted": "Das ist alles was wir bis jetzt brauchen. Emby hat nun angefangen Informationen \u00fcber Ihre Medienbibliothek zu sammeln. Schauen dir doch ein paar unserer Apps an und klicke dann auf Fertig<\/b> um das Server Dashboard<\/b> anzuzeigen.", "LabelConfigureSettings": "Konfiguriere Einstellungen", - "LabelEnableAutomaticPortMapping": "Aktiviere automatische Portweiterleitung", - "LabelEnableAutomaticPortMappingHelp": "UPnP erm\u00f6glicht die automatische Routerkonfiguration f\u00fcr den einfachen Remote-Zugriff. Diese Option ist nicht f\u00fcr jeden Router verf\u00fcgbar.", "HeaderTermsOfService": "Emby Nutzungsbedingungen", "MessagePleaseAcceptTermsOfService": "Bitte akzeptieren Sie die Nutzungsbedingungen & Datenschutzbestimmungen bevor Sie fortfahren.", "OptionIAcceptTermsOfService": "Ich akzeptiere die Nutzungsbedingungen", "ButtonPrivacyPolicy": "Datenschutzbestimmungen", "ButtonTermsOfService": "Nutzungsbedingungen", - "HeaderDeveloperOptions": "Entwickleroptionen", - "OptionEnableWebClientResponseCache": "Aktiviere das Zwischenspeichern von Web-Antworten", - "OptionDisableForDevelopmentHelp": "Konfigurieren Sie diese f\u00fcr den Zweck einer Web Entwicklung als ben\u00f6tigt.", - "OptionEnableWebClientResourceMinification": "Aktiviere Web-Ressourcenminimierung", - "LabelDashboardSourcePath": "Web Client Quellverzeichnis:", - "LabelDashboardSourcePathHelp": "Wenn der Server vom Quellverzeichnis aus ausgef\u00fchrt wird, gib den Pfad zur Dashboard Oberfl\u00e4che an. Alle Web-Client-Dateien werden von diesem Pfad aus bedient werden.", "ButtonConvertMedia": "Konvertiere Medien", "ButtonOrganize": "Organisieren", "HeaderSupporterBenefits": "Emby Premium Vorteile", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Um einen Benutzer hinzuzuf\u00fcgen, der nicht angezeigt wird, muss dieser zuerst im Benutzerprofil mit Emby Connect verkn\u00fcpft werden.", "LabelPinCode": "PIN Code:", "OptionHideWatchedContentFromLatestMedia": "Verberge gesehene Inhalte von neuesten Medien.", + "DeleteMedia": "Medien l\u00f6schen", "HeaderSync": "Synchronisation", "ButtonOk": "Ok", "ButtonCancel": "Abbrechen", "ButtonExit": "Beenden", "ButtonNew": "Neu", + "OptionDev": "Entwickler", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Aufgabenausl\u00f6ser", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Um Zugang zu erhalten, geben Sie bitte Ihren einfachen PIN Code ein", "ButtonConfigurePinCode": "PIN Code festlegen", "RegisterWithPayPal": "Registrieren mit PayPal", - "HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion", "LabelSyncTempPath": "Verzeichnis f\u00fcr tempor\u00e4re Dateien", "LabelSyncTempPathHelp": "Legen Sie ein Arbeitsverzeichnis f\u00fcr die Synchronisation fest. Konvertierte Medien werden w\u00e4hrend der Synchronisation hier gespeichert.", "LabelCustomCertificatePath": "Eigener Zertifikatsordner:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Wenn aktiviert, werden Dateien mit der Erweiterung .rar und .zip als Medien erkannt.", "LabelEnterConnectUserName": "Benutzername oder Email:", "LabelEnterConnectUserNameHelp": "Dies ist Ihr Emby online Benutzername oder Email.", - "LabelEnableEnhancedMovies": "Aktiviere erweiterte Filmdarstellung.", - "LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.", "HeaderSyncJobInfo": "Synchronisationsaufgabe", "FolderTypeMixed": "Gemischter Inhalt", "FolderTypeMovies": "Filme", @@ -84,7 +70,6 @@ "LabelContentType": "Typ des Inhalts:", "TitleScheduledTasks": "Geplante Aufgaben", "HeaderSetupLibrary": "Medienbibliotheken einrichten", - "ButtonAddMediaFolder": "Medienverzeichnis hinzuf\u00fcgen", "LabelFolderType": "Verzeichnistyp:", "LabelCountry": "Land:", "LabelLanguage": "Sprache:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Durch die Speicherung von Bildmaterial und Metadaten direkt in den Medienverzeichnissen, befinden sich diese an einem Ort wo sie sehr leicht bearbeitet werden k\u00f6nnen.", "LabelDownloadInternetMetadata": "Lade Bildmaterial und Metadaten aus dem Internet", "LabelDownloadInternetMetadataHelp": "Emby Server kann Informationen \u00fcber Ihre Medien herunterladen um deren Pr\u00e4sentation aufzuwerten.", - "TabPreferences": "Einstellungen", "TabPassword": "Passwort", "TabLibraryAccess": "Bibliothekenzugriff", "TabAccess": "Zugang", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Erlaube Zugriff auf alle Bibliotheken", "DeviceAccessHelp": "Dies wird nur auf Ger\u00e4te angewandt die eindeutig identifiziert werden k\u00f6nnen und verhindert nicht den Web-Zugriff. Gefilterter Zugriff auf Ger\u00e4te verhindert die Nutzung neuer Ger\u00e4te solange, bis der Zugriff f\u00fcr diese freigegeben wird.", "LabelDisplayMissingEpisodesWithinSeasons": "Zeige fehlende Episoden innerhalb von Staffeln", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Dies sollte f\u00fcr Serien in der Bibliothek in den Emby Einstellungen aktiviert sein.", "LabelUnairedMissingEpisodesWithinSeasons": "Zeige noch nicht ausgestahlte Episoden innerhalb von Staffeln", + "ImportMissingEpisodesHelp": "Wenn aktiviert, werden Informationen \u00fcber fehlende Episoden in Deine Emby Datenbank importiert und innerhalb von Staffeln angezeigt. Dies kann zu deutlich l\u00e4ngeren Bibliothek Scans f\u00fchren.", "HeaderVideoPlaybackSettings": "Videowiedergabe Einstellungen", + "OptionDownloadInternetMetadataTvPrograms": "Lade Metadaten f\u00fcr Programme im TV Guide herunter", "HeaderPlaybackSettings": "Wiedergabe Einstellungen", "LabelAudioLanguagePreference": "Audiosprach-Einstellungen:", "LabelSubtitleLanguagePreference": "Untertitelsprach-Einstellungen:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Seitenverh\u00e4ltnis empfohlen. Nur JPG\/PNG.", "MessageNothingHere": "Nichts hier.", "MessagePleaseEnsureInternetMetadata": "Bitte sicherstellen, dass das Herunterladen von Internet Metadaten aktiviert ist.", - "TabSuggested": "Empfohlen", + "AlreadyPaidHelp1": "Wenn Sie bereits f\u00fcr die Installation einer \u00e4lteren Version von Media Browser f\u00fcr Android gezahlt haben, m\u00fcssen Sie f\u00fcr eine Freischaltung nicht erneut zahlen. Bet\u00e4tigen Sie OK um uns eine Email an {0} zu senden. Wir werden die App dann f\u00fcr Sie freischalten.", + "AlreadyPaidHelp2": "Sie haben Emby Premiere? Dann beenden Sie diesen Dialog, richten Sie Emby Premiere in Ihrem Emby Server Dashboard unter Hilfe -> Emby Premiere ein und eine Freischaltung erfolgt automatisch.", "TabSuggestions": "Empfehlungen", "TabLatest": "Neueste", "TabUpcoming": "Bevorstehend", "TabShows": "Serien", "TabEpisodes": "Episoden", "TabGenres": "Genres", - "TabPeople": "Personen", "TabNetworks": "Sendergruppen", "HeaderUsers": "Benutzer", "HeaderFilters": "Filter", @@ -166,6 +153,7 @@ "OptionWriters": "Drehbuchautor", "OptionProducers": "Produzent", "HeaderResume": "Fortsetzen", + "HeaderContinueWatching": "Weiterschauen", "HeaderNextUp": "Als N\u00e4chstes", "NoNextUpItemsMessage": "Es wurde nichts gefunden. Schau dir deine Shows an!", "HeaderLatestEpisodes": "Neueste Episoden", @@ -185,6 +173,7 @@ "OptionPlayCount": "Z\u00e4hler", "OptionDatePlayed": "Abgespielt am", "OptionDateAdded": "Hinzugef\u00fcgt am", + "DateAddedValue": "Hinzugef\u00fcgt am: {0}", "OptionAlbumArtist": "Album-Interpret", "OptionArtist": "Interpret", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Kann fortgesetzt werden", "ScheduledTasksHelp": "Klicke auf eine Aufgabe um deren Zeitplan zu \u00e4ndern.", - "ScheduledTasksTitle": "Geplante Aufgaben", "TabMyPlugins": "Meine Plugins", "TabCatalog": "Katalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Neueste Songs", "HeaderRecentlyPlayed": "Zuletzt gespielt", "HeaderFrequentlyPlayed": "Oft gespielt", - "DevBuildWarning": "Dev Builds sind experimentell. Oft wurden diese ver\u00f6ffentlichten Builds vorher nicht getestet. Das Programm kann abst\u00fcrzen und m\u00f6glicherweise k\u00f6nnen einzelne Funktionen nicht funktionieren.", "LabelVideoType": "Video Typ:", "OptionBluray": "Bluray", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Hilfreich f\u00fcr private oder versteckte Administrator-Konten. Der Benutzer muss sich manuell mit der Eingabe des Benutzernamens und Passworts anmelden.", "OptionDisableUser": "Sperre diesen Benutzer", "OptionDisableUserHelp": "Wenn deaktiviert wird der Server keine Verbindung von diesem Benutzer erlauben. Bestehende Verbindungen werden sofort beendet.", - "HeaderAdvancedControl": "Erweiterte Kontrolle", "LabelName": "Name:", "ButtonHelp": "Hilfe", "OptionAllowUserToManageServer": "Dieser Benutzer kann den Server managen", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA-Ger\u00e4te werden gemeinsam genutzt, bis ein Benutzer die Steuerung \u00fcbernimmt.", "OptionAllowLinkSharing": "Erlaube das Teilen in sozialen Netzwerken", "OptionAllowLinkSharingHelp": "Es werden nur Web-Seiten mit Medieninformationen geteilt. Medien hingenen werden niemals \u00f6ffentlich geteilt. Die geteilten Inhalte sind nur begrenzt zug\u00e4nglich werden nach {0} Tagen ung\u00fcltig.", - "HeaderSharing": "Teilen", "HeaderRemoteControl": "Fernsteuerung", "OptionMissingTmdbId": "Fehlende Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Pfade", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Erweitert", "OptionRelease": "Offizielles Release", - "OptionBeta": "Beta", - "OptionDev": "Entwickler", "LabelAllowServerAutoRestart": "Erlaube dem Server sich automatisch neuzustarten, um Updates durchzuf\u00fchren.", "LabelAllowServerAutoRestartHelp": "Der Server startet nur in benutzerfreien Leerlaufzeiten neu.", "LabelRunServerAtStartup": "Starte Server beim hochfahren.", @@ -330,11 +312,9 @@ "TabGames": "Spiele", "TabMusic": "Musik", "TabOthers": "Andere", - "HeaderExtractChapterImagesFor": "Speichere Kapitelbilder f\u00fcr:", "OptionMovies": "Filme", "OptionEpisodes": "Episoden", "OptionOtherVideos": "Andere Filme", - "TitleMetadata": "Metadaten", "LabelFanartApiKey": "Pers\u00f6nlicher API Schl\u00fcssel:", "LabelFanartApiKeyHelp": "Fanart Anfragen ohne einen pers\u00f6nlichen API Schl\u00fcssel liefert Bilder der letzten 7 Tage. Bei Verwendung eines pers\u00f6nlichen API Schl\u00fcssels werden Ergebnisse der letzten 48 Stunden, und als VIP Member, der letzten 10 Minuten geliefert.", "ExtractChapterImagesHelp": "Das Extrahieren von Kapitel-Bildern erm\u00f6glicht es Emby-Apps eine grafische Szenenauswahl anzubieten. Das Erstellen ist recht langsam, rechenintensiv und erfordert ggf. einige Gigabyte an freien Speicherplatz. Diese Aufgabe startet wenn neue Videos erkannt werden und ebenso als eine n\u00e4chtliche Aufgabe. Es wird nicht empfohlen diese Aufgabe in Zeiten hoher Server-Auslastung zu starten.", @@ -350,15 +330,15 @@ "TabCollections": "Sammlungen", "HeaderChannels": "Kan\u00e4le", "TabRecordings": "Aufnahmen", - "TabScheduled": "Geplant", "TabSeries": "Serie", "TabFavorites": "Favoriten", "TabMyLibrary": "Meine Bibliothek", "ButtonCancelRecording": "Aufnahme abbrechen", - "LabelPrePaddingMinutes": "Minuten vor der Aufnahme", - "LabelPostPaddingMinutes": "Pufferminuten nach der Aufnahme", + "LabelStartWhenPossible": "Wenn m\u00f6glich starte:", + "LabelStopWhenPossible": "Wenn m\u00f6chte stoppe:", + "MinutesBefore": "Minuten vorher", + "MinutesAfter": "Minuten danach", "HeaderWhatsOnTV": "Was gibts", - "TabStatus": "Status", "TabSettings": "Einstellungen", "ButtonRefreshGuideData": "Aktualisiere TV-Programmdaten", "ButtonRefresh": "Aktualisieren", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Auf allen Kan\u00e4len aufzeichnen", "OptionRecordAnytime": "Zu jeder Zeit aufzeichnen", "OptionRecordOnlyNewEpisodes": "Nehme nur neue Episoden auf", - "HeaderRepeatingOptions": "Wiederholungs Einstellungen", "HeaderDays": "Tage", "HeaderActiveRecordings": "Aktive Aufnahmen", "HeaderLatestRecordings": "Neueste Aufnahmen", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Neueste Spiele", "HeaderRecentlyPlayedGames": "Zuletzt gespielte Spiele", "TabGameSystems": "Spielsysteme", - "TitleMediaLibrary": "Medienbibliothek", "TabFolders": "Verzeichnisse", "TabPathSubstitution": "Pfadersetzung", "LabelSeasonZeroDisplayName": "Anzeigename f\u00fcr Season 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Spalte Versionen ab", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Fehlend", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Pfadsubstitutionen werden zum Ersetzen eines Serverpfades durch einen Netzwerkpfad genutzt, auf den Emby-Apps direkt zugreifen k\u00f6nnen. Weil Emby-Apps direkten Zugang zu den Medien auf dem Server haben, sind diese in der Lage die Medien direkt \u00fcber das Netzwerk abzuspielen um die Nutzung von Server-Ressourcen f\u00fcr das transkodieren von Streams zu vermeiden.", - "HeaderFrom": "Von", - "HeaderTo": "Nach", - "LabelFrom": "Von:", - "LabelTo": "Nach:", - "LabelToHelp": "Beispiel: \\\\MeinServer\\Filme (Ein Pfad auf den Emby-Apps Zugriff haben)", - "ButtonAddPathSubstitution": "F\u00fcge Ersetzung hinzu", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Fehlende Episoden", "OptionUnairedEpisode": "Nicht ausgestrahlte Episoden", "OptionEpisodeSortName": "Episodensortiername", "OptionSeriesSortName": "Serien Name", "OptionTvdbRating": "Tvdb Bewertung", - "EditCollectionItemsHelp": "Entferne oder f\u00fcge alle Filme, Serien, Alben, B\u00fccher oder Spiele, die du in dieser Sammlung gruppieren willst hinzu.", "HeaderAddTitles": "Titel hinzuf\u00fcgen", "LabelEnableDlnaPlayTo": "Aktiviere DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby kann Ger\u00e4te in Ihrem Netzwerk erkennen und bietet Ihnen die M\u00f6glichkeit diese fernzusteuern.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Systemprofile", "CustomDlnaProfilesHelp": "Erstelle ein benutzerdefiniertes Profil f\u00fcr ein neues Zielger\u00e4t, oder um ein vorhandenes Systemprofil zu \u00fcberschreiben.", "SystemDlnaProfilesHelp": "Systemprofile sind schreibgesch\u00fctzt. \u00c4nderungen an einem Systemprofil werden als neues benutzerdefiniertes Profil gespeichert.", - "TitleDashboard": "\u00dcbersicht", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titel werden als \"nicht abgespielt\" eingetragen, wenn sie vor dieser Zeit gestoppt werden", "LabelMaxResumePercentageHelp": "Titel werden als \"vollst\u00e4ndig abgespielt\" eingetragen, wenn sie nach dieser Zeit gestoppt werden", "LabelMinResumeDurationHelp": "Titel die k\u00fcrzer als dieser Wert sind, werden nicht fortsetzbar sein", - "TitleAutoOrganize": "Autom. Organisation", "TabActivityLog": "Aktivit\u00e4tsverlauf", "TabSmartMatches": "Intelligente Zuordnung", "TabSmartMatchInfo": "Verwalten Sie ihre intelligenten Zuordnungen die im Berichtigungsdialog der Autoorganisation hinzugef\u00fcgt wurden", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Helfen Sie bei der fortlaufenden Entwicklung dieses Projekts durch den Kauf von Emby Premium. Ein Teil der Einnahmen gehen an andere kostenfreie Programme die wir ben\u00f6tigen.", "DonationNextStep": "Wenn Sie fertig sind, gehen Sie bitte zur\u00fcck und geben den Emby Premium Schl\u00fcssel ein, welchen Sie per E-Mail erhalten.", "AutoOrganizeHelp": "Die \"Auto-Organisation\" \u00fcberpr\u00fcft die Download-Verzeichnisse auf neue Dateien und verschiebt diese in die Medienverzeichnisse.", - "AutoOrganizeTvHelp": "TV Dateien Organisation wird nur Episoden zu bereits vorhandenen Serien hinzuf\u00fcgen. Es werden keine neuen Serien angelegt.", "OptionEnableEpisodeOrganization": "Aktiviere die Sortierung neuer Episoden", "LabelWatchFolder": "\u00dcberwachungsverzeichnis:", "LabelWatchFolderHelp": "Der Server wird dieses Verzeichnis, w\u00e4hrend der geplanten Aufgabe \"Organisiere neue Mediendateien\", abfragen.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Laufende Aufgaben", "HeaderActiveDevices": "Aktive Ger\u00e4te", "HeaderPendingInstallations": "Ausstehende Installationen", - "HeaderServerInformation": "Server Informationen", "ButtonRestartNow": "Jetzt neustarten", "ButtonRestart": "Neu starten", "ButtonShutdown": "Herunterfahren", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premium Schl\u00fcssel fehlt oder ist ung\u00fcltig.", "ErrorMessageInvalidKey": "Um einen Premium-Inhalt freizuschalten, wird ein aktives Emby Premium Abo ben\u00f6tigt.", "HeaderDisplaySettings": "Anzeige Einstellungen", - "TabPlayTo": "Spiele an", "LabelEnableDlnaServer": "Aktiviere DLNA Server", "LabelEnableDlnaServerHelp": "Erlaubt UPnP Ger\u00e4ten in Ihrem Netzwerk Zugriff und Wiedergabe von Emby Inhalten.", "LabelEnableBlastAliveMessages": "Erzeuge Alive Meldungen", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Legt die Dauer in Sekunden zwischen den Server Alive Meldungen fest.", "LabelDefaultUser": "Standardbenutzer", "LabelDefaultUserHelp": "Legt fest, welche Benutzerbibliothek auf verbundenen Ger\u00e4ten angezeigt werden soll. Dies kann f\u00fcr jedes Ger\u00e4t durch Profile \u00fcberschrieben werden.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Einstellungen", "HeaderRequireManualLogin": "Manuelle Eingabe des Benutzernamens bei:", "HeaderRequireManualLoginHelp": "Wenn deaktiviert, k\u00f6nnen Emby-Apps einen Anmeldebildschirm mit einer visuellen Auswahl der User anzeigen.", "OptionOtherApps": "Andere Apps", "OptionMobileApps": "Mobile Apps", - "HeaderNotificationList": "Klicken Sie auf eine Benachrichtigung f\u00fcr weitere Optionen.", - "NotificationOptionApplicationUpdateAvailable": "Anwendungsaktualisierung verf\u00fcgbar", - "NotificationOptionApplicationUpdateInstalled": "Anwendungsaktualisierung installiert", - "NotificationOptionPluginUpdateInstalled": "Pluginaktualisierung installiert", - "NotificationOptionPluginInstalled": "Plugin installiert", - "NotificationOptionPluginUninstalled": "Plugin deinstalliert", - "NotificationOptionVideoPlayback": "Videowiedergabe gestartet", - "NotificationOptionAudioPlayback": "Audiowiedergabe gestartet", - "NotificationOptionGamePlayback": "Spielwiedergabe gestartet", - "NotificationOptionVideoPlaybackStopped": "Videowiedergabe gestoppt", - "NotificationOptionAudioPlaybackStopped": "Audiowiedergabe gestoppt", - "NotificationOptionGamePlaybackStopped": "Spielwiedergabe gestoppt", - "NotificationOptionTaskFailed": "Fehler bei geplanter Aufgabe", - "NotificationOptionInstallationFailed": "Installationsfehler", - "NotificationOptionNewLibraryContent": "Neuer Inhalt hinzugef\u00fcgt", - "NotificationOptionCameraImageUploaded": "Kamera Bild hochgeladen", - "NotificationOptionUserLockedOut": "Benutzer ausgeschlossen", - "HeaderSendNotificationHelp": "Benachrichtigungen werden in Ihren Emby-Eingang angezeigt. Weitere Optionen k\u00f6nnen durch Installation im Service-Tab hinzugef\u00fcgt werden.", - "NotificationOptionServerRestartRequired": "Serverneustart notwendig", "LabelNotificationEnabled": "Aktiviere diese Benachrichtigung", "LabelMonitorUsers": "\u00dcberwache Aktivit\u00e4t von:", "LabelSendNotificationToUsers": "Sende die Benachrichtigung an:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Vorheriges", "LabelGroupMoviesIntoCollections": "Gruppiere Filme in Collections", "LabelGroupMoviesIntoCollectionsHelp": "Wenn Filmlisten angezeigt werden, dann werden Filme, die zu einer Collection geh\u00f6ren, als ein gruppiertes Element angezeigt.", - "NotificationOptionPluginError": "Plugin Fehler", "ButtonVolumeUp": "Lauter", "ButtonVolumeDown": "Leiser", "HeaderLatestMedia": "Neueste Medien", "OptionNoSubtitles": "Keine Untertitel", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Getrennt durch Komma. Leerlassen, um auf alle Codecs anzuwenden.", "LabelProfileContainersHelp": "Getrennt durch Komma. Leerlassen, um auf alle Container anzuwenden.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Keine verf\u00fcgbaren Erweiterungen.", "LabelDisplayPluginsFor": "Zeige Plugins f\u00fcr:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episodenname", "LabelSeriesNamePlain": "Serienname", "ValueSeriesNamePeriod": "Serien.Name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Nummer der letzten Episode", "HeaderTypeText": "Texteingabe", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Suche nach Untertiteln", - "MessageNoSubtitleSearchResultsFound": "Keine Suchergebnisse gefunden", "TabDisplay": "Anzeige", "TabLanguages": "Sprachen", "TabAppSettings": "App Einstellungen", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Wenn aktiviert, wird die Titelmusik w\u00e4hrend dem Durchsuchen durch die Bibliothek im Hintergrund abgespielt", "LabelEnableBackdropsHelp": "Falls aktiviert, werden beim durchsuchen der Bibliothek auf einigen Seiten passende Hintergr\u00fcnde angezeigt.", "HeaderHomePage": "Startseite", - "HeaderSettingsForThisDevice": "Einstellungen f\u00fcr dieses Ger\u00e4t", "OptionAuto": "Auto", "OptionYes": "Ja", "OptionNo": "Nein", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Startseite Bereich 2:", "LabelHomePageSection3": "Startseite Bereich 3:", "LabelHomePageSection4": "Startseite Bereich 4:", - "OptionMyMediaButtons": "Meine Medien (Schaltfl\u00e4chen)", "OptionMyMedia": "Meine Medien", "OptionMyMediaSmall": "Meine Medien (Klein)", "OptionResumablemedia": "Fortsetzen", @@ -815,53 +752,21 @@ "HeaderReports": "Berichte", "HeaderSettings": "Einstellungen", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Meistgesehen", "TabNextUp": "Als N\u00e4chstes", - "PlaceholderUsername": "Benutzername", "HeaderBecomeProjectSupporter": "Holen Sie Emby Premium", "MessageNoMovieSuggestionsAvailable": "Momentan sind keine Filmvorschl\u00e4ge verf\u00fcgbar. Schaue und bewerte zuerst deine Filme. Komme danach zur\u00fcck, um deine Filmvorschl\u00e4ge anzuschauen.", "MessageNoCollectionsAvailable": "Sammlungen erlauben Ihnen eine personalisierte Gruppierung von Filmen, Serien, Alben, B\u00fcchern und Spielen. Klicken Sie die + Schaltfl\u00e4che um Sammlungen zu erstellen.", "MessageNoPlaylistsAvailable": "Wiedergabeliste erlauben es dir eine Liste mit Inhalt zu erstellen der fortlaufend abgespielt wird. Um einer Wiedergabeliste Inhalte hinzuzuf\u00fcgen klicke rechts oder mache einen langen Tap und w\u00e4hle daraufhin \"Zur Wiedergabeliste hinzuf\u00fcgen\" aus.", "MessageNoPlaylistItemsAvailable": "Diese Wiedergabeliste ist momentan leer.", - "ButtonDismiss": "Verwerfen", "ButtonEditOtherUserPreferences": "Bearbeite dieses Benutzerprofil, das Benutzerbild und die pers\u00f6nlichen Einstellungen.", "LabelChannelStreamQuality": "Bevorzugte Qualit\u00e4t des Internetstreams:", "LabelChannelStreamQualityHelp": "In einer Umgebung mit langsamer Bandbreite kann die Beschr\u00e4nkung der Wiedergabequalit\u00e4t dazu beitragen eine fl\u00fcssige Darstellung sicherzustellen.", "OptionBestAvailableStreamQuality": "Die besten verf\u00fcgbaren", "ChannelSettingsFormHelp": "Installiere Kan\u00e4le wie beispielsweise \"Trailers\" oder \"Vimeo\" aus dem Plugin Katalog.", - "ViewTypePlaylists": "Wiedergabelisten", "ViewTypeMovies": "Filme", "ViewTypeTvShows": "TV", "ViewTypeGames": "Spiele", "ViewTypeMusic": "Musik", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "K\u00fcnstler", - "ViewTypeBoxSets": "Sammlungen", - "ViewTypeChannels": "Kan\u00e4le", - "ViewTypeLiveTV": "Live-TV", - "ViewTypeLiveTvNowPlaying": "Gerade ausgestrahlt", - "ViewTypeLatestGames": "Neueste Spiele", - "ViewTypeRecentlyPlayedGames": "K\u00fcrzlich abgespielt", - "ViewTypeGameFavorites": "Favoriten", - "ViewTypeGameSystems": "Spielesysteme", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Fortsetzen", - "ViewTypeTvNextUp": "Als n\u00e4chstes", - "ViewTypeTvLatest": "Neueste", - "ViewTypeTvShowSeries": "Serien", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Serien Favoriten", - "ViewTypeTvFavoriteEpisodes": "Episoden Favoriten", - "ViewTypeMovieResume": "Fortsetzen", - "ViewTypeMovieLatest": "Neueste", - "ViewTypeMovieMovies": "Filme", - "ViewTypeMovieCollections": "Sammlungen", - "ViewTypeMovieFavorites": "Favoriten", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Neueste", - "ViewTypeMusicPlaylists": "Wiedergabelisten", - "ViewTypeMusicAlbums": "Alben", - "ViewTypeMusicAlbumArtists": "Album-K\u00fcnstler", "HeaderOtherDisplaySettings": "Anzeige Einstellungen", "ViewTypeMusicSongs": "Lieder", "ViewTypeMusicFavorites": "Favoriten", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Beim downloaden von Bildern k\u00f6nnen diese sowohl als Extrafanart als auch als Extrathumb gespeichert werden, um maximale Kodi Kompatibilit\u00e4t zu erzielen.", "TabServices": "Dienste", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server Logdateien", "TabBranding": "Markierung", "HeaderBrandingHelp": "Personalisieren Sie das Erscheinen von Empy um es Ihren eigenen Bed\u00fcrfnissen, oder die Ihrer Organisation, anzupassen.", "LabelLoginDisclaimer": "Anmeldung Haftungsausschluss:", @@ -917,7 +821,6 @@ "HeaderDevice": "Endger\u00e4t", "HeaderUser": "Benutzer", "HeaderDateIssued": "Datum gesetzt", - "LabelChapterName": "Kapitel {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identfikations Header", "LabelValue": "Wert:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "Ansicht", - "TabSort": "Sortieren", "TabFilter": "Filter", "ButtonView": "Ansicht", "LabelPageSize": "Elementenbegrenzung:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Kontext:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Synchronisieren", "TabPlaylists": "Wiedergabelisten", "ButtonClose": "Schlie\u00dfen", "LabelAllLanguages": "Alle Sprachen", @@ -956,7 +856,6 @@ "LabelImage": "Bild:", "HeaderImages": "Bilder", "HeaderBackdrops": "Hintergr\u00fcnde", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Hinzuf\u00fcgen\/Aktualisieren von Bild", "LabelDropImageHere": "Fotos hierher ziehen", "LabelJpgPngOnly": "Nur JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Gesperrt", "OptionUnidentified": "Undefiniert", "OptionMissingParentalRating": "Fehlende Altersfreigabe", - "OptionStub": "Stub", "OptionSeason0": "Staffel 0", "LabelReport": "Bericht:", "OptionReportSongs": "Lieder", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Alben", "ButtonMore": "Mehr", "HeaderActivity": "Aktivit\u00e4ten", - "ScheduledTaskStartedWithName": "{0} gestartet", - "ScheduledTaskCancelledWithName": "{0} wurde abgebrochen", - "ScheduledTaskCompletedWithName": "{0} abgeschlossen", - "ScheduledTaskFailed": "Geplante Aufgabe abgeschlossen", "PluginInstalledWithName": "{0} wurde installiert", "PluginUpdatedWithName": "{0} wurde aktualisiert", "PluginUninstalledWithName": "{0} wurde deinstalliert", - "ScheduledTaskFailedWithName": "{0} fehlgeschlagen", - "DeviceOnlineWithName": "{0} ist verbunden", "UserOnlineFromDevice": "{0} ist online von {1}", - "DeviceOfflineWithName": "{0} wurde getrennt", "UserOfflineFromDevice": "{0} wurde getrennt von {1}", - "SubtitlesDownloadedForItem": "Untertitel heruntergeladen f\u00fcr {0}", - "SubtitleDownloadFailureForItem": "Download der Untertitel fehlgeschlagen f\u00fcr {0}", "LabelRunningTimeValue": "Laufzeit: {0}", "LabelIpAddressValue": "IP Adresse: {0}", "UserLockedOutWithName": "Benutzer {0} wurde ausgeschlossen", "UserConfigurationUpdatedWithName": "Benutzereinstellungen wurden aktualisiert f\u00fcr {0}", "UserCreatedWithName": "Benutzer {0} wurde erstellt", - "UserPasswordChangedWithName": "Das Passwort f\u00fcr Benutzer {0} wurde ge\u00e4ndert", "UserDeletedWithName": "Benutzer {0} wurde gel\u00f6scht", "MessageServerConfigurationUpdated": "Server Einstellungen wurden aktualisiert", "MessageNamedServerConfigurationUpdatedWithValue": "Der Server Einstellungsbereich {0} wurde aktualisiert", "MessageApplicationUpdated": "Emby Server wurde auf den neusten Stand gebracht.", "UserDownloadingItemWithValues": "{0} l\u00e4dt {1} herunter", - "UserStartedPlayingItemWithValues": "{0} hat die Wiedergabe von {1} gestartet", - "UserStoppedPlayingItemWithValues": "{0} hat die Wiedergabe von {1} beendet", - "AppDeviceValues": "App: {0}, Ger\u00e4t: {1}", "ProviderValue": "Anbieter: {0}", "HeaderRecentActivity": "K\u00fcrzliche Aktivit\u00e4ten", "HeaderPeople": "Personen", @@ -1051,27 +936,18 @@ "LabelAirDate": "Ausstrahlungstage:", "LabelAirTime:": "Ausstrahlungszeit:", "LabelRuntimeMinutes": "Laufzeit (Minuten):", - "LabelRevenue": "Einnahmen ($):", - "HeaderAlternateEpisodeNumbers": "Alternative Episodennummern", "HeaderSpecialEpisodeInfo": "Spezialepisoden Information", - "HeaderExternalIds": "Externe Id's:", - "LabelAirsBeforeSeason": "Ausstrahlungen vor Staffel:", - "LabelAirsAfterSeason": "Ausstrahlungen nach Staffel:", - "LabelAirsBeforeEpisode": "Ausstrahlungen vor Episode:", "LabelDisplaySpecialsWithinSeasons": "Zeige Sonderinhalt innerhalb der Staffel in der er ausgestrahlt wurde", - "HeaderCountries": "L\u00e4nder", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Handlungsstichworte", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Freilassen f\u00fcr die Vererbung von Berechtigungen oder dem systemweiten Standardwert.", "OptionNoTrailer": "Kein Trailer", "ButtonPurchase": "Kaufen", "OptionActor": "Schauspieler", "OptionComposer": "Komponist", "OptionDirector": "Regisseur", "OptionProducer": "Produzent", - "OptionWriter": "Drehbuchautor", "LabelAirDays": "Ausstrahlungstage:", "LabelAirTime": "Ausstrahlungszeit:", "HeaderMediaInfo": "Medieninformation", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Kindersicherung", "HeaderAccessSchedule": "Zugangsplan", "HeaderAccessScheduleHelp": "Erstelle einen Zugangsplan, um den Zugriff auf bestimmte Zeiten zu limitieren.", - "ButtonAddSchedule": "Plan hinzuf\u00fcgen", "LabelAccessDay": "Wochentag:", "LabelAccessStart": "Startzeit:", "LabelAccessEnd": "Endzeit:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Synchronisations-Aufgaben", "HeaderThisUserIsCurrentlyDisabled": "Dieser Benutzer ist aktuell deaktiviert", "MessageReenableUser": "F\u00fcr Reaktivierung schauen Sie unten", - "LabelEnableInternetMetadataForTvPrograms": "Lade Internet Metadaten f\u00fcr:", "OptionTVMovies": "TV Filme", "HeaderUpcomingMovies": "Bevorstehende Filme", "HeaderUpcomingSports": "Folgende Sportveranstaltungen", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Wiedergabeliste", "HeaderViewStyles": "Zeige Stiele", "TabPhotos": "Fotos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Willkommen zu Emby", "EmbyIntroMessage": "Mit Emby k\u00f6nnen Sie auf auf einfache Art und Weise Videos, Musik und Fotos zu Smartphones, Tablets und anderen Ger\u00e4ten von Ihrem Emby-Server senden.", "ButtonSkip": "\u00dcberspringen", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Spalten", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Aktiviere externen Videoplayer", - "ButtonUnlockGuide": "Guide freischalten", "LabelEnableFullScreen": "Aktiviere Vollbild", "LabelEmail": "Email:", "LabelUsername": "Benutzername:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "\u00dcbersicht", "HeaderShortOverview": "Kurz\u00fcbersicht", "HeaderType": "Typ", - "HeaderSeverity": "Schwere", "OptionReportActivities": "Aktivit\u00e4ten", "HeaderTunerDevices": "Tuner", "HeaderAddDevice": "Ger\u00e4t hinzuf\u00fcgen", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Wiederholen", "LabelEnableThisTuner": "Aktiviere diesen Tuner", "LabelEnableThisTunerHelp": "Abw\u00e4hlen um das importieren von Kan\u00e4len dieses Tuners zu verhindern", - "HeaderUnidentified": "Nicht identifiziert", "HeaderImagePrimary": "Bevorzugt", "HeaderImageBackdrop": "Hintergrund", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "TV Guide einrichten", "LabelDataProvider": "Datenquelle:", "OptionSendRecordingsToAutoOrganize": "Organisiere Aufnahmen in bereits bestehende Serien Verzeichnisse anderer Bibliotheken automatisch", - "HeaderDefaultPadding": "Standard Vor\/ Nachlauf", + "HeaderDefaultRecordingSettings": "Standard Aufnahmeeinstellungen", "OptionEnableRecordingSubfolders": "Erstelle Unterverzeichnisse f\u00fcr Katerogien wie Sport, Kindersendungen etc.", "HeaderSubtitles": "Untertitel", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Verzeichnisse", "LabelDisplayName": "Anzeige Name:", "HeaderNewRecording": "Neue Aufnahme", - "ButtonAdvanced": "Erweitert", "LabelCodecIntrosPath": "Codec Intros Verzeichnis:", "LabelCodecIntrosPathHelp": "Ein Verzeichnis welches Video Dateien beinhaltet. Wenn ein Intro Video einem Video Codec, Audio Codec, Audioprofil oder einem Tag zugeordnet werden kann, so wird es vor dem Hauptfilm gezeigt.", "OptionConvertRecordingsToStreamingFormat": "Konvertiere Aufnahmen automatisch in ein streaming freundliches Format.", "OptionConvertRecordingsToStreamingFormatHelp": "Aufnahmen werden als MP4 oder MKV konvertiert um eine bessere Wiedergabe auf Ihren Ger\u00e4ten zu gew\u00e4hrleisten.", "FeatureRequiresEmbyPremiere": "Dieses Feature ben\u00f6tigt eine aktive Emby Premiere Mitgliedschaft.", "FileExtension": "Dateiendung", - "OptionReplaceExistingImages": "Ersetze vorhandene Bilder", "OptionPlayNextEpisodeAutomatically": "Starte n\u00e4chste Episode automatisch", "OptionDownloadImagesInAdvance": "Bilder vorab herunterladen", "SettingsSaved": "Einstellungen gespeichert.", - "OptionDownloadImagesInAdvanceHelp": "Grunds\u00e4tzlich werden die meisten Bilder erst dann runter geladen, wenn eine Emby-App diese anfragt. Schalten Sie diese Option ein um alle Bilder im Voraus herunterzuladen, wenn neue Medien importiert wurden.", + "OptionDownloadImagesInAdvanceHelp": "Grunds\u00e4tzlich werden die meisten Bilder erst dann runter geladen, wenn eine Emby-App diese anfragt. Schalten Sie diese Option ein um alle Bilder im Voraus herunterzuladen, wenn neue Medien importiert wurden. Diese Einstellung kann zu signifikant l\u00e4ngeren Bibliothekscans f\u00fchren.", "Users": "Benutzer", "Delete": "L\u00f6schen", "Password": "Passwort", "DeleteImage": "Bild l\u00f6schen", "MessageThankYouForSupporting": "Vielen Dank dass Sie Emby unterst\u00fctzen.", - "MessagePleaseSupportProject": "Bitte unterst\u00fctzen Sie Emby.", "DeleteImageConfirmation": "M\u00f6chtest du dieses Bild wirklich l\u00f6schen?", "FileReadCancelled": "Dateiimport wurde abgebrochen.", "FileNotFound": "Datei nicht gefunden", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Dieser Emby Server muss aktualisiert werden. Um die neueste Version herunterzuladen, besuchen sie bitte {0}", "LabelFromHelp": "Beispiel: {0} (auf dem Server)", "HeaderMyMedia": "Meine Medien", - "LabelAutomaticUpdateLevel": "Automatisches Update Level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatische Updates f\u00fcr Plugins:", "ErrorLaunchingChromecast": "W\u00e4hrend des startens von Chromecast ist ein Fehler aufgetreten. Bitte stelle sicher, dass dein Ger\u00e4te mit dem WLAN verbunden ist.", "MessageErrorLoadingSupporterInfo": "Es gab einen Fehler beim Verarbeiten von Daten f\u00fcr Emby Premium. Bitte versuche es sp\u00e4ter erneut.", - "MessageLinkYourSupporterKey": "Verkn\u00fcpfe deinen Emby Premium Schl\u00fcssel mit bis zu {0} Emby Connect Benutzern um Zugriff auf folgende Apps zu erhalten:", "HeaderConfirmRemoveUser": "Entferne Benutzer", - "MessageConfirmRemoveConnectSupporter": "Sind Sie sich sicher das Sie alle zus\u00e4tzlichen Vorteile von Emby Premium l\u00f6schen wollen?", "ValueTimeLimitSingleHour": "Zeitlimit: 1 Stunde", "ValueTimeLimitMultiHour": "Zeitlimit: {0} Stunden", "PluginCategoryGeneral": "Allgemein", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Geplante Aufgaben", "MessageItemsAdded": "Eintr\u00e4ge hinzugef\u00fcgt", "HeaderSelectCertificatePath": "W\u00e4hlen Sie einen Zertifikat Ordner", - "ConfirmMessageScheduledTaskButton": "Dieser Vorgang l\u00e4uft in der Regel automatisch als geplante Aufgabe ab und erfordert keine manuellen Eingabe. Um die geplante Aufgabe zu konfigurieren, klicke auf Geplante Aufnahmen.", "HeaderSupporterBenefit": "Eine aktive Emby Premiere Mitgliedschaft erm\u00f6glicht weitere Vorteile wie z.B. Zugriff auf Sync, Premium Plugins, Internet Channel Inhalte, und mehr. {0}Erfahren Sie mehr{1}.", "HeaderWelcomeToProjectServerDashboard": "Willkommen zur Emby Server \u00dcbersicht", "HeaderWelcomeToProjectWebClient": "Willkommen zu Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Deaktiviert", "ButtonMoreInformation": "mehr Informationen", "LabelNoUnreadNotifications": "Keine ungelesenen Benachrichtigungen.", - "LabelAllPlaysSentToPlayer": "Alle Wiedergaben werden zum ausgew\u00e4hlten Abspielger\u00e4t gesendet.", "MessageInvalidUser": "Falscher Benutzername oder Passwort. Bitte versuche es noch einmal.", "HeaderLoginFailure": "Login Fehler", "RecommendationBecauseYouLike": "Weil du auch {0} magst", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Aufzeichnung abgebrochen.", "MessageRecordingScheduled": "Aufnahme geplant.", "HeaderConfirmSeriesCancellation": "Best\u00e4tige Serienabbruch", - "MessageConfirmSeriesCancellation": "Bis du dir sicher, diese Serie abzubrechen?", - "MessageSeriesCancelled": "Serie abgebrochen.", "HeaderConfirmRecordingDeletion": "Best\u00e4tige L\u00f6schung der Aufzeichnung", "MessageRecordingSaved": "Aufnahme gespeichert", "OptionWeekend": "Wochenenden", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von Server Cache Dateien an. Das Verzeichnis muss beschreibbar sein.", "HeaderSelectTranscodingPathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von tempor\u00e4ren Transkodierdateien an. Das Verzeichnis muss beschreibbar sein.", "HeaderSelectMetadataPathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von Metadaten an. Das Verzeichnis muss beschreibbar sein.", - "HeaderSelectChannelDownloadPath": "W\u00e4hle den Downloadpfad f\u00fcr Channel Plugins", - "HeaderSelectChannelDownloadPathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von Channel Cache Dateien an. Das Verzeichnis muss beschreibbar sein.", - "LabelChapterDownloaders": "Kapitel Downloader:", - "LabelChapterDownloadersHelp": "Aktiviere und ordne die Kapitel Downloader nach deinen Pr\u00e4ferenzen. Downloader mit geringer Priorit\u00e4t werden nur genutzt um fehlende Informationen zu erg\u00e4nzen.", "HeaderFavoriteAlbums": "Lieblingsalben", "HeaderLatestChannelMedia": "Neueste Channel Inhalte", "ButtonOrganizeFile": "Organisiere Datei", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direktes Abspielen", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Lokale Adresse: {0}", - "LabelRemoteAccessUrl": "Fernzugriff: {0}", + "LabelLocalAccessUrl": "Heimnetzwerk (LAN) Zugriff: {0}", + "LabelRemoteAccessUrl": "Fernzugriff (WAN): {0}", "LabelRunningOnPort": "L\u00e4uft \u00fcber HTTP Port: {0}", "LabelRunningOnPorts": "L\u00e4uft \u00fcber HTTP Port {0} und HTTPS Port {1}.", "HeaderLatestFromChannel": "Neuestes von {0}", - "HeaderCurrentSubtitles": "Aktuelle Untertitel", "ButtonRemoteControl": "Fernsteuerung", "HeaderLatestTvRecordings": "Neueste Aufnahmen", "LabelCurrentPath": "Aktueller Pfad:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "L\u00f6sche Element", "ConfirmDeleteItem": "L\u00f6schen dieses Eintrages bedeutet das L\u00f6schen der Datei und das Entfernen aus der Medien-Bibliothek. M\u00f6chten Sie wirklich fortfahren?", "ConfirmDeleteItems": "Das L\u00f6schen dieser Objekte l\u00f6scht die Dateien vom Laufwerk und Ihrer Medienbibliothek. Sind Sie sich wirklich sicher?", - "MessageValueNotCorrect": "Der eingegeben Wert ist nicht korrekt. Bitte versuche es noch einmal.", "MessageItemSaved": "Element gespeichert", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Bitte akzeptieren Sie die Nutzungsbedingungen bevor sie fortfahren.", "OptionOff": "Aus", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Fehlendes Hintergrundbild.", "MissingLogoImage": "Fehlendes Logobild.", "MissingEpisode": "Fehlende Episode", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Hintergr\u00fcnde", "OptionImages": "Bilder", "OptionKeywords": "Stichworte", @@ -1642,10 +1494,6 @@ "OptionPeople": "Personen", "OptionProductionLocations": "Produktionsst\u00e4tten", "OptionBirthLocation": "Geburtsort", - "LabelAllChannels": "Alle Kan\u00e4le", - "AttributeNew": "Neu", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "\u00c4ndere Inhalte Typ", "HeaderChangeFolderTypeHelp": "Um den Typ zu \u00e4ndern, bitte entferne die Bibliothek und erstelle sie mit dem neuen Medientyp erneut.", "HeaderAlert": "Alarm", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Qualit\u00e4t", "HeaderNotifications": "Benachrichtigungen", "HeaderSelectPlayer": "W\u00e4hle Videoplayer", - "MessageInternetExplorerWebm": "Installiere f\u00fcr die besten Ergebnisse mit dem Internet Explorer bitte das WebM Playback Plugin.", "HeaderVideoError": "Video Fehler", "ButtonViewSeriesRecording": "Zeige Serienaufnahmen an", "HeaderSpecials": "Extras", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Laufzeit", "HeaderParentalRating": "Altersfreigabe", "HeaderReleaseDate": "Ver\u00f6ffentlichungsdatum", - "HeaderDateAdded": "Datum hinzugef\u00fcgt", "HeaderSeries": "Serien:", "HeaderSeason": "Staffel", "HeaderSeasonNumber": "Staffel Nummer", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Entferne Medienquelle", "MessageConfirmRemoveMediaLocation": "Bist du dir sicher diese Medienquelle entfernen zu wollen?", "LabelNewName": "Neuer Name:", - "HeaderAddMediaFolder": "F\u00fcge Medienverzeichnis hinzu", - "HeaderAddMediaFolderHelp": "Name (Filme, Musik, TV, etc):", "HeaderRemoveMediaFolder": "Entferne Medienverzeichnis", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Die folgenden Medienverzeichnisse werden aus der Emby Bibliothek entfernt:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Bist du dir sicher dieses Medienverzeichnis entfernen zu wollen?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "\u00c4ndere Inhalte-Typ", "HeaderMediaLocations": "Medienquellen", "LabelContentTypeValue": "Inhalte Typ: {0}", - "LabelPathSubstitutionHelp": "Optional: Die Pfadersetzung kann Serverpfade zu Netzwerkfreigaben umleiten, die von Emby-Apps zur direkten Wiedergabe genutzt werden k\u00f6nnen.", "FolderTypeUnset": "Keine Auswahl (gemischter Inhalt)", "BirthPlaceValue": "Geburtsort: {0}", "DeathDateValue": "Gestorben: {0}", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "Nicht ausgestrahlt", "HeaderMissing": "Fehlend", "ButtonWebsite": "Website", - "ValueSeriesYearToPresent": "{0}-heute", + "ValueSeriesYearToPresent": "{0} - heute", "ValueAwards": "Auszeichnungen: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Einnahmen: {0}", "ValuePremiered": "Premiere {0}", "ValuePremieres": "Premieren {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref Frames", "TabExpert": "Experte", "HeaderSelectCustomIntrosPath": "W\u00e4hle einen benutzerdefinierten Pfad f\u00fcr Intros", - "HeaderRateAndReview": "Bewerten und Kommentieren", "HeaderThankYou": "Danke", - "MessageThankYouForYourReview": "Vielen Dank f\u00fcr deine Bewertung.", - "LabelYourRating": "Deine Bewertung:", "LabelFullReview": "Vollst\u00e4ndige Bewertung:", - "LabelShortRatingDescription": "Kurze Zusammenfassung der Bewertung:", - "OptionIRecommendThisItem": "Ich schlage diesen Inhalt vor", "ReleaseYearValue": "Erscheinungsjahr: {0}", "OriginalAirDateValue": "Erstausstrahlung: {0}", "WebClientTourContent": "Schaue deine zuletzt hinzugef\u00fcgten Medien, n\u00e4chste Episoden und mehr an. Die gr\u00fcnen Kreise zeigen dir an, wie viele ungesehene Inhalte du hast.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Verwalte einfach lang dauernde Aufgaben mit Hilfe von geplanten Aufgaben. Entscheide wann diese ausgef\u00fchrt werden und wie oft.", "DashboardTourMobile": "Die Emby Server Startseite funktioniert super auf Smartphones oder Tabletts. Kontrollieren Sie Ihren Server zu jeder Zeit, egal wo.", "DashboardTourSync": "Synchronisieren Sie pers\u00f6nliche Medien mit Ihren Ger\u00e4ten um diese offline anzuschauen.", - "MessageRefreshQueued": "Aktualisierung l\u00e4uft", "TabExtras": "Extras", "HeaderUploadImage": "Bild hochladen", "DeviceLastUsedByUserName": "Zuletzt genutzt von {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Synchronisiere Medien", "HeaderCancelSyncJob": "Synchronisierung abbrechen", "CancelSyncJobConfirmation": "Der Abbruch der Synchronisation wird bereits synchronisierte Medien bei der n\u00e4chsten Synchronisation vom Ger\u00e4t l\u00f6schen. M\u00f6chten Sie wirklich fortfahren?", - "MessagePleaseSelectDeviceToSyncTo": "Bitte w\u00e4hlen Sie ein zu synchronisierendes Ger\u00e4t.", - "MessageSyncJobCreated": "Synchronisations-Aufgabe erstellt.", "LabelQuality": "Qualit\u00e4t:", - "OptionAutomaticallySyncNewContent": "Synchronisiere neue Inhalte automatisch", - "OptionAutomaticallySyncNewContentHelp": "Neu zu diesem Ordner hinzugef\u00fcgte Inhalte werden automatisch mit dem Ger\u00e4t synchronisiert.", "MessageBookPluginRequired": "Setzt die Installation des Bookshelf-Plugins voraus.", "MessageGamePluginRequired": "Setzt die Installation des GameBrowser-Plugins voraus.", "MessageUnsetContentHelp": "Inhalte werden als Verzeichnisse dargestellt. F\u00fcr eine besser Anzeige nutzen Sie nach M\u00f6glichkeit den Meta-Data Manager und w\u00e4hlen Sie einen Medien-Typen f\u00fcr Unterverzeichnisse.", @@ -1932,8 +1763,8 @@ "SyncJobItemStatusCancelled": "Abgebrochen", "LabelProfile": "Profil:", "LabelBitrateMbps": "Datenrate (Mbps):", - "EmbyIntroDownloadMessage": "Um Emby herunterzuladen und zu installieren, besuchen Sie: {0}.", - "EmbyIntroDownloadMessageWithoutLink": "F\u00fcr den Download und die Installation des Emby Servers, besuchen Sie bitte die Emby Website.", + "EmbyIntroDownloadMessage": "Um den Emby-Server kostenlos herunterzuladen und zu installieren, besuche: {0}.", + "EmbyIntroDownloadMessageWithoutLink": "F\u00fcr den Download und die Installation des kostenlosen Emby Servers, besuche bitte die Emby Website.", "ButtonNewServer": "Neuer Server", "MyDevice": "Mein Ger\u00e4t", "ButtonRemote": "Fernbedienung", @@ -1941,18 +1772,11 @@ "TabScenes": "Szenen", "HeaderUnlockApp": "App freischalten", "HeaderUnlockSync": "Freischaltung Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Schalten Sie diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.", - "MessageUnlockAppWithSupporter": "Schalten Sie diese Funktion mit einem aktiven Emby Premium Abo frei.", - "MessageToValidateSupporter": "Wenn Sie eine aktive Emby Premiere Mitgliedschaft haben, stellen Sie bitte sicher, dass Sie diese \u00fcber das Emby Server Dashboard eingerichtet haben (Hauptmenu -> Emby Premiere).", "MessagePaymentServicesUnavailable": "Die Zahlungsdienste stehen leider gerade nicht zur Verf\u00fcgung. Bitte versuchen Sie es sp\u00e4ter erneut.", - "ButtonUnlockWithPurchase": "Freischalten durch Kauf", - "ButtonUnlockPrice": "Freischalten {0}", - "MessageLiveTvGuideRequiresUnlock": "Ihr TV-Guide ist begrenzt auf {0} Kan\u00e4le. Klicken Sie auf die Freischalten Schaltfl\u00e4che um weitere Informationen zu erhalten.", "OptionEnableFullscreen": "Aktivieren Vollbild", "ButtonServer": "Server", "HeaderLibrary": "Bibliothek", "HeaderMedia": "Medien", - "HeaderSaySomethingLike": "Sagen Sie etwas wie...", "NoResultsFound": "Keine Ergebnisse gefunden.", "ButtonManageServer": "Konfiguriere Server", "ButtonPreferences": "Einstellungen", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Erstellen Sie ein Konto bei {0}", "ErrorPleaseSelectLineup": "Bitte w\u00e4hlen Sie ein TV Programm und versuchen Sie es erneut. Wenn keine Programme verf\u00fcgbar sind pr\u00fcfen Sie bitte Benutzername, Passwort und Ihre Postleitzahl.", "HeaderTryEmbyPremiere": "Probieren Sie Emby Premiere", - "ButtonBecomeSupporter": "Holen Sie Emby Premium", - "ButtonClosePlayVideo": "Schlie\u00dfe und starte meine Medien", - "MessageDidYouKnowCinemaMode": "Wussten Sie schon, das Sie mit Emby Premium, ihr Erlebnis mit Funktionen wie dem Kino-Modus, noch verbessern k\u00f6nnen?", - "MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.", "OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung", "HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine aktive Emby Premiere Mitgliedschaft", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync ben\u00f6tigt eine Verbindung zu einem Emby Server mit aktivem Emby Premium Abo.", "ErrorValidatingSupporterInfo": "Es gab einen Fehler beim Pr\u00fcfen ihrer Emby Premium Daten. Bitte versuche es sp\u00e4ter erneut.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Synchronisation gestartet", - "NoSlideshowContentFound": "Keine Diashow Bilder gefunden.", - "OptionPhotoSlideshow": "Diashow", "OptionBackdropSlideshow": "Hintergrund Diashow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Andere", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "F\u00fcr weitere TV Quellen klicken Sie bitte auf den \"Externe Dienste\"-Reiter um weitere Optionen anzuzeigen.", "ButtonGuide": "TV Guide", - "ButtonRecordedTv": "TV Aufnahmen", "ConfirmEndPlayerSession": "M\u00f6chten Sie Emby auf dem Ger\u00e4t schlie\u00dfen?", "ButtonYes": "Ja", "AddUser": "Benutzer anlegen", "ButtonNo": "Nein", - "ButtonRestorePreviousPurchase": "Kauf wiederherstellen", - "AlreadyPaid": "Schon Bezahlt?", - "AlreadyPaidHelp1": "Wenn Sie bereits f\u00fcr die Installation einer \u00e4lteren Version von Media Browser f\u00fcr Android gezahlt haben, m\u00fcssen Sie f\u00fcr eine Freischaltung nicht erneut zahlen. Bet\u00e4tigen Sie OK um uns eine Email an {0} zu senden. Wir werden die App dann f\u00fcr Sie freischalten.", - "AlreadyPaidHelp2": "Sie haben Emby Premiere? Dann beenden Sie diesen Dialog, richten Sie Emby Premiere in Ihrem Emby Server Dashboard unter Hilfe -> Emby Premiere ein und eine Freischaltung erfolgt automatisch.", "ButtonNowPlaying": "L\u00e4uft", "HeaderLatestMovies": "Neueste Filme", - "EmbyPremiereMonthly": "Monatliche Emby Premiere", - "EmbyPremiereMonthlyWithPrice": "Emby Premium Monatlich {0}", "HeaderEmailAddress": "E-Mail Adresse", - "TextPleaseEnterYourEmailAddressForSubscription": "Bitte geben Sie Ihre E-Mail Adresse", "LoginDisclaimer": "Emby wurde designed um Sie bei der Verwaltung Ihrer Medienbibliothek, wie z.B Heimvideos oder Fotos, zu unterst\u00fctzen. Bitte lesen Sie unsere Nutzungsbedingungen. Die Verwendung jeglicher Emby Software bedingt die Zustimmung dieser Vereinbarung.", "TermsOfUse": "Nutzungsbedingungen", "NumLocationsValue": "{0} Verzeichnisse", "ButtonAddMediaLibrary": "F\u00fcge Medienbibliothek hinzu", "ButtonManageFolders": "Bearbeite Verzeichnisse", - "MessageTryMicrosoftEdge": "F\u00fcr ein besseres Erlebnis mit Windows 10, probieren Sie den neuen Microsoft Edge Browser.", - "MessageTryModernBrowser": "F\u00fcr eine bessere Darstellung unter Windows probieren Sie mal einen modernen Browser wie z.B. Google Chrome, Firefox oder Opera.", "ErrorAddingListingsToSchedulesDirect": "Ein Fehler trat beim hinzuf\u00fcgen Ihrer Zusammenstellung zu Ihrem Schedules Direct Konto auf. Schedules Direct erlaubt nur eine begrenzte Anzahl von Zusammenstellungen je Account. Sie sollten sich auf der Website in Ihrem Schedules-Direct Konto einloggen und ein paar Zusammenstellungen von Ihrem Konto l\u00f6schen bevor Sie fortfahren.", "PleaseAddAtLeastOneFolder": "Bitte f\u00fcgen Sie mindestens ein Verzeichniss zur Bibliothek durch Klicken der \"Hinzuf\u00fcgen\"-Schaltfl\u00e4che hinzu.", "ErrorAddingMediaPathToVirtualFolder": "Ein Fehler trat beim Hinzuf\u00fcgen eines Medienverzeichnisses auf. Bitte stellen Sie sicher, dass der Pfad g\u00fcltig ist und der Emby Server Prozess die notwendigen Zugriffsrechte besitzt.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Best\u00e4tige Plugin Installation", "PleaseConfirmPluginInstallation": "Bitte best\u00e4tigen Sie mit OK, dass Sie den oben stehenden Text gelesen haben und die Installation des Plugins fortf\u00fchren m\u00f6chten.", "MessagePluginInstallDisclaimer": "Plugins aus der Emby Community sind eine gute M\u00f6glichkeit um Emby mit weiteren Funktionen und Vorteilen aufzuwerten. Bevor Sie diese jedoch installieren, seien Sie sich den daraus resultierenden m\u00f6glichen Umst\u00e4nden f\u00fcr Emby bewusst. Dies k\u00f6nnen z.B. l\u00e4ngere Bibliotheken Scans, weiterf\u00fchrende Verarbeitung von Daten im Hintergrund sowie Systeminstabilit\u00e4t sein.", - "ButtonPlayOneMinute": "Eine Minute wiedergeben", - "ThankYouForTryingEnjoyOneMinute": "Genie\u00dfen sie eine Minute Wiedergabe. Danke, dass Sie Emby ausprobieren.", - "HeaderTryPlayback": "Wiedergabe ausprobieren", - "HeaderBenefitsEmbyPremiere": "Vorteile von Emby Premiere", - "MobileSyncFeatureDescription": "Synchronisieren Sie Ihre Medien f\u00fcr eine Offlinewiedergabe auf Ihr Smartphone und Tablett.", - "CoverArtFeatureDescription": "Cover Art erstellt z.B. lustige Cover und erlaubt Ihnen weitergehende pers\u00f6nliche Gestaltung Ihrer Medien Bilder.", "HeaderMobileSync": "Mobile Synchronisation", "HeaderCloudSync": "Cloud Synchronisation", - "CloudSyncFeatureDescription": "Synchronisieren Sie Ihre Medien in die Cloud f\u00fcr ein Backup, eine Archivierung und Konvertierung.", "HeaderFreeApps": "Kostenlose Emby Apps", - "FreeAppsFeatureDescription": "Genie\u00dfen Sie Zugriff auf kostenlose Emby Apps f\u00fcr Ihre Ger\u00e4te", - "CinemaModeFeatureDescription": "Der Cinema Mode bringt das richtige Kinogef\u00fchl mit Trailern und eigenen Intros vor dem Hauptfilm.", "CoverArt": "Cover Art", "ButtonOff": "Ausschalten", "TitleHardwareAcceleration": "Hardware Beschleunigung", "HardwareAccelerationWarning": "Das Aktivieren der Hardwarebeschleunigung kann auf einigen Systemen zu Instabilit\u00e4t f\u00fchren. Stellen Sie sicher, dass Ihr Betriebssystem sowie Ihre Grafikkarten-Treiber auf dem aktuellsten Stand sind. Wenn Sie nach der Aktivierung Probleme mit der Wiedergabe von Videos haben, m\u00fcssen Sie diese Einstellung zur\u00fcck auf \"Auto\" stellen.", "HeaderSelectCodecIntrosPath": "W\u00e4hlen Sie ein Codec Intro Verzeichnis", - "ButtonAddMissingData": "Nur fehlende Daten hinzuf\u00fcgen", "ValueExample": "Beispiel: {0}", "OptionEnableAnonymousUsageReporting": "Aktiviere anonyme \u00dcbermittlung des Benutzerverhalten", "OptionEnableAnonymousUsageReportingHelp": "Erlauben SIe Emby anonyme Nutzerdaten wie installierte Pluging, Versionen der Emby Apps etc. zu sammeln. Diese Informationen werden nur zur Verbesserung der Software verwendet.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U URL (optional):", "LabelOptionalM3uUrlHelp": "Einige Ger\u00e4te unterst\u00fctzen eine M3U Kanalanzeige.", "TabResumeSettings": "Fortsetzen Einstellungen", - "HowDidYouPay": "Wie hast Du bezahlt?", - "IHaveEmbyPremiere": "Ich besitze Emby Premiere", - "IPurchasedThisApp": "Ich habe diese App gekauft", "DrmChannelsNotImported": "Verschl\u00fcsselte Kan\u00e4le werden nicht importiert.", "LabelAllowHWTranscoding": "Erlaube Hardware Transkodierung", "AllowHWTranscodingHelp": "Wenn aktiviert, erlaube dem tuner eine Transkodierung des Streams in Echtzeit vorzunehmen. Dadurch wird die Transkodierung des Emby Servers reduziert.", @@ -2071,8 +1866,9 @@ "DownloadImagesInAdvanceWarning": "Das vorzeitige Herunterladen aller Bilder wird einen l\u00e4ngeren Bibliotheken Scan verursachen.", "MetadataSettingChangeHelp": "Das Ver\u00e4ndern der Metadata-Einstellungen hat nur Einfluss auf neu hinzugef\u00fcgte Inhalte. Um eine Aktualisierung bereits hinzugef\u00fcgter Inhalte durchzuf\u00fchren, \u00f6ffnen Sie bitte die Detail Ansicht und klicken die Aktualisieren Schaltfl\u00e4che. Die Aktualisierung mehrerer Inhalte kann im Metadata Manager durchgef\u00fchrt werden.", "OptionConvertRecordingPreserveAudio": "Original-Audio (wenn m\u00f6glich) erhalten bei der Aufnahme-Konvertierung.", - "OptionConvertRecordingPreserveAudioHelp": "Dies liefert eine bessere Audio Qualit\u00e4t, ben\u00f6tigt aber m\u00f6glicherweise eine Transkodierung w\u00e4hrend der Wiedergabe auf einigen Ger\u00e4ten.", - "CreateCollectionHelp": "Sammlungen erm\u00f6glichen personallisierte Gruppen von Filmen oder anderen Medien.", + "OptionConvertRecordingPreserveAudioHelp": "Dies liefert eine bessere Audioqualit\u00e4t, ben\u00f6tigt aber m\u00f6glicherweise eine Transkodierung w\u00e4hrend der Wiedergabe auf einigen Ger\u00e4ten.", + "OptionConvertRecordingPreserveVideo": "Original-Video erhalten bei der Aufnahme-Konvertierung.", + "OptionConvertRecordingPreserveVideoHelp": "Dies liefert eine bessere Videoqualit\u00e4t, ben\u00f6tigt aber m\u00f6glicherweise eine Transkodierung w\u00e4hrend der Wiedergabe auf einigen Ger\u00e4ten.", "AddItemToCollectionHelp": "Um Medien Gruppen hinzuzuf\u00fcgen, verwende die Suche und benutze die Rechtsklick oder Tap-Men\u00fcs.", "HeaderHealthMonitor": "Gesundheits Monitor", "HealthMonitorNoAlerts": "Keine aktiven Wartnungen.", @@ -2094,7 +1890,7 @@ "MapChannels": "Kan\u00e4le zuweisen", "LabelffmpegPath": "FFmpeg Verzeichnis:", "LabelffmpegVersion": "FFmpeg Version:", - "LabelffmpegPathHelp": "Verzeichnis zur runtergeladenen FFmpeg Applikation.", + "LabelffmpegPathHelp": "Verzeichnis zur runtergeladenen FFmpeg Applikation oder zum Ordner, der FFMpeg enth\u00e4lt.", "SetupFFmpeg": "FFmpeg Einstellungen", "SetupFFmpegHelp": "Emby ben\u00f6tigt eine Bibliothek oder Anwendung um bestimmte Medientypen zu konvertieren. Es gibt eine Menge verschiedener Anwendungen, nichts desto trotz wurde Emby auf Funktionsf\u00e4higkeit mit FFmpeg getestet. Emby steht in keiner Verbindung zu FFmpeg, dessen Eigentum, Code oder Vertrieb.", "EnterFFmpegLocation": "FFmpeg Verzeichnis \u00f6ffnen", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optionaler) Gemeinsamer Netzwerkordner", "LabelOptionalNetworkPathHelp": "Wenn dieser Ordner in deinem Netzwerk geteilt wird, kann die Weitergabe des Netzwerkpfades Emby Apps auf anderen Ger\u00e4ten direkten Zugang zu den Mediendateien erm\u00f6glichen.", "ButtonPlayExternalPlayer": "Auf externem Ger\u00e4t abspielen", - "WillRecord": "Wird aufgenommen", "NotScheduledToRecord": "Nicht geplant zur Aufnahme", - "SynologyUpdateInstructions": "Bitte logge dich in DSM ein und gehe in das Paketzentrum um ein Update durchzuf\u00fchren." + "SynologyUpdateInstructions": "Bitte logge dich in DSM ein und gehe in das Paketzentrum um ein Update durchzuf\u00fchren.", + "LatestFromLibrary": "Neueste {0}", + "LabelMoviePrefix": "Filmpr\u00e4fix:", + "LabelMoviePrefixHelp": "Wenn ein Pr\u00e4fix in Filmtiteln angewendet wird, gib es hier ein damit Emby es korrekt behandeln kann.", + "HeaderRecordingPostProcessing": "Aufnahme Nachbearbeitung", + "LabelPostProcessorArguments": "Nachbearbeitung Kommandozeilen-Argumente:", + "LabelPostProcessorArgumentsHelp": "Verwende {path} als das Verzeichnis f\u00fcr Aufnahmen.", + "LabelPostProcessor": "Nachbearbeitungs Anwendung:", + "ErrorAddingXmlTvFile": "Fehler beim Zugriff auf die XmlTV Datei. Stelle bitte sicher, dass die Datei existiert und versuche es nochmal." } \ No newline at end of file diff --git a/dashboard-ui/strings/el.json b/dashboard-ui/strings/el.json index de78d06942..93480f13f6 100644 --- a/dashboard-ui/strings/el.json +++ b/dashboard-ui/strings/el.json @@ -1,9 +1,7 @@ { - "LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2", - "LabelApiDocumentation": "Api Documentation", - "LabelBrowseLibrary": "\u03a0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7", - "LabelConfigureServer": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 Emby", - "LabelPrevious": "\u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", + "LabelPrevious": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2", "LabelFinish": "\u03a4\u03ad\u03bb\u03bf\u03c2", "LabelNext": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf", "LabelYoureDone": "\u0395\u03af\u03c3\u03c4\u03b5 \u0388\u03c4\u03bf\u03b9\u03bc\u03bf\u03b9!", @@ -11,40 +9,31 @@ "ThisWizardWillGuideYou": "\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03bf\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b8\u03bf\u03b4\u03b7\u03b3\u03ae\u03c3\u03b5\u03b9 \u03bc\u03ad\u03c3\u03c9 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2. \u0393\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5, \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03ae\u03c2 \u03c3\u03b1\u03c2.", "TellUsAboutYourself": "\u03a0\u03b5\u03af\u03c4\u03b5 \u03bc\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2", "ButtonQuickStartGuide": "\u039f\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b3\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7\u03c2 \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2", - "LabelYourFirstName": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2", - "MoreUsersCanBeAddedLater": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03b1\u03c1\u03b3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03c4\u03b1\u03bc\u03c0\u03bb\u03cc", + "LabelYourFirstName": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2:", + "MoreUsersCanBeAddedLater": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03b1\u03c1\u03b3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c3\u03c4\u03bf \u03a4\u03b1\u03bc\u03c0\u03bb\u03cc.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "\u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 Windows", - "AWindowsServiceHasBeenInstalled": "\u039c\u03b9\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 Windows \u03ad\u03c7\u03b5\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af", - "WindowsServiceIntro1": "\u039f \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 Emby \u03ba\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03ac \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03c3\u03b1\u03bd \u03bc\u03b9\u03b1 \u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03bc\u03b5 \u03b5\u03b9\u03ba\u03bf\u03bd\u03af\u03b4\u03b9\u03bf, \u03b1\u03bb\u03bb\u03ac \u03b1\u03bd \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ac\u03c4\u03b5 \u03bd\u03b1 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b5\u03af \u03c3\u03b1\u03bd \u03bc\u03b9\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 \u03c3\u03c4\u03bf \u03b2\u03ac\u03b8\u03bf\u03c2, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03b8\u03b5\u03af \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03af\u03bd\u03b1\u03ba\u03b1 \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c4\u03c9\u03bd \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03b9\u03ce\u03bd \u03c4\u03c9\u03bd Windows", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "\u0394\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2", - "LabelEnableAutomaticPortMapping": "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u03ba\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7\u03c2 \u0398\u03c5\u03c1\u03ce\u03bd", - "LabelEnableAutomaticPortMappingHelp": "To UPnP \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b4\u03c1\u03bf\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03c4\u03ae \u03b3\u03b9\u03b1 \u03b5\u03cd\u03ba\u03bf\u03bb\u03b7 \u03b1\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7. \u0391\u03c5\u03c4\u03ae \u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b4\u03bf\u03c5\u03bb\u03ad\u03c8\u03b5\u03b9 \u03bc\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03bc\u03bf\u03bd\u03c4\u03ad\u03bb\u03b1 \u03b4\u03c1\u03bf\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03c4\u03ce\u03bd", - "HeaderTermsOfService": "Emby Terms of Service", + "HeaderTermsOfService": "\u038c\u03c1\u03bf\u03b9 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2 Emby", "MessagePleaseAcceptTermsOfService": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5.", "OptionIAcceptTermsOfService": "\u0391\u03c0\u03cc\u03b4\u03b5\u03c7\u03bf\u03bc\u03b1\u03b9 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", - "ButtonPrivacyPolicy": "\u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", + "ButtonPrivacyPolicy": "\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ac \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1", "ButtonTermsOfService": "\u038c\u03c1\u03bf\u03b9 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", - "ButtonConvertMedia": "Convert media", + "ButtonConvertMedia": "\u039c\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", "ButtonOrganize": "\u039f\u03c1\u03b3\u03ac\u03bd\u03c9\u03c3\u03b7", - "HeaderSupporterBenefits": "Emby Premiere Benefits", + "HeaderSupporterBenefits": "\u03a0\u03c1\u03bf\u03bd\u03cc\u03bc\u03b9\u03b1 Emby Premiere", "HeaderAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", - "LabelPinCode": "Pin code:", - "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "HeaderSync": "Sync", - "ButtonOk": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9", + "LabelPinCode": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 PIN:", + "OptionHideWatchedContentFromLatestMedia": "\u0391\u03c0\u03cc\u03ba\u03c1\u03b7\u03c8\u03b7 \u03c0\u03c1\u03bf\u03b2\u03bb\u03b7\u03b8\u03ad\u03bd\u03c4\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03b1 \u03c0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03bc\u03ad\u03c3\u03b1", + "DeleteMedia": "Delete media", + "HeaderSync": "\u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2", + "ButtonOk": "Ok", "ButtonCancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 ", "ButtonExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2", "ButtonNew": "\u039d\u03ad\u03bf", + "OptionDev": "\u03a5\u03c0\u03cc \u03b1\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7", + "OptionBeta": "\u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7", "HeaderAudio": "\u0389\u03c7\u03bf\u03c2", @@ -52,27 +41,24 @@ "HeaderPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae", "CategorySync": "\u03a3\u03c5\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2", "TabPlaylist": "\u039b\u03af\u03c3\u03c4\u03b1", - "HeaderEasyPinCode": "Easy Pin Code", + "HeaderEasyPinCode": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 PIN", "HeaderInstalledServices": "\u0395\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2", "HeaderAvailableServices": "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2", "MessageNoServicesInstalled": "\u039a\u03b1\u03bc\u03af\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b7.", "HeaderToAccessPleaseEnterEasyPinCode": "\u0393\u03b9\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03ce\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c3\u03b1\u03c2", - "ButtonConfigurePinCode": "Configure pin code", + "ButtonConfigurePinCode": "\u039a\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03c4\u03b5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc PIN", "RegisterWithPayPal": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b5 Paypal", - "HeaderEnjoyDayTrial": "\u0391\u03c0\u03bf\u03bb\u03b1\u03cd\u03c3\u03c4\u03b5 14 \u039c\u03ad\u03c1\u03b5\u03c2 \u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae\u03c2 \u03a0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5", - "LabelSyncTempPath": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ce\u03bd \u0391\u03c1\u03c7\u03b5\u03af\u03c9\u03bd", + "LabelSyncTempPath": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ce\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelCustomCertificatePath": "Custom certificate path:", + "LabelCustomCertificatePath": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c0\u03b9\u03c3\u03c4\u03bf\u03c0\u03bf\u03b9\u03b7\u03c4\u03b9\u03ba\u03bf\u03cd \u03b1\u03c3\u03c6\u03b1\u03bb\u03b5\u03af\u03b1\u03c2:", "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", "TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2", "OptionDetectArchiveFilesAsMedia": "\u0391\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b5 \u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c9\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1.", "OptionDetectArchiveFilesAsMediaHelp": "\u0391\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 .rar \u03ba\u03b1\u03b9 .zip \u03ba\u03b1\u03c4\u03b1\u03bb\u03ae\u03be\u03b5\u03b9\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd.", - "LabelEnterConnectUserName": "Username or email:", + "LabelEnterConnectUserName": "\u038c\u03bd\u03bf\u03bc\u03b1 \u03c7\u03c1\u03ae\u03c3\u03b7 \u03ae email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd", - "FolderTypeMixed": "Mixed content", + "FolderTypeMixed": "\u0391\u03bd\u03ac\u03bc\u03b5\u03b9\u03ba\u03c4\u03bf \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf", "FolderTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", "FolderTypeMusic": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae", "FolderTypePhotos": "\u03a6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2", @@ -84,17 +70,15 @@ "LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:", "TitleScheduledTasks": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 Media", - "LabelFolderType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5", + "LabelFolderType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5:", "LabelCountry": "\u03a7\u03ce\u03c1\u03b1", - "LabelLanguage": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1", - "LabelTimeLimitHours": "\u038c\u03c1\u03b9\u03bf \u03a7\u03c1\u03cc\u03bd\u03bf\u03c5 (\u038f\u03c1\u03b5\u03c2)", - "HeaderPreferredMetadataLanguage": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ce\u03bc\u03b5\u03bd\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1 \u03bc\u03b5\u03c4\u03b1", - "LabelSaveLocalMetadata": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03ad\u03c1\u03b3\u03bf \u03c4\u03ad\u03c7\u03bd\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd", - "LabelSaveLocalMetadataHelp": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 artwork \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c4\u03b1-\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03b5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03bc\u03ad\u03c3\u03c9\u03bd \u03b8\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03b8\u03ad\u03c3\u03b5\u03b9 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c4\u03cc\u03c0\u03bf \u03cc\u03c0\u03bf\u03c5 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5.", - "LabelDownloadInternetMetadata": "\u039a\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 \u03ad\u03c1\u03b3\u03b1 \u03c4\u03ad\u03c7\u03bd\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03bc\u03b5\u03c4\u03b1-\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf internet ", + "LabelLanguage": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1:", + "LabelTimeLimitHours": "\u038c\u03c1\u03b9\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf\u03c5 (\u03ce\u03c1\u03b5\u03c2):", + "HeaderPreferredMetadataLanguage": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ce\u03bc\u03b5\u03bd\u03b7 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd", + "LabelSaveLocalMetadata": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd", + "LabelSaveLocalMetadataHelp": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03bf\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03c5\u03ba\u03bf\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5\u03c2.", + "LabelDownloadInternetMetadata": "\u039a\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf internet ", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 ", "TabPassword": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2", "TabLibraryAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7", "TabAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03c0\u03bf\u03c5 \u03bb\u03b5\u03af\u03c0\u03bf\u03c5\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b1\u03b9\u03b6\u03cc\u03bd", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ac\u03c0\u03b1\u03b9\u03c7\u03c4\u03c9\u03bd \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b1\u03b9\u03b6\u03cc\u03bd", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 \u0392\u03af\u03bd\u03c4\u03b5\u03bf", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", "LabelAudioLanguagePreference": "\u03a0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u0389\u03c7\u03bf\u03c5", "LabelSubtitleLanguagePreference": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03c9\u03bd \u03c0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7\u03c2", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "\u03a0\u03c1\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf 1:1 Aspect Ratio. JPG\/PNG \u03bc\u03cc\u03bd\u03bf", "MessageNothingHere": "\u03a4\u03af\u03c0\u03bf\u03c4\u03b1 \u03b5\u03b4\u03ce ", "MessagePleaseEnsureInternetMetadata": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03be\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03c3\u03c4\u03b5 \u03c4\u03b7 \u03bb\u03ae\u03c8\u03b7 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03bf internet \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7.\n", - "TabSuggested": "\u03a0\u03c1\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c2", "TabUpcoming": "\u0395\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b7", "TabShows": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1", "TabEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1", "TabGenres": "\u0395\u03af\u03b4\u03b7", - "TabPeople": "\u0386\u03bd\u03b8\u03c1\u03c9\u03c0\u03bf\u03b9 ", "TabNetworks": "\u0394\u03af\u03ba\u03c4\u03c5\u03b1", "HeaderUsers": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 ", "HeaderFilters": "Filters", @@ -166,10 +153,11 @@ "OptionWriters": "\u03a3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03b5\u03af\u03c2", "OptionProducers": "\u03a0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03bf\u03af", "HeaderResume": "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf", "NoNextUpItemsMessage": "\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1. \u039e\u03b5\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c0\u03b1\u03c1\u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b9\u03c2 \u03b5\u03ba\u03c0\u03bf\u03bc\u03c0\u03ad\u03c2 \u03c3\u03b1\u03c2!", "HeaderLatestEpisodes": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1", - "HeaderPersonTypes": "Person Types:", + "HeaderPersonTypes": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03a0\u03c1\u03bf\u03c3\u03ce\u03c0\u03bf\u03c5:", "TabSongs": "\u03a4\u03c1\u03b1\u03b3\u03bf\u03cd\u03b4\u03b9\u03b1", "TabAlbums": "\u0386\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc", "TabArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2", @@ -185,6 +173,7 @@ "OptionPlayCount": "\u03a6\u03bf\u03c1\u03ad\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", "OptionDatePlayed": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", "OptionDateAdded": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "\u03ac\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc \u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2", "OptionArtist": " \u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2", "OptionAlbum": "\u0386\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc", @@ -193,7 +182,7 @@ "OptionNameSort": "\u038c\u03bd\u03bf\u03bc\u03b1", "OptionFolderSort": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9", "OptionBudget": "\u03a0\u03c1\u03bf\u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2", - "OptionRevenue": "Revenue", + "OptionRevenue": "\u0388\u03c3\u03bf\u03b4\u03b1", "OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1", "OptionPosterCard": "Poster card", "OptionBackdrop": "Backdrop", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c0\u03c1\u03cc\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1", - "ScheduledTasksTitle": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2", "TabMyPlugins": "\u03a4\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u03bc\u03bf\u03c5", "TabCatalog": "\u039a\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf\u03c2", "TitlePlugins": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a4\u03c1\u03b1\u03b3\u03bf\u03cd\u03b4\u03b9\u03b1", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0392\u03af\u03bd\u03c4\u03b5\u03bf:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "\u038c\u03bd\u03bf\u03bc\u03b1:", "ButtonHelp": "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "\u03a4\u03b7\u03bb\u03b5\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae", "TabServer": "\u0394\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "\u0397 \u03b5\u03c0\u03af\u03c3\u03b7\u03bc\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7", - "OptionBeta": "\u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae", - "OptionDev": "\u0391\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 (\u03b1\u03c3\u03c4\u03b1\u03b8\u03ae\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.", "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", @@ -330,11 +312,9 @@ "TabGames": "\u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1", "TabMusic": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae", "TabOthers": "\u0386\u03bb\u03bb\u03b1", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", "OptionEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1", "OptionOtherVideos": "\u0386\u03bb\u03bb\u03b1 \u0392\u03af\u03bd\u03c4\u03b5\u03bf", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ad\u03c2", "HeaderChannels": "\u039a\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1", "TabRecordings": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", - "TabScheduled": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b1", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1", "HeaderRecentlyPlayedGames": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1 \u03c0\u03bf\u03c5 \u03c0\u03b1\u03af\u03c7\u03c4\u03b7\u03ba\u03b1\u03bd", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "\u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd", "TabFolders": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "\u0395\u03ba\u03c4\u03cc\u03c2", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "\u0391\u03c0\u03cc", - "HeaderTo": "To", - "LabelFrom": "\u0391\u03c0\u03cc:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,14 +475,13 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", - "HeaderName": "Name", - "HeaderDate": "Date", + "HeaderName": "\u038c\u03bd\u03bf\u03bc\u03b1", + "HeaderDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1", "HeaderSource": "Source", - "HeaderStatus": "Status", + "HeaderStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7", "HeaderDestination": "Destination", "HeaderProgram": "Program", "HeaderClients": "Clients", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,39 +561,19 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", "LabelUseNotificationServices": "Use the following services:", - "CategoryUser": "User", - "CategorySystem": "System", - "CategoryApplication": "Application", - "CategoryPlugin": "Plugin", + "CategoryUser": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2", + "CategorySystem": "\u03a3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1", + "CategoryApplication": "\u0395\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae", + "CategoryPlugin": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03bf", "LabelAvailableTokens": "Available tokens:", "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", "OptionAllUsers": "All users", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03c5\u03c2", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", - "ViewTypeMovies": "Movies", - "ViewTypeTvShows": "TV", - "ViewTypeGames": "Games", - "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", + "ViewTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", + "ViewTypeTvShows": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7", + "ViewTypeGames": "\u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1", + "ViewTypeMusic": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "\u0391\u03c0\u03bf\u03b8\u03ad\u03c3\u03c4\u03b5 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03b5\u03b4\u03ce", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,46 +889,33 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", - "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", - "LabelRunningTimeValue": "Running time: {0}", - "LabelIpAddressValue": "Ip address: {0}", - "UserLockedOutWithName": "User {0} has been locked out", + "UserOfflineFromDevice": "{0} \u03b1\u03c0\u03bf\u03c3\u03c5\u03bd\u03b4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc {1}", + "LabelRunningTimeValue": "\u0394\u03b9\u03ac\u03c1\u03ba\u03b5\u03b9\u03b1: {0}", + "LabelIpAddressValue": "\u0394\u03b9\u03b5\u03cd\u03b8\u03c5\u03bd\u03c3\u03b7 IP: {0}", + "UserLockedOutWithName": "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 {0} \u03b1\u03c0\u03bf\u03ba\u03bb\u03b5\u03af\u03c3\u03c4\u03b7\u03ba\u03b5", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", - "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", - "UserDeletedWithName": "User {0} has been deleted", - "MessageServerConfigurationUpdated": "Server configuration has been updated", + "UserCreatedWithName": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 {0}", + "UserDeletedWithName": "\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 {0} \u03b4\u03b9\u03b5\u03b3\u03c1\u03ac\u03c6\u03b5\u03b9", + "MessageServerConfigurationUpdated": "\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b1\u03bd", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", - "ProviderValue": "Provider: {0}", + "ProviderValue": "\u03a0\u03ac\u03c1\u03bf\u03c7\u03bf\u03c2: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", "HeaderDownloadPeopleMetadataFor": "Download biography and images for:", "OptionComposers": "Composers", "OptionOthers": "Others", "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", - "ViewTypeFolders": "Folders", + "ViewTypeFolders": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9", "OptionDisplayFolderView": "Display a folder view to show plain media folders", "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", - "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeLiveTvChannels": "Channels", + "ViewTypeLiveTvRecordingGroups": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2", + "ViewTypeLiveTvChannels": "\u039a\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1", "LabelEasyPinCode": "Easy pin code:", "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", - "HeaderGenres": "Genres", + "HeaderGenres": "\u0395\u03af\u03b4\u03b7", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1194,7 +1069,7 @@ "TitlePasswordReset": "Password Reset", "LabelPasswordRecoveryPinCode": "Pin code:", "HeaderPasswordReset": "Password Reset", - "HeaderParentalRatings": "Parental Ratings", + "HeaderParentalRatings": "\u039a\u03b1\u03c4\u03b1\u03bb\u03bb\u03b7\u03bb\u03cc\u03c4\u03b7\u03c4\u03b1", "HeaderVideoTypes": "Video Types", "HeaderYears": "Years", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", @@ -1206,13 +1081,12 @@ "OptionAllowSyncContent": "Allow Sync", "OptionAllowContentDownloading": "Allow media downloading", "NameSeasonUnknown": "Season Unknown", - "NameSeasonNumber": "Season {0}", + "NameSeasonNumber": "\u039a\u03cd\u03ba\u03bb\u03bf\u03c2 {0}", "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", "TabJobs": "Jobs", "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1271,8 +1143,7 @@ "OptionOtherTrailers": "Include trailers from older movies", "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", - "HeaderType": "Type", - "HeaderSeverity": "Severity", + "HeaderType": "\u03a4\u03cd\u03c0\u03bf\u03c2", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,9 +1162,8 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", - "HeaderImagePrimary": "Primary", - "HeaderImageBackdrop": "Backdrop", + "HeaderImagePrimary": "\u03a0\u03c1\u03c9\u03c4\u03b5\u03cd\u03bf\u03bd", + "HeaderImageBackdrop": "\u03a6\u03cc\u03bd\u03c4\u03bf", "HeaderImageLogo": "Logo", "HeaderUserPrimaryImage": "User Image", "ButtonProfile": "Profile", @@ -1315,9 +1185,9 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "HeaderSubtitles": "Subtitles", + "HeaderSubtitles": "\u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9", "HeaderVideos": "Videos", "LabelHardwareAccelerationType": "Hardware acceleration:", "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "\u039f\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2", "Delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5", "Password": "\u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", "DeleteImage": "\u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1;", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5", @@ -1365,7 +1232,7 @@ "PasswordMatchError": "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03bf\u03c5\u03bd", "UninstallPluginHeader": "\u03b1\u03c0\u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b7\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf plugin", "UninstallPluginConfirmation": "\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5;", - "NoPluginConfigurationMessage": "\u0391\u03c5\u03c4\u03cc \u03c4\u03bf plugin \u03ad\u03c7\u03b5\u03b9 \u03c4\u03af\u03c0\u03bf\u03c4\u03b1 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03b5\u03c4\u03b5", + "NoPluginConfigurationMessage": "\u0391\u03c5\u03c4\u03cc \u03c4\u03bf plugin \u03b4\u03b5\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2.", "NoPluginsInstalledMessage": "\u0388\u03c7\u03b5\u03c4\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1 plugins ", "BrowsePluginCatalogMessage": "\u03a0\u03bb\u03bf\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf plugin \u03bc\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b1 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b1 plugins", "HeaderNewApiKey": "New Api Key", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "\u03c3\u03b2\u03b7\u03c3\u03c4\u03cc\u03c2", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,23 +1511,21 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", "HeaderTrailers": "Trailers", - "HeaderResolution": "Resolution", + "HeaderResolution": "\u0391\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7", "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", + "HeaderSeason": "\u039a\u03cd\u03ba\u03bb\u03bf\u03c2", + "HeaderSeasonNumber": "\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03ba\u03cd\u03ba\u03bb\u03bf\u03c5", + "HeaderNetwork": "\u0394\u03af\u03ba\u03c4\u03c5\u03bf", "HeaderYear": "Year:", "HeaderGameSystem": "Game system", - "HeaderEmbeddedImage": "Embedded image", + "HeaderEmbeddedImage": "\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b7 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1", "HeaderTrack": "Track", "OptionCollections": "Collections", "OptionSeries": "Series", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 \u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/en-GB.json b/dashboard-ui/strings/en-GB.json index a1666480c8..3d1946baf0 100644 --- a/dashboard-ui/strings/en-GB.json +++ b/dashboard-ui/strings/en-GB.json @@ -1,8 +1,6 @@ { - "LabelExit": "Exit", - "LabelApiDocumentation": "API Documentation", - "LabelBrowseLibrary": "Browse Library", - "LabelConfigureServer": "Configure Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Previous", "LabelFinish": "Finish", "LabelNext": "Next", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Your first name:", "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Configure settings", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organise", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "PIN code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Cancel", "ButtonExit": "Exit", "ButtonNew": "New", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy PIN code", "ButtonConfigurePinCode": "Configure PIN code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", "LabelCountry": "Country:", "LabelLanguage": "Language:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", "TabPassword": "Password", "TabLibraryAccess": "Library Access", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within series", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within series", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programmes listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Episodes", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalogue", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal API key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, CPU-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favourites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organise", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organise correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organise monitors your download folders for new files and moves them to your media directories", - "AutoOrganizeTvHelp": "TV file organising will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organisation", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organise new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable DLNA server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalised groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalogue.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Showing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favourites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favourite Series", - "ViewTypeTvFavoriteEpisodes": "Favourite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favourites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favourites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customise the appearance of Emby to fit the needs of your group or organisation.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "HTTP Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "HTTP", "OptionProtocolHls": "HTTP Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1028,7 +913,7 @@ "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", "ViewTypeFolders": "Folders", "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom SSL certificate.", + "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "ViewTypeLiveTvRecordingGroups": "Recordings", "ViewTypeLiveTvChannels": "Channels", "LabelEasyPinCode": "Easy PIN code:", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External IDs:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organise recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been cancelled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favourite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organise File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on HTTP port {0}.", "LabelRunningOnPorts": "Running on HTTP port {0}, and HTTPS port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", "HeaderSeries": "Series", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "Unaired", "HeaderMissing": "Missing", "ButtonWebsite": "Website", - "ValueSeriesYearToPresent": "{0}-Present", + "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1932,8 +1763,8 @@ "SyncJobItemStatusCancelled": "Cancelled", "LabelProfile": "Profile:", "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "EmbyIntroDownloadMessageWithoutLink": "To download and install Emby Server visit the Emby website.", + "EmbyIntroDownloadMessage": "To download and install the free Emby Server, visit {0}.", + "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server, visit the Emby website.", "ButtonNewServer": "New Server", "MyDevice": "My Device", "ButtonRemote": "Remote", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalise your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U URL (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalised groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2094,7 +1890,7 @@ "MapChannels": "Map Channels", "LabelffmpegPath": "FFmpeg path:", "LabelffmpegVersion": "FFmpeg version:", - "LabelffmpegPathHelp": "The path to your downloaded FFmpeg application, or folder containing FFmpeg.", + "LabelffmpegPathHelp": "The path to the ffmpeg application file or folder containing ffmpeg.", "SetupFFmpeg": "Setup FFmpeg", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with FFmpeg. Emby is in no way affiliated with FFmpeg, its ownership, code or distribution.", "EnterFFmpegLocation": "Enter FFmpeg path", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Centre to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Centre to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/en-US.json b/dashboard-ui/strings/en-US.json index bc5ce1fa3a..5851a6c5c6 100644 --- a/dashboard-ui/strings/en-US.json +++ b/dashboard-ui/strings/en-US.json @@ -1,8 +1,4 @@ { - "LabelExit": "Exit", - "LabelApiDocumentation": "Api Documentation", - "LabelBrowseLibrary": "Browse Library", - "LabelConfigureServer": "Configure Emby", "LabelPrevious": "Previous", "LabelFinish": "Finish", "LabelNext": "Next", @@ -14,25 +10,13 @@ "LabelYourFirstName": "Your first name:", "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", "LabelConfigureSettings": "Configure settings", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organize", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +24,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Cancel", "ButtonExit": "Exit", "ButtonNew": "New", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +46,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +55,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +68,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", "LabelCountry": "Country:", "LabelLanguage": "Language:", @@ -94,7 +77,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", "TabPassword": "Password", "TabLibraryAccess": "Library Access", "TabAccess": "Access", @@ -110,8 +92,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +130,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Episodes", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +151,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -205,7 +191,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +200,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +261,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +274,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +288,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +309,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +327,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +343,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +394,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +419,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +436,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +472,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +495,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +522,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +550,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +558,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +603,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +711,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +722,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +730,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +738,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +749,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +798,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +818,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +826,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +844,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +853,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG/PNG only", @@ -973,7 +869,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +886,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +933,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1033,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1084,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1108,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1127,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1141,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1159,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1182,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1198,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1250,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1289,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1330,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1341,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1375,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1409,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1468,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1480,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1491,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1508,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1516,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", "HeaderSeries": "Series", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1553,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1560,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1616,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1684,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1714,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,12 +1747,8 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", + "BookLibraryHelp": "Audio and text books are supported", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", "SyncJobItemStatusQueued": "Queued", @@ -1941,18 +1769,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1796,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1811,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1835,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1852,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1864,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1933,16 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series." } diff --git a/dashboard-ui/strings/es-AR.json b/dashboard-ui/strings/es-AR.json index 0d56413ff7..555873a62e 100644 --- a/dashboard-ui/strings/es-AR.json +++ b/dashboard-ui/strings/es-AR.json @@ -1,8 +1,6 @@ { - "LabelExit": "Salir", - "LabelApiDocumentation": "Documentaci\u00f3n API", - "LabelBrowseLibrary": "Browse Library", - "LabelConfigureServer": "Configurar Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Previous", "LabelFinish": "Finish", "LabelNext": "Next", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Your first name:", "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Configure settings", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "T\u00e9rminos de servicios de Emby", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organizar", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Cancel", "ButtonExit": "Exit", "ButtonNew": "New", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", "LabelCountry": "Country:", "LabelLanguage": "Language:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", "TabPassword": "Password", "TabLibraryAccess": "Library Access", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Mostar cap\u00edtulos no disponibles en temporadas", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Cap\u00edtulos", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "\u00daltimos cap\u00edtulos", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos cap\u00edtulos", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Cap\u00edtulos faltantes", "OptionUnairedEpisode": "Cap\u00edtulos no emitidos", "OptionEpisodeSortName": "Nombre corto del cap\u00edtulo", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Falta cap\u00edtulo.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Im\u00e1genes", "OptionKeywords": "Palabras clave", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Lugar de nacimiento", - "LabelAllChannels": "Todos los canales", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/es-ES.json b/dashboard-ui/strings/es-ES.json new file mode 100644 index 0000000000..1d21fc2eaf --- /dev/null +++ b/dashboard-ui/strings/es-ES.json @@ -0,0 +1,1949 @@ +{ + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", + "LabelPrevious": "Anterior", + "LabelFinish": "Terminar", + "LabelNext": "Siguiente", + "LabelYoureDone": "\u00a1Has acabado!", + "WelcomeToProject": "\u00a1Bienvenido a Emby!", + "ThisWizardWillGuideYou": "Este asistente te guiar\u00e1 por el proceso de instalaci\u00f3n. Para empezar, elige tu idioma preferido.", + "TellUsAboutYourself": "Cu\u00e9ntanos acerca de ti", + "ButtonQuickStartGuide": "Gu\u00eda de inicio r\u00e1pido", + "LabelYourFirstName": "Tu nombre:", + "MoreUsersCanBeAddedLater": "Se pueden a\u00f1adir m\u00e1s usuarios despu\u00e9s desde el panel de control.", + "UserProfilesIntro": "Emby incluye soporte para perfiles de usuario, permitiendo a cada usuario tener sus ajustes de visualizaci\u00f3n, estado de la reproducci\u00f3n y control parental.", + "WizardCompleted": "Esto es todo lo que necesitamos por ahora. Emby ha comenzado a recolectar informaci\u00f3n sobre tu biblioteca. \u00c9chale un vistazo a nuestras aplicaciones, y pincha en Terminar<\/b> para ver el Panel de control<\/b>.", + "LabelConfigureSettings": "Configurar ajustes", + "HeaderTermsOfService": "T\u00e9rminos del servicio de Emby", + "MessagePleaseAcceptTermsOfService": "Por favor acepta los t\u00e9rminos del servicio y la pol\u00edtica de privacidad antes de continuar.", + "OptionIAcceptTermsOfService": "Acepto los terminos de servicio", + "ButtonPrivacyPolicy": "Politica de privacidad", + "ButtonTermsOfService": "Terminos de servicios", + "ButtonConvertMedia": "Convertir medios", + "ButtonOrganize": "Organizar", + "HeaderSupporterBenefits": "Ventajas de Emby Premiere", + "HeaderAddUser": "Agregar Usuario", + "LabelAddConnectSupporterHelp": "Para agregar a un usuario que no est\u00e1 en el listado, usted tiene primero que conectar su cuenta con Emby Connect desde la p\u00e1gina de perfil del usuario.", + "LabelPinCode": "C\u00f3digo PIN:", + "OptionHideWatchedContentFromLatestMedia": "Esconder medios vistos de los medios m\u00e1s recientes", + "DeleteMedia": "Delete media", + "HeaderSync": "Sincronizar", + "ButtonOk": "OK", + "ButtonCancel": "Cancelar", + "ButtonExit": "Salir", + "ButtonNew": "Nuevo", + "OptionDev": "Desarrollo", + "OptionBeta": "Beta", + "HeaderTaskTriggers": "Tareas de activaci\u00f3n", + "HeaderTV": "TV", + "HeaderAudio": "Audio", + "HeaderVideo": "Video", + "HeaderPaths": "Ruta", + "CategorySync": "Sincronizar", + "TabPlaylist": "Lista de reproducci\u00f3n", + "HeaderEasyPinCode": "C\u00f3digo PIN f\u00e1cil:", + "HeaderInstalledServices": "Servicios Instalados", + "HeaderAvailableServices": "Servicios Disponibles", + "MessageNoServicesInstalled": "No hay servicios instalados.", + "HeaderToAccessPleaseEnterEasyPinCode": "Para acceder, por favor introduzca su c\u00f3digo PIN f\u00e1cil.", + "ButtonConfigurePinCode": "Configurar contrase\u00f1a", + "RegisterWithPayPal": "Registrese con PayPal", + "LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:", + "LabelSyncTempPathHelp": "Especificar una carpeta personalizada para archivos en sincronizaci\u00f3n. Medios convertidos creados durante el proceso de sincronizaci\u00f3n ser\u00e1n guardados aqu\u00ed.", + "LabelCustomCertificatePath": "Lugar del certificado personalizado:", + "LabelCustomCertificatePathHelp": "Incluya su propio certificado ssl o archivo .pfx. Si lo omite el servidor crear\u00e1 un certificado auto-firmado.", + "TitleNotifications": "Notificaciones", + "OptionDetectArchiveFilesAsMedia": "Detectar ficheros de archivo como medios", + "OptionDetectArchiveFilesAsMediaHelp": "Si est\u00e1 habilitado, archivos con extensiones .rar y .zip ser\u00e1n detectados como medios.", + "LabelEnterConnectUserName": "Nombre de usuario o email:", + "LabelEnterConnectUserNameHelp": "Este es el usuario o email de su cuenta Emby online.", + "HeaderSyncJobInfo": "Trabajo de Sync", + "FolderTypeMixed": "Contenido mixto", + "FolderTypeMovies": "Peliculas", + "FolderTypeMusic": "Musica", + "FolderTypePhotos": "Fotos", + "FolderTypeMusicVideos": "Videos Musicales", + "FolderTypeGames": "Juegos", + "FolderTypeBooks": "Libros", + "FolderTypeTvShows": "TV", + "FolderTypeInherit": "Heredado", + "LabelContentType": "Tipo de contenido:", + "TitleScheduledTasks": "Tareas programadas", + "HeaderSetupLibrary": "Configure sus bibliotecas de medios", + "LabelFolderType": "Tipo de carpeta:", + "LabelCountry": "Country:", + "LabelLanguage": "Language:", + "LabelTimeLimitHours": "Time limit (hours):", + "HeaderPreferredMetadataLanguage": "Preferred Metadata Language", + "LabelSaveLocalMetadata": "Save artwork and metadata into media folders", + "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", + "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", + "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", + "TabPassword": "Password", + "TabLibraryAccess": "Library Access", + "TabAccess": "Access", + "TabImage": "Image", + "TabProfile": "Profile", + "TabMetadata": "Metadata", + "TabImages": "Images", + "TabNotifications": "Notifications", + "TabCollectionTitles": "Titles", + "HeaderDeviceAccess": "Device Access", + "OptionEnableAccessFromAllDevices": "Enable access from all devices", + "OptionEnableAccessToAllChannels": "Enable access to all channels", + "OptionEnableAccessToAllLibraries": "Enable access to all libraries", + "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", + "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", + "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", + "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", + "HeaderPlaybackSettings": "Playback Settings", + "LabelAudioLanguagePreference": "Audio language preference:", + "LabelSubtitleLanguagePreference": "Subtitle language preference:", + "OptionDefaultSubtitles": "Default", + "OptionSmartSubtitles": "Smart", + "OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", + "OptionOnlyForcedSubtitles": "Only forced subtitles", + "OptionAlwaysPlaySubtitles": "Always play subtitles", + "OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", + "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", + "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", + "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.", + "TabProfiles": "Profiles", + "TabSecurity": "Security", + "ButtonAddUser": "Add User", + "ButtonInviteUser": "Invite User", + "ButtonSave": "Save", + "ButtonResetPassword": "Reset Password", + "LabelNewPassword": "New password:", + "LabelNewPasswordConfirm": "New password confirm:", + "HeaderCreatePassword": "Create Password", + "LabelCurrentPassword": "Current password:", + "LabelMaxParentalRating": "M\u00e1xima clasificaci\u00f3n permitida", + "MaxParentalRatingHelp": "El contenido con clasificaci\u00f3n parental superior se ocultar\u00e1 para este usuario.", + "LibraryAccessHelp": "Seleccione las carpetas de medios para compartir con este usuario. Los administradores podr\u00e1n editar todas las carpetas usando el gestor de metadatos.", + "ChannelAccessHelp": "Seleccione los canales para compartir con este usuario. Los administradores podr\u00e1n editar todos los canales mediante el gestor de metadatos.", + "ButtonDeleteImage": "Borrar imagen", + "LabelSelectUsers": "Seleccionar usuarios:", + "ButtonUpload": "Subir", + "HeaderUploadNewImage": "Subir nueva imagen", + "ImageUploadAspectRatioHelp": "Se Recomienda una Proporci\u00f3n de Aspecto 1:1. Solo JPG\/PNG", + "MessageNothingHere": "Nada aqu\u00ed.", + "MessagePleaseEnsureInternetMetadata": "Por favor aseg\u00farese que la descarga de metadatos de internet est\u00e1 habilitada", + "AlreadyPaidHelp1": "Si ya has pagado por instalar una versi\u00f3n anterior de Media Browser para Android no necesitas pagar otra vez para poder activar esta aplicaci\u00f3n. Haz clic en OK para mandarnos un mensaje a {0} y te la activaremos.", + "AlreadyPaidHelp2": "\u00bfYa tienes Emby Premiere? Cancela este di\u00e1logo, configura Emby Premiere en el Panel de Control de tu servidor Emby en Ayuda -> Emby Premiere, y se te desbloquear\u00e1 autom\u00e1ticamente.", + "TabSuggestions": "Sugerencias", + "TabLatest": "Novedades", + "TabUpcoming": "Pr\u00f3ximos", + "TabShows": "Programas", + "TabEpisodes": "Episodios", + "TabGenres": "G\u00e9neros", + "TabNetworks": "redes", + "HeaderUsers": "Usuarios", + "HeaderFilters": "Filtros", + "ButtonFilter": "Filtro", + "OptionFavorite": "Favoritos", + "OptionLikes": "Me gusta", + "OptionDislikes": "No me gusta", + "OptionActors": "Actores", + "OptionGuestStars": "Estrellas invitadas", + "OptionDirectors": "Directores", + "OptionWriters": "Guionistas", + "OptionProducers": "Productores", + "HeaderResume": "Continuar", + "HeaderContinueWatching": "Continuar viendo", + "HeaderNextUp": "Siguiendo", + "NoNextUpItemsMessage": "Nada encontrado. \u00a1Comienza a ver tus programas!", + "HeaderLatestEpisodes": "Ultimos episodios", + "HeaderPersonTypes": "Tipos de personas:", + "TabSongs": "Canciones", + "TabAlbums": "\u00c1lbumes", + "TabArtists": "Artistas", + "TabAlbumArtists": "Album Artistas", + "TabMusicVideos": "Videos Musicales", + "ButtonSort": "Ordenar", + "OptionPlayed": "Reproducido", + "OptionUnplayed": "No reproducido", + "OptionAscending": "Ascendente", + "OptionDescending": "Descendente", + "OptionRuntime": "Tiempo", + "OptionReleaseDate": "Fecha de Lanzamiento", + "OptionPlayCount": "Play Count", + "OptionDatePlayed": "Date Played", + "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", + "OptionAlbumArtist": "Album Artist", + "OptionArtist": "Artist", + "OptionAlbum": "Album", + "OptionTrackName": "Track Name", + "OptionCommunityRating": "Community Rating", + "OptionNameSort": "Name", + "OptionFolderSort": "Folders", + "OptionBudget": "Budget", + "OptionRevenue": "Revenue", + "OptionPoster": "Poster", + "OptionPosterCard": "Poster card", + "OptionBackdrop": "Backdrop", + "OptionTimeline": "Timeline", + "OptionThumb": "Thumb", + "OptionThumbCard": "Thumb card", + "OptionBanner": "Banner", + "OptionCriticRating": "Critic Rating", + "OptionVideoBitrate": "Video Bitrate", + "OptionResumable": "Resumable", + "ScheduledTasksHelp": "Click a task to adjust its schedule.", + "TabMyPlugins": "My Plugins", + "TabCatalog": "Catalog", + "TitlePlugins": "Plugins", + "HeaderAutomaticUpdates": "Automatic Updates", + "HeaderNowPlaying": "Now Playing", + "HeaderLatestAlbums": "Latest Albums", + "HeaderLatestSongs": "Latest Songs", + "HeaderRecentlyPlayed": "Recently Played", + "HeaderFrequentlyPlayed": "Frequently Played", + "LabelVideoType": "Video Type:", + "OptionBluray": "Bluray", + "OptionDvd": "Dvd", + "OptionIso": "Iso", + "Option3D": "3D", + "LabelStatus": "Status:", + "LabelLastResult": "Last result:", + "OptionHasSubtitles": "Subtitles", + "OptionHasTrailer": "Trailer", + "OptionHasThemeSong": "Theme Song", + "OptionHasThemeVideo": "Theme Video", + "TabMovies": "Movies", + "TabStudios": "Studios", + "TabTrailers": "Trailers", + "LabelArtists": "Artists:", + "LabelArtistsHelp": "Separate multiple using ;", + "HeaderLatestTrailers": "Latest Trailers", + "OptionHasSpecialFeatures": "Special Features", + "OptionImdbRating": "IMDb Rating", + "OptionParentalRating": "Parental Rating", + "OptionPremiereDate": "Premiere Date", + "TabBasic": "Basic", + "TabAdvanced": "Advanced", + "OptionContinuing": "Continuing", + "OptionEnded": "Ended", + "HeaderAirDays": "Air Days", + "OptionSundayShort": "Sun", + "OptionMondayShort": "Mon", + "OptionTuesdayShort": "Tue", + "OptionWednesdayShort": "Wed", + "OptionThursdayShort": "Thu", + "OptionFridayShort": "Fri", + "OptionSaturdayShort": "Sat", + "OptionSunday": "Sunday", + "OptionMonday": "Monday", + "OptionTuesday": "Tuesday", + "OptionWednesday": "Wednesday", + "OptionThursday": "Thursday", + "OptionFriday": "Friday", + "OptionSaturday": "Saturday", + "HeaderManagement": "Management", + "LabelManagement": "Management:", + "OptionMissingImdbId": "Missing IMDb Id", + "OptionMissingTvdbId": "Missing TheTVDB Id", + "OptionMissingOverview": "Missing Overview", + "TabGeneral": "General", + "TitleSupport": "Support", + "TabAbout": "About", + "TabSupporterKey": "Emby Premiere Key", + "TabBecomeSupporter": "Get Emby Premiere", + "TabEmbyPremiere": "Emby Premiere", + "ProjectHasCommunity": "Emby has a thriving community of users and contributors.", + "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", + "SearchKnowledgeBase": "Search the Knowledge Base", + "VisitTheCommunity": "Visit the Community", + "VisitProjectWebsite": "Visit the Emby Web Site", + "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.", + "OptionHideUser": "Hide this user from login screens", + "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", + "OptionDisableUser": "Disable this user", + "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", + "LabelName": "Name:", + "ButtonHelp": "Help", + "OptionAllowUserToManageServer": "Allow this user to manage the server", + "HeaderFeatureAccess": "Feature Access", + "OptionAllowMediaPlayback": "Allow media playback", + "OptionAllowBrowsingLiveTv": "Allow Live TV access", + "OptionAllowDeleteLibraryContent": "Allow media deletion", + "OptionAllowManageLiveTv": "Allow Live TV recording management", + "OptionAllowRemoteControlOthers": "Allow remote control of other users", + "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", + "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", + "OptionAllowLinkSharing": "Allow social media sharing", + "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", + "HeaderRemoteControl": "Remote Control", + "OptionMissingTmdbId": "Missing Tmdb Id", + "OptionIsHD": "HD", + "OptionIsSD": "SD", + "OptionMetascore": "Metascore", + "ButtonSelect": "Select", + "PismoMessage": "Utilizing Pismo File Mount through a donated license.", + "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", + "HeaderCredits": "Credits", + "PleaseSupportOtherProduces": "Please support other free products we utilize:", + "VersionNumber": "Version {0}", + "TabPaths": "Paths", + "TabServer": "Server", + "TabTranscoding": "Transcoding", + "OptionRelease": "Official Release", + "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", + "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", + "LabelRunServerAtStartup": "Run server at startup", + "LabelRunServerAtStartupHelp": "This will start the tray icon on windows startup. To start the windows service, uncheck this and run the service from the windows control panel. Please note that you cannot run both at the same time, so you will need to exit the tray icon before starting the service.", + "ButtonSelectDirectory": "Select Directory", + "LabelCachePath": "Cache path:", + "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", + "LabelRecordingPath": "Default recording path:", + "LabelMovieRecordingPath": "Movie recording path (optional):", + "LabelSeriesRecordingPath": "Series recording path (optional):", + "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", + "LabelMetadataPath": "Metadata path:", + "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", + "LabelTranscodingTempPath": "Transcoding temporary path:", + "LabelTranscodingTempPathHelp": "This folder contains working files used by the transcoder. Specify a custom path, or leave empty to use the default within the server's data folder.", + "TabBasics": "Basics", + "TabTV": "TV", + "TabGames": "Games", + "TabMusic": "Music", + "TabOthers": "Others", + "OptionMovies": "Movies", + "OptionEpisodes": "Episodes", + "OptionOtherVideos": "Other Videos", + "LabelFanartApiKey": "Personal api key:", + "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", + "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", + "LabelMetadataDownloadLanguage": "Preferred download language:", + "ButtonSignIn": "Sign In", + "TitleSignIn": "Sign In", + "HeaderPleaseSignIn": "Please sign in", + "LabelUser": "User:", + "LabelPassword": "Password:", + "ButtonManualLogin": "Manual Login", + "TabGuide": "Guide", + "TabChannels": "Channels", + "TabCollections": "Collections", + "HeaderChannels": "Channels", + "TabRecordings": "Recordings", + "TabSeries": "Series", + "TabFavorites": "Favorites", + "TabMyLibrary": "My Library", + "ButtonCancelRecording": "Cancel Recording", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", + "HeaderWhatsOnTV": "What's On", + "TabSettings": "Settings", + "ButtonRefreshGuideData": "Refresh Guide Data", + "ButtonRefresh": "Refresh", + "OptionPriority": "Priority", + "OptionRecordOnAllChannels": "Record on all channels", + "OptionRecordAnytime": "Record at any time", + "OptionRecordOnlyNewEpisodes": "Record only new episodes", + "HeaderDays": "Days", + "HeaderActiveRecordings": "Active Recordings", + "HeaderLatestRecordings": "Latest Recordings", + "HeaderAllRecordings": "All Recordings", + "ButtonPlay": "Play", + "ButtonEdit": "Edit", + "ButtonRecord": "Record", + "ButtonDelete": "Delete", + "ButtonRemove": "Remove", + "OptionRecordSeries": "Record Series", + "HeaderDetails": "Details", + "TitleLiveTV": "Live TV", + "LabelNumberOfGuideDays": "Number of days of guide data to download:", + "LabelNumberOfGuideDaysHelp": "Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.", + "OptionAutomatic": "Auto", + "HeaderServices": "Services", + "LabelCustomizeOptionsPerMediaType": "Customize for media type:", + "OptionDownloadThumbImage": "Thumb", + "OptionDownloadMenuImage": "Menu", + "OptionDownloadLogoImage": "Logo", + "OptionDownloadBoxImage": "Box", + "OptionDownloadDiscImage": "Disc", + "OptionDownloadBannerImage": "Banner", + "OptionDownloadBackImage": "Back", + "OptionDownloadArtImage": "Art", + "OptionDownloadPrimaryImage": "Primary", + "HeaderFetchImages": "Fetch Images:", + "HeaderImageSettings": "Image Settings", + "TabOther": "Other", + "LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:", + "LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:", + "LabelMinBackdropDownloadWidth": "Minimum backdrop download width:", + "LabelMinScreenshotDownloadWidth": "Minimum screenshot download width:", + "ButtonAddScheduledTaskTrigger": "Add Trigger", + "HeaderAddScheduledTaskTrigger": "Add Trigger", + "ButtonAdd": "Add", + "LabelTriggerType": "Trigger Type:", + "OptionDaily": "Daily", + "OptionWeekly": "Weekly", + "OptionOnInterval": "On an interval", + "OptionOnAppStartup": "On application startup", + "OptionAfterSystemEvent": "After a system event", + "LabelDay": "Day:", + "LabelTime": "Time:", + "LabelEvent": "Event:", + "OptionWakeFromSleep": "Wake from sleep", + "LabelEveryXMinutes": "Every:", + "HeaderTvTuners": "Tuners", + "HeaderLatestGames": "Latest Games", + "HeaderRecentlyPlayedGames": "Recently Played Games", + "TabGameSystems": "Game Systems", + "TabFolders": "Folders", + "TabPathSubstitution": "Path Substitution", + "LabelSeasonZeroDisplayName": "Season 0 display name:", + "LabelEnableRealtimeMonitor": "Enable real time monitoring", + "LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.", + "ButtonScanLibrary": "Scan Library", + "HeaderNumberOfPlayers": "Players", + "OptionAnyNumberOfPlayers": "Any", + "Option1Player": "1+", + "Option2Player": "2+", + "Option3Player": "3+", + "Option4Player": "4+", + "HeaderMediaFolders": "Media Folders", + "HeaderThemeVideos": "Theme Videos", + "HeaderThemeSongs": "Theme Songs", + "HeaderScenes": "Scenes", + "HeaderAwardsAndReviews": "Awards and Reviews", + "HeaderSoundtracks": "Soundtracks", + "HeaderMusicVideos": "Music Videos", + "HeaderSpecialFeatures": "Special Features", + "HeaderCastCrew": "Cast & Crew", + "HeaderAdditionalParts": "Additional Parts", + "ButtonSplitVersionsApart": "Split Versions Apart", + "ButtonPlayTrailer": "Trailer", + "LabelMissing": "Missing", + "OptionSpecialEpisode": "Specials", + "OptionMissingEpisode": "Missing Episodes", + "OptionUnairedEpisode": "Unaired Episodes", + "OptionEpisodeSortName": "Episode Sort Name", + "OptionSeriesSortName": "Series Name", + "OptionTvdbRating": "Tvdb Rating", + "HeaderAddTitles": "Add Titles", + "LabelEnableDlnaPlayTo": "Enable DLNA Play To", + "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", + "LabelEnableDlnaDebugLogging": "Enable DLNA debug logging", + "LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.", + "LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)", + "LabelEnableDlnaClientDiscoveryIntervalHelp": "Determines the duration in seconds between SSDP searches performed by Emby.", + "HeaderCustomDlnaProfiles": "Custom Profiles", + "HeaderSystemDlnaProfiles": "System Profiles", + "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", + "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", + "TabHome": "Home", + "TabInfo": "Info", + "HeaderLinks": "Links", + "LinkCommunity": "Community", + "LinkGithub": "Github", + "LinkApi": "Api", + "LabelFriendlyServerName": "Friendly server name:", + "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", + "LabelPreferredDisplayLanguage": "Preferred display language:", + "LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.", + "LabelReadHowYouCanContribute": "Learn how you can contribute.", + "ButtonSubmit": "Submit", + "ButtonCreate": "Create", + "LabelCustomCss": "Custom css:", + "LabelCustomCssHelp": "Apply your own custom css to the web interface.", + "LabelLocalHttpServerPortNumber": "Local http port number:", + "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.", + "LabelPublicHttpPort": "Public http port number:", + "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", + "LabelPublicHttpsPort": "Public https port number:", + "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", + "LabelEnableHttps": "Report https as external address", + "LabelEnableHttpsHelp": "If enabled, the server will report an https url to Emby apps as it's external address.", + "LabelHttpsPort": "Local https port number:", + "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.", + "LabelEnableAutomaticPortMap": "Enable automatic port mapping", + "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", + "LabelExternalDDNS": "External domain:", + "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.", + "TitleAppSettings": "App Settings", + "LabelMinResumePercentage": "Min resume percentage:", + "LabelMaxResumePercentage": "Max resume percentage:", + "LabelMinResumeDuration": "Min resume duration (seconds):", + "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", + "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", + "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", + "TabActivityLog": "Activity Log", + "TabSmartMatches": "Smart Matches", + "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", + "HeaderName": "Name", + "HeaderDate": "Date", + "HeaderSource": "Source", + "HeaderStatus": "Status", + "HeaderDestination": "Destination", + "HeaderProgram": "Program", + "HeaderClients": "Clients", + "LabelCompleted": "Completed", + "LabelFailed": "Failed", + "LabelSkipped": "Skipped", + "LabelSeries": "Series:", + "LabelSeasonNumber": "Season number:", + "LabelEpisodeNumber": "Episode number:", + "LabelEndingEpisodeNumber": "Ending episode number:", + "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", + "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", + "HeaderSupportTheTeam": "Support the Emby Team", + "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", + "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", + "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", + "OptionEnableEpisodeOrganization": "Enable new episode organization", + "LabelWatchFolder": "Watch folder:", + "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", + "LabelMinFileSizeForOrganize": "Minimum file size (MB):", + "LabelMinFileSizeForOrganizeHelp": "Files under this size will be ignored.", + "LabelSeasonFolderPattern": "Season folder pattern:", + "LabelSeasonZeroFolderName": "Season zero folder name:", + "HeaderEpisodeFilePattern": "Episode file pattern", + "LabelEpisodePattern": "Episode pattern:", + "LabelMultiEpisodePattern": "Multi-Episode pattern:", + "HeaderSupportedPatterns": "Supported Patterns", + "HeaderTerm": "Term", + "HeaderPattern": "Pattern", + "HeaderResult": "Result", + "LabelDeleteEmptyFolders": "Delete empty folders after organizing", + "LabelDeleteEmptyFoldersHelp": "Enable this to keep the download directory clean.", + "LabelDeleteLeftOverFiles": "Delete left over files with the following extensions:", + "LabelDeleteLeftOverFilesHelp": "Separate with ;. For example: .nfo;.txt", + "OptionOverwriteExistingEpisodes": "Overwrite existing episodes", + "LabelTransferMethod": "Transfer method", + "OptionCopy": "Copy", + "OptionMove": "Move", + "LabelTransferMethodHelp": "Copy or move files from the watch folder", + "HeaderLatestNews": "Latest News", + "HeaderRunningTasks": "Running Tasks", + "HeaderActiveDevices": "Active Devices", + "HeaderPendingInstallations": "Pending Installations", + "ButtonRestartNow": "Restart Now", + "ButtonRestart": "Restart", + "ButtonShutdown": "Shutdown", + "ButtonUpdateNow": "Update Now", + "TabHosting": "Hosting", + "PleaseUpdateManually": "Please shutdown the server and update manually.", + "NewServerVersionAvailable": "A new version of Emby Server is available!", + "ServerUpToDate": "Emby Server is up to date", + "LabelComponentsUpdated": "The following components have been installed or updated:", + "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", + "LabelDownMixAudioScale": "Audio boost when downmixing:", + "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", + "ButtonLinkKeys": "Transfer Key", + "LabelOldSupporterKey": "Old Emby Premiere key", + "LabelNewSupporterKey": "New Emby Premiere key", + "HeaderMultipleKeyLinking": "Transfer to New Key", + "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.", + "LabelCurrentEmailAddress": "Current email address", + "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", + "HeaderForgotKey": "Forgot Key", + "LabelEmailAddress": "Email address", + "LabelSupporterEmailAddress": "The email address that was used to purchase the key.", + "ButtonRetrieveKey": "Retrieve Key", + "LabelSupporterKey": "Emby Premiere key (paste from email):", + "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.", + "MessageInvalidKey": "Emby Premiere key is missing or invalid.", + "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", + "HeaderDisplaySettings": "Display Settings", + "LabelEnableDlnaServer": "Enable Dlna server", + "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", + "LabelEnableBlastAliveMessages": "Blast alive messages", + "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", + "LabelBlastMessageInterval": "Alive message interval (seconds)", + "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", + "LabelDefaultUser": "Default user:", + "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", + "HeaderServerSettings": "Server Settings", + "HeaderRequireManualLogin": "Require manual username entry for:", + "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", + "OptionOtherApps": "Other apps", + "OptionMobileApps": "Mobile apps", + "LabelNotificationEnabled": "Enable this notification", + "LabelMonitorUsers": "Monitor activity from:", + "LabelSendNotificationToUsers": "Send the notification to:", + "LabelUseNotificationServices": "Use the following services:", + "CategoryUser": "User", + "CategorySystem": "System", + "CategoryApplication": "Application", + "CategoryPlugin": "Plugin", + "LabelAvailableTokens": "Available tokens:", + "AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.", + "OptionAllUsers": "All users", + "OptionAdminUsers": "Administrators", + "OptionCustomUsers": "Custom", + "ButtonArrowUp": "Up", + "ButtonArrowDown": "Down", + "ButtonArrowLeft": "Left", + "ButtonArrowRight": "Right", + "ButtonBack": "Back", + "ButtonInfo": "Info", + "ButtonOsd": "On screen display", + "ButtonPageUp": "Page Up", + "ButtonPageDown": "Page Down", + "ButtonHome": "Home", + "ButtonSearch": "Search", + "ButtonSettings": "Settings", + "ButtonTakeScreenshot": "Capture Screenshot", + "LetterButtonAbbreviation": "A", + "TabNowPlaying": "Now Playing", + "TabNavigation": "Navigation", + "TabControls": "Controls", + "ButtonScenes": "Scenes", + "ButtonSubtitles": "Subtitles", + "ButtonPreviousTrack": "Previous track", + "ButtonNextTrack": "Next track", + "ButtonStop": "Stop", + "ButtonPause": "Pause", + "ButtonNext": "Next", + "ButtonPrevious": "Previous", + "LabelGroupMoviesIntoCollections": "Group movies into collections", + "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", + "ButtonVolumeUp": "Volume up", + "ButtonVolumeDown": "Volume down", + "HeaderLatestMedia": "Latest Media", + "OptionNoSubtitles": "No Subtitles", + "HeaderCollections": "Collections", + "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", + "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", + "HeaderResponseProfile": "Response Profile", + "LabelType": "Type:", + "LabelProfileContainer": "Container:", + "LabelProfileVideoCodecs": "Video codecs:", + "LabelProfileAudioCodecs": "Audio codecs:", + "LabelProfileCodecs": "Codecs:", + "HeaderDirectPlayProfile": "Direct Play Profile", + "HeaderTranscodingProfile": "Transcoding Profile", + "HeaderCodecProfile": "Codec Profile", + "HeaderContainerProfile": "Container Profile", + "OptionProfileVideo": "Video", + "OptionProfileAudio": "Audio", + "OptionProfileVideoAudio": "Video Audio", + "OptionProfilePhoto": "Photo", + "LabelUserLibrary": "User library:", + "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", + "OptionPlainStorageFolders": "Display all folders as plain storage folders", + "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", + "OptionPlainVideoItems": "Display all videos as plain video items", + "OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".", + "LabelSupportedMediaTypes": "Supported Media Types:", + "HeaderIdentification": "Identification", + "TabDirectPlay": "Direct Play", + "TabContainers": "Containers", + "TabCodecs": "Codecs", + "TabResponses": "Responses", + "HeaderProfileInformation": "Profile Information", + "LabelEmbedAlbumArtDidl": "Embed album art in Didl", + "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", + "LabelAlbumArtPN": "Album art PN:", + "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", + "LabelAlbumArtMaxWidth": "Album art max width:", + "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", + "LabelAlbumArtMaxHeight": "Album art max height:", + "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", + "LabelIconMaxWidth": "Icon max width:", + "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", + "LabelIconMaxHeight": "Icon max height:", + "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", + "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", + "HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.", + "LabelMaxBitrate": "Max bitrate:", + "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", + "LabelMaxStreamingBitrate": "Max streaming bitrate:", + "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", + "LabelMaxChromecastBitrate": "Max Chromecast bitrate:", + "LabelMusicStaticBitrate": "Music sync bitrate:", + "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", + "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", + "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", + "OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests", + "OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.", + "LabelFriendlyName": "Friendly name", + "LabelManufacturer": "Manufacturer", + "LabelManufacturerUrl": "Manufacturer url", + "LabelModelName": "Model name", + "LabelModelNumber": "Model number", + "LabelModelDescription": "Model description", + "LabelModelUrl": "Model url", + "LabelSerialNumber": "Serial number", + "LabelDeviceDescription": "Device description", + "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", + "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", + "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", + "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", + "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", + "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", + "LabelXDlnaCap": "X-Dlna cap:", + "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", + "LabelXDlnaDoc": "X-Dlna doc:", + "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", + "LabelSonyAggregationFlags": "Sony aggregation flags:", + "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", + "LabelTranscodingContainer": "Container:", + "LabelTranscodingVideoCodec": "Video codec:", + "LabelTranscodingAudioCodec": "Audio codec:", + "OptionEnableM2tsMode": "Enable M2ts mode", + "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", + "OptionEstimateContentLength": "Estimate content length when transcoding", + "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", + "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", + "HeaderDownloadSubtitlesFor": "Download subtitles for:", + "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", + "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", + "TabSubtitles": "Subtitles", + "TabChapters": "Chapters", + "LabelOpenSubtitlesUsername": "Open Subtitles username:", + "LabelOpenSubtitlesPassword": "Open Subtitles password:", + "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", + "LabelSubtitlePlaybackMode": "Subtitle mode:", + "LabelDownloadLanguages": "Download languages:", + "ButtonRegister": "Register", + "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", + "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", + "HeaderSendMessage": "Send Message", + "ButtonSend": "Send", + "LabelMessageText": "Message text:", + "LabelMessageTitle": "Message title:", + "MessageNoAvailablePlugins": "No available plugins.", + "LabelDisplayPluginsFor": "Display plugins for:", + "PluginTabAppClassic": "Emby Classic", + "LabelEpisodeNamePlain": "Episode name", + "LabelSeriesNamePlain": "Series name", + "ValueSeriesNamePeriod": "Series.name", + "ValueSeriesNameUnderscore": "Series_name", + "ValueEpisodeNamePeriod": "Episode.name", + "ValueEpisodeNameUnderscore": "Episode_name", + "LabelSeasonNumberPlain": "Season number", + "LabelEpisodeNumberPlain": "Episode number", + "LabelEndingEpisodeNumberPlain": "Ending episode number", + "HeaderTypeText": "Enter Text", + "LabelTypeText": "Text", + "TabDisplay": "Display", + "TabLanguages": "Languages", + "TabAppSettings": "App Settings", + "LabelEnableThemeSongs": "Enable theme songs", + "LabelEnableBackdrops": "Enable backdrops", + "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", + "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", + "HeaderHomePage": "Home Page", + "OptionAuto": "Auto", + "OptionYes": "Yes", + "OptionNo": "No", + "HeaderOptions": "Options", + "LabelHomePageSection1": "Home page section 1:", + "LabelHomePageSection2": "Home page section 2:", + "LabelHomePageSection3": "Home page section 3:", + "LabelHomePageSection4": "Home page section 4:", + "OptionMyMedia": "My media", + "OptionMyMediaSmall": "My media (small)", + "OptionResumablemedia": "Resume", + "OptionLatestMedia": "Latest media", + "OptionLatestChannelMedia": "Latest channel items", + "HeaderLatestChannelItems": "Latest Channel Items", + "OptionNone": "None", + "HeaderLiveTv": "Live TV", + "HeaderReports": "Reports", + "HeaderSettings": "Settings", + "OptionDefaultSort": "Default", + "TabNextUp": "Next Up", + "HeaderBecomeProjectSupporter": "Get Emby Premiere", + "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", + "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", + "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", + "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", + "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", + "LabelChannelStreamQuality": "Preferred internet channel quality:", + "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", + "OptionBestAvailableStreamQuality": "Best available", + "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", + "ViewTypeMovies": "Movies", + "ViewTypeTvShows": "TV", + "ViewTypeGames": "Games", + "ViewTypeMusic": "Music", + "HeaderOtherDisplaySettings": "Display Settings", + "ViewTypeMusicSongs": "Songs", + "ViewTypeMusicFavorites": "Favorites", + "ViewTypeMusicFavoriteAlbums": "Favorite Albums", + "ViewTypeMusicFavoriteArtists": "Favorite Artists", + "ViewTypeMusicFavoriteSongs": "Favorite Songs", + "HeaderMyViews": "My Views", + "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", + "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", + "OptionDisplayAdultContent": "Display adult content", + "OptionLibraryFolders": "Media folders", + "TitleRemoteControl": "Remote Control", + "OptionLatestTvRecordings": "Latest recordings", + "LabelProtocolInfo": "Protocol info:", + "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", + "TabNfoSettings": "Nfo Settings", + "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Services tab to configure options for your media types.", + "LabelKodiMetadataUser": "Sync user watch data to nfo's for:", + "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.", + "LabelKodiMetadataDateFormat": "Release date format:", + "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", + "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", + "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", + "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", + "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", + "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.", + "OptionDisplayChannelsInline": "Display channels as media folders", + "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", + "LabelDisplayCollectionsView": "Display a collections view to show movie collections", + "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", + "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", + "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", + "TabServices": "Services", + "TabLogs": "Logs", + "TabBranding": "Branding", + "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", + "LabelLoginDisclaimer": "Login disclaimer:", + "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", + "OptionList": "List", + "TabDashboard": "Dashboard", + "TitleServer": "Server", + "LabelCache": "Cache:", + "LabelLogs": "Logs:", + "LabelMetadata": "Metadata:", + "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", + "HeaderLatestMusic": "Latest Music", + "HeaderBranding": "Branding", + "HeaderApiKeys": "Api Keys", + "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.", + "HeaderApiKey": "Api Key", + "HeaderApp": "App", + "HeaderDevice": "Device", + "HeaderUser": "User", + "HeaderDateIssued": "Date Issued", + "HeaderHttpHeaders": "Http Headers", + "HeaderIdentificationHeader": "Identification Header", + "LabelValue": "Value:", + "LabelMatchType": "Match type:", + "OptionEquals": "Equals", + "OptionRegex": "Regex", + "OptionSubstring": "Substring", + "TabView": "View", + "TabFilter": "Filter", + "ButtonView": "View", + "LabelPageSize": "Item limit:", + "LabelPath": "Path:", + "LabelView": "View:", + "TabUsers": "Users", + "HeaderFeatures": "Features", + "HeaderAdvanced": "Advanced", + "ButtonSync": "Sync", + "TabScheduledTasks": "Scheduled Tasks", + "HeaderChapters": "Chapters", + "HeaderResumeSettings": "Resume Settings", + "TabSync": "Sync", + "TitleUsers": "Users", + "LabelProtocol": "Protocol:", + "OptionProtocolHttp": "Http", + "OptionProtocolHls": "Http Live Streaming", + "LabelContext": "Context:", + "TabPlaylists": "Playlists", + "ButtonClose": "Close", + "LabelAllLanguages": "All languages", + "HeaderBrowseOnlineImages": "Browse Online Images", + "LabelSource": "Source:", + "OptionAll": "All", + "LabelImage": "Image:", + "HeaderImages": "Images", + "HeaderBackdrops": "Backdrops", + "HeaderAddUpdateImage": "Add\/Update Image", + "LabelDropImageHere": "Drop image here", + "LabelJpgPngOnly": "JPG\/PNG only", + "LabelImageType": "Image type:", + "OptionPrimary": "Primary", + "OptionArt": "Art", + "OptionBox": "Box", + "OptionBoxRear": "Box rear", + "OptionDisc": "Disc", + "OptionIcon": "Icon", + "OptionLogo": "Logo", + "OptionMenu": "Menu", + "OptionScreenshot": "Screenshot", + "OptionLocked": "Locked", + "OptionUnidentified": "Unidentified", + "OptionMissingParentalRating": "Missing parental rating", + "OptionSeason0": "Season 0", + "LabelReport": "Report:", + "OptionReportSongs": "Songs", + "OptionReportSeries": "Series", + "OptionReportSeasons": "Seasons", + "OptionReportTrailers": "Trailers", + "OptionReportMusicVideos": "Music videos", + "OptionReportMovies": "Movies", + "OptionReportHomeVideos": "Home videos", + "OptionReportGames": "Games", + "OptionReportEpisodes": "Episodes", + "OptionReportCollections": "Collections", + "OptionReportBooks": "Books", + "OptionReportArtists": "Artists", + "OptionReportAlbums": "Albums", + "ButtonMore": "More", + "HeaderActivity": "Activity", + "PluginInstalledWithName": "{0} was installed", + "PluginUpdatedWithName": "{0} was updated", + "PluginUninstalledWithName": "{0} was uninstalled", + "UserOnlineFromDevice": "{0} is online from {1}", + "UserOfflineFromDevice": "{0} has disconnected from {1}", + "LabelRunningTimeValue": "Running time: {0}", + "LabelIpAddressValue": "Ip address: {0}", + "UserLockedOutWithName": "User {0} has been locked out", + "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", + "UserCreatedWithName": "User {0} has been created", + "UserDeletedWithName": "User {0} has been deleted", + "MessageServerConfigurationUpdated": "Server configuration has been updated", + "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", + "MessageApplicationUpdated": "Emby Server has been updated", + "UserDownloadingItemWithValues": "{0} is downloading {1}", + "ProviderValue": "Provider: {0}", + "HeaderRecentActivity": "Recent Activity", + "HeaderPeople": "People", + "HeaderDownloadPeopleMetadataFor": "Download biography and images for:", + "OptionComposers": "Composers", + "OptionOthers": "Others", + "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", + "ViewTypeFolders": "Folders", + "OptionDisplayFolderView": "Display a folder view to show plain media folders", + "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", + "ViewTypeLiveTvRecordingGroups": "Recordings", + "ViewTypeLiveTvChannels": "Channels", + "LabelEasyPinCode": "Easy pin code:", + "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", + "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", + "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", + "HeaderPassword": "Password", + "HeaderViewOrder": "View Order", + "ButtonResetEasyPassword": "Reset easy pin code", + "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps", + "HeaderPersonInfo": "Person Info", + "HeaderConfirmDeletion": "Confirm Deletion", + "LabelAlbumArtist": "Album artist:", + "LabelAlbumArtists": "Album artists:", + "LabelAlbum": "Album:", + "LabelCommunityRating": "Community rating:", + "LabelAwardSummary": "Award summary:", + "LabelReleaseDate": "Release date:", + "LabelEndDate": "End date:", + "LabelAirDate": "Air days:", + "LabelAirTime:": "Air time:", + "LabelRuntimeMinutes": "Run time (minutes):", + "HeaderSpecialEpisodeInfo": "Special Episode Info", + "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", + "HeaderGenres": "Genres", + "HeaderPlotKeywords": "Plot Keywords", + "HeaderStudios": "Studios", + "HeaderTags": "Tags", + "OptionNoTrailer": "No Trailer", + "ButtonPurchase": "Purchase", + "OptionActor": "Actor", + "OptionComposer": "Composer", + "OptionDirector": "Director", + "OptionProducer": "Producer", + "LabelAirDays": "Air days:", + "LabelAirTime": "Air time:", + "HeaderMediaInfo": "Media Info", + "HeaderPhotoInfo": "Photo Info", + "HeaderInstall": "Install", + "LabelSelectVersionToInstall": "Select version to install:", + "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere", + "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.", + "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.", + "HeaderReviews": "Reviews", + "HeaderDeveloperInfo": "Developer Info", + "HeaderRevisionHistory": "Revision History", + "ButtonViewWebsite": "View website", + "HeaderXmlSettings": "Xml Settings", + "HeaderXmlDocumentAttributes": "Xml Document Attributes", + "HeaderXmlDocumentAttribute": "Xml Document Attribute", + "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", + "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", + "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", + "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", + "LabelConnectGuestUserName": "Their Emby username or email address:", + "LabelConnectUserName": "Emby username or email address:", + "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.", + "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect", + "LabelExternalPlayers": "External players:", + "LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.", + "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.", + "HeaderSubtitleProfile": "Subtitle Profile", + "HeaderSubtitleProfiles": "Subtitle Profiles", + "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", + "LabelFormat": "Format:", + "LabelMethod": "Method:", + "LabelDidlMode": "Didl mode:", + "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", + "OptionResElement": "res element", + "OptionEmbedSubtitles": "Embed within container", + "OptionExternallyDownloaded": "External download", + "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", + "LabelSubtitleFormatHelp": "Example: srt", + "ButtonLearnMore": "Learn more", + "TabPlayback": "Playback", + "HeaderAudioSettings": "Audio Settings", + "HeaderSubtitleSettings": "Subtitle Settings", + "TabCinemaMode": "Cinema Mode", + "TitlePlayback": "Playback", + "LabelEnableCinemaModeFor": "Enable cinema mode for:", + "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "OptionTrailersFromMyMovies": "Include trailers from movies in my library", + "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", + "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", + "LabelEnableIntroParentalControl": "Enable smart parental control", + "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", + "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.", + "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", + "LabelCustomIntrosPath": "Custom intros path:", + "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", + "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", + "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", + "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", + "CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", + "LabelEnableCinemaMode": "Enable cinema mode", + "HeaderCinemaMode": "Cinema Mode", + "LabelDateAddedBehavior": "Date added behavior for new content:", + "OptionDateAddedImportTime": "Use date scanned into the library", + "OptionDateAddedFileTime": "Use file creation date", + "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", + "LabelNumberTrailerToPlay": "Number of trailers to play:", + "TitleDevices": "Devices", + "TabCameraUpload": "Camera Upload", + "TabDevices": "Devices", + "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.", + "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", + "LabelCameraUploadPath": "Camera upload path:", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", + "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", + "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", + "LabelCustomDeviceDisplayName": "Display name:", + "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", + "HeaderInviteUser": "Invite User", + "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.", + "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.", + "ButtonSendInvitation": "Send Invitation", + "HeaderSignInWithConnect": "Sign in with Emby Connect", + "HeaderGuests": "Guests", + "HeaderPendingInvitations": "Pending Invitations", + "TabParentalControl": "Parental Control", + "HeaderAccessSchedule": "Access Schedule", + "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", + "LabelAccessDay": "Day of week:", + "LabelAccessStart": "Start time:", + "LabelAccessEnd": "End time:", + "HeaderSchedule": "Schedule", + "OptionEveryday": "Every day", + "OptionWeekdays": "Weekdays", + "OptionWeekends": "Weekends", + "MessageProfileInfoSynced": "User profile information synced with Emby Connect.", + "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account", + "ButtonTrailer": "Trailer", + "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", + "HeaderNewUsers": "New Users", + "ButtonSignUp": "Sign up", + "ButtonForgotPassword": "Forgot password", + "OptionDisableUserPreferences": "Disable access to user preferences", + "OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.", + "HeaderSelectServer": "Select Server", + "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", + "TitleNewUser": "New User", + "ButtonConfigurePassword": "Configure Password", + "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", + "HeaderLibraryAccess": "Library Access", + "HeaderChannelAccess": "Channel Access", + "HeaderLatestItems": "Latest Items", + "LabelSelectLastestItemsFolders": "Include media from the following sections in Latest Items", + "HeaderShareMediaFolders": "Share Media Folders", + "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", + "HeaderInvitations": "Invitations", + "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", + "HeaderForgotPassword": "Forgot Password", + "TitlePasswordReset": "Password Reset", + "LabelPasswordRecoveryPinCode": "Pin code:", + "HeaderPasswordReset": "Password Reset", + "HeaderParentalRatings": "Parental Ratings", + "HeaderVideoTypes": "Video Types", + "HeaderYears": "Years", + "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", + "LabelBlockContentWithTags": "Block content with tags:", + "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", + "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", + "TabActivity": "Activity", + "TitleSync": "Sync", + "OptionAllowSyncContent": "Allow Sync", + "OptionAllowContentDownloading": "Allow media downloading", + "NameSeasonUnknown": "Season Unknown", + "NameSeasonNumber": "Season {0}", + "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", + "TabJobs": "Jobs", + "TabSyncJobs": "Sync Jobs", + "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", + "MessageReenableUser": "See below to reenable", + "OptionTVMovies": "TV Movies", + "HeaderUpcomingMovies": "Upcoming Movies", + "HeaderUpcomingSports": "Upcoming Sports", + "HeaderUpcomingPrograms": "Upcoming Programs", + "ButtonMoreItems": "More", + "OptionEnableTranscodingThrottle": "Enable throttling", + "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", + "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", + "OptionAllowSyncTranscoding": "Allow syncing that requires transcoding", + "HeaderPlayback": "Media Playback", + "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", + "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", + "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.", + "TabStreaming": "Streaming", + "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", + "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle.", + "LabelConversionCpuCoreLimit": "CPU core limit:", + "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", + "OptionEnableFullSpeedConversion": "Enable full speed conversion", + "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", + "HeaderPlaylists": "Playlists", + "HeaderViewStyles": "View Styles", + "TabPhotos": "Photos", + "HeaderWelcomeToEmby": "Welcome to Emby", + "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", + "ButtonSkip": "Skip", + "TextConnectToServerManually": "Connect to server manually", + "ButtonSignInWithConnect": "Sign in with Emby Connect", + "ButtonConnect": "Connect", + "LabelServerHost": "Host:", + "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", + "LabelServerPort": "Port:", + "HeaderNewServer": "New Server", + "ButtonChangeServer": "Change Server", + "HeaderConnectToServer": "Connect to Server", + "OptionReportList": "List View", + "OptionReportStatistics": "Statistics", + "OptionReportGrouping": "Grouping", + "HeaderExport": "Export", + "HeaderColumns": "Columns", + "ButtonReset": "Reset", + "OptionEnableExternalVideoPlayers": "Enable external video players", + "LabelEnableFullScreen": "Enable fullscreen mode", + "LabelEmail": "Email:", + "LabelUsername": "Username:", + "HeaderSignUp": "Sign Up", + "LabelPasswordConfirm": "Password (confirm):", + "ButtonAddServer": "Add Server", + "TabHomeScreen": "Home Screen", + "HeaderDisplay": "Display", + "HeaderNavigation": "Navigation", + "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", + "OptionOtherTrailers": "Include trailers from older movies", + "HeaderOverview": "Overview", + "HeaderShortOverview": "Short Overview", + "HeaderType": "Type", + "OptionReportActivities": "Activities Log", + "HeaderTunerDevices": "Tuner Devices", + "HeaderAddDevice": "Add Device", + "HeaderExternalServices": "External Services", + "LabelTunerIpAddress": "Tuner IP Address:", + "TabExternalServices": "External Services", + "HeaderGuideProviders": "Guide Providers", + "AddGuideProviderHelp": "Add a source for TV Guide information", + "LabelZipCode": "Zip Code:", + "GuideProviderSelectListings": "Select Listings", + "GuideProviderLogin": "Login", + "LabelLineup": "Lineup:", + "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", + "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", + "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", + "ButtonRepeat": "Repeat", + "LabelEnableThisTuner": "Enable this tuner", + "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", + "HeaderImagePrimary": "Primary", + "HeaderImageBackdrop": "Backdrop", + "HeaderImageLogo": "Logo", + "HeaderUserPrimaryImage": "User Image", + "ButtonProfile": "Profile", + "ButtonProfileHelp": "Set your profile image and password.", + "HeaderHomeScreenSettings": "Home Screen settings", + "HeaderProfile": "Profile", + "HeaderLanguage": "Language", + "LabelTranscodingThreadCount": "Transcoding thread count:", + "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.", + "OptionMax": "Max", + "LabelSyncPath": "Synced content path:", + "OptionSyncOnlyOnWifi": "Sync only on Wifi", + "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", + "HeaderUpcomingForKids": "Upcoming for Kids", + "HeaderSetupLiveTV": "Setup Live TV", + "LabelTunerType": "Tuner type:", + "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", + "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", + "HeaderSetupTVGuide": "Setup TV Guide", + "LabelDataProvider": "Data provider:", + "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", + "HeaderDefaultRecordingSettings": "Default Recording Settings", + "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", + "HeaderSubtitles": "Subtitles", + "HeaderVideos": "Videos", + "LabelHardwareAccelerationType": "Hardware acceleration:", + "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "ButtonServerDashboard": "Server Dashboard", + "HeaderAdmin": "Admin", + "ButtonSignOut": "Sign out", + "HeaderCameraUpload": "Camera Upload", + "SelectCameraUploadServers": "Upload camera photos to the following servers:", + "ButtonClear": "Clear", + "LabelFolder": "Folder:", + "HeadersFolders": "Folders", + "LabelDisplayName": "Display name:", + "HeaderNewRecording": "New Recording", + "LabelCodecIntrosPath": "Codec intros path:", + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", + "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", + "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", + "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", + "FileExtension": "File extension", + "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", + "OptionDownloadImagesInAdvance": "Download images in advance", + "SettingsSaved": "Settings saved.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", + "Users": "Users", + "Delete": "Delete", + "Password": "Password", + "DeleteImage": "Delete Image", + "MessageThankYouForSupporting": "Thank you for supporting Emby.", + "DeleteImageConfirmation": "Are you sure you wish to delete this image?", + "FileReadCancelled": "The file read has been canceled.", + "FileNotFound": "File not found.", + "FileReadError": "An error occurred while reading the file.", + "DeleteUser": "Delete User", + "DeleteUserConfirmation": "Are you sure you wish to delete this user?", + "PasswordResetHeader": "Reset Password", + "PasswordResetComplete": "The password has been reset.", + "PinCodeResetComplete": "The pin code has been reset.", + "PasswordResetConfirmation": "Are you sure you wish to reset the password?", + "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", + "HeaderPinCodeReset": "Reset Pin Code", + "PasswordSaved": "Password saved.", + "PasswordMatchError": "Password and password confirmation must match.", + "UninstallPluginHeader": "Uninstall Plugin", + "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", + "NoPluginConfigurationMessage": "This plugin has no settings to configure.", + "NoPluginsInstalledMessage": "You have no plugins installed.", + "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", + "HeaderNewApiKey": "New Api Key", + "LabelAppName": "App name", + "LabelAppNameExample": "Example: Sickbeard, NzbDrone", + "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", + "MessageKeyEmailedTo": "Key emailed to {0}.", + "MessageKeysLinked": "Keys linked.", + "HeaderConfirmation": "Confirmation", + "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", + "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", + "TextEnjoyBonusFeatures": "Enjoy Bonus Features", + "ButtonCancelSyncJob": "Cancel sync", + "HeaderAddTag": "Add Tag", + "LabelTag": "Tag:", + "ButtonSelectView": "Select view", + "HeaderSelectDate": "Select Date", + "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", + "LabelFromHelp": "Example: {0} (on the server)", + "HeaderMyMedia": "My Media", + "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", + "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", + "HeaderConfirmRemoveUser": "Remove User", + "ValueTimeLimitSingleHour": "Time limit: 1 hour", + "ValueTimeLimitMultiHour": "Time limit: {0} hours", + "PluginCategoryGeneral": "General", + "PluginCategoryContentProvider": "Content Providers", + "PluginCategoryScreenSaver": "Screen Savers", + "PluginCategoryTheme": "Themes", + "PluginCategorySync": "Sync", + "PluginCategorySocialIntegration": "Social Networks", + "PluginCategoryNotifications": "Notifications", + "PluginCategoryMetadata": "Metadata", + "PluginCategoryLiveTV": "Live TV", + "PluginCategoryChannel": "Channels", + "HeaderSearch": "Search", + "ValueDateCreated": "Date created: {0}", + "LabelArtist": "Artist", + "LabelMovie": "Movie", + "LabelMusicVideo": "Music Video", + "LabelEpisode": "Episode", + "Series": "Series", + "LabelStopping": "Stopping", + "LabelCancelled": "Cancelled", + "ButtonDownload": "Download", + "SyncJobStatusQueued": "Queued", + "SyncJobStatusConverting": "Converting", + "SyncJobStatusFailed": "Failed", + "SyncJobStatusCancelled": "Cancelled", + "SyncJobStatusCompleted": "Synced", + "SyncJobStatusReadyToTransfer": "Ready to Transfer", + "SyncJobStatusTransferring": "Transferring", + "SyncJobStatusCompletedWithError": "Synced with errors", + "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", + "LabelCollection": "Collection", + "HeaderDevices": "Devices", + "ButtonScheduledTasks": "Scheduled tasks", + "MessageItemsAdded": "Items added", + "HeaderSelectCertificatePath": "Select Certificate Path", + "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", + "HeaderWelcomeToProjectWebClient": "Welcome to Emby", + "ButtonTakeTheTour": "Take the tour", + "HeaderWelcomeBack": "Welcome back!", + "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", + "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", + "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "HeaderSelectDevices": "Select Devices", + "ButtonCancelItem": "Cancel item", + "ButtonQueueForRetry": "Queue for retry", + "ButtonReenable": "Re-enable", + "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", + "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", + "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", + "HeaderDeleteTaskTrigger": "Delete Task Trigger", + "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", + "MessageNoPluginsInstalled": "You have no plugins installed.", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", + "LabelVersionInstalled": "{0} installed", + "LabelNumberReviews": "{0} Reviews", + "LabelFree": "Free", + "HeaderPlaybackError": "Playback Error", + "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", + "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", + "MessagePlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", + "HeaderSelectAudio": "Select Audio", + "HeaderSelectSubtitles": "Select Subtitles", + "ButtonMarkForRemoval": "Remove from device", + "ButtonUnmarkForRemoval": "Cancel removal from device", + "LabelDefaultStream": "(Default)", + "LabelForcedStream": "(Forced)", + "LabelDefaultForcedStream": "(Default\/Forced)", + "LabelUnknownLanguage": "Unknown language", + "ButtonMute": "Mute", + "ButtonUnmute": "Unmute", + "ButtonPlaylist": "Playlist", + "LabelEnabled": "Enabled", + "LabelDisabled": "Disabled", + "ButtonMoreInformation": "More Information", + "LabelNoUnreadNotifications": "No unread notifications.", + "MessageInvalidUser": "Invalid username or password. Please try again.", + "HeaderLoginFailure": "Login Failure", + "RecommendationBecauseYouLike": "Because you like {0}", + "RecommendationBecauseYouWatched": "Because you watched {0}", + "RecommendationDirectedBy": "Directed by {0}", + "RecommendationStarring": "Starring {0}", + "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", + "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", + "MessageRecordingCancelled": "Recording cancelled.", + "MessageRecordingScheduled": "Recording scheduled.", + "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", + "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", + "MessageRecordingSaved": "Recording saved.", + "OptionWeekend": "Weekends", + "OptionWeekday": "Weekdays", + "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", + "LiveTvUpdateAvailable": "(Update available)", + "LabelVersionUpToDate": "Up to date!", + "ButtonResetTuner": "Reset tuner", + "HeaderResetTuner": "Reset Tuner", + "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", + "ButtonCancelSeries": "Cancel Series", + "HeaderSeriesRecordings": "Series Recordings", + "LabelAnytime": "Any time", + "StatusRecording": "Recording", + "StatusWatching": "Watching", + "StatusRecordingProgram": "Recording {0}", + "StatusWatchingProgram": "Watching {0}", + "HeaderSplitMedia": "Split Media Apart", + "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", + "HeaderError": "Error", + "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", + "HeaderLibraryFolders": "Media Folders", + "HeaderFavoriteMovies": "Favorite Movies", + "HeaderFavoriteShows": "Favorite Shows", + "HeaderFavoriteEpisodes": "Favorite Episodes", + "HeaderFavoriteGames": "Favorite Games", + "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", + "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", + "HeaderSelectServerCachePath": "Select Server Cache Path", + "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", + "HeaderSelectMetadataPath": "Select Metadata Path", + "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", + "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", + "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", + "HeaderFavoriteAlbums": "Favorite Albums", + "HeaderLatestChannelMedia": "Latest Channel Items", + "ButtonOrganizeFile": "Organize File", + "ButtonDeleteFile": "Delete File", + "HeaderOrganizeFile": "Organize File", + "HeaderDeleteFile": "Delete File", + "StatusSkipped": "Skipped", + "StatusFailed": "Failed", + "StatusSuccess": "Success", + "MessageFileWillBeDeleted": "The following file will be deleted:", + "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", + "MessageDuplicatesWillBeDeleted": "In addition the following duplicates will be deleted:", + "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", + "MessageDestinationTo": "to:", + "HeaderSelectWatchFolder": "Select Watch Folder", + "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", + "OrganizePatternResult": "Result: {0}", + "AutoOrganizeError": "Error Organizing File", + "FileOrganizeManually": "Organize File", + "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", + "HeaderRestart": "Restart", + "HeaderShutdown": "Shutdown", + "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", + "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", + "ValueItemCount": "{0} item", + "ValueItemCountPlural": "{0} items", + "NewVersionOfSomethingAvailable": "A new version of {0} is available!", + "VersionXIsAvailableForDownload": "Version {0} is now available for download.", + "LabelVersionNumber": "Version {0}", + "LabelPlayMethodTranscoding": "Transcoding", + "LabelPlayMethodDirectStream": "Direct Streaming", + "LabelPlayMethodDirectPlay": "Direct Playing", + "LabelAudioCodec": "Audio: {0}", + "LabelVideoCodec": "Video: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", + "LabelRunningOnPort": "Running on http port {0}.", + "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", + "HeaderLatestFromChannel": "Latest from {0}", + "ButtonRemoteControl": "Remote Control", + "HeaderLatestTvRecordings": "Latest Recordings", + "LabelCurrentPath": "Current path:", + "HeaderSelectMediaPath": "Select Media Path", + "HeaderSelectPath": "Select Path", + "ButtonNetwork": "Network", + "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", + "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", + "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Emby system user at least read access to your storage locations.", + "HeaderMenu": "Menu", + "ButtonOpen": "Open", + "ButtonShuffle": "Shuffle", + "ButtonResume": "Resume", + "HeaderAudioTracks": "Audio Tracks", + "HeaderLibraries": "Libraries", + "HeaderVideoQuality": "Video Quality", + "MessageErrorPlayingVideo": "There was an error playing the video.", + "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", + "ButtonDashboard": "Dashboard", + "ButtonReports": "Reports", + "MetadataManager": "Metadata Manager", + "HeaderTime": "Time", + "LabelAddedOnDate": "Added {0}", + "ButtonStart": "Start", + "OptionBlockOthers": "Others", + "OptionBlockTvShows": "TV Shows", + "OptionBlockTrailers": "Trailers", + "OptionBlockMusic": "Music", + "OptionBlockMovies": "Movies", + "OptionBlockBooks": "Books", + "OptionBlockGames": "Games", + "OptionBlockLiveTvPrograms": "Live TV Programs", + "OptionBlockLiveTvChannels": "Live TV Channels", + "OptionBlockChannelContent": "Internet Channel Content", + "ButtonRevoke": "Revoke", + "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", + "HeaderConfirmRevokeApiKey": "Revoke Api Key", + "ValueContainer": "Container: {0}", + "ValueAudioCodec": "Audio Codec: {0}", + "ValueVideoCodec": "Video Codec: {0}", + "ValueCodec": "Codec: {0}", + "ValueConditions": "Conditions: {0}", + "LabelAll": "All", + "HeaderDeleteImage": "Delete Image", + "MessageFileNotFound": "File not found.", + "MessageFileReadError": "An error occurred reading this file.", + "ButtonNextPage": "Next Page", + "ButtonPreviousPage": "Previous Page", + "ButtonMoveLeft": "Move left", + "ButtonMoveRight": "Move right", + "ButtonBrowseOnlineImages": "Browse online images", + "HeaderDeleteItem": "Delete Item", + "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", + "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", + "MessageItemSaved": "Item saved.", + "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", + "OptionOff": "Off", + "OptionOn": "On", + "ButtonUninstall": "Uninstall", + "HeaderEnabledFields": "Enabled Fields", + "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", + "HeaderLiveTV": "Live TV", + "MissingPrimaryImage": "Missing primary image.", + "MissingBackdropImage": "Missing backdrop image.", + "MissingLogoImage": "Missing logo image.", + "MissingEpisode": "Missing episode.", + "OptionBackdrops": "Backdrops", + "OptionImages": "Images", + "OptionKeywords": "Keywords", + "OptionTags": "Tags", + "OptionStudios": "Studios", + "OptionName": "Name", + "OptionOverview": "Overview", + "OptionGenres": "Genres", + "OptionPeople": "People", + "OptionProductionLocations": "Production Locations", + "OptionBirthLocation": "Birth Location", + "HeaderChangeFolderType": "Change Content Type", + "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", + "HeaderAlert": "Alert", + "MessagePleaseRestart": "Please restart to finish updating.", + "ButtonHide": "Hide", + "MessageSettingsSaved": "Settings saved.", + "TabLibrary": "Library", + "TabDLNA": "DLNA", + "TabLiveTV": "Live TV", + "TabAutoOrganize": "Auto-Organize", + "TabPlugins": "Plugins", + "TabHelp": "Help", + "ButtonFullscreen": "Fullscreen", + "ButtonAudioTracks": "Audio Tracks", + "ButtonQuality": "Quality", + "HeaderNotifications": "Notifications", + "HeaderSelectPlayer": "Select Player", + "HeaderVideoError": "Video Error", + "ButtonViewSeriesRecording": "View series recording", + "HeaderSpecials": "Specials", + "HeaderTrailers": "Trailers", + "HeaderResolution": "Resolution", + "HeaderRuntime": "Runtime", + "HeaderParentalRating": "Parental rating", + "HeaderReleaseDate": "Release date", + "HeaderSeries": "Series", + "HeaderSeason": "Season", + "HeaderSeasonNumber": "Season number", + "HeaderNetwork": "Network", + "HeaderYear": "Year", + "HeaderGameSystem": "Game system", + "HeaderEmbeddedImage": "Embedded image", + "HeaderTrack": "Track", + "OptionCollections": "Collections", + "OptionSeries": "Series", + "OptionSeasons": "Seasons", + "OptionGames": "Games", + "OptionGameSystems": "Game systems", + "OptionMusicArtists": "Music artists", + "OptionMusicAlbums": "Music albums", + "OptionMusicVideos": "Music videos", + "OptionSongs": "Songs", + "OptionHomeVideos": "Home videos & photos", + "OptionBooks": "Books", + "ButtonUp": "Up", + "ButtonDown": "Down", + "LabelMetadataReaders": "Metadata readers:", + "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", + "LabelMetadataDownloaders": "Metadata downloaders:", + "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", + "LabelMetadataSavers": "Metadata savers:", + "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", + "LabelImageFetchers": "Image fetchers:", + "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", + "LabelDynamicExternalId": "{0} Id:", + "PersonTypePerson": "Person", + "OptionSortName": "Sort name", + "LabelDateOfBirth": "Date of birth:", + "LabelDeathDate": "Death date:", + "HeaderRemoveMediaLocation": "Remove Media Location", + "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", + "LabelNewName": "New name:", + "HeaderRemoveMediaFolder": "Remove Media Folder", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", + "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", + "ButtonRename": "Rename", + "ButtonChangeContentType": "Change content type", + "HeaderMediaLocations": "Media Locations", + "LabelContentTypeValue": "Content type: {0}", + "FolderTypeUnset": "Unset (mixed content)", + "BirthPlaceValue": "Birth place: {0}", + "DeathDateValue": "Died: {0}", + "BirthDateValue": "Born: {0}", + "HeaderLatestReviews": "Latest Reviews", + "HeaderPluginInstallation": "Plugin Installation", + "MessageAlreadyInstalled": "This version is already installed.", + "ValueReviewCount": "{0} Reviews", + "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", + "MessageTrialExpired": "The trial period for this feature has expired", + "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", + "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", + "ValuePriceUSD": "Price: {0} (USD)", + "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", + "HeaderEmbyAccountAdded": "Emby Account Added", + "MessageEmbyAccountAdded": "The Emby account has been added to this user.", + "MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", + "HeaderEmbyAccountRemoved": "Emby Account Removed", + "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", + "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", + "HeaderUnrated": "Unrated", + "ValueDiscNumber": "Disc {0}", + "HeaderUnknownDate": "Unknown Date", + "HeaderUnknownYear": "Unknown Year", + "ValueMinutes": "{0} min", + "HeaderSelectExternalPlayer": "Select External Player", + "HeaderExternalPlayerPlayback": "External Player Playback", + "ButtonImDone": "I'm Done", + "OptionWatched": "Watched", + "OptionUnwatched": "Unwatched", + "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", + "LabelMarkAs": "Mark as:", + "OptionInProgress": "In-Progress", + "LabelResumePoint": "Resume point:", + "ValueOneMovie": "1 movie", + "ValueMovieCount": "{0} movies", + "ValueOneTrailer": "1 trailer", + "ValueTrailerCount": "{0} trailers", + "ValueOneSeries": "1 series", + "ValueSeriesCount": "{0} series", + "ValueOneEpisode": "1 episode", + "ValueEpisodeCount": "{0} episodes", + "ValueOneGame": "1 game", + "ValueGameCount": "{0} games", + "ValueOneAlbum": "1 album", + "ValueAlbumCount": "{0} albums", + "ValueOneSong": "1 song", + "ValueSongCount": "{0} songs", + "ValueOneMusicVideo": "1 music video", + "ValueMusicVideoCount": "{0} music videos", + "HeaderOffline": "Offline", + "HeaderUnaired": "Unaired", + "HeaderMissing": "Missing", + "ButtonWebsite": "Website", + "ValueSeriesYearToPresent": "{0} - Present", + "ValueAwards": "Awards: {0}", + "ValuePremiered": "Premiered {0}", + "ValuePremieres": "Premieres {0}", + "ValueStudio": "Studio: {0}", + "ValueStudios": "Studios: {0}", + "ValueStatus": "Status: {0}", + "LabelLimit": "Limit:", + "ValueLinks": "Links: {0}", + "HeaderCastAndCrew": "Cast & Crew", + "ValueArtist": "Artist: {0}", + "ValueArtists": "Artists: {0}", + "MediaInfoCameraMake": "Camera make", + "MediaInfoCameraModel": "Camera model", + "MediaInfoAltitude": "Altitude", + "MediaInfoAperture": "Aperture", + "MediaInfoExposureTime": "Exposure time", + "MediaInfoFocalLength": "Focal length", + "MediaInfoOrientation": "Orientation", + "MediaInfoIsoSpeedRating": "Iso speed rating", + "MediaInfoLatitude": "Latitude", + "MediaInfoLongitude": "Longitude", + "MediaInfoShutterSpeed": "Shutter speed", + "MediaInfoSoftware": "Software", + "HeaderMoreLikeThis": "More Like This", + "HeaderMovies": "Movies", + "HeaderAlbums": "Albums", + "HeaderGames": "Games", + "HeaderBooks": "Books", + "HeaderEpisodes": "Episodes", + "HeaderSeasons": "Seasons", + "HeaderTracks": "Tracks", + "HeaderItems": "Items", + "HeaderOtherItems": "Other Items", + "ButtonFullReview": "Full review", + "ValueAsRole": "as {0}", + "ValueGuestStar": "Guest star", + "MediaInfoSize": "Size", + "MediaInfoPath": "Path", + "MediaInfoFile": "File", + "MediaInfoFormat": "Format", + "MediaInfoContainer": "Container", + "MediaInfoDefault": "Default", + "MediaInfoForced": "Forced", + "MediaInfoExternal": "External", + "MediaInfoTimestamp": "Timestamp", + "MediaInfoPixelFormat": "Pixel format", + "MediaInfoBitDepth": "Bit depth", + "MediaInfoSampleRate": "Sample rate", + "MediaInfoBitrate": "Bitrate", + "MediaInfoChannels": "Channels", + "MediaInfoLayout": "Layout", + "MediaInfoLanguage": "Language", + "MediaInfoCodec": "Codec", + "MediaInfoCodecTag": "Codec tag", + "MediaInfoProfile": "Profile", + "MediaInfoLevel": "Level", + "MediaInfoAspectRatio": "Aspect ratio", + "MediaInfoResolution": "Resolution", + "MediaInfoAnamorphic": "Anamorphic", + "MediaInfoInterlaced": "Interlaced", + "MediaInfoFramerate": "Framerate", + "MediaInfoStreamTypeAudio": "Audio", + "MediaInfoStreamTypeData": "Data", + "MediaInfoStreamTypeVideo": "Video", + "MediaInfoStreamTypeSubtitle": "Subtitle", + "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", + "MediaInfoRefFrames": "Ref frames", + "TabExpert": "Expert", + "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", + "HeaderThankYou": "Thank You", + "LabelFullReview": "Full review:", + "ReleaseYearValue": "Release year: {0}", + "OriginalAirDateValue": "Original air date: {0}", + "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", + "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", + "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", + "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", + "WebClientTourMetadataManager": "Click edit to open the metadata manager", + "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", + "WebClientTourCollections": "Create movie collections to group box sets together", + "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", + "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", + "WebClientTourUserPreferences3": "Design the web client home page to your liking", + "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", + "WebClientTourMobile1": "The web client works great on smartphones and tablets...", + "WebClientTourMobile2": "and easily controls other devices and Emby apps", + "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", + "MessageEnjoyYourStay": "Enjoy your stay", + "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", + "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", + "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", + "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", + "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", + "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", + "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", + "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", + "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", + "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", + "TabExtras": "Extras", + "HeaderUploadImage": "Upload Image", + "DeviceLastUsedByUserName": "Last used by {0}", + "HeaderDeleteDevice": "Delete Device", + "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", + "LabelEnableCameraUploadFor": "Enable camera upload for:", + "HeaderSelectUploadPath": "Select Upload Path", + "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", + "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", + "ButtonLibraryAccess": "Library access", + "ButtonParentalControl": "Parental control", + "HeaderInvitationSent": "Invitation Sent", + "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", + "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", + "HeaderConnectionFailure": "Connection Failure", + "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", + "ButtonSelectServer": "Select Server", + "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", + "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", + "DefaultErrorMessage": "There was an error processing the request. Please try again later.", + "ButtonAccept": "Accept", + "ButtonReject": "Reject", + "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", + "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", + "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", + "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", + "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", + "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", + "ButtonLinkMyEmbyAccount": "Link my account now", + "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", + "SyncMedia": "Sync Media", + "HeaderCancelSyncJob": "Cancel Sync", + "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", + "LabelQuality": "Quality:", + "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", + "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", + "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", + "SyncJobItemStatusQueued": "Queued", + "SyncJobItemStatusConverting": "Converting", + "SyncJobItemStatusTransferring": "Transferring", + "SyncJobItemStatusSynced": "Synced", + "SyncJobItemStatusFailed": "Failed", + "SyncJobItemStatusRemovedFromDevice": "Removed from device", + "SyncJobItemStatusCancelled": "Cancelled", + "LabelProfile": "Profile:", + "LabelBitrateMbps": "Bitrate (Mbps):", + "EmbyIntroDownloadMessage": "To download and install the free Emby Server visit {0}.", + "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.", + "ButtonNewServer": "New Server", + "MyDevice": "My Device", + "ButtonRemote": "Remote", + "TabCast": "Cast", + "TabScenes": "Scenes", + "HeaderUnlockApp": "Unlock App", + "HeaderUnlockSync": "Unlock Emby Sync", + "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", + "OptionEnableFullscreen": "Enable Fullscreen", + "ButtonServer": "Server", + "HeaderLibrary": "Library", + "HeaderMedia": "Media", + "NoResultsFound": "No results found.", + "ButtonManageServer": "Manage Server", + "ButtonPreferences": "Preferences", + "ButtonViewArtist": "View artist", + "ButtonViewAlbum": "View album", + "ButtonEditImages": "Edit images", + "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", + "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", + "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", + "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", + "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "ButtonShare": "Share", + "HeaderConfirm": "Confirm", + "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", + "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", + "HeaderDeleteProvider": "Delete Provider", + "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", + "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", + "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", + "MessageCreateAccountAt": "Create an account at {0}", + "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", + "HeaderTryEmbyPremiere": "Try Emby Premiere", + "OptionEnableDisplayMirroring": "Enable display mirroring", + "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", + "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", + "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", + "LabelLocalSyncStatusValue": "Status: {0}", + "MessageSyncStarted": "Sync started", + "OptionBackdropSlideshow": "Backdrop slideshow", + "HeaderTopPlugins": "Top Plugins", + "ButtonOther": "Other", + "HeaderSortBy": "Sort By", + "HeaderSortOrder": "Sort Order", + "ButtonDisconnect": "Disconnect", + "ButtonMenu": "Menu", + "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", + "ButtonGuide": "Guide", + "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", + "ButtonYes": "Yes", + "AddUser": "Add User", + "ButtonNo": "No", + "ButtonNowPlaying": "Now Playing", + "HeaderLatestMovies": "Latest Movies", + "HeaderEmailAddress": "E-Mail Address", + "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", + "TermsOfUse": "Terms of use", + "NumLocationsValue": "{0} folders", + "ButtonAddMediaLibrary": "Add Media Library", + "ButtonManageFolders": "Manage folders", + "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", + "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", + "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", + "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.", + "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", + "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", + "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "HeaderFavoriteArtists": "Favorite Artists", + "HeaderFavoriteSongs": "Favorite Songs", + "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", + "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", + "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", + "HeaderMobileSync": "Mobile Sync", + "HeaderCloudSync": "Cloud Sync", + "HeaderFreeApps": "Free Emby Apps", + "CoverArt": "Cover Art", + "ButtonOff": "Off", + "TitleHardwareAcceleration": "Hardware Acceleration", + "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", + "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", + "ValueExample": "Example: {0}", + "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", + "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", + "LabelFileOrUrl": "File or url:", + "OptionEnableForAllTuners": "Enable for all tuner devices", + "HeaderTuners": "Tuners", + "LabelOptionalM3uUrl": "M3U url (optional):", + "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", + "TabResumeSettings": "Resume Settings", + "DrmChannelsNotImported": "Channels with DRM will not be imported.", + "LabelAllowHWTranscoding": "Allow hardware transcoding", + "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", + "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", + "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.", + "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.", + "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", + "Yesterday": "Yesterday", + "DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", + "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", + "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", + "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", + "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", + "HeaderHealthMonitor": "Health Monitor", + "HealthMonitorNoAlerts": "There are no active alerts.", + "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", + "VisualLoginFormHelp": "Select a user or sign in manually", + "LabelSportsCategories": "Sports categories:", + "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", + "LabelNewsCategories": "News categories:", + "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", + "LabelKidsCategories": "Children's categories:", + "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", + "LabelMovieCategories": "Movie categories:", + "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", + "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", + "LabelBindToLocalNetworkAddress": "Bind to local network address:", + "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", + "TitleHostingSettings": "Hosting Settings", + "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", + "MapChannels": "Map Channels", + "LabelffmpegPath": "FFmpeg path:", + "LabelffmpegVersion": "FFmpeg version:", + "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", + "SetupFFmpeg": "Setup FFmpeg", + "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", + "EnterFFmpegLocation": "Enter FFmpeg path", + "DownloadFFmpeg": "Download FFmpeg", + "FFmpegSuggestedDownload": "Suggested download: {0}", + "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", + "OptionUseSystemInstalledVersion": "Use system installed version", + "OptionUseMyCustomVersion": "Use a custom version", + "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", + "XmlTvPremiere": "Por defecto, Emby va a importar {0} horas de la programaci\u00f3n. Importar sin l\u00edmite necesita de una suscripci\u00f3n Emby Premiere.", + "MoreFromValue": "More from {0}", + "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", + "EnablePhotos": "Enable photos", + "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", + "MakeAvailableOffline": "Make available offline", + "ConfirmRemoveDownload": "Remove download?", + "RemoveDownload": "Remove download", + "SyncToOtherDevices": "Sync to other devices", + "ManageOfflineDownloads": "Manage offline downloads", + "MessageDownloadScheduled": "Download scheduled", + "RememberMe": "Remember me", + "HeaderOfflineSync": "Offline Sync", + "LabelMaxAudioFileBitrate": "Max audio file bitrate:", + "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", + "LabelVaapiDevice": "VA API Device:", + "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", + "HowToConnectFromEmbyApps": "How to Connect from Emby apps", + "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", + "OptionExtractChapterImage": "Enable chapter image extraction", + "Downloads": "Downloads", + "LabelEnableDebugLogging": "Enable debug logging", + "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", + "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", + "LabelH264EncodingPreset": "H264 encoding preset:", + "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", + "LabelH264Crf": "H264 encoding CRF:", + "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", + "Sports": "Sports", + "HeaderForKids": "For Kids", + "HeaderRecordingGroups": "Recording Groups", + "LabelConvertRecordingsTo": "Convert recordings to:", + "HeaderUpcomingOnTV": "Upcoming On TV", + "LabelOptionalNetworkPath": "(Optional) Shared network folder:", + "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", + "ButtonPlayExternalPlayer": "Play with external player", + "NotScheduledToRecord": "Not scheduled to record", + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." +} \ No newline at end of file diff --git a/dashboard-ui/strings/es-MX.json b/dashboard-ui/strings/es-MX.json index b332c7c930..3ac41c0dfd 100644 --- a/dashboard-ui/strings/es-MX.json +++ b/dashboard-ui/strings/es-MX.json @@ -1,8 +1,6 @@ { - "LabelExit": "Salir", - "LabelApiDocumentation": "Documentaci\u00f3n de la API", - "LabelBrowseLibrary": "Explorar Biblioteca", - "LabelConfigureServer": "Configurar Emby", + "OptionAutomaticallyGroupSeriesHelp": "Si se habilita, las series que se reparten a trav\u00e9s de m\u00faltiples carpetas dentro de esta biblioteca ser\u00e1n fusionadas en una sola serie.", + "OptionAutomaticallyGroupSeries": "Fusionar autom\u00e1ticamente series esparcidas a trav\u00e9s de m\u00faltiples carpetas.", "LabelPrevious": "Anterior", "LabelFinish": "Terminar", "LabelNext": "Siguiente", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Su nombre:", "MoreUsersCanBeAddedLater": "Se pueden agregar m\u00e1s usuarios posteriormente en el Panel de Control.", "UserProfilesIntro": "Emby incluye soporte integrado para perfiles de usuario, habilitando a cada usuario para tener sus propias configuraciones de visualizaci\u00f3n, reproducci\u00f3n y controles parentales.", - "LabelWindowsService": "Servicio de Windows", - "AWindowsServiceHasBeenInstalled": "Se ha instalado un Servicio de Windows.", - "WindowsServiceIntro1": "El Servidor Emby normalmente se ejecuta como una aplicaci\u00f3n de escritorio con un icono de bandeja, pero si prefiere ejecutarlo como un servicio de fondo, puede en su lugar ser iniciado en los servicios desde el panel de control de Windows.", - "WindowsServiceIntro2": "Si utiliza el servicio de Windows, tenga en cuenta que no se puede ejecutar simult\u00e1neamente con el icono en el \u00e1rea de notificaci\u00f3n, por lo que tendr\u00e1 que finalizar desde el icono para poder ejecutar el servicio. Adicionalmente, el servicio deber\u00e1 ser configurado con privilegios administrativos a trav\u00e9s del panel de control del servicio. Cuando se ejecute como servicio, necesitara asegurarse que la cuenta del servicio tenga acceso a su carpetas de medios.", "WizardCompleted": "Eso es todo lo que necesitamos por ahora, Emby ha comenzado a recolectar informaci\u00f3n sobre su biblioteca de medios. Revise algunas de nuestras aplicaciones, y haga clic en Finalizar<\/b> para ver el Panel de Control<\/b>", "LabelConfigureSettings": "Configuraci\u00f3n de opciones", - "LabelEnableAutomaticPortMapping": "Habilitar mapeo autom\u00e1tico de puertos", - "LabelEnableAutomaticPortMappingHelp": "UPnP permite la configuraci\u00f3n de ruteador de manera autom\u00e1tica, para acceso remoto de manera f\u00e1cil. Eso puede no funcionar con algunos modelos de ruteadores.", "HeaderTermsOfService": "T\u00e9rminos de Servicio de Emby", "MessagePleaseAcceptTermsOfService": "Por favor acepte los t\u00e9rminos del servicio y la pol\u00edtica de privacidad antes de continuar.", "OptionIAcceptTermsOfService": "Acepto los t\u00e9rminos del servicio.", "ButtonPrivacyPolicy": "Pol\u00edtica de privacidad", "ButtonTermsOfService": "T\u00e9rminos del Servicio", - "HeaderDeveloperOptions": "Opciones de Desarrollador", - "OptionEnableWebClientResponseCache": "Habilitar la cache de respuestas web", - "OptionDisableForDevelopmentHelp": "Configuralos como sean necesarios para prop\u00f3sitos de desarrollo web.", - "OptionEnableWebClientResourceMinification": "Habilitar minificacion de recursos web", - "LabelDashboardSourcePath": "Ruta de origen del cliente web:", - "LabelDashboardSourcePathHelp": "Si esta ejecutando el servidor desde la fuente, especifique la ruta de acceso a la carpeta dashboard-ui. Todos los archivos de cliente web ser\u00e1n atendidos desde esta ruta.", "ButtonConvertMedia": "Convertir Medios", "ButtonOrganize": "Organizar", "HeaderSupporterBenefits": "Beneficios de Emby Premier", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Para agregar un usuario que no esta listado, necesita primero enlazar su cuenta a Emby Connect desde su pagina de perfil de usuario.", "LabelPinCode": "C\u00f3digo pin:", "OptionHideWatchedContentFromLatestMedia": "Ocultar contenido ya visto de Agregadas Recientemente", + "DeleteMedia": "Eliminar medios", "HeaderSync": "Sinc", "ButtonOk": "Ok", "ButtonCancel": "Cancelar", "ButtonExit": "Salir", "ButtonNew": "Nuevo", + "OptionDev": "Desarrollo", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Disparadores de Tarea", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Para acceder, por favor introduzca su c\u00f3digo pin sencillo", "ButtonConfigurePinCode": "Configurar c\u00f3digo pin", "RegisterWithPayPal": "Registrar con PayPal", - "HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas", "LabelSyncTempPath": "Ruta de archivos temporales:", "LabelSyncTempPathHelp": "Especifique una carpeta de trabajo personalizada para sinc. Los medios convertidos creados durante el proceso de sinc ser\u00e1n almacenados en este lugar.", "LabelCustomCertificatePath": "Ruta del certificado personalizado:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Al habilitarlo, los archivos con extensiones .rar y .zip ser\u00e1n detectados como archivos de medios.", "LabelEnterConnectUserName": "Nombre de usuario o correo:", "LabelEnterConnectUserNameHelp": "Este es su nombre de usuario de su cuenta Emby en linea o su correo electronico.", - "LabelEnableEnhancedMovies": "Habilitar visualizaci\u00f3n mejorada de pel\u00edculas", - "LabelEnableEnhancedMoviesHelp": "Cuando se activa, la pel\u00edculas ser\u00e1n mostradas como carpetas para incluir tr\u00e1ilers, extras, elenco y equipo, y otros contenidos relacionados.", "HeaderSyncJobInfo": "Trabajo de Sinc", "FolderTypeMixed": "Contenido mezclado", "FolderTypeMovies": "Pel\u00edculas", @@ -84,7 +70,6 @@ "LabelContentType": "Tipo de Contenido:", "TitleScheduledTasks": "Tareas Programadas", "HeaderSetupLibrary": "Configurar sus bibliotecas de medios", - "ButtonAddMediaFolder": "Agregar carpeta de medios", "LabelFolderType": "Tipo de carpeta:", "LabelCountry": "Pa\u00eds:", "LabelLanguage": "Idioma:", @@ -94,7 +79,6 @@ "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", "LabelDownloadInternetMetadataHelp": "El servidor Emby puede descargar informaci\u00f3n sobre sus medios para habilitar presentaciones mas enriquecidas.", - "TabPreferences": "Preferencias", "TabPassword": "Contrase\u00f1a", "TabLibraryAccess": "Acceso a biblioteca", "TabAccess": "Acceso", @@ -110,8 +94,11 @@ "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.", "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.", "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.", "HeaderVideoPlaybackSettings": "Configuraci\u00f3n de Reproducci\u00f3n de Video", + "OptionDownloadInternetMetadataTvPrograms": "Descargar metadatos de internet para programas listados en la gu\u00eda", "HeaderPlaybackSettings": "Configuraci\u00f3n de Reproducci\u00f3n", "LabelAudioLanguagePreference": "Preferencia de idioma de audio:", "LabelSubtitleLanguagePreference": "Preferencia de idioma de subt\u00edtulos:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "Se Recomienda una Proporci\u00f3n de Aspecto 1:1. Solo JPG\/PNG.", "MessageNothingHere": "Nada aqu\u00ed.", "MessagePleaseEnsureInternetMetadata": "Por favor aseg\u00farese que la descarga de metadatos de internet esta habilitada.", - "TabSuggested": "Sugerencias", + "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.", "TabSuggestions": "Sugerencias", "TabLatest": "Recientes", "TabUpcoming": "Proximamente", "TabShows": "Programas", "TabEpisodes": "Episodios", "TabGenres": "G\u00e9neros", - "TabPeople": "Personas", "TabNetworks": "Cadenas", "HeaderUsers": "Usuarios", "HeaderFilters": "Filtros", @@ -166,6 +153,7 @@ "OptionWriters": "Guionistas", "OptionProducers": "Productores", "HeaderResume": "Continuar", + "HeaderContinueWatching": "Continuar Viendo", "HeaderNextUp": "A Continuaci\u00f3n", "NoNextUpItemsMessage": "No se encontr\u00f3 nada. \u00a1Comienza a ver tus programas!", "HeaderLatestEpisodes": "Episodios Recientes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Contador", "OptionDatePlayed": "Fecha de Reproducci\u00f3n", "OptionDateAdded": "Fecha de Adici\u00f3n", + "DateAddedValue": "Fecha de adici\u00f3n: {0}", "OptionAlbumArtist": "Artista del \u00c1lbum", "OptionArtist": "Artista", "OptionAlbum": "\u00c1lbum", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Tasa de bits de Video", "OptionResumable": "Reanudable", "ScheduledTasksHelp": "Haga clic en una tarea para ajustar su programaci\u00f3n.", - "ScheduledTasksTitle": "Tareas Programadas", "TabMyPlugins": "Mis Complementos", "TabCatalog": "Cat\u00e1logo", "TitlePlugins": "Complementos", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Canciones Recientes", "HeaderRecentlyPlayed": "Reproducido Recientemente", "HeaderFrequentlyPlayed": "Reproducido Frecuentemente", - "DevBuildWarning": "Las compilaciones de Desarrollo son la punta de lanza. Se publican frecuentemente, estas compilaciones no se han probado. La aplicaci\u00f3n se puede bloquear y caracter\u00edsticas completas pueden no funcionar.", "LabelVideoType": "Tipo de Video:", "OptionBluray": "Bluray", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "\u00datil para cuentas privadas o de administrador ocultas. El usuario tendr\u00e1 que iniciar sesi\u00f3n manualmente introduciendo su nombre de usuario y contrase\u00f1a.", "OptionDisableUser": "Desactivar este usuario", "OptionDisableUserHelp": "Si est\u00e1 desactivado, el servidor no aceptar\u00e1 conexiones de este usuario. Las conexiones existentes ser\u00e1n finalizadas abruptamente.", - "HeaderAdvancedControl": "Control Avanzado", "LabelName": "Nombre:", "ButtonHelp": "Ayuda", "OptionAllowUserToManageServer": "Permitir a este usuario administrar el servidor", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Los dispositivos dnla son considerados como compartidos hasta que alg\u00fan usuario comienza a controlarlo.", "OptionAllowLinkSharing": "Permitir compartir medios en redes sociales.", "OptionAllowLinkSharingHelp": "Solo son compartidas paginas web que contengan informaci\u00f3n sobre los medios. Los archivos de medios nunca son compartidos p\u00fablicamente. Son compartidos por un tiempo limitado y expiraran despu\u00e9s de {0} d\u00edas.", - "HeaderSharing": "Compartido", "HeaderRemoteControl": "Control Remoto", "OptionMissingTmdbId": "Falta Id de Tmdb", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Rutas", "TabServer": "Servidor", "TabTranscoding": "Transcodificaci\u00f3n", - "TitleAdvanced": "Avanzado", "OptionRelease": "Versi\u00f3n Oficial", - "OptionBeta": "Beta", - "OptionDev": "Desarrollo", "LabelAllowServerAutoRestart": "Permite al servidor reiniciar autom\u00e1ticamente para aplicar actualizaciones", "LabelAllowServerAutoRestartHelp": "El servidor reiniciar\u00e1 \u00fanicamente durante periodos ociosos, cuando no haya usuarios activos.", "LabelRunServerAtStartup": "Ejecutar el servidor al iniciar", @@ -330,11 +312,9 @@ "TabGames": "Juegos", "TabMusic": "M\u00fasica", "TabOthers": "Otros", - "HeaderExtractChapterImagesFor": "Extraer im\u00e1genes de cap\u00edtulos para:", "OptionMovies": "Pel\u00edculas", "OptionEpisodes": "Episodios", "OptionOtherVideos": "Otros Videos", - "TitleMetadata": "Metadatos", "LabelFanartApiKey": "Clave api personal:", "LabelFanartApiKeyHelp": "Solicitar fanart sin una clave API personal muestra los imagenes que fueron aprobadas hace 7 d\u00edas. Con una clave API personal se reduce a 48 horas y si eres miembro VIP de fanart ser\u00e1 alrededor de 10 minutos.", "ExtractChapterImagesHelp": "Extraer las im\u00e1genes de los cap\u00edtulos permitir\u00e1 a las aplicaciones Emby mostrar una men\u00fa de selecci\u00f3n de escenas grafico. El proceso puede ser lento, hacer uso intensivo del cpu y requerir el uso de varios gigabytes de espacio. Se ejecuta como una tarea nocturna programada, aunque puede configurarse en el \u00e1rea de tareas programadas. No se recomienda ejecutarlo durante un horario de uso intensivo.", @@ -350,15 +330,15 @@ "TabCollections": "Colecciones", "HeaderChannels": "Canales", "TabRecordings": "Grabaciones", - "TabScheduled": "Programados", "TabSeries": "Series", "TabFavorites": "Favoritos", "TabMyLibrary": "Mi Biblioteca", "ButtonCancelRecording": "Cancelar Grabaci\u00f3n", - "LabelPrePaddingMinutes": "Minutos de protecci\u00f3n previos:", - "LabelPostPaddingMinutes": "Minutos de protecci\u00f3n posterior:", + "LabelStartWhenPossible": "Iniciar cuando sea posible:", + "LabelStopWhenPossible": "Detener cuando sea posible:", + "MinutesBefore": "minutos antes", + "MinutesAfter": "minutos despu\u00e9s", "HeaderWhatsOnTV": "\u00bfQu\u00e9 hay?", - "TabStatus": "Estado", "TabSettings": "Configuraci\u00f3n", "ButtonRefreshGuideData": "Actualizar Datos de la Gu\u00eda", "ButtonRefresh": "Actualizar", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Grabar en todos los canales", "OptionRecordAnytime": "Grabar en cualquier momento", "OptionRecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos episodios", - "HeaderRepeatingOptions": "Opciones de repetici\u00f3n", "HeaderDays": "D\u00edas", "HeaderActiveRecordings": "Grabaciones Activas", "HeaderLatestRecordings": "Grabaciones Recientes", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Juegos Recientes", "HeaderRecentlyPlayedGames": "Juegos Usados Recientemente", "TabGameSystems": "Sistemas de Juegos", - "TitleMediaLibrary": "Biblioteca de Medios", "TabFolders": "Carpetas", "TabPathSubstitution": "Rutas Alternativas", "LabelSeasonZeroDisplayName": "Nombre de la Temporada 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Separar Versiones", "ButtonPlayTrailer": "Tr\u00e1iler", "LabelMissing": "Falta", - "LabelOffline": "Desconectado", - "PathSubstitutionHelp": "Las rutas alternativas se utilizan para mapear una ruta en el servidor a la que las aplicaciones Emby puedan acceder. Al permitir a los clientes acceder directamente a los medios en el servidor podr\u00e1n reproducirlos directamente a trav\u00e9s de la red evitando el uso de recursos del servidor para transmitirlos y transcodificarlos.", - "HeaderFrom": "Desde", - "HeaderTo": "Hasta", - "LabelFrom": "Desde:", - "LabelTo": "Hasta:", - "LabelToHelp": "Ejemplo: \\\\MiServidor\\Peliculas (una ruta a la que las aplicaciones Emby puedan acceder)", - "ButtonAddPathSubstitution": "Agregar Ruta Alternativa", "OptionSpecialEpisode": "Especiales", "OptionMissingEpisode": "Episodios Faltantes", "OptionUnairedEpisode": "Episodios no Emitidos", "OptionEpisodeSortName": "Nombre para Ordenar el Episodio", "OptionSeriesSortName": "Nombre de la Serie", "OptionTvdbRating": "Calificaci\u00f3n de Tvdb", - "EditCollectionItemsHelp": "Agregar o quitar pel\u00edculas, series, discos, libros o juegos que usted desee agrupar dentro de esta colecci\u00f3n.", "HeaderAddTitles": "Agregar T\u00edtulos", "LabelEnableDlnaPlayTo": "Habilitar Reproducir En mediante DLNA", "LabelEnableDlnaPlayToHelp": "Emby puede detectar dispositivos dentro de su red y ofrecer la capacidad de controlarlas remotamente.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Perfiles del Sistema", "CustomDlnaProfilesHelp": "Crear un perfil personalizado para un nuevo dispositivo o reemplazar un perfil del sistema.", "SystemDlnaProfilesHelp": "Los perfiles del sistema son de s\u00f3lo lectura. Los cambios a un perf\u00edl de sistema ser\u00e1n guardados en un perf\u00edl personalizado nuevo.", - "TitleDashboard": "Panel de Control", "TabHome": "Inicio", "TabInfo": "Info", "HeaderLinks": "Enlaces", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Se asumir\u00e1 que los t\u00edtulos no han sido reproducidos si se detienen antes de este momento", "LabelMaxResumePercentageHelp": "Se asumir\u00e1 que los t\u00edtulos han sido reproducidos por completo si se detienen despu\u00e9s de este momento", "LabelMinResumeDurationHelp": "Los titulos con duraci\u00f3n menor a esto no podr\u00e1n ser continuados", - "TitleAutoOrganize": "Auto-Organizar", "TabActivityLog": "Bit\u00e1cora de Actividades", "TabSmartMatches": "Coincidencias Inteligentes", "TabSmartMatchInfo": "Administre sus coincidencias inteligentes que fueron agregadas usando el di\u00e1logo de correcci\u00f3n de Organizaci\u00f3n Autom\u00e1tica", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Ayude a asegurar el desarrollo continuo de este proyecto adquiriendo Emby Premier. Una parte de todos los ingresos ser\u00e1n destinados a contribuciones a otras herramientas libres de las cuales dependemos.", "DonationNextStep": "Una vez completado, por favor regerese e ingrese su clave de Emby Premier, la cual recibir\u00e1 por correo electr\u00f3nico.", "AutoOrganizeHelp": "La organizaci\u00f3n autom\u00e1tica monitorea sus carpetas de descarga en busca de nuevos archivos y los mueve a sus carpetas de medios.", - "AutoOrganizeTvHelp": "La organizaci\u00f3n de archivos de TV s\u00f3lo agregar\u00e1 episodios a series existentes. No crear\u00e1 carpetas para series nuevas.", "OptionEnableEpisodeOrganization": "Habilitar la organizaci\u00f3n de nuevos episodios", "LabelWatchFolder": "Carpeta de Inspecci\u00f3n:", "LabelWatchFolderHelp": "El servidor inspeccionar\u00e1 esta carpeta durante la tarea programada \"Organizar nuevos archivos de medios\".", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Tareas en Ejecuci\u00f3n", "HeaderActiveDevices": "Dispositivos Activos", "HeaderPendingInstallations": "Instalaciones Pendientes", - "HeaderServerInformation": "Informaci\u00f3n del Servidor", "ButtonRestartNow": "Reiniciar Ahora", "ButtonRestart": "Reiniciar", "ButtonShutdown": "Apagar", @@ -588,7 +553,6 @@ "MessageInvalidKey": "La clave de Emby Premier no se encuentra o es inv\u00e1lida.", "ErrorMessageInvalidKey": "Para que cualquier contenido premium sea registrado, tambi\u00e9n debe contar con una suscripci\u00f3n de Emby Premier.", "HeaderDisplaySettings": "Configuraci\u00f3n de Pantalla", - "TabPlayTo": "Reproducir En", "LabelEnableDlnaServer": "Habilitar servidor DLNA", "LabelEnableDlnaServerHelp": "Permite a dispositivos UPnP en su red navegar y reproducir contenido de Emby.", "LabelEnableBlastAliveMessages": "Bombardeo de mensajes de vida", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determina la duraci\u00f3n en segundos del intervalo entre mensajes de vida.", "LabelDefaultUser": "Usuario por defecto:", "LabelDefaultUserHelp": "Determina que usuario de la biblioteca ser\u00e1 mostrado en los dispositivos conectados. Este puede ser reemplazado para cada dispositivo empleando perfiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Configuraci\u00f3n del Servidor", "HeaderRequireManualLogin": "Requerir captura de nombre de usuario manual para:", "HeaderRequireManualLoginHelp": "Cuando se encuentra desactivado las aplicaciones Emby podr\u00edan mostrar una pantalla de inicio de sesi\u00f3n con una selecci\u00f3n visual de los usuarios.", "OptionOtherApps": "Otras applicaciones", "OptionMobileApps": "Apps m\u00f3viles", - "HeaderNotificationList": "Haga clic en una notificaci\u00f3n para configurar las opciones de env\u00edo.", - "NotificationOptionApplicationUpdateAvailable": "Actualizaci\u00f3n de aplicaci\u00f3n disponible", - "NotificationOptionApplicationUpdateInstalled": "Actualizaci\u00f3n de aplicaci\u00f3n instalada", - "NotificationOptionPluginUpdateInstalled": "Actualizaci\u00f3n de complemento instalada", - "NotificationOptionPluginInstalled": "Complemento instalado", - "NotificationOptionPluginUninstalled": "Complemento desinstalado", - "NotificationOptionVideoPlayback": "Reproducci\u00f3n de video iniciada", - "NotificationOptionAudioPlayback": "Reproducci\u00f3n de audio iniciada", - "NotificationOptionGamePlayback": "Ejecuci\u00f3n de juego iniciada", - "NotificationOptionVideoPlaybackStopped": "Reproducci\u00f3n de video detenida", - "NotificationOptionAudioPlaybackStopped": "Reproducci\u00f3n de audio detenida", - "NotificationOptionGamePlaybackStopped": "Ejecuci\u00f3n de juego detenida", - "NotificationOptionTaskFailed": "Falla de tarea programada", - "NotificationOptionInstallationFailed": "Falla de instalaci\u00f3n", - "NotificationOptionNewLibraryContent": "Nuevo contenido agregado", - "NotificationOptionCameraImageUploaded": "Imagen de la c\u00e1mara subida", - "NotificationOptionUserLockedOut": "Usuario bloqueado", - "HeaderSendNotificationHelp": "Las notificaciones son enviadas a su bandeja. Opciones adicionales pueden ser instaladas desde la pesta\u00f1a de Servicios.", - "NotificationOptionServerRestartRequired": "Reinicio del servidor requerido", "LabelNotificationEnabled": "Habilitar esta notificaci\u00f3n", "LabelMonitorUsers": "Monitorear actividad desde:", "LabelSendNotificationToUsers": "Enviar la notificaci\u00f3n a:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previo", "LabelGroupMoviesIntoCollections": "Agrupar pel\u00edculas en colecciones", "LabelGroupMoviesIntoCollectionsHelp": "Cuando se muestran listados de pel\u00edculas, las pel\u00edculas que pertenecen a una colecci\u00f3n ser\u00e1n mostradas agrupadas en un solo \u00edtem.", - "NotificationOptionPluginError": "Falla de complemento", "ButtonVolumeUp": "Subir Volumen", "ButtonVolumeDown": "Bajar Volumen", "HeaderLatestMedia": "Agregadas Recientemente", "OptionNoSubtitles": "Sin Subtitulos", - "OptionSpecialFeatures": "Caracter\u00edsticas Especiales", "HeaderCollections": "Colecciones", "LabelProfileCodecsHelp": "Separados por comas. Puede dejarse vaci\u00f3 para aplicarlo a todos los codecs.", "LabelProfileContainersHelp": "Separados por comas. Puede dejarse vaci\u00f3 para aplicarlo a todos los contenedores.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No hay complementos disponibles.", "LabelDisplayPluginsFor": "Mostrar complementos para:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Nombre del episodio", "LabelSeriesNamePlain": "Nombre de la serie", "ValueSeriesNamePeriod": "Nombre.serie", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "N\u00famero del episodio final", "HeaderTypeText": "Introduzca Texto", "LabelTypeText": "Texto", - "HeaderSearchForSubtitles": "Buscar Subtitulos", - "MessageNoSubtitleSearchResultsFound": "No se encontraron resultados en la b\u00fasqueda.", "TabDisplay": "Pantalla", "TabLanguages": "Idiomas", "TabAppSettings": "Configuracion del App", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Al activarse, las canciones de tema ser\u00e1n reproducidas en segundo plano mientras se navega en la biblioteca.", "LabelEnableBackdropsHelp": "Si est\u00e1 activado, las im\u00e1genes de fondo ser\u00e1n mostradas en el fondo de algunas paginas mientras se navega en la biblioteca.", "HeaderHomePage": "P\u00e1gina de Inicio", - "HeaderSettingsForThisDevice": "Configuraci\u00f3n de Este Dispositivo", "OptionAuto": "Autom\u00e1tico", "OptionYes": "Si", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Pagina de Inicio secci\u00f3n dos:", "LabelHomePageSection3": "Pagina de Inicio secci\u00f3n tres:", "LabelHomePageSection4": "Pagina de Inicio secci\u00f3n cuatro:", - "OptionMyMediaButtons": "Mis medios (botones)", "OptionMyMedia": "Mis medios", "OptionMyMediaSmall": "Mis medios (peque\u00f1o)", "OptionResumablemedia": "Continuar", @@ -815,53 +752,21 @@ "HeaderReports": "Reportes", "HeaderSettings": "Configuraci\u00f3n", "OptionDefaultSort": "Por defecto", - "OptionCommunityMostWatchedSort": "M\u00e1s Visto", "TabNextUp": "A Continuaci\u00f3n", - "PlaceholderUsername": "Nombre de Usuario", "HeaderBecomeProjectSupporter": "Obtener Emby Premier", "MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles en este momento. Comienza a ver y a calificar tus pel\u00edculas, y regresa para ver tus recomendaciones.", "MessageNoCollectionsAvailable": "Las colecciones le permiten disfrutar de agrupaciones personalizadas de Pel\u00edculas, Series, \u00c1lbumes, Libros y Juegos. Haga clic en el bot\u00f3n + para iniciar la creaci\u00f3n de Colecciones.", "MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenidos a ser reproducidos de manera consecutiva. Para agregar \u00edtems a una lista de reproducci\u00f3n, haga clic derecho o seleccione y mantenga, despu\u00e9s seleccione Agregar a Lista de Reproducci\u00f3n.", "MessageNoPlaylistItemsAvailable": "Esta lista de reproducci\u00f3n se encuentra vac\u00eda.", - "ButtonDismiss": "Descartar", "ButtonEditOtherUserPreferences": "Editar el perf\u00edl de este usuario. im\u00e1gen y preferencias personales.", "LabelChannelStreamQuality": "Calidad preferida para canal de internet:", "LabelChannelStreamQualityHelp": "En un ambiente de ancho de banda limitado, limitar la calidad puede ayudar a asegurar una experiencia de transimisi\u00f3n en tiempo real fluida.", "OptionBestAvailableStreamQuality": "La mejor disponible", "ChannelSettingsFormHelp": "Instale canales tales como Tr\u00e1ilers y Vimeo desde el cat\u00e1logo de complementos.", - "ViewTypePlaylists": "Listas de Reproducci\u00f3n", "ViewTypeMovies": "Pel\u00edculas", "ViewTypeTvShows": "TV", "ViewTypeGames": "Juegos", "ViewTypeMusic": "M\u00fasica", - "ViewTypeMusicGenres": "G\u00e9neros", - "ViewTypeMusicArtists": "Artistas", - "ViewTypeBoxSets": "Colecciones", - "ViewTypeChannels": "Canales", - "ViewTypeLiveTV": "TV en Vivo", - "ViewTypeLiveTvNowPlaying": "Transmiti\u00e9ndose", - "ViewTypeLatestGames": "Juegos Recientes", - "ViewTypeRecentlyPlayedGames": "Reproducido Reci\u00e9ntemente", - "ViewTypeGameFavorites": "Favoritos", - "ViewTypeGameSystems": "Sistemas de Juego", - "ViewTypeGameGenres": "G\u00e9neros", - "ViewTypeTvResume": "Continuar", - "ViewTypeTvNextUp": "A Continuaci\u00f3n", - "ViewTypeTvLatest": "Recientes", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "G\u00e9neros", - "ViewTypeTvFavoriteSeries": "Series Favoritas", - "ViewTypeTvFavoriteEpisodes": "Episodios Favoritos", - "ViewTypeMovieResume": "Continuar", - "ViewTypeMovieLatest": "Recientes", - "ViewTypeMovieMovies": "Pel\u00edculas", - "ViewTypeMovieCollections": "Colecciones", - "ViewTypeMovieFavorites": "Favoritos", - "ViewTypeMovieGenres": "G\u00e9neros", - "ViewTypeMusicLatest": "Recientes", - "ViewTypeMusicPlaylists": "Listas", - "ViewTypeMusicAlbums": "\u00c1lbumes", - "ViewTypeMusicAlbumArtists": "Artistas del \u00c1lbum", "HeaderOtherDisplaySettings": "Configuraci\u00f3n de Pantalla", "ViewTypeMusicSongs": "Canciones", "ViewTypeMusicFavorites": "Favoritos", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Cuando se descargan im\u00e1genes pueden ser almacenadas tanto en extrafanart como extrathumb para maximizar la compatibilidad con skins de Kodi.", "TabServices": "Servicios", "TabLogs": "Bit\u00e1coras", - "HeaderServerLogFiles": "Archivos de registro del servidor:", "TabBranding": "Establecer Marca", "HeaderBrandingHelp": "Personaliza la apariencia de Emby para ajustarla a su grupo u organizaci\u00f3n.", "LabelLoginDisclaimer": "Aviso legal:", @@ -917,7 +821,6 @@ "HeaderDevice": "Dispositivo", "HeaderUser": "Usuario", "HeaderDateIssued": "Fecha de Emisi\u00f3n", - "LabelChapterName": "Cap\u00edtulo {0}", "HeaderHttpHeaders": "Encabezados Http", "HeaderIdentificationHeader": "Encabezado de Identificaci\u00f3n", "LabelValue": "Valor:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Subcadena", "TabView": "Vista", - "TabSort": "Ordenaci\u00f3n", "TabFilter": "Filtro", "ButtonView": "Vista", "LabelPageSize": "Cantidad de \u00cdtems:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Transmisi\u00f3n en vivo por Http", "LabelContext": "Contexto:", - "OptionContextStreaming": "Transmisi\u00f3n", - "OptionContextStatic": "Sinc.", "TabPlaylists": "Listas de reproducci\u00f3n", "ButtonClose": "Cerrar", "LabelAllLanguages": "Todos los lenguajes", @@ -956,7 +856,6 @@ "LabelImage": "Im\u00e1gen:", "HeaderImages": "Im\u00e1genes", "HeaderBackdrops": "Im\u00e1genes de fondo", - "HeaderScreenshots": "Capturas de pantalla", "HeaderAddUpdateImage": "Agregar\/Actualizar Im\u00e1gen", "LabelDropImageHere": "Depositar imagen aqu\u00ed", "LabelJpgPngOnly": "JPG\/PNG solamente", @@ -973,7 +872,6 @@ "OptionLocked": "Bloqueado", "OptionUnidentified": "No Identificado", "OptionMissingParentalRating": "Falta clasificaci\u00f3n parental", - "OptionStub": "Plantilla", "OptionSeason0": "Temporada 0", "LabelReport": "Reporte:", "OptionReportSongs": "Canciones", @@ -991,34 +889,21 @@ "OptionReportAlbums": "\u00c1lbumes", "ButtonMore": "M\u00e1s", "HeaderActivity": "Actividad", - "ScheduledTaskStartedWithName": "{0} Iniciado", - "ScheduledTaskCancelledWithName": "{0} fue cancelado", - "ScheduledTaskCompletedWithName": "{0} completado", - "ScheduledTaskFailed": "Tarea programada completada", "PluginInstalledWithName": "{0} fue instalado", "PluginUpdatedWithName": "{0} fue actualizado", "PluginUninstalledWithName": "{0} fue desinstalado", - "ScheduledTaskFailedWithName": "{0} fall\u00f3", - "DeviceOnlineWithName": "{0} est\u00e1 conectado", "UserOnlineFromDevice": "{0} est\u00e1 en l\u00ednea desde {1}", - "DeviceOfflineWithName": "{0} se ha desconectado", "UserOfflineFromDevice": "{0} se ha desconectado desde {1}", - "SubtitlesDownloadedForItem": "Subt\u00edtulos descargados para {0}", - "SubtitleDownloadFailureForItem": "Fall\u00f3 la descarga de subt\u00edtulos para {0}", "LabelRunningTimeValue": "Duraci\u00f3n: {0}", "LabelIpAddressValue": "Direcci\u00f3n IP: {0}", "UserLockedOutWithName": "El usuario {0} ha sido bloqueado", "UserConfigurationUpdatedWithName": "Se ha actualizado la configuraci\u00f3n del usuario {0}", "UserCreatedWithName": "Se ha creado el usuario {0}", - "UserPasswordChangedWithName": "Se ha cambiado la contrase\u00f1a para el usuario {0}", "UserDeletedWithName": "Se ha eliminado al usuario {0}", "MessageServerConfigurationUpdated": "Se ha actualizado la configuraci\u00f3n del servidor", "MessageNamedServerConfigurationUpdatedWithValue": "Se ha actualizado la secci\u00f3n {0} de la configuraci\u00f3n del servidor", "MessageApplicationUpdated": "El servidor Emby ha sido actualizado", "UserDownloadingItemWithValues": "{0} esta descargando {1}", - "UserStartedPlayingItemWithValues": "{0} ha iniciado la reproducci\u00f3n de {1}", - "UserStoppedPlayingItemWithValues": "{0} ha detenido la reproducci\u00f3n de {1}", - "AppDeviceValues": "App: {0}, Dispositivo: {1}", "ProviderValue": "Proveedor: {0}", "HeaderRecentActivity": "Actividad Reciente", "HeaderPeople": "Personas", @@ -1051,27 +936,18 @@ "LabelAirDate": "D\u00edas al aire:", "LabelAirTime:": "Tiempo al \u00e1ire:", "LabelRuntimeMinutes": "Duraci\u00f3n (minutos):", - "LabelRevenue": "Ingresos ($):", - "HeaderAlternateEpisodeNumbers": "N\u00fameros de Episodio Alternativos:", "HeaderSpecialEpisodeInfo": "Informaci\u00f3n del Episodio Especial", - "HeaderExternalIds": "Id\u00b4s Externos:", - "LabelAirsBeforeSeason": "Transmisi\u00f3n antes de la temporada:", - "LabelAirsAfterSeason": "Transmisi\u00f3n despu\u00e9s de la temporada:", - "LabelAirsBeforeEpisode": "Transmisi\u00f3n antes del episodio:", "LabelDisplaySpecialsWithinSeasons": "Mostrar especiales dentro de las temporadas en que fueron transmitidos", - "HeaderCountries": "Pa\u00edses", "HeaderGenres": "G\u00e9neros", "HeaderPlotKeywords": "Palabras clave de la Trama", "HeaderStudios": "Estudios", "HeaderTags": "Etiquetas", - "MessageLeaveEmptyToInherit": "Dejar vac\u00edo para heredar la configuraci\u00f3n del \u00edtem padre, o el valor global por omisi\u00f3n.", "OptionNoTrailer": "Sin Avance", "ButtonPurchase": "Comprar", "OptionActor": "Actor", "OptionComposer": "Compositor", "OptionDirector": "Director", "OptionProducer": "Productor", - "OptionWriter": "Escritor", "LabelAirDays": "Se emite los d\u00edas:", "LabelAirTime": "Duraci\u00f3n:", "HeaderMediaInfo": "Info del Medio", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Control Parental", "HeaderAccessSchedule": "Acceder Programaci\u00f3n", "HeaderAccessScheduleHelp": "Crear programaci\u00f3n de acceso para limitar el acceso a ciertos horarios.", - "ButtonAddSchedule": "Agregar Programaci\u00f3n", "LabelAccessDay": "D\u00eda de la semana:", "LabelAccessStart": "Horario de comienzo:", "LabelAccessEnd": "Horario de fin:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Trabajos de Sinc", "HeaderThisUserIsCurrentlyDisabled": "Este usuario se encuentra actualmente deshabilitado", "MessageReenableUser": "Vea abajo para volverlo a habilitar", - "LabelEnableInternetMetadataForTvPrograms": "Descargar metadatos de Internet para:", "OptionTVMovies": "Pel\u00edculas de TV", "HeaderUpcomingMovies": "Pel\u00edculas por Estrenar", "HeaderUpcomingSports": "Deportes por Estrenar", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Listas", "HeaderViewStyles": "Ver Estilos", "TabPhotos": "Fotos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Bienvenidos a Emby", "EmbyIntroMessage": "Con Emby usted puede transmitir videos, musica y fotos hacia su telefono inteligente, tabla u otros equipos desde su Servidor Emby.", "ButtonSkip": "Omitir", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columnas", "ButtonReset": "Resetear", "OptionEnableExternalVideoPlayers": "Habilitar reproductores externos de video", - "ButtonUnlockGuide": "Desbloquear Gu\u00eda", "LabelEnableFullScreen": "Habilitar modo de pantalla completa", "LabelEmail": "Email:", "LabelUsername": "Nombre Usuario:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Resumen", "HeaderShortOverview": "Sinopsis corta:", "HeaderType": "Tipo", - "HeaderSeverity": "Severidad", "OptionReportActivities": "Bit\u00e1cora de Actividades", "HeaderTunerDevices": "Sintonizadores", "HeaderAddDevice": "Agregar Dispositivo", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repetir", "LabelEnableThisTuner": "Habilitar este sintonizador", "LabelEnableThisTunerHelp": "Quitar selecci\u00f3n para evitar importar canales de este dispositivo.", - "HeaderUnidentified": "No Identificado", "HeaderImagePrimary": "Principal", "HeaderImageBackdrop": "Imagen de Fondo", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Configurar Gu\u00eda de TV", "LabelDataProvider": "Proveedor de datos:", "OptionSendRecordingsToAutoOrganize": "Organiza autom\u00e1ticamente las grabaciones dentro de las carpetas existentes de series en otras bibliotecas.", - "HeaderDefaultPadding": "Rellenado Predeterminado", + "HeaderDefaultRecordingSettings": "Configuraci\u00f3n Predeterminada de Grabaciones", "OptionEnableRecordingSubfolders": "Crear sub-carpetas para categor\u00edas como Deportes, Ni\u00f1os, etc.", "HeaderSubtitles": "Subt\u00edtulos", "HeaderVideos": "Videos", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Carpetas", "LabelDisplayName": "Nombre a mostrar:", "HeaderNewRecording": "Nueva Grabaci\u00f3n", - "ButtonAdvanced": "Avanzado", "LabelCodecIntrosPath": "Ruta de intros de Codec:", "LabelCodecIntrosPathHelp": "Carpeta que contiene archivos de video. Si un nombre de archivo de video de entrada coincide con el c\u00f3dec de video, c\u00f3dec de audio, perf\u00edl de audio, o una etiqueta, entonces se reproducir\u00e1 antes de la funci\u00f3n principal.", "OptionConvertRecordingsToStreamingFormat": "Convertir autom\u00e1ticamente las grabaciones a un formato amigable para transmisi\u00f3n", "OptionConvertRecordingsToStreamingFormatHelp": "Las grabaciones ser\u00e1n convertidas en tiempo real a MP4 o MKV para una f\u00e1cil reproducci\u00f3n en sus dispositivos.", "FeatureRequiresEmbyPremiere": "Esta caracter\u00edstica requiere de una suscripci\u00f3n activa de Emby Premiere.", "FileExtension": "Extensi\u00f3n del archivo", - "OptionReplaceExistingImages": "Reemplazar im\u00e1genes existentes", "OptionPlayNextEpisodeAutomatically": "Reproducir el siguiente episodio autom\u00e1ticamente", "OptionDownloadImagesInAdvance": "Descargar las im\u00e1genes desde el inicio.", "SettingsSaved": "Configuraci\u00f3n guardada.", @@ -1348,7 +1216,6 @@ "Password": "Contrase\u00f1a", "DeleteImage": "Eliminar imagen", "MessageThankYouForSupporting": "Gracias por apoyar Emby.", - "MessagePleaseSupportProject": "Por favor apoya Emby.", "DeleteImageConfirmation": "\u00bfEst\u00e1 seguro de querer eliminar esta imagen?", "FileReadCancelled": "La lectura del archivo ha sido cancelada.", "FileNotFound": "Archivo no encontrado.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Este Servidor Emby necesita ser actualizado. Para descargar la ultima versi\u00f3n, por favor visite {0}", "LabelFromHelp": "Ejemplo: {0} (en el servidor)", "HeaderMyMedia": "Mis Medios", - "LabelAutomaticUpdateLevel": "Nivel de actualizaci\u00f3n autom\u00e1tico:", - "LabelAutomaticUpdateLevelForPlugins": "Nivel de actualizaci\u00f3n autom\u00e1tico para complementos:", "ErrorLaunchingChromecast": "Hubo un error iniciando chromecast. Por favor aseg\u00farate de que tu dispositivo este conectado a tu red inalambrica", "MessageErrorLoadingSupporterInfo": "Ha ocurrido un error al cargar la informaci\u00f3n de Emby Premier. Por favor int\u00e9ntelo nuevamente m\u00e1s tarde.", - "MessageLinkYourSupporterKey": "Asocie su clave de Emby Premier con hasta {0} miembros de Emby Connect para disfrutar de acceso gratuito a las siguientes apps:", "HeaderConfirmRemoveUser": "Eliminar Usuario", - "MessageConfirmRemoveConnectSupporter": "\u00bfEst\u00e1 usted seguro de querer remover los beneficios adiconales de Emby Premier de este usuario?", "ValueTimeLimitSingleHour": "L\u00edmite de tiempo: 1 hora", "ValueTimeLimitMultiHour": "L\u00edmite de tiempo: {0} horas", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Tareas programadas", "MessageItemsAdded": "\u00cdtems agregados", "HeaderSelectCertificatePath": "Seleccione la Ruta del Certificado", - "ConfirmMessageScheduledTaskButton": "Esta operaci\u00f3n normalmente se ejecuta de manera autom\u00e1tica como una tarea programada y no requiere de ning\u00fan esfuerzo manual. Para configurar la tarea programada, de click en Tareas Programadas", "HeaderSupporterBenefit": "Una suscripci\u00f3n Emby Premiere activa provee beneficios adicionales como acceso a sincronizacion, complementos premium, contenido de canales de internet, y mas. {0}Conocer mas{1}.", "HeaderWelcomeToProjectServerDashboard": "Bienvenido al Panel de Control de Emby", "HeaderWelcomeToProjectWebClient": "Bienvenido a Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Desactivado", "ButtonMoreInformation": "Mas Informaci\u00f3n", "LabelNoUnreadNotifications": "No hay notificaciones sin leer.", - "LabelAllPlaysSentToPlayer": "Todas las reproducciones se enviaran al reproductor seleccionado.", "MessageInvalidUser": "Usuario o contrase\u00f1a inv\u00e1lidos. Por favor intenta de nuevo.", "HeaderLoginFailure": "Fall\u00f3 el Inicio de Sesi\u00f3n", "RecommendationBecauseYouLike": "Porque te gust\u00f3 {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Grabaci\u00f3n cancelada.", "MessageRecordingScheduled": "Grabaci\u00f3n programada.", "HeaderConfirmSeriesCancellation": "Confirmar Cancelaci\u00f3n de Serie", - "MessageConfirmSeriesCancellation": "\u00bfEst\u00e1 seguro de querer cancelar esta serie?", - "MessageSeriesCancelled": "Serie cancelada", "HeaderConfirmRecordingDeletion": "Confirmar Eliminaci\u00f3n de Grabaci\u00f3n", "MessageRecordingSaved": "Grabaci\u00f3n guardada.", "OptionWeekend": "Fines de Semana", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Explore o introduzca la ruta a utilizar para los archivos del cach\u00e9 del servidor. La carpeta debe tener permisos de escritura.", "HeaderSelectTranscodingPathHelp": "Explore o introduzca la ruta a utilizar para los archivos temporales de transcodificaci\u00f3n. La carpeta debe tener permisos de escritura.", "HeaderSelectMetadataPathHelp": "Explore o introduzca la ruta donde desea almacenar los metadatos. La carpeta debe tener permisos de escritura.", - "HeaderSelectChannelDownloadPath": "Selecciona una ruta para la descarga del canal", - "HeaderSelectChannelDownloadPathHelp": "Explore o introduzca la ruta usada para almacenar los archivos temporales del canal. La carpeta debe tener permisos de escritura.", - "LabelChapterDownloaders": "Descargadores de Cap\u00edtulos:", - "LabelChapterDownloadersHelp": "Habilite y califique sus descargadores de cap\u00edtulos preferidos en orden de prioridad. Los descargadores con menor prioridad s\u00f3lo seran utilizados para completar informaci\u00f3n faltante.", "HeaderFavoriteAlbums": "\u00c1lbumes Favoritos", "HeaderLatestChannelMedia": "\u00cdtems Recientes de Canales", "ButtonOrganizeFile": "Organizar Archivo", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Reproducci\u00f3n Directa", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Direcci\u00f3n local: {0}", - "LabelRemoteAccessUrl": "Acceso remoto: {0}", + "LabelLocalAccessUrl": "Acceso en casa (LAN): {0}", + "LabelRemoteAccessUrl": "Acceso remoto (WAN): {0}", "LabelRunningOnPort": "Ejecut\u00e1ndose en el puerto http {0}.", "LabelRunningOnPorts": "Ejecut\u00e1ndose en el puerto http {0} y el puerto https {1}.", "HeaderLatestFromChannel": "M\u00e1s recientes desde {0}", - "HeaderCurrentSubtitles": "Subtitulos Actuales", "ButtonRemoteControl": "Control Remoto", "HeaderLatestTvRecordings": "Grabaciones Recientes", "LabelCurrentPath": "Ruta actual:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Eliminar \u00cdtem", "ConfirmDeleteItem": "Al eliminar este \u00edtem se eliminar\u00e1 tanto del sistema de archivos como de su biblioteca de medios. \u00bfEsta seguro de querer continuar?", "ConfirmDeleteItems": "Al borrar estos items ser\u00e1n eliminados tanto del sistema de archivos como de la librer\u00eda de medios. \u00bfEsta seguro que desea continuar?", - "MessageValueNotCorrect": "El valor introducido no es correcto. Intente nuevamente por favor.", "MessageItemSaved": "\u00cdtem guardado.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Por favor acepte los t\u00e9rminos del servicio antes de continuar.", "OptionOff": "No", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Falta im\u00e1gen de fondo.", "MissingLogoImage": "Falta im\u00e1gen de logo.", "MissingEpisode": "Falta episodio.", - "OptionScreenshots": "Capuras de Pantalla", "OptionBackdrops": "Fondos", "OptionImages": "Im\u00e1genes", "OptionKeywords": "Palabras clave", @@ -1642,10 +1494,6 @@ "OptionPeople": "Personas", "OptionProductionLocations": "Lugares de Producci\u00f3n", "OptionBirthLocation": "Lugar de Nacimiento", - "LabelAllChannels": "Todos los canales", - "AttributeNew": "Nuevo", - "AttributePremiere": "Premier", - "AttributeLive": "En Vivo", "HeaderChangeFolderType": "Cambiar Tipo de Contenido", "HeaderChangeFolderTypeHelp": "Para cambiar el tipo, por favor elimine y reconstruya la biblioteca con el nuevo tipo.", "HeaderAlert": "Alerta", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Calidad", "HeaderNotifications": "Notificaciones", "HeaderSelectPlayer": "Seleccionar Reproductor", - "MessageInternetExplorerWebm": "Para mejores resultados con Internet Explorer por favor instale el complemento de reproducci\u00f3n WebM.", "HeaderVideoError": "Error de Video", "ButtonViewSeriesRecording": "Ver grabaciones de series", "HeaderSpecials": "Especiales", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Duraci\u00f3n", "HeaderParentalRating": "Clasificaci\u00f3n Parental", "HeaderReleaseDate": "Fecha de estreno", - "HeaderDateAdded": "Fecha de Adici\u00f3n", "HeaderSeries": "Series:", "HeaderSeason": "Temporada", "HeaderSeasonNumber": "N\u00famero de temporada", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Eliminar Ubicaci\u00f3n de Medios", "MessageConfirmRemoveMediaLocation": "\u00bfEst\u00e1 seguro de querer eliminar esta ubicaci\u00f3n?", "LabelNewName": "Nuevo nombre:", - "HeaderAddMediaFolder": "Agregar Carpeta de Medios", - "HeaderAddMediaFolderHelp": "Nombre (Pel\u00edculas, M\u00fascia, TV, etc.):", "HeaderRemoveMediaFolder": "Eliminar Carpteta de Medios", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Las siguientes ubicaciones de medios ser\u00e1n eliminadas de su biblioteca Emby:", "MessageAreYouSureYouWishToRemoveMediaFolder": "\u00bfEst\u00e1 seguro de querer eliminar esta carpeta de medios?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Cambiar tipo de contenido", "HeaderMediaLocations": "Ubicaciones de Medios", "LabelContentTypeValue": "Tipo de contenido: {0}", - "LabelPathSubstitutionHelp": "Opcional: La sustituci\u00f3n de rutas puede mapear rutas del servidor a recursos de red compartidos que las aplicaciones Emby pueden acceder para reproducir de manera directa.", "FolderTypeUnset": "No establecido (contenido mixto)", "BirthPlaceValue": "Lugar de nacimiento: {0}", "DeathDateValue": "Fallcimiento: {0}", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "No Emitido", "HeaderMissing": "Falta", "ButtonWebsite": "Sitio web", - "ValueSeriesYearToPresent": "{0}-Presente", + "ValueSeriesYearToPresent": "{0} - Actualidad", "ValueAwards": "Premios: {0}", - "ValueBudget": "Presupuesto: {0}", - "ValueRevenue": "Ingresos: {0}", "ValuePremiered": "Estrenado: {0}", "ValuePremieres": "Estrenos: {0}", "ValueStudio": "Estudio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Tramas de referencia", "TabExpert": "Experto", "HeaderSelectCustomIntrosPath": "Seleccionar Ruta de Intros Personalizados", - "HeaderRateAndReview": "Clasificar y Rese\u00f1ar", "HeaderThankYou": "Gracias", - "MessageThankYouForYourReview": "Gracias por su rese\u00f1a.", - "LabelYourRating": "Su calificaci\u00f3n:", "LabelFullReview": "Rese\u00f1a completa:", - "LabelShortRatingDescription": "Res\u00famen corto de calificaci\u00f3n:", - "OptionIRecommendThisItem": "Yo recomiendo este \u00edtem", "ReleaseYearValue": "A\u00f1o de estreno: {0}", "OriginalAirDateValue": "Fecha de transmisi\u00f3n original: {0}", "WebClientTourContent": "Vea sus medios recientemente a\u00f1adidos, siguientes ep\u00ecsodios y m\u00e1s. Los c\u00edrculos verdes indican cuantos medios sin reproducir tiene.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Administre f\u00e1cilmente operaciones de larga duraci\u00f3n con tareas programadas. Decida cuando se ejecutar\u00e1n y con que periodicidad.", "DashboardTourMobile": "El panel de control del Servidor Emby funciona genial en smartphones y tablets. Administre su servidor desde la palma de su mano en cualquier momento y en cualquier lugar.", "DashboardTourSync": "Sincronice sus medios personales a sus dispositivos para reproducirlos sin conexi\u00f3n.", - "MessageRefreshQueued": "Actualizaci\u00f3n programada", "TabExtras": "Extras", "HeaderUploadImage": "Subir im\u00e1gen", "DeviceLastUsedByUserName": "\u00daltimo usado por {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sincronizar Medios", "HeaderCancelSyncJob": "Cancelar Sinc.", "CancelSyncJobConfirmation": "Cancelando el trabajo de sincronizaci\u00f3n eliminara los medios sincronizados del dispositivo durante el pr\u00f3ximo proceso de sincronizaci\u00f3n. \u00bfEsta seguro de que desea continuar?", - "MessagePleaseSelectDeviceToSyncTo": "Por favor seleccione un dispositivo con el que desea sincronizar.", - "MessageSyncJobCreated": "Trabajo de sincronizaci\u00f3n creado.", "LabelQuality": "Calidad:", - "OptionAutomaticallySyncNewContent": "Sincronizar autom\u00e1ticamente nuevos contenidos", - "OptionAutomaticallySyncNewContentHelp": "Los contenidos nuevos agregados a esta carpeta ser\u00e1n sincronizados autom\u00e1ticamente con el dispositivo.", "MessageBookPluginRequired": "Requiere instalaci\u00f3n del complemento Bookshelf", "MessageGamePluginRequired": "Requiere instalaci\u00f3n del complemento de GameBrowser", "MessageUnsetContentHelp": "El contenido ser\u00e1 mostrado como carpetas simples. Para mejores resultados utilice el administrador de metadatos para establecer los tipos de contenido para las sub-carpetas.", @@ -1932,8 +1763,8 @@ "SyncJobItemStatusCancelled": "Cancelado", "LabelProfile": "Perf\u00edl:", "LabelBitrateMbps": "Tasa de bits (Mbps):", - "EmbyIntroDownloadMessage": "Para descargar e instalar el Servidor Emby visite {0}.", - "EmbyIntroDownloadMessageWithoutLink": "Para descargar e instalar el Servidor Emby visite el sitio web de Emby", + "EmbyIntroDownloadMessage": "Para descargar e instalar el Servidor Emby gratuitamente visite {0}.", + "EmbyIntroDownloadMessageWithoutLink": "Para descargar e instalar el Servidor Emby gratuitamente, visite el sitio web de Emby", "ButtonNewServer": "Nuevo Servidor", "MyDevice": "Mi Dispositivo", "ButtonRemote": "Remoto", @@ -1941,18 +1772,11 @@ "TabScenes": "Escenas", "HeaderUnlockApp": "Desbloquear App", "HeaderUnlockSync": "Desbloquear Emby Sinc", - "MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.", - "MessageUnlockAppWithSupporter": "Desbloquee esta caracter\u00edstica con una suscripci\u00f3n activa de Emby Premier.", - "MessageToValidateSupporter": "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.", "MessagePaymentServicesUnavailable": "Los servicios de pago no se encuentran disponibles actualmente. Por favor intente de nuevo mas tarde.", - "ButtonUnlockWithPurchase": "Desbloquear con una compra", - "ButtonUnlockPrice": "Desbloquear {0}", - "MessageLiveTvGuideRequiresUnlock": "La Guia de TV en Vivo actualmente esta limitada a {0} canales. De clic en el bot\u00f3n Desbloquear para saber como desbloquear la experiencia completa.", "OptionEnableFullscreen": "Habilitar Pantalla Completa", "ButtonServer": "Servidor", "HeaderLibrary": "Biblioteca", "HeaderMedia": "Medios", - "HeaderSaySomethingLike": "Decir Algo Como...", "NoResultsFound": "No se encontraron resultados.", "ButtonManageServer": "Administrar Servidor", "ButtonPreferences": "Preferencias", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Crear una cuenta en {0}", "ErrorPleaseSelectLineup": "Por favor seleccione una programaci\u00f3n e intente de nuevo. Si no hay disponible ninguna, entonces por favor verifique que su nombre de usuario, contrase\u00f1a, y c\u00f3digo postal sean correctos.", "HeaderTryEmbyPremiere": "Intente Emby Premiere", - "ButtonBecomeSupporter": "Obtener Emby Premier", - "ButtonClosePlayVideo": "Cerrar y reproducir mi medio", - "MessageDidYouKnowCinemaMode": "\u00bfSab\u00eda que con Emby Premier, puede mejorar su experiencia con caracter\u00edsticas como Modo Cine?", - "MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.", "OptionEnableDisplayMirroring": "Habilitar duplicaci\u00f3n de pantalla", "HeaderSyncRequiresSupporterMembership": "Sincronizacion requiere de una Membres\u00eda de Aficionado", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sinc requiere conectarse a un Servidor Emby con una suscripci\u00f3n activa de Emby Premier.", "ErrorValidatingSupporterInfo": "Ha ocurrido un error al validar su informaci\u00f3n de Emby Premier. Por favor int\u00e9ntelo nuevamente m\u00e1s tarde.", "LabelLocalSyncStatusValue": "Estado: {0}", "MessageSyncStarted": "Sincronizaci\u00f3n iniciada", - "NoSlideshowContentFound": "No se encontraron presentaciones de im\u00e1genes.", - "OptionPhotoSlideshow": "Presentaci\u00f3n de fotograf\u00edas", "OptionBackdropSlideshow": "Presentaci\u00f3n de Im\u00e1genes de Fondo", "HeaderTopPlugins": "Complementos Destacados", "ButtonOther": "Otros", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Men\u00fa", "ForAdditionalLiveTvOptions": "Para proveedores adicionales de TV en Vivo, de clic en la pesta\u00f1a de Servicios Externos para ver las opciones disponibles.", "ButtonGuide": "Gu\u00eda", - "ButtonRecordedTv": "Grabaciones de TV", "ConfirmEndPlayerSession": "\u00bfDesea cerrar Emby en el dispositivo?", "ButtonYes": "Si", "AddUser": "Agregar usuario", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restaurar Compra", - "AlreadyPaid": "\u00bfYa esta pagado?", - "AlreadyPaidHelp1": "Si ya ha pagado para instalar una versi\u00f3n antigua de Media Browser para Android, no necesita pagar de nuevo para activar esta app. De clic en OK para enviarnos un correo electr\u00f3nico a {0} y nosotros la activaremos por usted.", - "AlreadyPaidHelp2": "\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.", "ButtonNowPlaying": "Reproduci\u00e9ndo Ahora", "HeaderLatestMovies": "Pel\u00edculas Recientes", - "EmbyPremiereMonthly": "Emby Premier Mensual", - "EmbyPremiereMonthlyWithPrice": "Emby Premier Mensual {0}", "HeaderEmailAddress": "Direcci\u00f3n de Correo", - "TextPleaseEnterYourEmailAddressForSubscription": "Por favor ingrese su direcci\u00f3n de correo electr\u00f3nico.", "LoginDisclaimer": "Emby esta dise\u00f1ado para ayudarlo a administrar su biblioteca de medios personal, tales como videos caseros y fotograf\u00edas. Por favor lea nuestros t\u00e9rminos de uso. El uso de cualquier software de Emby constituye la aceptaci\u00f3n de estos t\u00e9rminos.", "TermsOfUse": "T\u00e9rminos de uso", "NumLocationsValue": "{0} carpetas", "ButtonAddMediaLibrary": "Agregar Biblioteca de Medios", "ButtonManageFolders": "Administrar carpetas", - "MessageTryMicrosoftEdge": "Para una mejor experiencia en Windows 10, intente el nuevo navegador Microsoft Edge", - "MessageTryModernBrowser": "Para una mejor experiencia en Windows, intente un navegador modernno como Google Chrome, Firefox u Opera", "ErrorAddingListingsToSchedulesDirect": "Hubo un error agregando la programaci\u00f3n de su cuenta de Schedules Direct. Schedules Direct solo permite un numero limitado de programaciones por cuenta. Tal vez necesite acceder al sitio web de Schedules Direct y eliminar otras programaciones de su cuenta antes de continuar.", "PleaseAddAtLeastOneFolder": "Por favor agregue al menos una carpeta a esta biblioteca dando clic al bot\u00f3n de Agregar.", "ErrorAddingMediaPathToVirtualFolder": "Hubo un error agregando la ruta de medios. Por favor aseg\u00farese de que la ruta es valida y que el proceso del Servidor Emby tenga acceso a ese destino.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirmar Instalaci\u00f3n de Complemento", "PleaseConfirmPluginInstallation": "Por favor haga clic en OK para confirmar que ha leido lo que se encuentra arriba y que desea proceder con la instalaci\u00f3n del complemento.", "MessagePluginInstallDisclaimer": "Los complementos desarrollados por miembros de la comunidad Emby son una gran forma de mejorar su experiencia con Emby con caracter\u00edsticas y beneficios adicionales. Antes de instalar, conozca el impacto que pueden ocasionar en su Servidor Emby, tales como exploraci\u00f3n de la biblioteca que puede tomar m\u00e1s tiempo, procesamiento en segundo plano adicional y estabilidad del sistema reducida.", - "ButtonPlayOneMinute": "Reproducir un minuto", - "ThankYouForTryingEnjoyOneMinute": "Por favor disfrute un minuto de reproducci\u00f3n. Gracias por probar Emby.", - "HeaderTryPlayback": "Intente Reproducir", - "HeaderBenefitsEmbyPremiere": "Emby Premiere", - "MobileSyncFeatureDescription": "Sincronice sus medios a sus smartphones y tablets para f\u00e1cil acceso cuando este sin conexi\u00f3n.", - "CoverArtFeatureDescription": "Cover Art crea divertidas caratulas y da otros tratamientos para ayudar a personalizar las im\u00e1genes de sus medios.", "HeaderMobileSync": "Sincronizaci\u00f3n M\u00f3vil", "HeaderCloudSync": "Sinc. en la Nube", - "CloudSyncFeatureDescription": "Sincroniza tus medios a la nube para un f\u00e1cil respaldo, archivo y conversi\u00f3n.", "HeaderFreeApps": "Aplicaciones Emby Gratuitas", - "FreeAppsFeatureDescription": "Disfrute acceso gratuito para elegir aplicaciones Emby para sus dispositivos.", - "CinemaModeFeatureDescription": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la funci\u00f3n.", "CoverArt": "Cover Art", "ButtonOff": "Apagar", "TitleHardwareAcceleration": "Aceleraci\u00f3n por Hardware", "HardwareAccelerationWarning": "Habilitar la aceleraci\u00f3n por hardware podr\u00eda causar inestabilidad en algunos entornos, Aseg\u00farese de que su sistema operativo y controladores de video est\u00e1n actualizados. Si tiene dificultades reproduciendo vides despu\u00e9s de habilitar esto, necesita cambiar las configuraciones de nuevo a Auto,", "HeaderSelectCodecIntrosPath": "Seleccionar ruta de Intros de C\u00f3dec", - "ButtonAddMissingData": "S\u00f3lo agregar datos faltantes", "ValueExample": "Ejemplo: {0}", "OptionEnableAnonymousUsageReporting": "Habilitar envi\u00f3 de reportes an\u00f3nimo", "OptionEnableAnonymousUsageReportingHelp": "Permite a Emby colectar informaci\u00f3n an\u00f3nima como los complementos instalados, el numero de versi\u00f3n de sus apps Emby, etc. Esta informaci\u00f3n sera usada con el \u00fanico prop\u00f3sito de mejorar el software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "url M3U (opcional):", "LabelOptionalM3uUrlHelp": "Algunos dispositivos soportan un listado de canales M3U.", "TabResumeSettings": "Configuraci\u00f3n para Continuar", - "HowDidYouPay": "\u00bfCual sera su forma de pago?", - "IHaveEmbyPremiere": "Ya cuento con Emby Premiere", - "IPurchasedThisApp": "Ya he comprado esta app", "DrmChannelsNotImported": "Los canales con DRM no ser\u00e1n importados.", "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.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Cambiar los ajustes de metadata afectar\u00e1 al contenido nuevo a\u00f1adido a partir de ahora. Para actualizar el contenido existente, abra la pantalla de detalles y haga clic en actualizar, o realice actualizaciones masivas usando el administrador de metadata.", "OptionConvertRecordingPreserveAudio": "Conserve el audio original cuando convierta grabaciones (cuando sea posible).", "OptionConvertRecordingPreserveAudioHelp": "Esto proveer\u00e1 mejor audio pero podr\u00eda requerir transcodificar durante la reproducci\u00f3n en algunos dispositivos.", - "CreateCollectionHelp": "Las colecciones le permiten disfrutar de agrupaciones personalizadas de pel\u00edculas y otros contenidos de la biblioteca.", + "OptionConvertRecordingPreserveVideo": "Conservar el video original cuando se conviertan grabaciones", + "OptionConvertRecordingPreserveVideoHelp": "Esto podr\u00eda dar una mejor calidad de video pero requerir\u00e1 transcodificar durante al reproducir en algunos dispositivos.", "AddItemToCollectionHelp": "Agregue items a colecciones busc\u00e1ndolas y usando el men\u00fa de de clic derecho o de toque para agregarlos a una colecci\u00f3n.", "HeaderHealthMonitor": "Monitor de Salud", "HealthMonitorNoAlerts": "No hay alertas activas", @@ -2094,7 +1890,7 @@ "MapChannels": "Mapear Canales", "LabelffmpegPath": "Ruta FFmpeg:", "LabelffmpegVersion": "Versi\u00f3n de FFmpeg:", - "LabelffmpegPathHelp": "La ruta donde descargo la aplicaci\u00f3n de FFmpeg, o la carpeta que contenga FFmpeg.", + "LabelffmpegPathHelp": "La ruta hacia el archivo de aplicaci\u00f3n de ffmpeg, o la carpeta que contenga ffmpeg.", "SetupFFmpeg": "Configurar FFmpeg", "SetupFFmpegHelp": "Emby podr\u00eda requerir una librer\u00eda o aplicaci\u00f3n para convertir ciertos tipos de medios. Hay muchos diferentes aplicaciones disponibles disponibles, sin embargo, Emby ha sido probado para trabajar con ffmpeg. Emby no esta de ning\u00fan modo afiliado con ffmpeg, su propiedad, c\u00f3digo o distribuci\u00f3n.", "EnterFFmpegLocation": "Introduzca la ruta a FFmpeg", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Opcional) Carpeta de red compartida:", "LabelOptionalNetworkPathHelp": "Si esta carpeta es compartida en su red, proveer la ruta del recurso compartido de red puede permitir a las aplicaciones Emby en otros dispositivos acceder a los archivos de medios directamente.", "ButtonPlayExternalPlayer": "Reproducir con un reproductor externo", - "WillRecord": "Se Grabar\u00e1", "NotScheduledToRecord": "No esta programado para grabar", - "SynologyUpdateInstructions": "Por favor inicie sesi\u00f3n en DSM y vaya al Centro de Paquetes para actualizar." + "SynologyUpdateInstructions": "Por favor inicie sesi\u00f3n en DSM y vaya al Centro de Paquetes para actualizar.", + "LatestFromLibrary": "M\u00e1s recientes {0}", + "LabelMoviePrefix": "Prefijo de la pel\u00edcula:", + "LabelMoviePrefixHelp": "Si un prefijo es aplicado al titulo de las pel\u00edculas, introduzcalo aqu\u00ed para que emby pueda tratarlo adecuadamente.", + "HeaderRecordingPostProcessing": "Post Procesado de las Grabaciones", + "LabelPostProcessorArguments": "Argumentos de linea de comando para el post-procesador:", + "LabelPostProcessorArgumentsHelp": "Use {path} como la ruta a el archivo de grabado.", + "LabelPostProcessor": "Aplicaci\u00f3n de Post Procesado:", + "ErrorAddingXmlTvFile": "Hubo un error accediendo al archivo XmlTV. Por favor aseg\u00farese de que el archivo existe e intente de nuevo." } \ No newline at end of file diff --git a/dashboard-ui/strings/es.json b/dashboard-ui/strings/es.json index 41edd489de..760fb146dc 100644 --- a/dashboard-ui/strings/es.json +++ b/dashboard-ui/strings/es.json @@ -1,8 +1,6 @@ { - "LabelExit": "Salir", - "LabelApiDocumentation": "Documentaci\u00f3n API", - "LabelBrowseLibrary": "Navegar biblioteca", - "LabelConfigureServer": "Configurar Emby", + "OptionAutomaticallyGroupSeriesHelp": "Si est\u00e1 activada, las series que se distribuyen entre varias carpetas dentro de esta biblioteca se fusionar\u00e1n autom\u00e1ticamente en una sola serie.", + "OptionAutomaticallyGroupSeries": "Combinar autom\u00e1ticamente series que se distribuyen en varias carpetas", "LabelPrevious": "Anterior", "LabelFinish": "Terminar", "LabelNext": "Siguiente", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Tu nombre:", "MoreUsersCanBeAddedLater": "Se pueden agregar m\u00e1s usuarios desde el panel de control despu\u00e9s.", "UserProfilesIntro": "Emby incluye soporte interno para perfiles de usuarios, permitiendo que cada usuario tenga sus propios ajustes, estado de reproducci\u00f3n y control parental.", - "LabelWindowsService": "Servicio de Windows", - "AWindowsServiceHasBeenInstalled": "Un servicio de Windows se ha instalado", - "WindowsServiceIntro1": "El Servidor Emby normalmente se inicia como una aplicacion con un icono en la bandeja, pero si usted prefiere que inicie como un servicio de fondo, entonces puede ser iniciado desde los servicios de Windows en el panel de control.", - "WindowsServiceIntro2": "Si est\u00e1 utilizando el servicio de windows, no puede ejecutar a la vez el icono en la bandeja, tiene que finalizarlo para poder activar el servicio. El servicio tiene que configurarse con privilegios de administrador en el panel de control. Cuando ejecute el servicio, tiene que asegurarse que la cuenta desde la que se ejecuta el servicio tiene acceso a las carpetas de los medios.", "WizardCompleted": "Eso es todo lo que necesitamos por ahora. Emby a empezado a recolectar informaci\u00f3n de su biblioteca. Echale un vistazo a nuestras aplicaciones, y despu\u00e9s presione Finalizar<\/b> para ver el Panel de control<\/b>", "LabelConfigureSettings": "Configuraci\u00f3n de opciones", - "LabelEnableAutomaticPortMapping": "Habilitar asignaci\u00f3n de puertos autom\u00e1tico", - "LabelEnableAutomaticPortMappingHelp": "UPnP permite la configuraci\u00f3n del router para acceso externo de forma f\u00e1cil y autom\u00e1tica. Esto puede no funcionar en algunos modelos de routers.", "HeaderTermsOfService": "T\u00e9rminos del servicio de Emby", "MessagePleaseAcceptTermsOfService": "Por favor aceptar los t\u00e9rminos del servicio y pol\u00edtica de privacidad antes de continuar.", - "OptionIAcceptTermsOfService": "Acepto los terminos de servicio", - "ButtonPrivacyPolicy": "Politica de privacidad", - "ButtonTermsOfService": "Terminos de servicios", - "HeaderDeveloperOptions": "Recursos del Desarrollador", - "OptionEnableWebClientResponseCache": "Activar el cach\u00e9 de la respuesta web.", - "OptionDisableForDevelopmentHelp": "Configurarlos como necesarios para el desarrollo web.", - "OptionEnableWebClientResourceMinification": "Activar la minimizaci\u00f3n de los recursos web", - "LabelDashboardSourcePath": "Localizaci\u00f3n de la fuente del cliente web:", - "LabelDashboardSourcePathHelp": "Si est\u00e1 ejecutando el servidor desde la fuente, especifique la ruta de acceso a la carpeta dashboard-ui. Todos los archivos del cliente web ser\u00e1n atendidos desde esta ruta.", + "OptionIAcceptTermsOfService": "Acepto los t\u00e9rminos de servicio", + "ButtonPrivacyPolicy": "Pol\u00edtica de privacidad", + "ButtonTermsOfService": "T\u00e9rminos de servicio", "ButtonConvertMedia": "Convertir medios", "ButtonOrganize": "Organizar", "HeaderSupporterBenefits": "Ventajas de Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Para agregar a un usuario que no est\u00e1 en el listado, usted tiene primero que conectar su cuenta con Emby Connect desde la p\u00e1gina de perfil del usuario.", "LabelPinCode": "C\u00f3digo PIN:", "OptionHideWatchedContentFromLatestMedia": "Esconder medios vistos de los medios m\u00e1s recientes", + "DeleteMedia": "Eliminar medios", "HeaderSync": "Sincronizar", "ButtonOk": "OK", "ButtonCancel": "Cancelar", "ButtonExit": "Salir", "ButtonNew": "Nuevo", + "OptionDev": "Desarrollo", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Tareas de activaci\u00f3n", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Para acceder, por favor introduzca su c\u00f3digo PIN f\u00e1cil.", "ButtonConfigurePinCode": "Configurar contrase\u00f1a", "RegisterWithPayPal": "Registrese con PayPal", - "HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba", "LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:", "LabelSyncTempPathHelp": "Especificar una carpeta personalizada para archivos en sincronizaci\u00f3n. Medios convertidos creados durante el proceso de sincronizaci\u00f3n ser\u00e1n guardados aqu\u00ed.", "LabelCustomCertificatePath": "Lugar del certificado personalizado:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Si est\u00e1 habilitado, archivos con extensiones .rar y .zip ser\u00e1n detectados como medios.", "LabelEnterConnectUserName": "Nombre de usuario o email:", "LabelEnterConnectUserNameHelp": "Este es el usuario o email de su cuenta Emby online.", - "LabelEnableEnhancedMovies": "Habilite presentaciones de peliculas mejoradas", - "LabelEnableEnhancedMoviesHelp": "Cuando est\u00e9 habilitado, las pel\u00edculas ser\u00e1n mostradas como carpetas para incluir tr\u00e1ilers, extras, elenco, equipo y otros contenidos relacionados.", "HeaderSyncJobInfo": "Trabajo de Sync", "FolderTypeMixed": "Contenido mixto", "FolderTypeMovies": "Peliculas", @@ -84,7 +70,6 @@ "LabelContentType": "Tipo de contenido:", "TitleScheduledTasks": "Tareas programadas", "HeaderSetupLibrary": "Configure sus bibliotecas de medios", - "ButtonAddMediaFolder": "Agregar una carpeta de medios", "LabelFolderType": "Tipo de carpeta:", "LabelCountry": "Pa\u00eds:", "LabelLanguage": "Idioma:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Guardar im\u00e1genes y metadatos directamente en las carpetas de medios, permitir\u00e1 colocarlas en un lugar donde se pueden editar f\u00e1cilmente.", "LabelDownloadInternetMetadata": "Descargar imagenes y metadatos de internet", "LabelDownloadInternetMetadataHelp": "El Servidor Emby puede bajar informaci\u00f3n acerca de sus medios para habilitar presentaciones de alta calidad.", - "TabPreferences": "Preferencias", "TabPassword": "Contrase\u00f1a", "TabLibraryAccess": "Acceso a biblioteca", "TabAccess": "Acceso", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Habilitar acceso a todas las bibliotecas", "DeviceAccessHelp": "Esto solo aplica a equipos que puedan ser singularmente identificados y no prevendr\u00e1 acceso al navegador. Filtrar el acceso de equipos del usuario les prevendr\u00e1 que usen nuevos equipos hasta que sean aprobados aqui.", "LabelDisplayMissingEpisodesWithinSeasons": "Mostar episodios no disponibles en temporadas", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Tambi\u00e9n debe habilitarse para bibliotecas de TV en la configuraci\u00f3n de Emby Server.", "LabelUnairedMissingEpisodesWithinSeasons": "Mostrar episodios a\u00fan no emitidos en temporadas", + "ImportMissingEpisodesHelp": "Si est\u00e1 activada, la informaci\u00f3n sobre los episodios que faltan se importar\u00e1 en su base de datos Emby y se mostrar\u00e1 en temporadas y series. Esto puede causar exploraciones de bibliotecas significativamente m\u00e1s largas.", "HeaderVideoPlaybackSettings": "Ajustes de Reproducci\u00f3n de Video", + "OptionDownloadInternetMetadataTvPrograms": "Descargar los metadatos de Internet para los programas que aparecen en la gu\u00eda", "HeaderPlaybackSettings": "Ajustes de reproducci\u00f3n", "LabelAudioLanguagePreference": "Preferencia de idioma de audio", "LabelSubtitleLanguagePreference": "Preferencia de idioma de subtitulos", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "Se Recomienda una Proporci\u00f3n de Aspecto 1:1. Solo JPG\/PNG", "MessageNothingHere": "Nada aqu\u00ed.", "MessagePleaseEnsureInternetMetadata": "Por favor aseg\u00farese que la descarga de metadatos de internet est\u00e1 habilitada", - "TabSuggested": "Sugerencia", + "AlreadyPaidHelp1": "Si ya has pagado por instalar una versi\u00f3n anterior de Media Browser para Android no necesitas pagar otra vez para poder activar esta aplicaci\u00f3n. Haz clic en OK para mandarnos un mensaje a {0} y te la activaremos.", + "AlreadyPaidHelp2": "\u00bfYa tienes Emby Premiere? Cancela este di\u00e1logo, configura Emby Premiere en el Panel de Control de tu servidor Emby en Ayuda -> Emby Premiere, y se te desbloquear\u00e1 autom\u00e1ticamente.", "TabSuggestions": "Sugerencias", "TabLatest": "Novedades", "TabUpcoming": "Pr\u00f3ximos", "TabShows": "Programas", "TabEpisodes": "Episodios", "TabGenres": "G\u00e9neros", - "TabPeople": "Gente", "TabNetworks": "redes", "HeaderUsers": "Usuarios", "HeaderFilters": "Filtros", @@ -166,6 +153,7 @@ "OptionWriters": "Guionistas", "OptionProducers": "Productores", "HeaderResume": "Continuar", + "HeaderContinueWatching": "Continuar viendo", "HeaderNextUp": "Siguiendo", "NoNextUpItemsMessage": "Nada encontrado. \u00a1Comienza a ver tus programas!", "HeaderLatestEpisodes": "Ultimos episodios", @@ -185,6 +173,7 @@ "OptionPlayCount": "N\u00famero de reproducc.", "OptionDatePlayed": "Fecha de reproducci\u00f3n", "OptionDateAdded": "A\u00f1adido el", + "DateAddedValue": "Fecha a\u00f1adido: {0}", "OptionAlbumArtist": "Album Artista", "OptionArtist": "Artista", "OptionAlbum": "\u00c1lbum", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Se puede continuar", "ScheduledTasksHelp": "Click en una tarea para ajustar su programaci\u00f3n", - "ScheduledTasksTitle": "Tareas programadas", "TabMyPlugins": "Mis Plugins", "TabCatalog": "Cat\u00e1logo", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u00daltimas canciones", "HeaderRecentlyPlayed": "Reproducido recientemente", "HeaderFrequentlyPlayed": "Reproducido frecuentemente", - "DevBuildWarning": "Las actualizaciones en desarrollo no est\u00e1n convenientemente probadas. La aplicaci\u00f3n se puede bloquear y caracter\u00edsticas completas pueden no funcionar del todo.", "LabelVideoType": "Tipo de video", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "\u00datil para privado o cuentas de administradores escondidos. El usuario tendr\u00e1 que acceder entrando su nombre de usuario y contrase\u00f1a manualmente.", "OptionDisableUser": "Deshabilitar este usuario", "OptionDisableUserHelp": "Si est\u00e1 deshabilitado, el servidor no aceptar\u00e1 conexiones de este usuario. Si existen conexiones de este usuario, finalizar\u00e1n inmediatamente.", - "HeaderAdvancedControl": "Control avanzado", "LabelName": "Nombre:", "ButtonHelp": "Ayuda", "OptionAllowUserToManageServer": "Permite a este usuario administrar el servidor", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Los equipos DLNA son considerados compartidos hasta que un usuario empiece a controlarlo.", "OptionAllowLinkSharing": "Permitir compartir los medios en redes sociales", "OptionAllowLinkSharingHelp": "S\u00f3lo se comparten las p\u00e1ginas web con informaci\u00f3n de medios. Los archivos nunca se comparten p\u00fablicamente. Lo compartido expirar\u00e1 despu\u00e9s de {0} d\u00edas.", - "HeaderSharing": "Compartir", "HeaderRemoteControl": "Control Remoto", "OptionMissingTmdbId": "Falta Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Ruta", "TabServer": "Servidor", "TabTranscoding": "Transcodificaci\u00f3n", - "TitleAdvanced": "Avanzado", "OptionRelease": "Release Oficial", - "OptionBeta": "Beta", - "OptionDev": "Desarrollo (inestable)", "LabelAllowServerAutoRestart": "Permitir al servidor reiniciarse autom\u00e1ticamente para aplicar las actualizaciones", "LabelAllowServerAutoRestartHelp": "El servidor s\u00f3lo se reiniciar\u00e1 durante periodos de reposo, cuando no hayan usuarios activos.", "LabelRunServerAtStartup": "Arrancar servidor al iniciar", @@ -330,11 +312,9 @@ "TabGames": "Juegos", "TabMusic": "M\u00fasica", "TabOthers": "Otros", - "HeaderExtractChapterImagesFor": "Extraer im\u00e1genes de cap\u00edtulos para:", "OptionMovies": "Pel\u00edculas", "OptionEpisodes": "Episodios", "OptionOtherVideos": "Otros v\u00eddeos", - "TitleMetadata": "Metadatos", "LabelFanartApiKey": "Clave personal de API:", "LabelFanartApiKeyHelp": "Las peticiones a fanart sin clave API personal dar\u00e1n resultados que fueron aprobados hace 7 d\u00edas. Con una clave API personal se reduce a 48 horas, y si eres un miembro VIP de fanart se reduce a 10 minutos aproximadamente.", "ExtractChapterImagesHelp": "Extraer im\u00e1genes de los cap\u00edtulos permite a los clientes ver men\u00fas gr\u00e1ficos de elecci\u00f3n de escena. El proceso puede ser lento, hacer uso intenso del cpu y requerir gigabytes de espacio adicional. Se ejecuta cuando se detectan los v\u00eddeos y en las tareas nocturnas programadas. El horario se puede configurar en el \u00e1rea de tareas programadas. No se recomienda ejecutar esta tarea en las horas puntas de uso.", @@ -350,15 +330,15 @@ "TabCollections": "Colecciones", "HeaderChannels": "Canales", "TabRecordings": "Grabaciones", - "TabScheduled": "Programado", "TabSeries": "Series", "TabFavorites": "Favoritos", "TabMyLibrary": "Mi biblioteca", "ButtonCancelRecording": "Cancelar grabaci\u00f3n", - "LabelPrePaddingMinutes": "Minutos previos extras:", - "LabelPostPaddingMinutes": "Minutos extras post grabaci\u00f3n:", + "LabelStartWhenPossible": "Empiece cuando sea posible:", + "LabelStopWhenPossible": "Det\u00e9ngase cuando sea posible:", + "MinutesBefore": "minutos antes", + "MinutesAfter": "minutos despu\u00e9s", "HeaderWhatsOnTV": "Que hacen ahora", - "TabStatus": "Estado", "TabSettings": "Opciones", "ButtonRefreshGuideData": "Actualizar datos de la gu\u00eda", "ButtonRefresh": "Refrescar", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Grabar en cualquier canal", "OptionRecordAnytime": "Grabar a cualquier hora", "OptionRecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos episodios", - "HeaderRepeatingOptions": "Opciones Repetitivas", "HeaderDays": "D\u00edas", "HeaderActiveRecordings": "Grabaciones activas", "HeaderLatestRecordings": "\u00daltimas grabaciones", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u00daltimos Juegos", "HeaderRecentlyPlayedGames": "Juegos utilizados recientemente", "TabGameSystems": "Sistema de Juego", - "TitleMediaLibrary": "Librer\u00eda de medios", "TabFolders": "Carpetas", "TabPathSubstitution": "Ruta alternativa", "LabelSeasonZeroDisplayName": "Nombre de la Temporada 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Dividir versiones aparte", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Falta", - "LabelOffline": "Apagado", - "PathSubstitutionHelp": "Las rutas alternativas se utilizan para mapear una ruta en el servidor a la que los clientes puedan acceder. El permitir que los clientes se conecten directamente a trav\u00e9s de la red y puedan reproducir los medios directamente, evita utilizar recursos del servidor para la transcodificaci\u00f3n y el stream,", - "HeaderFrom": "Desde", - "HeaderTo": "Hasta", - "LabelFrom": "Desde:", - "LabelTo": "Hasta:", - "LabelToHelp": "Ejemplo:\\\\MiServidor\\Peliculas (ruta a la que el cliente pueda acceder)", - "ButtonAddPathSubstitution": "A\u00f1adir ruta alternativa", "OptionSpecialEpisode": "Especiales", "OptionMissingEpisode": "Episodios que faltan", "OptionUnairedEpisode": "Episodios no emitidos", "OptionEpisodeSortName": "Nombre corto del episodio", "OptionSeriesSortName": "Nombre de la serie", "OptionTvdbRating": "Valoraci\u00f3n tvdb", - "EditCollectionItemsHelp": "Agregar o quitar pel\u00edculas, series, discos, libros o juegos que desee agrupar dentro de esta colecci\u00f3n.", "HeaderAddTitles": "A\u00f1adir T\u00edtulos", "LabelEnableDlnaPlayTo": "Actvar la reproducci\u00f3n en DLNAi", "LabelEnableDlnaPlayToHelp": "Emby puede detectar equipos dentro de su red y puede ofrecer la habilidad de controlarlos remotamente.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Perfiles del sistema", "CustomDlnaProfilesHelp": "Crear un perfil personalizado para un nuevo dispositivo o reemplazar un perfil del sistema.", "SystemDlnaProfilesHelp": "El perfil del Sistema es solo lectura. Cambios al perfil del sistema seran guardados en un perfil nuevo modificado.", - "TitleDashboard": "Panel de control", "TabHome": "Inicio", "TabInfo": "Info", "HeaderLinks": "Enlaces", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Los t\u00edtulos se asumir\u00e1n como no reproducidos si se paran antes de este momento", "LabelMaxResumePercentageHelp": "Los t\u00edtulos se asumir\u00e1n como reproducidos si se paran despu\u00e9s de este momento", "LabelMinResumeDurationHelp": "Los t\u00edtulos m\u00e1s cortos de esto no ser\u00e1n reanudables", - "TitleAutoOrganize": "Organizaci\u00f3n autom\u00e1tica", "TabActivityLog": "Log de actividad", "TabSmartMatches": "Emparejamientos inteligentes.", "TabSmartMatchInfo": "Gestione sus emparejamientos inteligentes que se a\u00f1adieron usando el corrector del Organizador Autom\u00e1tico", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Ayuda a asegurar el continuo desarrollo de este proyecto mediante la compra de Emby Premiere. Una parte de los ingresos ir\u00e1n destinados a otras herramientas gratuitas de las que dependemos.", "DonationNextStep": "Una vez completado, vuelve e introduce la clave de Emby Premiere que has recibido por correo.", "AutoOrganizeHelp": "Organizaci\u00f3n autom\u00e1tica monitoriza sus carpetas de descarga en busca de nuevos archivos y los mueve a sus directorios de medios.", - "AutoOrganizeTvHelp": "La organizaci\u00f3n de archivos de TV s\u00f3lo a\u00f1adir\u00e1 episodios a series existentes. No crear\u00e1 carpetas para series nuevas.", "OptionEnableEpisodeOrganization": "Activar la organizaci\u00f3n de nuevos episodios", "LabelWatchFolder": "Ver carpeta:", "LabelWatchFolderHelp": "El servidor sondear\u00e1 esta carpeta durante la tarea programada \"Organizar nuevos archivos de medios\".", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Tareas en ejecuci\u00f3n", "HeaderActiveDevices": "Dispositivos activos", "HeaderPendingInstallations": "Instalaciones pendientes", - "HeaderServerInformation": "Informaci\u00f3n del servidor", "ButtonRestartNow": "Reiniciar ahora", "ButtonRestart": "Reiniciar", "ButtonShutdown": "Apagar", @@ -588,7 +553,6 @@ "MessageInvalidKey": "La clave de Emby Premiere falta o no es v\u00e1lida.", "ErrorMessageInvalidKey": "Para que se registre cualquier contenido premium, tienes que tener una suscripci\u00f3n activa a Emby Premiere.", "HeaderDisplaySettings": "Opciones de pantalla", - "TabPlayTo": "Reproducir en", "LabelEnableDlnaServer": "Habilitar servidor Dlna", "LabelEnableDlnaServerHelp": "Permite que los aparatos con tecnologia UPnP en su red local pudan acceder los contenidos en Emby.", "LabelEnableBlastAliveMessages": "Explotar mensajes en vivo", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determina la duraci\u00f3n en segundos entre los mensajes en vivo del servidor .", "LabelDefaultUser": "Usuario por defecto:", "LabelDefaultUserHelp": "Determina de q\u00fae usuario se utilizar\u00e1 su biblioteca de medios para mostrarla por defecto en los dipositivos conectados. Esto puede cambiarse para cada dispositivo mediante el uso de perfiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Ajustes del Servidor", "HeaderRequireManualLogin": "Requerir entrada de usuario manual para:", "HeaderRequireManualLoginHelp": "Cuando est\u00e1 desactivado los clientes saldr\u00e1n en la pantalla de inicio para seleccionarlos visualmente.", "OptionOtherApps": "Otras aplicaciones", "OptionMobileApps": "Aplicaciones m\u00f3viles", - "HeaderNotificationList": "Haz clic en una notificaci\u00f3n para configurar las opciones de env\u00edo. ", - "NotificationOptionApplicationUpdateAvailable": "Disponible actualizaci\u00f3n de la aplicaci\u00f3n", - "NotificationOptionApplicationUpdateInstalled": "Se ha instalado la actualizaci\u00f3n de la aplicaci\u00f3n", - "NotificationOptionPluginUpdateInstalled": "Se ha instalado la actualizaci\u00f3n del plugin", - "NotificationOptionPluginInstalled": "Plugin instalado", - "NotificationOptionPluginUninstalled": "Plugin desinstalado", - "NotificationOptionVideoPlayback": "Reproduccion de video a iniciado", - "NotificationOptionAudioPlayback": "Reproduccion de audio a iniciado", - "NotificationOptionGamePlayback": "Reproduccion de video juego a iniciado", - "NotificationOptionVideoPlaybackStopped": "Reproducci\u00f3n de video detenida", - "NotificationOptionAudioPlaybackStopped": "Reproducci\u00f3n de audio detenida", - "NotificationOptionGamePlaybackStopped": "Reproducci\u00f3n de juego detenida", - "NotificationOptionTaskFailed": "La tarea programada ha fallado", - "NotificationOptionInstallationFailed": "Fallo en la instalaci\u00f3n", - "NotificationOptionNewLibraryContent": "Nuevo contenido a\u00f1adido", - "NotificationOptionCameraImageUploaded": "Imagen de camara se a carcado", - "NotificationOptionUserLockedOut": "Usuario bloqueado", - "HeaderSendNotificationHelp": "Las notificaciones se env\u00edan la tu bandeja de Emby. Se pueden instalar ajustes adicionales desde la pesta\u00f1a Servicios.", - "NotificationOptionServerRestartRequired": "Se requiere el reinicio del servidor", "LabelNotificationEnabled": "Activar esta notificaci\u00f3n", "LabelMonitorUsers": "Supervisar la actividad de:", "LabelSendNotificationToUsers": "Enviar la notificaci\u00f3n a:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Anterior", "LabelGroupMoviesIntoCollections": "Agrupar pel\u00edculas en colecciones", "LabelGroupMoviesIntoCollectionsHelp": "Cuando se muestran las listas de pel\u00edculas, las pel\u00edculas pertenecientes a una colecci\u00f3n se mostrar\u00e1n como un elemento agrupado.", - "NotificationOptionPluginError": "Error en plugin", "ButtonVolumeUp": "Subir volumen", "ButtonVolumeDown": "Bajar volumen", "HeaderLatestMedia": "\u00daltimos medios", "OptionNoSubtitles": "Sin subt\u00edtulos", - "OptionSpecialFeatures": "Caracter\u00edsticas especiales", "HeaderCollections": "Colecciones", "LabelProfileCodecsHelp": "Separados por comas. Esto se puede dejar vac\u00edo para aplicar a todos los codecs.", "LabelProfileContainersHelp": "Separados por comas. Esto se puede dejar vac\u00edo para aplicar a todos los contenedores.", @@ -772,20 +714,17 @@ "MessageNoAvailablePlugins": "No hay plugins disponibles.", "LabelDisplayPluginsFor": "Mostrar plugins para:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Nombre del episodio", "LabelSeriesNamePlain": "Nombre de la serie", - "ValueSeriesNamePeriod": "Series.name", - "ValueSeriesNameUnderscore": "Series_name", - "ValueEpisodeNamePeriod": "Episode.name", - "ValueEpisodeNameUnderscore": "Episode_name", + "ValueSeriesNamePeriod": "Series.nombre", + "ValueSeriesNameUnderscore": "Series_nombre", + "ValueEpisodeNamePeriod": "Episodio.nombre", + "ValueEpisodeNameUnderscore": "Episodio_nombre", "LabelSeasonNumberPlain": "Temporada n\u00famero", "LabelEpisodeNumberPlain": "Episodio n\u00famero", "LabelEndingEpisodeNumberPlain": "N\u00famero del \u00faltimo episodio", "HeaderTypeText": "Entrar texto", "LabelTypeText": "Texto", - "HeaderSearchForSubtitles": "B\u00fasqueda de Subt\u00edtulos", - "MessageNoSubtitleSearchResultsFound": "No se han encontrado resultados en la b\u00fasqueda.", "TabDisplay": "Pantalla", "TabLanguages": "Idiomas", "TabAppSettings": "Ajustes de la App", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Si est\u00e1 habilitado, se reproducir\u00e1n temas musicales de fondo mientras navega por la biblioteca.", "LabelEnableBackdropsHelp": "Si est\u00e1 habilitado, se mostrar\u00e1n im\u00e1genes de fondo en algunas p\u00e1ginas mientras navega por la biblioteca.", "HeaderHomePage": "P\u00e1gina de inicio", - "HeaderSettingsForThisDevice": "Opciones para este dispositivo", "OptionAuto": "Auto", "OptionYes": "Si", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "P\u00e1gina de inicio secci\u00f3n 2:", "LabelHomePageSection3": "P\u00e1gina de inicio secci\u00f3n 3:", "LabelHomePageSection4": "P\u00e1gina de inicio secci\u00f3n 4:", - "OptionMyMediaButtons": "Mis contenidos (botones)", "OptionMyMedia": "Mis contenidos", "OptionMyMediaSmall": "Mis contenidos (peque\u00f1o)", "OptionResumablemedia": "Continuar", @@ -815,53 +752,21 @@ "HeaderReports": "Informes", "HeaderSettings": "Ajustes", "OptionDefaultSort": "Por defecto", - "OptionCommunityMostWatchedSort": "M\u00e1s visto", "TabNextUp": "Siguiendo", - "PlaceholderUsername": "Usuario", "HeaderBecomeProjectSupporter": "Conseguir Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles. Comience ver y calificar sus pel\u00edculas y vuelva para ver las recomendaciones.", "MessageNoCollectionsAvailable": "Las colecciones le permiten disfrutar de agrupaciones personalizadas de pel\u00edculas, series, \u00e1lbumes, libros y juegos. Haga clic en el bot\u00f3n + para empezar a crear colecciones.", "MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenido para jugar consecutivamente a la vez. Para a\u00f1adir elementos a las listas de reproducci\u00f3n, haga clic o toque y mantenga, a continuaci\u00f3n, seleccione Agregar a la lista de reproducci\u00f3n.", "MessageNoPlaylistItemsAvailable": "La lista de reproducci\u00f3n est\u00e1 vac\u00eda.", - "ButtonDismiss": "Descartar", "ButtonEditOtherUserPreferences": "Editar este perfil, la imagen y los ajustes personales.", "LabelChannelStreamQuality": "Calidad del canal online preferida:", "LabelChannelStreamQualityHelp": "En un entorno de bajo ancho de banda, limitar la calidad puede ayudar a asegurar una experiencia de streaming suave.", "OptionBestAvailableStreamQuality": "Mejor disponible", "ChannelSettingsFormHelp": "Instale canales como Trailers y Vimeo desde el cat\u00e1logo de plugins.", - "ViewTypePlaylists": "Listas de reproducci\u00f3n", "ViewTypeMovies": "Pel\u00edculas", "ViewTypeTvShows": "TV", "ViewTypeGames": "Juegos", "ViewTypeMusic": "M\u00fasica", - "ViewTypeMusicGenres": "G\u00e9neros", - "ViewTypeMusicArtists": "Artistas", - "ViewTypeBoxSets": "Colecciones", - "ViewTypeChannels": "Canales", - "ViewTypeLiveTV": "Tv en directo", - "ViewTypeLiveTvNowPlaying": "Transmiti\u00e9ndose ahora", - "ViewTypeLatestGames": "\u00daltimos juegos", - "ViewTypeRecentlyPlayedGames": "Reproducido recientemente", - "ViewTypeGameFavorites": "Favoritos", - "ViewTypeGameSystems": "Sistemas de juego", - "ViewTypeGameGenres": "G\u00e9neros", - "ViewTypeTvResume": "Reanudar", - "ViewTypeTvNextUp": "Pr\u00f3ximamente", - "ViewTypeTvLatest": "\u00daltimas", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "G\u00e9neros", - "ViewTypeTvFavoriteSeries": "Series favoritas", - "ViewTypeTvFavoriteEpisodes": "Episodios favoritos", - "ViewTypeMovieResume": "Reanudar", - "ViewTypeMovieLatest": "\u00daltimas", - "ViewTypeMovieMovies": "Pel\u00edculas", - "ViewTypeMovieCollections": "Colecciones", - "ViewTypeMovieFavorites": "Favoritos", - "ViewTypeMovieGenres": "G\u00e9neros", - "ViewTypeMusicLatest": "\u00daltimas", - "ViewTypeMusicPlaylists": "Lista", - "ViewTypeMusicAlbums": "\u00c1lbumes", - "ViewTypeMusicAlbumArtists": "\u00c1lbumes de artistas", "HeaderOtherDisplaySettings": "Configuraci\u00f3n de pantalla", "ViewTypeMusicSongs": "Canciones", "ViewTypeMusicFavorites": "Favoritos", @@ -896,11 +801,10 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Cuando se descarguen im\u00e1genes pueden ser guardadas tanto en extrafanart como en extrathumbs para maximizar la compatibilidad con los temas de Kodi.", "TabServices": "Servicios", "TabLogs": "Logs", - "HeaderServerLogFiles": "Archivos de log del servidor:", "TabBranding": "Branding", "HeaderBrandingHelp": "Personalice la apariencia de Emby para que se ajuste a las necesidades de su grupo u organizaci\u00f3n.", "LabelLoginDisclaimer": "Login renuncia:", - "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", + "LabelLoginDisclaimerHelp": "Esto se mostrar\u00e1 en la parte inferior de la p\u00e1gina de inicio de sesi\u00f3n.", "OptionList": "Lista", "TabDashboard": "Panel de control", "TitleServer": "Servidor", @@ -917,7 +821,6 @@ "HeaderDevice": "Dispositivo", "HeaderUser": "Usuario", "HeaderDateIssued": "Fecha de emisi\u00f3n", - "LabelChapterName": "Cap\u00edtulo {0}", "HeaderHttpHeaders": "Cabeceras Http", "HeaderIdentificationHeader": "Cabecera de indentificaci\u00f3n", "LabelValue": "Valor:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "Vista", - "TabSort": "Ordenar", "TabFilter": "Filtrar", "ButtonView": "Vista", "LabelPageSize": "Limite de \u00edtems:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Emisi\u00f3n http en vivo", "LabelContext": "Contexto:", - "OptionContextStreaming": "Emisi\u00f3n", - "OptionContextStatic": "Sincronizar", "TabPlaylists": "Listas de reproducci\u00f3n", "ButtonClose": "Cerrar", "LabelAllLanguages": "Todos los idiomas", @@ -956,7 +856,6 @@ "LabelImage": "Imagen:", "HeaderImages": "Im\u00e1genes", "HeaderBackdrops": "Im\u00e1genes de fondo", - "HeaderScreenshots": "Capturas de pantalla", "HeaderAddUpdateImage": "A\u00f1adir\/Actualizar imagen", "LabelDropImageHere": "Soltar imagen aqui", "LabelJpgPngOnly": "S\u00f3lo JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Bloqueado", "OptionUnidentified": "Sin identificar", "OptionMissingParentalRating": "Sin clasificaci\u00f3n parental", - "OptionStub": "Stub", "OptionSeason0": "Temporada 0", "LabelReport": "Informe:", "OptionReportSongs": "Canciones", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albumes", "ButtonMore": "M\u00e1s", "HeaderActivity": "Actividad", - "ScheduledTaskStartedWithName": "{0} iniciado", - "ScheduledTaskCancelledWithName": "{0} ha sido cancelado", - "ScheduledTaskCompletedWithName": "{0} completado", - "ScheduledTaskFailed": "Tarea programada completada", "PluginInstalledWithName": "{0} ha sido instalado", "PluginUpdatedWithName": "{0} ha sido actualizado", "PluginUninstalledWithName": "{0} ha sido desinstalado", - "ScheduledTaskFailedWithName": "{0} fall\u00f3", - "DeviceOnlineWithName": "{0} est\u00e1 conectado", "UserOnlineFromDevice": "{0} est\u00e1 conectado desde {1}", - "DeviceOfflineWithName": "{0} se ha desconectado", "UserOfflineFromDevice": "{0} se ha desconectado de {1}", - "SubtitlesDownloadedForItem": "Subt\u00edtulos descargados para {0}", - "SubtitleDownloadFailureForItem": "Fallo en la descarga de subt\u00edtulos para {0}", "LabelRunningTimeValue": "Tiempo de ejecuci\u00f3n: {0}", "LabelIpAddressValue": "Direcci\u00f3n IP: {0}", "UserLockedOutWithName": "El usuario {0} ha sido bloqueado", "UserConfigurationUpdatedWithName": "Se ha actualizado la configuraci\u00f3n de usuario para {0}", "UserCreatedWithName": "Se ha creado el usuario {0}", - "UserPasswordChangedWithName": "Contrase\u00f1a cambiada al usuario {0}", "UserDeletedWithName": "El usuario {0} ha sido eliminado", "MessageServerConfigurationUpdated": "Se ha actualizado la configuraci\u00f3n del servidor", "MessageNamedServerConfigurationUpdatedWithValue": "Se ha actualizado la secci\u00f3n {0} de la configuraci\u00f3n del servidor", "MessageApplicationUpdated": "Se ha actualizado el servidor Emby", "UserDownloadingItemWithValues": "{0} est\u00e1 descargando {1}", - "UserStartedPlayingItemWithValues": "{0} ha empezado a reproducir {1}", - "UserStoppedPlayingItemWithValues": "{0} ha parado de reproducir {1}", - "AppDeviceValues": "Aplicaci\u00f3n: {0}, Dispositivo: {1}", "ProviderValue": "Proveedor: {0}", "HeaderRecentActivity": "Actividad reciente", "HeaderPeople": "Gente", @@ -1051,27 +936,18 @@ "LabelAirDate": "D\u00edas de emisi\u00f3n:", "LabelAirTime:": "Tiempo de emisi\u00f3n:", "LabelRuntimeMinutes": "Tiempo e ejecuci\u00f3n (minutos):", - "LabelRevenue": "ingresos ($):", - "HeaderAlternateEpisodeNumbers": "Alternar el n\u00famero de episodios", "HeaderSpecialEpisodeInfo": "Informaci\u00f3n del episodio especial", - "HeaderExternalIds": "Id's externas:", - "LabelAirsBeforeSeason": "Se emite antes de la temporada:", - "LabelAirsAfterSeason": "Se emite despu\u00e9s de la temporada:", - "LabelAirsBeforeEpisode": "Se emite antes del episodio:", "LabelDisplaySpecialsWithinSeasons": "Mostrar episodios especiales con las temporadas que han sido emitidos", - "HeaderCountries": "Paises", "HeaderGenres": "G\u00e9neros", "HeaderPlotKeywords": "Palabras clave del reparto", "HeaderStudios": "Estudios", "HeaderTags": "Etiquetas", - "MessageLeaveEmptyToInherit": "Dejar en blanco para heredar la configuraci\u00f3n de un elemento principal, o el valor predeterminado global.", "OptionNoTrailer": "Sin trailer", "ButtonPurchase": "Comprar", "OptionActor": "Actor", "OptionComposer": "Compositor", "OptionDirector": "Director", "OptionProducer": "Productor", - "OptionWriter": "Escritor", "LabelAirDays": "D\u00edas de emisi\u00f3n:", "LabelAirTime": "Tiempo de emisi\u00f3n:", "HeaderMediaInfo": "Info multimedia", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Control parental", "HeaderAccessSchedule": "Horario de acceso", "HeaderAccessScheduleHelp": "Crea un horario de acceso para limitar el acceso a determinadas horas.", - "ButtonAddSchedule": "A\u00f1adir horario", "LabelAccessDay": "D\u00eda de la semana:", "LabelAccessStart": "Hora de inicio:", "LabelAccessEnd": "Hora de finalizaci\u00f3n:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Trabajos de sincronizaci\u00f3n", "HeaderThisUserIsCurrentlyDisabled": "Este usuario est\u00e1 desactivado", "MessageReenableUser": "Mira abajo para reactivarlo", - "LabelEnableInternetMetadataForTvPrograms": "Descargar metadatos de internet para:", "OptionTVMovies": "Pel\u00edculas de TV", "HeaderUpcomingMovies": "Pr\u00f3ximas pel\u00edculas", "HeaderUpcomingSports": "Pr\u00f3ximos deportes", @@ -1225,7 +1099,7 @@ "HeaderPlayback": "Reproducci\u00f3n de contenido", "OptionAllowAudioPlaybackTranscoding": "Permitir reproducci\u00f3n de audio que requiere transcodificaci\u00f3n", "OptionAllowVideoPlaybackTranscoding": "Permitir reproducci\u00f3n de v\u00eddeo que requiere transcodificaci\u00f3n", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowVideoPlaybackRemuxing": "Permitir reproducci\u00f3n de v\u00eddeo que requiere conversi\u00f3n sin necesidad de volver a codificar", "OptionAllowMediaPlaybackTranscodingHelp": "Los usuarios recibir\u00e1n un mensaje cuando no pueden reproducir contenido en base a los ajustes.", "TabStreaming": "Transmisi\u00f3n", "LabelRemoteClientBitrateLimit": "L\u00edmite de la transmisi\u00f3n de tasa de bits por internet (Mbps):", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Listas de reproducci\u00f3n", "HeaderViewStyles": "Estilos de vistas", "TabPhotos": "Fotos", - "TabVideos": "V\u00eddeos", "HeaderWelcomeToEmby": "Bienvenido a Emby", "EmbyIntroMessage": "Con Emby puedes transmitir v\u00eddeos, m\u00fasica y fotos a smartphones, tablets y otros dispositivos desde tu servidor Emby.", "ButtonSkip": "Saltar", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columnas", "ButtonReset": "Reestablecer", "OptionEnableExternalVideoPlayers": "Activar reproductores externos", - "ButtonUnlockGuide": "Gu\u00eda de desbloqueo", "LabelEnableFullScreen": "Activar modo pantalla completa", "LabelEmail": "Correo:", "LabelUsername": "Nombre de usuario:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Resumen", "HeaderShortOverview": "Resumen corto", "HeaderType": "Tipo", - "HeaderSeverity": "Severidad", "OptionReportActivities": "Registro de actividades", "HeaderTunerDevices": "Sintonizadores", "HeaderAddDevice": "A\u00f1adir dispositivo", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repetir", "LabelEnableThisTuner": "Activar este sintonizador", "LabelEnableThisTunerHelp": "Desmarca para evitar que se importen canales desde este sintonizador.", - "HeaderUnidentified": "Sin identificar", "HeaderImagePrimary": "Principal", "HeaderImageBackdrop": "Fondo", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Configurar gu\u00eda de TV", "LabelDataProvider": "Proveedor de datos:", "OptionSendRecordingsToAutoOrganize": "Ordenar las grabaciones autom\u00e1ticamente en las carpetas existentes de series en otras bibliotecas", - "HeaderDefaultPadding": "Relleno por defecto", + "HeaderDefaultRecordingSettings": "Configuraci\u00f3n predeterminada de grabaci\u00f3n", "OptionEnableRecordingSubfolders": "Crear subcarpetas para categor\u00edas como Deportes, Ni\u00f1os, etc.", "HeaderSubtitles": "Subt\u00edtulos", "HeaderVideos": "V\u00eddeos", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Carpetas:", "LabelDisplayName": "Mostrar nombre:", "HeaderNewRecording": "Nueva grabaci\u00f3n", - "ButtonAdvanced": "Avanzado", "LabelCodecIntrosPath": "Ruta de las c\u00f3dec intros:", "LabelCodecIntrosPathHelp": "Una carpeta que contenga v\u00eddeos. Si el nombre de un archivo de intro coincide con el c\u00f3dec de v\u00eddeo, audio, perfil de audio, o etiqueta, se reproducir\u00e1 antes que la caracter\u00edstica principal.", "OptionConvertRecordingsToStreamingFormat": "Convertir grabaciones autom\u00e1ticamente a un formato amigable", "OptionConvertRecordingsToStreamingFormatHelp": "Las grabaciones se convertir\u00e1n en tiempo real a MP4 para una reproducci\u00f3n sencilla desde tus dispositivos.", "FeatureRequiresEmbyPremiere": "Esta caracter\u00edstica necesita una suscripci\u00f3n a Emby Premiere.", "FileExtension": "Extensi\u00f3n del archivo", - "OptionReplaceExistingImages": "Reemplazar im\u00e1genes existentes", "OptionPlayNextEpisodeAutomatically": "Reproducir siguiente episodio autom\u00e1ticamente", "OptionDownloadImagesInAdvance": "Descargar todas las im\u00e1genes antes", "SettingsSaved": "Configuraci\u00f3n guardada", @@ -1348,7 +1216,6 @@ "Password": "Contrase\u00f1a", "DeleteImage": "Borrar Imagen", "MessageThankYouForSupporting": "Gracias por apoyar a Emby.", - "MessagePleaseSupportProject": "Por favor da tu apoyo a Emby.", "DeleteImageConfirmation": "Est\u00e1 seguro que desea borrar esta imagen?", "FileReadCancelled": "La lectura del archivo se ha cancelado.", "FileNotFound": "Archivo no encontrado.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "El servidor necesita actualizarse. Para descargar la \u00faltima versi\u00f3n visita {0}", "LabelFromHelp": "Ejemplo: {0} (en el servidor)", "HeaderMyMedia": "Mis medios", - "LabelAutomaticUpdateLevel": "Actualizar autom\u00e1ticamente nivel:", - "LabelAutomaticUpdateLevelForPlugins": "Actualizar autom\u00e1ticamente nivel para los plugins:", "ErrorLaunchingChromecast": "Ha habido un error al lanzar chromecast. Asegurese que su dispositivo est\u00e1 conectado a su red inal\u00e1mbrica.", "MessageErrorLoadingSupporterInfo": "Ha habido un error cargando la informaci\u00f3n de Emby Premiere. Por favor int\u00e9ntalo m\u00e1s tarde.", - "MessageLinkYourSupporterKey": "Conecta tu clave de Emby Premiere hasta con {0} miembros de Emby Connect para disfrutar del acceso gratuito a las siguientes aplicaciones:", "HeaderConfirmRemoveUser": "Quitar usuario", - "MessageConfirmRemoveConnectSupporter": "\u00bfEst\u00e1s seguro de que quieres quitar los beneficios de Emby Premiere de este usuario?", "ValueTimeLimitSingleHour": "Tiempo l\u00edmite: 1 hora", "ValueTimeLimitMultiHour": "Tiempo l\u00edmite: {0} hora", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Tareas programadas", "MessageItemsAdded": "Items a\u00f1adidos", "HeaderSelectCertificatePath": "Elige la ruta del certificado", - "ConfirmMessageScheduledTaskButton": "Esta operaci\u00f3n normalmente se ejecuta autom\u00e1ticamente como una tarea programada y no se necesita hacerlo manualmente. Para configurar la tarea programada ve a:", "HeaderSupporterBenefit": "Una suscripci\u00f3n de Emby Premiere proporciona beneficios adicionales como la sincronizaci\u00f3n, plugins premium, contenido por internet de los canales, y m\u00e1s. {0}Aprende m\u00e1s{1}.", "HeaderWelcomeToProjectServerDashboard": "Bienvenido al panel de control del servidor Emby", "HeaderWelcomeToProjectWebClient": "Bienvenido a Emby", @@ -1437,7 +1299,7 @@ "HeaderWelcomeBack": "\u00a1Bienvenido de nuevo!", "ButtonTakeTheTourToSeeWhatsNew": "Da un paseo para ver que hay nuevo", "MessageNoSyncJobsFound": "No se han encontrado trabajos de sincronizaci\u00f3n. Cr\u00e9alos usando los botones de sincronizaci\u00f3n que se encuentran a trav\u00e9s de la interfaz web.", - "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "MessageDownloadsFound": "No hay descargas sin conexi\u00f3n. Haga que sus medios est\u00e9n disponibles sin conexi\u00f3n haciendo clic en Hacer disponible sin conexi\u00f3n en toda la aplicaci\u00f3n.", "HeaderSelectDevices": "Elegir dispositivos", "ButtonCancelItem": "Cancelar \u00edtem", "ButtonQueueForRetry": "En cola para reintentar", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Desactivado", "ButtonMoreInformation": "M\u00e1s informaci\u00f3n", "LabelNoUnreadNotifications": "No hay notificaciones sin leer.", - "LabelAllPlaysSentToPlayer": "Todas las reproducciones se enviar\u00e1n al reproductor seleccionado.", "MessageInvalidUser": "Usuario o contrase\u00f1a inv\u00e1lidos. Por favor int\u00e9ntalo otra vez.", "HeaderLoginFailure": "Fallo de inicio de sesi\u00f3n", "RecommendationBecauseYouLike": "Como le gusta {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Grabaci\u00f3n cancelada.", "MessageRecordingScheduled": "Grabaci\u00f3n programada.", "HeaderConfirmSeriesCancellation": "Confirmar cancelaci\u00f3n de serie", - "MessageConfirmSeriesCancellation": "\u00bfEst\u00e1 seguro que desea cancelar esta serie?", - "MessageSeriesCancelled": "Serie cancelada", "HeaderConfirmRecordingDeletion": "Confirmar borrado de la grabaci\u00f3n", "MessageRecordingSaved": "Grabaci\u00f3n guardada.", "OptionWeekend": "Fines de semana", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Navega o introduce la ruta para alojar los archivos cach\u00e9 del servidor. Tienes que tener permisos de escritura en esa carpeta.", "HeaderSelectTranscodingPathHelp": "Busque o escriba la ruta de acceso que se utilizar\u00e1 para la transcodificaci\u00f3n de archivos temporales. La carpeta debe tener permiso de escritura.", "HeaderSelectMetadataPathHelp": "Busque o escriba la ruta donde desea almacenar los metadatos. La carpeta debe tener permiso de escritura.", - "HeaderSelectChannelDownloadPath": "Seleccione la ruta de descargas de canal", - "HeaderSelectChannelDownloadPathHelp": "Navege o escriba la ruta para guardar el los archivos de cach\u00e9 de canales. La carpeta debe tener permisos de escritura.", - "LabelChapterDownloaders": "Downloaders de cap\u00edtulos:", - "LabelChapterDownloadersHelp": "Habilitar y clasificar sus descargadores de cap\u00edtulos preferidos en orden de prioridad. Descargadores de menor prioridad s\u00f3lo se utilizar\u00e1n para completar la informaci\u00f3n que falta.", "HeaderFavoriteAlbums": "\u00c1lbumes favoritos", "HeaderLatestChannelMedia": "\u00dcltimos elementos de canal", "ButtonOrganizeFile": "Organizar archivos", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "Ejecut\u00e1ndose en el puerto http {0}.", "LabelRunningOnPorts": "Ejecut\u00e1ndose en el puerto http {0}, y puerto https {1}.", "HeaderLatestFromChannel": "Lo \u00faltimo de {0}", - "HeaderCurrentSubtitles": "Subt\u00edtulos actuales", "ButtonRemoteControl": "Control remoto", "HeaderLatestTvRecordings": "\u00daltimas grabaciones", "LabelCurrentPath": "Ruta actual:", @@ -1583,12 +1437,12 @@ "MessageEnsureOpenTuner": "Aseg\u00farese que hay un sintonizador disponible.", "ButtonDashboard": "Panel de control", "ButtonReports": "Informes", - "MetadataManager": "Metadata Manager", + "MetadataManager": "Administrador de metadatos", "HeaderTime": "Duraci\u00f3n", "LabelAddedOnDate": "A\u00f1adido {0}", "ButtonStart": "Inicio", "OptionBlockOthers": "Otros", - "OptionBlockTvShows": "Tv Shows", + "OptionBlockTvShows": "Programas TV", "OptionBlockTrailers": "Trailers", "OptionBlockMusic": "M\u00fasica", "OptionBlockMovies": "Pel\u00edculas", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Borrar elemento", "ConfirmDeleteItem": "Al borrar este \u00edtem se borrar\u00e1 del sistema de archivos y de la biblioteca. \u00bfQuieres continuar?", "ConfirmDeleteItems": "Al borrar este \u00edtem se borrar\u00e1 del sistema de archivos y de la biblioteca. \u00bfQuieres continuar?", - "MessageValueNotCorrect": "El valor introducido no es correcto. Intentelo de nuevo.", "MessageItemSaved": "Elemento grabado.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Por favor acepta los t\u00e9rminos del servicio antes de continuar.", "OptionOff": "Apagado", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Falta imagen de fondo.", "MissingLogoImage": "Falta logo.", "MissingEpisode": "Falta episodio.", - "OptionScreenshots": "Capturas del pantalla", "OptionBackdrops": "Im\u00e1genes de fondo", "OptionImages": "Im\u00e1genes", "OptionKeywords": "Palabras clave", @@ -1642,10 +1494,6 @@ "OptionPeople": "Gente", "OptionProductionLocations": "Localizaciones de producci\u00f3n", "OptionBirthLocation": "Lugar de nacimiento", - "LabelAllChannels": "Todos los canales", - "AttributeNew": "Nuevo", - "AttributePremiere": "Premiere", - "AttributeLive": "Directo", "HeaderChangeFolderType": "Cambiar tipo de contenido", "HeaderChangeFolderTypeHelp": "Para cambiar el tipo de contenido por favor elimina y reconstruye la biblioteca con el nuevo tipo.", "HeaderAlert": "Alerta", @@ -1663,24 +1511,22 @@ "ButtonQuality": "Calidad", "HeaderNotifications": "Notificaciones", "HeaderSelectPlayer": "Elegir reproductor", - "MessageInternetExplorerWebm": "Para tener mejores resultados con Internet Explorer instala el plugin WebM playback.", "HeaderVideoError": "Error de v\u00eddeo", "ButtonViewSeriesRecording": "Ver grabaciones de series", - "HeaderSpecials": "Specials", + "HeaderSpecials": "Especiales", "HeaderTrailers": "Trailers", - "HeaderResolution": "Resolution", + "HeaderResolution": "Resoluci\u00f3n", "HeaderRuntime": "Runtime", - "HeaderParentalRating": "Parental Rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", + "HeaderParentalRating": "Calificaci\u00f3n parental", + "HeaderReleaseDate": "Fecha de lanzamiento", "HeaderSeries": "Series:", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year:", + "HeaderSeason": "Temporada", + "HeaderSeasonNumber": "Temporada numero", + "HeaderNetwork": "Red", + "HeaderYear": "A\u00f1o:", "HeaderGameSystem": "Sistema de juego", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", + "HeaderEmbeddedImage": "Imagen", + "HeaderTrack": "Pista", "OptionCollections": "Colecciones", "OptionSeries": "Series", "OptionSeasons": "Temporadas", @@ -1690,7 +1536,7 @@ "OptionMusicAlbums": "\u00c1lbumes de m\u00fasica", "OptionMusicVideos": "V\u00eddeos de m\u00fasica", "OptionSongs": "Canciones", - "OptionHomeVideos": "V\u00eddeos caseros", + "OptionHomeVideos": "V\u00eddeos caseros y fotos", "OptionBooks": "Libros", "ButtonUp": "Arriba", "ButtonDown": "Abajo", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Quitar ubicaci\u00f3n de medios", "MessageConfirmRemoveMediaLocation": "\u00bfEst\u00e1s seguro que quieres quitar esta ubicaci\u00f3n?", "LabelNewName": "Nuevo nombre:", - "HeaderAddMediaFolder": "A\u00f1adir carpeta de medios", - "HeaderAddMediaFolderHelp": "Nombre (Pel\u00edculas, M\u00fasica, Series, etc):", "HeaderRemoveMediaFolder": "Quitar carpeta de medios", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Se eliminar\u00e1n las siguientes ubicaciones de medios de tu biblioteca de Emby:", "MessageAreYouSureYouWishToRemoveMediaFolder": "\u00bfEst\u00e1s seguro de que quieres quitar esta carpeta de medios?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Cambiar el tipo de contenido", "HeaderMediaLocations": "Ubicaciones de medios", "LabelContentTypeValue": "Tipo de contenido: {0}", - "LabelPathSubstitutionHelp": "Opcional: La sustituci\u00f3n de ruta puede asignar rutas de servidor a recursos compartidos de red que los clientes puedan tener acceso para la reproducci\u00f3n directa.", "FolderTypeUnset": "Sin especificar (contenido mixto)", "BirthPlaceValue": "Lugar de nacimiento: {0}", "DeathDateValue": "Muri\u00f3: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Sitio web", "ValueSeriesYearToPresent": "{0}-Presente", "ValueAwards": "Premios: {0}", - "ValueBudget": "Presupuesto: {0}", - "ValueRevenue": "Ingresos: {0}", "ValuePremiered": "Estrenada {0}", "ValuePremieres": "Estrenos {0}", "ValueStudio": "Estudio: {0}", @@ -1800,7 +1641,7 @@ "MediaInfoLongitude": "Longitud", "MediaInfoShutterSpeed": "Velocidad del obturador", "MediaInfoSoftware": "Software", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "M\u00e1s como \u00e9ste", "HeaderMovies": "Pel\u00edculas", "HeaderAlbums": "Albums", "HeaderGames": "Juegos", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Cuadros de referencia", "TabExpert": "Experto", "HeaderSelectCustomIntrosPath": "Elegir ruta de intros personalizadas", - "HeaderRateAndReview": "Valora y comenta", "HeaderThankYou": "Gracias", - "MessageThankYouForYourReview": "Gracias por tu comentario", - "LabelYourRating": "Tu valoraci\u00f3n:", "LabelFullReview": "Comentario completo:", - "LabelShortRatingDescription": "Resumen corto de la valoraci\u00f3n:", - "OptionIRecommendThisItem": "Recomiendo este \u00edtem", "ReleaseYearValue": "A\u00f1o de estreno: {0}", "OriginalAirDateValue": "Fecha de emisi\u00f3n original: {0}", "WebClientTourContent": "Mira tus medios a\u00f1adidos recientemente, pr\u00f3ximos episodios, y mucho m\u00e1s. Los c\u00edrculos verdes indican el n\u00famero de elementos sin reproducir que tiene.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Administrar f\u00e1cilmente operaciones de larga duraci\u00f3n con las tareas programadas. Decide cuando se ejecutan y con que frecuencia.", "DashboardTourMobile": "El panel de control del servidor funciona muy bien en smartphones y tablets. Administra tu servidor desde la palma de tu mano en cualquier momento y lugar.", "DashboardTourSync": "Sincroniza tus medios personales en tus dispositivos para verlos sin conexi\u00f3n.", - "MessageRefreshQueued": "Actualiza la cola", "TabExtras": "Extras", "HeaderUploadImage": "Subir imagen", "DeviceLastUsedByUserName": "Usado por \u00faltima vez por {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sincronizar medios", "HeaderCancelSyncJob": "Cancelar sincronizaci\u00f3n", "CancelSyncJobConfirmation": "Cancelar el trabajo de sincronizaci\u00f3n eliminar\u00e1 los medios sincronizados del dispositivo durante el siguiente proceso de sincronizaci\u00f3n. \u00bfEst\u00e1s seguro de que quieres continuar?", - "MessagePleaseSelectDeviceToSyncTo": "Por favor selecciona el dispositivo donde quieres sincronizar.", - "MessageSyncJobCreated": "Trabajo de sincronizaci\u00f3n creado.", "LabelQuality": "Calidad:", - "OptionAutomaticallySyncNewContent": "Sincronizar autom\u00e1ticamente contenido nuevo", - "OptionAutomaticallySyncNewContentHelp": "El contenido nuevo a\u00f1adido se sincronizar\u00e1 autom\u00e1ticamente en el dispositivo.", "MessageBookPluginRequired": "Necesita de la instalaci\u00f3n del plugin Bookshelf", "MessageGamePluginRequired": "Necesita de la instalaci\u00f3n del plugin GameBrowser", "MessageUnsetContentHelp": "El contenido se mostrar\u00e1 como carpetas planas. Para tener mejores resultados utiliza el gestor de metadatos para establecer los tipos de contenidos de las sub-carpetas.", @@ -1941,19 +1772,12 @@ "TabScenes": "Escenas", "HeaderUnlockApp": "Desbloquear App", "HeaderUnlockSync": "Desbloquear sincronizaci\u00f3n Emby", - "MessageUnlockAppWithPurchaseOrSupporter": "Desbloquea esta caracter\u00edstica con una peque\u00f1a compra una vez o con una suscripci\u00f3n a Emby Premiere.", - "MessageUnlockAppWithSupporter": "Desbloquea esta caracter\u00edstica con una suscripci\u00f3n a Emby Premiere.", - "MessageToValidateSupporter": "Si tienes una suscripci\u00f3n a Emby Premiere aseg\u00farate de que la has configurado en el Panel de Control de tu servidor Emby en Ayuda -> Emby Premiere.", "MessagePaymentServicesUnavailable": "Los servicios de pago no est\u00e1n disponibles ahora. Por favor int\u00e9ntalo m\u00e1s tarde.", - "ButtonUnlockWithPurchase": "Desbloquear con una compra", - "ButtonUnlockPrice": "Desbloquear {0}", - "MessageLiveTvGuideRequiresUnlock": "La gu\u00eda de la TV en directo est\u00e1 limitada a {0} canales. Haz clic en el bot\u00f3n de desbloquear para ver como disfrutar de la experiencia completa.", "OptionEnableFullscreen": "Activar pantalla completa", "ButtonServer": "Servidor", "HeaderLibrary": "Biblioteca", "HeaderMedia": "Medios", - "HeaderSaySomethingLike": "Di algo como...", - "NoResultsFound": "No results found.", + "NoResultsFound": "No se han encontrado resultados.", "ButtonManageServer": "Administrar servidor", "ButtonPreferences": "Preferencias", "ButtonViewArtist": "Ver artista", @@ -1963,7 +1787,7 @@ "ErrorMessageUsernameInUse": "El usuario ya est\u00e1 en uso. Por favor elige otro nombre e int\u00e9ntalo de nuevo.", "ErrorMessageEmailInUse": "La direcci\u00f3n de correo ya est\u00e1 en uso. Por favor introduce una nueva direcci\u00f3n de correo e int\u00e9ntalo de nuevo, o utiliza la caracter\u00edstica de restablecer contrase\u00f1a.", "MessageThankYouForConnectSignUp": "Gracias por iniciar sesi\u00f3n con Emby Connect. Se te ha enviado un correo con las instrucciones para confirmar tu nueva cuenta. Por favor confirma la cuenta y vuelve aqu\u00ed para iniciar sesi\u00f3n.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "MessageThankYouForConnectSignUpNoValidation": "Gracias por inscribirse en Emby Connect! Ahora se le pedir\u00e1 que inicie sesi\u00f3n con su informaci\u00f3n de Emby Connect.", "ButtonShare": "Compartir", "HeaderConfirm": "Confirmar", "MessageConfirmDeleteTunerDevice": "\u00bfEst\u00e1s seguro de que quieres borrar este dispositivo?", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Crear una cuenta en {0}", "ErrorPleaseSelectLineup": "Por favor selecciona una alineaci\u00f3n e int\u00e9ntalo otra vez. Si no hay alineaciones disponibles, revisa que tu nombre de usuario, contrase\u00f1a y c\u00f3digo postal son correctos.", "HeaderTryEmbyPremiere": "Prueba Emby Premiere", - "ButtonBecomeSupporter": "Consigue Emby Premiere", - "ButtonClosePlayVideo": "Cerrar y reproducir mis medios", - "MessageDidYouKnowCinemaMode": "\u00bfSab\u00edas que con Emby Premiere puedes mejorar tu experiencia con caracter\u00edsticas como el Modo Cine?", - "MessageDidYouKnowCinemaMode2": "El Modo Cine te da la verdadera experiencia de cine con tr\u00e1ilers e intros personalizadas antes de la funci\u00f3n principal.", "OptionEnableDisplayMirroring": "Activar mirroring de la pantalla", "HeaderSyncRequiresSupporterMembership": "La sincronizaci\u00f3n necesita de una suscripci\u00f3n a Emby Premiere", "HeaderSyncRequiresSupporterMembershipAppVersion": "La sincronizaci\u00f3n requiere conectarse a un servidor que tenga una suscripci\u00f3n a Emby Premiere.", "ErrorValidatingSupporterInfo": "Ha habido un error al validar tus datos de Emby Premiere. Por favor int\u00e9ntalo de nuevo m\u00e1s tarde.", "LabelLocalSyncStatusValue": "Estado: {0}", "MessageSyncStarted": "Sincronizaci\u00f3n iniciada", - "NoSlideshowContentFound": "No se han encontrado im\u00e1genes de diapositivas", - "OptionPhotoSlideshow": "Diapositivas con fotos", "OptionBackdropSlideshow": "Presentaci\u00f3n de fondos", "HeaderTopPlugins": "Mejores Plugins", "ButtonOther": "Otro", @@ -1996,58 +1814,38 @@ "ButtonMenu": "Men\u00fa", "ForAdditionalLiveTvOptions": "Para tener proveedores adicionales de TV en directo, haz clic en en la pesta\u00f1a Servicios Externos para ver las opciones disponibles.", "ButtonGuide": "Gu\u00eda", - "ButtonRecordedTv": "TV grabada", "ConfirmEndPlayerSession": "\u00bfQuieres cerrar Emby en el dispositivo?", "ButtonYes": "Si", "AddUser": "Agregar usuario", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Recuperar compra", - "AlreadyPaid": "\u00bfYa has pagado?", - "AlreadyPaidHelp1": "Si ya has pagado por instalar una versi\u00f3n anterior de Media Browser para Android no necesitas pagar otra vez para poder activar esta aplicaci\u00f3n. Haz clic en OK para mandarnos un mensaje a {0} y te la activaremos.", - "AlreadyPaidHelp2": "\u00bfYa tienes Emby Premiere? Cancela este di\u00e1logo, configura Emby Premiere en el Panel de Control de tu servidor Emby en Ayuda -> Emby Premiere, y se te desbloquear\u00e1 autom\u00e1ticamente.", "ButtonNowPlaying": "Reproduciendo ahora", "HeaderLatestMovies": "\u00daltimas pel\u00edculas", - "EmbyPremiereMonthly": "Emby Premiere mensual", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere mensual {0}", "HeaderEmailAddress": "Direcci\u00f3n de correo", - "TextPleaseEnterYourEmailAddressForSubscription": "Por favor introduce tu direcci\u00f3n de correo", "LoginDisclaimer": "Emby est\u00e1 dise\u00f1ado para ayudarte a gestionar tu biblioteca de medios personal, como fotos y v\u00eddeos caseros. Por favor mira nuestros t\u00e9rminos de uso, el uso de cualquier software de Emby conlleva aceptar estos t\u00e9rminos.", "TermsOfUse": "T\u00e9rminos de uso", "NumLocationsValue": "{0} carpetas", "ButtonAddMediaLibrary": "A\u00f1adir biblioteca de medios", "ButtonManageFolders": "Gestionar carpetas", - "MessageTryMicrosoftEdge": "Para una mejor experiencia en Windows 10 prueba el nuevo navegador Microsoft Edge.", - "MessageTryModernBrowser": "Para una mejor experiencia en Windows prueba un navegador actual como Google Chrome, Firefox u Opera.", "ErrorAddingListingsToSchedulesDirect": "Ha habido un error a\u00f1adiendo la alineaci\u00f3n a tu cuenta de Schedules Direct. Schedules Direct solo permite un determinado n\u00famero de alineaciones por cuenta. Necesitar\u00e1s iniciar sesi\u00f3n en la web de Schedules Direct y quitar otras listas de tu cuenta antes de proceder.", "PleaseAddAtLeastOneFolder": "Por favor a\u00f1ade al menos una carpeta a esta biblioteca haciendo clic en el bot\u00f3n A\u00f1adir.", "ErrorAddingMediaPathToVirtualFolder": "Ha habido un error a\u00f1adiendo la ruta de los medios. Por favor aseg\u00farate de que la ruta es v\u00e1lida y que el proceso del servidor Emby tiene acceso a esa ubicaci\u00f3n.", "ErrorRemovingEmbyConnectAccount": "Ha habido un error quitando la cuenta de Emby Connect. Por favor aseg\u00farate de que tienes una conexi\u00f3n a internet activa e int\u00e9ntalo otra vez.", "ErrorAddingEmbyConnectAccount1": "Ha habido un error a\u00f1adiendo la cuenta de Emby Connect. \u00bfTe has creado una cuenta de Emby primero? Reg\u00edstrate en {0}.", "ErrorAddingEmbyConnectAccount2": "Por favor aseg\u00farate de que la cuenta de Emby ha sido activada siguiendo las instrucciones del correo que se te envi\u00f3 despu\u00e9s de crear tu cuenta. Si no has recibido el correo, por favor m\u00e1ndanos un correo a {0} desde la direcci\u00f3n que has usado para crearte la cuenta de Emby.", - "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "ErrorAddingEmbyConnectAccount3": "La cuenta Emby ya est\u00e1 vinculada a un usuario local existente. Una cuenta Emby s\u00f3lo puede enlazarse a un usuario local a la vez.", "HeaderFavoriteArtists": "Artistas favoritos", "HeaderFavoriteSongs": "Canciones favoritas", "HeaderConfirmPluginInstallation": "Confirmar la instalaci\u00f3n del Plugin", "PleaseConfirmPluginInstallation": "Por favor haz clic en OK para confirmar que has le\u00eddo lo de arriba y quieres proceder con la instalaci\u00f3n del plugin.", "MessagePluginInstallDisclaimer": "Los plugins creados por los miembros de la comunidad de Emby son una buena forma de mejorar tu experiencia Emby con caracter\u00edsticas adicionales y otros beneficios. Antes de instalarlos, por favor considera los efectos que pueden tener en tu servidor Emby, como escaneos de la biblioteca m\u00e1s largos, procesado en segundo plano adicional y una reducci\u00f3n de la estabilidad del sistema.", - "ButtonPlayOneMinute": "Reproducir un minuto", - "ThankYouForTryingEnjoyOneMinute": "Disfruta de un minuto de reproducci\u00f3n. Gracias por probar Emby.", - "HeaderTryPlayback": "Reproducci\u00f3n de prueba", - "HeaderBenefitsEmbyPremiere": "Beneficios de Emby Premiere", - "MobileSyncFeatureDescription": "Sincroniza tus medios en tu smartphone o tablet para tener un f\u00e1cil acceso sin conexi\u00f3n.", - "CoverArtFeatureDescription": "Cover Art crea car\u00e1tulas divertidas y otros tratamientos que te ayudan a personalizar las im\u00e1genes de tus medios.", "HeaderMobileSync": "Sincronizaci\u00f3n m\u00f3vil", "HeaderCloudSync": "Sincronizaci\u00f3n en la nube", - "CloudSyncFeatureDescription": "Sincroniza tus medios en la nube para una copia de seguridad, archivado y conversi\u00f3n f\u00e1cil.", "HeaderFreeApps": "Apps de Emby gratuitas", - "FreeAppsFeatureDescription": "Disfruta del acceso libre para elegir las apps de Emby para tus dipositivos.", - "CinemaModeFeatureDescription": "El Modo Cine te da la verdadera experiencia de cine con tr\u00e1ilers e intros personalizadas antes de la funci\u00f3n principal.", "CoverArt": "Cover Art", "ButtonOff": "Apagado", "TitleHardwareAcceleration": "Aceleraci\u00f3n por Hardware", "HardwareAccelerationWarning": "Activar la aceleraci\u00f3n por hardware puede producir inestabilidades en algunos ambientes. Aseg\u00farate de que tu sistema operativo y tus controladores de v\u00eddeo est\u00e1n actualizados. Si tienes dificultades para reproducir los v\u00eddeos despu\u00e9s de activar esto, tendr\u00e1s que volver a poner este ajuste en Auto.", "HeaderSelectCodecIntrosPath": "Seleccionar ruta de los c\u00f3decs de las intros", - "ButtonAddMissingData": "A\u00f1adir s\u00f3lo datos faltantes", "ValueExample": "13:00", "OptionEnableAnonymousUsageReporting": "Activar env\u00edo de datos an\u00f3nimo", "OptionEnableAnonymousUsageReportingHelp": "Permite a Emby recoger datos an\u00f3nimos como los plugins instalados, las versiones de tus aplicaciones Emby, etc. Esta informaci\u00f3n s\u00f3lo se usar\u00e1 para mejorar el software.", @@ -2057,90 +1855,95 @@ "LabelOptionalM3uUrl": "url del M3U (opcional):", "LabelOptionalM3uUrlHelp": "Algunos dispositivos soportal el listado M3U de los canales.", "TabResumeSettings": "Ajustes de reanudaci\u00f3n", - "HowDidYouPay": "\u00bfC\u00f3mo has pagado?", - "IHaveEmbyPremiere": "Tengo Emby Premiere", - "IPurchasedThisApp": "He comprado esta aplicaci\u00f3n", "DrmChannelsNotImported": "Los canales con DRM no se importar\u00e1n", "LabelAllowHWTranscoding": "Permitir transcodificaci\u00f3n por hardware", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Yesterday": "Yesterday", - "DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", + "AllowHWTranscodingHelp": "Si est\u00e1 habilitado, permita que el sintonizador transcodifique secuencias sobre la marcha. Esto puede ayudar a reducir la transcodificaci\u00f3n requerida por Emby Server.", + "OptionRequirePerfectSubtitleMatch": "S\u00f3lo descargar subt\u00edtulos que son una combinaci\u00f3n perfecta para mis archivos de v\u00eddeo", + "ErrorAddingGuestAccount1": "Se ha producido un error al agregar la cuenta Emby Connect. \u00bfHa creado su invitado una cuenta de Emby? Pueden registrarse en {0}.", + "ErrorAddingGuestAccount2": "Aseg\u00farese de que su invitado ha completado la activaci\u00f3n siguiendo las instrucciones del correo electr\u00f3nico enviado despu\u00e9s de crear la cuenta. Si no recibieron este correo electr\u00f3nico, env\u00ede un correo electr\u00f3nico a {0} e incluya su direcci\u00f3n de correo electr\u00f3nico, as\u00ed como la suya.", + "GuestUserNotFound": "Usuario no encontrado. Aseg\u00farese de que el nombre es correcto y vuelva a intentarlo o intente ingresar su direcci\u00f3n de correo electr\u00f3nico.", + "Yesterday": "Ayer", + "DownloadImagesInAdvanceWarning": "Al descargar todas las im\u00e1genes con antelaci\u00f3n, se obtendr\u00e1n tiempos m\u00e1s largos de exploraci\u00f3n de la biblioteca.", + "MetadataSettingChangeHelp": "El cambio de la configuraci\u00f3n de metadatos afectar\u00e1 al nuevo contenido que se a\u00f1ada en el futuro. Para actualizar el contenido existente, abra la pantalla de detalles y haga clic en el bot\u00f3n Actualizar o realice actualizaciones masivas utilizando el administrador de metadatos.", + "OptionConvertRecordingPreserveAudio": "Conservar el audio original al convertir grabaciones (cuando sea posible)", + "OptionConvertRecordingPreserveAudioHelp": "Esto proporcionar\u00e1 un mejor sonido, pero puede requerir transcodificaci\u00f3n durante la reproducci\u00f3n en algunos dispositivos.", + "OptionConvertRecordingPreserveVideo": "Conservar el video original al convertir grabaciones", + "OptionConvertRecordingPreserveVideoHelp": "Esto puede proporcionar una mejor calidad de video pero requerir\u00e1 transcodificaci\u00f3n durante la reproducci\u00f3n en algunos dispositivos.", + "AddItemToCollectionHelp": "Agregue elementos a las colecciones buscando en ellos y utilizando sus men\u00fas con el bot\u00f3n derecho del rat\u00f3n o pulsando en los men\u00fas para agregarlos a una colecci\u00f3n.", "HeaderHealthMonitor": "Health Monitor", - "HealthMonitorNoAlerts": "There are no active alerts.", - "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "VisualLoginFormHelp": "Select a user or sign in manually", - "LabelSportsCategories": "Sports categories:", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "LabelNewsCategories": "News categories:", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "LabelKidsCategories": "Children's categories:", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "LabelMovieCategories": "Movie categories:", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", - "TitleHostingSettings": "Hosting Settings", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "MapChannels": "Map Channels", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegVersion": "FFmpeg version:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "DownloadFFmpeg": "Download FFmpeg", - "FFmpegSuggestedDownload": "Suggested download: {0}", - "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", - "OptionUseSystemInstalledVersion": "Use system installed version", - "OptionUseMyCustomVersion": "Use a custom version", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", + "HealthMonitorNoAlerts": "No hay alertas activas.", + "RecordingPathChangeMessage": "Cambiar la carpeta de grabaci\u00f3n no migrar\u00e1 las grabaciones existentes de la ubicaci\u00f3n antigua a la nueva. Tendr\u00e1 que moverlos manualmente si lo desea.", + "VisualLoginFormHelp": "Seleccione un usuario o inicie sesi\u00f3n manualmente", + "LabelSportsCategories": "Categor\u00edas de deportes:", + "XmlTvSportsCategoriesHelp": "Los programas con estas categor\u00edas se mostrar\u00e1n como programas deportivos. Separe el m\u00faltiplo con '|'.", + "LabelNewsCategories": "Categor\u00edas de noticias:", + "XmlTvNewsCategoriesHelp": "Los programas con estas categor\u00edas se mostrar\u00e1n como programas de noticias. Separe el m\u00faltiplo con '|'.", + "LabelKidsCategories": "Categor\u00edas de ni\u00f1os:", + "XmlTvKidsCategoriesHelp": "Los programas con estas categor\u00edas se mostrar\u00e1n como programas para ni\u00f1os. Separe el m\u00faltiplo con '|'.", + "LabelMovieCategories": "Categor\u00edas de pel\u00edculas:", + "XmlTvMovieCategoriesHelp": "Los programas con estas categor\u00edas se mostrar\u00e1n como pel\u00edculas. Separe el m\u00faltiplo con '|'.", + "XmlTvPathHelp": "Una ruta de acceso a un archivo xml tv. Emby leer\u00e1 este archivo y comprobar\u00e1 peri\u00f3dicamente si hay actualizaciones. Usted es responsable de crear y actualizar el archivo.", + "LabelBindToLocalNetworkAddress": "Vincular a la direcci\u00f3n de red local:", + "LabelBindToLocalNetworkAddressHelp": "Opcional. Anule la direcci\u00f3n IP local para enlazar el servidor http. Si se deja vac\u00edo, el servidor se enlazar\u00e1 a todas las direcciones disponibles. Para cambiar este valor, debe reiniciar Emby Server.", + "TitleHostingSettings": "Configuraci\u00f3n de Hosting", + "SettingsWarning": "Cambiar estos valores puede causar inestabilidad o fallos de conectividad. Si experimenta alg\u00fan problema, le recomendamos que cambie de nuevo a su valor predeterminado.", + "MapChannels": "Asignar canales", + "LabelffmpegPath": "FFmpeg ruta:", + "LabelffmpegVersion": "FFmpeg versi\u00f3n:", + "LabelffmpegPathHelp": "a ruta de acceso al archivo de la aplicaci\u00f3n ffmpeg o la carpeta que contiene ffmpeg.", + "SetupFFmpeg": "FFmpeg configuraci\u00f3n", + "SetupFFmpegHelp": "Emby puede requerir una biblioteca o aplicaci\u00f3n para convertir ciertos tipos de medios. Hay muchas aplicaciones disponibles, sin embargo, Emby ha sido probado para trabajar con ffmpeg. Emby no est\u00e1 en ning\u00fan modo afiliado a ffmpeg, su propiedad, c\u00f3digo o distribuci\u00f3n.", + "EnterFFmpegLocation": "Introduzca la ruta FFmpeg", + "DownloadFFmpeg": "Descargar FFmpeg", + "FFmpegSuggestedDownload": "Descarga sugerida: {0}", + "UnzipFFmpegFile": "Descomprima el archivo descargado en una carpeta de su elecci\u00f3n.", + "OptionUseSystemInstalledVersion": "Usar la versi\u00f3n instalada del sistema", + "OptionUseMyCustomVersion": "Utilizar una versi\u00f3n personalizada", + "FFmpegSavePathNotFound": "No podemos localizar FFmpeg usando la ruta que has ingresado. FFprobe tambi\u00e9n es necesario y debe existir en la misma carpeta. Estos componentes normalmente se agrupan juntos en la misma descarga. Compruebe la ruta y vuelva a intentarlo.", "XmlTvPremiere": "Por defecto Emby importar\u00e1 {0} horas de programaci\u00f3n. Importar una cantidad ilimitada necesita una suscripci\u00f3n a Emby Premiere.", - "MoreFromValue": "More from {0}", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "MakeAvailableOffline": "Make available offline", - "ConfirmRemoveDownload": "Remove download?", - "RemoveDownload": "Remove download", - "SyncToOtherDevices": "Sync to other devices", - "ManageOfflineDownloads": "Manage offline downloads", - "MessageDownloadScheduled": "Download scheduled", - "RememberMe": "Remember me", - "HeaderOfflineSync": "Offline Sync", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", - "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", - "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", + "MoreFromValue": "M\u00e1s de {0}", + "OptionSaveMetadataAsHiddenHelp": "Cambiar esto se aplicar\u00e1 a los nuevos metadatos guardados en el futuro. Los archivos de metadatos existentes se actualizar\u00e1n la pr\u00f3xima vez que sean guardados por Emby Server.", + "EnablePhotos": "Habilitar fotos", + "EnablePhotosHelp": "Las fotos se detectar\u00e1n y se mostrar\u00e1n junto con otros archivos multimedia.", + "MakeAvailableOffline": "Hacer disponible sin conexi\u00f3n", + "ConfirmRemoveDownload": "\u00bfQuieres eliminar la descarga?", + "RemoveDownload": "Eliminar descarga", + "SyncToOtherDevices": "Sincronizar con otros dispositivos", + "ManageOfflineDownloads": "Administrar descargas sin conexi\u00f3n", + "MessageDownloadScheduled": "Descargar programado", + "RememberMe": "Recu\u00e9rdame", + "HeaderOfflineSync": "Sincronizaci\u00f3n sin conexi\u00f3n", + "LabelMaxAudioFileBitrate": "Velocidad m\u00e1xima del archivo de audio:", + "LabelMaxAudioFileBitrateHelp": "Los archivos de audio con una velocidad de bits m\u00e1s alta ser\u00e1n convertidos por Emby Server. Seleccione un valor superior para una mejor calidad o un valor inferior para conservar el espacio de almacenamiento local.", + "LabelVaapiDevice": "VA API Dispositivo:", + "LabelVaapiDeviceHelp": "Este es el nodo de procesamiento que se utiliza para la aceleraci\u00f3n de hardware.", + "HowToConnectFromEmbyApps": "C\u00f3mo conectarse a las aplicaciones de Emby", + "MessageFolderRipPlaybackExperimental": "Soporte para la reproducci\u00f3n de la carpeta rips y ISOs en esta aplicaci\u00f3n es s\u00f3lo expirimental. Para obtener mejores resultados, pruebe una aplicaci\u00f3n Emby que admita estos formatos de forma nativa o utilice archivos de v\u00eddeo sin formato.", + "OptionExtractChapterImage": "Habilitar la extracci\u00f3n de im\u00e1genes de cap\u00edtulo", + "Downloads": "Descargas", "LabelEnableDebugLogging": "Habilitar entrada de debug", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", - "HeaderForKids": "For Kids", - "HeaderRecordingGroups": "Recording Groups", - "LabelConvertRecordingsTo": "Convert recordings to:", - "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", + "OptionEnableExternalContentInSuggestions": "Habilitar contenido externo en sugerencias", + "OptionEnableExternalContentInSuggestionsHelp": "Permita que los trailers de Internet y los programas de TV en vivo se incluyan en el contenido sugerido.", + "LabelH264EncodingPreset": "Configuraci\u00f3n de codificaci\u00f3n H264:", + "H264EncodingPresetHelp": "Elija un valor m\u00e1s r\u00e1pido para mejorar el rendimiento o un valor m\u00e1s lento para mejorar la calidad.", + "LabelH264Crf": "H264 que codifica CRF:", + "H264CrfHelp": "El factor de velocidad constante (CRF) es el ajuste de calidad predeterminado para el codificador x264. Puede establecer los valores entre 0 y 51, donde valores m\u00e1s bajos resultar\u00edan en una mejor calidad (a expensas de tama\u00f1os de archivo m\u00e1s altos). Los valores sanos est\u00e1n entre 18 y 28. El valor predeterminado para x264 es 23, por lo que puede utilizar esto como punto de partida.", + "Sports": "Deportes", + "HeaderForKids": "Para ni\u00f1os", + "HeaderRecordingGroups": "Grupos de grabaci\u00f3n", + "LabelConvertRecordingsTo": "Convertir grabaciones en:", + "HeaderUpcomingOnTV": "Pr\u00f3ximos en la TV", + "LabelOptionalNetworkPath": "(Opcional) Carpeta de red compartida:", + "LabelOptionalNetworkPathHelp": "Si esta carpeta se comparte en la red, el suministro de la ruta de acceso compartido de red puede permitir a las aplicaciones Emby de otros dispositivos acceder directamente a los archivos multimedia.", "ButtonPlayExternalPlayer": "Reproducir con un reproductor externo", - "WillRecord": "Will record", - "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "NotScheduledToRecord": "No est\u00e1 programado para grabar", + "SynologyUpdateInstructions": "Inicie sesi\u00f3n en DSM y vaya al Centro de paquetes para actualizar.", + "LatestFromLibrary": "\u00daltimas {0}", + "LabelMoviePrefix": "Prefijo de pel\u00edcula:", + "LabelMoviePrefixHelp": "Si se aplica un prefijo a t\u00edtulos de pel\u00edculas, introd\u00fazcalo aqu\u00ed para que Emby pueda manejarlo correctamente.", + "HeaderRecordingPostProcessing": "Grabaci\u00f3n Post Procesamiento", + "LabelPostProcessorArguments": "Argumentos de l\u00ednea de comandos posprocesador:", + "LabelPostProcessorArgumentsHelp": "Utilice {path} como ruta del archivo de grabaci\u00f3n.", + "LabelPostProcessor": "Aplicaci\u00f3n de post-procesamiento:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/fi.json b/dashboard-ui/strings/fi.json index 4cb7a79d03..67ca3c8a27 100644 --- a/dashboard-ui/strings/fi.json +++ b/dashboard-ui/strings/fi.json @@ -1,8 +1,6 @@ { - "LabelExit": "Poistu", - "LabelApiDocumentation": "Api Documentation", - "LabelBrowseLibrary": "Selaa Kirjastoa", - "LabelConfigureServer": "Configure Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Edellinen", "LabelFinish": "Valmis", "LabelNext": "Seuraava", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Sinun ensimm\u00e4inen nimi:", "MoreUsersCanBeAddedLater": "K\u00e4ytt\u00e4ji\u00e4 voi lis\u00e4t\u00e4 lis\u00e4\u00e4 my\u00f6hemmin Dashboardista", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "Windows Service on asennettu.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Muuta asetuksia", - "LabelEnableAutomaticPortMapping": "Ota automaattinen porttien mapping k\u00e4ytt\u00f6\u00f6n", - "LabelEnableAutomaticPortMappingHelp": "UPnP sallii automaattisen reitittimen asetusten muuttamisen. T\u00e4m\u00e4 ei mahdollisesti toimi joidenkin retititin mallien kanssa.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organize", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Lopeta", "ButtonExit": "Exit", "ButtonNew": "New", + "OptionDev": "Kehittely (Ei vakaa)", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Lis\u00e4\u00e4 media kansio", "LabelFolderType": "Kansion tyyppi:", "LabelCountry": "Maa:", "LabelLanguage": "Kieli:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Kuvamateriaalin ja metadatan tallentaminen suoraan kansioihin miss\u00e4 niit\u00e4 on helppo muuttaa.", "LabelDownloadInternetMetadata": "Lataa kuvamateriaali ja metadata internetist\u00e4", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Asetukset", "TabPassword": "Salasana", "TabLibraryAccess": "Kirjaston P\u00e4\u00e4sy", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "N\u00e4yt\u00e4 puuttuvat jaksot tuotantokausissa", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "N\u00e4yt\u00e4 julkaisemattomat jaksot tuotantokausissa", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Videon Toistamisen Asetukset", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "\u00c4\u00e4nen ensisijainen kieli:", "LabelSubtitleLanguagePreference": "Tekstityksien ensisijainen kieli:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Episodes", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Virallinen Julkaisu", - "OptionBeta": "Beta", - "OptionDev": "Kehittely (Ei vakaa)", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Asetukset tallennettu.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "K\u00e4ytt\u00e4j\u00e4t", "Delete": "Poista", "Password": "Salasana", "DeleteImage": "Poista Kuva", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Oletko varma ett\u00e4 haluat poistaa t\u00e4m\u00e4n kuvan?", "FileReadCancelled": "Tiedoston luku on peruutettu.", "FileNotFound": "Tiedostoa ei l\u00f6ydy.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Lis\u00e4\u00e4 K\u00e4ytt\u00e4j\u00e4", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/fr-CA.json b/dashboard-ui/strings/fr-CA.json index 043227d6f2..ab04dbf0e1 100644 --- a/dashboard-ui/strings/fr-CA.json +++ b/dashboard-ui/strings/fr-CA.json @@ -1,8 +1,6 @@ { - "LabelExit": "Quitter", - "LabelApiDocumentation": "Documentation de l'API", - "LabelBrowseLibrary": "Parcourir la biblioth\u00e8que", - "LabelConfigureServer": "Configurer Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Pr\u00e9c\u00e9dent", "LabelFinish": "Terminer", "LabelNext": "Suivant", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Votre pr\u00e9nom:", "MoreUsersCanBeAddedLater": "D'autres utilisateurs pourront \u00eatre ajout\u00e9s ult\u00e9rieurement \u00e0 partir du tableau de bord.", "UserProfilesIntro": "Emby supporte nativement les profils utilisateurs, les pr\u00e9f\u00e9rences d'affichage, la sauvegarde de l'\u00e9tat de lecture et le contr\u00f4le parental.", - "LabelWindowsService": "Service Windows", - "AWindowsServiceHasBeenInstalled": "Un service Windows a \u00e9t\u00e9 install\u00e9.", - "WindowsServiceIntro1": "Le serveur Emby fonctionne comme une application de bureau avec une icone de notification, mais si vous pr\u00e9f\u00e9rez qu'il fonctionne comme un service en t\u00e2che de fond, il peut \u00eatre d\u00e9marrer \u00e0 partir du panneau de contr\u00f4le des services Windows.", - "WindowsServiceIntro2": "Veuillez noter que, si vous utilisez le service Windows, il ne peut pas fonctionner en m\u00eame temps que l'application dans la barre des t\u00e2ches. Vous devez donc fermer l'application dans la barre des t\u00e2ches pour pouvoir lancer le service. Le service devra aussi \u00eatre configur\u00e9 via le panneau de configuration n\u00e9cessitant les droits administrateurs. Quand il est lanc\u00e9 comme un service, vous devez vous assurer que le compte du service poss\u00e8de les acc\u00e8s \u00e0 vos r\u00e9pertoires contenant les m\u00e9dias.", "WizardCompleted": "C'est tout ce dont nous avons besoin pour l'instant. Emby a commenc\u00e9 \u00e0 collecter les informations de votre biblioth\u00e8que de m\u00e9dias. Jetez un oeil \u00e0 quelques unes de nos applications, puis cliquez sur Terminer<\/b> pour consulter le Tableau de bord du serveur<\/b>.", "LabelConfigureSettings": "Configurer les param\u00e8tres", - "LabelEnableAutomaticPortMapping": "Activer la configuration automatique de port", - "LabelEnableAutomaticPortMappingHelp": "UPnP permet la configuration automatique des routeurs pour un acc\u00e8s \u00e0 distance facile. Ceci peut ne pas fonctionner sur certains mod\u00e8les de routeur.", "HeaderTermsOfService": "Conditions d'utilisation de Emby", "MessagePleaseAcceptTermsOfService": "Veuillez accepter les conditions d'utilisations et la politique de confidentialit\u00e9 avant de continuer.", "OptionIAcceptTermsOfService": "J'accepte les conditions d'utilisation.", "ButtonPrivacyPolicy": "Politique de confidentialit\u00e9", "ButtonTermsOfService": "Conditions d'utilisation", - "HeaderDeveloperOptions": "Options de d\u00e9veloppement", - "OptionEnableWebClientResponseCache": "Activer la mise en cache des r\u00e9ponses du client web", - "OptionDisableForDevelopmentHelp": "Vous pouvez configurer ces options selon vos besoins de d\u00e9veloppement.", - "OptionEnableWebClientResourceMinification": "Activer la minimisation des ressources du client web", - "LabelDashboardSourcePath": "Chemin des fichiers sources du client web", - "LabelDashboardSourcePathHelp": "Si vous ex\u00e9cutez le serveur \u00e0 partir des sources, veuillez sp\u00e9cifier le chemin du r\u00e9pertoire dashboard-ui. Tous les fichiers du client web seront servis \u00e0 partir de cet endroit.", "ButtonConvertMedia": "Convertir le m\u00e9dia", "ButtonOrganize": "Organiser", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Cancel", "ButtonExit": "Exit", "ButtonNew": "New", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", "LabelCountry": "Country:", "LabelLanguage": "Language:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", "TabPassword": "Password", "TabLibraryAccess": "Library Access", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Episodes", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/fr-FR.json b/dashboard-ui/strings/fr-FR.json index 2bb1707a0c..c889ab67df 100644 --- a/dashboard-ui/strings/fr-FR.json +++ b/dashboard-ui/strings/fr-FR.json @@ -1,190 +1,179 @@ { - "LabelExit": "Quitter", - "LabelApiDocumentation": "Documentation Api", - "LabelBrowseLibrary": "Parcourir la Biblioth\u00e8que", - "LabelConfigureServer": "Configurer Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Pr\u00e9c\u00e9dent", "LabelFinish": "Terminer", "LabelNext": "Suivant", - "LabelYoureDone": "Vous avez termin\u00e9!", - "WelcomeToProject": "Bienvenue dans Emby!", - "ThisWizardWillGuideYou": "Cet assistant va vous guider \u00e0 travers le processus d'installation. Pour commencer, s'il vous pla\u00eet s\u00e9lectionner votre langue pr\u00e9f\u00e9r\u00e9e.", + "LabelYoureDone": "Vous avez termin\u00e9\u00a0!", + "WelcomeToProject": "Bienvenue dans Emby\u00a0!", + "ThisWizardWillGuideYou": "Cet assistant va vous guider \u00e0 travers le processus d'installation. Pour commencer, veuillez s\u00e9lectionner votre langue pr\u00e9f\u00e9r\u00e9e.", "TellUsAboutYourself": "Parlez-nous de vous", "ButtonQuickStartGuide": "Guide de d\u00e9marrage rapide", - "LabelYourFirstName": "Your first name:", - "MoreUsersCanBeAddedLater": "Plus d'utilisateurs peuvent \u00eatre ajout\u00e9s plus tard dans le tableau de bord.", - "UserProfilesIntro": "Emby comporte un support int\u00e9gr\u00e9 pour les profils utilisateur, ce qui permet \u00e0 chaque utilisateur d'avoir leur propres param\u00e8tres d'affichage, de reprise de lecture et de contr\u00f4le parental.", - "LabelWindowsService": "service Windows", - "AWindowsServiceHasBeenInstalled": "Un service Windows a \u00e9t\u00e9 install\u00e9.", - "WindowsServiceIntro1": "Le serveur Emby fonctionne normalement comme une application de bureau avec une ic\u00f4ne dans la barre syst\u00e8me, mais si vous pr\u00e9f\u00e9rez le faire fonctionner comme un service d'arri\u00e8re-plan, il peut \u00eatre d\u00e9marr\u00e9 \u00e0 partir du panneau de contr\u00f4le des services Windows \u00e0 la place.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", - "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", + "LabelYourFirstName": "Votre pr\u00e9nom\u00a0:", + "MoreUsersCanBeAddedLater": "D'autres utilisateurs pourront \u00eatre ajout\u00e9s plus tard dans le tableau de bord.", + "UserProfilesIntro": "Emby inclut un support int\u00e9gr\u00e9 pour les profils utilisateur, ce qui permet \u00e0 chaque utilisateur d'avoir ses propres param\u00e8tres d'affichage, de reprise de lecture et de contr\u00f4le parental.", + "WizardCompleted": "C'est tout ce dont nous avons besoin pour l'instant. Emby a commenc\u00e9 \u00e0 collecter des information sur votre m\u00e9diath\u00e8que. Jetez un coup d'\u0153il sur quelques-unes de nos applications, puis cliquez sur Terminer<\/b> pour voir le Tableau de bord<\/b>.", "LabelConfigureSettings": "Configurer les param\u00e8tres", - "LabelEnableAutomaticPortMapping": "Activer le mappage de port automatique", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Conditions d'utilisation d'Emby", - "MessagePleaseAcceptTermsOfService": "S'il vous pla\u00eet accepter les conditions d'utilisation et la politique de confidentialit\u00e9 avant de continuer.", + "MessagePleaseAcceptTermsOfService": "Veuillez accepter les conditions d'utilisation et la politique de confidentialit\u00e9 avant de continuer.", "OptionIAcceptTermsOfService": "J'accepte les conditions d'utilisation", "ButtonPrivacyPolicy": "Politique de confidentialit\u00e9", "ButtonTermsOfService": "Conditions d'utilisation", - "HeaderDeveloperOptions": "Options pour les d\u00e9veloppeurs", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", - "ButtonConvertMedia": "Convert media", + "ButtonConvertMedia": "Convertir les m\u00e9dias", "ButtonOrganize": "Organiser", - "HeaderSupporterBenefits": "Emby Premiere Benefits", - "HeaderAddUser": "Add User", - "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", - "LabelPinCode": "Pin code:", - "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", - "HeaderSync": "Sync", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonExit": "Exit", - "ButtonNew": "New", - "HeaderTaskTriggers": "Task Triggers", + "HeaderSupporterBenefits": "B\u00e9n\u00e9fices d'Emby Premiere", + "HeaderAddUser": "Ajouter un utilisateur", + "LabelAddConnectSupporterHelp": "Pour ajouter un utilisateur qui n'est pas dans la liste, vous devrez d'abord connecter son compte \u00e0 Emby Connect depuis son profil.", + "LabelPinCode": "Code PIN\u00a0:", + "OptionHideWatchedContentFromLatestMedia": "Cacher le contenu d\u00e9j\u00e0 vu des derniers m\u00e9dias", + "DeleteMedia": "Delete media", + "HeaderSync": "Synchroniser", + "ButtonOk": "OK", + "ButtonCancel": "Annuler", + "ButtonExit": "Quitter", + "ButtonNew": "Nouveau", + "OptionDev": "Dev (Unstable)", + "OptionBeta": "Beta", + "HeaderTaskTriggers": "D\u00e9clencheurs de t\u00e2ches", "HeaderTV": "TV", "HeaderAudio": "Audio", - "HeaderVideo": "Video", - "HeaderPaths": "Paths", - "CategorySync": "Sync", - "TabPlaylist": "Playlist", + "HeaderVideo": "Vid\u00e9o", + "HeaderPaths": "Chemins", + "CategorySync": "Synchroniser", + "TabPlaylist": "Liste de lecture", "HeaderEasyPinCode": "Easy Pin Code", - "HeaderInstalledServices": "Installed Services", - "HeaderAvailableServices": "Available Services", - "MessageNoServicesInstalled": "No services are currently installed.", - "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", - "ButtonConfigurePinCode": "Configure pin code", - "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", - "LabelSyncTempPath": "Temporary file path:", - "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", - "LabelCustomCertificatePath": "Custom certificate path:", - "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.", + "HeaderInstalledServices": "Services install\u00e9s", + "HeaderAvailableServices": "Services disponibles", + "MessageNoServicesInstalled": "Aucun service n'est install\u00e9.", + "HeaderToAccessPleaseEnterEasyPinCode": "Pour y acc\u00e9der, veuillez entrer votre Easy Pin Code", + "ButtonConfigurePinCode": "Configurer le code PIN", + "RegisterWithPayPal": "S'enregistrer avec PayPal", + "LabelSyncTempPath": "Chemin de fichier temporaire\u00a0:", + "LabelSyncTempPathHelp": "Veuillez sp\u00e9cifier un dossier de synchronisation personnalis\u00e9. Les m\u00e9dias convertis cr\u00e9\u00e9s pendant le processus de synchronisation y seront stock\u00e9s.", + "LabelCustomCertificatePath": "Chemin du certificat personnalis\u00e9\u00a0:", + "LabelCustomCertificatePathHelp": "Fournissez votre propre certificat SSL en fichier .pfx. S'il est absent, le serveur cr\u00e9era un certificat auto-sign\u00e9.", "TitleNotifications": "Notifications", - "OptionDetectArchiveFilesAsMedia": "Detect archive files as media", - "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", - "LabelEnterConnectUserName": "Username or email:", - "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", - "HeaderSyncJobInfo": "Sync Job", - "FolderTypeMixed": "Contenu m\u00e9lang\u00e9", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", + "OptionDetectArchiveFilesAsMedia": "D\u00e9tecter les fichier d'archives comme des m\u00e9dias", + "OptionDetectArchiveFilesAsMediaHelp": "Les fichiers avec les extensions .rar et .zip seront d\u00e9tect\u00e9s comme des fichiers m\u00e9dia.", + "LabelEnterConnectUserName": "Nom d'utilisateur ou e-mail\u00a0:", + "LabelEnterConnectUserNameHelp": "C'est le nom d'utilisateur ou l'e-mail de votre compte Emby en ligne.", + "HeaderSyncJobInfo": "T\u00e2che de synchronisation", + "FolderTypeMixed": "Contenu mixte", + "FolderTypeMovies": "Films", + "FolderTypeMusic": "Musiques", "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", + "FolderTypeMusicVideos": "Vid\u00e9os musicales", + "FolderTypeGames": "Jeux", + "FolderTypeBooks": "Livres", "FolderTypeTvShows": "TV", - "FolderTypeInherit": "Inherit", - "LabelContentType": "Content type:", - "TitleScheduledTasks": "Scheduled Tasks", - "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", - "LabelFolderType": "Folder type:", - "LabelCountry": "Country:", - "LabelLanguage": "Language:", - "LabelTimeLimitHours": "Time limit (hours):", - "HeaderPreferredMetadataLanguage": "Preferred metadata language:", - "LabelSaveLocalMetadata": "Save artwork and metadata into media folders", - "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", - "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", - "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", - "TabPassword": "Password", - "TabLibraryAccess": "Library Access", - "TabAccess": "Access", + "FolderTypeInherit": "H\u00e9riter", + "LabelContentType": "Type de contenu\u00a0:", + "TitleScheduledTasks": "T\u00e2ches planifi\u00e9es", + "HeaderSetupLibrary": "Configurer vos m\u00e9diath\u00e8ques", + "LabelFolderType": "Type de dossier\u00a0:", + "LabelCountry": "Pays\u00a0:", + "LabelLanguage": "Langue\u00a0:", + "LabelTimeLimitHours": "Limite de temps (heures)\u00a0:", + "HeaderPreferredMetadataLanguage": "Langue de m\u00e9tadonn\u00e9es pr\u00e9f\u00e9r\u00e9e", + "LabelSaveLocalMetadata": "Enregistrer les images et les m\u00e9tadonn\u00e9es dans les dossiers de m\u00e9dia", + "LabelSaveLocalMetadataHelp": "Enregistrer les images et les m\u00e9tadonn\u00e9es directement dans les dossiers de m\u00e9dia les stockera \u00e0 un endroit o\u00f9 ils pourront \u00eatre facilement \u00e9dit\u00e9s.", + "LabelDownloadInternetMetadata": "T\u00e9l\u00e9charger les images et les m\u00e9tadonn\u00e9es depuis internet", + "LabelDownloadInternetMetadataHelp": "Le serveur Emby peut t\u00e9l\u00e9charger des informations \u00e0 propos de vos m\u00e9dias pour permettre une pr\u00e9sentation enrichie.", + "TabPassword": "Mot de passe", + "TabLibraryAccess": "Acc\u00e8s aux m\u00e9diath\u00e8ques", + "TabAccess": "Acc\u00e8s", "TabImage": "Image", - "TabProfile": "Profile", - "TabMetadata": "Metadata", + "TabProfile": "Profil", + "TabMetadata": "M\u00e9tadonn\u00e9es", "TabImages": "Images", "TabNotifications": "Notifications", - "TabCollectionTitles": "Titles", - "HeaderDeviceAccess": "Device Access", - "OptionEnableAccessFromAllDevices": "Enable access from all devices", - "OptionEnableAccessToAllChannels": "Enable access to all channels", - "OptionEnableAccessToAllLibraries": "Enable access to all libraries", - "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", - "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", - "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", - "HeaderVideoPlaybackSettings": "Video Playback Settings", - "HeaderPlaybackSettings": "Playback Settings", - "LabelAudioLanguagePreference": "Audio language preference:", - "LabelSubtitleLanguagePreference": "Subtitle language preference:", - "OptionDefaultSubtitles": "Default", - "OptionSmartSubtitles": "Smart", - "OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", - "OptionOnlyForcedSubtitles": "Only forced subtitles", - "OptionAlwaysPlaySubtitles": "Always play subtitles", - "OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", - "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", - "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", - "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.", - "TabProfiles": "Profiles", - "TabSecurity": "Security", - "ButtonAddUser": "Add User", - "ButtonInviteUser": "Invite User", - "ButtonSave": "Save", - "ButtonResetPassword": "Reset Password", - "LabelNewPassword": "New password:", - "LabelNewPasswordConfirm": "New password confirm:", - "HeaderCreatePassword": "Create Password", - "LabelCurrentPassword": "Current password:", - "LabelMaxParentalRating": "Maximum allowed parental rating:", - "MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.", - "LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.", - "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.", - "ButtonDeleteImage": "Delete Image", - "LabelSelectUsers": "Select users:", - "ButtonUpload": "Upload", - "HeaderUploadNewImage": "Upload New Image", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", - "MessageNothingHere": "Nothing here.", - "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "TabCollectionTitles": "Titres", + "HeaderDeviceAccess": "Acc\u00e8s aux appareils", + "OptionEnableAccessFromAllDevices": "Autoriser l'acc\u00e8s \u00e0 tous les appareils", + "OptionEnableAccessToAllChannels": "Autoriser l'acc\u00e8s \u00e0 toutes les cha\u00eenes", + "OptionEnableAccessToAllLibraries": "Autoriser l'acc\u00e8s \u00e0 toutes les m\u00e9diath\u00e8ques", + "DeviceAccessHelp": "Cela s'applique uniquement aux appareils qui peuvent \u00eatre identifi\u00e9s de fa\u00e7on unique et n'emp\u00eachera pas l'acc\u00e8s avec un navigateur. Filtrer l'acc\u00e8s des appareils emp\u00eachera les utilisateurs d'utiliser de nouveaux appareils avant qu'ils n'aient \u00e9t\u00e9 autoris\u00e9s ici.", + "LabelDisplayMissingEpisodesWithinSeasons": "Afficher les \u00e9pisodes manquants dans les saisons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Cela doit aussi \u00eatre autoris\u00e9 pour les m\u00e9diath\u00e8ques TV dans la configuration du serveur Emby.", + "LabelUnairedMissingEpisodesWithinSeasons": "Afficher les \u00e9pisodes non diffus\u00e9s dans les saisons", + "ImportMissingEpisodesHelp": "Les informations \u00e0 propos de \u00e9pisodes manquants seront import\u00e9es dans votre base de donn\u00e9es Emby et affich\u00e9es dans les saisons et les s\u00e9ries. Cela peut allonger significativement la dur\u00e9e n\u00e9cessaire pour scanner la m\u00e9diath\u00e8que.", + "HeaderVideoPlaybackSettings": "Param\u00e8tres de lecture de vid\u00e9o", + "OptionDownloadInternetMetadataTvPrograms": "T\u00e9l\u00e9charger les m\u00e9tadonn\u00e9es depuis internet pour les programmes figurants dans le guide", + "HeaderPlaybackSettings": "Param\u00e8tres de lecture", + "LabelAudioLanguagePreference": "Pr\u00e9f\u00e9rence de langue pour le son\u00a0:", + "LabelSubtitleLanguagePreference": "Pr\u00e9f\u00e9rence de langue pour les sous-titres\u00a0:", + "OptionDefaultSubtitles": "Par d\u00e9faut", + "OptionSmartSubtitles": "Intelligent", + "OptionSmartSubtitlesHelp": "Les sous-titres correspondant \u00e0 la langue pr\u00e9f\u00e9r\u00e9e seront charg\u00e9s quand le son sera dans une langue \u00e9trang\u00e8re.", + "OptionOnlyForcedSubtitles": "Seulement les sous-titres forc\u00e9s", + "OptionAlwaysPlaySubtitles": "Toujours jouer les sous-titres", + "OptionDefaultSubtitlesHelp": "Les sous-titres sont charg\u00e9s selon les drapeaux par d\u00e9faut et forc\u00e9 dans les m\u00e9tadonn\u00e9es du fichier. Les langues pr\u00e9f\u00e9r\u00e9es sont prises en compte quand il y a plusieurs choix possibles.", + "OptionOnlyForcedSubtitlesHelp": "Seuls les sous-titres marqu\u00e9s comme forc\u00e9s seront charg\u00e9s.", + "OptionAlwaysPlaySubtitlesHelp": "Les sous-titres correspondants \u00e0 la langue pr\u00e9f\u00e9r\u00e9e seront charg\u00e9s quelque soit la langue de la piste audio.", + "OptionNoSubtitlesHelp": "Le sous-titres ne seront pas charg\u00e9s par d\u00e9faut.", + "TabProfiles": "Profils", + "TabSecurity": "S\u00e9curit\u00e9", + "ButtonAddUser": "Ajouter un utilisateur", + "ButtonInviteUser": "Inviter un utilisateur", + "ButtonSave": "Enregistrer", + "ButtonResetPassword": "R\u00e9initialiser le mot de passe", + "LabelNewPassword": "Nouveau mot de passe\u00a0:", + "LabelNewPasswordConfirm": "Confirmation du nouveau mot de passe\u00a0:", + "HeaderCreatePassword": "Cr\u00e9er le mot de passe", + "LabelCurrentPassword": "Mot de passe actuel\u00a0:", + "LabelMaxParentalRating": "Classification parentale maximum autoris\u00e9e\u00a0:", + "MaxParentalRatingHelp": "Le contenu avec une classification plus \u00e9lev\u00e9e seront cach\u00e9s \u00e0 cet utilisateur.", + "LibraryAccessHelp": "S\u00e9lectionner les dossiers de m\u00e9dia \u00e0 partager avec cet utilisateur. Les administrateurs pourront \u00e9diter tous les dossiers en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.", + "ChannelAccessHelp": "S\u00e9lectionner les cha\u00eenes \u00e0 partager avec cet utilisateur. Les administrateurs pourront \u00e9diter toutes les cha\u00eenes en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.", + "ButtonDeleteImage": "Supprimer l'image", + "LabelSelectUsers": "S\u00e9lectionner les utilisateurs\u00a0:", + "ButtonUpload": "T\u00e9l\u00e9charger", + "HeaderUploadNewImage": "T\u00e9l\u00e9charger une nouvelle image", + "ImageUploadAspectRatioHelp": "Rapport d'aspect 1:1 recommand\u00e9. Seulement JPG\/PNG.", + "MessageNothingHere": "Il n'y a rien ici.", + "MessagePleaseEnsureInternetMetadata": "Veuillez vous assurer que le t\u00e9l\u00e9chargement des m\u00e9tadonn\u00e9es depuis internet est autoris\u00e9.", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", - "TabLatest": "Latest", - "TabUpcoming": "Upcoming", - "TabShows": "Shows", - "TabEpisodes": "Episodes", + "TabLatest": "Plus r\u00e9cents", + "TabUpcoming": "\u00c0 venir", + "TabShows": "S\u00e9ries", + "TabEpisodes": "\u00c9pisodes", "TabGenres": "Genres", - "TabPeople": "People", - "TabNetworks": "Networks", - "HeaderUsers": "Users", - "HeaderFilters": "Filters", - "ButtonFilter": "Filter", - "OptionFavorite": "Favorites", - "OptionLikes": "Likes", - "OptionDislikes": "Dislikes", - "OptionActors": "Actors", + "TabNetworks": "Cha\u00eenes", + "HeaderUsers": "Utilisateurs", + "HeaderFilters": "Filtres", + "ButtonFilter": "Filtre", + "OptionFavorite": "Favoris", + "OptionLikes": "J'aime", + "OptionDislikes": "J'aime pas", + "OptionActors": "Acteurs", "OptionGuestStars": "Guest Stars", - "OptionDirectors": "Directors", - "OptionWriters": "Writers", - "OptionProducers": "Producers", - "HeaderResume": "Resume", - "HeaderNextUp": "Next Up", - "NoNextUpItemsMessage": "None found. Start watching your shows!", - "HeaderLatestEpisodes": "Latest Episodes", - "HeaderPersonTypes": "Person Types:", - "TabSongs": "Songs", + "OptionDirectors": "R\u00e9alisateurs", + "OptionWriters": "Sc\u00e9naristes", + "OptionProducers": "Producteurs", + "HeaderResume": "Synopsis", + "HeaderContinueWatching": "Continuer \u00e0 regarder", + "HeaderNextUp": "\u00c0 suivre", + "NoNextUpItemsMessage": "Aucun r\u00e9sultat trouv\u00e9. Commencez \u00e0 regarder vos s\u00e9ries\u00a0!", + "HeaderLatestEpisodes": "Derniers \u00e9pisodes", + "HeaderPersonTypes": "Types de personnes\u00a0:", + "TabSongs": "Chansons", "TabAlbums": "Albums", - "TabArtists": "Artists", - "TabAlbumArtists": "Album Artists", - "TabMusicVideos": "Music Videos", - "ButtonSort": "Sort", - "OptionPlayed": "Played", - "OptionUnplayed": "Unplayed", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionRuntime": "Runtime", - "OptionReleaseDate": "Date de release", + "TabArtists": "Artistes", + "TabAlbumArtists": "Artistes de l'album", + "TabMusicVideos": "Vid\u00e9os musicales", + "ButtonSort": "Trier", + "OptionPlayed": "Lu", + "OptionUnplayed": "Non lu", + "OptionAscending": "Ascendant", + "OptionDescending": "Descendant", + "OptionRuntime": "Dur\u00e9e", + "OptionReleaseDate": "Date de sortie", "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,8 +194,7 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", - "TabMyPlugins": "My Plugins", + "TabMyPlugins": "Mes Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", "HeaderAutomaticUpdates": "Automatic Updates", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -223,7 +210,7 @@ "Option3D": "3D", "LabelStatus": "Status:", "LabelLastResult": "Last result:", - "OptionHasSubtitles": "Subtitles", + "OptionHasSubtitles": "Sous-titres", "OptionHasTrailer": "Trailer", "OptionHasThemeSong": "Theme Song", "OptionHasThemeVideo": "Theme Video", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -346,27 +326,26 @@ "LabelPassword": "Password:", "ButtonManualLogin": "Manual Login", "TabGuide": "Guide", - "TabChannels": "Channels", + "TabChannels": "Cha\u00eenes", "TabCollections": "Collections", - "HeaderChannels": "Channels", + "HeaderChannels": "Cha\u00eenes", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", - "ButtonRefreshGuideData": "Refresh Guide Data", - "ButtonRefresh": "Refresh", + "ButtonRefreshGuideData": "Rafra\u00eechir les donn\u00e9es du guide", + "ButtonRefresh": "Rafra\u00eechir", "OptionPriority": "Priority", "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -375,8 +354,8 @@ "ButtonEdit": "Edit", "ButtonRecord": "Record", "ButtonDelete": "Delete", - "ButtonRemove": "Remove", - "OptionRecordSeries": "Record Series", + "ButtonRemove": "Retirer", + "OptionRecordSeries": "S\u00e9ries enregistr\u00e9es", "HeaderDetails": "Details", "TitleLiveTV": "Live TV", "LabelNumberOfGuideDays": "Number of days of guide data to download:", @@ -418,13 +397,12 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", "LabelEnableRealtimeMonitor": "Enable real time monitoring", "LabelEnableRealtimeMonitorHelp": "Changes will be processed immediately, on supported file systems.", - "ButtonScanLibrary": "Scan Library", + "ButtonScanLibrary": "Scanner la biblioth\u00e8que", "HeaderNumberOfPlayers": "Players", "OptionAnyNumberOfPlayers": "Any", "Option1Player": "1+", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path clients can access)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -653,7 +597,7 @@ "TabNavigation": "Navigation", "TabControls": "Controls", "ButtonScenes": "Scenes", - "ButtonSubtitles": "Subtitles", + "ButtonSubtitles": "Sous-titres", "ButtonPreviousTrack": "Pr\u00e9c\u00e9dent", "ButtonNextTrack": "Suivant", "ButtonStop": "Stop", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", - "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", + "OptionNoSubtitles": "Pas de sous-titres", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -752,11 +694,11 @@ "OptionEstimateContentLength": "Estimate content length when transcoding", "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", - "HeaderDownloadSubtitlesFor": "Download subtitles for:", + "HeaderDownloadSubtitlesFor": "T\u00e9l\u00e9charger les sous-titres depuis :", "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", - "TabSubtitles": "Subtitles", - "TabChapters": "Chapters", + "TabSubtitles": "Sous-titres", + "TabChapters": "Chapitres", "LabelOpenSubtitlesUsername": "Open Subtitles username:", "LabelOpenSubtitlesPassword": "Open Subtitles password:", "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -937,7 +839,7 @@ "HeaderAdvanced": "Advanced", "ButtonSync": "Sync", "TabScheduledTasks": "Scheduled Tasks", - "HeaderChapters": "Chapters", + "HeaderChapters": "Chapitres", "HeaderResumeSettings": "Resume Settings", "TabSync": "Sync", "TitleUsers": "Users", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,38 +889,25 @@ "OptionReportAlbums": "Albums", "ButtonMore": "Plus", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", - "HeaderPeople": "People", - "HeaderDownloadPeopleMetadataFor": "Download biography and images for:", + "HeaderPeople": "Personne", + "HeaderDownloadPeopleMetadataFor": "T\u00e9l\u00e9charger la biographie et les images de :", "OptionComposers": "Composers", "OptionOthers": "Others", "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", @@ -1030,7 +915,7 @@ "OptionDisplayFolderView": "Display a folder view to show plain media folders", "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "ViewTypeLiveTvRecordingGroups": "Recordings", - "ViewTypeLiveTvChannels": "Channels", + "ViewTypeLiveTvChannels": "Cha\u00eenes", "LabelEasyPinCode": "Easy pin code:", "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1090,7 +966,7 @@ "HeaderXmlDocumentAttribute": "Xml Document Attribute", "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", - "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", + "LabelExtractChaptersDuringLibraryScan": "Extraire les images des chapitres durant le scan de la biblioth\u00e8que", "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", "LabelConnectGuestUserName": "Their Emby username or email address:", "LabelConnectUserName": "Emby username or email address:", @@ -1114,7 +990,7 @@ "ButtonLearnMore": "Learn more", "TabPlayback": "Playback", "HeaderAudioSettings": "Audio Settings", - "HeaderSubtitleSettings": "Subtitle Settings", + "HeaderSubtitleSettings": "Param\u00e9trage des sous-titres", "TabCinemaMode": "Cinema Mode", "TitlePlayback": "Playback", "LabelEnableCinemaModeFor": "Enable cinema mode for:", @@ -1135,7 +1011,7 @@ "LabelEnableCinemaMode": "Enable cinema mode", "HeaderCinemaMode": "Cinema Mode", "LabelDateAddedBehavior": "Date added behavior for new content:", - "OptionDateAddedImportTime": "Use date scanned into the library", + "OptionDateAddedImportTime": "Utiliser la date de scan dans la biblioth\u00e8que", "OptionDateAddedFileTime": "Use file creation date", "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", "LabelNumberTrailerToPlay": "Number of trailers to play:", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,9 +1185,9 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", - "HeaderSubtitles": "Subtitles", + "HeaderSubtitles": "Sous-titres", "HeaderVideos": "Videos", "LabelHardwareAccelerationType": "Hardware acceleration:", "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", + "OptionConvertRecordingsToStreamingFormat": "Convertir automatiquement les enregistrements dans un format adapt\u00e9 au streaming", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download all images in advance", "SettingsSaved": "Settings saved.", @@ -1348,7 +1216,6 @@ "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1376,7 +1243,7 @@ "MessageKeysLinked": "Keys linked.", "HeaderConfirmation": "Confirmation", "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", + "MessageKeyRemoved": "Merci. Votre cl\u00e9 Emby Premiere a \u00e9t\u00e9 retir\u00e9e", "TextEnjoyBonusFeatures": "Enjoy Bonus Features", "ButtonCancelSyncJob": "Cancel sync", "HeaderAddTag": "Add Tag", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", + "HeaderConfirmRemoveUser": "Retirer l'utilisateur", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1404,7 +1267,7 @@ "PluginCategoryNotifications": "Notifications", "PluginCategoryMetadata": "Metadata", "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", + "PluginCategoryChannel": "Cha\u00eenes", "HeaderSearch": "Search", "ValueDateCreated": "Date created: {0}", "LabelArtist": "Artist", @@ -1416,9 +1279,9 @@ "LabelCancelled": "Cancelled", "ButtonDownload": "Download", "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", + "SyncJobStatusConverting": "Conversion", "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", + "SyncJobStatusCancelled": "Annul\u00e9", "SyncJobStatusCompleted": "Synced", "SyncJobStatusReadyToTransfer": "Ready to Transfer", "SyncJobStatusTransferring": "Transferring", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1457,7 +1319,7 @@ "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", + "HeaderSelectSubtitles": "S\u00e9lectionner les sous-titres", "ButtonMarkForRemoval": "Remove from device", "ButtonUnmarkForRemoval": "Cancel removal from device", "LabelDefaultStream": "(Default)", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1583,7 +1437,7 @@ "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", "ButtonDashboard": "Dashboard", "ButtonReports": "Reports", - "MetadataManager": "Metadata Manager", + "MetadataManager": "Gestionnaire de m\u00e9tadonn\u00e9es", "HeaderTime": "Time", "LabelAddedOnDate": "Added {0}", "ButtonStart": "Start", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1639,13 +1491,9 @@ "OptionName": "Name", "OptionOverview": "Overview", "OptionGenres": "Genres", - "OptionPeople": "People", + "OptionPeople": "Personne", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", "HeaderSeries": "Series", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0}-Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1826,7 +1667,7 @@ "MediaInfoBitDepth": "Bit depth", "MediaInfoSampleRate": "Sample rate", "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", + "MediaInfoChannels": "Cha\u00eenes", "MediaInfoLayout": "Layout", "MediaInfoLanguage": "Language", "MediaInfoCodec": "Codec", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Ann\u00e9e de parution : {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1875,13 +1711,12 @@ "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", + "DashboardTourSubtitles": "T\u00e9l\u00e9charger automatiquement les sous-titres pour vos vid\u00e9os dans tous les languages.", "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,21 +1750,17 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", + "SyncJobItemStatusConverting": "Conversion", "SyncJobItemStatusTransferring": "Transferring", "SyncJobItemStatusSynced": "Synced", "SyncJobItemStatusFailed": "Failed", "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", + "SyncJobItemStatusCancelled": "Annul\u00e9", "LabelProfile": "Profile:", "LabelBitrateMbps": "Bitrate (Mbps):", "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", @@ -1941,19 +1772,12 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", - "NoResultsFound": "No results found.", + "NoResultsFound": "Aucun r\u00e9sultat trouv\u00e9", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", "ButtonViewArtist": "View artist", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync n\u00e9cessite un compte Emby Premiere actif", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "1:00 PM", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "J'ai Emby Premiere", - "IPurchasedThisApp": "J'ai achet\u00e9 cette app", "DrmChannelsNotImported": "Les chaines avec DRM ne seront pas import\u00e9es", "LabelAllowHWTranscoding": "Autoriser le transcodage mat\u00e9riel", "AllowHWTranscodingHelp": "Si activ\u00e9e, autorise le tuner \u00e0 transcoder les flux \u00e0 la vol\u00e9e. Cela peut aider \u00e0 r\u00e9duire le transcodage requis par le serveur Emby.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Pr\u00e9server l'audio originel lors de la conversion des enregistrements", "OptionConvertRecordingPreserveAudioHelp": "Cela produira des sons de meilleurs qualit\u00e9, mais peut n\u00e9cessiter des transcodages pendant la lecture sur certains p\u00e9riph\u00e9riques.", - "CreateCollectionHelp": "Les collections vous permettent de cr\u00e9er des groupes personnalis\u00e9 de films et autre contenu.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Ajouter des items aux collections en les recherchant et en utilisant leurs menus contextuels.", "HeaderHealthMonitor": "Moniteur de sant\u00e9", "HealthMonitorNoAlerts": "Il n'y a pas d'alertes active.", @@ -2087,8 +1883,8 @@ "LabelMovieCategories": "Cat\u00e9gorie films :", "XmlTvMovieCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s comme des films. S\u00e9parez les champs par '|'.", "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", + "LabelBindToLocalNetworkAddress": "Lier \u00e0 l'adresse de r\u00e9seau local :", + "LabelBindToLocalNetworkAddressHelp": "Facultatif. Remplacer l'adresse IP locale pour lui lier le serveur http. Si laiss\u00e9 vide, le serveur va se lier \u00e0 toutes les adresses disponibles. La modification de cette valeur n\u00e9cessite le red\u00e9marrage du Serveur Emby.", "TitleHostingSettings": "Hosting Settings", "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", "MapChannels": "Map Channels", @@ -2098,21 +1894,21 @@ "SetupFFmpeg": "Setup FFmpeg", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", "EnterFFmpegLocation": "Enter FFmpeg path", - "DownloadFFmpeg": "Download FFmpeg", - "FFmpegSuggestedDownload": "Suggested download: {0}", - "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", - "OptionUseSystemInstalledVersion": "Use system installed version", - "OptionUseMyCustomVersion": "Use a custom version", + "DownloadFFmpeg": "T\u00e9l\u00e9charger FFmpeg", + "FFmpegSuggestedDownload": "T\u00e9l\u00e9chargement sugg\u00e9r\u00e9 : {0}", + "UnzipFFmpegFile": "D\u00e9compressez le fichier t\u00e9l\u00e9charg\u00e9 dans le dossier de votre choix.", + "OptionUseSystemInstalledVersion": "Utilisez la version du syst\u00e8me install\u00e9", + "OptionUseMyCustomVersion": "Utilisez une version personnalis\u00e9e", "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "XmlTvPremiere": "By default, Emby will import {0} hours of guide data. Importing unlimited data requires an active Emby Premiere subscription.", - "MoreFromValue": "More from {0}", + "XmlTvPremiere": "Par d\u00e9faut, Emby importera {0} heures de donn\u00e9es du guide. Une importation de donn\u00e9es illimit\u00e9 n\u00e9cessite un abonnement Emby Premiere actif.", + "MoreFromValue": "Plus de {0}", "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "MakeAvailableOffline": "Make available offline", - "ConfirmRemoveDownload": "Remove download?", + "EnablePhotos": "Activer les photos", + "EnablePhotosHelp": "Les photos seront d\u00e9tect\u00e9es et affich\u00e9es aux c\u00f4t\u00e9s des autres fichiers multim\u00e9dias.", + "MakeAvailableOffline": "Rendre disponible hors connexion", + "ConfirmRemoveDownload": "Supprimer le t\u00e9l\u00e9chargement ?", "RemoveDownload": "Remove download", - "SyncToOtherDevices": "Sync to other devices", + "SyncToOtherDevices": "Synchroniser \u00e0 d'autres appareils", "ManageOfflineDownloads": "Manage offline downloads", "MessageDownloadScheduled": "Download scheduled", "RememberMe": "Remember me", @@ -2121,26 +1917,33 @@ "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", "LabelVaapiDevice": "VA API Device:", "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", + "HowToConnectFromEmbyApps": "Comment se connecter \u00e0 partir d'applications Emby", "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", + "Downloads": "T\u00e9l\u00e9chargements", "LabelEnableDebugLogging": "Enable debug logging", "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", - "HeaderForKids": "For Kids", + "LabelH264EncodingPreset": "H264 Encodage pr\u00e9d\u00e9fini :", + "H264EncodingPresetHelp": "Choisissez une valeur plus rapide pour am\u00e9liorer les performances, ou une valeur plus lente pour am\u00e9liorer la qualit\u00e9.", + "LabelH264Crf": "H264 encodage CRF :", + "H264CrfHelp": "Le facteur de taux constant (CRF) est le param\u00e8tre de qualit\u00e9 par d\u00e9faut pour l'encodeur x264. Vous pouvez d\u00e9finir une valeur comprise entre 0 et 51. Une valeur plus basse se traduirait par une meilleure qualit\u00e9 (au d\u00e9triment des tailles de fichier plus \u00e9lev\u00e9s). Les valeurs saines sont entre 18 et 28. La valeur par d\u00e9faut du x264 est 23, de sorte que vous pouvez l'utiliser comme un point de d\u00e9part.", + "Sports": "Sport", + "HeaderForKids": "Pour enfants", "HeaderRecordingGroups": "Recording Groups", - "LabelConvertRecordingsTo": "Convert recordings to:", + "LabelConvertRecordingsTo": "Convertir les enregistrements en :", "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", + "LabelOptionalNetworkPath": "(Facultatif) Dossier r\u00e9seau partag\u00e9 :", + "LabelOptionalNetworkPathHelp": "Si ce dossier est partag\u00e9 sur votre r\u00e9seau, en fournissant le chemin d'acc\u00e8s du serveur, cela pourra permettre \u00e0 des applications Emby sur d'autres appareils, d'acc\u00e9der directement aux fichiers multim\u00e9dias, sans demander de transcodage.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Pour installer la mise \u00e0 jour, connectez-vous \u00e0 votre DSM et allez dans le centre de paquets.", + "LatestFromLibrary": "Dernier {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/fr.json b/dashboard-ui/strings/fr.json index e4ae2ee63e..8b074250c1 100644 --- a/dashboard-ui/strings/fr.json +++ b/dashboard-ui/strings/fr.json @@ -1,56 +1,45 @@ { - "LabelExit": "Quitter", - "LabelApiDocumentation": "Documentation de l'API", - "LabelBrowseLibrary": "Parcourir la biblioth\u00e8que", - "LabelConfigureServer": "Configurer Emby", + "OptionAutomaticallyGroupSeriesHelp": "Les s\u00e9ries qui sont r\u00e9parties en plusieurs dossiers dans la m\u00e9diath\u00e8que seront automatiquement fusionn\u00e9es en une seule s\u00e9rie.", + "OptionAutomaticallyGroupSeries": "Fusionner automatiquement les s\u00e9ries qui sont r\u00e9parties en plusieurs dossiers", "LabelPrevious": "Pr\u00e9c\u00e9dent", "LabelFinish": "Terminer", "LabelNext": "Suivant", - "LabelYoureDone": "Vous avez Termin\u00e9!", + "LabelYoureDone": "Vous avez termin\u00e9\u00a0!", "WelcomeToProject": "Bienvenue dans Emby !", "ThisWizardWillGuideYou": "Cet assistant vous guidera dans le processus de configuration. Pour commencer, merci de s\u00e9lectionner votre langue pr\u00e9f\u00e9r\u00e9e.", "TellUsAboutYourself": "Parlez-nous de vous", "ButtonQuickStartGuide": "Guide de d\u00e9marrage rapide", "LabelYourFirstName": "Votre pr\u00e9nom:", "MoreUsersCanBeAddedLater": "D'autres utilisateurs pourront \u00eatre ajout\u00e9s ult\u00e9rieurement \u00e0 partir du tableau de bord.", - "UserProfilesIntro": "Emby supporte nativement les profils utilisateurs, les pr\u00e9f\u00e9rences d'affichage, la sauvegarde de l'\u00e9tat de lecture et le contr\u00f4le parental.", - "LabelWindowsService": "Service Windows", - "AWindowsServiceHasBeenInstalled": "Un service Windows a \u00e9t\u00e9 install\u00e9.", - "WindowsServiceIntro1": "Le serveur Emby fonctionne comme une application de bureau avec une icone de notification, mais si vous pr\u00e9f\u00e9rez qu'il tourne comme un service en tache de fond, il peut \u00eatre d\u00e9marrer \u00e0 partir du panneau de controle des services windows.", - "WindowsServiceIntro2": "Veuillez noter que, si vous utilisez le service Windows, il ne peut pas fonctionner en m\u00eame temps que l'application dans la barre des taches. Vous devez donc fermer l'application dans la barre des taches pour pouvoir lancer le service. Le service devra aussi \u00eatre configur\u00e9 via le panneau de configuration n\u00e9cessitant les droits administrateurs. Quand il est lanc\u00e9 comme un service, vous devez vous assurer que le compte du service poss\u00e8de les acc\u00e8s \u00e0 vos r\u00e9pertoires contenant les m\u00e9dias.", - "WizardCompleted": "C'est tout ce dont nous avons besoin pour l'instant. Emby a commenc\u00e9 \u00e0 collecter les informations de votre biblioth\u00e8que de m\u00e9dias. Jetez un oeil \u00e0 quelques unes de nos applications, puis cliquez sur Terminer<\/b> pour consulter le Tableau de bord du serveur<\/b>.", + "UserProfilesIntro": "Emby supporte nativement les profils utilisateurs, permettant \u00e0 chaque utilisateur d'avoir ses propres pr\u00e9f\u00e9rences d'affichage, sauvegarde de l'\u00e9tat de lecture et contr\u00f4le parental.", + "WizardCompleted": "C'est tout ce dont nous avons besoin pour l'instant. Emby a commenc\u00e9 \u00e0 collecter les informations de votre m\u00e9diath\u00e8que. Jetez un coup d'\u0153il \u00e0 quelques-unes de nos applications, puis cliquez sur Terminer<\/b> pour consulter le Tableau de bord du serveur<\/b>.", "LabelConfigureSettings": "Configurer les param\u00e8tres", - "LabelEnableAutomaticPortMapping": "Activer la configuration automatique de port", - "LabelEnableAutomaticPortMappingHelp": "UPnP permet la configuration automatique des routeurs pour un acc\u00e8s \u00e0 distance facile. Ceci peut ne pas fonctionner sur certains mod\u00e8les de routeur.", - "HeaderTermsOfService": "Conditions d'utilisation de Emby", + "HeaderTermsOfService": "Conditions d'utilisation d'Emby", "MessagePleaseAcceptTermsOfService": "Veuillez accepter les conditions d'utilisations et la politique de confidentialit\u00e9 avant de continuer.", "OptionIAcceptTermsOfService": "J'accepte les conditions d'utilisation.", "ButtonPrivacyPolicy": "Politique de confidentialit\u00e9", "ButtonTermsOfService": "Conditions d'utilisation", - "HeaderDeveloperOptions": "Options de d\u00e9veloppement", - "OptionEnableWebClientResponseCache": "Activer la mise en cache des r\u00e9ponses du client web", - "OptionDisableForDevelopmentHelp": "Vous pouvez configurer ces options selon vos besoins de d\u00e9veloppement.", - "OptionEnableWebClientResourceMinification": "Activer la minimisation des ressources du client web", - "LabelDashboardSourcePath": "Chemin des fichiers sources du client web", - "LabelDashboardSourcePathHelp": "Si vous ex\u00e9cutez le serveur \u00e0 partir des sources, veuillez sp\u00e9cifier le chemin du r\u00e9pertoire dashboard-ui. Tous les fichiers du client web seront servis \u00e0 partir de cet endroit.", "ButtonConvertMedia": "Convertir le m\u00e9dia", "ButtonOrganize": "Organiser", - "HeaderSupporterBenefits": "B\u00e9n\u00e9fices apport\u00e9s par Emby Premiere", + "HeaderSupporterBenefits": "Avantages apport\u00e9s par Emby Premiere", "HeaderAddUser": "Ajouter un utilisateur", "LabelAddConnectSupporterHelp": "Pour ajouter un utilisateur non list\u00e9, vous devrez d'abord lier son compte \u00e0 Emby Connect depuis sa page de profil utilisateur.", - "LabelPinCode": "Code PIN:", + "LabelPinCode": "Code PIN\u00a0:", "OptionHideWatchedContentFromLatestMedia": "Masquer le contenu d\u00e9j\u00e0 vu dans les derniers m\u00e9dias", - "HeaderSync": "Sync", + "DeleteMedia": "Supprimer le m\u00e9dia", + "HeaderSync": "Synchroniser", "ButtonOk": "Ok", "ButtonCancel": "Annuler", - "ButtonExit": "Sortie", + "ButtonExit": "Quitter", "ButtonNew": "Nouveau", + "OptionDev": "D\u00e9veloppement", + "OptionBeta": "Beta", "HeaderTaskTriggers": "D\u00e9clencheurs de t\u00e2ches", "HeaderTV": "TV", "HeaderAudio": "Audio", "HeaderVideo": "Vid\u00e9o", "HeaderPaths": "Chemins", - "CategorySync": "Sync", + "CategorySync": "Synchroniser", "TabPlaylist": "Liste de lecture", "HeaderEasyPinCode": "Code Easy Pin", "HeaderInstalledServices": "Services install\u00e9s", @@ -59,44 +48,39 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Veuillez entrez votre code Easy PIN :", "ButtonConfigurePinCode": "Configurer le code PIN", "RegisterWithPayPal": "S'enregistrer avec PayPal", - "HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours", - "LabelSyncTempPath": "R\u00e9pertoire de fichiers temporaires :", - "LabelSyncTempPathHelp": "Sp\u00e9cifiez un r\u00e9pertoire de travail pour la synchronisation. Les fichiers r\u00e9sultant de la conversion de m\u00e9dias au cours du processus de synchronisation seront stock\u00e9s ici.", + "LabelSyncTempPath": "Chemin des fichiers temporaires :", + "LabelSyncTempPathHelp": "Sp\u00e9cifiez un dossier de travail personnalis\u00e9 pour la synchronisation. Les fichiers r\u00e9sultant de la conversion de m\u00e9dias au cours du processus de synchronisation seront stock\u00e9s ici.", "LabelCustomCertificatePath": "Chemin vers le certificat personnalis\u00e9 :", "LabelCustomCertificatePathHelp": "Fournissez votre propre certificat SSL au format .pfx. Sinon, le serveur cr\u00e9era un certificat auto-sign\u00e9.", "TitleNotifications": "Notifications", "OptionDetectArchiveFilesAsMedia": "Reconna\u00eetre les fichiers archives comme m\u00e9dias", - "OptionDetectArchiveFilesAsMediaHelp": "Activez cette option pour reconna\u00eetre les fichiers portant l'extension .rar ou .zip comme des fichiers de m\u00e9dias. ", - "LabelEnterConnectUserName": "Nom d'utilisateur ou adresse mail :", - "LabelEnterConnectUserNameHelp": "C'est le nom d'utilisateur ou l'email de votre compte Emby en ligne.", - "LabelEnableEnhancedMovies": "Activer le mode d'affichage am\u00e9lior\u00e9 des films", - "LabelEnableEnhancedMoviesHelp": "Lorsque ce mode est activ\u00e9, les films seront affich\u00e9s comme des dossiers et incluront les bandes-annonces, les bonus, l'\u00e9quipe de tournage et les autre contenus li\u00e9s.", + "OptionDetectArchiveFilesAsMediaHelp": "Activez cette option pour reconna\u00eetre les fichiers portant l'extension .rar ou .zip comme des fichiers multim\u00e9dia.", + "LabelEnterConnectUserName": "Nom d'utilisateur ou courriel :", + "LabelEnterConnectUserNameHelp": "C'est le nom d'utilisateur ou le courriel de votre compte Emby en ligne.", "HeaderSyncJobInfo": "T\u00e2che de synchronisation", - "FolderTypeMixed": "Contenu m\u00e9lang\u00e9", + "FolderTypeMixed": "Contenu mixte", "FolderTypeMovies": "Films", "FolderTypeMusic": "Musique", "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Vid\u00e9os Musical", + "FolderTypeMusicVideos": "Vid\u00e9os musicales", "FolderTypeGames": "Jeux", "FolderTypeBooks": "Livres", "FolderTypeTvShows": "TV", - "FolderTypeInherit": "H\u00e9rite", + "FolderTypeInherit": "H\u00e9riter", "LabelContentType": "Type de contenu :", "TitleScheduledTasks": "T\u00e2ches planifi\u00e9es", - "HeaderSetupLibrary": "Configurer vos biblioth\u00e8ques de m\u00e9dia", - "ButtonAddMediaFolder": "Ajouter un r\u00e9pertoire de m\u00e9dia", + "HeaderSetupLibrary": "Configurer vos m\u00e9diath\u00e8ques", "LabelFolderType": "Type de r\u00e9pertoire:", "LabelCountry": "Pays:", "LabelLanguage": "Langue:", "LabelTimeLimitHours": "Limite de temps (heures) :", - "HeaderPreferredMetadataLanguage": "Langue pr\u00e9f\u00e9r\u00e9e pour les m\u00e9tadonn\u00e9es:", - "LabelSaveLocalMetadata": "Enregistrer les images et m\u00e9tadonn\u00e9es dans les r\u00e9pertoires de m\u00e9dia", - "LabelSaveLocalMetadataHelp": "L'enregistrement des images et des m\u00e9tadonn\u00e9es dans le r\u00e9pertoire de m\u00e9dia les placera \u00e0 un endroit o\u00f9 elles seront facilement modifiables.", + "HeaderPreferredMetadataLanguage": "Langue de m\u00e9tadonn\u00e9es pr\u00e9f\u00e9r\u00e9e", + "LabelSaveLocalMetadata": "Enregistrer les images et m\u00e9tadonn\u00e9es dans les dossiers multim\u00e9dia", + "LabelSaveLocalMetadataHelp": "L'enregistrement des images et des m\u00e9tadonn\u00e9es dans les dossiers multim\u00e9dia les placera \u00e0 un endroit o\u00f9 elles seront facilement modifiables.", "LabelDownloadInternetMetadata": "T\u00e9l\u00e9charger les images et m\u00e9tadonn\u00e9es depuis Internet", - "LabelDownloadInternetMetadataHelp": "Le serveur Emby peut t\u00e9l\u00e9charger les informations des m\u00e9dias pour donner une pr\u00e9sentation riche.", - "TabPreferences": "Pr\u00e9f\u00e9rences", + "LabelDownloadInternetMetadataHelp": "Le serveur Emby peut t\u00e9l\u00e9charger les informations des m\u00e9dias pour enrichir la pr\u00e9sentation.", "TabPassword": "Mot de passe", - "TabLibraryAccess": "Acc\u00e8s aux biblioth\u00e8ques", + "TabLibraryAccess": "Acc\u00e8s aux m\u00e9diath\u00e8ques", "TabAccess": "Acc\u00e8s", "TabImage": "Image", "TabProfile": "Profil", @@ -105,76 +89,80 @@ "TabNotifications": "Notifications", "TabCollectionTitles": "Titres", "HeaderDeviceAccess": "Acc\u00e8s \u00e0 l'appareil", - "OptionEnableAccessFromAllDevices": "Autoriser depuis tous les appareils", + "OptionEnableAccessFromAllDevices": "Autoriser l'acc\u00e8s depuis tous les appareils", "OptionEnableAccessToAllChannels": "Activer l'acc\u00e8s \u00e0 toutes les cha\u00eenes", "OptionEnableAccessToAllLibraries": "Activer l'acc\u00e8s \u00e0 toutes les librairies", - "DeviceAccessHelp": "Ceci ne s'applique qu'aux appareils qui peuvent \u00eatre identifi\u00e9s de mani\u00e8re unique et qui n'emp\u00eachent pas l'acc\u00e8s au navigateur. Le filtrage de l'acc\u00e8s aux appareil par utilisateur emp\u00eachera l'utilisation de nouveaux appareils jusqu'\u00e0 ce qu'ils soient approuv\u00e9s ici.", + "DeviceAccessHelp": "Ceci ne s'applique qu'aux appareils qui peuvent \u00eatre identifi\u00e9s de mani\u00e8re unique et n'emp\u00eachera pas l'acc\u00e8s par navigateur. Le filtrage de l'acc\u00e8s aux appareil par utilisateur emp\u00eachera l'utilisation de nouveaux appareils jusqu'\u00e0 ce qu'ils soient approuv\u00e9s ici.", "LabelDisplayMissingEpisodesWithinSeasons": "Afficher les \u00e9pisodes manquants dans les saisons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Ceci doit \u00e9galement \u00eatre activ\u00e9 pour les m\u00e9diath\u00e8ques TV dans la configuration du serveur Emby.", "LabelUnairedMissingEpisodesWithinSeasons": "Afficher les \u00e9pisodes non diffus\u00e9s dans les saisons", - "HeaderVideoPlaybackSettings": "Param\u00e8tres de lecture video", + "ImportMissingEpisodesHelp": "Les informations \u00e0 propos des \u00e9pisodes manquants seront import\u00e9es dans votre base de donn\u00e9e Emby et affich\u00e9es dans les saisons et s\u00e9ries. Cela peut allonger significativement la dur\u00e9e de balayage de la m\u00e9diath\u00e8que.", + "HeaderVideoPlaybackSettings": "Param\u00e8tres de lecture vid\u00e9o", + "OptionDownloadInternetMetadataTvPrograms": "T\u00e9l\u00e9charger les m\u00e9tadonn\u00e9es depuis Internet pour les programmes figurants dans le guide", "HeaderPlaybackSettings": "Param\u00e8tres de lecture", - "LabelAudioLanguagePreference": "Param\u00e8tres de langue audio:", - "LabelSubtitleLanguagePreference": "Param\u00e8tres de langue de sous-titre", + "LabelAudioLanguagePreference": "Langue audio pr\u00e9f\u00e9r\u00e9e\u00a0:", + "LabelSubtitleLanguagePreference": "Langue de sous-titres pr\u00e9f\u00e9r\u00e9e\u00a0:", "OptionDefaultSubtitles": "Par d\u00e9faut", "OptionSmartSubtitles": "Intelligent", "OptionSmartSubtitlesHelp": "Les sous-titres de la langue pr\u00e9f\u00e9r\u00e9e seront charg\u00e9s lorsque la langue de la piste audio est \u00e9trang\u00e8re.", "OptionOnlyForcedSubtitles": "Seulement les sous-titres forc\u00e9s", "OptionAlwaysPlaySubtitles": "Toujours afficher les sous-titres", - "OptionDefaultSubtitlesHelp": "Les sous-titres seront charg\u00e9s depuis le langage par d\u00e9faut, et par ceux forc\u00e9s dans les m\u00e9ta-donn\u00e9es int\u00e9gr\u00e9es. Les pr\u00e9f\u00e9rences de langage seront utilis\u00e9es quand plusieurs options seront disponibles.", + "OptionDefaultSubtitlesHelp": "Les sous-titres seront charg\u00e9s selon les marqueurs par d\u00e9faut et forc\u00e9 dans les m\u00e9tadonn\u00e9es int\u00e9gr\u00e9es. Les langues pr\u00e9f\u00e9r\u00e9es seront utilis\u00e9es quand plusieurs options seront disponibles.", "OptionOnlyForcedSubtitlesHelp": "Seuls les sous-titres forc\u00e9s seront charg\u00e9s.", "OptionAlwaysPlaySubtitlesHelp": "Les sous-titres correspondants \u00e0 la langue pr\u00e9f\u00e9r\u00e9e seront charg\u00e9s quelque soit la langue de la piste audio.", - "OptionNoSubtitlesHelp": "Par d\u00e9faut, les sous-titres ne seront pas charg\u00e9s.", + "OptionNoSubtitlesHelp": "Les sous-titres ne seront pas charg\u00e9s par d\u00e9faut.", "TabProfiles": "Profils", "TabSecurity": "S\u00e9curit\u00e9", - "ButtonAddUser": "Ajouter utilisateur", - "ButtonInviteUser": "Utilisateur Invit\u00e9", - "ButtonSave": "Sauvegarder", + "ButtonAddUser": "Ajouter un utilisateur", + "ButtonInviteUser": "Inviter un utilisateur", + "ButtonSave": "Enregistrer", "ButtonResetPassword": "R\u00e9initialiser le mot de passe", "LabelNewPassword": "Nouveau mot de passe :", "LabelNewPasswordConfirm": "Confirmer le nouveau mot de passe :", "HeaderCreatePassword": "Cr\u00e9er un mot de passe", "LabelCurrentPassword": "Mot de passe actuel :", - "LabelMaxParentalRating": "Note maximale d'\u00e9valuation de contr\u00f4le parental:", - "MaxParentalRatingHelp": "Le contenu avec une note d'\u00e9valuation de contr\u00f4le parental plus \u00e9lev\u00e9e ne sera pas visible par cet utilisateur.", - "LibraryAccessHelp": "Selectionnez le r\u00e9pertoire de m\u00e9dia \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier tous les r\u00e9pertoires en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.", - "ChannelAccessHelp": "S\u00e9lectionner les cha\u00eenes \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier toutes les cha\u00eenes par le gestionnaire de m\u00e9tadonn\u00e9es.", + "LabelMaxParentalRating": "Note maximale de classification du contr\u00f4le parental\u00a0:", + "MaxParentalRatingHelp": "Le contenu ayant une note de classification du contr\u00f4le parental plus \u00e9lev\u00e9e ne sera pas visible par cet utilisateur.", + "LibraryAccessHelp": "S\u00e9lectionnez les dossiers multim\u00e9dia \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier tous les dossiers en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.", + "ChannelAccessHelp": "S\u00e9lectionnez les cha\u00eenes \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier toutes les cha\u00eenes en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.", "ButtonDeleteImage": "Supprimer l'image", - "LabelSelectUsers": "S\u00e9lectionner des utilisateurs:", - "ButtonUpload": "Upload", - "HeaderUploadNewImage": "Uploader une nouvelle image", + "LabelSelectUsers": "S\u00e9lectionner des utilisateurs\u00a0:", + "ButtonUpload": "Envoyer", + "HeaderUploadNewImage": "Transf\u00e9rer une nouvelle image", "ImageUploadAspectRatioHelp": "Rapport d'aspect 1:1 recommand\u00e9. Seulement JPG\/PNG.", - "MessageNothingHere": "Rien ici.", + "MessageNothingHere": "Il n'y a rien ici.", "MessagePleaseEnsureInternetMetadata": "Veuillez vous assurer que le t\u00e9l\u00e9chargement des m\u00e9tadonn\u00e9es depuis Internet est activ\u00e9.", - "TabSuggested": "Sugg\u00e9r\u00e9s", + "AlreadyPaidHelp1": "Si vous avez d\u00e9j\u00e0 payer pour l'installation d'une ancienne version de Media Browser for Android, vous n'avez pas besoin de payer \u00e0 nouveau pour activer l'application. Cliquez sur OK pour nous envoyer un courriel \u00e0 {0} et nous l'activerons pour vous.", + "AlreadyPaidHelp2": "Vous avez Emby Premiere? annuler cette bo\u00eete de dialogue, la configuration d\u2019Emby Premiere dans votre Dashboard Emby Server sous Aide -> Emby Premiere, et il se d\u00e9verrouille automatiquement.", "TabSuggestions": "Suggestions", - "TabLatest": "Plus r\u00e9cents", + "TabLatest": "Derniers", "TabUpcoming": "\u00c0 venir", "TabShows": "S\u00e9ries", "TabEpisodes": "\u00c9pisodes", "TabGenres": "Genres", - "TabPeople": "Personnes", "TabNetworks": "R\u00e9seaux", "HeaderUsers": "Utilisateurs", "HeaderFilters": "Filtres", "ButtonFilter": "Filtre", "OptionFavorite": "Favoris", "OptionLikes": "Aim\u00e9s", - "OptionDislikes": "Non aim\u00e9s", + "OptionDislikes": "Pas aim\u00e9s", "OptionActors": "Acteur(trice)s", - "OptionGuestStars": "Invit\u00e9s sp\u00e9ciaux", + "OptionGuestStars": "Guest stars", "OptionDirectors": "R\u00e9alisateurs", - "OptionWriters": "Auteur(e)s", + "OptionWriters": "Sc\u00e9naristes", "OptionProducers": "Producteurs", "HeaderResume": "Reprendre", - "HeaderNextUp": "Prochains \u00e0 voir", - "NoNextUpItemsMessage": "Aucun \u00e9l\u00e9ment trouv\u00e9. Commencez \u00e0 regarder vos s\u00e9ries!", - "HeaderLatestEpisodes": "\u00c9pisodes les plus r\u00e9cents", - "HeaderPersonTypes": "Types de personne:", + "HeaderContinueWatching": "Continuer la lecture", + "HeaderNextUp": "\u00c0 suivre", + "NoNextUpItemsMessage": "Aucun \u00e9l\u00e9ment trouv\u00e9. Commencez \u00e0 regarder vos s\u00e9ries\u00a0!", + "HeaderLatestEpisodes": "Derniers \u00e9pisodes", + "HeaderPersonTypes": "Types de personne\u00a0:", "TabSongs": "Chansons", "TabAlbums": "Albums", "TabArtists": "Artistes", "TabAlbumArtists": "Artistes sur l'album", - "TabMusicVideos": "Videos musicales", + "TabMusicVideos": "Vid\u00e9os musicales", "ButtonSort": "Tri", "OptionPlayed": "Lu", "OptionUnplayed": "Non lu", @@ -183,8 +171,9 @@ "OptionRuntime": "Dur\u00e9e", "OptionReleaseDate": "Date de sortie", "OptionPlayCount": "Nombre de lectures", - "OptionDatePlayed": "Date lu", + "OptionDatePlayed": "Date de lecture", "OptionDateAdded": "Date d'ajout", + "DateAddedValue": "Date d'ajout\u00a0: {0}", "OptionAlbumArtist": "Artiste de l'album", "OptionArtist": "Artiste", "OptionAlbum": "Album", @@ -193,45 +182,43 @@ "OptionNameSort": "Nom", "OptionFolderSort": "R\u00e9pertoires", "OptionBudget": "Budget", - "OptionRevenue": "Recettes", + "OptionRevenue": "Recette", "OptionPoster": "Affiche", - "OptionPosterCard": "Carte Affiche", + "OptionPosterCard": "Carte d'affiche", "OptionBackdrop": "Image d'arri\u00e8re-plan", "OptionTimeline": "Chronologie", "OptionThumb": "Vignette", - "OptionThumbCard": "Carte Vignette", + "OptionThumbCard": "Carte de vignette", "OptionBanner": "Banni\u00e8re", "OptionCriticRating": "Note des critiques", "OptionVideoBitrate": "D\u00e9bit vid\u00e9o", "OptionResumable": "Reprise possible", - "ScheduledTasksHelp": "S\u00e9lectionnez une t\u00e2che pour ajuster sa programmation.", - "ScheduledTasksTitle": "T\u00e2ches planifi\u00e9es", - "TabMyPlugins": "Mes plugins", + "ScheduledTasksHelp": "S\u00e9lectionnez une t\u00e2che pour ajuster sa planification.", + "TabMyPlugins": "Mes extensions", "TabCatalog": "Catalogue", - "TitlePlugins": "Plugins", + "TitlePlugins": "Extensions", "HeaderAutomaticUpdates": "Mises \u00e0 jour automatiques", "HeaderNowPlaying": "Lecture en cours", "HeaderLatestAlbums": "Derniers albums", "HeaderLatestSongs": "Derni\u00e8res chansons", "HeaderRecentlyPlayed": "Lus r\u00e9cemment", "HeaderFrequentlyPlayed": "Fr\u00e9quemment lus", - "DevBuildWarning": "Les versions Dev incorporent les tous derniers d\u00e9veloppements. Mises \u00e0 jour fr\u00e9quemment, ces versions ne sont pas test\u00e9es. L'application peut planter et il se peut que des pans entiers de fonctionnalit\u00e9s soient d\u00e9faillants.", "LabelVideoType": "Type de vid\u00e9o:", "OptionBluray": "Bluray", "OptionDvd": "DVD", "OptionIso": "ISO", "Option3D": "3D", - "LabelStatus": "Statut:", + "LabelStatus": "\u00c9tat\u00a0:", "LabelLastResult": "Dernier r\u00e9sultat :", "OptionHasSubtitles": "Sous-titres", "OptionHasTrailer": "Bande-annonce", "OptionHasThemeSong": "Chanson th\u00e8me", - "OptionHasThemeVideo": "Vid\u00e9o th\u00e8me", + "OptionHasThemeVideo": "Vid\u00e9o du g\u00e9n\u00e9rique", "TabMovies": "Films", "TabStudios": "Studios", "TabTrailers": "Bandes-annonces", - "LabelArtists": "Artistes", - "LabelArtistsHelp": "S\u00e9parer les \u00e9l\u00e9ments par un point-virgule ;", + "LabelArtists": "Artistes\u00a0:", + "LabelArtistsHelp": "S\u00e9parer les \u00e9l\u00e9ments par un point-virgule \u00ab\u00a0;\u00a0\u00bb", "HeaderLatestTrailers": "Derni\u00e8res bandes-annonces", "OptionHasSpecialFeatures": "Bonus", "OptionImdbRating": "Note IMDb", @@ -239,7 +226,7 @@ "OptionPremiereDate": "Date de la premi\u00e8re", "TabBasic": "Standard", "TabAdvanced": "Avanc\u00e9", - "OptionContinuing": "En continuation", + "OptionContinuing": "En cours", "OptionEnded": "Termin\u00e9", "HeaderAirDays": "Jours de diffusion", "OptionSundayShort": "Dim", @@ -268,105 +255,97 @@ "TabBecomeSupporter": "Obtenez Emby Premiere", "TabEmbyPremiere": "Emby Premiere", "ProjectHasCommunity": "Emby b\u00e9n\u00e9ficie d'une communaut\u00e9 florissante d'utilisateurs et de contributeurs.", - "CheckoutKnowledgeBase": "Jetez un oeil \u00e0 notre base de connaissance pour tirer le meilleur parti d'Emby.", + "CheckoutKnowledgeBase": "Jetez un coup d'\u0153il \u00e0 notre base de connaissance pour tirer le meilleur parti d'Emby.", "SearchKnowledgeBase": "Rechercher dans la base de connaissances", "VisitTheCommunity": "Visiter la Communaut\u00e9", - "VisitProjectWebsite": "Visiter le site web de Emby", + "VisitProjectWebsite": "Visiter le site web d'Emby", "VisitProjectWebsiteLong": "Consultez le site web d'Emby pour vous tenir inform\u00e9 des derni\u00e8res actualit\u00e9s et billets du blog des d\u00e9veloppeurs.", "OptionHideUser": "Ne pas afficher cet utilisateur dans les \u00e9crans de connexion", "OptionHideUserFromLoginHelp": "Recommand\u00e9 pour les comptes administrateurs priv\u00e9s ou cach\u00e9s. L'utilisateur devra s'authentifier manuellement en entrant son login et mot de passe.", "OptionDisableUser": "D\u00e9sactiver cet utilisateur", "OptionDisableUserHelp": "Si d\u00e9sactiv\u00e9, le serveur n'autorisera pas de connexion de cet utilisateur. Les connexions existantes seront interrompues.", - "HeaderAdvancedControl": "Contr\u00f4le avanc\u00e9", - "LabelName": "Nom", + "LabelName": "Nom\u00a0:", "ButtonHelp": "Aide", "OptionAllowUserToManageServer": "Autoriser la gestion du serveur \u00e0 cet utilisateur", "HeaderFeatureAccess": "Acc\u00e8s aux fonctionnalit\u00e9s", - "OptionAllowMediaPlayback": "Autoriser la lecture de m\u00e9dias", - "OptionAllowBrowsingLiveTv": "Autoriser l'acc\u00e8s \u00e0 la TV Live", - "OptionAllowDeleteLibraryContent": "Autoriser la suppression de m\u00e9dias", - "OptionAllowManageLiveTv": "Autoriser la gestion des enregistrements de TV Live", + "OptionAllowMediaPlayback": "Autoriser la lecture de m\u00e9dia", + "OptionAllowBrowsingLiveTv": "Autoriser l'acc\u00e8s \u00e0 la TV en direct", + "OptionAllowDeleteLibraryContent": "Autoriser la suppression de m\u00e9dia", + "OptionAllowManageLiveTv": "Autoriser la gestion des enregistrements de TV en direct", "OptionAllowRemoteControlOthers": "Autoriser le contr\u00f4le \u00e0 distance des autres utilisateurs", "OptionAllowRemoteSharedDevices": "Autoriser le contr\u00f4le \u00e0 distance des appareils partag\u00e9s", - "OptionAllowRemoteSharedDevicesHelp": "Les p\u00e9riph\u00e9riques Dlna sont consid\u00e9r\u00e9s comme partag\u00e9s tant qu'un utilisateur ne commence pas \u00e0 le contr\u00f4ler.", - "OptionAllowLinkSharing": "Autoriser le partage sur les r\u00e9seaux sociaux", - "OptionAllowLinkSharingHelp": "Seules les pages Web contenant des informations de m\u00e9dias sont partag\u00e9s. Les fichiers multim\u00e9dias ne sont jamais partag\u00e9s publiquement. Les actions sont limit\u00e9es dans le temps et expirent apr\u00e8s {0} jours.", - "HeaderSharing": "Partage", + "OptionAllowRemoteSharedDevicesHelp": "Les appareils DLNA sont consid\u00e9r\u00e9s comme partag\u00e9s tant qu'un utilisateur ne commence pas \u00e0 les contr\u00f4ler.", + "OptionAllowLinkSharing": "Autoriser le partage de m\u00e9dia sur les r\u00e9seaux sociaux", + "OptionAllowLinkSharingHelp": "Seules les pages Web contenant des informations de m\u00e9dias sont partag\u00e9s. Les fichiers multim\u00e9dias ne sont jamais partag\u00e9s publiquement. Les partages sont limit\u00e9s dans le temps et expirent apr\u00e8s {0} jours.", "HeaderRemoteControl": "Contr\u00f4le \u00e0 distance", "OptionMissingTmdbId": "ID TMDb manquant", "OptionIsHD": "HD", "OptionIsSD": "SD", - "OptionMetascore": "Metascore", + "OptionMetascore": "M\u00e9tascore", "ButtonSelect": "S\u00e9lectionner", - "PismoMessage": "Utilisation de \"Pismo File Mount\" par une licence fournie.", - "TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.", + "PismoMessage": "Utilisation de Pismo File Mount par une licence fournie.", + "TangibleSoftwareMessage": "Utilisation de convertisseurs Java\/C# de Tangible Solutions par une licence fournie.", "HeaderCredits": "Cr\u00e9dits", "PleaseSupportOtherProduces": "Merci de soutenir les autres produits gratuits que nous utilisons :", "VersionNumber": "Version {0}", - "TabPaths": "Chemins d'acc\u00e8s", + "TabPaths": "Chemins", "TabServer": "Serveur", "TabTranscoding": "Transcodage", - "TitleAdvanced": "Avanc\u00e9", "OptionRelease": "Version officielle", - "OptionBeta": "Beta", - "OptionDev": "Dev (Instable)", "LabelAllowServerAutoRestart": "Autoriser le red\u00e9marrage automatique du serveur pour appliquer les mises \u00e0 jour", "LabelAllowServerAutoRestartHelp": "Le serveur ne red\u00e9marrera que pendant les p\u00e9riodes d'inactivit\u00e9, quand aucun utilisateur n'est connect\u00e9.", "LabelRunServerAtStartup": "D\u00e9marrer le serveur au d\u00e9marrage", "LabelRunServerAtStartupHelp": "Ceci va d\u00e9marrer l'ic\u00f4ne dans la barre des t\u00e2ches au d\u00e9marrage de Windows. Pour d\u00e9marrer le service Windows, d\u00e9cochez cette case et ex\u00e9cutez le service \u00e0 partir du panneau de configuration Windows. Veuillez noter que vous ne pouvez pas ex\u00e9cuter les deux en m\u00eame temps ; par cons\u00e9quent, vous devrez fermer l'ic\u00f4ne dans la barre des t\u00e2ches avant de d\u00e9marrer le service.", "ButtonSelectDirectory": "S\u00e9lectionner le r\u00e9pertoire", "LabelCachePath": "Chemin du cache :", - "LabelCachePathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les fichier temporaires du serveur, comme par exemple les images. Laissez vide pour utiliser la valeur par d\u00e9faut.", - "LabelRecordingPath": "Chemin d'enregistrement par d\u00e9faut:", - "LabelMovieRecordingPath": "Chemin d'enregistrement du film (optionnel):", - "LabelSeriesRecordingPath": "Chemin d'enregistrement de la s\u00e9rie (optionnel):", - "LabelRecordingPathHelp": "Sp\u00e9cifie l'emplacement par d\u00e9faut o\u00f9 sauvegarder les enregistrements. Si laiss\u00e9 vide, le dossier program data du serveur sera utilis\u00e9.", + "LabelCachePathHelp": "Sp\u00e9cifiez un emplacement personnalis\u00e9 pour les fichiers temporaires du serveur, comme par exemple les images. Laissez vide pour utiliser la valeur par d\u00e9faut.", + "LabelRecordingPath": "Chemin d'enregistrement par d\u00e9faut\u00a0:", + "LabelMovieRecordingPath": "Chemin d'enregistrement des films (optionnel)\u00a0:", + "LabelSeriesRecordingPath": "Chemin d'enregistrement des s\u00e9ries (optionnel)\u00a0:", + "LabelRecordingPathHelp": "Sp\u00e9cifiez l'emplacement par d\u00e9faut o\u00f9 sauvegarder les enregistrements. Sinon le dossier de donn\u00e9es programme du serveur sera utilis\u00e9.", "LabelMetadataPath": "Chemin des m\u00e9tadonn\u00e9es :", - "LabelMetadataPathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les images d'art et les m\u00e9tadonn\u00e9es t\u00e9l\u00e9charg\u00e9es.", + "LabelMetadataPathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les images et les m\u00e9tadonn\u00e9es t\u00e9l\u00e9charg\u00e9es.", "LabelTranscodingTempPath": "Chemin d'acc\u00e8s du r\u00e9pertoire temporaire de transcodage :", - "LabelTranscodingTempPathHelp": "Ce r\u00e9pertoire contient les fichiers temporaires utilis\u00e9s par le transcodeur. Sp\u00e9cifier un chemin personnalis\u00e9 ou laisser vide pour utiliser le chemin par d\u00e9faut des r\u00e9pertoires du serveur", + "LabelTranscodingTempPathHelp": "Ce dossier contient les fichiers temporaires utilis\u00e9s par le transcodeur. Sp\u00e9cifiez un chemin personnalis\u00e9 ou laissez vide pour utiliser le chemin par d\u00e9faut dans le dossier de donn\u00e9es du serveur.", "TabBasics": "Standards", "TabTV": "TV", "TabGames": "Jeux", "TabMusic": "Musique", "TabOthers": "Autres", - "HeaderExtractChapterImagesFor": "Extraire les images de chapitres pour :", "OptionMovies": "Films", "OptionEpisodes": "\u00c9pisodes", "OptionOtherVideos": "Autres vid\u00e9os", - "TitleMetadata": "M\u00e9tadonn\u00e9es", - "LabelFanartApiKey": "Cl\u00e9 d'api personnelle :", - "LabelFanartApiKeyHelp": "Les requ\u00eates de fanart sans cl\u00e9 d'api personnelle renvoient des r\u00e9sultats approuv\u00e9s il y a plus de 7 jours. Avec une cl\u00e9 d'api personnelle, cette valeur tombe \u00e0 48 heures, et si vous \u00eates aussi membre fanart VIP, cette valeur tombera encore plus, \u00e0 environ 10 minutes.", - "ExtractChapterImagesHelp": "L'extraction d'images de chapitre permettra aux clients d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources processeur et peut n\u00e9cessiter de nombreux gigaoctets de stockage. Il s'ex\u00e9cute quand des vid\u00e9os sont d\u00e9couvertes et \u00e9galement comme t\u00e2che planifi\u00e9e. La planification peut \u00eatre modifi\u00e9e dans les options du planificateur de tache. Il n'est pas conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che pendant les heures d'usage intensif.", - "LabelMetadataDownloadLanguage": "Langue de t\u00e9l\u00e9chargement pr\u00e9f\u00e9r\u00e9e:", + "LabelFanartApiKey": "Cl\u00e9 d'API personnelle :", + "LabelFanartApiKeyHelp": "Les requ\u00eates de fanart sans cl\u00e9 d'API personnelle renvoient des r\u00e9sultats approuv\u00e9s il y a plus de 7 jours. Avec une cl\u00e9 d'API personnelle, cette valeur descend \u00e0 48 heures, et si vous \u00eates aussi membre fanart VIP, cette valeur descendra encore plus, \u00e0 environ 10 minutes.", + "ExtractChapterImagesHelp": "L'extraction d'images de chapitre permettra aux applications Emby d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources processeur et peut n\u00e9cessiter de nombreux gigaoctets de stockage. Il s'ex\u00e9cute quand des vid\u00e9os sont d\u00e9couvertes et \u00e9galement comme t\u00e2che planifi\u00e9e. La planification peut \u00eatre modifi\u00e9e dans les options du planificateur de tache. Il n'est pas conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che pendant les heures d'usage intensif.", + "LabelMetadataDownloadLanguage": "Langue de t\u00e9l\u00e9chargement pr\u00e9f\u00e9r\u00e9e\u00a0:", "ButtonSignIn": "Se connecter", "TitleSignIn": "Se connecter", "HeaderPleaseSignIn": "Merci de vous identifier", "LabelUser": "Utilisateur:", "LabelPassword": "Mot de passe:", "ButtonManualLogin": "Connexion manuelle", - "TabGuide": "Guide horaire", + "TabGuide": "Guide", "TabChannels": "Cha\u00eenes", "TabCollections": "Collections", "HeaderChannels": "Cha\u00eenes", "TabRecordings": "Enregistrements", - "TabScheduled": "Planifi\u00e9s", "TabSeries": "S\u00e9ries", "TabFavorites": "Favoris", - "TabMyLibrary": "Ma Biblioth\u00e8que", + "TabMyLibrary": "Ma m\u00e9diath\u00e8que", "ButtonCancelRecording": "Annuler l'enregistrement", - "LabelPrePaddingMinutes": "Minutes de Pr\u00e9-remplissage:", - "LabelPostPaddingMinutes": "Minutes de \"post-padding\":", - "HeaderWhatsOnTV": "\u00c0 l'affiche", - "TabStatus": "\u00c9tat", + "LabelStartWhenPossible": "Commencer si possible\u00a0:", + "LabelStopWhenPossible": "Arr\u00eater si possible\u00a0:", + "MinutesBefore": "minutes avant", + "MinutesAfter": "minutes apr\u00e8s", + "HeaderWhatsOnTV": "En ce moment", "TabSettings": "Param\u00e8tres", - "ButtonRefreshGuideData": "Rafra\u00eechir les donn\u00e9es du guide horaire.", + "ButtonRefreshGuideData": "Actualiser les donn\u00e9es du guide.", "ButtonRefresh": "Actualiser", "OptionPriority": "Priorit\u00e9", "OptionRecordOnAllChannels": "Enregistrer sur toutes les cha\u00eenes", - "OptionRecordAnytime": "Enregistrer \u00e0 n'importe quelle heure\/journ\u00e9e", + "OptionRecordAnytime": "Enregistrer \u00e0 n'importe quel moment", "OptionRecordOnlyNewEpisodes": "Enregistrer seulement les nouveaux \u00e9pisodes", - "HeaderRepeatingOptions": "Options de r\u00e9p\u00e9tition", "HeaderDays": "Jours", "HeaderActiveRecordings": "Enregistrements actifs", "HeaderLatestRecordings": "Derniers enregistrements", @@ -376,14 +355,14 @@ "ButtonRecord": "Enregistrer", "ButtonDelete": "Supprimer", "ButtonRemove": "Supprimer", - "OptionRecordSeries": "Enregistrer S\u00e9ries", + "OptionRecordSeries": "Enregistrer la s\u00e9rie", "HeaderDetails": "D\u00e9tails", "TitleLiveTV": "TV en direct", - "LabelNumberOfGuideDays": "Nombre de jours de donn\u00e9es du guide \u00e0 t\u00e9l\u00e9charger:", - "LabelNumberOfGuideDaysHelp": "Le t\u00e9l\u00e9chargement de plus de journ\u00e9es dans le guide horaire permet de programmer des enregistrements plus longtemps \u00e0 l'avance et de visualiser plus de contenus, mais prendra \u00e9galement plus de temps. \"Auto\" permettra une s\u00e9lection automatique bas\u00e9e sur le nombre de cha\u00eenes.", - "OptionAutomatic": "Auto", + "LabelNumberOfGuideDays": "Nombre de jours de donn\u00e9es du guide \u00e0 t\u00e9l\u00e9charger\u00a0:", + "LabelNumberOfGuideDaysHelp": "T\u00e9l\u00e9charger plus de journ\u00e9es du guide permet de programmer des enregistrements plus longtemps \u00e0 l'avance et de visualiser plus de contenus, mais prendra \u00e9galement plus de temps. Automatique permettra une s\u00e9lection automatique bas\u00e9e sur le nombre de cha\u00eenes.", + "OptionAutomatic": "Automatique", "HeaderServices": "Services", - "LabelCustomizeOptionsPerMediaType": "Personnaliser pour le type de m\u00e9dia:", + "LabelCustomizeOptionsPerMediaType": "Personnaliser pour le type de m\u00e9dia\u00a0:", "OptionDownloadThumbImage": "Vignette", "OptionDownloadMenuImage": "Menu", "OptionDownloadLogoImage": "Logo", @@ -393,99 +372,88 @@ "OptionDownloadBackImage": "Dos", "OptionDownloadArtImage": "Art", "OptionDownloadPrimaryImage": "Principal", - "HeaderFetchImages": "T\u00e9l\u00e9charger Images:", + "HeaderFetchImages": "T\u00e9l\u00e9charger les images\u00a0:", "HeaderImageSettings": "Param\u00e8tres d'image", "TabOther": "Autre", - "LabelMaxBackdropsPerItem": "Nombre maximum d'images d'arri\u00e8re-plan par item:", - "LabelMaxScreenshotsPerItem": "Nombre maximum de captures d'\u00e9cran par item:", - "LabelMinBackdropDownloadWidth": "Largeur minimum d'image d'arri\u00e8re-plan \u00e0 t\u00e9l\u00e9charger:", - "LabelMinScreenshotDownloadWidth": "Largeur minimum de capture d'\u00e9cran \u00e0 t\u00e9l\u00e9charger:", + "LabelMaxBackdropsPerItem": "Nombre maximum d'images d'arri\u00e8re-plan par \u00e9l\u00e9ment\u00a0:", + "LabelMaxScreenshotsPerItem": "Nombre maximum de captures d'\u00e9cran par \u00e9l\u00e9ment\u00a0:", + "LabelMinBackdropDownloadWidth": "Largeur minimum d'image d'arri\u00e8re-plan \u00e0 t\u00e9l\u00e9charger\u00a0:", + "LabelMinScreenshotDownloadWidth": "Largeur minimum de capture d'\u00e9cran \u00e0 t\u00e9l\u00e9charger\u00a0:", "ButtonAddScheduledTaskTrigger": "Ajouter un d\u00e9clencheur", "HeaderAddScheduledTaskTrigger": "Ajouter un d\u00e9clencheur", "ButtonAdd": "Ajouter", - "LabelTriggerType": "Type de d\u00e9clencheur:", + "LabelTriggerType": "Type de d\u00e9clencheur\u00a0:", "OptionDaily": "Quotidien", "OptionWeekly": "Hebdomadaire", "OptionOnInterval": "Par intervalle", - "OptionOnAppStartup": "Par d\u00e9marrage de l'application", + "OptionOnAppStartup": "Au d\u00e9marrage de l'application", "OptionAfterSystemEvent": "Apr\u00e8s un \u00e9v\u00e8nement syst\u00e8me", "LabelDay": "Jour :", - "LabelTime": "Heure:", - "LabelEvent": "\u00c9v\u00e8nement:", + "LabelTime": "Heure\u00a0:", + "LabelEvent": "\u00c9v\u00e8nement\u00a0:", "OptionWakeFromSleep": "Sortie de veille", "LabelEveryXMinutes": "Tous les :", "HeaderTvTuners": "Tuners", "HeaderLatestGames": "Jeux les plus r\u00e9cents", "HeaderRecentlyPlayedGames": "Jeux r\u00e9cemment jou\u00e9s", - "TabGameSystems": "Plate-formes de jeux:", - "TitleMediaLibrary": "Biblioth\u00e8que de m\u00e9dias", + "TabGameSystems": "Plateformes de jeux", "TabFolders": "R\u00e9pertoires", "TabPathSubstitution": "Substitution de chemin d'acc\u00e8s", "LabelSeasonZeroDisplayName": "Nom d'affichage des saisons 0 \/ hors-saison :", "LabelEnableRealtimeMonitor": "Activer la surveillance en temps r\u00e9el", "LabelEnableRealtimeMonitorHelp": "Les changements seront trait\u00e9s imm\u00e9diatement, sur les syst\u00e8mes de fichiers qui le permettent.", - "ButtonScanLibrary": "Scanner la biblioth\u00e8que", + "ButtonScanLibrary": "Balayer la m\u00e9diath\u00e8que", "HeaderNumberOfPlayers": "Lecteurs", - "OptionAnyNumberOfPlayers": "N'importe quel:", + "OptionAnyNumberOfPlayers": "N'importe", "Option1Player": "1+", "Option2Player": "2+", "Option3Player": "3+", "Option4Player": "4+", - "HeaderMediaFolders": "R\u00e9pertoires de m\u00e9dias", - "HeaderThemeVideos": "Vid\u00e9os th\u00e8mes", - "HeaderThemeSongs": "Chansons Th\u00e8mes", + "HeaderMediaFolders": "Dossiers multim\u00e9dias", + "HeaderThemeVideos": "Vid\u00e9os de g\u00e9n\u00e9rique", + "HeaderThemeSongs": "Th\u00e8mes musicaux", "HeaderScenes": "Sc\u00e8nes", - "HeaderAwardsAndReviews": "Prix et Critiques", + "HeaderAwardsAndReviews": "Prix et critiques", "HeaderSoundtracks": "Bande originale", - "HeaderMusicVideos": "Vid\u00e9os Musicaux", + "HeaderMusicVideos": "Vid\u00e9os musicales", "HeaderSpecialFeatures": "Bonus", - "HeaderCastCrew": "\u00c9quipe de tournage", - "HeaderAdditionalParts": "Parties Additionelles", + "HeaderCastCrew": "Casting", + "HeaderAdditionalParts": "Parties additionelles", "ButtonSplitVersionsApart": "S\u00e9parer les versions", "ButtonPlayTrailer": "Bande-annonce", - "LabelMissing": "Manquant(s)", - "LabelOffline": "Hors ligne", - "PathSubstitutionHelp": "Les substitutions de chemins d'acc\u00e8s sont utilis\u00e9es pour faire correspondre un chemin d'acc\u00e8s du serveur \u00e0 un chemin d'acc\u00e8s accessible par les clients. En autorisant un acc\u00e8s direct aux m\u00e9dias du serveur, les clients pourront les lire directement du r\u00e9seau et \u00e9viter l'utilisation inutiles des ressources du serveur en demandant du transcodage.", - "HeaderFrom": "De", - "HeaderTo": "\u00c0", - "LabelFrom": "De :", - "LabelTo": "\u00c0:", - "LabelToHelp": "Exemple: \\\\MonServeur\\Films (le chemin d'acc\u00e8s par lequel vous pourrez y acc\u00e9der)", - "ButtonAddPathSubstitution": "Ajouter une substitution", + "LabelMissing": "Manquant", "OptionSpecialEpisode": "Sp\u00e9ciaux", "OptionMissingEpisode": "\u00c9pisodes manquantes", "OptionUnairedEpisode": "\u00c9pisodes non diffus\u00e9s", - "OptionEpisodeSortName": "Nom de tri d'\u00e9pisode", - "OptionSeriesSortName": "Nom de s\u00e9ries", - "OptionTvdbRating": "Note d'\u00e9valuation Tvdb", - "EditCollectionItemsHelp": "Ajoutez ou supprimez n'importe quel film, s\u00e9rie, album, livre ou jeux que vous souhaitez grouper dans cette collection.", + "OptionEpisodeSortName": "Nom de tri de l'\u00e9pisode", + "OptionSeriesSortName": "Nom de la s\u00e9rie", + "OptionTvdbRating": "Note d'\u00e9valuation TVDb", "HeaderAddTitles": "Ajouter des \u00e9l\u00e9ments", - "LabelEnableDlnaPlayTo": "Activer DLNA \"Lire sur\"", - "LabelEnableDlnaPlayToHelp": "Emby peut d\u00e9tecter les p\u00e9riph\u00e9riques de votre r\u00e9seau et offre la possibilit\u00e9 de les controler \u00e0 distance.", + "LabelEnableDlnaPlayTo": "Activer Lire sur en DLNA", + "LabelEnableDlnaPlayToHelp": "Emby peut d\u00e9tecter les appareils de votre r\u00e9seau et offre la possibilit\u00e9 de les contr\u00f4ler \u00e0 distance.", "LabelEnableDlnaDebugLogging": "Activer le d\u00e9bogage DLNA dans le journal d'\u00e9v\u00e9nements", - "LabelEnableDlnaDebugLoggingHelp": "Ceci va g\u00e9n\u00e9rer de gros fichiers de journal d'\u00e9v\u00e9nements et ne devrait \u00eatre utiliser seulement pour des besoins de diagnostic d'erreur.", + "LabelEnableDlnaDebugLoggingHelp": "Ceci va g\u00e9n\u00e9rer de gros fichiers de journal d'\u00e9v\u00e9nements et ne devrait \u00eatre utiliser que pour des diagnostics d'erreur.", "LabelEnableDlnaClientDiscoveryInterval": "Intervalle de d\u00e9couverte des clients (secondes)", "LabelEnableDlnaClientDiscoveryIntervalHelp": "D\u00e9termine la dur\u00e9e en secondes entre les recherches SSDP ex\u00e9cut\u00e9es par Emby.", "HeaderCustomDlnaProfiles": "Profils personnalis\u00e9s", - "HeaderSystemDlnaProfiles": "Profils syst\u00e8mes", + "HeaderSystemDlnaProfiles": "Profils syst\u00e8me", "CustomDlnaProfilesHelp": "Cr\u00e9ez un profil personnalis\u00e9 pour cibler un nouvel appareil ou remplacer un profil syst\u00e8me.", - "SystemDlnaProfilesHelp": "Les profils syst\u00e8mes sont en lecture seule. Les modifications apport\u00e9es \u00e0 un profil syst\u00e8me seront enregistr\u00e9es sous un nouveau profil personnalis\u00e9.", - "TitleDashboard": "Tableau de bord", + "SystemDlnaProfilesHelp": "Les profils syst\u00e8me sont en lecture seule. Les modifications apport\u00e9es \u00e0 un profil syst\u00e8me seront enregistr\u00e9es sous un nouveau profil personnalis\u00e9.", "TabHome": "Accueil", "TabInfo": "Info", "HeaderLinks": "Liens", "LinkCommunity": "Communaut\u00e9", "LinkGithub": "Github", - "LinkApi": "Api", - "LabelFriendlyServerName": "Surnom du serveur:", - "LabelFriendlyServerNameHelp": "Ce nom sera utilis\u00e9 pour identifier le serveur. Si laiss\u00e9 vide, le nom d'ordinateur sera utilis\u00e9.", + "LinkApi": "API", + "LabelFriendlyServerName": "Surnom du serveur\u00a0:", + "LabelFriendlyServerNameHelp": "Ce nom sera utilis\u00e9 pour identifier le serveur. Sinon le nom d'ordinateur sera utilis\u00e9.", "LabelPreferredDisplayLanguage": "Langue d'affichage pr\u00e9f\u00e9r\u00e9e :", "LabelPreferredDisplayLanguageHelp": "La traduction d'Emby est un projet en cours.", "LabelReadHowYouCanContribute": "Voir comment vous pouvez contribuer.", "ButtonSubmit": "Soumettre", "ButtonCreate": "Cr\u00e9er", - "LabelCustomCss": "Css personnalis\u00e9e :", - "LabelCustomCssHelp": "Appliquez votre propre feuille de styles css personnalis\u00e9e \u00e0 l'interface web.", + "LabelCustomCss": "CSS personnalis\u00e9e :", + "LabelCustomCssHelp": "Appliquez votre propre feuille de styles CSS personnalis\u00e9e \u00e0 l'interface web.", "LabelLocalHttpServerPortNumber": "Num\u00e9ro de port http local :", "LabelLocalHttpServerPortNumberHelp": "Le port TCP que le serveur http d'Emby doit utiliser.", "LabelPublicHttpPort": "Num\u00e9ro de port http public :", @@ -493,24 +461,23 @@ "LabelPublicHttpsPort": "Num\u00e9ro de port https public :", "LabelPublicHttpsPortHelp": "Le num\u00e9ro de port public \u00e0 mapper sur le port https local.", "LabelEnableHttps": "Renvoyer une url https en tant qu'adresse externe", - "LabelEnableHttpsHelp": "Activez cette option pour que le serveur renvoie une adresse https aux clients pour son adresse externe.", + "LabelEnableHttpsHelp": "Activez cette option pour que le serveur diffuse une adresse https aux applications Emby comme son adresse externe.", "LabelHttpsPort": "Num\u00e9ro de port https local :", "LabelHttpsPortHelp": "Le port TCP que le serveur https d'Emby doit utiliser.", "LabelEnableAutomaticPortMap": "Autoriser le mapping automatique de port", "LabelEnableAutomaticPortMapHelp": "Essayer de mapper automatiquement le port public au port local via UPnP. Cela peut ne pas fonctionner avec certains mod\u00e8les de routeurs.", - "LabelExternalDDNS": "Domaine ext\u00e9rieur:", - "LabelExternalDDNSHelp": "Si vous avez un DNS dynamique entrer ici. Les apps Emby vont l'utiliser lors de la connexion \u00e0 distance. Ce champ est obligatoire lorsqu'il est utilis\u00e9 avec un certificat ssl personnalis\u00e9.", + "LabelExternalDDNS": "Domaine ext\u00e9rieur\u00a0:", + "LabelExternalDDNSHelp": "Si vous avez un DNS dynamique entrez-le ici. Les applications Emby vont l'utiliser lors de la connexion \u00e0 distance. Ce champ est obligatoire lorsqu'il est utilis\u00e9 avec un certificat SSL personnalis\u00e9.", "TitleAppSettings": "Param\u00e8tre de l'application", - "LabelMinResumePercentage": "Pourcentage minimum pour reprendre:", - "LabelMaxResumePercentage": "Pourcentage maximum pour reprendre:", - "LabelMinResumeDuration": "Temps de reprise minimum (secondes):", + "LabelMinResumePercentage": "Pourcentage minimum pour reprendre\u00a0:", + "LabelMaxResumePercentage": "Pourcentage maximum pour reprendre\u00a0:", + "LabelMinResumeDuration": "Temps de reprise minimum (secondes)\u00a0:", "LabelMinResumePercentageHelp": "Les m\u00e9dias seront consid\u00e9r\u00e9s comme non lus si arr\u00eat\u00e9s avant ce temps", "LabelMaxResumePercentageHelp": "Les m\u00e9dias sont consid\u00e9r\u00e9s comme lus si arr\u00eat\u00e9s apr\u00e8s ce temps", "LabelMinResumeDurationHelp": "La lecture de m\u00e9dias plus courts que cette dur\u00e9e ne pourra pas \u00eatre reprise.", - "TitleAutoOrganize": "Auto-organisation", "TabActivityLog": "Journal d'activit\u00e9s", "TabSmartMatches": "Correspondances intelligentes", - "TabSmartMatchInfo": "Organiser vos correspondances intelligentes qui ont \u00e9t\u00e9 ajout\u00e9es \u00e0 l'aide du dialogue de l'auto-organisation", + "TabSmartMatchInfo": "Organisez vos correspondances intelligentes qui ont \u00e9t\u00e9 ajout\u00e9es \u00e0 l'aide du dialogue de l'auto-organisation", "HeaderName": "Nom", "HeaderDate": "Date", "HeaderSource": "Source", @@ -521,45 +488,43 @@ "LabelCompleted": "Termin\u00e9 avec succ\u00e8s", "LabelFailed": "\u00c9chou\u00e9", "LabelSkipped": "Saut\u00e9", - "LabelSeries": "S\u00e9ries :", - "LabelSeasonNumber": "Num\u00e9ro de la saison:", - "LabelEpisodeNumber": "Num\u00e9ro de l'\u00e9pisode:", - "LabelEndingEpisodeNumber": "Num\u00e9ro d'\u00e9pisode final:", - "LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes", - "OptionRememberOrganizeCorrection": "Enregistrer et appliquer cette correction aux fichiers futurs avec des noms similaires", - "HeaderSupportTheTeam": "Aidez l'\u00e9quipe Emby", - "HeaderSupportTheTeamHelp": "Aider \u00e0 garantir la continuit\u00e9 du d\u00e9veloppement de ce projet en achetant Emby Premiere. Une partie de ce revenu sera revers\u00e9 aux autres outils gratuits dont nous d\u00e9pendons.", - "DonationNextStep": "Une fois termin\u00e9, revenez sur cette page et entrez votre cl\u00e9 Emby Premiere, que vous aurez re\u00e7ue par email.", - "AutoOrganizeHelp": "L'auto-organisation d\u00e9tecte les nouveaux fichiers dans vos r\u00e9pertoires de t\u00e9l\u00e9chargement, puis les d\u00e9place dans vos r\u00e9pertoires de m\u00e9dias.", - "AutoOrganizeTvHelp": "L'auto-organisation de fichiers TV ne traitera que l'ajout de nouveaux \u00e9pisodes aux s\u00e9ries existantes. Ce processus ne cr\u00e9era pas de nouveaux r\u00e9pertoires de s\u00e9rie.", + "LabelSeries": "S\u00e9rie :", + "LabelSeasonNumber": "Num\u00e9ro de la saison\u00a0:", + "LabelEpisodeNumber": "Num\u00e9ro de l'\u00e9pisode\u00a0:", + "LabelEndingEpisodeNumber": "Num\u00e9ro du dernier \u00e9pisode :", + "LabelEndingEpisodeNumberHelp": "N\u00e9cessaire uniquement pour les fichiers multi-\u00e9pisodes", + "OptionRememberOrganizeCorrection": "Enregistrer et appliquer cette correction aux futurs fichiers ayant des noms similaires", + "HeaderSupportTheTeam": "Soutenez l'\u00e9quipe d'Emby", + "HeaderSupportTheTeamHelp": "Aidez \u00e0 garantir la continuit\u00e9 du d\u00e9veloppement de ce projet en achetant Emby Premiere. Une partie du revenu sera revers\u00e9e aux autres outils gratuits dont nous d\u00e9pendons.", + "DonationNextStep": "Une fois termin\u00e9, revenez sur cette page et entrez votre cl\u00e9 Emby Premiere, que vous aurez re\u00e7ue par courriel.", + "AutoOrganizeHelp": "L'auto-organisation d\u00e9tecte les nouveaux fichiers dans vos dossiers de t\u00e9l\u00e9chargement, puis les d\u00e9place dans vos dossiers multim\u00e9dias.", "OptionEnableEpisodeOrganization": "Activer l'auto-organisation des nouveaux \u00e9pisodes", - "LabelWatchFolder": "R\u00e9pertoire \u00e0 surveiller :", - "LabelWatchFolderHelp": "Le serveur va utiliser ce r\u00e9pertoire pendant la t\u00e2che \"Organiser les nouveaux fichiers de m\u00e9dias\".", + "LabelWatchFolder": "Dossier \u00e0 surveiller :", + "LabelWatchFolderHelp": "Le serveur va v\u00e9rifier ce dossier pendant la t\u00e2che planifi\u00e9e \u00ab\u00a0Organiser les nouveaux fichiers multim\u00e9dia\u00a0\u00bb.", "LabelMinFileSizeForOrganize": "Taille de fichier minimum (Mo) :", "LabelMinFileSizeForOrganizeHelp": "Les fichiers dont la taille est inf\u00e9rieure \u00e0 cette valeur seront ignor\u00e9s.", - "LabelSeasonFolderPattern": "Mod\u00e8le de r\u00e9pertoire de saison:", - "LabelSeasonZeroFolderName": "Nom de r\u00e9pertoire pour les saison z\u00e9ro:", + "LabelSeasonFolderPattern": "Mod\u00e8le de dossier de saison\u00a0:", + "LabelSeasonZeroFolderName": "Nom de dossier pour les saisons z\u00e9ro\u00a0:", "HeaderEpisodeFilePattern": "Mod\u00e8le de fichier d'\u00e9pisode", - "LabelEpisodePattern": "Mod\u00e8le d'\u00e9pisode", - "LabelMultiEpisodePattern": "Mod\u00e8le de multi-\u00e9pisodes:", + "LabelEpisodePattern": "Mod\u00e8le d'\u00e9pisode\u00a0:", + "LabelMultiEpisodePattern": "Mod\u00e8le de multi-\u00e9pisodes\u00a0:", "HeaderSupportedPatterns": "Mod\u00e8les support\u00e9s", "HeaderTerm": "Terme", "HeaderPattern": "Mod\u00e8le", "HeaderResult": "R\u00e9sultat", - "LabelDeleteEmptyFolders": "Supprimer les r\u00e9pertoires vides apr\u00e8s l'auto-organisation", - "LabelDeleteEmptyFoldersHelp": "Activer cette option pour garder le r\u00e9pertoire de t\u00e9l\u00e9chargement vide.", + "LabelDeleteEmptyFolders": "Supprimer les dossiers vides apr\u00e8s l'auto-organisation", + "LabelDeleteEmptyFoldersHelp": "Activer cette option pour garder le dossier de t\u00e9l\u00e9chargement vide.", "LabelDeleteLeftOverFiles": "Supprimer les fichiers restants avec les extensions suivantes :", - "LabelDeleteLeftOverFilesHelp": "S\u00e9parez les \u00e9l\u00e9ments par des point-virgules. Par exemple: .nfo;.txt", + "LabelDeleteLeftOverFilesHelp": "S\u00e9parez les \u00e9l\u00e9ments par des point-virgules. Par exemple\u00a0: .nfo;.txt", "OptionOverwriteExistingEpisodes": "Remplacer les \u00e9pisodes existants", "LabelTransferMethod": "M\u00e9thode de transfert", "OptionCopy": "Copier", "OptionMove": "D\u00e9placer", - "LabelTransferMethodHelp": "Copier ou d\u00e9placer des fichiers du r\u00e9pertoire surveill\u00e9", + "LabelTransferMethodHelp": "Copier ou d\u00e9placer des fichiers du dossier surveill\u00e9", "HeaderLatestNews": "Derni\u00e8res nouvelles", - "HeaderRunningTasks": "T\u00e2ches en ex\u00e9cution", + "HeaderRunningTasks": "T\u00e2ches en cours d'ex\u00e9cution", "HeaderActiveDevices": "Appareils actifs", "HeaderPendingInstallations": "Installations en suspens", - "HeaderServerInformation": "Information du serveur", "ButtonRestartNow": "Red\u00e9marrer maintenant", "ButtonRestart": "Red\u00e9marrer", "ButtonShutdown": "\u00c9teindre", @@ -570,8 +535,8 @@ "ServerUpToDate": "Le serveur Emby est \u00e0 jour", "LabelComponentsUpdated": "Les composants suivants ont \u00e9t\u00e9 install\u00e9s ou mis \u00e0 jour :", "MessagePleaseRestartServerToFinishUpdating": "Merci de red\u00e9marrer le serveur pour appliquer les mises \u00e0 jour.", - "LabelDownMixAudioScale": "Boost audio lors de downmix:", - "LabelDownMixAudioScaleHelp": "Boost audio lors de downmix. Mettre \u00e0 1 pour pr\u00e9server la valeur originale du volume.", + "LabelDownMixAudioScale": "Booster l'audio lors du downmix\u00a0:", + "LabelDownMixAudioScaleHelp": "Augmente le volume de l'audio quand on diminue le nombre de canaux. Mettre \u00e0 1 pour pr\u00e9server la valeur originale du volume.", "ButtonLinkKeys": "Cl\u00e9 de transfert", "LabelOldSupporterKey": "Ancienne cl\u00e9 Emby Premiere", "LabelNewSupporterKey": "Nouvelle cl\u00e9 Emby Premiere", @@ -583,55 +548,34 @@ "LabelEmailAddress": "Adresse courriel", "LabelSupporterEmailAddress": "L'adresse courriel avec laquelle la cl\u00e9 a \u00e9t\u00e9 achet\u00e9e.", "ButtonRetrieveKey": "Obtenir la cl\u00e9", - "LabelSupporterKey": "Cl\u00e9 Emby Premi\u00e8re (collez depuis l'email) :", + "LabelSupporterKey": "Cl\u00e9 Emby Premi\u00e8re (collez depuis le courriel) :", "LabelSupporterKeyHelp": "Entrez votre cl\u00e9 Emby Premiere pour profiter des avantages suppl\u00e9mentaires que la communaut\u00e9 a d\u00e9velopp\u00e9 pour Emby", "MessageInvalidKey": "Cl\u00e9 Emby Premiere introuvable ou incorrecte.", - "ErrorMessageInvalidKey": "Pour pouvoir souscrire au contenu Premium, vous devez \u00e9galement poss\u00e9der une souscription active Emby Premiere.", + "ErrorMessageInvalidKey": "Pour pouvoir souscrire au contenu Premium, vous devez \u00e9galement poss\u00e9der un abonnement Emby Premiere.", "HeaderDisplaySettings": "Param\u00e8tres d'affichage", - "TabPlayTo": "Lire sur", "LabelEnableDlnaServer": "Activer le serveur DLNA", - "LabelEnableDlnaServerHelp": "Autorise les appareils UPnP de votre r\u00e9seau \u00e0 naviguer et lire le contenu Emby.", + "LabelEnableDlnaServerHelp": "Autorise les appareils UPnP de votre r\u00e9seau \u00e0 parcourir et \u00e0 lire le contenu d'Emby.", "LabelEnableBlastAliveMessages": "Diffuser des message de pr\u00e9sence", "LabelEnableBlastAliveMessagesHelp": "Activer cette option si le serveur n'est pas d\u00e9tect\u00e9 de mani\u00e8re fiable par les autres appareils UPnP sur votre r\u00e9seau.", - "LabelBlastMessageInterval": "Intervalles des messages de pr\u00e9sence (secondes):", - "LabelBlastMessageIntervalHelp": "D\u00e9termine la dur\u00e9e en secondes entre les message de pr\u00e9sence du serveur.", + "LabelBlastMessageInterval": "Intervalle des messages de pr\u00e9sence (secondes)", + "LabelBlastMessageIntervalHelp": "D\u00e9termine la dur\u00e9e en secondes entre les messages de pr\u00e9sence du serveur.", "LabelDefaultUser": "Utilisateur par d\u00e9faut :", - "LabelDefaultUserHelp": "D\u00e9termine quelle biblioth\u00e8que d'utilisateur doit \u00eatre affich\u00e9e sur les appareils connect\u00e9s. Ces param\u00e8tres peuvent \u00eatre remplac\u00e9s pour chaque appareil par les configurations de profils.", - "TitleDlna": "DLNA", + "LabelDefaultUserHelp": "D\u00e9termine quelle m\u00e9diath\u00e8que d'utilisateur doit \u00eatre affich\u00e9e sur les appareils connect\u00e9s. Ces param\u00e8tres peuvent \u00eatre remplac\u00e9s pour chaque appareil par les configurations de profils.", "HeaderServerSettings": "Param\u00e8tres du serveur", - "HeaderRequireManualLogin": "Exiger l'entr\u00e9e manuelle du nom d'utilisateur pour:", - "HeaderRequireManualLoginHelp": "Lorsque d\u00e9sactiv\u00e9, les clients pourront afficher la s\u00e9lection du compte utilisateur de mani\u00e8re graphique sur l'\u00e9cran de connexion.", + "HeaderRequireManualLogin": "Exiger l'entr\u00e9e manuelle du nom d'utilisateur pour\u00a0:", + "HeaderRequireManualLoginHelp": "Si l'option est d\u00e9sactiv\u00e9e, les applications Emby pourront afficher la s\u00e9lection du compte utilisateur de mani\u00e8re graphique sur l'\u00e9cran de connexion.", "OptionOtherApps": "Autres applications", "OptionMobileApps": "Applications mobiles", - "HeaderNotificationList": "Cliquez sur une notification pour configurer les options d\u2019envoi.", - "NotificationOptionApplicationUpdateAvailable": "Mise \u00e0 jour d'application disponible", - "NotificationOptionApplicationUpdateInstalled": "Mise \u00e0 jour d'application install\u00e9e", - "NotificationOptionPluginUpdateInstalled": "Mise \u00e0 jour de plugin install\u00e9e", - "NotificationOptionPluginInstalled": "Plugin install\u00e9", - "NotificationOptionPluginUninstalled": "Plugin d\u00e9sinstall\u00e9", - "NotificationOptionVideoPlayback": "Lecture vid\u00e9o d\u00e9marr\u00e9e", - "NotificationOptionAudioPlayback": "Lecture audio d\u00e9marr\u00e9e", - "NotificationOptionGamePlayback": "Lecture de jeu d\u00e9marr\u00e9e", - "NotificationOptionVideoPlaybackStopped": "Lecture vid\u00e9o arr\u00eat\u00e9e", - "NotificationOptionAudioPlaybackStopped": "Lecture audio arr\u00eat\u00e9e", - "NotificationOptionGamePlaybackStopped": "Lecture de jeu arr\u00eat\u00e9e", - "NotificationOptionTaskFailed": "\u00c9chec de t\u00e2che planifi\u00e9e", - "NotificationOptionInstallationFailed": "\u00c9chec d'installation", - "NotificationOptionNewLibraryContent": "Nouveau contenu ajout\u00e9", - "NotificationOptionCameraImageUploaded": "L'image de l'appareil photo a \u00e9t\u00e9 upload\u00e9e", - "NotificationOptionUserLockedOut": "Utilisateur verrouill\u00e9", - "HeaderSendNotificationHelp": "Les notifications sont pr\u00e9sent\u00e9es dans votre bo\u00eete de messagerie . Des options suppl\u00e9mentaires peuvent \u00eatre install\u00e9es depuis l'onglet Services.", - "NotificationOptionServerRestartRequired": "Un red\u00e9marrage du serveur est requis", "LabelNotificationEnabled": "Activer cette notification", - "LabelMonitorUsers": "Surveiller les activit\u00e9s de:", - "LabelSendNotificationToUsers": "Envoyer la notification \u00e0:", - "LabelUseNotificationServices": "Utiliser les services suivants:", + "LabelMonitorUsers": "Surveiller les activit\u00e9s de\u00a0:", + "LabelSendNotificationToUsers": "Envoyer la notification \u00e0\u00a0:", + "LabelUseNotificationServices": "Utiliser les services suivants\u00a0:", "CategoryUser": "Utilisateur", "CategorySystem": "Syst\u00e8me", "CategoryApplication": "Application", "CategoryPlugin": "Plugin", - "LabelAvailableTokens": "Jetons disponibles:", - "AdditionalNotificationServices": "Visitez le catalogue de plugins pour installer des services de notifications suppl\u00e9mentaires.", + "LabelAvailableTokens": "Jetons disponibles\u00a0:", + "AdditionalNotificationServices": "Visitez le catalogue d'extensions pour installer des services de notifications suppl\u00e9mentaires.", "OptionAllUsers": "Tous les utilisateurs", "OptionAdminUsers": "Administrateurs", "OptionCustomUsers": "Personnalis\u00e9", @@ -640,10 +584,10 @@ "ButtonArrowLeft": "Gauche", "ButtonArrowRight": "Droite", "ButtonBack": "Retour arri\u00e8re", - "ButtonInfo": "Info", + "ButtonInfo": "Informations", "ButtonOsd": "Affichage \u00e0 l'\u00e9cran", "ButtonPageUp": "Page suivante", - "ButtonPageDown": "Page pr\u00e9c\u00e9dante", + "ButtonPageDown": "Page pr\u00e9c\u00e9dente", "ButtonHome": "Accueil", "ButtonSearch": "Recherche", "ButtonSettings": "Param\u00e8tres", @@ -651,7 +595,7 @@ "LetterButtonAbbreviation": "A", "TabNowPlaying": "Lecture en cours", "TabNavigation": "Navigation", - "TabControls": "Contr\u00f4les", + "TabControls": "Commandes", "ButtonScenes": "Sc\u00e8nes", "ButtonSubtitles": "Sous-titres", "ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente", @@ -661,68 +605,66 @@ "ButtonNext": "Suivant", "ButtonPrevious": "Pr\u00e9c\u00e9dent", "LabelGroupMoviesIntoCollections": "Grouper les films en collections", - "LabelGroupMoviesIntoCollectionsHelp": "Dans l'affichage des listes de films, les films faisant partie d'une collection seront affich\u00e9s comme un groupe d'items.", - "NotificationOptionPluginError": "Erreur de plugin", + "LabelGroupMoviesIntoCollectionsHelp": "Dans l'affichage des listes de films, les films faisant partie d'une collection seront affich\u00e9s comme un \u00e9l\u00e9ment group\u00e9.", "ButtonVolumeUp": "Volume +", "ButtonVolumeDown": "Volume -", "HeaderLatestMedia": "Derniers m\u00e9dias", "OptionNoSubtitles": "Aucun sous-titre", - "OptionSpecialFeatures": "Bonus", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "S\u00e9par\u00e9s par des virgules. Peut \u00eatre laiss\u00e9 vide pour s'appliquer \u00e0 tous les codecs.", "LabelProfileContainersHelp": "S\u00e9par\u00e9s par des virgules. Peut \u00eatre laiss\u00e9 vide pour s'appliquer \u00e0 tous les conteneurs.", "HeaderResponseProfile": "Profil de r\u00e9ponse", "LabelType": "Type :", - "LabelProfileContainer": "Conteneur:", - "LabelProfileVideoCodecs": "Codecs vid\u00e9os :", - "LabelProfileAudioCodecs": "Codecs audios :", + "LabelProfileContainer": "Conteneur\u00a0:", + "LabelProfileVideoCodecs": "Codecs vid\u00e9o :", + "LabelProfileAudioCodecs": "Codecs audio :", "LabelProfileCodecs": "Codecs :", - "HeaderDirectPlayProfile": "Profil de lecture directe (Direct Play):", + "HeaderDirectPlayProfile": "Profil de lecture directe\u00a0:", "HeaderTranscodingProfile": "Profil de transcodage", - "HeaderCodecProfile": "Profil de codecs", + "HeaderCodecProfile": "Profil de codec", "HeaderContainerProfile": "Profil de conteneur", "OptionProfileVideo": "Vid\u00e9o", "OptionProfileAudio": "Audio", "OptionProfileVideoAudio": "Vid\u00e9o Audio", "OptionProfilePhoto": "Photo", - "LabelUserLibrary": "Biblioth\u00e8que de l'utilisateur:", - "LabelUserLibraryHelp": "S\u00e9lectionnez quelle biblioth\u00e8que afficher sur l'appareil. Laissez vide pour h\u00e9riter des param\u00e8tres par d\u00e9faut.", - "OptionPlainStorageFolders": "Afficher tous les r\u00e9pertoires en tant que simples r\u00e9pertoires de stockage.", - "OptionPlainStorageFoldersHelp": "Si activ\u00e9, tous les r\u00e9pertoires seront affich\u00e9s en DIDL en tant que \"object.container.storageFolder\" au lieu de formats plus sp\u00e9cifiques comme, par exemple \"object.container.person.musicArtist\".", - "OptionPlainVideoItems": "Afficher les vid\u00e9os en tant que simples items vid\u00e9os.", - "OptionPlainVideoItemsHelp": "Si activ\u00e9, toutes les vid\u00e9os seront affich\u00e9es en DIDL en tant que \"object.item.videoItem\" au lieu de formats plus sp\u00e9cifiques comme, par exemple \"object.item.videoItem.movie\".", - "LabelSupportedMediaTypes": "Types de m\u00e9dias support\u00e9s:", + "LabelUserLibrary": "M\u00e9diath\u00e8que de l'utilisateur\u00a0:", + "LabelUserLibraryHelp": "S\u00e9lectionnez quelle m\u00e9diath\u00e8que afficher sur l'appareil. Laissez vide pour h\u00e9riter des param\u00e8tres par d\u00e9faut.", + "OptionPlainStorageFolders": "Afficher tous les dossiers en tant que simples dossiers de stockage.", + "OptionPlainStorageFoldersHelp": "Tous les r\u00e9pertoires seront affich\u00e9s dans le DIDL en tant que \"object.container.storageFolder\" au lieu de formats plus sp\u00e9cifiques comme, par exemple \"object.container.person.musicArtist\".", + "OptionPlainVideoItems": "Afficher les vid\u00e9os en tant que simples \u00e9l\u00e9ments vid\u00e9os.", + "OptionPlainVideoItemsHelp": "Si activ\u00e9, toutes les vid\u00e9os seront affich\u00e9es dans le DIDL en tant que \"object.item.videoItem\" au lieu de formats plus sp\u00e9cifiques comme, par exemple \"object.item.videoItem.movie\".", + "LabelSupportedMediaTypes": "Types de m\u00e9dias support\u00e9s\u00a0:", "HeaderIdentification": "Identification", "TabDirectPlay": "Lecture directe", - "TabContainers": "Conteneur", + "TabContainers": "Conteneurs", "TabCodecs": "Codecs", "TabResponses": "R\u00e9ponses", "HeaderProfileInformation": "Information de profil", - "LabelEmbedAlbumArtDidl": "Int\u00e9grer les images d'album dans Didl", - "LabelEmbedAlbumArtDidlHelp": "Certains p\u00e9riph\u00e9riques pr\u00e9f\u00e8rent cette m\u00e9thode pour obtenir les images d'album. D'autres peuvent \u00e9chouer \u00e0 lire avec cette option activ\u00e9e.", - "LabelAlbumArtPN": "PN d'images d'album:", - "LabelAlbumArtHelp": "PN utilis\u00e9 pour les images d'album, dans l\u2019attribut dlna:profileID de upnp:albumArtURi. Certains client n\u00e9cessite une valeur sp\u00e9cifique, peu importe la grosseur de l'image.", - "LabelAlbumArtMaxWidth": "Largeur maximum des images d'album:", + "LabelEmbedAlbumArtDidl": "Int\u00e9grer les images d'album dans le DIDL", + "LabelEmbedAlbumArtDidlHelp": "Certains appareils pr\u00e9f\u00e8rent cette m\u00e9thode pour obtenir les images d'album. D'autres peuvent \u00e9chouer \u00e0 lire avec cette option activ\u00e9e.", + "LabelAlbumArtPN": "PN d'images d'album\u00a0:", + "LabelAlbumArtHelp": "PN utilis\u00e9 pour les images d'album, dans l\u2019attribut dlna:profileID de upnp:albumArtURi. Certains appareils n\u00e9cessitent une valeur sp\u00e9cifique, peu importe la taille de l'image.", + "LabelAlbumArtMaxWidth": "Largeur maximum des images d'album\u00a0:", "LabelAlbumArtMaxWidthHelp": "R\u00e9solution maximum des images d'album expos\u00e9e par upnp:albumArtURI.", - "LabelAlbumArtMaxHeight": "Hauteur maximum des images d'album:", + "LabelAlbumArtMaxHeight": "Hauteur maximum des images d'album\u00a0:", "LabelAlbumArtMaxHeightHelp": "R\u00e9solution maximum des images d'album expos\u00e9e par upnp:albumArtURI.", - "LabelIconMaxWidth": "Largeur maximum des ic\u00f4nes:", + "LabelIconMaxWidth": "Largeur maximum des ic\u00f4nes\u00a0:", "LabelIconMaxWidthHelp": "R\u00e9solution maximum des ic\u00f4nes expos\u00e9e par upnp:icon.", - "LabelIconMaxHeight": "Hauteur maximum des ic\u00f4nes:", + "LabelIconMaxHeight": "Hauteur maximum des ic\u00f4nes\u00a0:", "LabelIconMaxHeightHelp": "R\u00e9solution maximum des ic\u00f4nes expos\u00e9e par upnp:icon.", - "LabelIdentificationFieldHelp": "Une sous-cha\u00eene ou expression r\u00e9guli\u00e8re (insensible \u00e0 la casse).", + "LabelIdentificationFieldHelp": "Une sous-cha\u00eene ou expression r\u00e9guli\u00e8re insensible \u00e0 la casse.", "HeaderProfileServerSettingsHelp": "Ces valeurs contr\u00f4lent la fa\u00e7on dont le serveur Emby se pr\u00e9sentera aux appareils.", - "LabelMaxBitrate": "D\u00e9bit maximum:", + "LabelMaxBitrate": "D\u00e9bit maximum\u00a0:", "LabelMaxBitrateHelp": "Sp\u00e9cifiez un d\u00e9bit maximum dans les environnements avec bande passante limit\u00e9e ou si l'appareil impose sa propre limite.", - "LabelMaxStreamingBitrate": "D\u00e9bit max de streaming :", - "LabelMaxStreamingBitrateHelp": "Sp\u00e9cifiez le d\u00e9bit max lors du streaming.", - "LabelMaxChromecastBitrate": "D\u00e9bit Chromecast maximum", - "LabelMusicStaticBitrate": "D\u00e9bit de synchronisation de la musique", - "LabelMusicStaticBitrateHelp": "Sp\u00e9cifier un d\u00e9bit maxi de synchronisation de la musique", - "LabelMusicStreamingTranscodingBitrate": "D\u00e9bit du transcodage musique :", - "LabelMusicStreamingTranscodingBitrateHelp": "Sp\u00e9cifiez le d\u00e9bit max pendant la diffusion de musique", - "OptionIgnoreTranscodeByteRangeRequests": "Ignore les demande de transcodage de plage d'octets", - "OptionIgnoreTranscodeByteRangeRequestsHelp": "Si activ\u00e9, ces requ\u00eates\/demandes seront honor\u00e9es mais l'ent\u00eate de plage d'octets sera ignor\u00e9. ", + "LabelMaxStreamingBitrate": "D\u00e9bit maximum de streaming :", + "LabelMaxStreamingBitrateHelp": "Sp\u00e9cifiez le d\u00e9bit maximum lors du streaming.", + "LabelMaxChromecastBitrate": "D\u00e9bit Chromecast maximum\u00a0:", + "LabelMusicStaticBitrate": "D\u00e9bit de synchronisation de la musique\u00a0:", + "LabelMusicStaticBitrateHelp": "Sp\u00e9cifiez un d\u00e9bit maximum de synchronisation de la musique", + "LabelMusicStreamingTranscodingBitrate": "D\u00e9bit du transcodage de la musique :", + "LabelMusicStreamingTranscodingBitrateHelp": "Sp\u00e9cifiez le d\u00e9bit maximum pendant la diffusion de musique", + "OptionIgnoreTranscodeByteRangeRequests": "Ignore les requ\u00eates de transcodage de plage d'octets", + "OptionIgnoreTranscodeByteRangeRequestsHelp": "Si l'option est activ\u00e9e, ces requ\u00eates seront honor\u00e9es mais l'en-t\u00eate de plage d'octets sera ignor\u00e9.", "LabelFriendlyName": "Surnom d'affichage", "LabelManufacturer": "Constructeur", "LabelManufacturerUrl": "URL du constructeur", @@ -733,47 +675,46 @@ "LabelSerialNumber": "Num\u00e9ro de s\u00e9rie", "LabelDeviceDescription": "Description de l'appareil", "HeaderIdentificationCriteriaHelp": "Entrez au moins un crit\u00e8re d'identification.", - "HeaderDirectPlayProfileHelp": "Ajouter des profils de lecture directe pour indiquer quels formats l'appareil peut lire de fa\u00e7on native.", - "HeaderTranscodingProfileHelp": "Ajoutez des profils de transcodage pour indiquer quels formats utiliser quand le transcodage est requis.", - "HeaderContainerProfileHelp": "Les profils de conteneur indiquent les limites d'un appareil lors de lectures de formats sp\u00e9cifiques. Si la limite s'applique au m\u00e9dia, ce dernier sera transcod\u00e9, m\u00eame si le format est configur\u00e9 pour faire de la lecture directe.", - "HeaderCodecProfileHelp": "Les profils de codecs sp\u00e9cifient les limites de lecture de codecs sp\u00e9cifiques d'un appareil. Si la limite s'applique, le m\u00e9dia sera transcod\u00e9, m\u00eame si le codec est configur\u00e9 pour des lectures directes.", + "HeaderDirectPlayProfileHelp": "Ajoutez des profils de lecture directe pour indiquer quels formats l'appareil peut lire de fa\u00e7on native.", + "HeaderTranscodingProfileHelp": "Ajoutez des profils de transcodage pour indiquer quels formats utiliser quand le transcodage est n\u00e9cessaire.", + "HeaderContainerProfileHelp": "Les profils de conteneur indiquent les limites d'un appareil lors de la lecture de formats sp\u00e9cifiques. Si la limite s'applique au m\u00e9dia, ce dernier sera transcod\u00e9, m\u00eame si le format est configur\u00e9 pour la lecture directe.", + "HeaderCodecProfileHelp": "Les profils de codec indiquent les limites d'un appareil lors de la lecture de codecs sp\u00e9cifiques. Si la limite s'applique au m\u00e9dia, ce dernier sera transcod\u00e9, m\u00eame si le codec est configur\u00e9 pour la lecture directe.", "HeaderResponseProfileHelp": "Les profils de r\u00e9ponse permettent de personnaliser l'information envoy\u00e9e \u00e0 l'appareil lors de la lecture de certains types de m\u00e9dia.", - "LabelXDlnaCap": "Cap X-Dlna:", - "LabelXDlnaCapHelp": "D\u00e9termine le contenu des \u00e9l\u00e9ments X_DLNACAP dans l'espace de nom urn:schemas-dlna-org:device-1-0.", - "LabelXDlnaDoc": "Doc X-Dlna:", - "LabelXDlnaDocHelp": "D\u00e9termine le contenu des \u00e9l\u00e9ments X_DLNADOC dans l'espace de nom urn:schemas-dlna-org:device-1-0.", - "LabelSonyAggregationFlags": "Marqueurs d\u2019agr\u00e9gation Sony:", - "LabelSonyAggregationFlagsHelp": "D\u00e9termine le contenu des \u00e9l\u00e9ments aggregationFlags dans l'espace de nom urn:schemas-sonycom:av .", - "LabelTranscodingContainer": "Conteneur:", - "LabelTranscodingVideoCodec": "Codec vid\u00e9o:", - "LabelTranscodingAudioCodec": "Codec audio:", - "OptionEnableM2tsMode": "Activer le mode M2ts", - "OptionEnableM2tsModeHelp": "Activer le mode m2ts lors d'encodage en mpegts.", - "OptionEstimateContentLength": "Estimer la dur\u00e9e du contenu lors d'encodage", + "LabelXDlnaCap": "Cap X-Dlna\u00a0:", + "LabelXDlnaCapHelp": "D\u00e9termine le contenu de l'\u00e9l\u00e9ment X_DLNACAP dans l'espace de nom urn:schemas-dlna-org:device-1-0.", + "LabelXDlnaDoc": "Doc X-Dlna\u00a0:", + "LabelXDlnaDocHelp": "D\u00e9termine le contenu de l'\u00e9l\u00e9ment X_DLNADOC dans l'espace de nom urn:schemas-dlna-org:device-1-0.", + "LabelSonyAggregationFlags": "Marqueurs d\u2019agr\u00e9gation Sony\u00a0:", + "LabelSonyAggregationFlagsHelp": "D\u00e9termine le contenu de l'\u00e9l\u00e9ment aggregationFlags dans l'espace de nom urn:schemas-sonycom:av .", + "LabelTranscodingContainer": "Conteneur\u00a0:", + "LabelTranscodingVideoCodec": "Codec vid\u00e9o\u00a0:", + "LabelTranscodingAudioCodec": "Codec audio\u00a0:", + "OptionEnableM2tsMode": "Activer le mode M2TS", + "OptionEnableM2tsModeHelp": "Active le mode M2TS lors d'encodage en MPEGTS.", + "OptionEstimateContentLength": "Estimer la taille du contenu lors d'encodage", "OptionReportByteRangeSeekingWhenTranscoding": "Signaler que le serveur prend en charge la recherche d'octets lors du transcodage", - "OptionReportByteRangeSeekingWhenTranscodingHelp": "Cette option est requise pour certains p\u00e9riph\u00e9riques qui ne sont pas capables d'effectuer une recherche d'octets correctement.", + "OptionReportByteRangeSeekingWhenTranscodingHelp": "N\u00e9cessaire pour certains appareils qui ne sont pas capables d'effectuer une recherche dans le temps correctement.", "HeaderDownloadSubtitlesFor": "T\u00e9l\u00e9charger les sous-titres pour :", "LabelSkipIfGraphicalSubsPresent": "Sauter si la vid\u00e9o contient d\u00e9j\u00e0 des sous-titres.", "LabelSkipIfGraphicalSubsPresentHelp": "Conserver les versions textes des sous-titres permettra une diffusion plus efficace et diminuera la probabilit\u00e9 d'un transcodage de la vid\u00e9o.", "TabSubtitles": "Sous-titres", "TabChapters": "Chapitres", - "LabelOpenSubtitlesUsername": "Nom d'utilisateur Open Subtitles:", - "LabelOpenSubtitlesPassword": "Mot de passe Open Subtitles:", - "LabelPlayDefaultAudioTrack": "Utiliser le flux audio par d\u00e9faut quelque soit la langue", - "LabelSubtitlePlaybackMode": "Mode de sous-titres:", - "LabelDownloadLanguages": "T\u00e9l\u00e9chargement de langues:", + "LabelOpenSubtitlesUsername": "Nom d'utilisateur Open Subtitles\u00a0:", + "LabelOpenSubtitlesPassword": "Mot de passe Open Subtitles\u00a0:", + "LabelPlayDefaultAudioTrack": "Utiliser le flux audio par d\u00e9faut quelle que soit la langue", + "LabelSubtitlePlaybackMode": "Mode de sous-titres\u00a0:", + "LabelDownloadLanguages": "T\u00e9l\u00e9chargement des langues\u00a0:", "ButtonRegister": "S'enregistrer", "LabelSkipIfAudioTrackPresent": "Sauter si la piste audio correspond \u00e0 la langue de t\u00e9l\u00e9chargement", - "LabelSkipIfAudioTrackPresentHelp": "D\u00e9cocher cette option va s'assurer que toutes les vid\u00e9os ont des sous-titres, quelque soit la langue de la piste audio.", + "LabelSkipIfAudioTrackPresentHelp": "D\u00e9cocher cette option va s'assurer que toutes les vid\u00e9os ont des sous-titres, quelle que soit la langue de la piste audio.", "HeaderSendMessage": "Envoyer un message", "ButtonSend": "Envoyer", - "LabelMessageText": "Texte du message:", - "LabelMessageTitle": "Titre du message:", - "MessageNoAvailablePlugins": "Aucun plugin disponible.", - "LabelDisplayPluginsFor": "Afficher les plugins pour :", + "LabelMessageText": "Texte du message\u00a0:", + "LabelMessageTitle": "Titre du message\u00a0:", + "MessageNoAvailablePlugins": "Aucune extension disponible.", + "LabelDisplayPluginsFor": "Afficher les extensions pour :", "PluginTabAppClassic": "Emby classique", - "PluginTabAppTheater": "Emby theater", - "LabelEpisodeNamePlain": "Nom d'\u00e9pisode", + "LabelEpisodeNamePlain": "Nom de l'\u00e9pisode", "LabelSeriesNamePlain": "Nom de la s\u00e9rie", "ValueSeriesNamePeriod": "Series.name", "ValueSeriesNameUnderscore": "Series_name", @@ -781,122 +722,85 @@ "ValueEpisodeNameUnderscore": "Episode_name", "LabelSeasonNumberPlain": "Num\u00e9ro de la saison", "LabelEpisodeNumberPlain": "Num\u00e9ro d'\u00e9pisode", - "LabelEndingEpisodeNumberPlain": "Num\u00e9ro d'\u00e9pisode final", + "LabelEndingEpisodeNumberPlain": "Num\u00e9ro du dernier \u00e9pisode", "HeaderTypeText": "Entrer texte", "LabelTypeText": "Texte", - "HeaderSearchForSubtitles": "Rechercher des sous-titres", - "MessageNoSubtitleSearchResultsFound": "Aucun r\u00e9sultat trouv\u00e9.", "TabDisplay": "Affichage", "TabLanguages": "Langues", - "TabAppSettings": "Param\u00e8tres de l'applications", - "LabelEnableThemeSongs": "Activer les chansons th\u00e8mes", + "TabAppSettings": "Param\u00e8tres d'application", + "LabelEnableThemeSongs": "Activer les th\u00e8mes musicaux", "LabelEnableBackdrops": "Activer les images d'arri\u00e8re-plans", - "LabelEnableThemeSongsHelp": "Si activ\u00e9, les chansons th\u00e8mes seront lues en arri\u00e8re-plan pendant la navigation dans les biblioth\u00e8ques.", - "LabelEnableBackdropsHelp": "Si activ\u00e9, les images d'arri\u00e8re-plan seront affich\u00e9es sur certaines pages pendant la navigation dans les biblioth\u00e8ques.", - "HeaderHomePage": "Portail", - "HeaderSettingsForThisDevice": "Param\u00e8tres pour cet appareil", - "OptionAuto": "Auto", + "LabelEnableThemeSongsHelp": "Les th\u00e8mes musicaux seront lus en arri\u00e8re-plan pendant la navigation dans la m\u00e9diath\u00e8que.", + "LabelEnableBackdropsHelp": "Les images d'arri\u00e8re-plan seront affich\u00e9es sur certaines pages pendant la navigation dans la m\u00e9diath\u00e8que.", + "HeaderHomePage": "Accueil", + "OptionAuto": "Automatique", "OptionYes": "Oui", "OptionNo": "Non", "HeaderOptions": "Options", - "LabelHomePageSection1": "Premi\u00e8re section du portail :", - "LabelHomePageSection2": "Seconde section du portail :", - "LabelHomePageSection3": "Troisi\u00e8me section du portail :", - "LabelHomePageSection4": "Quatri\u00e8me section du portail:", - "OptionMyMediaButtons": "Mes m\u00e9dias (boutons)", + "LabelHomePageSection1": "Section 1 de l'accueil :", + "LabelHomePageSection2": "Section 2 de l'accueil :", + "LabelHomePageSection3": "Section 3 de l'accueil :", + "LabelHomePageSection4": "Section 4 de l'accueil\u00a0:", "OptionMyMedia": "Mes m\u00e9dias", "OptionMyMediaSmall": "Mes m\u00e9dias (petit)", "OptionResumablemedia": "Reprendre", - "OptionLatestMedia": "Les plus r\u00e9cents", - "OptionLatestChannelMedia": "Items de cha\u00eene les plus r\u00e9cents", - "HeaderLatestChannelItems": "Items de cha\u00eene les plus r\u00e9cents", + "OptionLatestMedia": "Derniers m\u00e9dias", + "OptionLatestChannelMedia": "Derniers \u00e9l\u00e9ments de la cha\u00eene", + "HeaderLatestChannelItems": "Derniers \u00e9l\u00e9ments de la cha\u00eene", "OptionNone": "Aucun", "HeaderLiveTv": "TV en direct", "HeaderReports": "Rapports", "HeaderSettings": "Param\u00e8tres", "OptionDefaultSort": "Par d\u00e9faut", - "OptionCommunityMostWatchedSort": "Les plus lus", - "TabNextUp": "Prochains \u00e0 voir", - "PlaceholderUsername": "Identifiant", + "TabNextUp": "Suivants", "HeaderBecomeProjectSupporter": "Obtenez Emby Premiere", - "MessageNoMovieSuggestionsAvailable": "Aucune suggestion de film n'est actuellement disponible. Commencez \u00e0 regarder et notez vos films pour avoir des suggestions.", - "MessageNoCollectionsAvailable": "Les collections vous permettent de tirer parti de groupements personnalis\u00e9s de films, de s\u00e9ries, d'albums audio, de livres et de jeux. Cliquez sur le bouton + pour commencer \u00e0 cr\u00e9er des Collections.", - "MessageNoPlaylistsAvailable": "Les listes de lectures vous permettent de cr\u00e9er des listes de contenus \u00e0 lire en continu en une fois. Pour ajouter un \u00e9l\u00e9ment \u00e0 la liste, faire un clic droit ou appuyer et maintenez, puis s\u00e9lectionnez Ajouter \u00e0 la liste de lecture", + "MessageNoMovieSuggestionsAvailable": "Aucune suggestion de film n'est actuellement disponible. Commencez \u00e0 regarder et \u00e0 noter vos films pour avoir des suggestions.", + "MessageNoCollectionsAvailable": "Les collections vous permettent de profiter de groupements personnalis\u00e9s de films, de s\u00e9ries, d'albums audio, de livres et de jeux. Cliquez sur le bouton + pour commencer \u00e0 cr\u00e9er des collections.", + "MessageNoPlaylistsAvailable": "Les listes de lectures vous permettent de cr\u00e9er des listes de contenus \u00e0 lire en continu en une fois. Pour ajouter un \u00e9l\u00e9ment \u00e0 la liste, faites un clic droit ou appuyez et maintenez, puis s\u00e9lectionnez Ajouter \u00e0 la liste de lecture.", "MessageNoPlaylistItemsAvailable": "Cette liste de lecture est actuellement vide.", - "ButtonDismiss": "Annuler", "ButtonEditOtherUserPreferences": "Modifier ce profil utilisateur, son avatar et ses pr\u00e9f\u00e9rences personnelles.", - "LabelChannelStreamQuality": "Qualit\u00e9 de pr\u00e9f\u00e9rence des chaines internet:", - "LabelChannelStreamQualityHelp": "Avec une bande passante faible, limiter la qualit\u00e9 garantit un confort d'utilisation du streaming.", - "OptionBestAvailableStreamQuality": "Meilleur disponible", - "ChannelSettingsFormHelp": "Installer des cha\u00eenes comme \"Trailers\" et \"Vimeo\" dans le catalogue des plugins.", - "ViewTypePlaylists": "Listes de lecture", + "LabelChannelStreamQuality": "Qualit\u00e9 pr\u00e9f\u00e9r\u00e9e des cha\u00eenes internet\u00a0:", + "LabelChannelStreamQualityHelp": "Avec une bande passante faible, limiter la qualit\u00e9 garantit un bon confort d'utilisation pour le streaming.", + "OptionBestAvailableStreamQuality": "Meilleur qualit\u00e9 disponible", + "ChannelSettingsFormHelp": "Installez des cha\u00eenes comme Trailers et Vimeo dans le catalogue d'extensions.", "ViewTypeMovies": "Films", "ViewTypeTvShows": "TV", "ViewTypeGames": "Jeux", "ViewTypeMusic": "Musique", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artistes", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Cha\u00eenes", - "ViewTypeLiveTV": "TV en direct", - "ViewTypeLiveTvNowPlaying": "En cours de diffusion", - "ViewTypeLatestGames": "Derniers jeux", - "ViewTypeRecentlyPlayedGames": "R\u00e9cemment jou\u00e9", - "ViewTypeGameFavorites": "Favoris", - "ViewTypeGameSystems": "Syst\u00e8me de jeu", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Reprise", - "ViewTypeTvNextUp": "A venir", - "ViewTypeTvLatest": "Derniers", - "ViewTypeTvShowSeries": "S\u00e9ries", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "S\u00e9ries favorites", - "ViewTypeTvFavoriteEpisodes": "Episodes favoris", - "ViewTypeMovieResume": "Reprise", - "ViewTypeMovieLatest": "Dernier", - "ViewTypeMovieMovies": "Films", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favoris", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Dernier", - "ViewTypeMusicPlaylists": "Listes de lectures", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Artiste de l'album", "HeaderOtherDisplaySettings": "Param\u00e8tres d'affichage", "ViewTypeMusicSongs": "Chansons", "ViewTypeMusicFavorites": "Favoris", "ViewTypeMusicFavoriteAlbums": "Albums favoris", "ViewTypeMusicFavoriteArtists": "Artistes favoris", "ViewTypeMusicFavoriteSongs": "Chansons favorites", - "HeaderMyViews": "Mes affichages", - "LabelSelectFolderGroups": "Grouper automatiquement le contenu des r\u00e9pertoires suivants dans les vues tels que Films, Musiques et TV :", - "LabelSelectFolderGroupsHelp": "Les r\u00e9pertoires qui ne sont pas coch\u00e9s seront affich\u00e9s tels quels avec leur propre disposition.", + "HeaderMyViews": "Mes vues", + "LabelSelectFolderGroups": "Grouper automatiquement le contenu des dossiers suivants dans des vues telles que Films, Musique et TV :", + "LabelSelectFolderGroupsHelp": "Les dossiers qui ne sont pas coch\u00e9s seront affich\u00e9s tels quels avec leur propre vue.", "OptionDisplayAdultContent": "Afficher le contenu adulte", "OptionLibraryFolders": "R\u00e9pertoires de m\u00e9dias", "TitleRemoteControl": "Contr\u00f4le \u00e0 distance", - "OptionLatestTvRecordings": "Les plus r\u00e9cents enregistrements", - "LabelProtocolInfo": "Infos sur le protocole:", - "LabelProtocolInfoHelp": "La valeur qui sera utilis\u00e9e pour r\u00e9pondre aux requ\u00eates GetProtocolInfo du p\u00e9riph\u00e9rique.", + "OptionLatestTvRecordings": "Derniers enregistrements", + "LabelProtocolInfo": "Informations sur le protocole\u00a0:", + "LabelProtocolInfoHelp": "La valeur qui sera utilis\u00e9e pour r\u00e9pondre aux requ\u00eates GetProtocolInfo de l'appareil.", "TabNfoSettings": "Param\u00e8tres NFO", - "HeaderKodiMetadataHelp": "Emby comprend un support natif pour les fichiers de m\u00e9tadonn\u00e9es NFO. Pour activer ou d\u00e9sactiver les m\u00e9tadonn\u00e9es Nfo, utilisez l'onglet Services pour configurer les options pour vos types de m\u00e9dias.", - "LabelKodiMetadataUser": "Synchroniser les donn\u00e9es de visionnage utilisateur en nfo pour :", - "LabelKodiMetadataUserHelp": "Activez cette option pour synchroniser les donn\u00e9es de lecture entre le serveur Emby et les fichiers Nfo.", + "HeaderKodiMetadataHelp": "Emby offre un support natif pour les fichiers de m\u00e9tadonn\u00e9es NFO. Pour activer ou d\u00e9sactiver les m\u00e9tadonn\u00e9es NFO, utilisez l'onglet Services pour configurer les options pour vos types de m\u00e9dias.", + "LabelKodiMetadataUser": "Synchroniser les donn\u00e9es de visionnage utilisateur dans les NFO pour :", + "LabelKodiMetadataUserHelp": "Activez cette option pour synchroniser les donn\u00e9es de lecture entre le serveur Emby et les fichiers NFO.", "LabelKodiMetadataDateFormat": "Format de la date de sortie :", - "LabelKodiMetadataDateFormatHelp": "Toutes les dates du nfo seront lues et \u00e9crites en utilisant ce format.", - "LabelKodiMetadataSaveImagePaths": "Sauvegarder le chemin des images dans les fichiers nfo", + "LabelKodiMetadataDateFormatHelp": "Toutes les dates des NFO seront lues et \u00e9crites en utilisant ce format.", + "LabelKodiMetadataSaveImagePaths": "Enregistrer le chemin des images dans les fichiers NFO", "LabelKodiMetadataSaveImagePathsHelp": "Ceci est recommand\u00e9 si les noms des fichiers d'images ne sont pas conformes aux recommandations de Kodi.", - "LabelKodiMetadataEnablePathSubstitution": "Activer la substitution de chemins", - "LabelKodiMetadataEnablePathSubstitutionHelp": "Activer la substitution du chemin des images en utilisant les param\u00e8tres de substitution des chemins du serveur.", - "LabelKodiMetadataEnablePathSubstitutionHelp2": "Voir substitution de chemins.", - "OptionDisplayChannelsInline": "Int\u00e9grer les affichage des chaines dans mes vues", - "OptionDisplayChannelsInlineHelp": "Si aciv\u00e9, les chaines seront affich\u00e9s directement \u00e0 c\u00f4t\u00e9 des autres vues. Si d\u00e9sactiv\u00e9, elles seront affich\u00e9es dans une vue de cha\u00eenes s\u00e9par\u00e9e.", - "LabelDisplayCollectionsView": "Afficher un aper\u00e7u de collections pour montrer les collections de film", - "LabelDisplayCollectionsViewHelp": "Cela va cr\u00e9er une vue s\u00e9par\u00e9e pour afficher des collections de films. Pour cr\u00e9er une collection, cliquez-droit ou appuyez-tenir un film et s\u00e9lectionnez 'Ajouter \u00e0 la collection '.", + "LabelKodiMetadataEnablePathSubstitution": "Activer la substitution des chemins", + "LabelKodiMetadataEnablePathSubstitutionHelp": "Active la substitution du chemin des images en utilisant les param\u00e8tres de substitution des chemins du serveur.", + "LabelKodiMetadataEnablePathSubstitutionHelp2": "Voir la substitution de chemin.", + "OptionDisplayChannelsInline": "Afficher les cha\u00eenes comme des dossiers multim\u00e9dias", + "OptionDisplayChannelsInlineHelp": "Si l'option est activ\u00e9e, les cha\u00eenes seront affich\u00e9es directement \u00e0 c\u00f4t\u00e9 des autres m\u00e9diath\u00e8ques. Sinon, elles seront affich\u00e9es dans un dossier Cha\u00eenes s\u00e9par\u00e9.", + "LabelDisplayCollectionsView": "Afficher une vue de collections pour montrer les collections de film", + "LabelDisplayCollectionsViewHelp": "Cela va cr\u00e9er une vue s\u00e9par\u00e9e pour afficher les collections de films. Pour cr\u00e9er une collection, cliquez droit ou appuyez et tenez un film et s\u00e9lectionnez \u00ab\u00a0Ajouter \u00e0 la collection\u00a0\u00bb.", "LabelKodiMetadataEnableExtraThumbs": "Copier les extrafanart dans les extrathumbs", - "LabelKodiMetadataEnableExtraThumbsHelp": "Pendant le t\u00e9l\u00e9chargement, les images peuvent \u00eatre sauvegard\u00e9es en tant qu'extrafanart et extrathumbs pour am\u00e9liorer la compatibilit\u00e9 avec le skin Kodi.", + "LabelKodiMetadataEnableExtraThumbsHelp": "Pendant le t\u00e9l\u00e9chargement, les images peuvent \u00eatre enregistr\u00e9es en tant qu'extrafanart et extrathumbs pour am\u00e9liorer la compatibilit\u00e9 avec le skin Kodi.", "TabServices": "Services", - "TabLogs": "Logs", - "HeaderServerLogFiles": "Fichiers log du serveur :", + "TabLogs": "Journaux", "TabBranding": "Slogan", "HeaderBrandingHelp": "Personnalisez l'apparence d'Emby pour satisfaire les besoins de votre groupe ou organisation.", "LabelLoginDisclaimer": "Avertissement sur la page d'accueil :", @@ -905,48 +809,44 @@ "TabDashboard": "Tableau de bord", "TitleServer": "Serveur", "LabelCache": "Cache :", - "LabelLogs": "Logs :", + "LabelLogs": "Journaux :", "LabelMetadata": "M\u00e9tadonn\u00e9es :", - "LabelTranscodingTemporaryFiles": "Transcodage de fichiers temporaires :", - "HeaderLatestMusic": "Derni\u00e8re musique", + "LabelTranscodingTemporaryFiles": "Fichiers temporaires de transcodage :", + "HeaderLatestMusic": "Derni\u00e8res musiques", "HeaderBranding": "Slogan", "HeaderApiKeys": "Cl\u00e9s API", - "HeaderApiKeysHelp": "Les applications externes ont besoin d'une cl\u00e9 d'Api pour communiquer avec le serveur Emby. Les cl\u00e9s sont distribu\u00e9es lors d'une connexion avec un compte Emby, ou bien en accordant manuellement une cl\u00e9 \u00e0 une application.", + "HeaderApiKeysHelp": "Les applications externes ont besoin d'une cl\u00e9 d'API pour communiquer avec le serveur Emby. Les cl\u00e9s sont distribu\u00e9es lors d'une connexion avec un compte Emby, ou bien en accordant manuellement une cl\u00e9 \u00e0 une application.", "HeaderApiKey": "Cl\u00e9 API", - "HeaderApp": "App", + "HeaderApp": "Application", "HeaderDevice": "P\u00e9riph\u00e9rique", "HeaderUser": "Utilisateur", "HeaderDateIssued": "Date de publication", - "LabelChapterName": "Chapitre {0}", "HeaderHttpHeaders": "En-t\u00eates HTTP", "HeaderIdentificationHeader": "En-t\u00eate d'identification", "LabelValue": "Valeur :", "LabelMatchType": "Type recherch\u00e9 :", - "OptionEquals": "Egale", + "OptionEquals": "\u00c9gal", "OptionRegex": "Regex", "OptionSubstring": "Sous-cha\u00eene", - "TabView": "Affichage", - "TabSort": "Trier", + "TabView": "Vue", "TabFilter": "Filtre", - "ButtonView": "Affichage", - "LabelPageSize": "Items par page :", - "LabelPath": "Chemin", - "LabelView": "Visualisation :", + "ButtonView": "Vue", + "LabelPageSize": "\u00c9l\u00e9ments par page :", + "LabelPath": "Chemin\u00a0:", + "LabelView": "Vue :", "TabUsers": "Utilisateurs", "HeaderFeatures": "Fonctionnalit\u00e9s", "HeaderAdvanced": "Avanc\u00e9", - "ButtonSync": "Sync", + "ButtonSync": "Synchroniser", "TabScheduledTasks": "T\u00e2ches planifi\u00e9es", "HeaderChapters": "Chapitres", "HeaderResumeSettings": "Param\u00e8tres de reprise", - "TabSync": "Sync", + "TabSync": "Synchroniser", "TitleUsers": "Utilisateurs", - "LabelProtocol": "Protocole:", + "LabelProtocol": "Protocole\u00a0:", "OptionProtocolHttp": "Http", - "OptionProtocolHls": "Streaming Http Live", - "LabelContext": "Contexte:", - "OptionContextStreaming": "Diffusion", - "OptionContextStatic": "Sync", + "OptionProtocolHls": "Streaming Http en direct", + "LabelContext": "Contexte\u00a0:", "TabPlaylists": "Listes de lecture", "ButtonClose": "Fermer", "LabelAllLanguages": "Toutes les langues", @@ -956,11 +856,10 @@ "LabelImage": "Image :", "HeaderImages": "Images", "HeaderBackdrops": "Arri\u00e8re-plans", - "HeaderScreenshots": "Captures d'\u00e9cran", "HeaderAddUpdateImage": "Ajouter\/modifier l'image", "LabelDropImageHere": "Placer l'image ici", "LabelJpgPngOnly": "JPG\/PNG seulement", - "LabelImageType": "Type d'image:", + "LabelImageType": "Type d'image\u00a0:", "OptionPrimary": "Principale", "OptionArt": "Art", "OptionBox": "Bo\u00eetier", @@ -969,18 +868,17 @@ "OptionIcon": "Ic\u00f4ne", "OptionLogo": "Logo", "OptionMenu": "Menu", - "OptionScreenshot": "Captures d'\u00e9cran", + "OptionScreenshot": "Capture d'\u00e9cran", "OptionLocked": "Verrouill\u00e9", "OptionUnidentified": "Non identifi\u00e9", - "OptionMissingParentalRating": "Note de contr\u00f4le parental manquante", - "OptionStub": "Coupure", + "OptionMissingParentalRating": "Classification parentale manquante", "OptionSeason0": "Saison 0", - "LabelReport": "Rapport:", + "LabelReport": "Rapport\u00a0:", "OptionReportSongs": "Chansons", "OptionReportSeries": "S\u00e9ries", "OptionReportSeasons": "Saisons", "OptionReportTrailers": "Bandes-annonces", - "OptionReportMusicVideos": "Vid\u00e9oclips", + "OptionReportMusicVideos": "Vid\u00e9os musicales", "OptionReportMovies": "Films", "OptionReportHomeVideos": "Vid\u00e9os personnelles", "OptionReportGames": "Jeux", @@ -991,126 +889,104 @@ "OptionReportAlbums": "Albums", "ButtonMore": "Plus", "HeaderActivity": "Activit\u00e9", - "ScheduledTaskStartedWithName": "{0} a commenc\u00e9", - "ScheduledTaskCancelledWithName": "{0} a \u00e9t\u00e9 annul\u00e9", - "ScheduledTaskCompletedWithName": "{0} termin\u00e9", - "ScheduledTaskFailed": "T\u00e2che planifi\u00e9e termin\u00e9e", "PluginInstalledWithName": "{0} a \u00e9t\u00e9 install\u00e9", "PluginUpdatedWithName": "{0} a \u00e9t\u00e9 mis \u00e0 jour", "PluginUninstalledWithName": "{0} a \u00e9t\u00e9 d\u00e9sinstall\u00e9", - "ScheduledTaskFailedWithName": "{0} a \u00e9chou\u00e9", - "DeviceOnlineWithName": "{0} est connect\u00e9", "UserOnlineFromDevice": "{0} s'est connect\u00e9 depuis {1}", - "DeviceOfflineWithName": "{0} s'est d\u00e9connect\u00e9", "UserOfflineFromDevice": "{0} s'est d\u00e9connect\u00e9 depuis {1}", - "SubtitlesDownloadedForItem": "Les sous-titres de {0} ont \u00e9t\u00e9 t\u00e9l\u00e9charg\u00e9s", - "SubtitleDownloadFailureForItem": "Le t\u00e9l\u00e9chargement des sous-titres pour {0} a \u00e9chou\u00e9.", - "LabelRunningTimeValue": "Dur\u00e9e: {0}", - "LabelIpAddressValue": "Adresse IP: {0}", + "LabelRunningTimeValue": "Dur\u00e9e\u00a0: {0}", + "LabelIpAddressValue": "Adresse IP\u00a0: {0}", "UserLockedOutWithName": "L'utilisateur {0} a \u00e9t\u00e9 verrouill\u00e9", "UserConfigurationUpdatedWithName": "La configuration utilisateur de {0} a \u00e9t\u00e9 mise \u00e0 jour", "UserCreatedWithName": "L'utilisateur {0} a \u00e9t\u00e9 cr\u00e9\u00e9.", - "UserPasswordChangedWithName": "Le mot de passe pour l'utilisateur {0} a \u00e9t\u00e9 modifi\u00e9.", "UserDeletedWithName": "L'utilisateur {0} a \u00e9t\u00e9 supprim\u00e9.", "MessageServerConfigurationUpdated": "La configuration du serveur a \u00e9t\u00e9 mise \u00e0 jour.", "MessageNamedServerConfigurationUpdatedWithValue": "La configuration de la section {0} du serveur a \u00e9t\u00e9 mise \u00e0 jour.", "MessageApplicationUpdated": "Le serveur Emby a \u00e9t\u00e9 mis \u00e0 jour", "UserDownloadingItemWithValues": "{0} est en train de t\u00e9l\u00e9charger {1}", - "UserStartedPlayingItemWithValues": "{0} vient de commencer la lecture de {1}", - "UserStoppedPlayingItemWithValues": "{0} vient d'arr\u00eater la lecture de {1}", - "AppDeviceValues": "Application : {0}, Appareil: {1}", "ProviderValue": "Fournisseur : {0}", "HeaderRecentActivity": "Activit\u00e9 r\u00e9cente", "HeaderPeople": "Personnes", - "HeaderDownloadPeopleMetadataFor": "T\u00e9l\u00e9charger la biographie et les images pour:", + "HeaderDownloadPeopleMetadataFor": "T\u00e9l\u00e9charger la biographie et les images pour\u00a0:", "OptionComposers": "Compositeurs", "OptionOthers": "Autres", - "HeaderDownloadPeopleMetadataForHelp": "Activer les options compl\u00e9mentaires fournira plus d'informations \u00e0 l'\u00e9cran mais ralentira les scans de la biblioth\u00e8que de medias.", - "ViewTypeFolders": "R\u00e9pertoires", - "OptionDisplayFolderView": "Afficher une vue mosa\u00efque pour montrer les dossiers media en int\u00e9gralit\u00e9.", - "OptionDisplayFolderViewHelp": "Lorsqu'elle est activ\u00e9e, L\u2019application Emby va afficher une cat\u00e9gorie de dossiers \u00e0 c\u00f4t\u00e9 de votre biblioth\u00e8que multim\u00e9dia. Ceci est utile si vous souhaitez avoir une vue simple du dossier.", + "HeaderDownloadPeopleMetadataForHelp": "Activer les options compl\u00e9mentaires fournira plus d'informations \u00e0 l'\u00e9cran mais rallongera la dur\u00e9e de balayage de la m\u00e9diath\u00e8que.", + "ViewTypeFolders": "Dossiers", + "OptionDisplayFolderView": "Afficher une vue de dossiers pour montrer les dossiers multim\u00e9dia en int\u00e9gralit\u00e9.", + "OptionDisplayFolderViewHelp": "Les applications Emby vont afficher une cat\u00e9gorie Dossiers \u00e0 c\u00f4t\u00e9 de votre m\u00e9diath\u00e8que. C'est utile si vous souhaitez avoir une vue compl\u00e8te des dossiers.", "ViewTypeLiveTvRecordingGroups": "Enregistrements", "ViewTypeLiveTvChannels": "Cha\u00eenes", - "LabelEasyPinCode": "Code Easy Pin :", - "EasyPasswordHelp": "Votre code Easy Pin est utilis\u00e9 pour l'acc\u00e8s offline par les applications Emby compatibles. Il peut \u00e9galement servir \u00e0 simplifier votre connexion depuis votre r\u00e9seau local.", - "LabelInNetworkSignInWithEasyPassword": "Activer l'authentification simplifi\u00e9e dans les r\u00e9seaux domestiques avec mon code Easy Pin", - "LabelInNetworkSignInWithEasyPasswordHelp": "Si vous activez cette option, vous pourrez utiliser votre code Easy Pin pour vous connecter aux applications Emby depuis l'int\u00e9rieur de votre r\u00e9seau local. Votre mot de passe habituel ne sera requis que depuis l'ext\u00e9rieur. Si le code Pin n'est pas d\u00e9fini, vous n'aurez pas besoin de mot de passe depuis l'int\u00e9rieur de votre r\u00e9seau local.", + "LabelEasyPinCode": "Code Easy PIN :", + "EasyPasswordHelp": "Votre code Easy PIN est utilis\u00e9 pour l'acc\u00e8s hors ligne par les applications Emby compatibles. Il peut \u00e9galement servir \u00e0 simplifier votre connexion depuis votre r\u00e9seau local.", + "LabelInNetworkSignInWithEasyPassword": "Activer l'authentification simplifi\u00e9e dans les r\u00e9seaux domestiques avec mon code Easy PIN", + "LabelInNetworkSignInWithEasyPasswordHelp": "Si vous activez cette option, vous pourrez utiliser votre code Easy PIN pour vous connecter aux applications Emby depuis l'int\u00e9rieur de votre r\u00e9seau local. Votre mot de passe habituel ne sera requis que depuis l'ext\u00e9rieur. Si le code PIN n'est pas d\u00e9fini, vous n'aurez pas besoin de mot de passe depuis l'int\u00e9rieur de votre r\u00e9seau local.", "HeaderPassword": "Mot de passe", - "HeaderViewOrder": "Ordre d'affichage", - "ButtonResetEasyPassword": "R\u00e9initialiser le code Easy Pin", - "LabelSelectUserViewOrder": "Choisissez l'ordre dans lequel les pages des applications Emby seront affich\u00e9es", - "HeaderPersonInfo": "Info personnes", + "HeaderViewOrder": "Ordre des vues", + "ButtonResetEasyPassword": "R\u00e9initialiser le code Easy PIN", + "LabelSelectUserViewOrder": "Choisissez l'ordre dans lequel vos vues seront affich\u00e9es dans les applications Emby", + "HeaderPersonInfo": "Informations de personne", "HeaderConfirmDeletion": "Confirmer la suppression", - "LabelAlbumArtist": "Album de l'artiste", + "LabelAlbumArtist": "Artiste de l'album\u00a0:", "LabelAlbumArtists": "Artistes de l'album :", "LabelAlbum": "Album :", - "LabelCommunityRating": "Note de la communaut\u00e9", - "LabelAwardSummary": "R\u00e9compenses", - "LabelReleaseDate": "Date de sortie", - "LabelEndDate": "Date de fin:", - "LabelAirDate": "Jours de diffusion", - "LabelAirTime:": "Heure de diffusion", - "LabelRuntimeMinutes": "Dur\u00e9e (minutes)", - "LabelRevenue": "Box-office ($)", - "HeaderAlternateEpisodeNumbers": "Num\u00e9ros d'\u00e9pisode alternatif", - "HeaderSpecialEpisodeInfo": "Information \u00e9pisode sp\u00e9cial", - "HeaderExternalIds": "Identifiants externes", - "LabelAirsBeforeSeason": "Diffusion avant la saison :", - "LabelAirsAfterSeason": "Diffusion apr\u00e8s la saison :", - "LabelAirsBeforeEpisode": "Diffusion avant l'\u00e9pisode :", + "LabelCommunityRating": "Note de la communaut\u00e9\u00a0:", + "LabelAwardSummary": "R\u00e9compenses\u00a0:", + "LabelReleaseDate": "Date de sortie\u00a0:", + "LabelEndDate": "Date de fin\u00a0:", + "LabelAirDate": "Jours de diffusion\u00a0:", + "LabelAirTime:": "Heure de diffusion\u00a0:", + "LabelRuntimeMinutes": "Dur\u00e9e (minutes)\u00a0:", + "HeaderSpecialEpisodeInfo": "Informations de l'\u00e9pisode sp\u00e9cial", "LabelDisplaySpecialsWithinSeasons": "Afficher les \u00e9pisodes sp\u00e9ciaux avec leur saison de diffusion", - "HeaderCountries": "Pays", "HeaderGenres": "Genres", - "HeaderPlotKeywords": "afficher les mots cl\u00e9s", + "HeaderPlotKeywords": "Mots-cl\u00e9s de l'intrigue", "HeaderStudios": "Studios", - "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Laisser vide pour h\u00e9riter des r\u00e9glages de l'\u00e9l\u00e9ment parent, ou de la valeur globale par d\u00e9faut.", + "HeaderTags": "\u00c9tiquettes", "OptionNoTrailer": "Aucune bande-annonce", "ButtonPurchase": "Acheter", "OptionActor": "Acteur(trice)", - "OptionComposer": "Compositeur:", - "OptionDirector": "R\u00e9alisateur:", + "OptionComposer": "Compositeur", + "OptionDirector": "R\u00e9alisateur", "OptionProducer": "Producteur", - "OptionWriter": "Sc\u00e9nariste", - "LabelAirDays": "Jours de diffusion", - "LabelAirTime": "Heure de diffusion", - "HeaderMediaInfo": "Information m\u00e9dia", - "HeaderPhotoInfo": "Information photo", - "HeaderInstall": "Install\u00e9", + "LabelAirDays": "Jours de diffusion :", + "LabelAirTime": "Heure de diffusion\u00a0:", + "HeaderMediaInfo": "Informations du m\u00e9dia", + "HeaderPhotoInfo": "Informations de la photo", + "HeaderInstall": "Installer", "LabelSelectVersionToInstall": "S\u00e9lectionner la version \u00e0 installer :", "LinkLearnMoreAboutSubscription": "Apprenez-en davantage sur Emby Premiere", - "MessagePluginRequiresSubscription": "Ce plugin n\u00e9cessitera une cl\u00e9 Emby Premiere au-del\u00e0 de la p\u00e9riode d'essai gratuit de 14 jours.", - "MessagePremiumPluginRequiresMembership": "L'achat de ce plugin au-del\u00e0 de la p\u00e9riode d'essai gratuit de 14 jours n\u00e9cessitera une souscription Emby Premiere active.", - "HeaderReviews": "Revues", - "HeaderDeveloperInfo": "Info d\u00e9velopeur", + "MessagePluginRequiresSubscription": "Cette extension n\u00e9cessitera un abonnement Emby Premiere au-del\u00e0 de la p\u00e9riode d'essai gratuite de 14 jours.", + "MessagePremiumPluginRequiresMembership": "Cette extension n\u00e9cessitera un abonnement Emby Premiere au-del\u00e0 de la p\u00e9riode d'essai gratuite de 14 jours.", + "HeaderReviews": "Critiques", + "HeaderDeveloperInfo": "Informations du d\u00e9veloppeur", "HeaderRevisionHistory": "Historique des r\u00e9visions", "ButtonViewWebsite": "Voir le site", - "HeaderXmlSettings": "R\u00e9glages Xml", - "HeaderXmlDocumentAttributes": "Attributs des documents Xml", - "HeaderXmlDocumentAttribute": "Attribut des documents Xml", - "XmlDocumentAttributeListHelp": "Ces attributs sont appliqu\u00e9s \u00e0 l'\u00e9l\u00e9ment racine de chaque r\u00e9ponse xml", - "OptionSaveMetadataAsHidden": "Sauvegarder les m\u00e9ta-donn\u00e9es et les images en tant que fichier cach\u00e9s", - "LabelExtractChaptersDuringLibraryScan": "Extraire les images des chapitres pendant le scan de la biblioth\u00e8que", - "LabelExtractChaptersDuringLibraryScanHelp": "Si activ\u00e9, les images de chapitres seront extraites lors de l'importation de vid\u00e9os pendant le scan de la librairie. Sinon elles seront extraites pendant la t\u00e2che programm\u00e9e, permettant de terminer plus rapidement les scans r\u00e9guliers de la librairie.", - "LabelConnectGuestUserName": "Nom d'utilisateur Emby ou adresse email de l'invit\u00e9 :", - "LabelConnectUserName": "Nom d'utilisateur Emby ou adresse email:", - "LabelConnectUserNameHelp": "Connectez cet utilisateur local \u00e0 un compte Emby pour activer l'acc\u00e8s par code Easy Pin depuis n'importe quelle application Emby sans avoir \u00e0 conna\u00eetre l'adresse IP du serveur.", + "HeaderXmlSettings": "Param\u00e8tres XML", + "HeaderXmlDocumentAttributes": "Attributs des documents XML", + "HeaderXmlDocumentAttribute": "Attribut des documents XML", + "XmlDocumentAttributeListHelp": "Ces attributs sont appliqu\u00e9s \u00e0 l'\u00e9l\u00e9ment racine de chaque r\u00e9ponse XML", + "OptionSaveMetadataAsHidden": "Enregistrer les m\u00e9tadonn\u00e9es et les images en tant que fichier cach\u00e9s", + "LabelExtractChaptersDuringLibraryScan": "Extraire les images des chapitres pendant le balayage de la m\u00e9diath\u00e8que", + "LabelExtractChaptersDuringLibraryScanHelp": "Si l'option est activ\u00e9e, les images de chapitres seront extraites lors de l'importation de vid\u00e9os pendant le balayage de la m\u00e9diath\u00e8que. Sinon elles seront extraites pendant la t\u00e2che planifi\u00e9e des images de chapitre, permettant de terminer plus rapidement les balayages r\u00e9guliers de la m\u00e9diath\u00e8que.", + "LabelConnectGuestUserName": "Nom d'utilisateur Emby ou adresse courriel de l'invit\u00e9 :", + "LabelConnectUserName": "Nom d'utilisateur Emby ou adresse courriel :", + "LabelConnectUserNameHelp": "Connectez cet utilisateur local \u00e0 un compte Emby pour activer l'acc\u00e8s facile depuis n'importe quelle application Emby sans avoir \u00e0 conna\u00eetre l'adresse IP du serveur.", "ButtonLearnMoreAboutEmbyConnect": "Plus d'infos sur Emby Connect", - "LabelExternalPlayers": "Lecteurs externes:", - "LabelExternalPlayersHelp": "Afficher les boutons pour lire du contenu sur le lecteur externe. Ceci est valable uniquement sur des appareils supportant les URLs, g\u00e9n\u00e9ralement Android et iOS. Avec les lecteurs externes il n'y a g\u00e9n\u00e9ralement pas de support pour le contr\u00f4le \u00e0 distance ou la reprise.", + "LabelExternalPlayers": "Lecteurs externes\u00a0:", + "LabelExternalPlayersHelp": "Affiche des boutons pour lire le contenu sur des lecteurs externes. Ceci est disponible uniquement sur des appareils supportant les URLs, g\u00e9n\u00e9ralement Android et iOS. Avec les lecteurs externes il n'y a g\u00e9n\u00e9ralement pas de support pour le contr\u00f4le \u00e0 distance ou la reprise.", "LabelNativeExternalPlayersHelp": "Afficher les boutons pour lire le contenu sur les lecteurs externes.", "HeaderSubtitleProfile": "Profil de sous-titre", "HeaderSubtitleProfiles": "Profils de sous-titre", "HeaderSubtitleProfilesHelp": "Les profils de sous-titre d\u00e9crivent les formats de sous-titre support\u00e9s par l'appareil.", - "LabelFormat": "Format:", - "LabelMethod": "M\u00e9thode:", - "LabelDidlMode": "Mode Didl:", + "LabelFormat": "Format\u00a0:", + "LabelMethod": "M\u00e9thode\u00a0:", + "LabelDidlMode": "Mode DIDL\u00a0:", "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionResElement": "R\u00e9solution d'\u00e9l\u00e9ment", - "OptionEmbedSubtitles": "Am\u00e9lior\u00e9 avec container", + "OptionEmbedSubtitles": "Inclure dans le conteneur", "OptionExternallyDownloaded": "T\u00e9l\u00e9chargement externe", - "OptionHlsSegmentedSubtitles": "Sous-titres segment\u00e9 HIs", - "LabelSubtitleFormatHelp": "Exemple: srt", + "OptionHlsSegmentedSubtitles": "Sous-titres segment\u00e9s HIs", + "LabelSubtitleFormatHelp": "Exemple\u00a0: srt", "ButtonLearnMore": "En savoir plus", "TabPlayback": "Lecture", "HeaderAudioSettings": "R\u00e9glages audio", @@ -1118,41 +994,41 @@ "TabCinemaMode": "Mode cin\u00e9ma", "TitlePlayback": "Lecture", "LabelEnableCinemaModeFor": "Activer le mode cin\u00e9ma pour :", - "CinemaModeConfigurationHelp": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon gr\u00e2ce \u00e0 la possibilit\u00e9 de lire les bandes-annonces et les introductions personnalis\u00e9es avant le programme principal.", - "OptionTrailersFromMyMovies": "Inclure les bandes-annonces des films dans ma biblioth\u00e8que", - "OptionUpcomingMoviesInTheaters": "Inclure les bandes-annonces des nouveaut\u00e9s et des films \u00e0 l'affiche", - "LabelLimitIntrosToUnwatchedContent": "Utiliser seulement les bandes-annonces du contenu non lu", - "LabelEnableIntroParentalControl": "Activer le control parental intelligent", - "LabelEnableIntroParentalControlHelp": "Les bandes-annonces seront s\u00e9lectionn\u00e9es seulement si niveau de contr\u00f4le parental est \u00e9gal ou inf\u00e9rieur \u00e0 celui du contenu en cours de lecture.", - "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "Ces fonctionnalit\u00e9s n\u00e9cessitent une souscription Emby Premiere active et l'installation du plugin cha\u00eene Bandes-annonces.", + "CinemaModeConfigurationHelp": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon gr\u00e2ce \u00e0 la possibilit\u00e9 de lire des bandes-annonces et des introductions personnalis\u00e9es avant le film principal.", + "OptionTrailersFromMyMovies": "Inclure les bandes-annonces des films dans ma m\u00e9diath\u00e8que", + "OptionUpcomingMoviesInTheaters": "Inclure les bandes-annonces des nouveaux films et des films \u00e0 venir", + "LabelLimitIntrosToUnwatchedContent": "Lire seulement les bandes-annonces du contenu non lu", + "LabelEnableIntroParentalControl": "Activer le contr\u00f4le parental intelligent", + "LabelEnableIntroParentalControlHelp": "Les bandes-annonces seront s\u00e9lectionn\u00e9es seulement si la classification parentale est \u00e9gal ou inf\u00e9rieur \u00e0 celle du contenu en cours de lecture.", + "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "Ces fonctionnalit\u00e9s n\u00e9cessitent un abonnement Emby Premiere et l'installation du plugin Trailers.", "OptionTrailersFromMyMoviesHelp": "N\u00e9cessite la configuration des bandes-annonces locales.", "LabelCustomIntrosPath": "Chemin des intros personnalis\u00e9es :", - "LabelCustomIntrosPathHelp": "Un r\u00e9pertoire contenant des fichiers vid\u00e9os. Une vid\u00e9o sera s\u00e9lectionn\u00e9e al\u00e9atoirement et lue apr\u00e8s les bandes-annonces.", + "LabelCustomIntrosPathHelp": "Un dossier contenant des fichiers vid\u00e9os. Une vid\u00e9o sera s\u00e9lectionn\u00e9e al\u00e9atoirement et lue apr\u00e8s les bandes-annonces.", "LabelSelectInternetTrailersForCinemaMode": "Bandes-annonces Internet :", "OptionUpcomingDvdMovies": "Inclure les bandes-annonces des nouveaut\u00e9s et des films \u00e0 venir sur DVD et Blu-Ray", "OptionUpcomingStreamingMovies": "Inclure les bandes-annonces des nouveaut\u00e9s et des films \u00e0 l'affiche sur Netflix", - "CinemaModeConfigurationHelp2": "L'application Emby poss\u00e8de un param\u00e9trage pour utiliser ou non le mode cin\u00e9ma. L'application TV utilise le mode cinema par defaut.", + "CinemaModeConfigurationHelp2": "Les applications Emby poss\u00e8dent un param\u00e8tre pour activer ou non le mode cin\u00e9ma. Les applications TV utilisent le mode cin\u00e9ma par d\u00e9faut.", "LabelEnableCinemaMode": "Activer le mode cin\u00e9ma", "HeaderCinemaMode": "Mode cin\u00e9ma", - "LabelDateAddedBehavior": "Choix des dates lors de l'ajout de nouveau contenu:", - "OptionDateAddedImportTime": "Utiliser la dates du scan de la biblioth\u00e8que", - "OptionDateAddedFileTime": "Utiliser la date de cr\u00e9ation de fichier", - "LabelDateAddedBehaviorHelp": "Si une m\u00e9dadonn\u00e9e est pr\u00e9sente, elle sera toujours utilis\u00e9e avant toutes ces options.", + "LabelDateAddedBehavior": "Choix de la date d'ajout pour le nouveau contenu\u00a0:", + "OptionDateAddedImportTime": "Utiliser la date d'ajout dans la m\u00e9diath\u00e8que", + "OptionDateAddedFileTime": "Utiliser la date de cr\u00e9ation du fichier", + "LabelDateAddedBehaviorHelp": "Si une m\u00e9tadonn\u00e9e est pr\u00e9sente, elle sera toujours utilis\u00e9e avant ces options.", "LabelNumberTrailerToPlay": "Nombre de bandes-annonces \u00e0 lire :", "TitleDevices": "Appareils", - "TabCameraUpload": "Upload du contenu de l'appareil photo", + "TabCameraUpload": "Transfert depuis l'appareil photo", "TabDevices": "Appareils", - "HeaderCameraUploadHelp": "Uploadez automatiquement dans Emby les photos et vid\u00e9os prises depuis votre mobile.", - "MessageNoDevicesSupportCameraUpload": "Vous n'avez actuellement aucun appareil supportant l'upload du contenu de l'appareil photo.", - "LabelCameraUploadPath": "R\u00e9pertoire d'upload du contenu de l'appareil photo :", - "LabelCameraUploadPathHelp": "Si vous le souhaitez, vous pouvez choisir un r\u00e9pertoire d'upload personnalis\u00e9. Sinon, le r\u00e9pertoire par d\u00e9faut sera utilis\u00e9. Si vous utilisez un r\u00e9pertoire personnalis\u00e9, vous devrez le rajouter \u00e0 la biblioth\u00e8que.", + "HeaderCameraUploadHelp": "Transf\u00e9rez automatiquement dans Emby les photos et vid\u00e9os prises depuis vos appareils mobiles.", + "MessageNoDevicesSupportCameraUpload": "Vous n'avez actuellement aucun appareil supportant le transfert depuis l'appareil photo.", + "LabelCameraUploadPath": "Chemin de transfert depuis l'appareil photo :", + "LabelCameraUploadPathHelp": "Si vous le souhaitez, vous pouvez choisir un dossier de transfert personnalis\u00e9. Sinon, le dossier par d\u00e9faut sera utilis\u00e9. Si vous utilisez un dossier personnalis\u00e9, vous devrez l'ajouter \u00e0 la m\u00e9diath\u00e8que.", "LabelCreateCameraUploadSubfolder": "Cr\u00e9er un sous-dossier pour chaque appareil", - "LabelCreateCameraUploadSubfolderHelp": "Des r\u00e9pertoires sp\u00e9cifiques peuvent \u00eatres affect\u00e9 aux appareils en cliquant sur le bouton correspondant dans la page des appareils.", - "LabelCustomDeviceDisplayName": "Nom d'affichage:", + "LabelCreateCameraUploadSubfolderHelp": "Des dossiers sp\u00e9cifiques peuvent \u00eatres affect\u00e9s aux appareils en cliquant sur le bouton correspondant dans la page Appareils.", + "LabelCustomDeviceDisplayName": "Nom d'affichage\u00a0:", "LabelCustomDeviceDisplayNameHelp": "Entrez un nom d'affichage personnalis\u00e9 ou laissez vide pour utiliser le nom rapport\u00e9 par l'appareil.", "HeaderInviteUser": "Inviter un utilisateur", - "LabelConnectGuestUserNameHelp": "Ceci est le nom d'utilisateur ou l'adress email que votre ami utilise pour se connecter au site web Emby.", - "HeaderInviteUserHelp": "Le partage de m\u00e9dias avec vos amis n'a jamais \u00e9t\u00e9 aussi facile avec Emby Connect.", + "LabelConnectGuestUserNameHelp": "Ceci est le nom d'utilisateur ou l'adresse courriel que votre ami utilise pour se connecter au site web Emby.", + "HeaderInviteUserHelp": "Le partage de m\u00e9dia avec vos amis n'a jamais \u00e9t\u00e9 aussi facile avec Emby Connect.", "ButtonSendInvitation": "Envoyez un invitation", "HeaderSignInWithConnect": "Se connecter avec Emby Connect", "HeaderGuests": "Invit\u00e9s", @@ -1160,51 +1036,50 @@ "TabParentalControl": "Contr\u00f4le Parental", "HeaderAccessSchedule": "Programme d'Acc\u00e8s", "HeaderAccessScheduleHelp": "Cr\u00e9ez un programme d'acc\u00e8s pour limiter l'acc\u00e8s \u00e0 certaines heures.", - "ButtonAddSchedule": "Ajouter un programme", "LabelAccessDay": "Jour de la semaine :", - "LabelAccessStart": "Heure de d\u00e9but:", - "LabelAccessEnd": "Heure de fin:", - "HeaderSchedule": "Al\u00e9atoire", + "LabelAccessStart": "Heure de d\u00e9but\u00a0:", + "LabelAccessEnd": "Heure de fin\u00a0:", + "HeaderSchedule": "Programme", "OptionEveryday": "Tous les jours", "OptionWeekdays": "Jours de la semaine", "OptionWeekends": "Week-ends", - "MessageProfileInfoSynced": "Information de profil utilisateur synchronis\u00e9 avec Emby Connect.", + "MessageProfileInfoSynced": "Informations de profil utilisateur synchronis\u00e9es avec Emby Connect.", "HeaderOptionalLinkEmbyAccount": "Optionnel : liez votre compte Emby", "ButtonTrailer": "Bande-annonce", - "MessageNoTrailersFound": "Aucune bande-annonce trouv\u00e9e. Installez la cha\u00eene Bande-annonces pour am\u00e9liorer votre exp\u00e9rience, par l'ajout d'une biblioth\u00e8que de bandes-annonces disponibles sur Internet.", + "MessageNoTrailersFound": "Aucune bande-annonce trouv\u00e9e. Installez la cha\u00eene Trailers pour am\u00e9liorer votre exp\u00e9rience, par l'ajout d'une m\u00e9diath\u00e8que de bandes-annonces disponibles sur Internet.", "HeaderNewUsers": "Nouveaux utilisateurs", "ButtonSignUp": "S'inscrire", "ButtonForgotPassword": "Mot de passe oubli\u00e9", "OptionDisableUserPreferences": "D\u00e9sactiver l'acc\u00e8s aux pr\u00e9f\u00e9rences utilisateurs", "OptionDisableUserPreferencesHelp": "Si activ\u00e9, seuls les administrateurs seront capables de configurer les images de profil utilisateurs, les mots de passe, et les langues pr\u00e9f\u00e9r\u00e9es.", "HeaderSelectServer": "S\u00e9lectionner le serveur", - "MessageNoServersAvailableToConnect": "Connexion impossible, aucun serveurs disponible. Si vous avez \u00e9t\u00e9 invit\u00e9 \u00e0 partager un serveur, veuillez accepter ci-dessous ou en cliquant sur le lien dans le mail.", + "MessageNoServersAvailableToConnect": "Connexion impossible, aucun serveur disponible. Si vous avez \u00e9t\u00e9 invit\u00e9 \u00e0 partager un serveur, veuillez accepter ci-dessous ou en cliquant sur le lien dans le courriel.", "TitleNewUser": "Nouvel utilisateur", - "ButtonConfigurePassword": "Configurer mot de passe", + "ButtonConfigurePassword": "Configurer le mot de passe", "HeaderDashboardUserPassword": "Les mots de passe utilisateurs sont g\u00e9r\u00e9s dans les param\u00e8tres de profil personnel de chaque utilisateur.", - "HeaderLibraryAccess": "Acc\u00e8s \u00e0 la librairie", - "HeaderChannelAccess": "Acc\u00e8s Cha\u00eene", - "HeaderLatestItems": "Derniers Objets", - "LabelSelectLastestItemsFolders": "Inclure les m\u00e9dias provenant des sections suivantes dans les derniers objects", - "HeaderShareMediaFolders": "Partager les r\u00e9pertoires de m\u00e9dias", + "HeaderLibraryAccess": "Acc\u00e8s \u00e0 la m\u00e9diath\u00e8que", + "HeaderChannelAccess": "Acc\u00e8s aux cha\u00eenes", + "HeaderLatestItems": "Derniers \u00e9l\u00e9ments", + "LabelSelectLastestItemsFolders": "Inclure les m\u00e9dias provenant des sections suivantes dans les Derniers \u00e9l\u00e9ments", + "HeaderShareMediaFolders": "Partager les dossiers multim\u00e9dias", "MessageGuestSharingPermissionsHelp": "La plupart des fonctions sont initialement indisponibles pour les invit\u00e9s mais peuvent \u00eatre activ\u00e9es au besoin.", "HeaderInvitations": "Invitations", "LabelForgotPasswordUsernameHelp": "Entrez votre nom d'utilisateur, si vous vous en souvenez.", "HeaderForgotPassword": "Mot de passe oubli\u00e9", "TitlePasswordReset": "Mot de passe r\u00e9initialis\u00e9", - "LabelPasswordRecoveryPinCode": "Code NIP:", + "LabelPasswordRecoveryPinCode": "Code PIN\u00a0:", "HeaderPasswordReset": "Mot de passe r\u00e9initialis\u00e9", - "HeaderParentalRatings": "Note parentale", + "HeaderParentalRatings": "Classifications parentales", "HeaderVideoTypes": "Types de vid\u00e9o", "HeaderYears": "Ann\u00e9es", - "HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classement inconnues ou n'en disposant pas:", - "LabelBlockContentWithTags": "Bloquer le contenu comportant les tags suivants :", + "HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classification inconnues ou n'en disposant pas\u00a0:", + "LabelBlockContentWithTags": "Bloquer le contenu comportant les \u00e9tiquettes :", "LabelEnableSingleImageInDidlLimit": "Limiter \u00e0 une seule image int\u00e9gr\u00e9e", "LabelEnableSingleImageInDidlLimitHelp": "Quelques p\u00e9riph\u00e9riques ne fourniront pas un rendu correct si plusieurs images sont int\u00e9gr\u00e9es dans Didl", "TabActivity": "Activit\u00e9", "TitleSync": "Sync.", "OptionAllowSyncContent": "Autoriser la synchronisation", - "OptionAllowContentDownloading": "Autoriser le t\u00e9l\u00e9chargement de m\u00e9dias", + "OptionAllowContentDownloading": "Autoriser le t\u00e9l\u00e9chargement des m\u00e9dias", "NameSeasonUnknown": "Saison inconnue", "NameSeasonNumber": "Saison {0}", "LabelNewUserNameHelp": "Les noms d'utilisateur peuvent contenir des lettres (a-z), des chiffres (0-9), des tirets (-), des tirets bas (_), des apostrophes (') et des points (.).", @@ -1212,36 +1087,34 @@ "TabSyncJobs": "T\u00e2ches de synchronisation", "HeaderThisUserIsCurrentlyDisabled": "Cet utilisateur est actuellement d\u00e9sactiv\u00e9", "MessageReenableUser": "Voir ci-dessous pour le r\u00e9activer", - "LabelEnableInternetMetadataForTvPrograms": "T\u00e9l\u00e9charger les m\u00e9ta-donn\u00e9es depuis Internet pour :", "OptionTVMovies": "T\u00e9l\u00e9films", "HeaderUpcomingMovies": "Films \u00e0 venir", - "HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir", + "HeaderUpcomingSports": "\u00c9v\u00e9nements sportifs \u00e0 venir", "HeaderUpcomingPrograms": "Programmes \u00e0 venir", "ButtonMoreItems": "Plus", "OptionEnableTranscodingThrottle": "Activer le throttling", "OptionEnableTranscodingThrottleHelp": "Le throttling consiste \u00e0 ajuster automatiquement la fr\u00e9quence de transcodage afin de minimiser l'utilisation CPU pendant la lecture.", - "LabelUploadSpeedLimit": "D\u00e9bit max d'upload (Mbps) :", + "LabelUploadSpeedLimit": "D\u00e9bit maximum de transfert (Mbps) :", "OptionAllowSyncTranscoding": "Autoriser la synchronisation quand elle n\u00e9cessite un transcodage", "HeaderPlayback": "Lecture du m\u00e9dia", "OptionAllowAudioPlaybackTranscoding": "Autoriser la lecture de musique n\u00e9cessitant un transcodage", "OptionAllowVideoPlaybackTranscoding": "Autoriser la lecture de vid\u00e9os n\u00e9cessitant un transcodage", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowVideoPlaybackRemuxing": "Autoriser la lecture de vid\u00e9os n\u00e9cessitant une conversion sans r\u00e9encodage", "OptionAllowMediaPlaybackTranscodingHelp": "Les utilisateurs recevront un message d'erreur compr\u00e9hensible lorsque le contenu n'est pas lisible en raison des restrictions appliqu\u00e9es.", "TabStreaming": "Streaming", - "LabelRemoteClientBitrateLimit": "Limite de d\u00e9bit de streaming Internet (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "Une limite de d\u00e9bit optionnelle du streaming pour toutes les connexions r\u00e9seau. Utile pour \u00e9viter que les clients demandent une bande passante sup\u00e9rieure \u00e0 ce que votre connexion peu fournir.", - "LabelConversionCpuCoreLimit": "Limite de c\u0153ur CPU:", - "LabelConversionCpuCoreLimitHelp": "Limite le nombre de c\u0153ur du processeur utilis\u00e9s pendant le transcodage.", + "LabelRemoteClientBitrateLimit": "Limite de d\u00e9bit de streaming Internet (Mbps)\u00a0:", + "LabelRemoteClientBitrateLimitHelp": "Une limite de d\u00e9bit optionnelle du streaming pour toutes les connexions r\u00e9seau. Utile pour \u00e9viter que les appareils ne demandent une bande passante sup\u00e9rieure \u00e0 ce que votre connexion peu fournir.", + "LabelConversionCpuCoreLimit": "Limite de c\u0153urs CPU\u00a0:", + "LabelConversionCpuCoreLimitHelp": "Limite le nombre de c\u0153urs du processeur utilis\u00e9s pendant le transcodage.", "OptionEnableFullSpeedConversion": "Autoriser le transcodage rapide", "OptionEnableFullSpeedConversionHelp": "Par d\u00e9faut, le transcodage est r\u00e9alis\u00e9 de mani\u00e8re lente pour minimiser la consommation de ressources.", "HeaderPlaylists": "Listes de lecture", - "HeaderViewStyles": "Styles d'affichage", + "HeaderViewStyles": "Styles de vues", "TabPhotos": "Photos", - "TabVideos": "Vid\u00e9os", "HeaderWelcomeToEmby": "Bienvenue sur Emby", - "EmbyIntroMessage": "Avec Emby, vous pouvez facilement diffuser vid\u00e9os, musique et photos sur Android et autres p\u00e9riph\u00e9riques de votre serveur Emby.", + "EmbyIntroMessage": "Avec Emby, vous pouvez facilement diffuser vid\u00e9os, musique et photos sur vos smartphones, tablettes et autres appareils depuis votre serveur Emby.", "ButtonSkip": "Passer", - "TextConnectToServerManually": "Connexion manuelle \u00e0 mon serveur", + "TextConnectToServerManually": "Connexion manuelle au serveur", "ButtonSignInWithConnect": "Se connecter avec Emby Connect", "ButtonConnect": "Connexion", "LabelServerHost": "Nom d'h\u00f4te :", @@ -1257,24 +1130,22 @@ "HeaderColumns": "Colonnes", "ButtonReset": "R\u00e9initialiser", "OptionEnableExternalVideoPlayers": "Activer les lecteurs vid\u00e9o externes", - "ButtonUnlockGuide": "D\u00e9verrouiller le Guide", "LabelEnableFullScreen": "Activer le mode plein \u00e9cran", - "LabelEmail": "Email :", + "LabelEmail": "Courriel :", "LabelUsername": "Nom d'utilisateur :", "HeaderSignUp": "S'inscrire", "LabelPasswordConfirm": "Mot de passe (confirmation) :", "ButtonAddServer": "Ajouter un serveur", - "TabHomeScreen": "Ecran d'accueil", - "HeaderDisplay": "Afficher", + "TabHomeScreen": "\u00c9cran d'accueil", + "HeaderDisplay": "Affichage", "HeaderNavigation": "Navigation", "OptionEnableAutomaticServerUpdates": "Activer les mises \u00e0 jour automatiques du serveur", "OptionOtherTrailers": "Inclure les bandes-annonces des vieux films", "HeaderOverview": "Aper\u00e7u", - "HeaderShortOverview": "Synopsys", + "HeaderShortOverview": "Synopsis", "HeaderType": "Type", - "HeaderSeverity": "S\u00e9v\u00e9rit\u00e9", "OptionReportActivities": "Journal d'activit\u00e9s", - "HeaderTunerDevices": "Terminaux tuner", + "HeaderTunerDevices": "Appareils tuner", "HeaderAddDevice": "Ajouter un appareil", "HeaderExternalServices": "Services externes", "LabelTunerIpAddress": "Adresse IP du tuner :", @@ -1284,132 +1155,124 @@ "LabelZipCode": "Code postal :", "GuideProviderSelectListings": "S\u00e9lectionner les listings", "GuideProviderLogin": "Connexion", - "LabelLineup": "Gamme :", - "MessageTunerDeviceNotListed": "Votre appareil tuner n'est pas list\u00e9 ? Essayez d'installer un fournisseur de service externe pour plus d'options de TV Live.", + "LabelLineup": "Programmation :", + "MessageTunerDeviceNotListed": "Votre appareil tuner n'est pas list\u00e9 ? Essayez d'installer un fournisseur de service externe pour plus d'options de TV en direct.", "LabelImportOnlyFavoriteChannels": "Restreindre aux cha\u00eenes ajout\u00e9es aux favoris", "ImportFavoriteChannelsHelp": "Activez cette option pour n'importer que les cha\u00eenes ajout\u00e9es aux favoris sur le tuner.", "ButtonRepeat": "R\u00e9p\u00e9ter", "LabelEnableThisTuner": "Activer ce tuner", "LabelEnableThisTunerHelp": "D\u00e9sactivez pour emp\u00eacher l'import de cha\u00eenes de ce tuner.", - "HeaderUnidentified": "Non identifi\u00e9", "HeaderImagePrimary": "Primaire", - "HeaderImageBackdrop": "Contexte", + "HeaderImageBackdrop": "Image d'arri\u00e8re-plan", "HeaderImageLogo": "Logo", "HeaderUserPrimaryImage": "Avatar de l'utilisateur", "ButtonProfile": "Profil", - "ButtonProfileHelp": "D\u00e9finir votre avatar et votre mot de passe", + "ButtonProfileHelp": "D\u00e9finir votre avatar et votre mot de passe.", "HeaderHomeScreenSettings": "Param\u00e8tres de l'\u00e9cran d'accueil", "HeaderProfile": "Profil", "HeaderLanguage": "Langue", "LabelTranscodingThreadCount": "Nombre de threads de transcodage :", - "LabelTranscodingThreadCountHelp": "S\u00e9lectionnez le nombre maximum de threads \u00e0 utiliser pour le transcodage. La r\u00e9duction de cette valeur \u00e9conomisera du temps CPU mais pourrait ne pas suffire pour que le transcodage soit assez rapide pour maintenir une lecture fluide.", - "OptionMax": "Max", - "LabelSyncPath": "Chemin de synchro :", + "LabelTranscodingThreadCountHelp": "S\u00e9lectionnez le nombre maximum de threads \u00e0 utiliser pour le transcodage. La r\u00e9duction de cette valeur r\u00e9duira l'utilisation du processeur mais pourrait ne pas suffire pour maintenir une lecture fluide.", + "OptionMax": "Maximum", + "LabelSyncPath": "Chemin de synchronisation :", "OptionSyncOnlyOnWifi": "Synchroniser sur Wifi uniquement", - "OptionSyncLosslessAudioOriginal": "Synchroniser le son sans perte de la qualit\u00e9 originelle", - "HeaderUpcomingForKids": "A venir pour les enfants", - "HeaderSetupLiveTV": "Configuration de la TV Live", + "OptionSyncLosslessAudioOriginal": "Synchroniser l'audio sans perte \u00e0 sa qualit\u00e9 d'origine", + "HeaderUpcomingForKids": "\u00c0 venir pour les enfants", + "HeaderSetupLiveTV": "Configuration de la TV en direct", "LabelTunerType": "Type de tuner :", - "HelpMoreTunersCanBeAdded": "D'autres tuners peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live", - "AdditionalLiveTvProvidersCanBeInstalledLater": "D'autres fournisseurs de TV Live peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live.", - "HeaderSetupTVGuide": "Configuration du Guide TV", + "HelpMoreTunersCanBeAdded": "D'autres tuners peuvent \u00eatre ajout\u00e9s plus tard dans la section TV en direct.", + "AdditionalLiveTvProvidersCanBeInstalledLater": "D'autres fournisseurs de TV en direct peuvent \u00eatre ajout\u00e9s plus tard dans la section TV en direct.", + "HeaderSetupTVGuide": "Configuration du guide TV", "LabelDataProvider": "Fournisseur de donn\u00e9es :", - "OptionSendRecordingsToAutoOrganize": "Organiser automatiquement des enregistrements dans des dossiers de la s\u00e9rie existante dans d'autres biblioth\u00e8ques", - "HeaderDefaultPadding": "Temporisation par d\u00e9faut", - "OptionEnableRecordingSubfolders": "Cr\u00e9er des sous-dossiers pour les cat\u00e9gories telles que Sports, enfants, etc.", + "OptionSendRecordingsToAutoOrganize": "Organiser automatiquement les enregistrements dans les dossiers des s\u00e9ries existants dans d'autres m\u00e9diath\u00e8ques", + "HeaderDefaultRecordingSettings": "Param\u00e8tres d'enregistrement par d\u00e9faut", + "OptionEnableRecordingSubfolders": "Cr\u00e9er des sous-dossiers pour les cat\u00e9gories telles que sports, jeunesse, etc.", "HeaderSubtitles": "Sous-titres", "HeaderVideos": "Vid\u00e9os", - "LabelHardwareAccelerationType": "Acc\u00e9l\u00e9ration mat\u00e9rielle:", + "LabelHardwareAccelerationType": "Acc\u00e9l\u00e9ration mat\u00e9rielle\u00a0:", "LabelHardwareAccelerationTypeHelp": "Disponible uniquement sur les syst\u00e8mes support\u00e9s.", "ButtonServerDashboard": "Tableau de bord du serveur", - "HeaderAdmin": "Admin", + "HeaderAdmin": "Administrateur", "ButtonSignOut": "D\u00e9connexion", - "HeaderCameraUpload": "Upload du contenu de l'appareil photo", - "SelectCameraUploadServers": "Uploader les photos de l'appareil vers les serveurs suivants :", + "HeaderCameraUpload": "Transfert depuis l'appareil photo", + "SelectCameraUploadServers": "Transf\u00e9rer les photos de l'appareil vers les serveurs suivants :", "ButtonClear": "Effacer", "LabelFolder": "Dossier :", "HeadersFolders": "Dossiers", "LabelDisplayName": "Nom d'affichage :", "HeaderNewRecording": "Nouvel enregistrement", - "ButtonAdvanced": "Avanc\u00e9", - "LabelCodecIntrosPath": "Chemin du codec des intros:", - "LabelCodecIntrosPathHelp": "Un dossier contenant les fichiers vid\u00e9os. Si le nom d'un fichier d'introduction vid\u00e9o correspond au codec vid\u00e9o, au codec audio, \u00e0 un profil audio ou \u00e0 un tag, alors il sera jou\u00e9 prioritairement par rapport au film principal.", - "OptionConvertRecordingsToStreamingFormat": "Convertir automatiquement les enregistrements a un format facilement diffusable.", - "OptionConvertRecordingsToStreamingFormatHelp": "Les enregistrements seront convertis \u00e0 la vol\u00e9e en MP4 afin faciliter la lecture sur tous vos appareils.", - "FeatureRequiresEmbyPremiere": "Cette fonctionnalit\u00e9 requiert un compte Emby Premiere.", + "LabelCodecIntrosPath": "Chemin des introductions des codecs\u00a0:", + "LabelCodecIntrosPathHelp": "Un dossier contenant des fichiers vid\u00e9o. Si le nom d'un fichier vid\u00e9o d'introduction correspond au codec vid\u00e9o, au codec audio, au profil audio ou \u00e0 une \u00e9tiquette, alors il sera lu avant le film principal.", + "OptionConvertRecordingsToStreamingFormat": "Convertir automatiquement les enregistrements vers un format facilement diffusable.", + "OptionConvertRecordingsToStreamingFormatHelp": "Les enregistrements seront convertis \u00e0 la vol\u00e9e en MP4 ou en MKV afin de faciliter la lecture sur tous vos appareils.", + "FeatureRequiresEmbyPremiere": "Cette fonctionnalit\u00e9 n\u00e9cessite un abonnement Emby Premiere.", "FileExtension": "Extension de fichier", - "OptionReplaceExistingImages": "Remplacer les images existantes", "OptionPlayNextEpisodeAutomatically": "Lancer l'\u00e9pisode suivant automatiquement", - "OptionDownloadImagesInAdvance": "T\u00e9l\u00e9charger toutes les images en avance", + "OptionDownloadImagesInAdvance": "T\u00e9l\u00e9charger les images en avance", "SettingsSaved": "Param\u00e8tres sauvegard\u00e9s.", - "OptionDownloadImagesInAdvanceHelp": "Par d\u00e9faut, la plupart des images secondaires sont t\u00e9l\u00e9charg\u00e9es seulement lorsque une application Emby le demande. S\u00e9lectionnez cette option pour t\u00e9l\u00e9charger toutes les images en avance, lorsque un nouveau m\u00e9dia est import\u00e9.", + "OptionDownloadImagesInAdvanceHelp": "Par d\u00e9faut, la plupart des images sont t\u00e9l\u00e9charg\u00e9es seulement lorsqu'une application Emby le demande. S\u00e9lectionnez cette option pour t\u00e9l\u00e9charger toutes les images en avance, lorsqu'un nouveau m\u00e9dia est import\u00e9. Cela peut allonger significativement la dur\u00e9e de balayage de la m\u00e9diath\u00e8que.", "Users": "Utilisateurs", "Delete": "Supprimer", "Password": "Mot de passe", "DeleteImage": "Supprimer l'image", - "MessageThankYouForSupporting": "Merci de supporter Emby.", - "MessagePleaseSupportProject": "Merci de supporter Emby.", + "MessageThankYouForSupporting": "Merci de soutenir Emby.", "DeleteImageConfirmation": "\u00cates-vous s\u00fbr de vouloir supprimer l'image?", "FileReadCancelled": "La lecture du fichier a \u00e9t\u00e9 annul\u00e9e.", "FileNotFound": "Fichier introuvable.", - "FileReadError": "Un erreur est survenue pendant la lecture du fichier.", + "FileReadError": "Une erreur est survenue pendant la lecture du fichier.", "DeleteUser": "Supprimer l'utilisateur", - "DeleteUserConfirmation": "\u00cates-vous s\u00fbr de vouloir supprimer cet utilisateur?", + "DeleteUserConfirmation": "\u00cates-vous s\u00fbr de vouloir supprimer cet utilisateur\u00a0?", "PasswordResetHeader": "R\u00e9initialiser le mot de passe", "PasswordResetComplete": "Le mot de passe a \u00e9t\u00e9 r\u00e9initialis\u00e9.", - "PinCodeResetComplete": "Le code Easy Pin a \u00e9t\u00e9 r\u00e9initialis\u00e9.", + "PinCodeResetComplete": "Le code PIN a \u00e9t\u00e9 r\u00e9initialis\u00e9.", "PasswordResetConfirmation": "\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser le mot de passe?", - "PinCodeResetConfirmation": "Etes-vous s\u00fbr de vouloir r\u00e9initialiser le code pin ?", - "HeaderPinCodeReset": "R\u00e9initialiser le code Pin", + "PinCodeResetConfirmation": "\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser le code PIN ?", + "HeaderPinCodeReset": "R\u00e9initialiser le code PIN", "PasswordSaved": "Mot de passe sauvegard\u00e9.", "PasswordMatchError": "Le mot de passe et sa confirmation doivent correspondre.", "UninstallPluginHeader": "D\u00e9sinstaller Plug-in", "UninstallPluginConfirmation": "\u00cates-vous s\u00fbr de vouloir d\u00e9sinstaller {0}?", - "NoPluginConfigurationMessage": "Ce plugin n'a rien \u00e0 configurer.", - "NoPluginsInstalledMessage": "Vous n'avez aucun plugin install\u00e9.", + "NoPluginConfigurationMessage": "Cette extension n'a aucun param\u00e8tre \u00e0 configurer.", + "NoPluginsInstalledMessage": "Vous n'avez aucune extensions install\u00e9e.", "BrowsePluginCatalogMessage": "Explorer notre catalogue des plugins pour voir les plugins disponibles.", "HeaderNewApiKey": "Nouvelle cl\u00e9 API", - "LabelAppName": "Nom de l'app", + "LabelAppName": "Nom de l'application", "LabelAppNameExample": "Exemple: Sickbeard, NzbDrone", "HeaderNewApiKeyHelp": "Permet \u00e0 une application de communiquer avec le serveur Emby.", - "MessageKeyEmailedTo": "Cl\u00e9 envoy\u00e9e par courriel \u00e0 {0}", + "MessageKeyEmailedTo": "Cl\u00e9 envoy\u00e9e par courriel \u00e0 {0}.", "MessageKeysLinked": "Cl\u00e9s associ\u00e9es.", "HeaderConfirmation": "Confirmation", "MessageKeyUpdated": "Merci. Votre cl\u00e9 Emby Premiere a \u00e9t\u00e9 mise \u00e0 jour.", "MessageKeyRemoved": "Merci. Votre cl\u00e9 Emby Premiere a \u00e9t\u00e9 supprim\u00e9e.", "TextEnjoyBonusFeatures": "Profitez bien des fonctionnalit\u00e9s bonus", "ButtonCancelSyncJob": "Annuler la synchronisation", - "HeaderAddTag": "Ajouter un tag", - "LabelTag": "Tag:", - "ButtonSelectView": "S\u00e9lectionnez un affichage", + "HeaderAddTag": "Ajouter une \u00e9tiquette", + "LabelTag": "\u00c9tiquette\u00a0:", + "ButtonSelectView": "S\u00e9lectionnez une vue", "HeaderSelectDate": "S\u00e9lectionnez la date", "ServerUpdateNeeded": "Le serveur Emby doit \u00eatre mis \u00e0 jour. Pour t\u00e9l\u00e9charger la derni\u00e8re version, veuillez visiter {0}", - "LabelFromHelp": "Exemple: {0} (sur le serveur)", - "HeaderMyMedia": "Mes medias", - "LabelAutomaticUpdateLevel": "Niveau de mise \u00e0 jour automatiques :", - "LabelAutomaticUpdateLevelForPlugins": "Niveau de mise \u00e0 jour automatique des plugins :", + "LabelFromHelp": "Exemple\u00a0: {0} (sur le serveur)", + "HeaderMyMedia": "Mes m\u00e9dias", "ErrorLaunchingChromecast": "Une erreur a \u00e9t\u00e9 rencontr\u00e9e lors du lancement de Chromecast. Veuillez vous assurer que votre appareil est bien connect\u00e9 \u00e0 votre r\u00e9seau sans-fil.", "MessageErrorLoadingSupporterInfo": "Une erreur s'est produite lors du chargement des informations Emby Premiere. Veuillez r\u00e9essayer plus tard.", - "MessageLinkYourSupporterKey": "Connectez votre cl\u00e9 Emby Premiere avec jusqu'\u00e0 {0} membres Emby Premiere pour acc\u00e9der gratuitement aux applications suivantes :", "HeaderConfirmRemoveUser": "Supprimer l'utilisateur", - "MessageConfirmRemoveConnectSupporter": "Etes-vous s\u00fbr de vouloir retirer les avantages suppl\u00e9mentaires Emby Premiere pour cet utilisateur ?", "ValueTimeLimitSingleHour": "Limite de temps : 1 heure", "ValueTimeLimitMultiHour": "Limite de temps : {0} heures", "PluginCategoryGeneral": "G\u00e9n\u00e9ral", - "PluginCategoryContentProvider": "Fournisseurs de contenus", - "PluginCategoryScreenSaver": "Ecrans de veille", + "PluginCategoryContentProvider": "Fournisseurs de contenu", + "PluginCategoryScreenSaver": "\u00c9crans de veille", "PluginCategoryTheme": "Th\u00e8mes", - "PluginCategorySync": "Sync", + "PluginCategorySync": "Synchronisation", "PluginCategorySocialIntegration": "R\u00e9seaux sociaux", "PluginCategoryNotifications": "Notifications", "PluginCategoryMetadata": "M\u00e9tadonn\u00e9es", - "PluginCategoryLiveTV": "TV en Direct", + "PluginCategoryLiveTV": "TV en direct", "PluginCategoryChannel": "Cha\u00eenes", "HeaderSearch": "Recherche", "ValueDateCreated": "Date de cr\u00e9ation : {0}", "LabelArtist": "Artiste", "LabelMovie": "Film", - "LabelMusicVideo": "Clip vid\u00e9o", + "LabelMusicVideo": "Vid\u00e9o musicale", "LabelEpisode": "\u00c9pisode", "Series": "S\u00e9ries", "LabelStopping": "En cours d'arr\u00eat", @@ -1417,7 +1280,7 @@ "ButtonDownload": "T\u00e9l\u00e9chargement", "SyncJobStatusQueued": "Mis en file d'attente", "SyncJobStatusConverting": "Conversion en cours", - "SyncJobStatusFailed": "Echec", + "SyncJobStatusFailed": "\u00c9chou\u00e9", "SyncJobStatusCancelled": "Annul\u00e9", "SyncJobStatusCompleted": "Synchronis\u00e9", "SyncJobStatusReadyToTransfer": "Pr\u00eat pour le transfert", @@ -1429,33 +1292,32 @@ "ButtonScheduledTasks": "T\u00e2ches planifi\u00e9es", "MessageItemsAdded": "\u00c9l\u00e9ments ajout\u00e9s", "HeaderSelectCertificatePath": "S\u00e9lectionnez le chemin du certificat", - "ConfirmMessageScheduledTaskButton": "Cette op\u00e9ration s'ex\u00e9cute normalement automatiquement en tant que t\u00e2che planifi\u00e9e et ne requiert aucune action manuelle. Pour configurer cette t\u00e2che, voir :", - "HeaderSupporterBenefit": "Un abonnement \u00e0 Emby Premier actif, vous offre des avantages suppl\u00e9mentaires tels que la synchronisation entre vos appareils, un plugins premium, du contenu de cha\u00eene sur internet, et plus encore. {0}En savoir plus{1}.", + "HeaderSupporterBenefit": "Un abonnement Emby Premiere vous offre des avantages suppl\u00e9mentaires tels que la synchronisation entre vos appareils, les extensions premium, du contenu de cha\u00eenes sur internet, et plus encore. {0}En savoir plus{1}.", "HeaderWelcomeToProjectServerDashboard": "Bienvenue dans le tableau de bord du serveur Emby", "HeaderWelcomeToProjectWebClient": "Bienvenue dans Emby", "ButtonTakeTheTour": "Visite guid\u00e9e", "HeaderWelcomeBack": "Bienvenue !", "ButtonTakeTheTourToSeeWhatsNew": "Suivez le guide pour d\u00e9couvrir les nouveaut\u00e9s", - "MessageNoSyncJobsFound": "Aucune t\u00e2che de synchronisation trouv\u00e9e. Vous pouvez cr\u00e9er des t\u00e2ches de synchronisation gr\u00e2ce aux boutons 'Synchroniser' partout dans l'interface web.", - "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", - "HeaderSelectDevices": "S\u00e9lectionnez un appareil", + "MessageNoSyncJobsFound": "Aucune t\u00e2che de synchronisation trouv\u00e9e. Vous pouvez cr\u00e9er des t\u00e2ches de synchronisation gr\u00e2ce aux boutons Synchroniser pr\u00e9sents dans l'application.", + "MessageDownloadsFound": "Aucun t\u00e9l\u00e9chargement hors ligne. Afin que votre contenu multim\u00e9dia soit disponible m\u00eame quand vous \u00eates hors ligne, cliquez sur Activer la disponibilit\u00e9 hors ligne dans l'application.", + "HeaderSelectDevices": "S\u00e9lectionnez les appareils", "ButtonCancelItem": "Annuler l'\u00e9l\u00e9ment", "ButtonQueueForRetry": "File d'attente pour une nouvelle tentative", "ButtonReenable": "R\u00e9activer", - "SyncJobItemStatusSyncedMarkForRemoval": "Marquer pour suppression", - "LabelAbortedByServerShutdown": "(Annul\u00e9 par fermeture du serveur)", + "SyncJobItemStatusSyncedMarkForRemoval": "Marquer pour la suppression", + "LabelAbortedByServerShutdown": "(Annul\u00e9 par l'extinction du serveur)", "LabelScheduledTaskLastRan": "Derni\u00e8re ex\u00e9cution {0}, dur\u00e9e {1}.", "HeaderDeleteTaskTrigger": "Supprimer le d\u00e9clencheur de t\u00e2che", - "MessageDeleteTaskTrigger": "\u00cates-vous s\u00fbr de vouloir supprimer ce d\u00e9clencheur de t\u00e2che?", - "MessageNoPluginsInstalled": "Vous n'avez aucun plugin install\u00e9.", - "MessageNoPluginsDueToAppStore": "Pour g\u00e9rer vos plugins, utilisez l'application web Emby.", + "MessageDeleteTaskTrigger": "\u00cates-vous s\u00fbr de vouloir supprimer ce d\u00e9clencheur de t\u00e2che\u00a0?", + "MessageNoPluginsInstalled": "Vous n'avez aucune extension install\u00e9e.", + "MessageNoPluginsDueToAppStore": "Pour g\u00e9rer vos extensions, utilisez l'application web Emby.", "LabelVersionInstalled": "{0} install\u00e9(s)", "LabelNumberReviews": "{0} Critique(s)", "LabelFree": "Gratuit", "HeaderPlaybackError": "Erreur de lecture", "MessagePlaybackErrorNotAllowed": "Vous n'\u00eates pas autoris\u00e9 \u00e0 lire ce contenu. Veuillez contacter votre administrateur syst\u00e8me pour plus de d\u00e9tails.", "MessagePlaybackErrorNoCompatibleStream": "Aucun flux compatible n'est actuellement disponible. Veuillez r\u00e9essayer plus tard ou contactez votre administrateur pour plus de d\u00e9tails.", - "MessagePlaybackErrorPlaceHolder": "Impossible de lire le contenu choisi sur cet appareil", + "MessagePlaybackErrorPlaceHolder": "Veuillez ins\u00e9rer le disque pour lire cette vid\u00e9o.", "HeaderSelectAudio": "S\u00e9lectionner audio", "HeaderSelectSubtitles": "S\u00e9lectionner sous-titres", "ButtonMarkForRemoval": "Supprimer de l'appareil", @@ -1469,115 +1331,107 @@ "ButtonPlaylist": "Liste de lecture", "LabelEnabled": "Activ\u00e9", "LabelDisabled": "D\u00e9sactiv\u00e9", - "ButtonMoreInformation": "Plus d'information", - "LabelNoUnreadNotifications": "Aucune notification non lue", - "LabelAllPlaysSentToPlayer": "Toutes les lectures seront envoy\u00e9es au lecteur s\u00e9lectionn\u00e9.", - "MessageInvalidUser": "Nom d'utilisateur ou mot de passe incorrect. R\u00e9essayer.", - "HeaderLoginFailure": "\u00c9chec de la connection", + "ButtonMoreInformation": "Plus d'informations", + "LabelNoUnreadNotifications": "Aucune notification non lue.", + "MessageInvalidUser": "Nom d'utilisateur ou mot de passe incorrect. R\u00e9essayez.", + "HeaderLoginFailure": "\u00c9chec de la connexion", "RecommendationBecauseYouLike": "Parce que vous aimez {0}", "RecommendationBecauseYouWatched": "Parce que vous avez regard\u00e9 {0}", "RecommendationDirectedBy": "R\u00e9alis\u00e9 par {0}", - "RecommendationStarring": "Mettant en vedette {0}", - "HeaderConfirmRecordingCancellation": "Confirmer l'annulation de l'enregistrement.", - "MessageConfirmRecordingCancellation": "\u00cates-vous s\u00fbr de vouloir annuler cet enregistrement?", + "RecommendationStarring": "Avec {0}", + "HeaderConfirmRecordingCancellation": "Confirmer l'annulation de l'enregistrement", + "MessageConfirmRecordingCancellation": "\u00cates-vous s\u00fbr de vouloir annuler cet enregistrement\u00a0?", "MessageRecordingCancelled": "Enregistrement annul\u00e9.", "MessageRecordingScheduled": "Enregistrement planifi\u00e9.", "HeaderConfirmSeriesCancellation": "Confirmez l'annulation de la s\u00e9rie", - "MessageConfirmSeriesCancellation": "\u00cates-vous s\u00fbr de vouloir annuler cette s\u00e9rie?", - "MessageSeriesCancelled": "S\u00e9rie annul\u00e9e", "HeaderConfirmRecordingDeletion": "Confirmez la suppression de l'enregistrement", "MessageRecordingSaved": "Enregistrement sauvegard\u00e9.", "OptionWeekend": "Week-ends", "OptionWeekday": "Jours de semaine", - "MessageConfirmPathSubstitutionDeletion": "\u00cates-vous s\u00fbr de vouloir supprimer cette substitution de chemin d'acc\u00e8s?", + "MessageConfirmPathSubstitutionDeletion": "\u00cates-vous s\u00fbr de vouloir supprimer cette substitution de chemin d'acc\u00e8s\u00a0?", "LiveTvUpdateAvailable": "(Mise \u00e0 jour disponible)", - "LabelVersionUpToDate": "\u00c0 jour!", + "LabelVersionUpToDate": "\u00c0 jour\u00a0!", "ButtonResetTuner": "R\u00e9initialiser le tuner", "HeaderResetTuner": "R\u00e9initialiser le tuner", - "MessageConfirmResetTuner": "\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser ce tuner ? Tout les lecteurs ou enregistrements actifs seront brusquement interrompus.", + "MessageConfirmResetTuner": "\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser ce tuner ? Tous les lecteurs ou enregistrements actifs seront brusquement interrompus.", "ButtonCancelSeries": "Annuler s\u00e9ries", "HeaderSeriesRecordings": "Enregistrements de s\u00e9ries", "LabelAnytime": "N'importe quelle heure", - "StatusRecording": "Enregistrement", - "StatusWatching": "En lecture", - "StatusRecordingProgram": "Enregistre {0}", - "StatusWatchingProgram": "En lecture de {0}", + "StatusRecording": "Enregistrement en cours", + "StatusWatching": "Lecture en cours", + "StatusRecordingProgram": "Enregistrement de {0}", + "StatusWatchingProgram": "Lecture de {0}", "HeaderSplitMedia": "S\u00e9parer les m\u00e9dias", - "MessageConfirmSplitMedia": "\u00cates vous s\u00fbrs de vouloir diviser les sources de m\u00e9dia dans des items s\u00e9par\u00e9s ?", + "MessageConfirmSplitMedia": "\u00cates vous s\u00fbr de vouloir diviser les sources de m\u00e9dia dans des \u00e9l\u00e9ments s\u00e9par\u00e9s ?", "HeaderError": "Erreur", - "MessageChromecastConnectionError": "Votre cl\u00e9 Chromecast ne peut pas se connecter \u00e0 votre serveur Emby. Veuillez v\u00e9rifier les connections et recommencer.", - "HeaderLibraryFolders": "R\u00e9pertoires de m\u00e9dias", + "MessageChromecastConnectionError": "Votre cl\u00e9 Chromecast ne peut pas se connecter \u00e0 votre serveur Emby. Veuillez v\u00e9rifier les connexions et recommencer.", + "HeaderLibraryFolders": "Dossiers multim\u00e9dias", "HeaderFavoriteMovies": "Films favoris", "HeaderFavoriteShows": "S\u00e9ries favorites", "HeaderFavoriteEpisodes": "\u00c9pisodes favoris", "HeaderFavoriteGames": "Jeux favoris", "HeaderConfirmProfileDeletion": "Confirmer la suppression de profil", - "MessageConfirmProfileDeletion": "\u00cates-vous s\u00fbr de vouloir supprimer ce profil?", + "MessageConfirmProfileDeletion": "\u00cates-vous s\u00fbr de vouloir supprimer ce profil\u00a0?", "HeaderSelectServerCachePath": "S\u00e9lectionner le chemin d'acc\u00e8s du cache de serveur", - "HeaderSelectTranscodingPath": "S\u00e9lectionnez le chemin d'acc\u00e8s du r\u00e9pertoire temporaire de transcodage", + "HeaderSelectTranscodingPath": "S\u00e9lectionner le chemin d'acc\u00e8s du dossier temporaire de transcodage", "HeaderSelectMetadataPath": "S\u00e9lectionner le chemin d'acc\u00e8s des m\u00e9tadonn\u00e9es", - "HeaderSelectServerCachePathHelp": "Parcourir ou entrer le chemin d'acc\u00e8s \u00e0 utiliser pour les fichiers caches du serveur. Le dossier doit \u00eatre accessible en \u00e9criture.", - "HeaderSelectTranscodingPathHelp": "Parcourir ou saisir le chemin d'acc\u00e8s \u00e0 utiliser pour le transcodage des fichiers temporaires. Le dossier devra \u00eatre accessible en \u00e9criture.", - "HeaderSelectMetadataPathHelp": "Parcourir ou saisir le chemin d'acc\u00e8s o\u00f9 vous aimeriez stocker les m\u00e9tadonn\u00e9es. Le r\u00e9pertoire doit \u00eatre accessible en \u00e9criture.", - "HeaderSelectChannelDownloadPath": "S\u00e9lectionnez le chemin de t\u00e9l\u00e9chargement des cha\u00eenes.", - "HeaderSelectChannelDownloadPathHelp": "Parcourir ou saisir le chemin destin\u00e9 au stockage des fichers cache des cha\u00eenes. Le r\u00e9pertoire doit \u00eatre accessible en \u00e9criture.", - "LabelChapterDownloaders": "Agents de t\u00e9l\u00e9chargement de chapitres:", - "LabelChapterDownloadersHelp": "Activez cette option pour classer vos sources pr\u00e9f\u00e9r\u00e9es de t\u00e9l\u00e9chargement de chapitres par ordre de priorit\u00e9. Les sources de t\u00e9l\u00e9chargement avec une priorit\u00e9 basse seront utilis\u00e9es uniquement pour compl\u00e9ter les informations manquantes.", + "HeaderSelectServerCachePathHelp": "Parcourir ou entrer le chemin d'acc\u00e8s \u00e0 utiliser pour les fichiers cache du serveur. Le dossier doit \u00eatre accessible en \u00e9criture.", + "HeaderSelectTranscodingPathHelp": "Parcourir ou saisir le chemin d'acc\u00e8s \u00e0 utiliser pour les fichiers de transcodage temporaires. Le dossier doit \u00eatre accessible en \u00e9criture.", + "HeaderSelectMetadataPathHelp": "Parcourir ou saisir le chemin d'acc\u00e8s o\u00f9 vous aimeriez stocker les m\u00e9tadonn\u00e9es. Le dossier doit \u00eatre accessible en \u00e9criture.", "HeaderFavoriteAlbums": "Albums favoris", - "HeaderLatestChannelMedia": "Derniers objects de la cha\u00eene", + "HeaderLatestChannelMedia": "Derniers \u00e9l\u00e9ments de la cha\u00eene", "ButtonOrganizeFile": "Organiser le fichier", "ButtonDeleteFile": "Supprimer le fichier", "HeaderOrganizeFile": "Organiser le fichier", "HeaderDeleteFile": "Supprimer le fichier", - "StatusSkipped": "Saut\u00e9s", + "StatusSkipped": "Saut\u00e9", "StatusFailed": "\u00c9chou\u00e9", - "StatusSuccess": "Succ\u00e8s", + "StatusSuccess": "R\u00e9ussi", "MessageFileWillBeDeleted": "Le fichier suivant sera supprim\u00e9 :", "MessageSureYouWishToProceed": "\u00cates-vous s\u00fbr de vouloir continuer?", - "MessageDuplicatesWillBeDeleted": "De plus, les doublons suivants vont \u00eatre supprim\u00e9s :", - "MessageFollowingFileWillBeMovedFrom": "Le fichier suivant sera d\u00e9plac\u00e9 de:", - "MessageDestinationTo": "\u00c0 :", - "HeaderSelectWatchFolder": "S\u00e9lectionner le r\u00e9pertoire surveill\u00e9", - "HeaderSelectWatchFolderHelp": "Parcourir ou saisir le chemin de votre r\u00e9pertoire de surveillance. Le r\u00e9pertoire doit \u00eatre accessible en \u00e9criture.", + "MessageDuplicatesWillBeDeleted": "De plus, les doublons suivants seront supprim\u00e9s\u00a0:", + "MessageFollowingFileWillBeMovedFrom": "Le fichier suivant sera d\u00e9plac\u00e9 de\u00a0:", + "MessageDestinationTo": "\u00e0 :", + "HeaderSelectWatchFolder": "S\u00e9lectionner le dossier \u00e0 surveiller", + "HeaderSelectWatchFolderHelp": "Parcourir ou saisir le chemin d'acc\u00e8s de votre dossier surveill\u00e9. Le r\u00e9pertoire doit \u00eatre accessible en \u00e9criture.", "OrganizePatternResult": "R\u00e9sultat : {0}", "AutoOrganizeError": "Erreur pendant l'organisation du fichier", "FileOrganizeManually": "Organiser les fichiers", - "ErrorOrganizingFileWithErrorCode": "Une erreur est survenue pendant l'orgnisation du fichier. Le code erreur: {0}.", + "ErrorOrganizingFileWithErrorCode": "Une erreur est survenue pendant l'organisation du fichier. Code erreur\u00a0: {0}.", "HeaderRestart": "Red\u00e9marrer", "HeaderShutdown": "\u00c9teindre", - "MessageConfirmRestart": "Etes-vous s\u00fbr de vouloir red\u00e9marrer le serveur Emby ?", - "MessageConfirmShutdown": "Etes-vous s\u00fbr de vouloir \u00e9teindre le serveur Emby ?", + "MessageConfirmRestart": "\u00cates-vous s\u00fbr de vouloir red\u00e9marrer le serveur Emby ?", + "MessageConfirmShutdown": "\u00cates-vous s\u00fbr de vouloir \u00e9teindre le serveur Emby ?", "ValueItemCount": "{0} \u00e9l\u00e9ment", "ValueItemCountPlural": "{0} \u00e9l\u00e9ments", - "NewVersionOfSomethingAvailable": "Une nouvelle version de {0} est disponible!", + "NewVersionOfSomethingAvailable": "Une nouvelle version de {0} est disponible\u00a0!", "VersionXIsAvailableForDownload": "La version {0} est maintenant disponible au t\u00e9l\u00e9chargement.", "LabelVersionNumber": "Version {0}", "LabelPlayMethodTranscoding": "Transcodage", - "LabelPlayMethodDirectStream": "Direct Stream", - "LabelPlayMethodDirectPlay": "Direct Play", + "LabelPlayMethodDirectStream": "Streaming direct", + "LabelPlayMethodDirectPlay": "Lecture directe", "LabelAudioCodec": "Audio : {0}", "LabelVideoCodec": "Vid\u00e9o : {0}", - "LabelLocalAccessUrl": "Acc\u00e8s local : {0}", - "LabelRemoteAccessUrl": "URL d'acc\u00e8s \u00e0 distance: {0}", + "LabelLocalAccessUrl": "Acc\u00e8s local (LAN) : {0}", + "LabelRemoteAccessUrl": "Acc\u00e8s \u00e0 distance (WAN)\u00a0: {0}", "LabelRunningOnPort": "En cours d'ex\u00e9cution sur le port http {0}.", - "LabelRunningOnPorts": "En cours d'ex\u00e9cution sur le port http {0} et https {1}.", - "HeaderLatestFromChannel": "Les plus r\u00e9cents de {0}", - "HeaderCurrentSubtitles": "Sous-titres actuels", + "LabelRunningOnPorts": "En cours d'ex\u00e9cution sur les ports http {0} et https {1}.", + "HeaderLatestFromChannel": "Derniers de {0}", "ButtonRemoteControl": "Contr\u00f4le \u00e0 distance", - "HeaderLatestTvRecordings": "Les plus r\u00e9cents enregistrements", + "HeaderLatestTvRecordings": "Derniers enregistrements", "LabelCurrentPath": "Chemin d'acc\u00e8s actuel :", "HeaderSelectMediaPath": "S\u00e9lectionnez le chemin du m\u00e9dia", "HeaderSelectPath": "S\u00e9lectionnez un chemin", "ButtonNetwork": "R\u00e9seau", - "MessageDirectoryPickerInstruction": "Les chemins r\u00e9seaux peuvent \u00eatre saisis manuellement dans le cas o\u00f9 l'utilisation du bouton \"R\u00e9seau\" ne parvient pas \u00e0 localiser les ressources. Par exemple, {0} ou {1}.", + "MessageDirectoryPickerInstruction": "Les chemins r\u00e9seaux peuvent \u00eatre saisis manuellement dans le cas o\u00f9 l'utilisation du bouton R\u00e9seau ne parvient pas \u00e0 localiser vos appareils. Par exemple, {0} ou {1}.", "MessageDirectoryPickerBSDInstruction": "Sur BSD, vous devrez peut-\u00eatre configurer le stockage de votre FreeNAS Jail pour autoriser Emby \u00e0 y acc\u00e9der.", - "MessageDirectoryPickerLinuxInstruction": "Pour Linux sur les architectures Linus, CentOS, Debian, Fedora, OpenSuse ou Ubuntu, vous devez au moins garantir les acc\u00e8s en lecture \u00e0 l'utilisateur Emby pour vos r\u00e9pertoires de stockage.", + "MessageDirectoryPickerLinuxInstruction": "Pour Linux sur Arch Linux, CentOS, Debian, Fedora, OpenSuse ou Ubuntu, vous devez au moins autoriser l'acc\u00e8s en lecture \u00e0 vos r\u00e9pertoires de stockage pour l'utilisateur Emby .", "HeaderMenu": "Menu", "ButtonOpen": "Ouvrir", "ButtonShuffle": "M\u00e9langer", "ButtonResume": "Reprendre", "HeaderAudioTracks": "Pistes audio", - "HeaderLibraries": "Bilblioth\u00e8ques", + "HeaderLibraries": "M\u00e9diath\u00e8ques", "HeaderVideoQuality": "Qualit\u00e9 vid\u00e9o", "MessageErrorPlayingVideo": "La lecture de la vid\u00e9o a rencontr\u00e9 une erreur", "MessageEnsureOpenTuner": "Veuillez vous assurer qu'un tuner est bien disponible.", @@ -1598,7 +1452,7 @@ "OptionBlockLiveTvChannels": "Cha\u00eenes TV en direct", "OptionBlockChannelContent": "Cha\u00eenes Internet", "ButtonRevoke": "R\u00e9voquer", - "MessageConfirmRevokeApiKey": "Etes-vous s\u00fbr de vouloir r\u00e9voquer cette cl\u00e9 d'api ? La connexion de cette application au serveur Emby sera brutalement interrompue.", + "MessageConfirmRevokeApiKey": "\u00cates-vous s\u00fbr de vouloir r\u00e9voquer cette cl\u00e9 API ? La connexion de l'application au serveur Emby sera brutalement interrompue.", "HeaderConfirmRevokeApiKey": "R\u00e9voquer la cl\u00e9 API", "ValueContainer": "Conteneur : {0}", "ValueAudioCodec": "Codec Audio : {0}", @@ -1615,10 +1469,9 @@ "ButtonMoveRight": "D\u00e9placer \u00e0 droite", "ButtonBrowseOnlineImages": "Parcourir les images en ligne", "HeaderDeleteItem": "Supprimer l'\u00e9l\u00e9ment", - "ConfirmDeleteItem": "Supprimer cet \u00e9l\u00e9ment l'effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre biblioth\u00e8que de medias. Etes-vous s\u00fbr de vouloir continuer ?", - "ConfirmDeleteItems": "Supprimer ces \u00e9l\u00e9ments l'effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre biblioth\u00e8que de m\u00e9dias. \u00cates-vous s\u00fbr de vouloir continuer ?", - "MessageValueNotCorrect": "La valeur saisie est incorrecte. Veuillez r\u00e9essayer.", - "MessageItemSaved": "Item sauvegard\u00e9.", + "ConfirmDeleteItem": "Supprimer cet \u00e9l\u00e9ment l'effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre m\u00e9diath\u00e8que. \u00cates-vous s\u00fbr de vouloir continuer ?", + "ConfirmDeleteItems": "Supprimer ces \u00e9l\u00e9ments les effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre m\u00e9diath\u00e8que. \u00cates-vous s\u00fbr de vouloir continuer ?", + "MessageItemSaved": "\u00c9l\u00e9ment enregistr\u00e9.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Veuillez accepter les conditions d'utilisation avant de poursuivre.", "OptionOff": "Off", "OptionOn": "On", @@ -1628,13 +1481,12 @@ "HeaderLiveTV": "TV en direct", "MissingPrimaryImage": "Image principale manquante.", "MissingBackdropImage": "Image d'arri\u00e8re-plan manquante.", - "MissingLogoImage": "Image logo manquante.", + "MissingLogoImage": "Logo manquant.", "MissingEpisode": "Episode manquant.", - "OptionScreenshots": "Captures d'\u00e9cran", "OptionBackdrops": "Arri\u00e8re-plans", "OptionImages": "Images", "OptionKeywords": "Mots-cl\u00e9s", - "OptionTags": "Tags", + "OptionTags": "\u00c9tiquettes", "OptionStudios": "Studios", "OptionName": "Nom", "OptionOverview": "Aper\u00e7u", @@ -1642,17 +1494,13 @@ "OptionPeople": "Personnes", "OptionProductionLocations": "Sites de production", "OptionBirthLocation": "Lieu de naissance", - "LabelAllChannels": "Toutes les cha\u00eenes", - "AttributeNew": "Nouveau", - "AttributePremiere": "Premiere", - "AttributeLive": "Direct", "HeaderChangeFolderType": "Modifier le type de contenu", - "HeaderChangeFolderTypeHelp": "Pour modifier le type, veuillez d'abord le supprimer et le recr\u00e9er avec le nouveau type.", + "HeaderChangeFolderTypeHelp": "Pour modifier le type, veuillez supprimer et recr\u00e9er la m\u00e9diath\u00e8que avec le nouveau type.", "HeaderAlert": "Alerte", "MessagePleaseRestart": "Veuillez red\u00e9marrer pour finaliser les mises \u00e0 jour.", "ButtonHide": "Cacher", - "MessageSettingsSaved": "Param\u00e8tres sauvegard\u00e9s.", - "TabLibrary": "Biblioth\u00e8que", + "MessageSettingsSaved": "Param\u00e8tres enregistr\u00e9s.", + "TabLibrary": "M\u00e9diath\u00e8que", "TabDLNA": "DLNA", "TabLiveTV": "TV en direct", "TabAutoOrganize": "Auto-organisation", @@ -1663,21 +1511,19 @@ "ButtonQuality": "Qualit\u00e9", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "S\u00e9lectionnez le lecteur", - "MessageInternetExplorerWebm": "Pour de meilleurs r\u00e9sultats avec Internet Explorer, merci d'installer le plugin WebM pour IE.", "HeaderVideoError": "Erreur vid\u00e9o", "ButtonViewSeriesRecording": "Voir les enregistrements de s\u00e9ries", - "HeaderSpecials": "Episodes sp\u00e9ciaux", + "HeaderSpecials": "\u00c9pisodes sp\u00e9ciaux", "HeaderTrailers": "Bandes-annonces", "HeaderResolution": "R\u00e9solution", "HeaderRuntime": "Dur\u00e9e", "HeaderParentalRating": "Classification parentale", "HeaderReleaseDate": "Date de sortie ", - "HeaderDateAdded": "Date d'ajout", - "HeaderSeries": "S\u00e9ries :", + "HeaderSeries": "S\u00e9ries", "HeaderSeason": "Saison", "HeaderSeasonNumber": "Num\u00e9ro de saison", "HeaderNetwork": "R\u00e9seau", - "HeaderYear": "Ann\u00e9e :", + "HeaderYear": "Ann\u00e9e", "HeaderGameSystem": "Plateforme de jeu", "HeaderEmbeddedImage": "Image int\u00e9gr\u00e9e", "HeaderTrack": "Piste", @@ -1688,7 +1534,7 @@ "OptionGameSystems": "Plateformes de jeu", "OptionMusicArtists": "Artistes musicaux", "OptionMusicAlbums": "Albums de musique", - "OptionMusicVideos": "Vid\u00e9oclips", + "OptionMusicVideos": "Vid\u00e9os musicales", "OptionSongs": "Chansons", "OptionHomeVideos": "Vid\u00e9os et photos personnelles", "OptionBooks": "Livres", @@ -1696,47 +1542,44 @@ "ButtonDown": "Bas", "LabelMetadataReaders": "Lecteurs de m\u00e9tadonn\u00e9es :", "LabelMetadataReadersHelp": "Classez vos sources locales de m\u00e9tadonn\u00e9es pr\u00e9f\u00e9r\u00e9es dans l'ordre de priorit\u00e9. Le premier fichier trouv\u00e9 sera lu.", - "LabelMetadataDownloaders": "T\u00e9l\u00e9chargeurs de m\u00e9tadonn\u00e9es:", + "LabelMetadataDownloaders": "T\u00e9l\u00e9chargeurs de m\u00e9tadonn\u00e9es\u00a0:", "LabelMetadataDownloadersHelp": "Activez et classez vos sources de t\u00e9l\u00e9chargement de m\u00e9tadonn\u00e9es pr\u00e9f\u00e9r\u00e9es dans l'ordre de priorit\u00e9. Les plus basses seront utilis\u00e9es uniquement pour remplir les informations manquantes.", "LabelMetadataSavers": "Enregistreurs de m\u00e9tadonn\u00e9es :", - "LabelMetadataSaversHelp": "S\u00e9lectionnez un format de fichier pour la sauvegarde des m\u00e9tadonn\u00e9es.", + "LabelMetadataSaversHelp": "S\u00e9lectionnez un format de fichier pour l'enregistrement des m\u00e9tadonn\u00e9es.", "LabelImageFetchers": "R\u00e9cup\u00e9rateurs d'image :", "LabelImageFetchersHelp": "Activez cette option pour classer vos r\u00e9cup\u00e9rateurs d'images par ordre de priorit\u00e9.", "LabelDynamicExternalId": "{0} Id:", "PersonTypePerson": "Personne", - "OptionSortName": "Clef de tri", + "OptionSortName": "Cl\u00e9 de tri", "LabelDateOfBirth": "Date de naissance :", "LabelDeathDate": "Date de d\u00e9c\u00e8s :", - "HeaderRemoveMediaLocation": "Supprimer l'emplacement m\u00e9dia", - "MessageConfirmRemoveMediaLocation": "Etes vous s\u00fbr de vouloir supprimer cet emplacement?", + "HeaderRemoveMediaLocation": "Supprimer l'emplacement de m\u00e9dia", + "MessageConfirmRemoveMediaLocation": "\u00cates-vous s\u00fbr de vouloir supprimer cet emplacement\u00a0?", "LabelNewName": "Nouveau nom :", - "HeaderAddMediaFolder": "Ajouter un r\u00e9pertoire de m\u00e9dias", - "HeaderAddMediaFolderHelp": "Nom (Film, Musique, TV, etc):", - "HeaderRemoveMediaFolder": "Supprimer le r\u00e9pertoire de m\u00e9dias", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "L'emplacement des m\u00e9dias suivant va \u00eatre supprim\u00e9 de votre biblioth\u00e8que Emby :", - "MessageAreYouSureYouWishToRemoveMediaFolder": "\u00cates-vous s\u00fbr de vouloir supprimer ce r\u00e9pertoire de m\u00e9dia?", + "HeaderRemoveMediaFolder": "Supprimer le dossier multim\u00e9dia", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Ces emplacements de m\u00e9dia vont \u00eatre supprim\u00e9s de votre m\u00e9diath\u00e8que Emby :", + "MessageAreYouSureYouWishToRemoveMediaFolder": "\u00cates-vous s\u00fbr de vouloir supprimer ce dossier multim\u00e9dia\u00a0?", "ButtonRename": "Renommer", "ButtonChangeContentType": "Changer le type de contenu", - "HeaderMediaLocations": "Emplacement des m\u00e9dias", + "HeaderMediaLocations": "Emplacements de m\u00e9dia", "LabelContentTypeValue": "Type de contenu : {0}", - "LabelPathSubstitutionHelp": "Optionnel : la substitution de chemin peut rediriger les chemins serveurs vers des partages r\u00e9seau pour une lecture directe par les clients.", - "FolderTypeUnset": "Non d\u00e9fini (contenu m\u00e9lang\u00e9)", - "BirthPlaceValue": "Lieu de naissance: {0}", - "DeathDateValue": "D\u00e9c\u00e9d\u00e9(e): {0}", - "BirthDateValue": "N\u00e9(e): {0}", + "FolderTypeUnset": "Non d\u00e9fini (contenu mixte)", + "BirthPlaceValue": "Lieu de naissance\u00a0: {0}", + "DeathDateValue": "D\u00e9c\u00e9d\u00e9(e)\u00a0le {0}", + "BirthDateValue": "N\u00e9(e) le {0}", "HeaderLatestReviews": "Derni\u00e8res critiques", - "HeaderPluginInstallation": "Installation du plug-in", + "HeaderPluginInstallation": "Installation de l'extension", "MessageAlreadyInstalled": "Cette version est d\u00e9j\u00e0 install\u00e9e.", "ValueReviewCount": "{0} Critiques", "MessageYouHaveVersionInstalled": "Actuellement , vous avez la version {0} install\u00e9e.", "MessageTrialExpired": "La p\u00e9riode d'essai de cette fonctionnalit\u00e9 a expir\u00e9", "MessageTrialWillExpireIn": "La p\u00e9riode d'essai de cette fonctionnalit\u00e9 expire dans {0} jour(s)", - "MessageInstallPluginFromApp": "Ce plugin doit-\u00eatre install\u00e9 depuis l'application dans laquelle vous voulez l'utiliser", - "ValuePriceUSD": "Prix: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "Cette fonctionnalit\u00e9 vous est accessible, vous pourrez l'utiliser tant que vous aurez une souscription Emby Premiere active.", + "MessageInstallPluginFromApp": "Cette extension doit-\u00eatre install\u00e9e depuis l'application dans laquelle vous voulez l'utiliser", + "ValuePriceUSD": "Prix\u00a0: {0} (USD)", + "MessageFeatureIncludedWithSupporter": "Vous avez acc\u00e8s \u00e0 cette fonctionnalit\u00e9, vous pourrez l'utiliser tant que vous aurez un abonnement Emby Premiere.", "HeaderEmbyAccountAdded": "Compte Emby ajout\u00e9", "MessageEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur.", - "MessagePendingEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur. Un email va \u00eatre envoy\u00e9 au propri\u00e9taire du compte. L'invitation devra \u00eatre confirm\u00e9e en cliquant sur le lien contenu dans l'email.", + "MessagePendingEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur. Un courriel va \u00eatre envoy\u00e9 au propri\u00e9taire du compte. L'invitation devra \u00eatre confirm\u00e9e en cliquant sur le lien contenu dans le courriel.", "HeaderEmbyAccountRemoved": "Compte Emby supprim\u00e9", "MessageEmbyAccontRemoved": "Le compte Emby a \u00e9t\u00e9 supprim\u00e9 pour cet utilisateur.", "TooltipLinkedToEmbyConnect": "Li\u00e9 \u00e0 Emby Connect", @@ -1747,19 +1590,19 @@ "ValueMinutes": "{0} min", "HeaderSelectExternalPlayer": "S\u00e9lectionner le lecteur externe", "HeaderExternalPlayerPlayback": "Lecture avec lecteur externe", - "ButtonImDone": "J'ai fini", + "ButtonImDone": "J'ai termin\u00e9", "OptionWatched": "Vu", "OptionUnwatched": "Non vu", - "ExternalPlayerPlaystateOptionsHelp": "Sp\u00e9cifiez la mani\u00e8re dont vous souhaitez reprendre la lecture de la vid\u00e9o la prochaine fois.", + "ExternalPlayerPlaystateOptionsHelp": "Sp\u00e9cifiez comment vous souhaitez reprendre la lecture de la vid\u00e9o la prochaine fois.", "LabelMarkAs": "Marqu\u00e9 comme :", "OptionInProgress": "En cours", - "LabelResumePoint": "Point de reprise", - "ValueOneMovie": "1 Film", + "LabelResumePoint": "Point de reprise\u00a0:", + "ValueOneMovie": "1 film", "ValueMovieCount": "{0} films", "ValueOneTrailer": "1 bande-annonce", "ValueTrailerCount": "{0} bandes-annonces", - "ValueOneSeries": "1 S\u00e9rie", - "ValueSeriesCount": "{0} series", + "ValueOneSeries": "1 s\u00e9rie", + "ValueSeriesCount": "{0} s\u00e9ries", "ValueOneEpisode": "1 \u00e9pisode", "ValueEpisodeCount": "{0} \u00e9pisodes", "ValueOneGame": "1 jeu", @@ -1769,23 +1612,21 @@ "ValueOneSong": "1 chanson", "ValueSongCount": "{0} chansons", "ValueOneMusicVideo": "1 vid\u00e9o musicale", - "ValueMusicVideoCount": "{0} music Videos", - "HeaderOffline": "Offline", + "ValueMusicVideoCount": "{0} vid\u00e9os musicales", + "HeaderOffline": "Hors ligne", "HeaderUnaired": "Non diffus\u00e9", "HeaderMissing": "Manquant", "ButtonWebsite": "Site Web", - "ValueSeriesYearToPresent": "{0}-Pr\u00e9sent", - "ValueAwards": "R\u00e9compenses:{0}", - "ValueBudget": "Budget:{0}", - "ValueRevenue": "Recettes:{0}", - "ValuePremiered": "Avant premi\u00e8re {0}", - "ValuePremieres": "Acteurs principaux {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Etat: {0}", + "ValueSeriesYearToPresent": "{0} - Pr\u00e9sent", + "ValueAwards": "R\u00e9compenses\u00a0:{0}", + "ValuePremiered": "Premi\u00e8re le {0}", + "ValuePremieres": "Premi\u00e8re le {0}", + "ValueStudio": "Studio\u00a0: {0}", + "ValueStudios": "Studios\u00a0: {0}", + "ValueStatus": "\u00c9tat\u00a0: {0}", "LabelLimit": "Limite :", "ValueLinks": "Liens : {0}", - "HeaderCastAndCrew": "Distribution et \u00e9quipe", + "HeaderCastAndCrew": "Casting", "ValueArtist": "Artiste : {0}", "ValueArtists": "Artistes : {0}", "MediaInfoCameraMake": "Fabricant", @@ -1795,12 +1636,12 @@ "MediaInfoExposureTime": "Temps d'exposition", "MediaInfoFocalLength": "Longueur focale", "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Vitesse Iso", + "MediaInfoIsoSpeedRating": "Vitesse ISO", "MediaInfoLatitude": "Latitude", "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Vitesse d'opturation", + "MediaInfoShutterSpeed": "Vitesse d'obturation", "MediaInfoSoftware": "Logiciel", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "Similaires", "HeaderMovies": "Films", "HeaderAlbums": "Albums", "HeaderGames": "Jeux", @@ -1808,11 +1649,11 @@ "HeaderEpisodes": "\u00c9pisodes", "HeaderSeasons": "Saisons", "HeaderTracks": "Pistes", - "HeaderItems": "El\u00e9ments", + "HeaderItems": "\u00c9l\u00e9ments", "HeaderOtherItems": "Autres \u00e9l\u00e9ments", - "ButtonFullReview": "Revue comp\u00e8te", - "ValueAsRole": "alias {0}", - "ValueGuestStar": "R\u00f4le principal", + "ButtonFullReview": "Critique compl\u00e8te", + "ValueAsRole": "en tant que {0}", + "ValueGuestStar": "Guest star", "MediaInfoSize": "Taille", "MediaInfoPath": "Chemin", "MediaInfoFile": "Fichier", @@ -1821,7 +1662,7 @@ "MediaInfoDefault": "D\u00e9faut", "MediaInfoForced": "Forc\u00e9", "MediaInfoExternal": "Externe", - "MediaInfoTimestamp": "Rep\u00e9rage temps", + "MediaInfoTimestamp": "Horodatage", "MediaInfoPixelFormat": "Format de pixel", "MediaInfoBitDepth": "Profondeur en Bit", "MediaInfoSampleRate": "D\u00e9bit \u00e9chantillon", @@ -1830,7 +1671,7 @@ "MediaInfoLayout": "R\u00e9partition", "MediaInfoLanguage": "Langue", "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Tag codec", + "MediaInfoCodecTag": "\u00c9tiquette du codec", "MediaInfoProfile": "Profil", "MediaInfoLevel": "Niveau", "MediaInfoAspectRatio": "Ratio d'aspect original", @@ -1842,117 +1683,100 @@ "MediaInfoStreamTypeData": "Donn\u00e9es", "MediaInfoStreamTypeVideo": "Vid\u00e9o", "MediaInfoStreamTypeSubtitle": "Sous-titre", - "MediaInfoStreamTypeEmbeddedImage": "Image am\u00e9lior\u00e9e", - "MediaInfoRefFrames": "Image de r\u00e9f\u00e9rence", + "MediaInfoStreamTypeEmbeddedImage": "Image int\u00e9gr\u00e9e", + "MediaInfoRefFrames": "Images de r\u00e9f\u00e9rence", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Choisir le chemin des intros personnalis\u00e9es", - "HeaderRateAndReview": "Noter et commenter", "HeaderThankYou": "Merci", - "MessageThankYouForYourReview": "Merci pour votre commentaire.", - "LabelYourRating": "Votre note :", - "LabelFullReview": "Revue compl\u00e8te :", - "LabelShortRatingDescription": "Evaluation courte:", - "OptionIRecommendThisItem": "Je recommande cet article", - "ReleaseYearValue": "Ann\u00e9e de sortie: {0}", - "OriginalAirDateValue": "Date de diffusion originale: {0}", - "WebClientTourContent": "Voir les m\u00e9dias ajout\u00e9s r\u00e9cemment, les prochains \u00e9pisodes et bien plus. Les cercles verts indiquent le nombre d'\u00e9l\u00e9ments que vous n'avez pas vu.", - "WebClientTourMovies": "Lire les films, bandes-annonces et plus depuis n'importe quel appareil avec un navigateur Web", - "WebClientTourMouseOver": "Laisser la souris au dessus des posters pour un acc\u00e8s rapide aux informations essentiels", - "WebClientTourTapHold": "Maintenir cliqu\u00e9 ou faire un clic droit sur n'importe quel poster pour le menu contextuel", - "WebClientTourMetadataManager": "Cliquer sur modifier pour ouvrir l'\u00e9diteur de m\u00e9dadonn\u00e9es", - "WebClientTourPlaylists": "Cr\u00e9ez facilement des listes de lectures et des mixes instantan\u00e9s, et jouez les sur n'importe quel p\u00e9riph\u00e9rique", - "WebClientTourCollections": "Cr\u00e9ez des collections de films pour les regrouper les \u00e9l\u00e9ments d'un coffret", - "WebClientTourUserPreferences1": "Les pr\u00e9f\u00e9rences utilisateur vous permettent de personnaliser la pr\u00e9sentation de la biblioth\u00e8que pour toutes les applications Emby.", - "WebClientTourUserPreferences2": "Configurez vos pr\u00e9f\u00e9rences audio et sous-titres une fois pour toutes les applications Emby", + "LabelFullReview": "Critique compl\u00e8te :", + "ReleaseYearValue": "Ann\u00e9e de sortie\u00a0: {0}", + "OriginalAirDateValue": "Date de diffusion originale\u00a0: {0}", + "WebClientTourContent": "Visualisez les m\u00e9dias ajout\u00e9s r\u00e9cemment, les prochains \u00e9pisodes et bien plus. Les cercles verts indiquent le nombre d'\u00e9l\u00e9ments que vous n'avez pas vu.", + "WebClientTourMovies": "Lisez vos films, bandes-annonces et bien plus depuis n'importe quel appareil poss\u00e9dant un navigateur Web", + "WebClientTourMouseOver": "Maintenez la souris au-dessus d'un poster pour un acc\u00e8s rapide aux informations essentielles", + "WebClientTourTapHold": "Maintenez appuy\u00e9 ou faites un clic droit sur n'importe quel poster pour ouvrir le menu contextuel", + "WebClientTourMetadataManager": "Cliquez sur modifier pour ouvrir l'\u00e9diteur de m\u00e9tadonn\u00e9es", + "WebClientTourPlaylists": "Cr\u00e9ez facilement des listes de lecture et des mixes instantan\u00e9s, et jouez-les sur n'importe quel appareil", + "WebClientTourCollections": "Cr\u00e9ez des collections de films pour regrouper les \u00e9l\u00e9ments d'un coffret", + "WebClientTourUserPreferences1": "Les pr\u00e9f\u00e9rences utilisateur vous permettent de personnaliser la pr\u00e9sentation de votre m\u00e9diath\u00e8que pour toutes les applications Emby.", + "WebClientTourUserPreferences2": "Configurez votre langue pr\u00e9f\u00e9r\u00e9e pour l'audio et les sous-titres une seule fois, pour toutes les applications Emby", "WebClientTourUserPreferences3": "Modelez la page d'accueil du client web \u00e0 votre convenance", - "WebClientTourUserPreferences4": "Configurer les images d'arri\u00e8re-plan, les th\u00e8mes musicaux et les lecteurs externes", + "WebClientTourUserPreferences4": "Configurez les images d'arri\u00e8re-plan, les th\u00e8mes musicaux et les lecteurs externes", "WebClientTourMobile1": "Le client web fonctionne parfaitement sur les smartphones et les tablettes...", "WebClientTourMobile2": "et contr\u00f4le facilement les autres appareils et applications Emby", - "WebClientTourMySync": "Synchronisez vos m\u00e9dias personnels avec vos appareils pour les visionner en mode d\u00e9connect\u00e9.", + "WebClientTourMySync": "Synchronisez vos m\u00e9dias personnels avec vos appareils pour les visionner en mode hors ligne.", "MessageEnjoyYourStay": "Amusez-vous bien !", - "DashboardTourDashboard": "Le tableau de bord du serveur vous permet de g\u00e9rer votre serveur et vos utilisateurs. Vous saurez toujours qui fait quoi et o\u00f9.", + "DashboardTourDashboard": "Le tableau de bord du serveur vous permet de g\u00e9rer votre serveur et vos utilisateurs. Vous saurez toujours qui fait quoi et o\u00f9 il est.", "DashboardTourHelp": "L'aide contextuelle de l'application permet d'ouvrir les pages du wiki relatives au contenu affich\u00e9.", - "DashboardTourUsers": "Cr\u00e9ez facilement des comptes utilisateurs pour vos amis et votre famille, chacun avec ses propres droits, biblioth\u00e8ques accessibles, contr\u00f4le parental et plus encore.", - "DashboardTourCinemaMode": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon gr\u00e2ce \u00e0 la possibilit\u00e9 de lire les bandes-annonces et les introductions personnalis\u00e9es avant le programme principal.", + "DashboardTourUsers": "Cr\u00e9ez facilement des comptes utilisateur pour vos amis et votre famille, chacun avec ses propres droits, acc\u00e8s \u00e0 la m\u00e9diath\u00e8que, contr\u00f4le parental et plus encore.", + "DashboardTourCinemaMode": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon gr\u00e2ce \u00e0 la possibilit\u00e9 de lire des bandes-annonces et des introductions personnalis\u00e9es avant le film principal.", "DashboardTourChapters": "Autorisez la g\u00e9n\u00e9ration des images de chapitres de vos vid\u00e9os pour une pr\u00e9sentation plus agr\u00e9able pendant la navigation.", "DashboardTourSubtitles": "T\u00e9l\u00e9chargez automatiquement les sous-titres de vos vid\u00e9os dans n'importe quelle langue.", - "DashboardTourPlugins": "Installez des plugins : cha\u00eenes vid\u00e9os internet, TV en direct, analyseur de m\u00e9tadonn\u00e9es, et plus encore.", - "DashboardTourNotifications": "Envoyez automatiquement les notifications d'\u00e9v\u00e9nements du serveur vers vos appareils mobiles, vos adresses email et plus encore.", - "DashboardTourScheduledTasks": "G\u00e9rez facilement les op\u00e9rations longues des taches planifi\u00e9es. Sp\u00e9cifiez quand et \u00e0 quelle fr\u00e9quence elles doivent se lancer.", - "DashboardTourMobile": "Le tableau de bord du serveur Emby fonctionne tr\u00e8s bien sur smartphones et tablettes. G\u00e9rez votre serveur depuis la paume de votre main depuis n'importe o\u00f9, n'importe quand.", - "DashboardTourSync": "Synchronisez vos m\u00e9dias personnels avec vos appareils pour les visionner en mode d\u00e9connect\u00e9.", - "MessageRefreshQueued": "Demande d'actualisation en file d'attente", + "DashboardTourPlugins": "Installez des extensions : cha\u00eenes vid\u00e9os internet, TV en direct, analyseurs de m\u00e9tadonn\u00e9es, et plus encore.", + "DashboardTourNotifications": "Envoyez automatiquement les notifications d'\u00e9v\u00e8nement du serveur vers vos appareils mobiles, vos adresses courriel et plus encore.", + "DashboardTourScheduledTasks": "G\u00e9rez facilement les op\u00e9rations longues des t\u00e2ches planifi\u00e9es. Sp\u00e9cifiez quand et \u00e0 quelle fr\u00e9quence elles doivent se lancer.", + "DashboardTourMobile": "Le tableau de bord du serveur Emby fonctionne parfaitement sur les smartphones et les tablettes. G\u00e9rez votre serveur depuis la paume de votre main o\u00f9 que vous soyez, quand vous le voulez.", + "DashboardTourSync": "Synchronisez vos m\u00e9dias personnels avec vos appareils pour les visionner en mode hors ligne.", "TabExtras": "Bonus", "HeaderUploadImage": "Transf\u00e9rer une image", "DeviceLastUsedByUserName": "Derni\u00e8rement utilis\u00e9 par {0}", "HeaderDeleteDevice": "Supprimer l'appareil", "DeleteDeviceConfirmation": "\u00cates-vous s\u00fbr de vouloir supprimer cet appareil ? La prochaine fois qu'un utilisateur se connecte depuis cet appareil, il sera ajout\u00e9 \u00e0 nouveau.", - "LabelEnableCameraUploadFor": "Autoriser l'upload du contenu de l'appareil photo pour:", - "HeaderSelectUploadPath": "S\u00e9lectionner le r\u00e9pertoire d'upload", - "LabelEnableCameraUploadForHelp": "Les uploads se feront automatiquement en t\u00e2che de fond apr\u00e8s la connexion \u00e0 Emby.", + "LabelEnableCameraUploadFor": "Autoriser le transfert depuis l'appareil photo pour\u00a0:", + "HeaderSelectUploadPath": "S\u00e9lectionner le r\u00e9pertoire de transfert", + "LabelEnableCameraUploadForHelp": "Les transferts se feront automatiquement en t\u00e2che de fond apr\u00e8s la connexion \u00e0 Emby.", "ErrorMessageStartHourGreaterThanEnd": "La date de fin doit \u00eatre post\u00e9rieure \u00e0 la date de d\u00e9but.", - "ButtonLibraryAccess": "Acc\u00e8s \u00e0 la biblioth\u00e8que", + "ButtonLibraryAccess": "Acc\u00e8s \u00e0 la m\u00e9diath\u00e8que", "ButtonParentalControl": "Contr\u00f4le parental", "HeaderInvitationSent": "Invitation envoy\u00e9e", - "MessageInvitationSentToUser": "Un mail a \u00e9t\u00e9 envoy\u00e9 \u00e0 {0} avec votre invitation de partage.", - "MessageInvitationSentToNewUser": "Un email d'invitation \u00e0 Emby a \u00e9t\u00e9 envoy\u00e9 \u00e0 {0}.", - "HeaderConnectionFailure": "Erreur de connexion", - "MessageUnableToConnectToServer": "Nous sommes dans l'impossibilit\u00e9 de nous connecter au serveur s\u00e9lectionn\u00e9. Veuillez v\u00e9rifier qu'il est bien d\u00e9marr\u00e9 et r\u00e9essayez.", + "MessageInvitationSentToUser": "Un courriel a \u00e9t\u00e9 envoy\u00e9 \u00e0 {0} avec votre invitation de partage.", + "MessageInvitationSentToNewUser": "Un courriel d'invitation \u00e0 Emby a \u00e9t\u00e9 envoy\u00e9 \u00e0 {0}.", + "HeaderConnectionFailure": "\u00c9chec de connexion", + "MessageUnableToConnectToServer": "Nous sommes dans l'impossibilit\u00e9 de nous connecter au serveur s\u00e9lectionn\u00e9. Veuillez v\u00e9rifier qu'il est op\u00e9rationnel et r\u00e9essayez.", "ButtonSelectServer": "S\u00e9lectionner le serveur", - "MessagePluginConfigurationRequiresLocalAccess": "Pour configurer ce plugin, veuillez vous connecter \u00e0 votre serveur local directement.", - "MessageLoggedOutParentalControl": "L'acc\u00e8s est actuellement limit\u00e9. Veuillez r\u00e9essayer plus tard", + "MessagePluginConfigurationRequiresLocalAccess": "Pour configurer cette extension, veuillez vous connecter directement \u00e0 votre serveur local.", + "MessageLoggedOutParentalControl": "L'acc\u00e8s est actuellement restreint. Veuillez r\u00e9essayer plus tard.", "DefaultErrorMessage": "Il y a eu une erreur lors de l'ex\u00e9cution de la requ\u00eate. Veuillez r\u00e9essayer plus tard.", "ButtonAccept": "Accepter", "ButtonReject": "Rejeter", "MessageContactAdminToResetPassword": "Veuillez contacter votre administrateur syst\u00e8me pour r\u00e9initialiser votre mot de passe.", "MessageForgotPasswordInNetworkRequired": "Veuillez r\u00e9essayer \u00e0 partir de votre r\u00e9seau local pour d\u00e9marrer la proc\u00e9dure de r\u00e9initialisation du mot de passe.", - "MessageForgotPasswordFileCreated": "Le fichier suivant a \u00e9t\u00e9 cr\u00e9\u00e9 sur votre serveur et contient les instructions et la proc\u00e9dure \u00e0 suivre.", + "MessageForgotPasswordFileCreated": "Le fichier suivant a \u00e9t\u00e9 cr\u00e9\u00e9 sur votre serveur et contient les instructions sur la proc\u00e9dure \u00e0 suivre\u00a0:", "MessageForgotPasswordFileExpiration": "Le code PIN de r\u00e9initialisation expirera \u00e0 {0}.", - "MessageInvalidForgotPasswordPin": "Le code PIN est invalide ou a expir\u00e9. Veuillez r\u00e9essayer.", - "MessagePasswordResetForUsers": "Les mot de passes ont \u00e9t\u00e9 supprim\u00e9s pour les utilisateurs suivants. Pour se connecter, identifiez vous avec un mot de passe vide.", + "MessageInvalidForgotPasswordPin": "Le code PIN entr\u00e9 est invalide ou a expir\u00e9. Veuillez r\u00e9essayer.", + "MessagePasswordResetForUsers": "Les mot de passes ont \u00e9t\u00e9 supprim\u00e9s pour les utilisateurs suivants. Pour vous connecter, identifiez-vous avec un mot de passe vide.", "ButtonLinkMyEmbyAccount": "Lier mon compte maintenant", - "MessageConnectAccountRequiredToInviteGuest": "Vous devez d'abord lier votre compte Emby \u00e0 ce serveur avant de pouvoir accueillir des invit\u00e9s.", + "MessageConnectAccountRequiredToInviteGuest": "Vous devez d'abord lier votre compte Emby \u00e0 ce serveur avant de pouvoir envoyer des invitations.", "SyncMedia": "Sync. les m\u00e9dias", "HeaderCancelSyncJob": "Annuler la sync.", - "CancelSyncJobConfirmation": "L'annulation d'une t\u00e2che de synchronisation provoquera la suppression des m\u00e9dias synchronis\u00e9s lors la prochaine ex\u00e9cution de la synchronisation. Etes-vous s\u00fbr de vouloir continuer ?", - "MessagePleaseSelectDeviceToSyncTo": "Veuillez s\u00e9lectionner un p\u00e9riph\u00e9rique avec lequel se synchroniser.", - "MessageSyncJobCreated": "Job de synchronisation cr\u00e9\u00e9.", + "CancelSyncJobConfirmation": "L'annulation d'une t\u00e2che de synchronisation provoquera la suppression des m\u00e9dias synchronis\u00e9s sur l'appareil lors la prochaine ex\u00e9cution de la synchronisation. \u00cates-vous s\u00fbr de vouloir continuer ?", "LabelQuality": "Qualit\u00e9:", - "OptionAutomaticallySyncNewContent": "Synchroniser automatiquement le nouveau contenu", - "OptionAutomaticallySyncNewContentHelp": "Les nouveaux contenus ajout\u00e9s \u00e0 cette cat\u00e9gorie seront automatiquement synchronis\u00e9s avec l'appareil.", - "MessageBookPluginRequired": "N\u00e9cessite l'installation du plugin Bookshelf", - "MessageGamePluginRequired": "N\u00e9cessite l'installation du plugin GameBrowser", - "MessageUnsetContentHelp": "Le contenu sera affich\u00e9 sous forme de r\u00e9pertoires. Pour un r\u00e9sultat optimal, utilisez le gestionnaire de m\u00e9tadonn\u00e9es pour d\u00e9finir le type de contenu des sous-r\u00e9pertoires.", + "MessageBookPluginRequired": "N\u00e9cessite l'installation de l'extension Bookshelf", + "MessageGamePluginRequired": "N\u00e9cessite l'installation de l'extension GameBrowser", + "MessageUnsetContentHelp": "Le contenu sera affich\u00e9 sous forme de dossiers. Pour un r\u00e9sultat optimal, utilisez le gestionnaire de m\u00e9tadonn\u00e9es pour d\u00e9finir le type de contenu des sous-dossiers.", "SyncJobItemStatusQueued": "Mis en file d'attente", "SyncJobItemStatusConverting": "Conversion en cours", "SyncJobItemStatusTransferring": "Transfert en cours", "SyncJobItemStatusSynced": "Synchronis\u00e9", - "SyncJobItemStatusFailed": "Echou\u00e9", + "SyncJobItemStatusFailed": "\u00c9chou\u00e9", "SyncJobItemStatusRemovedFromDevice": "Supprim\u00e9 de l'appareil", "SyncJobItemStatusCancelled": "Annul\u00e9", "LabelProfile": "Profil :", "LabelBitrateMbps": "D\u00e9bit (Mbps) :", - "EmbyIntroDownloadMessage": "Pour t\u00e9l\u00e9charger et installer le serveur Emby, visitez {0}.", - "EmbyIntroDownloadMessageWithoutLink": "Pour t\u00e9l\u00e9charger et installer le serveur Emby, veuillez visitez le site Emby.", + "EmbyIntroDownloadMessage": "Pour t\u00e9l\u00e9charger et installer le serveur Emby gratuit, visitez {0}.", + "EmbyIntroDownloadMessageWithoutLink": "Pour t\u00e9l\u00e9charger et installer le serveur Emby gratuit, veuillez visitez le site web d'Emby.", "ButtonNewServer": "Nouveau serveur", "MyDevice": "Mon appareil", "ButtonRemote": "T\u00e9l\u00e9commande", - "TabCast": "Distribution", + "TabCast": "Casting", "TabScenes": "Sc\u00e8nes", - "HeaderUnlockApp": "D\u00e9verrouiller l'App", + "HeaderUnlockApp": "D\u00e9verrouiller l'application", "HeaderUnlockSync": "D\u00e9verrouiller Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat en une fois ou avec une souscription Emby Premiere.", - "MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec une souscription Emby Premiere active.", - "MessageToValidateSupporter": "Si vous avez un abonnement Emby Premiere actif, veuillez-vous assurer que vous avez configur\u00e9 Emby Premiere dans votre Dashboard Emby Server sous Aide -> Emby Premiere.", - "MessagePaymentServicesUnavailable": "Les services de paiement sont actuellement indisponibles. Merci de r\u00e9essayer ult\u00e9rieurement", - "ButtonUnlockWithPurchase": "D\u00e9verrouillez par un achat.", - "ButtonUnlockPrice": "D\u00e9verrouiller {0}", - "MessageLiveTvGuideRequiresUnlock": "Le Guide TV en direct est actuellement limit\u00e9 \u00e0 {0} cha\u00eenes. Cliquez sur le bouton d\u00e9verrouiller pour d\u00e9couvrir comment profiter de l'ensemble.", + "MessagePaymentServicesUnavailable": "Les services de paiement sont actuellement indisponibles. Merci de r\u00e9essayer ult\u00e9rieurement.", "OptionEnableFullscreen": "Activer le plein \u00e9cran", "ButtonServer": "Serveur", - "HeaderLibrary": "Biblioth\u00e8que", + "HeaderLibrary": "M\u00e9diath\u00e8que", "HeaderMedia": "M\u00e9dia", - "HeaderSaySomethingLike": "Dites quelque chose...", "NoResultsFound": "Aucun r\u00e9sultat trouv\u00e9.", "ButtonManageServer": "G\u00e9rer le serveur", "ButtonPreferences": "Pr\u00e9f\u00e9rences", @@ -1961,186 +1785,165 @@ "ButtonEditImages": "Modifier les images", "ErrorMessagePasswordNotMatchConfirm": "Le mot de passe et sa confirmation doivent correspondre.", "ErrorMessageUsernameInUse": "Ce nom d'utilisateur est d\u00e9j\u00e0 utilis\u00e9. Veuillez en choisir un autre et r\u00e9essayer.", - "ErrorMessageEmailInUse": "Cette adresse email est d\u00e9j\u00e0 utilis\u00e9e. Veuillez en saisir une autre et r\u00e9essayer, ou bien utiliser la fonction du mot de passe oubli\u00e9.", - "MessageThankYouForConnectSignUp": "Merci de vous \u00eatre inscrits sur Emby Connect. Un email va vous \u00eatre envoy\u00e9, avec les instructions pour confirmer votre nouveau compte. Merci de confirmer ce compte puis de revenir \u00e0 cet endroit pour vous connecter.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "ErrorMessageEmailInUse": "Cette adresse courriel est d\u00e9j\u00e0 utilis\u00e9e. Veuillez en saisir une autre et r\u00e9essayer, ou bien utiliser la fonction du mot de passe oubli\u00e9.", + "MessageThankYouForConnectSignUp": "Merci de vous \u00eatre inscrit sur Emby Connect. Un courriel va vous \u00eatre envoy\u00e9, avec les instructions pour confirmer votre nouveau compte. Merci de confirmer ce compte puis de revenir ici pour vous connecter.", + "MessageThankYouForConnectSignUpNoValidation": "Merci de vous \u00eatre inscrit sur Emby Connect\u00a0! Vous devez maintenant vous connecter avec vos identifiants Emby Connect.", "ButtonShare": "Partager", "HeaderConfirm": "Confirmer", - "MessageConfirmDeleteTunerDevice": "Etes-vous s\u00fbr de vouloir supprimer cet appareil ?", - "MessageConfirmDeleteGuideProvider": "Etes-vous s\u00fbr de vouloir supprimer ce fournisseur de guide d'information ?", + "MessageConfirmDeleteTunerDevice": "\u00cates-vous s\u00fbr de vouloir supprimer cet appareil ?", + "MessageConfirmDeleteGuideProvider": "\u00cates-vous s\u00fbr de vouloir supprimer ce fournisseur de guide d'information ?", "HeaderDeleteProvider": "Supprimer le fournisseur", "ErrorAddingTunerDevice": "Une erreur est survenue lors de l'ajout de l'appareil tuner. Assurez-vous qu'il est accessible et r\u00e9essayez.", "ErrorSavingTvProvider": "Une erreur est survenue lors de la sauvegarde du fournisseur TV. Assurez-vous qu'il est accessible et r\u00e9essayez.", - "ErrorGettingTvLineups": "Une erreur est survenue pendant le t\u00e9l\u00e9chargement des programmes tv. Assurez vous que vos informations sont corrects et r\u00e9essayez.", + "ErrorGettingTvLineups": "Une erreur est survenue pendant le t\u00e9l\u00e9chargement des programmes TV. Assurez-vous que vos informations sont correctes et r\u00e9essayez.", "MessageCreateAccountAt": "Cr\u00e9er un compte sur {0}", - "ErrorPleaseSelectLineup": "Veuillez s\u00e9lectionner une gamme et r\u00e9essayer. Si aucune gamme n'est disponible, veuillez v\u00e9rifier que votre identifiant, mot de passe et code postal sont corrects.", + "ErrorPleaseSelectLineup": "Veuillez s\u00e9lectionner une programmation et r\u00e9essayer. Si aucune programmation n'est disponible, veuillez v\u00e9rifier que vos identifiant, mot de passe et code postal sont corrects.", "HeaderTryEmbyPremiere": "Essayer Emby Premiere", - "ButtonBecomeSupporter": "Obtenez Emby Premiere", - "ButtonClosePlayVideo": "Fermer et lire mon m\u00e9dia", - "MessageDidYouKnowCinemaMode": "Saviez-vous qu'avec Emby Premi\u00e8re, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur gr\u00e2ce \u00e0 des fonctionnalit\u00e9s comme le Mode Cin\u00e9ma ?", - "MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.", - "OptionEnableDisplayMirroring": "Activer la recopie d'\u00e9cran", - "HeaderSyncRequiresSupporterMembership": "La synchronisation entre vos appareils requiert un compte Emby Premiere.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync n\u00e9cessite une connexion avec un serveur Emby et une souscription Emby Premiere active.", + "OptionEnableDisplayMirroring": "Activer la duplication d'\u00e9cran", + "HeaderSyncRequiresSupporterMembership": "La synchronisation entre vos appareils n\u00e9cessite un abonnement Emby Premiere.", + "HeaderSyncRequiresSupporterMembershipAppVersion": "La synchronisation n\u00e9cessite une connexion \u00e0 un serveur Emby avec un abonnement Emby Premiere.", "ErrorValidatingSupporterInfo": "Une erreur s'est produite lors de la validation de vos informations Emby Premiere. Veuillez r\u00e9essayer plus tard.", - "LabelLocalSyncStatusValue": "Status : {0}", + "LabelLocalSyncStatusValue": "\u00c9tat : {0}", "MessageSyncStarted": "Synchronisation d\u00e9marr\u00e9e", - "NoSlideshowContentFound": "Aucun diaporama trouv\u00e9.", - "OptionPhotoSlideshow": "Diaporama de photos", "OptionBackdropSlideshow": "Diaporama d'illustrations", - "HeaderTopPlugins": "Meilleurs plugins", + "HeaderTopPlugins": "Meilleures extensions", "ButtonOther": "Autre", "HeaderSortBy": "Trier par", "HeaderSortOrder": "Ordre de tri", "ButtonDisconnect": "D\u00e9connexion", "ButtonMenu": "Menu", - "ForAdditionalLiveTvOptions": "Pour d'autres fournisseurs de TV Live, cliquez sur l'onglet Services Externes pour voir les options disponibles.", + "ForAdditionalLiveTvOptions": "Pour d'autres fournisseurs de TV en direct, cliquez sur l'onglet Services externes afin de voir les options disponibles.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "TV enregistr\u00e9e", "ConfirmEndPlayerSession": "Voulez-vous vraiment fermer Emby sur cet appareil ?", "ButtonYes": "Oui", "AddUser": "Ajouter un utilisateur", "ButtonNo": "Non", - "ButtonRestorePreviousPurchase": "Restaurer l'achat", - "AlreadyPaid": "Vous avez d\u00e9j\u00e0 pay\u00e9 ?", - "AlreadyPaidHelp1": "Si vous avez d\u00e9j\u00e0 payer pour l'installation d'une ancienne version de Media Browser for Android, vous n'avez pas besoin de payer \u00e0 nouveau pour activer l'application. Cliquez sur OK pour nous envoyer un courriel \u00e0 {0} et nous l'activerons pour vous.", - "AlreadyPaidHelp2": "Vous avez Emby Premiere? annuler cette bo\u00eete de dialogue, la configuration d\u2019Emby Premiere dans votre Dashboard Emby Server sous Aide -> Emby Premiere, et il se d\u00e9verrouille automatiquement.", "ButtonNowPlaying": "En cours de lecture", - "HeaderLatestMovies": "Films les plus r\u00e9cents", - "EmbyPremiereMonthly": "Emby Premi\u00e8re mensuel", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere {0} mensuel", - "HeaderEmailAddress": "Adresse email", - "TextPleaseEnterYourEmailAddressForSubscription": "Merci d'entrer votre adresse email.", - "LoginDisclaimer": "Emby est con\u00e7u pour vous aider \u00e0 g\u00e9rer votre biblioth\u00e8que de m\u00e9dias personnels, tels que les vid\u00e9os et les photos. Veuillez lire nos conditions d'utilisation. L'utilisation de tout logiciel Emby implique que vous acceptiez ces conditions.", + "HeaderLatestMovies": "Derniers films", + "HeaderEmailAddress": "Adresse courriel", + "LoginDisclaimer": "Emby est con\u00e7u pour vous aider \u00e0 g\u00e9rer votre m\u00e9diath\u00e8que personnelle, tels que vos photos et vid\u00e9os. Veuillez lire nos conditions d'utilisation. L'utilisation de tout logiciel Emby implique que vous acceptiez ces conditions.", "TermsOfUse": "Conditions d'utilisation", "NumLocationsValue": "{0} dossiers", - "ButtonAddMediaLibrary": "Ajouter une biblioth\u00e8que de m\u00e9dia", + "ButtonAddMediaLibrary": "Ajouter une m\u00e9diath\u00e8que", "ButtonManageFolders": "G\u00e9rer les dossiers", - "MessageTryMicrosoftEdge": "Pour une meilleure exp\u00e9rience sur Windows 10, essayez le nouveau navigateur Microsoft Edge.", - "MessageTryModernBrowser": "Pour une meilleure exp\u00e9rience sur Windows, essayez un navigateur internet comme Google Chrome, Firefox, ou Opera.", - "ErrorAddingListingsToSchedulesDirect": "Une erreur est survenue pendant l'ajout de la synchronisation avec votre compte Schedules Direct. Schedules Direct autorise uniquement un nombre limit\u00e9 de sunchronisation par compte. Vous devez vous connecter \u00e0 votre site Schedules Direct et supprimer d'autres taches de la liste depuis votre compte avant de pouvoir r\u00e9essayer.", - "PleaseAddAtLeastOneFolder": "Veuillez ajouter au moins un dossier \u00e0 cette biblioth\u00e8que en cliquant sur le bouton Ajouter.", - "ErrorAddingMediaPathToVirtualFolder": "Une erreur est survenue pendant l'ajout du chemin des m\u00e9dias. Veuillez v\u00e9rifier que le chemin est valide et que le processus Serveur Emby peux y acc\u00e9der.", + "ErrorAddingListingsToSchedulesDirect": "Une erreur est survenue pendant l'ajout de la programmation avec votre compte Schedules Direct. Schedules Direct autorise uniquement un nombre limit\u00e9 de programmations par compte. Vous devez vous connecter au site Schedules Direct et supprimer d'autres programmations depuis votre compte avant de pouvoir r\u00e9essayer.", + "PleaseAddAtLeastOneFolder": "Veuillez ajouter au moins un dossier \u00e0 cette m\u00e9diath\u00e8que en cliquant sur le bouton Ajouter.", + "ErrorAddingMediaPathToVirtualFolder": "Une erreur est survenue pendant l'ajout du chemin des m\u00e9dias. Veuillez v\u00e9rifier que le chemin est valide et que le processus du serveur Emby peut y acc\u00e9der.", "ErrorRemovingEmbyConnectAccount": "Une erreur est survenue pendant la suppression du compte Emby Connect. Veuillez vous assurer que vous avez une connection internet active puis r\u00e9\u00e9ssayez.", - "ErrorAddingEmbyConnectAccount1": "Une erreur est survenue lorsque vous avez ajout\u00e9 votre compte Emby Connect. Vous \u00eates-vous cr\u00e9\u00e9 un compte Emby? Inscrivez-vous sur {0}.", - "ErrorAddingEmbyConnectAccount2": "Veuillez vous assurez que votre compte Emby a bien \u00e9t\u00e9 activ\u00e9 avec les instructions fournies dans l'email envoy\u00e9 apr\u00e8s la cr\u00e9ation de votre compte. Si vous n'avez pas re\u00e7u l'email veuillez envoyer un mail \u00e0 {0} avec l'adresse utilis\u00e9e lors de la cr\u00e9ation de votre compte Emby.", - "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "ErrorAddingEmbyConnectAccount1": "Une erreur est survenue lors de l'ajout du compte Emby Connect. Avez-vous cr\u00e9\u00e9 un compte Emby\u00a0? Inscrivez-vous sur {0}.", + "ErrorAddingEmbyConnectAccount2": "Veuillez vous assurez que votre compte Emby a bien \u00e9t\u00e9 activ\u00e9 avec les instructions fournies dans le courriel envoy\u00e9 apr\u00e8s la cr\u00e9ation de votre compte. Si vous n'avez pas re\u00e7u ce courriel veuillez envoyer un courriel \u00e0 {0} avec l'adresse utilis\u00e9e lors de la cr\u00e9ation de votre compte Emby.", + "ErrorAddingEmbyConnectAccount3": "Le compte Emby est d\u00e9j\u00e0 li\u00e9 \u00e0 un utilisateur local existant. Un compte Emby ne peut \u00eatre li\u00e9 qu'\u00e0 un seul utilisateur local \u00e0 la fois.", "HeaderFavoriteArtists": "Artistes pr\u00e9f\u00e9r\u00e9s", "HeaderFavoriteSongs": "Chansons pr\u00e9f\u00e9r\u00e9es", - "HeaderConfirmPluginInstallation": "Confirmer l'installation du plugin", - "PleaseConfirmPluginInstallation": "Merci de cliquer sur OK pour confirmer que vous avez lu ce qui pr\u00e9c\u00e8de et que vous souhaitez poursuivre l'installation du plugin.", - "MessagePluginInstallDisclaimer": "Les plugins d\u00e9velopp\u00e9s par les membres de la communaut\u00e9 Emby sont une excellente mani\u00e8re d'am\u00e9liorer votre exp\u00e9rience Emby avec de nouvelles fonctionnalit\u00e9s et b\u00e9n\u00e9fices. Avant d'installer, veuillez prendre connaissance des impacts sur le serveur Emby, comme l'augmentation de la dur\u00e9e du scan de la biblioth\u00e8que de m\u00e9dias, de nouveaux process en t\u00e2che de fond, ou une moins bonne stabilit\u00e9 du syst\u00e8me.", - "ButtonPlayOneMinute": "Jouer une minute", - "ThankYouForTryingEnjoyOneMinute": "Profitez d'une minute de retour en arri\u00e8re. Merci d'avoir utilis\u00e9 Emby.", - "HeaderTryPlayback": "Essayer Playback", - "HeaderBenefitsEmbyPremiere": "Avantages de Emby Premiere", - "MobileSyncFeatureDescription": "Synchroniser votre contenu multim\u00e9dia sur vos t\u00e9l\u00e9phones et tablettes pour y acc\u00e9der facilement hors-connexion.", - "CoverArtFeatureDescription": "Cover Art cr\u00e9\u00e9 des couvertures amusantes et d'autres traitements pour vous aider \u00e0 personnaliser les pochettes de votre contenu multim\u00e9dia.", + "HeaderConfirmPluginInstallation": "Confirmer l'installation de l'extension", + "PleaseConfirmPluginInstallation": "Merci de cliquer sur OK pour confirmer que vous avez lu ce qui pr\u00e9c\u00e8de et que vous souhaitez poursuivre l'installation de l'extension.", + "MessagePluginInstallDisclaimer": "Les extensions d\u00e9velopp\u00e9es par les membres de la communaut\u00e9 Emby sont une excellente mani\u00e8re d'am\u00e9liorer votre exp\u00e9rience Emby avec de nouvelles fonctionnalit\u00e9s. Avant toute installation, veuillez prendre connaissance de l'impact qu'elles peuvent avoir sur le serveur Emby, comme l'augmentation de la dur\u00e9e du balayage de la m\u00e9diath\u00e8que, de nouvelles t\u00e2ches de fond, ou un syst\u00e8me moins stable.", "HeaderMobileSync": "Synchronisation mobile", "HeaderCloudSync": "Synchronisation dans le cloud", - "CloudSyncFeatureDescription": "Synchroniser votre contenu multim\u00e9dia dans le cloud, pour facilement le sauvegarder, l'archiver, et le convertir.", "HeaderFreeApps": "Applications Emby gratuites", - "FreeAppsFeatureDescription": "Profiter d'un acc\u00e8s gratuit \u00e0 certaines applications Emby sur votre appareil.", - "CinemaModeFeatureDescription": "Le mode Cin\u00e9ma, vous donne l'exp\u00e9rience d'une vraie salle, avec des bandes annonces, et des introductions avant le film.", "CoverArt": "Pochette", "ButtonOff": "Arr\u00eat", "TitleHardwareAcceleration": "Acc\u00e9l\u00e9ration mat\u00e9rielle", - "HardwareAccelerationWarning": "Activation de l'acc\u00e9l\u00e9ration mat\u00e9rielle peut provoquer l'instabilit\u00e9 dans certains environnements. Assurez-vous que vos pilotes de syst\u00e8me d'exploitation et vid\u00e9o sont compl\u00e8tement \u00e0 jour. Si vous avez des difficult\u00e9s \u00e0 la lecture vid\u00e9o apr\u00e8s l'activation, vous devrez modifier ce param\u00e8tre sur Auto.", - "HeaderSelectCodecIntrosPath": "Choisir le chemin du codec des intros", - "ButtonAddMissingData": "Ajouter uniquement les donn\u00e9es manquantes", - "ValueExample": "13:00", - "OptionEnableAnonymousUsageReporting": "Autoriser le compte rendu anonyme d'utilisation", - "OptionEnableAnonymousUsageReportingHelp": "Autoriser Emby \u00e0 collecter des donn\u00e9es anonyme comme les plugins install\u00e9s, les version de vos applications Emby, etc. Ces informations sont uniquement collecter dans le butervent d'am\u00e9liorer le logiciel.", - "LabelFileOrUrl": "Fichier ou url :", - "OptionEnableForAllTuners": "Autoriser pour tous les p\u00e9riph\u00e9riques tuner", + "HardwareAccelerationWarning": "L'activation de l'acc\u00e9l\u00e9ration mat\u00e9rielle peut provoquer une instabilit\u00e9 dans certains environnements. Assurez-vous que votre syst\u00e8me d'exploitation et vos pilotes vid\u00e9o sont compl\u00e8tement \u00e0 jour. Si vous avez des difficult\u00e9s pour lire des vid\u00e9os apr\u00e8s l'activation, vous devrez remettre ce param\u00e8tre sur Auto.", + "HeaderSelectCodecIntrosPath": "Choisir le chemin des introductions de codec", + "ValueExample": "Exemple\u00a0: {0}", + "OptionEnableAnonymousUsageReporting": "Autoriser le rapport anonyme d'utilisation", + "OptionEnableAnonymousUsageReportingHelp": "Autoriser Emby \u00e0 collecter des donn\u00e9es anonyme comme les extensions install\u00e9es, les versions de vos applications Emby, etc. Ces informations sont uniquement collect\u00e9es dans le but d'am\u00e9liorer le logiciel.", + "LabelFileOrUrl": "Fichier ou URL :", + "OptionEnableForAllTuners": "Autoriser pour tous les appareils tuner", "HeaderTuners": "Tuners", - "LabelOptionalM3uUrl": "M3U url (facultatif):", + "LabelOptionalM3uUrl": "URL M3U (facultatif)\u00a0:", "LabelOptionalM3uUrlHelp": "Certains appareils prennent en charge une liste de cha\u00eenes M3U.", - "TabResumeSettings": "Reprendre les param\u00e8tres", - "HowDidYouPay": "Comment avez-vous pay\u00e9?", - "IHaveEmbyPremiere": "J'ai Emby Premiere", - "IPurchasedThisApp": "J'ai achet\u00e9 cette application", + "TabResumeSettings": "Param\u00e8tres de reprise", "DrmChannelsNotImported": "Les cha\u00eenes avec DRM ne seront pas import\u00e9es.", "LabelAllowHWTranscoding": "Autoriser le transcodage mat\u00e9riel", - "AllowHWTranscodingHelp": "Si elle est activ\u00e9e, permet au tuner de transcoder les flux \u00e0 la vol\u00e9e. Cela peut aider \u00e0 r\u00e9duire le transcodage requis par Emby Server.", + "AllowHWTranscodingHelp": "Si l'option est activ\u00e9e, permet au tuner de transcoder les flux \u00e0 la vol\u00e9e. Cela peut aider \u00e0 r\u00e9duire le transcodage requis par le serveur Emby.", "OptionRequirePerfectSubtitleMatch": "T\u00e9l\u00e9charger uniquement les sous-titres qui correspondent parfaitement \u00e0 mes fichiers vid\u00e9o.", - "ErrorAddingGuestAccount1": "Une erreur est survenue lorsque vous avez ajout\u00e9 votre compte Emby Connect. Vous \u00eates-vous cr\u00e9\u00e9 un compte Emby? Inscrivez-vous sur {0}.", - "ErrorAddingGuestAccount2": "S'il vous pla\u00eet vous assurer que votre invit\u00e9 a termin\u00e9 l'activation en suivant les instructions dans l'e-mail envoy\u00e9 apr\u00e8s la cr\u00e9ation du compte. Si elles ne re\u00e7oivent pas cet e-mail alors s'il vous pla\u00eet envoyez un courriel \u00e0 {0}, et inclure votre adresse e-mail ainsi que le leur.", - "GuestUserNotFound": "Utilisateur non trouv\u00e9. S'il vous pla\u00eet v\u00e9rifiez que le nom est correct et essayez \u00e0 nouveau, ou essayez d'entrer leur adresse e-mail.", + "ErrorAddingGuestAccount1": "Une erreur est survenue lors de l'ajout du compte Emby Connect. Avez-vous cr\u00e9\u00e9 un compte Emby\u00a0? Inscrivez-vous sur {0}.", + "ErrorAddingGuestAccount2": "Veuillez vous assurez que votre invit\u00e9 a bien activ\u00e9 son compte en suivant les instructions fournies dans le courriel envoy\u00e9 apr\u00e8s la cr\u00e9ation de votre compte. S'il n'a pas re\u00e7u ce courriel, veuillez envoyer un courriel \u00e0 {0} en pr\u00e9cisant votre adresse courriel ainsi que la sienne.", + "GuestUserNotFound": "Utilisateur non trouv\u00e9. Veuillez v\u00e9rifier que le nom est correct et essayez \u00e0 nouveau, ou essayez d'entrer votre adresse courriel.", "Yesterday": "Hier", - "DownloadImagesInAdvanceWarning": "Le t\u00e9l\u00e9chargement de toutes les images \u00e0 l'avance se traduira par un allongement des temps de balayage de la biblioth\u00e8que", - "MetadataSettingChangeHelp": "Les modifications des param\u00e8tres des m\u00e9tadonn\u00e9es auront une incidence sur le nouveau contenu ajout\u00e9. Pour actualiser le contenu existant, ouvrez l'\u00e9cran de d\u00e9tail et cliquez sur le bouton de rafra\u00eechissement, ou effectuer des actualisations en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.", + "DownloadImagesInAdvanceWarning": "Le t\u00e9l\u00e9chargement de toutes les images \u00e0 l'avance se traduira par un allongement du temps de balayage de la biblioth\u00e8que.", + "MetadataSettingChangeHelp": "Les modifications des param\u00e8tres des m\u00e9tadonn\u00e9es auront une incidence sur le nouveau contenu ajout\u00e9. Pour actualiser le contenu existant, ouvrez l'\u00e9cran des d\u00e9tails et cliquez sur le bouton Actualiser, ou effectuez des actualisations en masse en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.", "OptionConvertRecordingPreserveAudio": "Pr\u00e9server l'audio original lors de la conversion des enregistrements (si possible)", "OptionConvertRecordingPreserveAudioHelp": "Cela fournira une meilleure qualit\u00e9 audio, mais peut n\u00e9cessiter un transcodage lors de la lecture sur certains appareils.", - "CreateCollectionHelp": "Les Collections vous permettent de cr\u00e9er des groupes personnalis\u00e9s de films et autres contenus.", - "AddItemToCollectionHelp": "Ajouter des articles \u00e0 des collections en les recherchant et en utilisant leurs clic droit ou appuyez sur les menus pour les ajouter \u00e0 une collection.", + "OptionConvertRecordingPreserveVideo": "Conserver la vid\u00e9o originale lors de la conversion des enregistrements", + "OptionConvertRecordingPreserveVideoHelp": "Cela fournira une meilleure qualit\u00e9 vid\u00e9o, mais n\u00e9cessitera un transcodage lors de la lecture sur certains appareils.", + "AddItemToCollectionHelp": "Ajoutez des \u00e9l\u00e9ments \u00e0 des collections en les recherchant et en utilisant leurs menus contextuels (clic droit ou appuyer longtemps).", "HeaderHealthMonitor": "Moniteur de sant\u00e9", - "HealthMonitorNoAlerts": "Il n'y a pas les alertes actives.", - "RecordingPathChangeMessage": "Apr\u00e8s la modification de votre dossier d'enregistrement les enregistrements existants ne seront pas migrer de l'ancien emplacement vers le nouveau. Vous aurez besoin de les d\u00e9placer manuellement si d\u00e9sir\u00e9.", - "VisualLoginFormHelp": "S\u00e9lectionnez un utilisateur ou vous connecter manuellement", - "LabelSportsCategories": "Sports cat\u00e9gories:", - "XmlTvSportsCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s sous forme de programmes sportifs. S\u00e9par\u00e9e les multiples avec '|'.", - "LabelNewsCategories": "Nouvelles cat\u00e9gories:", - "XmlTvNewsCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s comme des programmes d'information. S\u00e9par\u00e9e les multiples avec '|'.", - "LabelKidsCategories": "Enfants cat\u00e9gories:", - "XmlTvKidsCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s sous forme de programmes pour les enfants. S\u00e9par\u00e9e les multiples avec '|'.", - "LabelMovieCategories": "Film cat\u00e9gories:", - "XmlTvMovieCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s sous forme de films. S\u00e9par\u00e9e les multiples avec '|'.", - "XmlTvPathHelp": "Un chemin d'acc\u00e8s \u00e0 un fichier xml tv. Emby lira ce fichier et v\u00e9rifier p\u00e9riodiquement les mises \u00e0 jour. Vous \u00eates responsable de la cr\u00e9ation et la mise \u00e0 jour du fichier.", - "LabelBindToLocalNetworkAddress": "Lier \u00e0 l'adresse de r\u00e9seau local:", - "LabelBindToLocalNetworkAddressHelp": "Optionnel. Remplacer l'adresse IP locale pour lier le serveur http vers. Si laiss\u00e9 vide, le serveur va se lier \u00e0 toutes les adresses disponibles. La modification de cette valeur n\u00e9cessite le red\u00e9marrage d'Emby Server.", + "HealthMonitorNoAlerts": "Il n'y a pas d'alerte active.", + "RecordingPathChangeMessage": "Modifier votre dossier d'enregistrement ne d\u00e9placera pas les enregistrements existants de l'ancien emplacement vers le nouveau. Vous devrez les d\u00e9placer manuellement si vous le souhaitez.", + "VisualLoginFormHelp": "S\u00e9lectionnez un utilisateur ou connectez-vous manuellement", + "LabelSportsCategories": "Cat\u00e9gories des sports :", + "XmlTvSportsCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s en tant que programmes sportifs. S'il y en a plusieurs, s\u00e9parez-les avec '|'.", + "LabelNewsCategories": "Cat\u00e9gories des informations\u00a0:", + "XmlTvNewsCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s en tant que programmes d'information. S'il y en a plusieurs, s\u00e9parez-les avec '|'.", + "LabelKidsCategories": "Cat\u00e9gories jeunesse\u00a0:", + "XmlTvKidsCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s en tant que programmes jeunesse. S'il y en a plusieurs, s\u00e9parez-les avec '|'.", + "LabelMovieCategories": "Cat\u00e9gories de films\u00a0:", + "XmlTvMovieCategoriesHelp": "Les programmes avec ces cat\u00e9gories seront affich\u00e9s en tant que films. S'il y en a plusieurs, s\u00e9parez-les avec '|'.", + "XmlTvPathHelp": "Un chemin d'acc\u00e8s \u00e0 un fichier XML TV. Emby lira ce fichier et en v\u00e9rifiera p\u00e9riodiquement les mises \u00e0 jour. Vous \u00eates responsable de la cr\u00e9ation et de la mise \u00e0 jour du fichier.", + "LabelBindToLocalNetworkAddress": "Lier \u00e0 l'adresse de r\u00e9seau local\u00a0:", + "LabelBindToLocalNetworkAddressHelp": "Optionnel. Remplace l'adresse IP locale \u00e0 laquelle se lie le serveur HTTP. Sans param\u00e8tre, le serveur va se lier \u00e0 toutes les adresses disponibles. La modification de cette valeur n\u00e9cessite le red\u00e9marrage du serveur Emby.", "TitleHostingSettings": "Param\u00e8tres d'h\u00e9bergement", - "SettingsWarning": "La modification de ces valeurs peut provoquer des d\u00e9faillances d'instabilit\u00e9 ou de connectivit\u00e9. Si vous rencontrez des probl\u00e8mes, nous vous recommandons de les changer aux valeurs par d\u00e9faut.", - "MapChannels": "Carte des Cha\u00eenes", - "LabelffmpegPath": "FFmpeg chemin:", - "LabelffmpegVersion": "FFmpeg version:", - "LabelffmpegPathHelp": "Le chemin d'acc\u00e8s vers votre application FFmpeg t\u00e9l\u00e9charg\u00e9, ou un dossier contenant FFmpeg.", - "SetupFFmpeg": "installation de FFmpeg", - "SetupFFmpegHelp": "FFmpeg est un composant requis et doit \u00eatre configur\u00e9.", - "EnterFFmpegLocation": "Entrer le chemin de FFmpeg", + "SettingsWarning": "La modification de ces valeurs peut provoquer des d\u00e9faillances de stabilit\u00e9 ou de connectivit\u00e9. Si vous rencontrez des probl\u00e8mes, nous vous recommandons de les remettre aux valeurs par d\u00e9faut.", + "MapChannels": "Carte des cha\u00eenes", + "LabelffmpegPath": "Chemin vers FFmpeg\u00a0:", + "LabelffmpegVersion": "Version de FFmpeg\u00a0:", + "LabelffmpegPathHelp": "Le chemin d'acc\u00e8s vers l'application FFmpeg, ou un dossier contenant FFmpeg.", + "SetupFFmpeg": "Installer FFmpeg", + "SetupFFmpegHelp": "Emby peut avoir besoin d'une librairie ou d'une application pour convertir certains types de m\u00e9dia. Il y a beaucoup d'applications diff\u00e9rentes, cependant Emby a \u00e9t\u00e9 test\u00e9 avec FFmpeg. Emby n'est en rien affili\u00e9 avec FFmpeg, sa propri\u00e9t\u00e9, son code ou sa distribution.", + "EnterFFmpegLocation": "Entrer le chemin vers FFmpeg", "DownloadFFmpeg": "T\u00e9l\u00e9charger FFmpeg", - "FFmpegSuggestedDownload": "T\u00e9l\u00e9chargement sugg\u00e9r\u00e9: {0}", - "UnzipFFmpegFile": "D\u00e9compresser le fichier t\u00e9l\u00e9charg\u00e9 dans un dossier de votre choix.", - "OptionUseSystemInstalledVersion": "Utiliser la version syst\u00e8me install\u00e9", + "FFmpegSuggestedDownload": "T\u00e9l\u00e9chargement sugg\u00e9r\u00e9\u00a0: {0}", + "UnzipFFmpegFile": "D\u00e9compresser le fichier t\u00e9l\u00e9charg\u00e9 dans le dossier de votre choix.", + "OptionUseSystemInstalledVersion": "Utiliser la version install\u00e9e sur le syst\u00e8me", "OptionUseMyCustomVersion": "Utiliser une version personnalis\u00e9e", - "FFmpegSavePathNotFound": "Nous ne pouvons pas localiser FFmpeg en utilisant le chemin que vous avez saisi. FFprobe est \u00e9galement n\u00e9cessaire et doit exister dans le m\u00eame dossier. Ces composants sont g\u00e9n\u00e9ralement regroup\u00e9s dans le m\u00eame t\u00e9l\u00e9chargement. S'il vous pla\u00eet v\u00e9rifier le chemin et essayer \u00e0 nouveau.", - "XmlTvPremiere": "Par d\u00e9faut, Emby importera {0} heures de donn\u00e9es de guidage. L\u2019importation de donn\u00e9es illimit\u00e9 n\u00e9cessite un abonnement Emby Premiere.", + "FFmpegSavePathNotFound": "Nous ne pouvons pas localiser FFmpeg en utilisant le chemin que vous avez saisi. FFprobe est \u00e9galement n\u00e9cessaire et doit exister dans le m\u00eame dossier. Ces composants sont g\u00e9n\u00e9ralement regroup\u00e9s dans le m\u00eame t\u00e9l\u00e9chargement. Veuillez v\u00e9rifier le chemin et essayer \u00e0 nouveau.", + "XmlTvPremiere": "Par d\u00e9faut, Emby importera {0} heures de donn\u00e9es du guide. L\u2019importation de donn\u00e9es illimit\u00e9 n\u00e9cessite un abonnement Emby Premiere.", "MoreFromValue": "Plus de {0}", - "OptionSaveMetadataAsHiddenHelp": "La modification s'appliquera aux nouvelles m\u00e9tadonn\u00e9es enregistr\u00e9es \u00e0 l'avenir. Les fichiers de m\u00e9tadonn\u00e9es existants seront mis \u00e0 jour la prochaine fois par Emby Server.", - "EnablePhotos": "Activer photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "MakeAvailableOffline": "Rendre disponible hors connexion", + "OptionSaveMetadataAsHiddenHelp": "La modification s'appliquera aux nouvelles m\u00e9tadonn\u00e9es enregistr\u00e9es \u00e0 l'avenir. Les fichiers de m\u00e9tadonn\u00e9es existants seront mis \u00e0 jour la prochaine fois qu'ils seront enregistr\u00e9s par le serveur Emby.", + "EnablePhotos": "Activer les photos", + "EnablePhotosHelp": "Les photos seront d\u00e9tect\u00e9es et affich\u00e9es avec les autres fichiers multim\u00e9dia.", + "MakeAvailableOffline": "Activer la disponibilit\u00e9 hors ligne", "ConfirmRemoveDownload": "Supprimer le t\u00e9l\u00e9chargement ?", "RemoveDownload": "Supprimer le t\u00e9l\u00e9chargement", - "SyncToOtherDevices": "Sync avec d'autres appareils", + "SyncToOtherDevices": "Synchroniser avec d'autres appareils", "ManageOfflineDownloads": "G\u00e9rer les t\u00e9l\u00e9chargements hors ligne", - "MessageDownloadScheduled": "T\u00e9l\u00e9chargement planifi\u00e9e", + "MessageDownloadScheduled": "T\u00e9l\u00e9chargement planifi\u00e9", "RememberMe": "Se souvenir de moi", - "HeaderOfflineSync": "Sync hors ligne", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelVaapiDevice": "VA API Appareil :", - "LabelVaapiDeviceHelp": "Ceci est le noeud de rendu qui est utilis\u00e9 pour l'acc\u00e9l\u00e9ration mat\u00e9rielle.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", - "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", + "HeaderOfflineSync": "Synchronisation hors ligne", + "LabelMaxAudioFileBitrate": "D\u00e9bit audio maximum\u00a0:", + "LabelMaxAudioFileBitrateHelp": "Les fichiers audio avec d\u00e9bit sup\u00e9rieur seront convertis par le serveur Emby. S\u00e9lectionnez un d\u00e9bit plus \u00e9lev\u00e9 pour une meilleure qualit\u00e9, ou moins \u00e9lev\u00e9 pour conserver de l'espace de stockage local.", + "LabelVaapiDevice": "Appareil VA API :", + "LabelVaapiDeviceHelp": "Ceci est le n\u0153ud de rendu qui est utilis\u00e9 pour l'acc\u00e9l\u00e9ration mat\u00e9rielle.", + "HowToConnectFromEmbyApps": "Comment se connecter depuis les applications Emby", + "MessageFolderRipPlaybackExperimental": "La lecture de fichiers rips et ISOs dans cette application est encore exp\u00e9rimentale. Pour de meilleurs r\u00e9sultats, essayez une application Emby qui est compatible avec ces formats nativement, ou utilisez des fichiers vid\u00e9os standard.", "OptionExtractChapterImage": "Activer l'extraction des images de chapitres", "Downloads": "T\u00e9l\u00e9chargements", - "LabelEnableDebugLogging": "Activer le d\u00e9boguage dans le journal d'\u00e9n\u00e8nements", + "LabelEnableDebugLogging": "Activer le d\u00e9bogage dans le journal d\u2019\u00e9v\u00e8nements", "OptionEnableExternalContentInSuggestions": "Activer le contenu externe dans les suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", + "OptionEnableExternalContentInSuggestionsHelp": "Autoriser les bandes-annonces sur internet et les programmes TV en direct \u00e0 \u00eatre inclus dans le contenu sugg\u00e9r\u00e9.", + "LabelH264EncodingPreset": "Profil d'encodage H264\u00a0:", + "H264EncodingPresetHelp": "Choisissez une valeur plus rapide pour am\u00e9liorer la performance, ou plus lente pour am\u00e9liorer la qualit\u00e9.", + "LabelH264Crf": "CRF d'encodage H264\u00a0:", + "H264CrfHelp": "Le Constant Rate Factor (CRF) est l'option de qualit\u00e9 par d\u00e9faut pour l'encodeur x264. Vous pouvez mettre des valeurs entre 0 et 51, o\u00f9 la valeur la plus basse r\u00e9sulte en une meilleure qualit\u00e9 (en augmentant le taille des fichiers). De bonne valeurs se situent entre 18 et 28. La valeur par d\u00e9faut pour le x264 est de 23, vous pouvez utiliser celle-ci comme point de d\u00e9part.", "Sports": "Sports", - "HeaderForKids": "For Kids", - "HeaderRecordingGroups": "Recording Groups", - "LabelConvertRecordingsTo": "Convert recordings to:", - "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", - "ButtonPlayExternalPlayer": "Lire avec lecteur externe", - "WillRecord": "Will record", - "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "HeaderForKids": "Jeunesse", + "HeaderRecordingGroups": "Groupes d'enregistrements", + "LabelConvertRecordingsTo": "Convertir les enregistrements en\u00a0:", + "HeaderUpcomingOnTV": "Prochainement \u00e0 la TV", + "LabelOptionalNetworkPath": "(Optionnel) Dossier r\u00e9seau partag\u00e9\u00a0:", + "LabelOptionalNetworkPathHelp": "Si le dossier est partag\u00e9 sur votre r\u00e9seau, donner acc\u00e8s au chemin du dossier r\u00e9seau peut autoriser les applications Emby sur d'autres appareils \u00e0 avoir acc\u00e8s \u00e0 ses fichiers directement.", + "ButtonPlayExternalPlayer": "Lire avec un lecteur externe", + "NotScheduledToRecord": "Pas d'enregistrement pr\u00e9vu", + "SynologyUpdateInstructions": "Merci de vous identifier au DSM et d'aller au Centre de paquets pour la mise \u00e0 jour.", + "LatestFromLibrary": "Derniers {0}", + "LabelMoviePrefix": "Pr\u00e9fixe de film :", + "LabelMoviePrefixHelp": "Si un pr\u00e9fixe est appliqu\u00e9 aux titres de film, pr\u00e9cisez-le ici afin qu'Emby puisse le g\u00e9rer convenablement.", + "HeaderRecordingPostProcessing": "Traitement des enregistrements", + "LabelPostProcessorArguments": "Arguments en ligne de commande du post-processeur\u00a0:", + "LabelPostProcessorArgumentsHelp": "Utiliser {path} comme chemin d'acc\u00e8s au fichier d'enregistrement.", + "LabelPostProcessor": "Application post-processeur\u00a0:", + "ErrorAddingXmlTvFile": "Une erreur est survenue lors de l'acc\u00e8s au fichier XMLTV. Assurez-vous qu'il existe et r\u00e9essayez." } \ No newline at end of file diff --git a/dashboard-ui/strings/gsw.json b/dashboard-ui/strings/gsw.json index 119cd61406..b4eb4872a5 100644 --- a/dashboard-ui/strings/gsw.json +++ b/dashboard-ui/strings/gsw.json @@ -1,8 +1,6 @@ { - "LabelExit": "Verlasse", - "LabelApiDocumentation": "API Dokumentatione", - "LabelBrowseLibrary": "Dursuech d'Bibliothek", - "LabelConfigureServer": "Konfigurier Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Vorher", "LabelFinish": "Beende", "LabelNext": "N\u00f6chst", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Din Vorname:", "MoreUsersCanBeAddedLater": "Meh User ch\u00f6nt sp\u00f6ter im Dashboard hinzuegf\u00fcegt werde.", "UserProfilesIntro": "Emby beinhaltet iibauti Unterst\u00fctzig f\u00f6r User-Profil, wo mer siini eigene Asichte, Spellst\u00e4nd und Altersfriigobe iistelle chan.", - "LabelWindowsService": "Windows Dienst", - "AWindowsServiceHasBeenInstalled": "En Windows Dienst esch installiert worde.", - "WindowsServiceIntro1": "Emby Server lauft normalerwiis als Desktop-Software mit emene Icon i de Taskliiste, aber falls es du vorziehsch das ganze als Dienst laufe z'loh, chasch es i de Windows Dienst under de Systemst\u00fcrig finde und starte.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "Das esch alles wo mer momentan m\u00fcend w\u00fcsse. Emby het i de zw\u00fcscheziit agfange informatione \u00fcber diini medie-bibliothek z'sammle. Lueg der es paar vo eusne Apps a und denn klick uf Beende<\/b> um zum Server Dashboard<\/b> z'cho.", "LabelConfigureSettings": "Bearbeite iistellige", - "LabelEnableAutomaticPortMapping": "Aktiviere s'automaitsche Port Mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP erlaubt en automatischi Routeriistellig f\u00f6r eifache Remote-Zuegang. Das chan under umst\u00e4nde mit es paar Router ned funktioniere.", "HeaderTermsOfService": "Emby Nutzigsbedingige", "MessagePleaseAcceptTermsOfService": "Bitte akzeptiere z'erst no d'Nutzigsbedingige und Datenutzig-Richtlinie bevor du wiiter machsch.", "OptionIAcceptTermsOfService": "Ich akzeptiere d'Nutzigsbedingige", "ButtonPrivacyPolicy": "Datenutzig-Richtlinie", "ButtonTermsOfService": "Nutzigsbedingige", - "HeaderDeveloperOptions": "Entwickler Optione", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web Client Sourcepfad:", - "LabelDashboardSourcePathHelp": "Falls de Server vonere andere Source bedient s\u00f6ll werde, geb bitte de genaui Pfad zum dashboard-ui Ordner a. Alli Date vom Web Client werded vo dem Verzeichnis us bedient werde.", "ButtonConvertMedia": "Konvertiere Medie", "ButtonOrganize": "Organisiere", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Um en User wo ned ufglistet esch us z'w\u00e4hle, muesch z'erst no sin Account mit Emby Connect im Userprofil verbinde.", "LabelPinCode": "Pin Code:", "OptionHideWatchedContentFromLatestMedia": "Versteck bereits agluegti Medie i de Rubrik neui Medie", + "DeleteMedia": "Delete media", "HeaderSync": "synchronisiere", "ButtonOk": "OK", "ButtonCancel": "Abbreche", "ButtonExit": "Verlasse", "ButtonNew": "Neu", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Um Zuegriff z'ha, gib bitte diin eifache Pin Code i", "ButtonConfigurePinCode": "Konfigurier de Pin Code", "RegisterWithPayPal": "Registrier di mit PayPal", - "HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste", "LabelSyncTempPath": "Pfad f\u00f6r tempor\u00e4ri Date:", "LabelSyncTempPathHelp": "Gib en eigene Arbetsordner f\u00f6r d'Synchronisierig a. Konvertierti Medie werded w\u00e4hrend em Sync-Prozess det gspeichered.", "LabelCustomCertificatePath": "Eigene Pfad f\u00f6r Zertifikat:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Falls aktiviert, werded *.rar und *.zip Date als Medie erkennt.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Aktivier erwiiterti Filmasichte", - "LabelEnableEnhancedMoviesHelp": "Falls aktiviert, werded Film als ganzi Ordner inkl Trailer, Extras wie Casting & Crew und anderi wichtigi Date azeigt.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Film", @@ -84,7 +70,6 @@ "LabelContentType": "Date Art:", "TitleScheduledTasks": "Planti Ufgabe", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "F\u00fceg en Medieordner dezue.", "LabelFolderType": "Ordner Art:", "LabelCountry": "Land:", "LabelLanguage": "Sproch:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Wennd Bilder und Metadate direkt i d'Medieordner speicherisch, chasch sie eifach weder finde und au bearbeite.", "LabelDownloadInternetMetadata": "Lade Bilder und Metadate vom Internet abe", "LabelDownloadInternetMetadataHelp": "Emby Server chan Infos vo diine Medie abelade um gr\u00f6sseri und sch\u00f6neri Asichte z'generiere.", - "TabPreferences": "iistellige", "TabPassword": "Passwort", "TabLibraryAccess": "Bibliothek Zuegriff", "TabAccess": "Zuegriff", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Aktiviere de Zuegriff zu allne Bibliotheke", "DeviceAccessHelp": "Das betrifft nur Gr\u00e4t wo einzigartig indentifiziert werded und tuet ned Browser Zuegriff verhindere. En Filter f\u00f6r Gr\u00e4t Zuegriff verhindered, dass neui Gr\u00e4t dezue gf\u00fcegt werded, bovor si ned \u00fcberpr\u00fcefd worde sind.", "LabelDisplayMissingEpisodesWithinSeasons": "Zeig fehlendi Episode innerhalb vo de einzelne Staffle", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Zeig ned usgstrahlti Episode innerhalb vo de einzelne Staffle", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Abspell iistellige", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Abspell iistellige", "LabelAudioLanguagePreference": "Audio Sproch iistellig:", "LabelSubtitleLanguagePreference": "Undertitel Sproch iistellig:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Siiteverh\u00e4ltnis w\u00e4r vo Vorteil - nur JPG\/PNG.", "MessageNothingHere": "Nix da.", "MessagePleaseEnsureInternetMetadata": "Bitte stell sicher, dass Abelade vo Metadate vom Internet aktiviert worde esch.", - "TabSuggested": "Vorgschlage", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Vorschl\u00e4g", "TabLatest": "Letschti", "TabUpcoming": "Usstehend", "TabShows": "Serie", "TabEpisodes": "Episode", "TabGenres": "Genre", - "TabPeople": "Persone", "TabNetworks": "Studios", "HeaderUsers": "User", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Autor", "OptionProducers": "Produzent", "HeaderResume": "Fortsetze", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Als n\u00f6chsts", "NoNextUpItemsMessage": "Nix da. Fang mal a Serie luege!", "HeaderLatestEpisodes": "Letschti Episode", @@ -185,6 +173,7 @@ "OptionPlayCount": "Z\u00e4hler", "OptionDatePlayed": "Abgspellt am", "OptionDateAdded": "Dezue gf\u00fcegt am", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album-Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Chan fortgsetzt werde", "ScheduledTasksHelp": "Klick uf en Ufgab zum di entsprechend Planig iistelle.", - "ScheduledTasksTitle": "Planti Ufgabe", "TabMyPlugins": "Miini Plugins", "TabCatalog": "Katalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Letschti Songs", "HeaderRecentlyPlayed": "Erst grad dezue gf\u00fcegt", "HeaderFrequentlyPlayed": "Vell gspellt", - "DevBuildWarning": "Dev-Builds sind experimentell, werded vell versione releasd und sind \u00f6ppe die mal ned tested worde. Die Software chan abst\u00fcrze und die komplette Features m\u00fcend ned zwingend funktioniere laufe.", "LabelVideoType": "Video Art:", "OptionBluray": "BluRay", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "Kei Undertitel", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Leg es Bild do ab.", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Letschti Film", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/he.json b/dashboard-ui/strings/he.json index 32371201af..76c37e7802 100644 --- a/dashboard-ui/strings/he.json +++ b/dashboard-ui/strings/he.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4", - "LabelApiDocumentation": "\u05ea\u05d9\u05e2\u05d5\u05d3 API", - "LabelBrowseLibrary": "\u05d3\u05e4\u05d3\u05e3 \u05d1\u05e1\u05e4\u05e8\u05d9\u05d4", - "LabelConfigureServer": "\u05e7\u05d1\u05e2 \u05ea\u05e6\u05d5\u05e8\u05ea Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd", "LabelFinish": "\u05e1\u05d9\u05d9\u05dd", "LabelNext": "\u05d4\u05d1\u05d0", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\u05e9\u05de\u05da \u05d4\u05e4\u05e8\u05d8\u05d9:", "MoreUsersCanBeAddedLater": "\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd \u05de\u05d0\u05d5\u05d7\u05e8 \u05d9\u05d5\u05ea\u05e8 \u05d3\u05e8\u05da \u05dc\u05d5\u05d7 \u05d4\u05d1\u05e7\u05e8\u05d4.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1", - "AWindowsServiceHasBeenInstalled": "\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05d5\u05d9\u05e0\u05d3\u05d5\u05e1 \u05d4\u05d5\u05ea\u05e7\u05df", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "\u05e7\u05d1\u05e2 \u05d0\u05ea \u05ea\u05e6\u05d5\u05e8\u05ea \u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea", - "LabelEnableAutomaticPortMapping": "\u05d0\u05e4\u05e9\u05e8 \u05de\u05d9\u05e4\u05d5\u05d9 \u05e4\u05d5\u05e8\u05d8\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9", - "LabelEnableAutomaticPortMappingHelp": "UPnP \u05de\u05d0\u05e4\u05e9\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05d5\u05ea \u05e9\u05dc \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05de\u05e8\u05d5\u05d7\u05e7\u05ea \u05d1\u05e7\u05dc\u05d5\u05ea. \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3 \u05e2\u05dd \u05db\u05dc \u05d3\u05d2\u05de\u05d9 \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8\u05d9\u05dd.", "HeaderTermsOfService": "\u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05e9\u05dc Emby", "MessagePleaseAcceptTermsOfService": "\u05d0\u05e0\u05d0 \u05d0\u05e9\u05e8 \u05e7\u05d1\u05dc\u05ea \u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea \u05d5\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05d5\u05ea \u05dc\u05e4\u05e0\u05d9 \u05e9\u05ea\u05de\u05e9\u05d9\u05da.", "OptionIAcceptTermsOfService": "\u05d0\u05e0\u05d9 \u05de\u05e7\u05d1\u05dc \u05d0\u05ea \u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea", "ButtonPrivacyPolicy": "\u05de\u05d3\u05d9\u05e0\u05d9\u05d5\u05ea \u05d4\u05e4\u05e8\u05d8\u05d9\u05d5\u05ea", "ButtonTermsOfService": "\u05ea\u05e0\u05d0\u05d9 \u05d4\u05e9\u05d9\u05e8\u05d5\u05ea", - "HeaderDeveloperOptions": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05de\u05e4\u05ea\u05d7\u05d9\u05dd", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "\u05d4\u05de\u05e8 \u05de\u05d3\u05d9\u05d4", "ButtonOrganize": "\u05d0\u05e8\u05d2\u05df", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "\u05e7\u05d5\u05d3 \u05d0\u05d9\u05e9\u05d9", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "\u05d0\u05e9\u05e8", "ButtonCancel": "\u05d1\u05d8\u05dc", "ButtonExit": "\u05d9\u05e6\u05d9\u05d0\u05d4", "ButtonNew": "\u05d7\u05d3\u05e9", + "OptionDev": "\u05de\u05e4\u05ea\u05d7 (\u05dc\u05d0 \u05d9\u05e6\u05d9\u05d1)", + "OptionBeta": "\u05d1\u05d8\u05d0", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "\u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "\u05ea\u05d4\u05e0\u05d4 \u05de 14 \u05d9\u05de\u05d9 \u05e0\u05e1\u05d9\u05d5\u05df \u05d7\u05d9\u05e0\u05dd", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "\u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9 \u05d0\u05d5 \u05d3\u05d5\u05d0\"\u05dc", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", @@ -84,7 +70,6 @@ "LabelContentType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d5\u05db\u05df", "TitleScheduledTasks": "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "\u05d4\u05d5\u05e1\u05e3 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4", "LabelFolderType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4:", "LabelCountry": "\u05de\u05d3\u05d9\u05e0\u05d4:", "LabelLanguage": "\u05e9\u05e4\u05d4:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "\u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d1\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05ea\u05d0\u05e4\u05e9\u05e8 \u05e2\u05e8\u05d9\u05db\u05d4 \u05e0\u05d5\u05d7\u05d4 \u05d5\u05e7\u05dc\u05d4 \u05e9\u05dc\u05d4\u05dd.", "LabelDownloadInternetMetadata": "\u05d4\u05d5\u05e8\u05d3 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05de\u05d4\u05d0\u05d9\u05e0\u05e8\u05e0\u05d8", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea", "TabPassword": "\u05e1\u05d9\u05e1\u05de\u05d0", "TabLibraryAccess": "\u05d2\u05d9\u05e9\u05d4 \u05dc\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea", "TabAccess": "\u05d2\u05d9\u05e9\u05d4", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "\u05d4\u05e6\u05d2 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05e1\u05e8\u05d9\u05dd \u05d1\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05e0\u05d5\u05ea", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "\u05d4\u05e6\u05d2 \u05e4\u05e8\u05e7\u05d9\u05dd \u05e9\u05e2\u05d3\u05d9\u05df \u05d0\u05dc \u05e9\u05d5\u05d3\u05e8\u05d5 \u05d1\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05e0\u05d5\u05ea", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05d9\u05d2\u05d5\u05df", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d9\u05d2\u05d5\u05df", "LabelAudioLanguagePreference": "\u05e9\u05e4\u05ea \u05e7\u05d5\u05dc \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:", "LabelSubtitleLanguagePreference": "\u05e9\u05e4\u05ea \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "\u05de\u05d5\u05de\u05dc\u05e5 \u05d9\u05d7\u05e1 \u05d2\u05d5\u05d1\u05d4 \u05e9\u05dc 1:1. \u05e8\u05e7 JPG\/PNG.", "MessageNothingHere": "\u05d0\u05d9\u05df \u05db\u05d0\u05df \u05db\u05dc\u05d5\u05dd.", "MessagePleaseEnsureInternetMetadata": "\u05d1\u05d1\u05e7\u05e9\u05d4 \u05d5\u05d5\u05d3\u05d0 \u05db\u05d9 \u05d4\u05d5\u05e8\u05d3\u05ea \u05de\u05d9\u05d3\u05e2 \u05de\u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05de\u05d0\u05d5\u05e4\u05e9\u05e8\u05ea", - "TabSuggested": "\u05de\u05de\u05d5\u05dc\u05e5", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "\u05d0\u05d7\u05e8\u05d5\u05df", "TabUpcoming": "\u05d1\u05e7\u05e8\u05d5\u05d1", "TabShows": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea", "TabEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd", "TabGenres": "\u05d6\u05d0\u05e0\u05e8\u05d9\u05dd", - "TabPeople": "\u05d0\u05e0\u05e9\u05d9\u05dd", "TabNetworks": "\u05e8\u05e9\u05ea\u05d5\u05ea", "HeaderUsers": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "\u05db\u05d5\u05ea\u05d1\u05d9\u05dd", "OptionProducers": "\u05de\u05e4\u05d9\u05e7\u05d9\u05dd", "HeaderResume": "\u05d4\u05de\u05e9\u05da", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "\u05d4\u05d1\u05d0 \u05d1\u05ea\u05d5\u05e8", "NoNextUpItemsMessage": "\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0 \u05db\u05dc\u05d5\u05dd. \u05d4\u05ea\u05d7\u05dc\u05ea \u05dc\u05e6\u05e4\u05d5\u05ea \u05d1\u05e1\u05d3\u05e8\u05d5\u05ea \u05e9\u05dc\u05da!", "HeaderLatestEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", @@ -185,6 +173,7 @@ "OptionPlayCount": "\u05de\u05e1\u05e4\u05e8 \u05d4\u05e9\u05de\u05e2\u05d5\u05ea", "OptionDatePlayed": "\u05ea\u05d0\u05e8\u05d9\u05da \u05e0\u05d9\u05d2\u05d5\u05df", "OptionDateAdded": "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "\u05d0\u05de\u05df \u05d0\u05dc\u05d1\u05d5\u05dd", "OptionArtist": "\u05d0\u05de\u05df", "OptionAlbum": "\u05d0\u05dc\u05d1\u05d5\u05dd", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "\u05e7\u05e6\u05ea \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5", "OptionResumable": "\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05de\u05e9\u05d9\u05da", "ScheduledTasksHelp": "\u05dc\u05d7\u05e5 \u05e2\u05dc \u05de\u05e9\u05d9\u05de\u05d4 \u05dc\u05e2\u05e8\u05d5\u05da \u05d0\u05ea \u05d4\u05ea\u05d6\u05de\u05d5\u05df \u05e9\u05dc\u05d4", - "ScheduledTasksTitle": "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea", "TabMyPlugins": "\u05d4\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05e9\u05dc\u05d9", "TabCatalog": "\u05e7\u05d8\u05dc\u05d5\u05d2", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u05e9\u05d9\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", "HeaderRecentlyPlayed": "\u05e0\u05d5\u05d2\u05e0\u05d5 \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4", "HeaderFrequentlyPlayed": "\u05e0\u05d5\u05d2\u05e0\u05d5 \u05dc\u05e8\u05d5\u05d1", - "DevBuildWarning": "\u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05de\u05e4\u05ea\u05d7 \u05d4\u05df \u05d7\u05d5\u05d3 \u05d4\u05d7\u05e0\u05d9\u05ea. \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05d0\u05dc\u05d4 \u05dc\u05d0 \u05e0\u05d1\u05d3\u05e7\u05d5 \u05d5\u05d4\u05df \u05de\u05e9\u05d5\u05d7\u05e8\u05e8\u05d5\u05ea \u05d1\u05de\u05d4\u05d9\u05e8\u05d5\u05ea. \u05d4\u05ea\u05d5\u05db\u05e0\u05d4 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05e7\u05e8\u05d5\u05e1 \u05d5\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05e1\u05d5\u05d9\u05d9\u05de\u05d9\u05dd \u05e2\u05dc\u05d5\u05dc\u05d9\u05dd \u05db\u05dc\u05dc \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3.", "LabelVideoType": "\u05d2\u05d5\u05d3 \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5:", "OptionBluray": "\u05d1\u05dc\u05d5-\u05e8\u05d9\u05d9", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "\u05d1\u05d8\u05dc \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4", "OptionDisableUserHelp": "\u05d0\u05dd \u05de\u05d1\u05d5\u05d8\u05dc, \u05d4\u05e9\u05e8\u05ea \u05e9\u05dc\u05d0 \u05d9\u05d0\u05e4\u05e9\u05e8 \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05de\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4. \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd \u05d9\u05d1\u05d5\u05d8\u05dc\u05d5 \u05de\u05d9\u05d9\u05d3.", - "HeaderAdvancedControl": "\u05e9\u05dc\u05d9\u05d8\u05d4 \u05de\u05ea\u05e7\u05d3\u05de\u05d5\u05ea", "LabelName": "\u05e9\u05dd:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05e0\u05d4\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "\u05d0\u05e4\u05e9\u05e8 \u05e9\u05d9\u05ea\u05d5\u05e3 \u05d1\u05e8\u05e9\u05ea\u05d5\u05ea \u05d7\u05d1\u05e8\u05ea\u05d9\u05d5\u05ea", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "\u05e9\u05d9\u05ea\u05d5\u05e3", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "\u05d7\u05d6\u05e8 \u05de\u05d6\u05d4\u05d4 Tmdb", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd", "TabServer": "\u05e9\u05e8\u05ea", "TabTranscoding": "\u05e7\u05d9\u05d3\u05d5\u05d3", - "TitleAdvanced": "\u05de\u05ea\u05e7\u05d3\u05dd", "OptionRelease": "\u05e9\u05d9\u05d7\u05e8\u05d5\u05e8 \u05e8\u05e9\u05de\u05d9", - "OptionBeta": "\u05d1\u05d8\u05d0", - "OptionDev": "\u05de\u05e4\u05ea\u05d7 (\u05dc\u05d0 \u05d9\u05e6\u05d9\u05d1)", "LabelAllowServerAutoRestart": "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05e9\u05e8\u05ea \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d3\u05d9 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d0\u05ea \u05d4\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd", "LabelAllowServerAutoRestartHelp": "\u05d4\u05e9\u05e8\u05ea \u05d9\u05ea\u05d7\u05d9\u05dc \u05de\u05d7\u05d3\u05e9 \u05e8\u05e7 \u05db\u05e9\u05d0\u05e8 \u05d0\u05d9\u05df \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd", "LabelRunServerAtStartup": "\u05d4\u05ea\u05d7\u05dc \u05e9\u05e8\u05ea \u05d1\u05d4\u05e4\u05e2\u05dc\u05ea \u05d4\u05de\u05d7\u05e9\u05d1", @@ -330,11 +312,9 @@ "TabGames": "\u05de\u05e9\u05d7\u05e7\u05d9\u05dd", "TabMusic": "\u05de\u05d5\u05e1\u05d9\u05e7\u05d4", "TabOthers": "\u05d0\u05d7\u05e8\u05d9\u05dd", - "HeaderExtractChapterImagesFor": "\u05d7\u05dc\u05e5 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e4\u05e8\u05e7\u05d9\u05dd \u05dc:", "OptionMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "OptionEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd", "OptionOtherVideos": "\u05e7\u05d8\u05e2\u05d9 \u05d5\u05d5\u05d9\u05d3\u05d9\u05d0\u05d5 \u05d0\u05d7\u05e8\u05d9\u05dd", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd", "TabRecordings": "\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea", - "TabScheduled": "\u05dc\u05d5\u05d7 \u05d6\u05de\u05e0\u05d9\u05dd", "TabSeries": "\u05e1\u05d3\u05e8\u05d5\u05ea", "TabFavorites": "Favorites", "TabMyLibrary": "\u05d4\u05e1\u05e4\u05e8\u05d9\u05d4 \u05e9\u05dc\u05d9", "ButtonCancelRecording": "\u05d1\u05d8\u05dc \u05d4\u05e7\u05dc\u05d8\u05d4", - "LabelPrePaddingMinutes": "\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd:", - "LabelPostPaddingMinutes": "\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05d0\u05d5\u05d7\u05e8:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "\u05de\u05d4 \u05de\u05e9\u05d5\u05d3\u05e8", - "TabStatus": "\u05de\u05e6\u05d1", "TabSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea", "ButtonRefreshGuideData": "\u05e8\u05e2\u05e0\u05df \u05d0\u05ea \u05de\u05d3\u05e8\u05d9\u05da \u05d4\u05e9\u05d9\u05d3\u05d5\u05e8", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "\u05d4\u05e7\u05dc\u05d8 \u05d1\u05db\u05dc \u05d4\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "\u05d4\u05e7\u05dc\u05d8 \u05e8\u05e7 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "\u05d9\u05de\u05d9\u05dd", "HeaderActiveRecordings": "\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea", "HeaderLatestRecordings": "\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u05de\u05e9\u05d7\u05e7\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", "HeaderRecentlyPlayedGames": "\u05de\u05e9\u05d7\u05e7\u05d9\u05dd \u05e9\u05e9\u05d5\u05d7\u05e7\u05d5 \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4", "TabGameSystems": "\u05e7\u05d5\u05e0\u05e1\u05d5\u05dc\u05d5\u05ea \u05de\u05e9\u05d7\u05e7", - "TitleMediaLibrary": "\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4", "TabFolders": "\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea", "TabPathSubstitution": "\u05e0\u05ea\u05d9\u05d1 \u05ea\u05d7\u05dc\u05d5\u05e4\u05d9", "LabelSeasonZeroDisplayName": "\u05e9\u05dd \u05d4\u05e6\u05d2\u05d4 \u05ea\u05e2\u05d5\u05e0\u05d4 0", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "\u05e4\u05e6\u05dc \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05d1\u05e0\u05e4\u05e8\u05d3", "ButtonPlayTrailer": "Trailer", "LabelMissing": "\u05d7\u05e1\u05e8", - "LabelOffline": "\u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05df", - "PathSubstitutionHelp": "\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d7\u05dc\u05d5\u05e4\u05d9\u05d9\u05dd \u05d4\u05dd \u05dc\u05e6\u05d5\u05e8\u05da \u05de\u05d9\u05e4\u05d5\u05d9 \u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d1\u05e9\u05e8\u05ea \u05dc\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05e9\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05d2\u05e9\u05ea \u05d0\u05dc\u05d9\u05d4\u05dd. \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d4\u05e8\u05e9\u05d0\u05d4 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d2\u05d9\u05e9\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d4 \u05dc\u05de\u05d3\u05d9\u05d4 \u05d1\u05e9\u05e8\u05ea \u05d0\u05dd \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05e0\u05d2\u05df \u05d0\u05ea \u05d4\u05e7\u05d1\u05e6\u05d9\u05dd \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05e2\u05dc \u05d2\u05d1\u05d9 \u05d4\u05e8\u05e9\u05ea \u05d5\u05dc\u05d4\u05d9\u05de\u05e0\u05e2 \u05de\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05de\u05e9\u05d0\u05d1\u05d9 \u05d4\u05e9\u05e8\u05ea \u05dc\u05e6\u05d5\u05e8\u05da \u05e7\u05d9\u05d3\u05d5\u05d3 \u05d5\u05e9\u05d9\u05d3\u05d5\u05e8.", - "HeaderFrom": "\u05de-", - "HeaderTo": "\u05dc-", - "LabelFrom": "\u05de:", - "LabelTo": "\u05dc:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "\u05d4\u05d5\u05e1\u05e3 \u05e0\u05ea\u05d9\u05d1 \u05d7\u05dc\u05d5\u05e4\u05d9", "OptionSpecialEpisode": "\u05e1\u05e4\u05d9\u05d9\u05e9\u05dc\u05d9\u05dd", "OptionMissingEpisode": "\u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05e1\u05e8\u05d9\u05dd", "OptionUnairedEpisode": "\u05e4\u05e8\u05e7\u05d9\u05dd \u05e9\u05dc\u05d0 \u05e9\u05d5\u05d3\u05e8\u05d5", "OptionEpisodeSortName": "\u05de\u05d9\u05d5\u05df \u05e9\u05de\u05d5\u05ea \u05e4\u05e8\u05e7\u05d9\u05dd", "OptionSeriesSortName": "\u05e9\u05dd \u05e1\u05d3\u05e8\u05d5\u05ea", "OptionTvdbRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 Tvdb", - "EditCollectionItemsHelp": "\u05d4\u05d5\u05e1\u05e3 \u05d0\u05d5 \u05d4\u05e1\u05e8 \u05db\u05dc \u05e1\u05e8\u05d8, \u05e1\u05d3\u05e8\u05d4, \u05d0\u05dc\u05d1\u05d5\u05dd, \u05e1\u05e4\u05e8 \u05d0\u05d5 \u05de\u05e9\u05d7\u05e7 \u05e9\u05d0\u05ea\u05d4 \u05de\u05e2\u05d5\u05e0\u05d9\u05d9\u05df \u05dc\u05e7\u05d1\u05e5 \u05dc\u05d0\u05d5\u05e1\u05e3 \u05d4\u05d6\u05d4.", "HeaderAddTitles": "\u05d4\u05d5\u05e1\u05e3 \u05db\u05d5\u05ea\u05e8", "LabelEnableDlnaPlayTo": "\u05de\u05d0\u05e4\u05e9\u05e8 \u05e0\u05d9\u05d2\u05d5\u05df DLNA \u05dc", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9 \u05de\u05e2\u05e8\u05db\u05ea", "CustomDlnaProfilesHelp": "\u05e6\u05d5\u05e8 \u05e4\u05e8\u05d5\u05e4\u05d9\u05dc \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea \u05dc\u05de\u05db\u05e9\u05d9\u05e8 \u05d7\u05d3\u05e9 \u05d0\u05d5 \u05dc\u05e2\u05e7\u05d5\u05e3 \u05e4\u05e8\u05d5\u05e4\u05d9\u05dc \u05de\u05e2\u05e8\u05db\u05ea", "SystemDlnaProfilesHelp": "\u05e4\u05e8\u05d5\u05e4\u05dc\u05d9 \u05de\u05e2\u05e8\u05db\u05ea \u05d4\u05dd \u05dc\u05e7\u05e8\u05d9\u05d0\u05d4 \u05d1\u05dc\u05d1\u05d3. \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9 \u05de\u05e2\u05e8\u05db\u05ea \u05d9\u05e9\u05de\u05e8\u05d5 \u05dc\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc \u05de\u05d5\u05e6\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea \u05d7\u05d3\u05e9.", - "TitleDashboard": "\u05dc\u05d5\u05d7 \u05d1\u05e7\u05e8\u05d4", "TabHome": "\u05d1\u05d9\u05ea", "TabInfo": "\u05de\u05d9\u05d3\u05e2", "HeaderLinks": "\u05dc\u05d9\u05e0\u05e7\u05d9\u05dd", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "\u05db\u05d5\u05ea\u05e8\u05d9\u05dd \u05d9\u05d5\u05e6\u05d2\u05d5 \u05db\u05dc\u05d0 \u05e0\u05d5\u05d2\u05e0\u05d5 \u05d0\u05dd \u05e0\u05e6\u05e8\u05d5 \u05dc\u05e4\u05e0\u05d9 \u05d4\u05d6\u05de\u05df \u05d4\u05d6\u05d4", "LabelMaxResumePercentageHelp": "\u05e7\u05d5\u05d1\u05e5 \u05de\u05d5\u05d2\u05d3\u05e8 \u05db\u05e0\u05d5\u05d2\u05df \u05d1\u05de\u05dc\u05d5\u05d0\u05d5 \u05d0\u05dd \u05e0\u05e2\u05e6\u05e8 \u05d0\u05d7\u05e8\u05d9 \u05d4\u05d6\u05de\u05df \u05d4\u05d6\u05d4", "LabelMinResumeDurationHelp": "\u05e7\u05d5\u05d1\u05e5 \u05e7\u05e6\u05e8 \u05de\u05d6\u05d4 \u05dc\u05d0 \u05d9\u05d4\u05d9\u05d4 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05de\u05e9\u05da \u05e0\u05d9\u05d2\u05d5\u05df \u05de\u05e0\u05e7\u05d5\u05d3\u05ea \u05d4\u05e2\u05e6\u05d9\u05e8\u05d4", - "TitleAutoOrganize": "\u05d0\u05e8\u05d2\u05d5\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9", "TabActivityLog": "\u05e8\u05d9\u05e9\u05d5\u05dd \u05e4\u05e2\u05d5\u05dc\u05d5\u05ea", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "\u05d0\u05e8\u05d2\u05d5\u05df \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9 \u05de\u05e0\u05d8\u05e8 \u05d0\u05ea \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05d4\u05d5\u05e8\u05d3\u05d5\u05ea \u05e9\u05dc\u05da \u05d5\u05de\u05d7\u05e4\u05e9 \u05e7\u05d1\u05e6\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd, \u05d5\u05d0\u05d6 \u05de\u05e2\u05d1\u05d9\u05e8 \u05d0\u05d5\u05ea\u05dd \u05dc\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da.", - "AutoOrganizeTvHelp": "\u05de\u05e0\u05d4\u05dc \u05e7\u05d1\u05e6\u05d9 \u05d4\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d9\u05d5\u05e1\u05d9\u05e3 \u05e4\u05e8\u05e7\u05d9\u05dd \u05e8\u05e7 \u05dc\u05e1\u05d3\u05e8\u05d5\u05ea \u05e7\u05d9\u05d9\u05de\u05d5\u05ea, \u05d4\u05d5\u05d0 \u05dc\u05d0 \u05d9\u05d9\u05e6\u05d5\u05e8 \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05dc\u05e1\u05d3\u05e8\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea.", "OptionEnableEpisodeOrganization": "\u05d0\u05e4\u05e9\u05e8 \u05e1\u05d9\u05d3\u05d5\u05e8 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd", "LabelWatchFolder": "\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea \u05dc\u05de\u05e2\u05e7\u05d1:", "LabelWatchFolderHelp": "\u05d4\u05e9\u05e8\u05ea \u05d9\u05de\u05e9\u05d5\u05da \u05ea\u05d9\u05e7\u05d9\u05d9\u05d4 \u05d6\u05d5 \u05d1\u05d6\u05de\u05df \u05d4\u05e4\u05e2\u05dc\u05ea \u05d4\u05de\u05e9\u05d9\u05de\u05d4 \u05d4\u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \"\u05d0\u05e8\u05d2\u05df \u05e7\u05d1\u05e6\u05d9 \u05de\u05d3\u05d9\u05d4 \u05d7\u05d3\u05e9\u05d9\u05dd\".", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e8\u05e6\u05d5\u05ea", "HeaderActiveDevices": "\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd", "HeaderPendingInstallations": "\u05d4\u05ea\u05e7\u05e0\u05d5\u05ea \u05d1\u05d4\u05de\u05ea\u05e0\u05d4", - "HeaderServerInformation": "\u05de\u05d9\u05d3\u05e2 \u05e2\u05dc \u05d4\u05e9\u05e8\u05ea", "ButtonRestartNow": "\u05d4\u05ea\u05d7\u05dc \u05de\u05d7\u05d3\u05e9 \u05db\u05e2\u05d8", "ButtonRestart": "\u05d4\u05ea\u05d7\u05e8 \u05de\u05d7\u05d3\u05e9", "ButtonShutdown": "\u05db\u05d1\u05d4", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05ea\u05e6\u05d5\u05d2\u05d4", - "TabPlayTo": "\u05e0\u05d2\u05df \u05d1", "LabelEnableDlnaServer": "\u05d0\u05e4\u05e9\u05e8 \u05e9\u05e8\u05ea Dina", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "\u05d4\u05d5\u05d3\u05e2\u05d5\u05ea \u05d3\u05d7\u05d9\u05e4\u05d4", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "\u05de\u05d2\u05d3\u05d9\u05e8 \u05d0\u05ea \u05de\u05e9\u05da \u05d4\u05d6\u05de\u05df \u05d1\u05e9\u05e0\u05d9\u05d5\u05ea \u05d1\u05d9\u05df \u05d4\u05d5\u05d3\u05e2\u05d5\u05ea \u05d3\u05d7\u05d9\u05e4\u05d4 \u05e9\u05dc \u05d4\u05e9\u05e8\u05ea.", "LabelDefaultUser": "\u05de\u05e9\u05ea\u05de\u05e9 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05e9:", "LabelDefaultUserHelp": "\u05de\u05d2\u05d3\u05d9\u05e8 \u05d0\u05d9\u05dc\u05d5 \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05de\u05e9\u05ea\u05de\u05e9 \u05d9\u05d5\u05e6\u05d2\u05d5 \u05d1\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd. \u05e0\u05d9\u05ea\u05df \u05dc\u05e2\u05e7\u05d5\u05e3 \u05d6\u05d0\u05ea \u05dc\u05db\u05dc \u05de\u05db\u05e9\u05d9\u05e8 \u05e2\u05dc \u05d9\u05d3\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9\u05dd.", - "TitleDlna": "DLNA", "HeaderServerSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e9\u05e8\u05ea", "HeaderRequireManualLogin": "\u05d3\u05e8\u05d5\u05e9 \u05d4\u05db\u05e0\u05e1\u05ea \u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9 \u05d1\u05d0\u05d5\u05e4\u05df \u05d9\u05d3\u05e0\u05d9 \u05e2\u05d1\u05d5\u05e8:", "HeaderRequireManualLoginHelp": "\u05db\u05d0\u05e9\u05e8 \u05de\u05d1\u05d5\u05d8\u05dc, \u05d9\u05d5\u05e6\u05d2 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05d5\u05d7 \u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea \u05e2\u05dd \u05d1\u05d7\u05d9\u05e8\u05ea \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd.", "OptionOtherApps": "\u05ea\u05d5\u05db\u05e0\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05ea", "OptionMobileApps": "\u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05dc\u05e0\u05d9\u05d9\u05d3", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "\u05e2\u05d3\u05db\u05d5\u05df \u05ea\u05d5\u05db\u05de\u05d4 \u05e7\u05d9\u05d9\u05dd", - "NotificationOptionApplicationUpdateInstalled": "\u05e2\u05d3\u05db\u05d5\u05df \u05ea\u05d5\u05db\u05e0\u05d4 \u05d4\u05d5\u05ea\u05e7\u05df", - "NotificationOptionPluginUpdateInstalled": "\u05e2\u05d3\u05db\u05d5\u05df \u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05ea\u05e7\u05df", - "NotificationOptionPluginInstalled": "\u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05ea\u05e7\u05df", - "NotificationOptionPluginUninstalled": "\u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05e1\u05e8", - "NotificationOptionVideoPlayback": "\u05e0\u05d2\u05d9\u05e0\u05ea \u05d5\u05d9\u05d3\u05d0\u05d5 \u05d4\u05d7\u05dc\u05d4", - "NotificationOptionAudioPlayback": "\u05e0\u05d2\u05d9\u05e0\u05ea \u05e6\u05dc\u05d9\u05dc \u05d4\u05d7\u05dc\u05d4", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "\u05e0\u05d2\u05d9\u05e0\u05ea \u05d5\u05d9\u05d3\u05d0\u05d5 \u05d4\u05d5\u05e4\u05e1\u05e7\u05d4", - "NotificationOptionAudioPlaybackStopped": "\u05e0\u05d2\u05d9\u05e0\u05ea \u05e6\u05dc\u05d9\u05dc \u05d4\u05d5\u05e4\u05e1\u05e7\u05d4", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \u05e0\u05db\u05e9\u05dc\u05d4", - "NotificationOptionInstallationFailed": "\u05d4\u05ea\u05e7\u05e0\u05d4 \u05e0\u05db\u05e9\u05dc\u05d4", - "NotificationOptionNewLibraryContent": "\u05ea\u05d5\u05db\u05df \u05d7\u05d3\u05e9 \u05e0\u05d5\u05e1\u05e3", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "\u05e0\u05d3\u05e8\u05e9\u05ea \u05d4\u05e4\u05e2\u05dc\u05d4 \u05de\u05d7\u05d3\u05e9 \u05e9\u05dc \u05d4\u05e9\u05e8\u05ea", "LabelNotificationEnabled": "\u05d0\u05e4\u05e9\u05e8 \u05d4\u05ea\u05e8\u05d0\u05d4 \u05d6\u05d5", "LabelMonitorUsers": "\u05e2\u05e7\u05d5\u05d1 \u05d0\u05d7\u05e8 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05de:", "LabelSendNotificationToUsers": "\u05e9\u05dc\u05d7 \u05d0\u05ea \u05d4\u05d4\u05ea\u05e8\u05d0\u05d4 \u05dc:", @@ -662,12 +606,10 @@ "ButtonPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "\u05ea\u05e7\u05dc\u05d4 \u05d1\u05ea\u05d5\u05e1\u05e3", "ButtonVolumeUp": "\u05d4\u05e8\u05dd \u05e2\u05d5\u05e6\u05de\u05ea \u05e9\u05de\u05e2", "ButtonVolumeDown": "\u05d4\u05d5\u05e8\u05d3 \u05e2\u05d5\u05e6\u05de\u05ea \u05e9\u05de\u05e2", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "\u05dc\u05dc\u05d0 \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "\u05d0\u05d5\u05e1\u05e4\u05d9\u05dd", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", "ViewTypeTvShows": "\u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "\u05d4\u05d5\u05e8\u05d3 \u05de\u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05de\u05d9\u05d3\u05e2 \u05e2\u05dc", "OptionTVMovies": "\u05e1\u05e8\u05d8\u05d9 \u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", "HeaderUpcomingMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05e2\u05ea\u05d9\u05d3\u05d9\u05d9\u05dd", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", "Delete": "\u05de\u05d7\u05e7", "Password": "\u05e1\u05d9\u05e1\u05de\u05d0", "DeleteImage": "\u05de\u05d7\u05e7 \u05ea\u05de\u05d5\u05e0\u05d4", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05de\u05d7\u05d5\u05e7 \u05ea\u05de\u05d5\u05e0\u05d4 \u05d6\u05d5?", "FileReadCancelled": "\u05e7\u05e8\u05d9\u05d0\u05ea \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d1\u05d5\u05d8\u05dc\u05d4.", "FileNotFound": "\u05e7\u05d5\u05d1\u05e5 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "\u05db\u05d1\u05d5\u05d9", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4", "HeaderSeries": "\u05e1\u05d3\u05e8\u05d4", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "\u05e0\u05d4\u05dc \u05e9\u05e8\u05ea", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05de\u05d5\u05e7\u05dc\u05d8\u05d5\u05ea", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "\u05db\u05df", "AddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9", "ButtonNo": "\u05dc\u05d0", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "\u05d0\u05e0\u05d0 \u05d4\u05db\u05e0\u05e1 \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\"\u05dc \u05e9\u05dc\u05da", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "\u05ea\u05e0\u05d0\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "\u05d0\u05e9\u05e8 \u05d4\u05ea\u05e7\u05e0\u05ea \u05ea\u05d5\u05e1\u05e3", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/hr.json b/dashboard-ui/strings/hr.json index 24c4cc9915..40ffefa4ed 100644 --- a/dashboard-ui/strings/hr.json +++ b/dashboard-ui/strings/hr.json @@ -1,8 +1,6 @@ { - "LabelExit": "Izlaz", - "LabelApiDocumentation": "Api dokumentacija", - "LabelBrowseLibrary": "Pregledaj biblioteku", - "LabelConfigureServer": "Podesi Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Prethodni", "LabelFinish": "Kraj", "LabelNext": "Sljede\u0107i", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Ime:", "MoreUsersCanBeAddedLater": "Vi\u0161e korisnika mo\u017eete dodati naknadno preko nadzorne plo\u010de.", "UserProfilesIntro": "Emby uklju\u010duje ugra\u0111enu podr\u0161ku za korisni\u010dke profile \u0161to omogu\u0107uje svakom korisniku da ima svoje vlastite postavke prikaza, PlayStation i roditeljski nadzor.", - "LabelWindowsService": "Windows servis", - "AWindowsServiceHasBeenInstalled": "Windows servis je instaliran.", - "WindowsServiceIntro1": "Emby Server normalno radi kao desktop aplikacija sa ikonom u sistemskoj traci, ali ako ga \u017eelite pokrenuti kao pozadinsku uslugu mo\u017ee se pokrenuti s upravlja\u010dke plo\u010de Windows pozadinskih servisa.", - "WindowsServiceIntro2": "Ako koristite Windows servis, znajte da se ne mo\u017ee izvoditi u isto vrijeme kao sistemska ikona, tako da morate iza\u0107i iz sistemske trake kako bi ga pokrenuli kao servis. Servis \u0107e tako\u0111er morati biti pode\u0161en s administrativnim ovlastima putem upravlja\u010dke plo\u010de. Kada se izvodi kao servis, morati \u0107ete osigurati da servisni login ima pristup va\u0161im medijskim mapama.", "WizardCompleted": "To je sve \u0161to nam treba za sada. Emby je po\u010deo prikupljati podatke o va\u0161oj medijskoj knji\u017enici. Provjerite neke od na\u0161ih aplikacija, a zatim kliknite na Zavr\u0161i<\/b> za prikaz Serverske kontrolne plo\u010de<\/b>.", "LabelConfigureSettings": "Konfiguracija postavki", - "LabelEnableAutomaticPortMapping": "Omogu\u0107i automatsko mapiranje porta", - "LabelEnableAutomaticPortMappingHelp": "UPnP omogu\u0107uje automatsku konfiguraciju usmjeriva\u010da (router \/ modem) za lak\u0161i pristup na daljinu. Ovo mo\u017eda ne\u0107e raditi sa nekim modelima usmjeriva\u010da.", "HeaderTermsOfService": "Emby Uvjeti kori\u0161tenja", "MessagePleaseAcceptTermsOfService": "Molimo prihvatite uvjete kori\u0161tenja i pravila o privatnosti prije nego \u0161to nastavite.", "OptionIAcceptTermsOfService": "Prihva\u0107am uvjete kori\u0161tenja", "ButtonPrivacyPolicy": "Pravila o privatnosti", "ButtonTermsOfService": "Uvjeti kori\u0161tenja", - "HeaderDeveloperOptions": "Razvojne opcije", - "OptionEnableWebClientResponseCache": "Omogu\u0107i web response caching", - "OptionDisableForDevelopmentHelp": "Podesi to kako je potrebno za potrebe web razvoja.", - "OptionEnableWebClientResourceMinification": "Omogu\u0107i reduciranje web resursa", - "LabelDashboardSourcePath": "Izvorna putanja web klijenta:", - "LabelDashboardSourcePathHelp": "Ako pokre\u0107ete poslu\u017eitelja iz izvora, odredite put do mape nadzorne plo\u010de korisni\u010dkog su\u010delja. Sve web klijentske datoteke biti \u0107e poslu\u017eene s ove lokacije.", "ButtonConvertMedia": "Pretvori medij", "ButtonOrganize": "Organiziraj", "HeaderSupporterBenefits": "Prednosti Emby premijere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Za dodavanje korisnika koji nije na popisu, morat \u0107ete najprije povezati njihov ra\u010dun na \"Emby Connect\" iz njihovog korisni\u010dkog profila.", "LabelPinCode": "PIN:", "OptionHideWatchedContentFromLatestMedia": "Sakrij pregledani sadr\u017eaj iz najnovijih medija", + "DeleteMedia": "Delete media", "HeaderSync": "Sink.", "ButtonOk": "U redu", "ButtonCancel": "Odustani", "ButtonExit": "Izlaz", "ButtonNew": "Novo", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Okida\u010di zadataka", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Molimo unesite svoj lagan PIN kako biste pristupili", "ButtonConfigurePinCode": "Podesi PIN kod", "RegisterWithPayPal": "Registracija sa PayPal-om", - "HeaderEnjoyDayTrial": "U\u017eivajte u 14 dana besplatne probe", "LabelSyncTempPath": "Privremena putanja datoteka:", "LabelSyncTempPathHelp": "Odredite prilago\u0111eni sinkronizacijski radni direktorij. Pretvoren medij stvorene tijekom postupka sinkronizacije biti \u0107e pohranjen ovdje.", "LabelCustomCertificatePath": "Prilago\u0111en put certifikata:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Ako je omogu\u0107eno, datoteke s .rar i .zip pro\u0161irenjima biti \u0107e prepoznate kao medijske datoteke.", "LabelEnterConnectUserName": "Korisni\u010dko ime ili email:", "LabelEnterConnectUserNameHelp": "Ovo je va\u0161e korisni\u010dko ime ili email Emby online ra\u010duna.", - "LabelEnableEnhancedMovies": "Omogu\u0107i pobolj\u0161an filmski prikaz", - "LabelEnableEnhancedMoviesHelp": "Kada je omogu\u0107eno, filmovi \u0107e se prikazati kao mape uklju\u010duju\u0107i kratke filmove, dodatke, glumce i tim i druge povezane sadr\u017eaje.", "HeaderSyncJobInfo": "Sink. posao", "FolderTypeMixed": "Mije\u0161ani sadr\u017eaj", "FolderTypeMovies": "Filmovi", @@ -84,7 +70,6 @@ "LabelContentType": "Tip sadr\u017eaja:", "TitleScheduledTasks": "Zakazani zadaci", "HeaderSetupLibrary": "Postavite va\u0161e medijske biblioteke", - "ButtonAddMediaFolder": "Dodaj mapu sa medijem", "LabelFolderType": "Tip mape:", "LabelCountry": "Zemlja:", "LabelLanguage": "Jezik:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Snimljene ilustracije i metadata u medijskim mapama \u0107e biti postavljene na lokaciju gdje \u0107e se mo\u0107i jednostavno mjenjati.", "LabelDownloadInternetMetadata": "Preuzmi ilustracije i metadata (opise) sa interneta", "LabelDownloadInternetMetadataHelp": "Emby Server mo\u017ee preuzeti informacije o Va\u0161im medijima i omogu\u0107iti bogate prezentacije.", - "TabPreferences": "Postavke", "TabPassword": "Lozinka", "TabLibraryAccess": "Pristup biblioteci", "TabAccess": "Pristup", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Omogu\u0107i pristup svim bibliotekama", "DeviceAccessHelp": "To se odnosi samo na ure\u0111aje koji se mogu jedinstveno identificirati i ne\u0107e sprije\u010diti pristup preglednika. Filtriranje pristupa korisni\u010dkim ure\u0111ajima sprije\u010diti \u0107e ih u kori\u0161tenju novih ure\u0111aja sve dok nisu ovdje odobreni.", "LabelDisplayMissingEpisodesWithinSeasons": "Prika\u017ei epizode koje nedostaju unutar sezone", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Prika\u017ei epizode koje nisu emitirane unutar sezone", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Postavke video reprodukcije", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Postavke reprodukcije", "LabelAudioLanguagePreference": "Postavke audio jezika:", "LabelSubtitleLanguagePreference": "Postavke jezika titlova prijevoda", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Omjer, preporu\u010damo. Samo JPG\/PNG.", "MessageNothingHere": "Ni\u0161ta ovdje.", "MessagePleaseEnsureInternetMetadata": "Molimo provjerite da je preuzimanje metadata sa interneta omogu\u0107eno.", - "TabSuggested": "Preporu\u010deno", + "AlreadyPaidHelp1": "Ako ste ve\u0107 platili instalaciju starije verzije Media Browser-a za Android, ne morate ponovno platiti kako bi se aktivirali ove aplikacije. Kliknite U redu da nam po\u0161aljete e-mail na {0}, a mi \u0107emo ga aktivirati.", + "AlreadyPaidHelp2": "Ima\u0161 Emby Premijeru? Otka\u017eite ovaj dijalog, postavite Emby Premijeru u svojoj nadzornoj plo\u010di Emby Server-a pod Pomo\u0107 -> Emby Premijera i biti \u0107e automatski otklju\u010dana.", "TabSuggestions": "Prijedlozi", "TabLatest": "Zadnje", "TabUpcoming": "Uskoro", "TabShows": "Emisije", "TabEpisodes": "Epizode", "TabGenres": "\u017danrovi", - "TabPeople": "Ljudi", "TabNetworks": "Mre\u017ee", "HeaderUsers": "Korisnici", "HeaderFilters": "Filtri", @@ -166,6 +153,7 @@ "OptionWriters": "Pisci", "OptionProducers": "Producenti", "HeaderResume": "Nastavi", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Sljede\u0107e je", "NoNextUpItemsMessage": "Nije prona\u0111eno. Krenite sa gledanjem va\u0161e emisije!", "HeaderLatestEpisodes": "Zadnje epizode", @@ -185,6 +173,7 @@ "OptionPlayCount": "Broju izvo\u0111enja", "OptionDatePlayed": "Datumu izvo\u0111enja", "OptionDateAdded": "Datumu dodavanja", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Albumu izvo\u0111a\u010da", "OptionArtist": "Izvo\u0111a\u010du", "OptionAlbum": "Albumu", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Brzina prijenosa videa", "OptionResumable": "Nastavi", "ScheduledTasksHelp": "Klini na zadatak za pode\u0161avanje raporeda.", - "ScheduledTasksTitle": "Raspored zadataka", "TabMyPlugins": "Moji dodaci", "TabCatalog": "Katalog", "TitlePlugins": "Dodaci", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Zadnje pjesme", "HeaderRecentlyPlayed": "Zadnje izvo\u0111eno", "HeaderFrequentlyPlayed": "\u010cesto izvo\u0111eno", - "DevBuildWarning": "Dev distribucije su klimave. \u010cesto se izbacuju, a nisu ni testirane. Aplikacija se mo\u017ee sru\u0161iti i mogu otkazati sve funkcije.", "LabelVideoType": "Tip Videa:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Korisno za privatne ili skrivene administratorske ra\u010dune. Korisnik \u0107e se morati prijaviti ru\u010dno unosom svojeg korisni\u010dkog imena i lozinke.", "OptionDisableUser": "Onemogu\u0107i ovog korisnika", "OptionDisableUserHelp": "Ako je onemogu\u0107en server ne\u0107e dopustiti nikakve veze od ovog korisnika. Postoje\u0107e veze \u0107e odmah biti prekinute.", - "HeaderAdvancedControl": "Napredna kontrola", "LabelName": "Ime:", "ButtonHelp": "Pomo\u0107", "OptionAllowUserToManageServer": "Dopusti ovom korisniku da upravlja serverom", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA ure\u0111aji smatraju se dijeljeni sve dok ih korisnik ne zapo\u010dne kontrolirati.", "OptionAllowLinkSharing": "Dopusti dijeljenja na dru\u0161tvenim mre\u017eama", "OptionAllowLinkSharingHelp": "Samo web stranice koje sadr\u017ee informacije medija su podijeljene. Medijske datoteke nikada nisu podijeljene javno. Dijeljenja su vremenski ograni\u010dena i iste\u0107i \u0107e nakon {0} dana.", - "HeaderSharing": "Dijeli", "HeaderRemoteControl": "Daljinsko upravljanje", "OptionMissingTmdbId": "Nedostaje Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Putanja", "TabServer": "Server", "TabTranscoding": "Konvertiranje", - "TitleAdvanced": "Napredno", "OptionRelease": "Slu\u017ebeno izdanje", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Dopusti serveru da se automatski resetira kako bi proveo nadogradnje", "LabelAllowServerAutoRestartHelp": "Server \u0107e se resetirati dok je u statusu mirovanja, odnosno kada nema aktivnih korisnika.", "LabelRunServerAtStartup": "Pokreni server pri pokretanju ra\u010dunala", @@ -330,11 +312,9 @@ "TabGames": "Igre", "TabMusic": "Glazba", "TabOthers": "Ostalo", - "HeaderExtractChapterImagesFor": "Izvadi slike poglavlja za:", "OptionMovies": "Filmovi", "OptionEpisodes": "Epizode", "OptionOtherVideos": "Ostali video", - "TitleMetadata": "Meta-podaci", "LabelFanartApiKey": "Osobni api klju\u010d:", "LabelFanartApiKeyHelp": "Zahtjev za fanart bez osobnog API klju\u010d za povratak slika koje su odobrene prije vi\u0161e od sedam dana. Uz osobni API klju\u010d to se spu\u0161ta do 48 sati, a ako ste i VIP \u010dlan fanart-a to \u0107e jo\u0161 dodatno pasti na oko 10 minuta.", "ExtractChapterImagesHelp": "Izdvajanje slika poglavlja omogu\u0107iti \u0107e Emby aplikaciji za prikaz grafi\u010dkih izbornika za odabir scena. Proces mo\u017ee biti spor, CPU intenzivno kori\u0161ten i mo\u017ee zahtijevati nekoliko gigabajta prostora. Ono se pokre\u0107e kad je otkriven video, a tako\u0111er i kao no\u0107ni zadatak. Raspored je podesiv u podru\u010dju rasporeda zadataka. Ne preporu\u010duje se za pokretanje ovog zadatka tijekom sati \u010destog kori\u0161tenja.", @@ -350,15 +330,15 @@ "TabCollections": "Kolekcije", "HeaderChannels": "Kanali", "TabRecordings": "Snimke", - "TabScheduled": "Zakazano", "TabSeries": "Serije", "TabFavorites": "Omiljeni", "TabMyLibrary": "Moja biblioteka", "ButtonCancelRecording": "Prekini snimanje", - "LabelPrePaddingMinutes": "Dodatne minute za kraj", - "LabelPostPaddingMinutes": "Dodatne minute za kraj", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "\u0160to je sad na TV-u", - "TabStatus": "Status", "TabSettings": "Postavke", "ButtonRefreshGuideData": "Osvje\u017ei TV vodi\u010d", "ButtonRefresh": "Osvije\u017ei", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Snimanje na svim kanalima", "OptionRecordAnytime": "Snimanje bilo kada", "OptionRecordOnlyNewEpisodes": "Snimi samo nove epizode", - "HeaderRepeatingOptions": "Opcije ponavljanja", "HeaderDays": "Dani", "HeaderActiveRecordings": "Aktivna snimanja", "HeaderLatestRecordings": "Zadnje snimke", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Zadnje igrice", "HeaderRecentlyPlayedGames": "Zadnje igrane igrice", "TabGameSystems": "Sistemi igrica", - "TitleMediaLibrary": "Medijska bibilioteka", "TabFolders": "Mapa", "TabPathSubstitution": "Zamjenska putanja", "LabelSeasonZeroDisplayName": "Prikaz naziva Sezona 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Razdvoji verzije", "ButtonPlayTrailer": "Kratki video", "LabelMissing": "Nedostaje", - "LabelOffline": "Nedostupno", - "PathSubstitutionHelp": "Zamjene se koriste za mapiranje putanja na serveru na putanje kojima \u0107e Emby aplikacije mo\u0107i pristupiti. Dopu\u0161taju\u0107i Emby aplikacijama direktan pristup medijima na serveru imaju mogu\u0107nost izvoditi sadr\u017eaj direktno preko mre\u017ee i tako ne iskori\u0161tavati resurse servera za konverziju i reprodukciju istih.", - "HeaderFrom": "Od", - "HeaderTo": "Za", - "LabelFrom": "Od:", - "LabelTo": "Za:", - "LabelToHelp": "Primjer: \\\\MyServer\\Movies (Putanja kojoj mogu pristupiti Emby aplikacije)", - "ButtonAddPathSubstitution": "Dodaj zamjenu", "OptionSpecialEpisode": "Specijal", "OptionMissingEpisode": "Epizode koje nedostaju", "OptionUnairedEpisode": "Ne emitirane epizode", "OptionEpisodeSortName": "Slo\u017ei epizode po", "OptionSeriesSortName": "Nazivu serijala", "OptionTvdbRating": "Ocjeni Tvdb", - "EditCollectionItemsHelp": "Dodaj ili ukloni bilo koje filmove, serije, albume, knjige ili igrice koje \u017eeli\u0161 grupirati u ovu kolekciju.", "HeaderAddTitles": "Dodaj naslove", "LabelEnableDlnaPlayTo": "Omogu\u0107i DLNA izvo\u0111enje na", "LabelEnableDlnaPlayToHelp": "Emby mo\u017ee otkriti ure\u0111aje unutar svoje mre\u017ee i ponuditi mogu\u0107nost da ih daljinski upravlja.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Sistemski profil", "CustomDlnaProfilesHelp": "Kreiraj prilago\u0111eni profili za novi ure\u0111aj ili doradi neki od sistemskih profila.", "SystemDlnaProfilesHelp": "Sistemski profili su samo za \u010ditanje. Bilo kakve izmjene na sistemskom profilu biti \u0107e snimljene kao novi prilago\u0111eni profil.", - "TitleDashboard": "Nadzorna plo\u010da", "TabHome": "Po\u010detna", "TabInfo": "Info", "HeaderLinks": "Poveznice", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Naslovi \u0107e biti ozna\u010deni kao ne reproducirani ako se zaustave prije ovog vremena", "LabelMaxResumePercentageHelp": "Naslovi \u0107e biti ozna\u010deni kao pogledani ako budu zaustavljeni nakon ovog vremena", "LabelMinResumeDurationHelp": "Naslovi kra\u0107i od ovog ne\u0107e imati mogu\u0107nost nastavka", - "TitleAutoOrganize": "Auto-Organiziraj", "TabActivityLog": "Zapisnik aktivnosti", "TabSmartMatches": "Pametno podudaranje", "TabSmartMatchInfo": "Upravljanje pametnim podudaranjima koje su dodane pomo\u0107u automatsko-organizirane forme za ispravljanje", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Osigurajte kontinuirani razvoj ovog projekta kupnjom Emby premijere. Dio svih prihoda bit \u0107e dan drugim besplatnim alatima na koje se oslanjamo.", "DonationNextStep": "Nakon zavr\u0161etka, vratite se i unesite klju\u010d Emby Premijere, koji \u0107ete dobiti putem e-maila.", "AutoOrganizeHelp": "Auto-Organizator nadgleda va\u0161u mapu za preuzimanja za nove datoteke i filmove te ih premje\u0161ta u mapu za medije.", - "AutoOrganizeTvHelp": "Organizator TV datoteka \u0107e samo dodati epizode za postoje\u0107e serije. Ne\u0107e napraviti mape za nove serije.", "OptionEnableEpisodeOrganization": "Omogu\u0107i organizaciju novih epizoda", "LabelWatchFolder": "Nadgledaj mapu:", "LabelWatchFolderHelp": "Server \u0107e pregledati ovu mapu prilikom izvr\u0161avanja zakazanog zadatka 'Organizacije novih medijskih datoteka'.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Zadatci koji se izvode", "HeaderActiveDevices": "Aktivni ure\u0111aji", "HeaderPendingInstallations": "Instalacije u toku", - "HeaderServerInformation": "Informacije servera", "ButtonRestartNow": "Ponovo pokreni sad", "ButtonRestart": "Ponovo pokreni", "ButtonShutdown": "Ugasi", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Klju\u010d Emby Premijere nedostaje ili je pogre\u0161an.", "ErrorMessageInvalidKey": "Kako bi premium sadr\u017eaj bio registriran, morate imati aktivnu pretplatu Emby Premijere.", "HeaderDisplaySettings": "Postavke prikaza", - "TabPlayTo": "Izvedi na", "LabelEnableDlnaServer": "Omogu\u0107i Dlna server", "LabelEnableDlnaServerHelp": "Omogu\u0107uje UPnP ure\u0111ajima na mre\u017ei da pregledavaju i pokre\u0107u Emby sadr\u017eaj.", "LabelEnableBlastAliveMessages": "Objavi poruke dostupnosti", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Odre\u0111uje trajanje u sekundama izme\u0111u svake poruke dostupnosti servera.", "LabelDefaultUser": "Zadani korisnik:", "LabelDefaultUserHelp": "Odre\u0111uje koja \u0107e biblioteka biti prikazana na spojenim ure\u0111ajima. Ovo se mo\u017ee zaobi\u0107i za svaki ure\u0111aj koriste\u0107i profile.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Postavke Servera", "HeaderRequireManualLogin": "Zahtjevaj ru\u010dni unos korisni\u010dkog imena za:", "HeaderRequireManualLoginHelp": "Kada je onemogu\u0107eno, Emby aplikacije mogu otvoriti prozor za prijavu sa vizualnim odabirom korisnika.", "OptionOtherApps": "Druge aplikacije", "OptionMobileApps": "Mobilne aplikacije", - "HeaderNotificationList": "Kliknite na obavijesti za pode\u0161avanje opcije slanja.", - "NotificationOptionApplicationUpdateAvailable": "Dostupno a\u017euriranje aplikacije", - "NotificationOptionApplicationUpdateInstalled": "Instalirano a\u017euriranje aplikacije", - "NotificationOptionPluginUpdateInstalled": "Instalirano a\u017euriranje za dodatak", - "NotificationOptionPluginInstalled": "Dodatak instaliran", - "NotificationOptionPluginUninstalled": "Dodatak uklonjen", - "NotificationOptionVideoPlayback": "Reprodukcija videa zapo\u010deta", - "NotificationOptionAudioPlayback": "Reprodukcija glazbe zapo\u010deta", - "NotificationOptionGamePlayback": "Igrica pokrenuta", - "NotificationOptionVideoPlaybackStopped": "Reprodukcija videozapisa je zaustavljena", - "NotificationOptionAudioPlaybackStopped": "Reprodukcija audiozapisa je zaustavljena", - "NotificationOptionGamePlaybackStopped": "Reprodukcija igre je zaustavljena", - "NotificationOptionTaskFailed": "Zakazan zadatak nije izvr\u0161en", - "NotificationOptionInstallationFailed": "Instalacija nije izvr\u0161ena", - "NotificationOptionNewLibraryContent": "Novi sadr\u017eaj dodan", - "NotificationOptionCameraImageUploaded": "Slike kamere preuzete", - "NotificationOptionUserLockedOut": "Korisnik zaklju\u010dan", - "HeaderSendNotificationHelp": "Obavijesti se dostavljaju u va\u0161 Emby inbox. Dodatne opcije mogu biti instalirane na kartici Servisa.", - "NotificationOptionServerRestartRequired": "Potrebno ponovo pokretanje servera", "LabelNotificationEnabled": "Omogu\u0107i ovu obavijest", "LabelMonitorUsers": "Obrazac nadzora aktivnosti:", "LabelSendNotificationToUsers": "Po\u0161aljite obavijesti na:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Prethodni", "LabelGroupMoviesIntoCollections": "Grupiraj filmove u kolekciju", "LabelGroupMoviesIntoCollectionsHelp": "Kada se prikazuje lista filmova, filmovi koji pripadaju kolekciji biti \u0107e prikazani kao jedna stavka.", - "NotificationOptionPluginError": "Dodatak otkazao", "ButtonVolumeUp": "Glasno\u0107a gore", "ButtonVolumeDown": "Glasno\u0107a dolje", "HeaderLatestMedia": "Lista medija", "OptionNoSubtitles": "Bez titlova prijevoda", - "OptionSpecialFeatures": "Specijalne opcije", "HeaderCollections": "Kolekcije", "LabelProfileCodecsHelp": "Odvojeno sa to\u010dka-zrezom. Ovo mo\u017ee ostaviti prazno kao bi bilo postavljeno za sve codecs.", "LabelProfileContainersHelp": "Odvojeno sa to\u010dka-zrezom. Ovo mo\u017ee ostaviti prazno kao bi bilo postavljeno za sve spremnike.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Nema odgovaraju\u0107ih dodataka.", "LabelDisplayPluginsFor": "Prika\u017ei dodatak za:", "PluginTabAppClassic": "Klasi\u010dni Emby", - "PluginTabAppTheater": "Emby kazali\u0161te", "LabelEpisodeNamePlain": "Ime epizode", "LabelSeriesNamePlain": "Ime serije", "ValueSeriesNamePeriod": "serija.ime", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Broj kraja epizode", "HeaderTypeText": "Unesite tekst", "LabelTypeText": "Tekst", - "HeaderSearchForSubtitles": "Tra\u017ei titlove prijevoda", - "MessageNoSubtitleSearchResultsFound": "Nije ni\u0161ta prona\u0111eno.", "TabDisplay": "Prikaz", "TabLanguages": "Jezici", "TabAppSettings": "Postavke aplikacije", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Ako je omogu\u0107eno, pjesma teme igrati \u0107e u pozadini tijekom pregledavanja biblioteke.", "LabelEnableBackdropsHelp": "Ako je omogu\u0107eno, oslikane pozadine \u0107e biti prikazane u pozadini nekih stranica tijekom pregledavanja biblioteke.", "HeaderHomePage": "Po\u010detna stranica", - "HeaderSettingsForThisDevice": "Postavke za ovaj ure\u0111aj", "OptionAuto": "Automatski", "OptionYes": "Da", "OptionNo": "Ne", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Odjeljak 2 po\u010detne stranice:", "LabelHomePageSection3": "Odjeljak 3 po\u010detne stranice:", "LabelHomePageSection4": "Odjeljak 4 po\u010detne stranice:", - "OptionMyMediaButtons": "Moji mediji (gumbi\u0107i)", "OptionMyMedia": "Moji mediji", "OptionMyMediaSmall": "Moji mediji (malo)", "OptionResumablemedia": "Nastavi", @@ -815,53 +752,21 @@ "HeaderReports": "Izvje\u0161taji", "HeaderSettings": "Postavke", "OptionDefaultSort": "Zadano", - "OptionCommunityMostWatchedSort": "Najgledaniji", "TabNextUp": "Sljede\u0107e je", - "PlaceholderUsername": "Korisni\u010dko ime:", "HeaderBecomeProjectSupporter": "Nabavite Emby Premijeru", "MessageNoMovieSuggestionsAvailable": "Filmski prijedlozi nisu trenutno dostupni. Po\u010dnite s gledanjem i ocjenjivanjem svoje filmove, a zatim se vratite da biste vidjeli svoje preporuke.", "MessageNoCollectionsAvailable": "Zbirke vam omogu\u0107iti da u\u017eivate u personaliziranim grupama filmova, serija, albuma, knjiga i igra. Kliknite gumb + za po\u010detak stvaranja zbirke.", "MessageNoPlaylistsAvailable": "Popisi vam omogu\u0107iti da napravite popis sadr\u017eaja koji igra uzastopno u isto vrijeme. Za dodavanje stavki na popisima za reprodukciju kliknite desni gumb mi\u0161a ili dodirnite i dr\u017eite, a zatim odaberite dodaj na popis za reprodukciju.", "MessageNoPlaylistItemsAvailable": "Ovaj popis za reprodukciju je prazan.", - "ButtonDismiss": "Odbaci", "ButtonEditOtherUserPreferences": "Uredite ovaj korisni\u010dki profil, slike i osobne postavke.", "LabelChannelStreamQuality": "\u017deljena kvaliteta internet kanala:", "LabelChannelStreamQualityHelp": "U okru\u017eenju slabe propusnosti, ograni\u010davanje kvalitete mo\u017ee osigurati iskustvo glatkog strujanja.", "OptionBestAvailableStreamQuality": "Najbolje dostupno", "ChannelSettingsFormHelp": "Instalacija kanala kao \u0161to su kratki filmovi i Vimeo u katalog dodataka.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Kolekcije", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Zadnje izvo\u0111eno", - "ViewTypeGameFavorites": "Omiljeni", - "ViewTypeGameSystems": "Sustav igra", - "ViewTypeGameGenres": "\u017danrovi", - "ViewTypeTvResume": "Nastavi", - "ViewTypeTvNextUp": "Sljede\u0107e je", - "ViewTypeTvLatest": "Najnovije", - "ViewTypeTvShowSeries": "Serije", - "ViewTypeTvGenres": "\u017danrovi", - "ViewTypeTvFavoriteSeries": "Omiljene serije", - "ViewTypeTvFavoriteEpisodes": "Omiljene epizode", - "ViewTypeMovieResume": "Nastavi", - "ViewTypeMovieLatest": "Najnovije", - "ViewTypeMovieMovies": "Filmovi", - "ViewTypeMovieCollections": "Kolekcije", - "ViewTypeMovieFavorites": "Omiljeni", - "ViewTypeMovieGenres": "\u017danrovi", - "ViewTypeMusicLatest": "Najnovije", - "ViewTypeMusicPlaylists": "Popisi", - "ViewTypeMusicAlbums": "Albumi", - "ViewTypeMusicAlbumArtists": "Izvo\u0111a\u010di albuma", "HeaderOtherDisplaySettings": "Postavke prikaza", "ViewTypeMusicSongs": "Pjesme", "ViewTypeMusicFavorites": "Omiljeni", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Prilikom preuzimanja slike mogu biti spremljene u oba ekstra fanart i pomo\u0107nim sli\u010dicama za maksimalnu kompatibilnosti Kodi korisni\u010dkog su\u010delja.", "TabServices": "Servisi", "TabLogs": "Dnevnici", - "HeaderServerLogFiles": "Datoteke serverskih dnevnika:", "TabBranding": "Brendiranje", "HeaderBrandingHelp": "Prilagodite izgled Emby da odgovara potrebama va\u0161e grupe ili organizacije.", "LabelLoginDisclaimer": "Prijava odricanja:", @@ -917,7 +821,6 @@ "HeaderDevice": "Ure\u0111aj", "HeaderUser": "Korisnik", "HeaderDateIssued": "Datum izdavanja", - "LabelChapterName": "Poglavlje {0}", "HeaderHttpHeaders": "Http zaglavlja", "HeaderIdentificationHeader": "Identifikacija zaglavlja", "LabelValue": "Vrijednost:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Podniz", "TabView": "Pogled", - "TabSort": "Slo\u017ei", "TabFilter": "Filter", "ButtonView": "Pogled", "LabelPageSize": "Ograni\u010denje stavke:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http strujanje u\u017eivo", "LabelContext": "Kontekst:", - "OptionContextStreaming": "Strujanje", - "OptionContextStatic": "Sink.", "TabPlaylists": "Popisi", "ButtonClose": "Zatvori", "LabelAllLanguages": "Svi jezici", @@ -956,7 +856,6 @@ "LabelImage": "Slika:", "HeaderImages": "Slike", "HeaderBackdrops": "Pozadine", - "HeaderScreenshots": "Isje\u010dci slika", "HeaderAddUpdateImage": "Dodaj\/a\u017euriraj sliku", "LabelDropImageHere": "Ubaci sliku ovdje", "LabelJpgPngOnly": "Samo JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Zaklju\u010dano", "OptionUnidentified": "Neidentificiran", "OptionMissingParentalRating": "Nedostaje roditeljska ocjena", - "OptionStub": "Stub", "OptionSeason0": "Sezona 0", "LabelReport": "Izvje\u0161taj:", "OptionReportSongs": "Pjesme", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albumi", "ButtonMore": "Vi\u0161e", "HeaderActivity": "Aktivnosti", - "ScheduledTaskStartedWithName": "{0} pokrenuto", - "ScheduledTaskCancelledWithName": "{0} je otkazan", - "ScheduledTaskCompletedWithName": "{0} zavr\u0161en", - "ScheduledTaskFailed": "Zakazan zadatak je zavr\u0161en", "PluginInstalledWithName": "{0} je instalirano", "PluginUpdatedWithName": "{0} je a\u017eurirano", "PluginUninstalledWithName": "{0} je deinstalirano", - "ScheduledTaskFailedWithName": "{0} neuspjelo", - "DeviceOnlineWithName": "{0} je spojeno", "UserOnlineFromDevice": "{0} je online od {1}", - "DeviceOfflineWithName": "{0} se odspojilo", "UserOfflineFromDevice": "{0} se odspojilo od {1}", - "SubtitlesDownloadedForItem": "Titlovi prijevoda preuzeti za {0}", - "SubtitleDownloadFailureForItem": "Titlovi prijevoda nisu preuzeti za {0}", "LabelRunningTimeValue": "Vrijeme rada: {0}", "LabelIpAddressValue": "Ip adresa: {0}", "UserLockedOutWithName": "Korisnik {0} je zaklju\u010dan", "UserConfigurationUpdatedWithName": "Postavke korisnika su a\u017eurirane za {0}", "UserCreatedWithName": "Korisnik {0} je stvoren", - "UserPasswordChangedWithName": "Lozinka je promijenjena za korisnika {0}", "UserDeletedWithName": "Korisnik {0} je obrisan", "MessageServerConfigurationUpdated": "Postavke servera su a\u017eurirane", "MessageNamedServerConfigurationUpdatedWithValue": "Odjeljak postavka servera {0} je a\u017euriran", "MessageApplicationUpdated": "Emby Server je a\u017euriran", "UserDownloadingItemWithValues": "{0} se preuzima {1}", - "UserStartedPlayingItemWithValues": "{0} se pokrenuo {1}", - "UserStoppedPlayingItemWithValues": "{0} se zaustavio {1}", - "AppDeviceValues": "Aplikacija: {0}, Ure\u0111aj: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Nedavne aktivnosti", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Dani emitiranja:", "LabelAirTime:": "Vrijeme emitiranja:", "LabelRuntimeMinutes": "Vrijeme izvo\u0111enja (minuta):", - "LabelRevenue": "Prihod ($):", - "HeaderAlternateEpisodeNumbers": "Alternativni brojevi epizoda", "HeaderSpecialEpisodeInfo": "Posebni podaci o epizodi", - "HeaderExternalIds": "Vanjski id-ovi:", - "LabelAirsBeforeSeason": "Emitiranje prije sezone:", - "LabelAirsAfterSeason": "Emitiranje nakon sezona:", - "LabelAirsBeforeEpisode": "Emitiranje prije epizoda:", "LabelDisplaySpecialsWithinSeasons": "Prikaz specijalnih dodataka unutar sezona u kojima su emitirani", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Klju\u010dne rije\u010di", "HeaderStudios": "Studios", "HeaderTags": "Oznake", - "MessageLeaveEmptyToInherit": "Ostavite prazno da naslijedi postavke od roditelja stavke ili globalnu zadanu vrijednost.", "OptionNoTrailer": "Nema kratkog videa", "ButtonPurchase": "Kupiti", "OptionActor": "Glumac", "OptionComposer": "Kompozitor", "OptionDirector": "Re\u017eiser", "OptionProducer": "Producent", - "OptionWriter": "Pisac", "LabelAirDays": "Dani emitiranja:", "LabelAirTime": "Vrijeme emitiranja:", "HeaderMediaInfo": "Info medija:", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Roditeljska kontrola", "HeaderAccessSchedule": "Raspored pristupa", "HeaderAccessScheduleHelp": "Napravite raspored pristupa da bi ograni\u010dili pristup odre\u0111enim satima.", - "ButtonAddSchedule": "Dodaj raspored", "LabelAccessDay": "Dan u tjednu:", "LabelAccessStart": "Po\u010detak:", "LabelAccessEnd": "Zavr\u0161etak:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Poslovi sink.", "HeaderThisUserIsCurrentlyDisabled": "Ovaj je korisnik trenutno onemogu\u0107en", "MessageReenableUser": "Pogledajte dolje za ponovno omogu\u0107enje", - "LabelEnableInternetMetadataForTvPrograms": "Preuzmi Internet meta-podatke za:", "OptionTVMovies": "TV filmovi", "HeaderUpcomingMovies": "Nadolaze\u0107i filmovi", "HeaderUpcomingSports": "Nadolaze\u0107i sport", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Popisi", "HeaderViewStyles": "Stilovi pogleda", "TabPhotos": "Fotografije", - "TabVideos": "Videi", "HeaderWelcomeToEmby": "Dobrodo\u0161li u Emby", "EmbyIntroMessage": "Uz Emby mo\u017eete jednostavno gledati video, glazbu i fotografije na pametnim telefonima, tabletima i drugim ure\u0111ajima iz svog Emby Servera.", "ButtonSkip": "Presko\u010di", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Stupci", "ButtonReset": "Resetiraj", "OptionEnableExternalVideoPlayers": "Omogu\u0107i vanjske pokreta\u010de", - "ButtonUnlockGuide": "Otklju\u010daj vodi\u010d", "LabelEnableFullScreen": "Omogu\u0107i na\u010din punog zaslona", "LabelEmail": "E-mail:", "LabelUsername": "Korisni\u010dko ime:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Dnevnik aktivnosti", "HeaderTunerDevices": "TV\/Radio ure\u0111aji", "HeaderAddDevice": "Dodaj ure\u0111aj", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Ponovi", "LabelEnableThisTuner": "Omogu\u0107i ovaj TV\/radio pretra\u017eiva\u010d", "LabelEnableThisTunerHelp": "Odzna\u010dite da sprije\u010dite uvoz kanala iz tog TV\/radio pretra\u017eiva\u010da.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Podesi TV vodi\u010d", "LabelDataProvider": "Pru\u017eatelj podataka:", "OptionSendRecordingsToAutoOrganize": "Automatski organizirajte snimke u postoje\u0107e mape serija u drugim bibliotekama", - "HeaderDefaultPadding": "Zadano punjenje", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Stvaranje pod-mape za kategorije kao \u0161to su sport, djeca, itd.", "HeaderSubtitles": "Titlovi", "HeaderVideos": "Videi", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Mape", "LabelDisplayName": "Prikaz naziva:", "HeaderNewRecording": "Nova snimka", - "ButtonAdvanced": "Napredno", "LabelCodecIntrosPath": "Putanja codec-a isje\u010dka:", "LabelCodecIntrosPathHelp": "Mapa sadr\u017ei video datoteke. Ako naziv video isje\u010dka datoteke odgovara video codec-u, audio codec-u, audio profilu ili oznaci, onda \u0107e se reproducirati prije glavne zna\u010dajke.", "OptionConvertRecordingsToStreamingFormat": "Automatski pretvoriti snimke na prijateljskom formatu strujanja", "OptionConvertRecordingsToStreamingFormatHelp": "Snimke \u0107e se pretvoriti u letu u MP4 ili MKV za jednostavnu reprodukciju na ure\u0111ajima.", "FeatureRequiresEmbyPremiere": "Ova zna\u010dajka zahtijeva aktivnu pretplatu Emby Premijere.", "FileExtension": "Ekstenzija datoteke", - "OptionReplaceExistingImages": "Zamijeni postoje\u0107e slike", "OptionPlayNextEpisodeAutomatically": "Pokreni automatski slijede\u0107u epizodu", "OptionDownloadImagesInAdvance": "Preuzmi slike unaprijed", "SettingsSaved": "Postavke snimljene", @@ -1348,7 +1216,6 @@ "Password": "Lozinka", "DeleteImage": "Izbri\u0161i sliku", "MessageThankYouForSupporting": "Hvala vam na podr\u0161ci Emby-a.", - "MessagePleaseSupportProject": "Molimo podr\u017eite Emby.", "DeleteImageConfirmation": "Da li ste sigurni da \u017eelite izbrisati ovu sliku?", "FileReadCancelled": "U\u010ditavanje datoteke je prekinuto.", "FileNotFound": "Datoteka nije prona\u0111ena.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Emby Server treba a\u017eurirati. Da biste preuzeli najnoviju verziju, posjetite {0}", "LabelFromHelp": "Primjer: {0} (na serveru)", "HeaderMyMedia": "Moji mediji", - "LabelAutomaticUpdateLevel": "Automatska razina za a\u017euriranje:", - "LabelAutomaticUpdateLevelForPlugins": "Automatska razina a\u017euriranja za dodatke:", "ErrorLaunchingChromecast": "Do\u0161lo je do pogre\u0161ke pokretanja chromecast-a. Provjerite jeli va\u0161 ure\u0111aj spojen na be\u017ei\u010dnu mre\u017eu.", "MessageErrorLoadingSupporterInfo": "Do\u0161lo je do pogre\u0161ke prilikom u\u010ditavanja informacije Emby Premijere. Molimo poku\u0161ajte ponovo kasnije.", - "MessageLinkYourSupporterKey": "Pove\u017eite svoj klju\u010d Emby Premijere sa do {0} \u010dlanova \"Emby Connect\" da imaju na raspolaganju besplatni pristup sljede\u0107im aplikacijama:", "HeaderConfirmRemoveUser": "Ukloni korisnika", - "MessageConfirmRemoveConnectSupporter": "Jeste li sigurni da \u017eelite ukloniti dodatne pogodnosti Emby Premijere tom korisniku?", "ValueTimeLimitSingleHour": "Vremensko ograni\u010denje: 1 sat", "ValueTimeLimitMultiHour": "Vremensko ograni\u010denje: {0} sati", "PluginCategoryGeneral": "Op\u0107e", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Zakazani zadaci", "MessageItemsAdded": "Stavke su dodane", "HeaderSelectCertificatePath": "Odaberi put certifikata:", - "ConfirmMessageScheduledTaskButton": "Ova operacija se obi\u010dno automatski pokre\u0107e kao zakazan zadatak i ne zahtijeva ru\u010dnu intervenciju. Za pode\u0161avanje rasporeda zadataka kliknite na raspored zadatak.", "HeaderSupporterBenefit": "Aktivna pretplata Emby Premijere omogu\u0107uje dodatne pogodnosti kao \u0161to su pristup za sinkronizaciju, premium dodataka, internet sadr\u017eaja kanala, i jo\u0161 mnogo toga. {0} Saznajte vi\u0161e {1}.", "HeaderWelcomeToProjectServerDashboard": "Dobrodo\u0161li u kontrlonu plo\u010du Emby Server-a", "HeaderWelcomeToProjectWebClient": "Dobrodo\u0161li u Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Onesposobljeno", "ButtonMoreInformation": "Vi\u0161e informacija", "LabelNoUnreadNotifications": "Nema nepro\u010ditanih obavijesti.", - "LabelAllPlaysSentToPlayer": "Sve reprodukcije biti \u0107e poslane na odabrani ure\u0111aj.", "MessageInvalidUser": "Pogre\u0161no korisni\u010dko ime ili lozinka. Molim, poku\u0161ajte ponovo.", "HeaderLoginFailure": "Neuspjela prijava", "RecommendationBecauseYouLike": "Zato \u0161to volite {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Snimka je otkazana.", "MessageRecordingScheduled": "Snimka je zakazana.", "HeaderConfirmSeriesCancellation": "Potvrdi otkazivanje serije", - "MessageConfirmSeriesCancellation": "Jeste li sigurni da \u017eelite odustati od ove serije?", - "MessageSeriesCancelled": "Serija je otkazana.", "HeaderConfirmRecordingDeletion": "Potvrdite brisanje snimanja", "MessageRecordingSaved": "Snimka je spremljena.", "OptionWeekend": "Vikendi", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Pregledajte ili unesite putanju za kori\u0161tenje predmemorijskih datoteka. U mapu se mora mo\u0107i pisati.", "HeaderSelectTranscodingPathHelp": "Pregledajte ili unesite putanju za kori\u0161tenje konvertiranja privremenih datoteka. U mapu se mora mo\u0107i pisati.", "HeaderSelectMetadataPathHelp": "Pregledajte ili unesite putanju za pohranu meta-podataka. U mapu se mora mo\u0107i pisati.", - "HeaderSelectChannelDownloadPath": "Odaberite putanju za preuzimanje kanala", - "HeaderSelectChannelDownloadPathHelp": "Pregledajte ili unesite putanju za pohranu predmemorijskih datoteka kanala. U mapu se mora mo\u0107i pisati.", - "LabelChapterDownloaders": "Preuzimatelji poglavlja:", - "LabelChapterDownloadersHelp": "Omogu\u0107ite i rangirajte \u017eeljene preuzimatelje poglavlje u prvenstvenom redu. Manjeg prioriteta preuzimatelja koristit \u0107e se samo za ispunjavanje informacija koje nedostaju.", "HeaderFavoriteAlbums": "Omiljeni albumi", "HeaderLatestChannelMedia": "Najnoviji kanali", "ButtonOrganizeFile": "Oragniziraj datoteku", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direktno izvo\u0111enje", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Lokalni pristup: {0}", + "LabelLocalAccessUrl": "Lokalni (ku\u0107ni) pristup: {0}", "LabelRemoteAccessUrl": "Udaljeni pristup: {0}", "LabelRunningOnPort": "Izvodi se na http port-u {0}.", "LabelRunningOnPorts": "Izvodi se na http port-u {0} i na https port-u {1}.", "HeaderLatestFromChannel": "Zadnje od {0}", - "HeaderCurrentSubtitles": "Trenutni titlovi prijevoda", "ButtonRemoteControl": "Daljinsko upravljanje", "HeaderLatestTvRecordings": "Zadnje snimke", "LabelCurrentPath": "Trenutna putanja:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Izbri\u0161i stavku", "ConfirmDeleteItem": "Brisanjem ove stavke \u0107e je izbrisati iz oba datote\u010dnog sustava i medijskoj biblioteci. Jeste li sigurni da \u017eelite nastaviti?", "ConfirmDeleteItems": "Brisanjem ovih stavaka \u0107e ih izbrisati iz oba datote\u010dnog sustava i medijskoj biblioteci. Jeste li sigurni da \u017eelite nastaviti?", - "MessageValueNotCorrect": "Unesena vrijednost nije ispravna. Molim poku\u0161ajte ponovno.", "MessageItemSaved": "Stavka je snimljena.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Molimo prihvatite uvjete kori\u0161tenja prije nego \u0161to nastavite.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Nedostaje pozadinska slika.", "MissingLogoImage": "Nedostaje slika logo-a.", "MissingEpisode": "Nedostaje epizoda", - "OptionScreenshots": "Isje\u010dci slika", "OptionBackdrops": "Pozadine", "OptionImages": "Slike", "OptionKeywords": "Klju\u010dne rije\u010di", @@ -1642,10 +1494,6 @@ "OptionPeople": "Ljudi", "OptionProductionLocations": "Lokacije proizvodnje", "OptionBirthLocation": "Lokacije ro\u0111enja", - "LabelAllChannels": "Svi kanali", - "AttributeNew": "Novo", - "AttributePremiere": "Premijera", - "AttributeLive": "U\u017eivo", "HeaderChangeFolderType": "Promijeni tip sadr\u017eaja", "HeaderChangeFolderTypeHelp": "Za promjenu tipa, uklonite i ponovno izgraditi biblioteku s novim tipom.", "HeaderAlert": "Uzbuna", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Kvaliteta", "HeaderNotifications": "Obavijesti", "HeaderSelectPlayer": "Odaberi pokreta\u010d", - "MessageInternetExplorerWebm": "Za najbolje rezultate s Internet Explorer-om instalirajte dodatak WebM reprodukcije.", "HeaderVideoError": "Video gre\u0161ka", "ButtonViewSeriesRecording": "Pogledaj snimke serija", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Ukloni lokacije medija", "MessageConfirmRemoveMediaLocation": "Jeste li sigurni da \u017eelite ukloniti ovu lokaciju?", "LabelNewName": "Novo ime:", - "HeaderAddMediaFolder": "Dodaj mapu sa medijem", - "HeaderAddMediaFolderHelp": "Naziv (filmovi, glazba, TV, itd.):", "HeaderRemoveMediaFolder": "Ukloni mape medija", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Sljede\u0107e lokacije medija biti \u0107e uklonjene iz va\u0161e Emby biblioteke:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Jeste li sigurni da \u017eelite ukloniti ovu medijsku mapu?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Promijeni tip sadr\u017eaja", "HeaderMediaLocations": "Lokacije medija", "LabelContentTypeValue": "Tip sadr\u017eaja: {0}", - "LabelPathSubstitutionHelp": "Neobvezno: zamjenska putanja mo\u017ee mapirati putanje servera na mre\u017ena dijeljenja kojim Emby aplikacije mogu pristupiti za izravnu reprodukciju.", "FolderTypeUnset": "Isklju\u010di (mije\u0161ani sadr\u017eaj)", "BirthPlaceValue": "Mjesto ro\u0111enja: {0}", "DeathDateValue": "Umro: {0}", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "Ne-emitirano", "HeaderMissing": "Nedostaje", "ButtonWebsite": "Web stranica", - "ValueSeriesYearToPresent": "{0}-sada", + "ValueSeriesYearToPresent": "{0} - sada", "ValueAwards": "Nagrade: {0}", - "ValueBudget": "Bud\u017eet: {0}", - "ValueRevenue": "Prihod: {0}", "ValuePremiered": "Predstavljen {0}", "ValuePremieres": "Premijere {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref okviri", "TabExpert": "Stru\u010dnjak", "HeaderSelectCustomIntrosPath": "Odaberi prilago\u0111eni put predfilmova:", - "HeaderRateAndReview": "Ocijeni i recenziraj", "HeaderThankYou": "Hvala", - "MessageThankYouForYourReview": "Hvala na recenziji", - "LabelYourRating": "Va\u0161a ocjena:", "LabelFullReview": "Puna recenzija:", - "LabelShortRatingDescription": "Kratki sa\u017eetak ocjena:", - "OptionIRecommendThisItem": "Preporu\u010dam ovu stavku", "ReleaseYearValue": "Godina izdanja: {0}", "OriginalAirDateValue": "Originalni datum prikazivanja: {0}", "WebClientTourContent": "Pogledaj svoje nedavno dodane medije, sljede\u0107e epizode i jo\u0161 toga. Zeleni krugovi pokazuju koliko imate nereproduciranih stavaka.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Jednostavno upravljanje operacija koje dugo traju sa planiranim zadacima. Odlu\u010dite kad se pokre\u0107u i koliko \u010desto.", "DashboardTourMobile": "Nadzorna plo\u010da Emby Server-a radi sjajno na pametnim telefonima i tabletima. Upravljajte serverom sa dlana bilo kada, bilo gdje.", "DashboardTourSync": "Sinkronizirajte svoje osobne medije za svoje ure\u0111aje za izvanmre\u017eno pregledavanje.", - "MessageRefreshQueued": "Osvije\u017ei stavke na \u010dekanju", "TabExtras": "Dodaci", "HeaderUploadImage": "Prenesi sliku", "DeviceLastUsedByUserName": "Zadnje koristio {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sink. medija", "HeaderCancelSyncJob": "Odustani od sink.", "CancelSyncJobConfirmation": "Poni\u0161tavanje sinkronizacije ukloniti \u0107e sinkronizirane medije iz ure\u0111aja tijekom sljede\u0107eg procesa sinkronizacije. Jeste li sigurni da \u017eelite nastaviti?", - "MessagePleaseSelectDeviceToSyncTo": "Odaberite ure\u0111aj za sinkronizaciju.", - "MessageSyncJobCreated": "Sinkronizacijski posao je stvoren", "LabelQuality": "Kvaliteta:", - "OptionAutomaticallySyncNewContent": "Automatski sinkroniziraj novi sadr\u017eaj", - "OptionAutomaticallySyncNewContentHelp": "Novi sadr\u017eaj u ovoj mapi automatski \u0107e se sinkronizirati na ure\u0111aj.", "MessageBookPluginRequired": "Zahtijeva instalaciju Bookshelf dodatka", "MessageGamePluginRequired": "Zahtijeva instalaciju GameBrowser dodatka", "MessageUnsetContentHelp": "Sadr\u017eaj \u0107e biti prikazan kao obi\u010dne mape. Za najbolje rezultate upotrijebite upravitelj meta-podataka za postavljanje vrste sadr\u017eaja pod-mapa.", @@ -1932,8 +1763,8 @@ "SyncJobItemStatusCancelled": "Otkazan", "LabelProfile": "Profil:", "LabelBitrateMbps": "Brzina prijenosa (Mbps):", - "EmbyIntroDownloadMessage": "Da biste preuzeli i instalirali Emby Server posjetite {0}", - "EmbyIntroDownloadMessageWithoutLink": "Da biste preuzeli i instalirali Emby Server posjetite Emby web stranice.", + "EmbyIntroDownloadMessage": "Da biste preuzeli i instalirali besplatni Emby Server posjetite {0}.", + "EmbyIntroDownloadMessageWithoutLink": "Da biste preuzeli i instalirali besplatni Emby Server posjetite Emby web stranice.", "ButtonNewServer": "Novi Server", "MyDevice": "Moj ure\u0111aj", "ButtonRemote": "Daljinski", @@ -1941,18 +1772,11 @@ "TabScenes": "Scene", "HeaderUnlockApp": "Otklju\u010daj aplikaciju", "HeaderUnlockSync": "Otklju\u010daj Emby Sinkronizaciju", - "MessageUnlockAppWithPurchaseOrSupporter": "Otklju\u010daj ovu mogu\u0107nost s malom jednokratnom kupnjom ili s aktivnom pretplatom Emby Premijere.", - "MessageUnlockAppWithSupporter": "Otklju\u010daj ovu mogu\u0107nost sa pretplatom Emby Premijere.", - "MessageToValidateSupporter": "Ako imate aktivnu pretplatu Emby Premijere provjerite dali ste postavili Emby Premijeru u svojoj nadzornoj plo\u010di Emby Server-a kojoj mo\u017eete pristupiti klikom Emby Premijera u glavnom izborniku.", "MessagePaymentServicesUnavailable": "usluge pla\u0107anja su trenutno nedostupne. Molimo poku\u0161ajte ponovo kasnije.", - "ButtonUnlockWithPurchase": "Otklju\u010daj s kupovinom", - "ButtonUnlockPrice": "Otklju\u010daj {0}", - "MessageLiveTvGuideRequiresUnlock": "Vodi\u010d TV u\u017eivo je trenutno ograni\u010den na {0} kanala. Kliknite na gumb za otklju\u010davanje da biste saznali kako u\u017eivati u potpunom do\u017eivljaju.", "OptionEnableFullscreen": "Omogu\u0107i puni zaslon", "ButtonServer": "Server", "HeaderLibrary": "Biblioteka", "HeaderMedia": "Medij", - "HeaderSaySomethingLike": "Reci ne\u0161to poput...", "NoResultsFound": "Nije ni\u0161ta prona\u0111eno.", "ButtonManageServer": "Upravljanje Serverom", "ButtonPreferences": "Postavke", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Otvori ra\u010dun kod {0}", "ErrorPleaseSelectLineup": "Odaberite postavu i poku\u0161ajte ponovno. Ako niti jedna postava nije dostupna provjerite dali su korisni\u010dko ime, lozinka i po\u0161tanski broj to\u010dni.", "HeaderTryEmbyPremiere": "Probajte Emby Premijeru", - "ButtonBecomeSupporter": "Nabavite Emby Premijeru", - "ButtonClosePlayVideo": "Zatvori i pokreni moje medije", - "MessageDidYouKnowCinemaMode": "Jeste li znali da s Emby Premijerom mo\u017eete pobolj\u0161ati svoje iskustvo sa zna\u010dajkama kao \u0161to su na\u010din kina?", - "MessageDidYouKnowCinemaMode2": "Kino na\u010din vam daje pravi do\u017eivljaj kina s kratkim filmovima i prilago\u0111enim isje\u010dcima prije odabrane zna\u010dajke.", "OptionEnableDisplayMirroring": "Omogu\u0107i prikaz zrcaljenja", "HeaderSyncRequiresSupporterMembership": "Sinkronizacija zahtjeva aktivnu pretplatu Emby premijere.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sinkronizacija zahtjeva spajanje na Emby Server sa aktivnom pretplatom Emby premijere.", "ErrorValidatingSupporterInfo": "Do\u0161lo je do pogre\u0161ke prilikom provjere informacije Emby Premijere. Molimo poku\u0161ajte ponovo kasnije.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sinkronizacija zapo\u010deta", - "NoSlideshowContentFound": "Nisu prona\u0111ene slike slajdova.", - "OptionPhotoSlideshow": "Slajdovi slika", "OptionBackdropSlideshow": "Slajdovi pozadina", "HeaderTopPlugins": "Najbolji dodaci", "ButtonOther": "Ostalo", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Izbornik", "ForAdditionalLiveTvOptions": "Za dodatne pru\u017eatelje TV u\u017eivo usluge, kliknite na karticu vanjskih usluga da vidite dostupne opcije.", "ButtonGuide": "Vodi\u010d", - "ButtonRecordedTv": "Snimljeni TV", "ConfirmEndPlayerSession": "\u017delite li zatvoriti Emby na ure\u0111aju?", "ButtonYes": "Da", "AddUser": "Dodaj korisnika", "ButtonNo": "Ne", - "ButtonRestorePreviousPurchase": "Vrati kupovinu", - "AlreadyPaid": "Ve\u0107 pla\u0107eno?", - "AlreadyPaidHelp1": "Ako ste ve\u0107 platili instalaciju starije verzije Media Browser-a za Android, ne morate ponovno platiti kako bi se aktivirali ove aplikacije. Kliknite U redu da nam po\u0161aljete e-mail na {0}, a mi \u0107emo ga aktivirati.", - "AlreadyPaidHelp2": "Ima\u0161 Emby Premijeru? Otka\u017eite ovaj dijalog, postavite Emby Premijeru u svojoj nadzornoj plo\u010di Emby Server-a pod Pomo\u0107 -> Emby Premijera i biti \u0107e automatski otklju\u010dana.", "ButtonNowPlaying": "Sad se izvodi", "HeaderLatestMovies": "Najnoviji filmovi", - "EmbyPremiereMonthly": "Emby Premijera mjese\u010dno", - "EmbyPremiereMonthlyWithPrice": "Emby Premijera mjese\u010dno {0}", "HeaderEmailAddress": "E-mail adresa", - "TextPleaseEnterYourEmailAddressForSubscription": "Molimo, unesite va\u0161u adresu e-po\u0161te.", "LoginDisclaimer": "Emby je osmi\u0161ljen kako bi vam pomogao upravljati va\u0161im osobnim medijskom bibliotekom, kao \u0161to su ku\u0107ni videozapisi i fotografije. Molimo pogledajte na\u0161e uvjete kori\u0161tenja. Uporabom Emby softvera prihva\u0107ate ove uvjete.", "TermsOfUse": "Uvjeti kori\u0161tenja", "NumLocationsValue": "{0} mape", "ButtonAddMediaLibrary": "Dodaj medijsku bibilioteku", "ButtonManageFolders": "Upravljaj mapama", - "MessageTryMicrosoftEdge": "Za bolji do\u017eivljaj na Windows 10, isprobajte novi Microsoft Edge preglednik.", - "MessageTryModernBrowser": "Za bolji do\u017eivljaj na Windows, poku\u0161ajte moderan web-preglednik kao \u0161to su Google Chrome, Firefox ili Opera.", "ErrorAddingListingsToSchedulesDirect": "Do\u0161lo je do pogre\u0161ke prilikom dodavanja postava va\u0161im zakazanim direktnim ra\u010dunima. Raspored dopu\u0161ta samo ograni\u010den broj postava po ra\u010dunu. Mo\u017eda \u0107ete morati se prijavite u zakazanim \"Direct\" web stranicama i ukloniti unose drugih s ra\u010duna prije nastavka.", "PleaseAddAtLeastOneFolder": "Dodajte barem jednu mapu u ovu biblioteku klikom na gumb Dodaj.", "ErrorAddingMediaPathToVirtualFolder": "Do\u0161lo je do pogre\u0161ke prilikom dodavanja putanje medija. Provjerite dali je putanja valjana i da proces Emby Server-a ima pristup tom mjestu.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Potvrdi instalaciju dodatka", "PleaseConfirmPluginInstallation": "Molimo kliknite U redu da biste potvrdili da ste pro\u010ditali gore navedeno i \u017eelite nastaviti s instalacijom dodataka.", "MessagePluginInstallDisclaimer": "Dodaci izgra\u0111eni od strane \u010dlanova Emby zajednice su sjajan na\u010din kako bi unaprijedili Va\u0161e iskustvo Emby s dodatnim zna\u010dajkama i prednostima. Prije instaliranja budite svjesni u\u010dinaka koje mogu imati na va\u0161 Emby Server, kao \u0161to je du\u017ee skeniranje biblioteke, dodatna pozadinska obrada, a smanjena stabilnost sustava.", - "ButtonPlayOneMinute": "Reproduciraj jednu minutu", - "ThankYouForTryingEnjoyOneMinute": "Molimo Vas da u\u017eivate u jednoj minuti reprodukcije. Hvala \u0161to ste isprobali Emby.", - "HeaderTryPlayback": "Isprobajte reprodukciju", - "HeaderBenefitsEmbyPremiere": "Prednosti Emby premijere", - "MobileSyncFeatureDescription": "Sinkronizirajte svoje medije na svoje pametne telefone i tablete za jednostavan izvan-mre\u017eni pristup.", - "CoverArtFeatureDescription": "\"Cover Art\" stvara zabavne naslovnice i druge tretmane koji \u0107e vam pomo\u0107i personalizirati va\u0161e medijske slike.", "HeaderMobileSync": "Mobilna sinkronizacija", "HeaderCloudSync": "Sink. preko oblaka", - "CloudSyncFeatureDescription": "Sinkronizirajte svoje medije na oblaku za jednostavni backup, arhiviranje i konvertiranje.", "HeaderFreeApps": "Besplatne Emby aplikacije", - "FreeAppsFeatureDescription": "U\u017eivajte u slobodnom pristupu za odabir Emby aplikacija za svoje ure\u0111aje.", - "CinemaModeFeatureDescription": "Kino na\u010din vam daje pravi do\u017eivljaj kina s kratkim filmovima i prilago\u0111enim isje\u010dcima prije odabrane zna\u010dajke.", "CoverArt": "Cover Art", "ButtonOff": "Isklju\u010di", "TitleHardwareAcceleration": "Hardversko ubrzanje", "HardwareAccelerationWarning": "Omogu\u0107avanje hardverskog ubrzanja mo\u017ee uzrokovati nestabilnostima u nekim sredinama. Pobrinite se da Va\u0161 operativni sustav i video drajveri su u potpunosti a\u017eurni. Ako imate pote\u0161ko\u0107a s reprodukcijom videa nakon omogu\u0107avanja ovoga, morat \u0107ete promijeniti postavku natrag na Automatski.", "HeaderSelectCodecIntrosPath": "Odaberi putanju codec-a isje\u010dka", - "ButtonAddMissingData": "Dodajte samo podatke koji nedostaju", "ValueExample": "Primjer: {0}", "OptionEnableAnonymousUsageReporting": "Omogu\u0107ite anonimna izvje\u0161\u0107a o upotrebi", "OptionEnableAnonymousUsageReportingHelp": "Dopusti Emby-u prikupljanje anonimnih podataka, kao \u0161to su instalirani dodatci, brojevi verzija va\u0161ih Emby aplikacija, itd. Ti se podaci koriste samo u svrhu pobolj\u0161anja softvera.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (neobavezno):", "LabelOptionalM3uUrlHelp": "Neki ure\u0111aji podr\u017eavaju popis M3U kanala.", "TabResumeSettings": "Postavke nastavka", - "HowDidYouPay": "Kako ste platili?", - "IHaveEmbyPremiere": "Imam Emby Premijeru", - "IPurchasedThisApp": "Kupio sam ovu aplikaciju", "DrmChannelsNotImported": "Kanali s DRM se ne\u0107e uvesti.", "LabelAllowHWTranscoding": "Dopusti hardversko konvertiranje", "AllowHWTranscodingHelp": "Ako je omogu\u0107eno, omogu\u0107ite TV\/radio ure\u0111aju da konvertira strujanja u letu. Ovo mo\u017ee pomo\u0107i smanjiti konvertiranje koje zahtijeva Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Promjena postavki meta-podataka utjecati \u0107e da novi sadr\u017eaji koji se dodaju idu naprijed. Za osvje\u017eavanje postoje\u0107ih sadr\u017eaja otvorite zaslon pojedinosti i kliknite gumb za osvje\u017eavanje ili obavite skupno osvje\u017eavanje pomo\u0107u upravitelja meta-podataka.", "OptionConvertRecordingPreserveAudio": "O\u010duvanje izvornog zvuka prilikom pretvaranja snimke (kada je mogu\u0107e)", "OptionConvertRecordingPreserveAudioHelp": "Ovo \u0107e pru\u017eiti bolji zvuk, ali mo\u017ee zahtijevati konvertiranje tijekom reprodukcije na nekim ure\u0111ajima.", - "CreateCollectionHelp": "Kolekcije vam omogu\u0107iti da napravite personalizirane grupe filmova i ostale biblioteke.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Pretra\u017eivanjem stavaka i kori\u0161tenjem desnog klika ili izbornika dodavanja u kolekciju mo\u017eete ih dodati u kolekciju.", "HeaderHealthMonitor": "Monitor zdravlja", "HealthMonitorNoAlerts": "Nema aktivnih upozorenja.", @@ -2094,7 +1890,7 @@ "MapChannels": "Mapiraj kanale", "LabelffmpegPath": "FFmpeg putanja:", "LabelffmpegVersion": "FFmpeg verzija:", - "LabelffmpegPathHelp": "Putanja do preuzete FFmpeg aplikacije ili mape koja sadr\u017ei FFmpeg.", + "LabelffmpegPathHelp": "Putanja do FFmpeg aplikacijske datoteke ili mape koja sadr\u017ei FFmpeg.", "SetupFFmpeg": "FFmpeg postavke", "SetupFFmpegHelp": "Emby mo\u017ee zahtijevati biblioteku ili program za konvertiranje odre\u0111enih vrsta medija. Postoji mnogo razli\u010ditih aplikacija koje su dostupne, me\u0111utim, Emby je testiran za rad s FFmpeg. Emby ni na koji na\u010din nije povezan s FFmpeg, vlasni\u0161tvo, kod ili distribuciju.", "EnterFFmpegLocation": "Unesi FFmpeg putanju", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Nije obavezno) Zajedni\u010dka mapa mre\u017ee:", "LabelOptionalNetworkPathHelp": "Ako se ova mapa dijeli na mre\u017ei, opskrba zajedni\u010dke mre\u017ene mre\u017ee mo\u017ee dopustiti Emby aplikacijama na drugim ure\u0111ajima izravni pristup multimedijskim datotekama.", "ButtonPlayExternalPlayer": "Reproduciraj sa vanjskim pokreta\u010dem", - "WillRecord": "Snimit \u0107e se", "NotScheduledToRecord": "Nije predvi\u0111en za snimanje", - "SynologyUpdateInstructions": "Molimo, prijavite se u DSM i oti\u0111ite na centar paketa za a\u017euriranje." + "SynologyUpdateInstructions": "Molimo, prijavite se u DSM i oti\u0111ite na centar paketa za a\u017euriranje.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/hu.json b/dashboard-ui/strings/hu.json index 964f27a291..cba8d68bf7 100644 --- a/dashboard-ui/strings/hu.json +++ b/dashboard-ui/strings/hu.json @@ -1,8 +1,6 @@ { - "LabelExit": "Kil\u00e9p\u00e9s", - "LabelApiDocumentation": "Api dokument\u00e1ci\u00f3", - "LabelBrowseLibrary": "M\u00e9diat\u00e1r tall\u00f3z\u00e1sa", - "LabelConfigureServer": "Emby konfigur\u00e1l\u00e1sa", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "El\u0151z\u0151", "LabelFinish": "Befejez", "LabelNext": "K\u00f6vetkez\u0151", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Keresztneved:", "MoreUsersCanBeAddedLater": "T\u00f6bb felhaszn\u00e1l\u00f3t a vez\u00e9rl\u0151pultban adhatsz hozz\u00e1.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows szolg\u00e1ltat\u00e1s", - "AWindowsServiceHasBeenInstalled": "A Windows szolg\u00e1ltat\u00e1s telep\u00edtve lett.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Be\u00e1ll\u00edt\u00e1sok szerkeszt\u00e9se", - "LabelEnableAutomaticPortMapping": "Automatikus port mapping enged\u00e9lyez\u00e9se", - "LabelEnableAutomaticPortMappingHelp": "Az UPnP enged\u00e9lyezi az automatikus routert be\u00e1ll\u00edt\u00e1st a k\u00f6nny\u0171 t\u00e1voli el\u00e9r\u00e9shez. Nem mindegyik routerrel m\u0171k\u00f6dik.", "HeaderTermsOfService": "Emby felhaszn\u00e1l\u00e1si felt\u00e9telek", "MessagePleaseAcceptTermsOfService": "K\u00e9rlek fogadd el a felhaszn\u00e1l\u00e1s \u00e9s felt\u00e9teleket \u00e9s az adatv\u00e9delmi szab\u00e1lyzatot a folytat\u00e1shoz.", "OptionIAcceptTermsOfService": "Elfogadom a felhaszn\u00e1l\u00e1si felt\u00e9teleket", "ButtonPrivacyPolicy": "Adatv\u00e9delmi szab\u00e1lyzat", "ButtonTermsOfService": "Felhaszn\u00e1l\u00e1si felt\u00e9telek", - "HeaderDeveloperOptions": "Fejleszt\u0151i be\u00e1ll\u00edt\u00e1sok", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web kliens forr\u00e1s \u00fatvonal:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "M\u00e9dia konvert\u00e1l\u00e1s", "ButtonOrganize": "Rendez\u00e9s", "HeaderSupporterBenefits": "Emby Premiere el\u0151ny\u00f6k", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin k\u00f3d:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "M\u00e9gsem", "ButtonExit": "Kil\u00e9p\u00e9s", "ButtonNew": "\u00daj", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audi\u00f3", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Az el\u00e9r\u00e9shez k\u00e9rlek add meg a PIN k\u00f3dod", "ButtonConfigurePinCode": "Pin k\u00f3d be\u00e1ll\u00edt\u00e1sa", "RegisterWithPayPal": "Regisztr\u00e1ci\u00f3 PayPal haszn\u00e1lat\u00e1val", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Ideiglenes f\u00e1jlok \u00fatvonala:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Ha enged\u00e9lyezve van a f\u00e1jlok .rar vagy .zip kiterjeszt\u00e9ssel m\u00e9dia f\u00e1jlk\u00e9nt lesznek kezelve.", "LabelEnterConnectUserName": "Felhaszn\u00e1l\u00f3n\u00e9v vagy e-mail c\u00edm:", "LabelEnterConnectUserNameHelp": "Ez a Emby online fi\u00f3kod felhaszn\u00e1l\u00f3neve vagy e-mail c\u00edme", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Vegyes tartalom", "FolderTypeMovies": "Filmek", @@ -84,17 +70,15 @@ "LabelContentType": "Tartalom t\u00edpusa:", "TitleScheduledTasks": "\u00dctemezett feladatok", "HeaderSetupLibrary": "M\u00e9dia k\u00f6nyvt\u00e1rak be\u00e1ll\u00edt\u00e1sa", - "ButtonAddMediaFolder": "M\u00e9dia k\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa", "LabelFolderType": "K\u00f6nyvt\u00e1r t\u00edpusa:", "LabelCountry": "Orsz\u00e1g:", "LabelLanguage": "Nyelv:", "LabelTimeLimitHours": "Id\u0151limit (\u00f3ra):", - "HeaderPreferredMetadataLanguage": "El\u0151nyben r\u00e9szes\u00edtett metaadat nyelv", + "HeaderPreferredMetadataLanguage": "Prefer\u00e1lt metaadat nyelv", "LabelSaveLocalMetadata": "Save artwork and metadata into media folders", "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Be\u00e1ll\u00edt\u00e1sok", "TabPassword": "Jelsz\u00f3", "TabLibraryAccess": "M\u00e9diat\u00e1r Hozz\u00e1f\u00e9r\u00e9s", "TabAccess": "Hozz\u00e1f\u00e9r\u00e9s", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Hozz\u00e1f\u00e9r\u00e9s enged\u00e9lyez\u00e9se minden k\u00f6nyvt\u00e1rhoz", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Hi\u00e1nyz\u00f3 \u00e9vad epiz\u00f3dok megjelen\u00edt\u00e9se", - "LabelUnairedMissingEpisodesWithinSeasons": "Nem j\u00e1tszott \u00e9vad epiz\u00f3dok megjelen\u00edt\u00e9se", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", + "LabelUnairedMissingEpisodesWithinSeasons": "Nem vet\u00edtett \u00e9vad epiz\u00f3dok megjelen\u00edt\u00e9se", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Vide\u00f3 lej\u00e1tsz\u00e1s be\u00e1ll\u00edt\u00e1sok", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Lej\u00e1tsz\u00e1si be\u00e1ll\u00edt\u00e1sok", "LabelAudioLanguagePreference": "Audi\u00f3 nyelv\u00e9nek be\u00e1ll\u00edt\u00e1sa:", "LabelSubtitleLanguagePreference": "Felirat nyelv\u00e9nek be\u00e1ll\u00edt\u00e1sa:", @@ -144,15 +131,15 @@ "HeaderUploadNewImage": "\u00daj k\u00e9p felt\u00f6lt\u00e9se", "ImageUploadAspectRatioHelp": "1:1 m\u00e9retar\u00e1ny aj\u00e1nlott. Csak JPG\/PNG.", "MessageNothingHere": "Nincs itt semmi.", - "MessagePleaseEnsureInternetMetadata": "K\u00e9rlek ellen\u0151rizd hogy az Internetes metaadata let\u00f6lt\u00e9s enged\u00e9lyezve van.", - "TabSuggested": "Aj\u00e1nlott", - "TabSuggestions": "Aj\u00e1nl\u00e1s", - "TabLatest": "Legfrissebb", + "MessagePleaseEnsureInternetMetadata": "K\u00e9rlek ellen\u0151rizd hogy az Internetes metaadat let\u00f6lt\u00e9s enged\u00e9lyezve van.", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", + "TabSuggestions": "Aj\u00e1nl\u00e1sok", + "TabLatest": "Leg\u00fajabb", "TabUpcoming": "Hamarosan \u00e9rkezik", "TabShows": "M\u0171sorok", "TabEpisodes": "Epiz\u00f3dok", "TabGenres": "M\u0171fajok", - "TabPeople": "Szem\u00e9lyek", "TabNetworks": "Csatorn\u00e1k", "HeaderUsers": "Felhaszn\u00e1l\u00f3k", "HeaderFilters": "Sz\u0171r\u0151k", @@ -166,6 +153,7 @@ "OptionWriters": "\u00cdr\u00f3k", "OptionProducers": "Producerek", "HeaderResume": "Befejezetlen", + "HeaderContinueWatching": "Vet\u00edt\u00e9s(ek) folytat\u00e1sa", "HeaderNextUp": "K\u00f6vetkez\u0151", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Leg\u00fajabb Epiz\u00f3dok", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Hozz\u00e1adva", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,17 +194,15 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "\u00dctemezett feladatok", "TabMyPlugins": "Telep\u00edtett b\u0151v\u00edtm\u00e9nyek", "TabCatalog": "Katal\u00f3gus", "TitlePlugins": "B\u0151v\u00edtm\u00e9nyek", "HeaderAutomaticUpdates": "Automatikus frissit\u00e9sek", "HeaderNowPlaying": "Most j\u00e1tszott", - "HeaderLatestAlbums": "Legfrissebb albumok", - "HeaderLatestSongs": "Legfrissebb dalok", + "HeaderLatestAlbums": "Leg\u00fajabb albumok", + "HeaderLatestSongs": "Leg\u00fajabb dalok", "HeaderRecentlyPlayed": "Nemr\u00e9g j\u00e1tszott", "HeaderFrequentlyPlayed": "Gyakran j\u00e1tszott", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Vide\u00f3 t\u00edpus:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -232,7 +219,7 @@ "TabTrailers": "El\u0151zetesek", "LabelArtists": "El\u0151ad\u00f3k:", "LabelArtistsHelp": "Separate multiple using ;", - "HeaderLatestTrailers": "Legfrissebb el\u0151zetes", + "HeaderLatestTrailers": "Leg\u00fajabb el\u0151zetes", "OptionHasSpecialFeatures": "Speci\u00e1lis lehet\u0151s\u00e9gek", "OptionImdbRating": "IMDb \u00e9rt\u00e9kel\u00e9s", "OptionParentalRating": "Korhat\u00e1r besorol\u00e1s", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Felhaszn\u00e1l\u00f3 letilt\u00e1sa", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Halad\u00f3 Be\u00e1ll\u00edt\u00e1sok", "LabelName": "N\u00e9v:", "ButtonHelp": "Seg\u00edts\u00e9g", "OptionAllowUserToManageServer": "Szerver kezel\u00e9s enged\u00e9lyez\u00e9se a felhaszn\u00e1l\u00f3nak", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "K\u00f6z\u00f6ss\u00e9gi m\u00e9diamegoszt\u00e1s enged\u00e9lyez\u00e9se", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Megoszt\u00e1s", "HeaderRemoteControl": "T\u00e1v\u00edr\u00e1ny\u00edt\u00e1s", "OptionMissingTmdbId": "Hi\u00e1nyz\u00f3 Tmdb azonos\u00edt\u00f3", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "\u00datvonalak", "TabServer": "Szerver", "TabTranscoding": "\u00c1tk\u00f3dol\u00e1s", - "TitleAdvanced": "Halad\u00f3", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "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", "LabelRunServerAtStartup": "Szerver futtat\u00e1sa ind\u00edt\u00e1skor", @@ -330,15 +312,13 @@ "TabGames": "J\u00e1t\u00e9kok", "TabMusic": "Zene", "TabOthers": "Egyebek", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Filmek", "OptionEpisodes": "Epiz\u00f3dok", "OptionOtherVideos": "Egy\u00e9b Vide\u00f3k", - "TitleMetadata": "Metaadat", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", - "LabelMetadataDownloadLanguage": "El\u0151nyben r\u00e9szes\u00edtett let\u00f6ltend\u0151 nyelv:", + "LabelMetadataDownloadLanguage": "Prefer\u00e1lt let\u00f6ltend\u0151 nyelv:", "ButtonSignIn": "Bejelentkez\u00e9s", "TitleSignIn": "Bejelentkez\u00e9s", "HeaderPleaseSignIn": "K\u00e9rlek jelentkezz be", @@ -350,15 +330,15 @@ "TabCollections": "Gy\u0171jtem\u00e9nyek", "HeaderChannels": "Csatorn\u00e1k", "TabRecordings": "Felv\u00e9telek", - "TabScheduled": "\u00dctemezett", "TabSeries": "Sorozatok", "TabFavorites": "Kedvencek", "TabMyLibrary": "M\u00e9diat\u00e1ram", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "St\u00e1tusz", "TabSettings": "Be\u00e1ll\u00edt\u00e1sok", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Friss\u00edt\u00e9s", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Nap", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -415,10 +394,9 @@ "OptionWakeFromSleep": "Wake from sleep", "LabelEveryXMinutes": "Minden:", "HeaderTvTuners": "Tuners", - "HeaderLatestGames": "Latest Games", + "HeaderLatestGames": "Leg\u00fajabb J\u00e1t\u00e9kok", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "J\u00e1t\u00e9k Rendszer", - "TitleMediaLibrary": "M\u00e9dia K\u00f6nyvt\u00e1r", "TabFolders": "K\u00f6nyvt\u00e1rak", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "El\u0151zetes", "LabelMissing": "Hi\u00e1nyz\u00f3", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", - "OptionMissingEpisode": "Missing Episodes", - "OptionUnairedEpisode": "Unaired Episodes", + "OptionMissingEpisode": "Hi\u00e1nyz\u00f3 Epiz\u00f3dok", + "OptionUnairedEpisode": "Nem vet\u00edtett Epiz\u00f3dok", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,17 +439,16 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Vez\u00e9rl\u0151pult", "TabHome": "Kezd\u0151lap", "TabInfo": "Inf\u00f3", "HeaderLinks": "Linkek", "LinkCommunity": "Community", "LinkGithub": "Github", "LinkApi": "Api", - "LabelFriendlyServerName": "Friendly server name:", + "LabelFriendlyServerName": "K\u00f6nnyen megjegyezhet\u0151 szerver n\u00e9v:", "LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.", - "LabelPreferredDisplayLanguage": "Preferred display language:", - "LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.", + "LabelPreferredDisplayLanguage": "Prefer\u00e1lt megjelen\u00edtend\u0151 nyelv:", + "LabelPreferredDisplayLanguageHelp": "Az Emby ford\u00edt\u00e1sa egy folyamatban l\u00e9v\u0151 project.", "LabelReadHowYouCanContribute": "Learn how you can contribute.", "ButtonSubmit": "Elk\u00fcld", "ButtonCreate": "Create", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Rendez\u00e9s", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -555,11 +521,10 @@ "OptionCopy": "Copy", "OptionMove": "Move", "LabelTransferMethodHelp": "Copy or move files from the watch folder", - "HeaderLatestNews": "Legfrissebb H\u00edrek", + "HeaderLatestNews": "Friss h\u00edrek", "HeaderRunningTasks": "Fut\u00f3 Folyamatok", "HeaderActiveDevices": "Akt\u00edv Eszk\u00f6z\u00f6k", "HeaderPendingInstallations": "F\u00fcgg\u0151 Telep\u00edt\u00e9sek", - "HeaderServerInformation": "Szerver Inform\u00e1ci\u00f3", "ButtonRestartNow": "\u00dajraind\u00edt\u00e1s Most", "ButtonRestart": "\u00dajraind\u00edt\u00e1s", "ButtonShutdown": "Le\u00e1ll\u00edt\u00e1s", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Friss\u00edt\u00e9s el\u00e9rhet\u0151", - "NotificationOptionApplicationUpdateInstalled": "Program friss\u00edt\u00e9s telep\u00edtve", - "NotificationOptionPluginUpdateInstalled": "B\u0151v\u00edtm\u00e9ny friss\u00edt\u00e9s telep\u00edtve", - "NotificationOptionPluginInstalled": "B\u0151v\u00edtm\u00e9ny telep\u00edtve", - "NotificationOptionPluginUninstalled": "B\u0151v\u00edtm\u00e9ny elt\u00e1vol\u00edtva", - "NotificationOptionVideoPlayback": "Vide\u00f3 elind\u00edtva", - "NotificationOptionAudioPlayback": "Zene elind\u00edtva", - "NotificationOptionGamePlayback": "J\u00e1t\u00e9k elind\u00edtva", - "NotificationOptionVideoPlaybackStopped": "Vide\u00f3 meg\u00e1ll\u00edtva", - "NotificationOptionAudioPlaybackStopped": "Zene meg\u00e1ll\u00edtva", - "NotificationOptionGamePlaybackStopped": "J\u00e1t\u00e9k meg\u00e1ll\u00edtva", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Telep\u00edt\u00e9si hiba", - "NotificationOptionNewLibraryContent": "\u00daj tartalom hozz\u00e1adva", - "NotificationOptionCameraImageUploaded": "Kamera k\u00e9p felt\u00f6ltve", - "NotificationOptionUserLockedOut": "Felhaszn\u00e1l\u00f3 tiltva", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "\u00dajraind\u00edt\u00e1s sz\u00fcks\u00e9ges", "LabelNotificationEnabled": "\u00c9rtes\u00edt\u00e9s enged\u00e9lyez\u00e9se", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "\u00c9rtes\u00edt\u00e9s k\u00fcld\u00e9se a k\u00f6vetkez\u0151knek:", @@ -662,21 +606,19 @@ "ButtonPrevious": "El\u0151z\u0151", "LabelGroupMoviesIntoCollections": "Filmek csoportos\u00edt\u00e1sa gy\u0171jtem\u00e9nyekbe", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "B\u0151v\u00edtm\u00e9ny hiba", "ButtonVolumeUp": "Hanger\u0151 fel", "ButtonVolumeDown": "Hanger\u0151 le", "HeaderLatestMedia": "Leg\u00fajabb M\u00e9dia", "OptionNoSubtitles": "Nincs felirat", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Gy\u0171jtem\u00e9nyek", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "HeaderResponseProfile": "Response Profile", "LabelType": "Type:", - "LabelProfileContainer": "Container:", - "LabelProfileVideoCodecs": "Video codecs:", + "LabelProfileContainer": "T\u00e1rol\u00f3:", + "LabelProfileVideoCodecs": "Vide\u00f3 k\u00f3dekek:", "LabelProfileAudioCodecs": "Audi\u00f3 k\u00f3dekek:", - "LabelProfileCodecs": "Codecs:", + "LabelProfileCodecs": "K\u00f3dek:", "HeaderDirectPlayProfile": "Direct Play Profile", "HeaderTranscodingProfile": "Transcoding Profile", "HeaderCodecProfile": "Codec Profile", @@ -694,8 +636,8 @@ "LabelSupportedMediaTypes": "Supported Media Types:", "HeaderIdentification": "Identification", "TabDirectPlay": "Direct Play", - "TabContainers": "Containers", - "TabCodecs": "Codecs", + "TabContainers": "T\u00e1rol\u00f3", + "TabCodecs": "K\u00f3dek", "TabResponses": "Responses", "HeaderProfileInformation": "Profile Information", "LabelEmbedAlbumArtDidl": "Embed album art in Didl", @@ -744,8 +686,8 @@ "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", "LabelSonyAggregationFlags": "Sony aggregation flags:", "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", - "LabelTranscodingContainer": "Container:", - "LabelTranscodingVideoCodec": "Video codec:", + "LabelTranscodingContainer": "T\u00e1rol\u00f3:", + "LabelTranscodingVideoCodec": "Vide\u00f3 k\u00f3dek:", "LabelTranscodingAudioCodec": "Audi\u00f3 k\u00f3dek:", "OptionEnableM2tsMode": "Enable M2ts mode", "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", @@ -756,7 +698,7 @@ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "TabSubtitles": "Feliratok", - "TabChapters": "Fejezetek", + "TabChapters": "Jelenetek", "LabelOpenSubtitlesUsername": "Open Subtitles username:", "LabelOpenSubtitlesPassword": "Open Subtitles password:", "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", @@ -770,9 +712,8 @@ "LabelMessageText": "\u00dczenet sz\u00f6vege:", "LabelMessageTitle": "\u00dczenet c\u00edme:", "MessageNoAvailablePlugins": "No available plugins.", - "LabelDisplayPluginsFor": "Display plugins for:", + "LabelDisplayPluginsFor": "Megjelen\u00edtend\u0151 b\u0151v\u00edtm\u00e9nyek:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,17 +725,14 @@ "LabelEndingEpisodeNumberPlain": "Befejez\u0151 epiz\u00f3d sz\u00e1ma", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", - "TabLanguages": "Languages", + "TabLanguages": "Nyelv", "TabAppSettings": "App Settings", "LabelEnableThemeSongs": "Enable theme songs", "LabelEnableBackdrops": "Enable backdrops", "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Kezd\u0151 Oldal", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,11 +741,10 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Folytat\u00e1s", - "OptionLatestMedia": "Latest media", + "OptionLatestMedia": "Leg\u00fajabb m\u00e9dia", "OptionLatestChannelMedia": "Latest channel items", "HeaderLatestChannelItems": "Latest Channel Items", "OptionNone": "None", @@ -815,53 +752,21 @@ "HeaderReports": "Napl\u00f3k", "HeaderSettings": "Be\u00e1ll\u00edt\u00e1sok", "OptionDefaultSort": "Alap\u00e9rtelmezett", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "K\u00f6vetkez\u0151", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Emby Premiere beszerz\u00e9se", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Lej\u00e1tsz\u00e1si list\u00e1k", "ViewTypeMovies": "Filmek", "ViewTypeTvShows": "TV", "ViewTypeGames": "J\u00e1t\u00e9kok", "ViewTypeMusic": "Zene", - "ViewTypeMusicGenres": "M\u0171fajok", - "ViewTypeMusicArtists": "M\u0171v\u00e9szek", - "ViewTypeBoxSets": "Gy\u0171jtem\u00e9nyek", - "ViewTypeChannels": "Csatorn\u00e1k", - "ViewTypeLiveTV": "\u00c9l\u0151 TV", - "ViewTypeLiveTvNowPlaying": "Most J\u00e1tszott", - "ViewTypeLatestGames": "Leg\u00fajabb J\u00e1t\u00e9kok", - "ViewTypeRecentlyPlayedGames": "Legut\u00f3bb J\u00e1tszott", - "ViewTypeGameFavorites": "Kedvencek", - "ViewTypeGameSystems": "J\u00e1t\u00e9k Rendszer", - "ViewTypeGameGenres": "M\u0171fajok", - "ViewTypeTvResume": "Folytat\u00e1s", - "ViewTypeTvNextUp": "K\u00f6vetkez\u0151", - "ViewTypeTvLatest": "Leg\u00fajabb", - "ViewTypeTvShowSeries": "Sorozat", - "ViewTypeTvGenres": "M\u0171fajok", - "ViewTypeTvFavoriteSeries": "Kedvenc Sorozat", - "ViewTypeTvFavoriteEpisodes": "Kedvenc R\u00e9szek", - "ViewTypeMovieResume": "Folytat\u00e1s", - "ViewTypeMovieLatest": "Leg\u00fajabb", - "ViewTypeMovieMovies": "Filmek", - "ViewTypeMovieCollections": "Gy\u0171jtem\u00e9nyek", - "ViewTypeMovieFavorites": "Kedvencek", - "ViewTypeMovieGenres": "M\u0171fajok", - "ViewTypeMusicLatest": "Leg\u00fajabb", - "ViewTypeMusicPlaylists": "Lej\u00e1tsz\u00e1si list\u00e1k", - "ViewTypeMusicAlbums": "Albumok", - "ViewTypeMusicAlbumArtists": "Album El\u0151ad\u00f3k", "HeaderOtherDisplaySettings": "Megjelen\u00edt\u00e9si Be\u00e1ll\u00edt\u00e1sok", "ViewTypeMusicSongs": "Dalok", "ViewTypeMusicFavorites": "Kedvencek", @@ -871,7 +776,7 @@ "HeaderMyViews": "Saj\u00e1t N\u00e9zetek", "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", - "OptionDisplayAdultContent": "Display adult content", + "OptionDisplayAdultContent": "Feln\u0151tt tartalom megjelen\u00edt\u00e9se", "OptionLibraryFolders": "M\u00e9dia k\u00f6nyvt\u00e1rak", "TitleRemoteControl": "T\u00e1v\u00edr\u00e1ny\u00edt\u00e1s", "OptionLatestTvRecordings": "Latest recordings", @@ -896,14 +801,13 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", "OptionList": "Lista", "TabDashboard": "Vez\u00e9rl\u0151pult", - "TitleServer": "Server", + "TitleServer": "Szerver", "LabelCache": "Cache:", "LabelLogs": "Logs:", "LabelMetadata": "Metaadat:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "Felhaszn\u00e1l\u00f3", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Fejezet {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "N\u00e9zet", - "TabSort": "Sort", "TabFilter": "Sz\u0171r\u0151", "ButtonView": "Megtekint", "LabelPageSize": "Elemsz\u00e1m limit:", @@ -937,7 +839,7 @@ "HeaderAdvanced": "Halad\u00f3", "ButtonSync": "Sync", "TabScheduledTasks": "\u00dctemezett feladatok", - "HeaderChapters": "Fejezetek", + "HeaderChapters": "Jelenetek", "HeaderResumeSettings": "Resume Settings", "TabSync": "Sync", "TitleUsers": "Felhaszn\u00e1l\u00f3k", @@ -945,18 +847,15 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Bez\u00e1r", - "LabelAllLanguages": "All languages", + "LabelAllLanguages": "\u00d6sszes nyelv", "HeaderBrowseOnlineImages": "Browse Online Images", "LabelSource": "Source:", "OptionAll": "All", "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Dobd ide a k\u00e9pet", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Hi\u00e1nyz\u00f3 korhat\u00e1r besorol\u00e1s", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Jelent\u00e9s:", "OptionReportSongs": "Dalok", @@ -991,36 +889,23 @@ "OptionReportAlbums": "Albumok", "ButtonMore": "Tov\u00e1bb", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} elkezdve", - "ScheduledTaskCancelledWithName": "{0} megszak\u00edtva", - "ScheduledTaskCompletedWithName": "{0} befejezve", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} telep\u00edtve", "PluginUpdatedWithName": "{0} friss\u00edtve", "PluginUninstalledWithName": "{0} elt\u00e1vol\u00edtva", - "ScheduledTaskFailedWithName": "{0} hiba", - "DeviceOnlineWithName": "{0} kapcsol\u00f3dva", - "UserOnlineFromDevice": "{0} akt\u00edv err\u0151l {1}", - "DeviceOfflineWithName": "{0} sz\u00e9tkapcsolt", - "UserOfflineFromDevice": "{0} kil\u00e9pett innen {1}", - "SubtitlesDownloadedForItem": "Felirat let\u00f6lt\u00e9se ehhez {0}", - "SubtitleDownloadFailureForItem": "Nem siker\u00fcl a felirat let\u00f6lt\u00e9s ehhez {0}", + "UserOnlineFromDevice": "{0} bejelentkezett innen: {1}", + "UserOfflineFromDevice": "{0} kijelentkezett innen: {1}", "LabelRunningTimeValue": "Fut\u00e1si id\u0151: {0}", "LabelIpAddressValue": "IP c\u00edm: {0}", "UserLockedOutWithName": "A k\u00f6vetkez\u0151 felhaszn\u00e1l\u00f3 tiltva {0}", "UserConfigurationUpdatedWithName": "A k\u00f6vetkez\u0151 felhaszn\u00e1l\u00f3 be\u00e1ll\u00edt\u00e1sai friss\u00edtve {0}", "UserCreatedWithName": "Felhaszn\u00e1l\u00f3 {0} l\u00e9trehozva", - "UserPasswordChangedWithName": "Jelsz\u00f3 m\u00f3dos\u00edtva ennek a felhaszn\u00e1l\u00f3nak {0}", "UserDeletedWithName": "Felhaszn\u00e1l\u00f3 {0} t\u00f6r\u00f6lve", "MessageServerConfigurationUpdated": "Szerver be\u00e1ll\u00edt\u00e1sok friss\u00edtve", - "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", - "MessageApplicationUpdated": "Emby Server friss\u00edtve", + "MessageNamedServerConfigurationUpdatedWithValue": "Szerver konfigur\u00e1ci\u00f3s r\u00e9sz {0} friss\u00edtve", + "MessageApplicationUpdated": "Emby Szerver friss\u00edtve", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} megkezdte j\u00e1tszani a(z) {1}", - "UserStoppedPlayingItemWithValues": "{0} befejezte a(z) {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", - "HeaderRecentActivity": "Legut\u00f3bbi Tev\u00e9kenys\u00e9gek", + "HeaderRecentActivity": "Legut\u00f3bbi esem\u00e9nyek", "HeaderPeople": "Emberek", "HeaderDownloadPeopleMetadataFor": "Download biography and images for:", "OptionComposers": "Composers", @@ -1051,39 +936,30 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "J\u00e1t\u00e9kid\u0151 (perc):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Orsz\u00e1gok", "HeaderGenres": "M\u0171fajok", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "St\u00fadi\u00f3k", "HeaderTags": "C\u00edmk\u00e9k", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "Nincs El\u0151zetes", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Rendez\u0151", "OptionProducer": "Producer", - "OptionWriter": "\u00cdr\u00f3", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "M\u00e9dia Inf\u00f3", "HeaderPhotoInfo": "Photo Info", - "HeaderInstall": "Telep\u00edt", + "HeaderInstall": "Telep\u00edt\u00e9s", "LabelSelectVersionToInstall": "V\u00e1laszd ki a verzi\u00f3t a telep\u00edt\u00e9shez:", "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.", "HeaderReviews": "Reviews", - "HeaderDeveloperInfo": "Developer Info", - "HeaderRevisionHistory": "Revision History", + "HeaderDeveloperInfo": "Fejleszt\u0151i inform\u00e1ci\u00f3k", + "HeaderRevisionHistory": "M\u00f3dos\u00edt\u00e1si el\u0151zm\u00e9nyek", "ButtonViewWebsite": "View website", "HeaderXmlSettings": "Xml Settings", "HeaderXmlDocumentAttributes": "Xml Document Attributes", @@ -1108,7 +984,7 @@ "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", "OptionResElement": "res element", "OptionEmbedSubtitles": "Embed within container", - "OptionExternallyDownloaded": "External download", + "OptionExternallyDownloaded": "K\u00fcls\u0151 let\u00f6lt\u00e9s", "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", "LabelSubtitleFormatHelp": "P\u00e9ld\u00e1ul: srt", "ButtonLearnMore": "Learn more", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Sz\u00fcl\u0151i Fel\u00fcgyelet", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Filmek", "HeaderUpcomingMovies": "K\u00f6zelg\u0151 Filmek", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "F\u00e9nyk\u00e9pek", - "TabVideos": "Vide\u00f3k", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1245,19 +1118,18 @@ "ButtonSignInWithConnect": "Bel\u00e9p\u00e9s Emby Connect seg\u00edts\u00e9g\u00e9vel", "ButtonConnect": "Connect", "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", + "LabelServerHostHelp": "192.168.1.100 vagy https:\/\/myserver.com", "LabelServerPort": "Port:", "HeaderNewServer": "\u00daj Szerver", - "ButtonChangeServer": "Change Server", - "HeaderConnectToServer": "Connect to Server", + "ButtonChangeServer": "Szerver v\u00e1lt\u00e1s", + "HeaderConnectToServer": "Kapcsol\u00f3d\u00e1s a Szerverhez", "OptionReportList": "Lista n\u00e9zet", "OptionReportStatistics": "Statisztika", "OptionReportGrouping": "Csoportos\u00edt\u00e1s", "HeaderExport": "Export", "HeaderColumns": "Oszlopok", "ButtonReset": "Reset", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", + "OptionEnableExternalVideoPlayers": "K\u00fcls\u0151 vide\u00f3 lej\u00e1tsz\u00f3k enged\u00e9lyez\u00e9se", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,13 +1144,12 @@ "HeaderOverview": "\u00c1ttekint\u00e9s", "HeaderShortOverview": "R\u00f6vid \u00c1ttekint\u00e9s", "HeaderType": "T\u00edpus", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", - "HeaderExternalServices": "External Services", + "HeaderExternalServices": "K\u00fcls\u0151 Szolg\u00e1ltat\u00e1sok", "LabelTunerIpAddress": "Tuner IP Address:", - "TabExternalServices": "External Services", + "TabExternalServices": "K\u00fcls\u0151 Szolg\u00e1ltat\u00e1sok", "HeaderGuideProviders": "Guide Providers", "AddGuideProviderHelp": "Add a source for TV Guide information", "LabelZipCode": "Zip Code:", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Ism\u00e9tl\u00e9s", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Azonos\u00edtatlan", "HeaderImagePrimary": "Els\u0151dleges", "HeaderImageBackdrop": "H\u00e1tt\u00e9r", "HeaderImageLogo": "Logo", @@ -1300,7 +1170,7 @@ "ButtonProfileHelp": "Set your profile image and password.", "HeaderHomeScreenSettings": "Home Screen settings", "HeaderProfile": "Profile", - "HeaderLanguage": "Language", + "HeaderLanguage": "Nyelv", "LabelTranscodingThreadCount": "Transcoding thread count:", "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.", "OptionMax": "Max", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Feliratok", "HeaderVideos": "Vide\u00f3k", @@ -1331,24 +1201,21 @@ "HeadersFolders": "K\u00f6nyvt\u00e1rak", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Halad\u00f3", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Be\u00e1ll\u00edt\u00e1sok mentve.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Felhaszn\u00e1l\u00f3k", "Delete": "T\u00f6r\u00f6l", "Password": "Jelsz\u00f3", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "K\u00e9rlek t\u00e1mogasd az Embyt.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1384,27 +1251,23 @@ "ButtonSelectView": "Select view", "HeaderSelectDate": "Select Date", "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "LabelFromHelp": "Example: {0} (on the server)", + "LabelFromHelp": "P\u00e9ld\u00e1ul: {0} (a szerveren)", "HeaderMyMedia": "M\u00e9diat\u00e1ram", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", + "PluginCategoryContentProvider": "Tartalomszolg\u00e1ltat\u00f3k", + "PluginCategoryScreenSaver": "K\u00e9perny\u0151v\u00e9d\u0151k", + "PluginCategoryTheme": "Kin\u00e9zetek", "PluginCategorySync": "Sync", "PluginCategorySocialIntegration": "Social Networks", "PluginCategoryNotifications": "Notifications", "PluginCategoryMetadata": "Metaadat", "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", + "PluginCategoryChannel": "Csatorn\u00e1k", "HeaderSearch": "Search", "ValueDateCreated": "Date created: {0}", "LabelArtist": "Artist", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "\u00dctemezett feladatok", "MessageItemsAdded": "Elem hozz\u00e1adva", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "\u00dcdv\u00f6z\u00f6llek az Emby Szerver Vez\u00e9rl\u0151pultj\u00e1ban", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1460,10 +1322,10 @@ "HeaderSelectSubtitles": "V\u00e1lassz Feliratot", "ButtonMarkForRemoval": "Remove from device", "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", + "LabelDefaultStream": "(Alap\u00e9rtelmezett)", "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", + "LabelDefaultForcedStream": "(Alap\u00e9rtelmezett\/\u00c9getett)", + "LabelUnknownLanguage": "Ismeretlen nyelv", "ButtonMute": "N\u00e9m\u00edt", "ButtonUnmute": "Unmute", "ButtonPlaylist": "Playlist", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "Tov\u00e1bbi Inform\u00e1ci\u00f3", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Ami\u00e9rt tettszett {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Kedvenc Albumok", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1546,7 +1401,7 @@ "HeaderRestart": "\u00dajraind\u00edt\u00e1s", "HeaderShutdown": "Le\u00e1ll\u00edt\u00e1s", "MessageConfirmRestart": "Biztosan \u00fajra szeretn\u00e9d ind\u00edtani az Emby Szervert?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", + "MessageConfirmShutdown": "Biztosan le akarod \u00e1ll\u00edtani az Emby Szervert?", "ValueItemCount": "{0} item", "ValueItemCountPlural": "{0} items", "NewVersionOfSomethingAvailable": "Egy \u00fajabb verzi\u00f3 {0} el\u00e9rhet\u0151!", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audi\u00f3: {0}", "LabelVideoCodec": "Vide\u00f3: {0}", - "LabelLocalAccessUrl": "Helyi hozz\u00e1f\u00e9r\u00e9s: {0}", - "LabelRemoteAccessUrl": "T\u00e1voli hozz\u00e1f\u00e9r\u00e9s: {0}", + "LabelLocalAccessUrl": "Helyi (LAN) hozz\u00e1f\u00e9r\u00e9s: {0}", + "LabelRemoteAccessUrl": "T\u00e1voli (WAN) hozz\u00e1f\u00e9r\u00e9s: {0}", "LabelRunningOnPort": "A k\u00f6vetkez\u0151 {0} http porton futtatva.", - "LabelRunningOnPorts": "A k\u00f6vetkez\u0151 {0} http, \u00e9s {1} https porton futtatva.", + "LabelRunningOnPorts": "A k\u00f6vetkez\u0151 http: {0}, \u00e9s https: {1} porton futtatva.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Jelenlegi Felirat", "ButtonRemoteControl": "T\u00e1v\u00edr\u00e1ny\u00edt\u00e1s", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1600,10 +1454,10 @@ "ButtonRevoke": "Revoke", "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio K\u00f3dek: {0}", + "ValueContainer": "T\u00e1rol\u00f3: {0}", + "ValueAudioCodec": "Audi\u00f3 K\u00f3dek: {0}", "ValueVideoCodec": "Vide\u00f3 k\u00f3dek: {0}", - "ValueCodec": "Codec: {0}", + "ValueCodec": "K\u00f3dek: {0}", "ValueConditions": "Conditions: {0}", "LabelAll": "All", "HeaderDeleteImage": "Delete Image", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "K\u00e9rlek fogadd el a felhaszn\u00e1l\u00e1si felt\u00e9teleket a folytat\u00e1shoz.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Tartalom t\u00edpus\u00e1nak megv\u00e1ltoztat\u00e1sa", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Min\u0151s\u00e9g", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "V\u00e1lassz lej\u00e1tsz\u00f3t: ", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Vide\u00f3 Hiba", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Speci\u00e1lis", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "J\u00e1t\u00e9kid\u0151", "HeaderParentalRating": "Korhat\u00e1r besorol\u00e1s", "HeaderReleaseDate": "Megjelen\u00e9s d\u00e1tuma", - "HeaderDateAdded": "Hozz\u00e1adva", "HeaderSeries": "Sorozatok:", "HeaderSeason": "\u00c9vad", "HeaderSeasonNumber": "\u00c9vad sz\u00e1ma", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Tartalom t\u00edpus\u00e1nak megv\u00e1ltoztat\u00e1sa", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1761,7 +1604,7 @@ "ValueOneSeries": "1 series", "ValueSeriesCount": "{0} series", "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", + "ValueEpisodeCount": "{0} epiz\u00f3d", "ValueOneGame": "1 game", "ValueGameCount": "{0} games", "ValueOneAlbum": "1 album", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "Unaired", "HeaderMissing": "Missing", "ButtonWebsite": "Website", - "ValueSeriesYearToPresent": "{0}-Napjainkig", + "ValueSeriesYearToPresent": "{0} - Napjainkig", "ValueAwards": "D\u00edjak: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "St\u00fadi\u00f3: {0}", @@ -1800,12 +1641,12 @@ "MediaInfoLongitude": "Longitude", "MediaInfoShutterSpeed": "Shutter speed", "MediaInfoSoftware": "Software", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "M\u00e9g t\u00f6bb hasonl\u00f3", "HeaderMovies": "Filmek", "HeaderAlbums": "Albumok", "HeaderGames": "Games", "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", + "HeaderEpisodes": "Epiz\u00f3dok", "HeaderSeasons": "\u00c9vad", "HeaderTracks": "S\u00e1vok", "HeaderItems": "Items", @@ -1817,19 +1658,19 @@ "MediaInfoPath": "\u00datvonal", "MediaInfoFile": "File", "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", + "MediaInfoContainer": "T\u00e1rol\u00f3", + "MediaInfoDefault": "Alap\u00e9rtelmezett", "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", + "MediaInfoExternal": "K\u00fcls\u0151", "MediaInfoTimestamp": "Timestamp", "MediaInfoPixelFormat": "Pixel format", "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", + "MediaInfoSampleRate": "Mintav\u00e9teli r\u00e1ta", "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", + "MediaInfoChannels": "Csatorn\u00e1k", "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", + "MediaInfoLanguage": "Nyelv", + "MediaInfoCodec": "K\u00f3dek", "MediaInfoCodecTag": "Codec tag", "MediaInfoProfile": "Profile", "MediaInfoLevel": "Level", @@ -1837,7 +1678,7 @@ "MediaInfoResolution": "Felbont\u00e1s", "MediaInfoAnamorphic": "Anamorphic", "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", + "MediaInfoFramerate": "Filmkocka", "MediaInfoStreamTypeAudio": "Audi\u00f3", "MediaInfoStreamTypeData": "Data", "MediaInfoStreamTypeVideo": "Vide\u00f3", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Szak\u00e9rt\u0151", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extr\u00e1k", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Min\u0151s\u00e9g:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1934,25 +1765,18 @@ "LabelBitrateMbps": "Bitrate (Mbps):", "EmbyIntroDownloadMessage": "To download and install the free Emby Server visit {0}.", "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.", - "ButtonNewServer": "New Server", + "ButtonNewServer": "\u00daj Szerver", "MyDevice": "My Device", "ButtonRemote": "T\u00e1vir\u00e1ny\u00edt\u00f3", "TabCast": "Szerepl\u0151k ", "TabScenes": "Jelenetek", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", + "ButtonServer": "Szerver", "HeaderLibrary": "M\u00e9diat\u00e1r", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Szerver Kezel\u00e9s", "ButtonPreferences": "Preferences", @@ -1975,20 +1799,14 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Emby Premiere beszerz\u00e9se", - "ButtonClosePlayVideo": "Bez\u00e1r\u00e1s \u00e9s lej\u00e1tsz\u00e1s", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", + "HeaderTopPlugins": "Legjobb b\u0151v\u00edtm\u00e9nyek", "ButtonOther": "Other", "HeaderSortBy": "Megjelen\u00edt\u00e9s", "HeaderSortOrder": "Sort Order", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "\u00daj felhaszn\u00e1l\u00f3", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Most j\u00e1tszott", "HeaderLatestMovies": "Leg\u00fajabb Filmek", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} k\u00f6nyvt\u00e1r", "ButtonAddMediaLibrary": "\u00daj M\u00e9dia K\u00f6nyvt\u00e1r felv\u00e9tele", "ButtonManageFolders": "K\u00f6nyvt\u00e1rak kezel\u00e9se", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Lej\u00e1tsz\u00e1s k\u00fcls\u0151 lej\u00e1tsz\u00f3val", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Leg\u00fajabb {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/id.json b/dashboard-ui/strings/id.json index ca7522ca88..cbf91a1b52 100644 --- a/dashboard-ui/strings/id.json +++ b/dashboard-ui/strings/id.json @@ -1,8 +1,6 @@ { - "LabelExit": "Keluar", - "LabelApiDocumentation": "Dokumentasi Api", - "LabelBrowseLibrary": "Telusuri Pustaka", - "LabelConfigureServer": "Konfigurasi Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Sebelumnya", "LabelFinish": "Selesai", "LabelNext": "Berikutnya", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Nama depan anda:", "MoreUsersCanBeAddedLater": "Pengguna lainnya dapat ditambahkan di Dashboard.", "UserProfilesIntro": "Emby mendukung profil pengguna, memungkinkan setiap pengguna memiliki tampilan mereka sendiri, kondisi pemutaran dan pengawasan orang tua.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "Windows Service sudah terinstall.", - "WindowsServiceIntro1": "Server Emby umumnya berjalan sebagai aplikasi desktop dengan tray icon, tetapi jika anda inginkan dapat juga berjalan di latar, ini dapat dilakukan melalui windows service.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "Itu semua yang kami butuhkan saat ini. Emby sudah memulai mengkoleksi informasi pustaka media. Lihatlah beberapa aplikasi kami, kemudian klik Selesai<\/b> untuk menuju ke Dashboard Server<\/b>", "LabelConfigureSettings": "Ubah pengaturan", - "LabelEnableAutomaticPortMapping": "Aktifkan automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP memungkinkan konfigurasi router otomatis untuk akses jarak jauh yang mudah. Ini mungkin tidak bekerja dengan beberapa model router.", "HeaderTermsOfService": "Persyaratan Layanan Emby", "MessagePleaseAcceptTermsOfService": "Harap menerima persyaratan layanan dan kebijakan privasi sebelum melanjutkan.", "OptionIAcceptTermsOfService": "Saya menerima persyaratan layanan.", "ButtonPrivacyPolicy": "Kebijakan privasi", "ButtonTermsOfService": "Persyaratan Layanan", - "HeaderDeveloperOptions": "Opsi Pengembang", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Alamat sumber klien web:", - "LabelDashboardSourcePathHelp": "Jika menjalankan server dari sumber, menentukan path ke folder dashboard-ui. Semua file klien web akan diambil dari lokasi ini.", "ButtonConvertMedia": "Konversi media", "ButtonOrganize": "Mengatur", "HeaderSupporterBenefits": "Manfaat Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Untuk menambahkan pengguna yang belum terdaftar, Anda harus terlebih dahulu menghubungkan account mereka ke Emby Connect dari halaman profil pengguna mereka.", "LabelPinCode": "Kode Pin:", "OptionHideWatchedContentFromLatestMedia": "Menyembunyikan konten yang sudah ditonton dari media terbaru", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Cancel", "ButtonExit": "Keluar", "ButtonNew": "New", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Untuk masuk, silahkan masukkan kode pin mudah.", "ButtonConfigurePinCode": "Atur kode pin", "RegisterWithPayPal": "Registrasi menggunakan PayPal", - "HeaderEnjoyDayTrial": "Nikmati percobaan gratis selama 14 hari", "LabelSyncTempPath": "Alamat file sementara:", "LabelSyncTempPathHelp": "Tentukan sendiri folder kerja sinkron. Media dikonversi diciptakan selama proses sinkronisasi akan disimpan di sini.", "LabelCustomCertificatePath": "Atur alamat sertifikat:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Jika diaktifkan, file berekstensi .rar dan .zip akan terdeteksi sebagai file media,", "LabelEnterConnectUserName": "Username atau email:", "LabelEnterConnectUserNameHelp": "Ini adalah username atau email akun online Emby Anda.", - "LabelEnableEnhancedMovies": "Aktifkan menampilkan film ditingkatkan", - "LabelEnableEnhancedMoviesHelp": "Saat diaktifkan, film akan ditampilkan sebagai folder untuk memasukkan trailer, ektra, pemain & kru, dan konten terkait lainnya.", "HeaderSyncJobInfo": "Kerja Sinkron", "FolderTypeMixed": "Kontent Campuran", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Tipe konten:", "TitleScheduledTasks": "Jadwal Kerja", "HeaderSetupLibrary": "Atur pustaka media Anda", - "ButtonAddMediaFolder": "Tambah folder media", "LabelFolderType": "Tipe folder:", "LabelCountry": "Negara:", "LabelLanguage": "Bahasa:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Menyimpan artwork dan metadata langsung ke folder media akan meletakkan mereka di tempat yang mudah diedit.", "LabelDownloadInternetMetadata": "Unduh artwork dan metadata dari internet", "LabelDownloadInternetMetadataHelp": "Server Emby dapat mengunduh informasi tentang media Anda untuk mengaktifkan presentasi yang lebih kaya.", - "TabPreferences": "Preferensi", "TabPassword": "Password", "TabLibraryAccess": "Akses Pustaka", "TabAccess": "Akses", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Aktifkan akses ke semua pustaka", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Tidak ada disini.", "MessagePleaseEnsureInternetMetadata": "Pastikan unduh metadata dari internet diaktifkan.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Episodes", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Kecocokan Cerdas", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/it.json b/dashboard-ui/strings/it.json index db67e8f48b..2c7aa361f1 100644 --- a/dashboard-ui/strings/it.json +++ b/dashboard-ui/strings/it.json @@ -1,8 +1,6 @@ { - "LabelExit": "Esci", - "LabelApiDocumentation": "Documentazione Api", - "LabelBrowseLibrary": "Esplora la libreria", - "LabelConfigureServer": "Configura Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Precedente", "LabelFinish": "Finito", "LabelNext": "Prossimo", @@ -11,28 +9,16 @@ "ThisWizardWillGuideYou": "Questa procedura ti guider\u00e0 durante il processo di installazione. Per iniziare, per favore seleziona la tua lingua preferita", "TellUsAboutYourself": "Parlaci di te", "ButtonQuickStartGuide": "Guida rapida", - "LabelYourFirstName": "Nome", - "MoreUsersCanBeAddedLater": "Puoi aggiungere altri utenti in un secondo momento all'interno del pannello di configurazione", - "UserProfilesIntro": "Emby include il supporto integrato per i profili utente, che permette ad ogni utente di avere le proprie impostazioni di visualizzazione, stato di riproduzione e parental control.", - "LabelWindowsService": "Servizio Windows", - "AWindowsServiceHasBeenInstalled": "Servizio Windows Installato", - "WindowsServiceIntro1": "Il Server Emby normalmente viene eseguito come un'applicazione del desktop con un'icona sulla barra in basso a destra, ma in alternativa, se si preferisce farlo funzionare come servizio in background, pu\u00f2 essere avviato dal pannello di controllo dei servizi di Windows.", - "WindowsServiceIntro2": "Se stai utilizzando il server come servizio windows ricorda che non puoi utilizzarlo contemporaneamente anche come icona sulla tray bar: se vuoi usare Emby come servizio devi prima uscire. Il servizio windows deve inoltre essere configurato con privilegi di amministratore attraverso il pannello di controllo. Quando esegui il server come servizio Windows devi inoltre essere certo che l'account che esegue il servizio abbia accesso alle cartelle dove sono presenti i tuoi file multimediali.", - "WizardCompleted": "Questo \u00e8 tutto ci\u00f2 che serve per ora. Emby ha iniziato a raccogliere informazioni sulla tua libreria di file multimediali. Scopri alcune delle nostre app, quindi clicca su Fine<\/b> per visualizzare il Pannello di controllo del server<\/b>", + "LabelYourFirstName": "Il tuo nome:", + "MoreUsersCanBeAddedLater": "Altri utenti possono essere aggiunti in un secondo momento dal Pannello di Controllo.", + "UserProfilesIntro": "Emby include il supporto integrato per i profili utente, che permette ad ogni utente di avere le proprie impostazioni di visualizzazione, stato di riproduzione e controlli parentali.", + "WizardCompleted": "Questo \u00e8 tutto ci\u00f2 che serve per ora. Emby ha iniziato a raccogliere informazioni sulla tua libreria di media. Scopri alcune delle nostre app, quindi clicca su Fine<\/b> per visualizzare il Pannello di Controllo del server<\/b>.", "LabelConfigureSettings": "Configura le impostazioni", - "LabelEnableAutomaticPortMapping": "Abilita mappatura automatica delle porte", - "LabelEnableAutomaticPortMappingHelp": "UPnP consente la configurazione automatica del router per facilitare l'accesso remoto. Questa opzione potrebbe non funzionare con alcuni modelli di router.", "HeaderTermsOfService": "Termini di servizio di Emby", "MessagePleaseAcceptTermsOfService": "Per favore accetta i termini di servizio e l'informativa sulla privacy prima di continuare.", "OptionIAcceptTermsOfService": "Accetto i termini di servizio", "ButtonPrivacyPolicy": "Informativa sulla privacy", "ButtonTermsOfService": "Termini di Servizio", - "HeaderDeveloperOptions": "Opzioni per il programmatore", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configura queste opzioni utili per lo sviluppo web.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Percorso del codice sorgente del client web:", - "LabelDashboardSourcePathHelp": "se si sta eseguendo il server da una sorgente, specifica il percorso dell'interfaccia. Tutti i file per i client saranno presi da questo percorso", "ButtonConvertMedia": "Converti media", "ButtonOrganize": "Organizza", "HeaderSupporterBenefits": "Benefici di Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Per aggiungere un utente non in lista, dovrai prima collegare il suo account a Emby Connect dalla pagina del suo profilo", "LabelPinCode": "Codice Pin", "OptionHideWatchedContentFromLatestMedia": "Nasconde i contenuti visti dagli Ultimi Media", + "DeleteMedia": "Delete media", "HeaderSync": "Sincronizza", "ButtonOk": "OK", "ButtonCancel": "Annulla", "ButtonExit": "Esci", "ButtonNew": "Nuovo", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Operazione Pianificata", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Per accedere per favore inserisci il tuo codice pin semplificato", "ButtonConfigurePinCode": "Configura codice pin", "RegisterWithPayPal": "Registrati con PayPal", - "HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni", "LabelSyncTempPath": "Percorso file temporanei:", "LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I file multimediali convertiti durante la sincronizzazione verranno memorizzati qui.", "LabelCustomCertificatePath": "Percorso certificati personalizzato:", @@ -67,10 +55,8 @@ "TitleNotifications": "Notifiche", "OptionDetectArchiveFilesAsMedia": "Considera gli archivi come file multimediali", "OptionDetectArchiveFilesAsMediaHelp": "se attivato, i file con estensione .rar e .zip saranno considerati come file multimediali.", - "LabelEnterConnectUserName": "Username di Emby o indirizzo email:", - "LabelEnterConnectUserNameHelp": "Questo \u00e8 lo username o indirizzo email che il tuo amico utilizza per accedere a Emby.", - "LabelEnableEnhancedMovies": "Abilita le visuali film migliorate", - "LabelEnableEnhancedMoviesHelp": "Quando abilitato, i film verranno mostrati come cartelle che includono i trailer, gli extra, il cast & crew, e altri contenuti correlati.", + "LabelEnterConnectUserName": "Nome utente o e-mail:", + "LabelEnterConnectUserNameHelp": "Questo \u00e8 il tuo nome utente o e-mail Emby.", "HeaderSyncJobInfo": "Attiv. di Sinc.", "FolderTypeMixed": "contenuto misto", "FolderTypeMovies": "Film", @@ -80,21 +66,19 @@ "FolderTypeGames": "Giochi", "FolderTypeBooks": "Libri", "FolderTypeTvShows": "Tv", - "FolderTypeInherit": "ereditare", + "FolderTypeInherit": "eredita", "LabelContentType": "Tipo di contenuto:", - "TitleScheduledTasks": "Task pianificati", + "TitleScheduledTasks": "Operazioni pianificate", "HeaderSetupLibrary": "Imposta le tue librerie multimediali.", - "ButtonAddMediaFolder": "Aggiungi cartella", "LabelFolderType": "Tipo cartella", "LabelCountry": "Nazione:", "LabelLanguage": "Lingua:", "LabelTimeLimitHours": "Tempo limite (ore):", - "HeaderPreferredMetadataLanguage": "Lingua preferita per i metadati:", + "HeaderPreferredMetadataLanguage": "Lingua Preferita per i Metadati:", "LabelSaveLocalMetadata": "Salva immagini e metadati nelle cartelle multimediali", "LabelSaveLocalMetadataHelp": "Il salvataggio di immagini e metadati direttamente nelle cartelle multimediali consentir\u00e0 di tenerli in un posto dove possono essere facilmente modificati.", "LabelDownloadInternetMetadata": "Scarica immagini e metadati da internet", "LabelDownloadInternetMetadataHelp": "Il Server Emby pu\u00f2 scaricare informazioni sui tuoi media per ottenere presentazioni pi\u00f9 complete", - "TabPreferences": "Preferenze", "TabPassword": "Password", "TabLibraryAccess": "Accesso alla libreria", "TabAccess": "Accesso", @@ -103,27 +87,30 @@ "TabMetadata": "Metadati", "TabImages": "Immagini", "TabNotifications": "Notifiche", - "TabCollectionTitles": "Titolo", + "TabCollectionTitles": "Titoli", "HeaderDeviceAccess": "Accesso al dispositivo", "OptionEnableAccessFromAllDevices": "Abilitare l'accesso da tutti i dispositivi", "OptionEnableAccessToAllChannels": "Abilita l'accesso a tutti i canali", "OptionEnableAccessToAllLibraries": "Abilita l'accesso a tutte le librerie", - "DeviceAccessHelp": "Questo vale solo per i dispositivi che possono essere identificati in modo univoco e non impedire l'accesso del browser. Filtraggio di accesso al dispositivo dell'utente impedir\u00e0 loro di usare nuovi dispositivi fino a quando non sono state approvate qui.", + "DeviceAccessHelp": "Questo vale solo per i dispositivi che possono essere identificatiunivocamente e non impedir\u00e0 l'accesso dal browser. Filtrare l'accesso ai dispositivi dell'utente impedir\u00e0 di usare nuovi dispositivi fino a quando non sono stati approvati qui.", "LabelDisplayMissingEpisodesWithinSeasons": "Visualizza gli episodi mancanti nelle stagioni", - "LabelUnairedMissingEpisodesWithinSeasons": "Visualizzare episodi mai andati in onda all'interno stagioni", - "HeaderVideoPlaybackSettings": "Impostazioni per la riproduzione di video", - "HeaderPlaybackSettings": "Impostazioni per la riproduzione", - "LabelAudioLanguagePreference": "Preferenza per la lingua dell'audio:", - "LabelSubtitleLanguagePreference": "Preferenza per la lingua dei sottotitoli:", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Questo deve anche essere abilitato per le librerie TV nella configurazione del Server Emby.", + "LabelUnairedMissingEpisodesWithinSeasons": "Visualizzare episodi mai andati in onda nelle stagioni", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", + "HeaderVideoPlaybackSettings": "Impostazioni di riproduzione video", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", + "HeaderPlaybackSettings": "Impostazioni di riproduzione", + "LabelAudioLanguagePreference": "Lingua audio preferita:", + "LabelSubtitleLanguagePreference": "Lingua dei sottotitoli preferita:", "OptionDefaultSubtitles": "Predefinito", "OptionSmartSubtitles": "Smart", "OptionSmartSubtitlesHelp": "I sottotitoli che corrispondono alle tue preferenze sulla lingua saranno caricati quando la lingua dell'audio \u00e8 straniera.", "OptionOnlyForcedSubtitles": "Solo i sottotitoli forzati", "OptionAlwaysPlaySubtitles": "Visualizza sempre i sottotitoli", - "OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", + "OptionDefaultSubtitlesHelp": "I sottotitoli vengono letti in base agli attributi predefiniti e forzati dei metadata embedded. Le preferenze di linguaggio sono prese in considerazione quando sono disponibili pi\u00f9 opzioni.", "OptionOnlyForcedSubtitlesHelp": "Solo i sottotitoli contrassegnati come forzati saranno caricati.", "OptionAlwaysPlaySubtitlesHelp": "I sottotitoli corrispondenti alla lingua preferita saranno caricati a prescindere dalla lingua dell'audio.", - "OptionNoSubtitlesHelp": "I sottotitoli non verranno caricati di default.", + "OptionNoSubtitlesHelp": "I sottotitoli non verranno caricati per impostazione predefinita.", "TabProfiles": "Profili", "TabSecurity": "Sicurezza", "ButtonAddUser": "Aggiungi Utente", @@ -135,7 +122,7 @@ "HeaderCreatePassword": "Crea Password", "LabelCurrentPassword": "Password Corrente:", "LabelMaxParentalRating": "Massima valutazione dei genitori consentita:", - "MaxParentalRatingHelp": "Contenuto con un punteggio pi\u00f9 elevato sar\u00e0 nascosto per questo utente.", + "MaxParentalRatingHelp": "Il contenuto con punteggio pi\u00f9 elevato sar\u00e0 nascosto per questo utente.", "LibraryAccessHelp": "Selezionare le cartelle multimediali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutte le cartelle utilizzando il gestore dei metadati.", "ChannelAccessHelp": "Selezionare i canali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutti i canali usando il gestore dei metadati", "ButtonDeleteImage": "Elimina immagine", @@ -143,34 +130,35 @@ "ButtonUpload": "Carica", "HeaderUploadNewImage": "Carica nuova immagine", "ImageUploadAspectRatioHelp": "1:1 Rapporto dimensioni raccomandato. Solo JPG\/PNG.", - "MessageNothingHere": "Niente qui.", + "MessageNothingHere": "Non c'\u00e8 niente qui.", "MessagePleaseEnsureInternetMetadata": "Assicurarsi che il download dei metadati internet sia abilitato.", - "TabSuggested": "Suggeriti", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggerimenti", "TabLatest": "Novit\u00e0", "TabUpcoming": "In Arrivo", "TabShows": "Spettacoli", "TabEpisodes": "Episodi", "TabGenres": "Generi", - "TabPeople": "Attori", "TabNetworks": "Reti", "HeaderUsers": "Utenti", - "HeaderFilters": "Filters", + "HeaderFilters": "Filtri", "ButtonFilter": "Filtro", "OptionFavorite": "Preferiti", - "OptionLikes": "Belli", - "OptionDislikes": "Brutti", + "OptionLikes": "Mi piace", + "OptionDislikes": "Non mi piace", "OptionActors": "Attori", "OptionGuestStars": "Personaggi Famosi", "OptionDirectors": "Registi", "OptionWriters": "Sceneggiatori", "OptionProducers": "Produttori", "HeaderResume": "Riprendi", - "HeaderNextUp": "Prossimo", + "HeaderContinueWatching": "Continua a guardare", + "HeaderNextUp": "Prossimi", "NoNextUpItemsMessage": "Trovato niente. Inizia a guardare i tuoi programmi!", "HeaderLatestEpisodes": "Ultimi Episodi Aggiunti", - "HeaderPersonTypes": "Tipo Persone:", - "TabSongs": "Canzoni", + "HeaderPersonTypes": "Ruoli Persone:", + "TabSongs": "Brani", "TabAlbums": "Album", "TabArtists": "Artisti", "TabAlbumArtists": "Artisti degli album", @@ -178,14 +166,15 @@ "ButtonSort": "Ordina", "OptionPlayed": "Visto", "OptionUnplayed": "Non visto", - "OptionAscending": "Ascendente", - "OptionDescending": "Discentente", + "OptionAscending": "Crescente", + "OptionDescending": "Decrescente", "OptionRuntime": "Durata", "OptionReleaseDate": "Data di rilascio", - "OptionPlayCount": "Visto N\u00b0", + "OptionPlayCount": "Riproduzioni", "OptionDatePlayed": "Visto il", "OptionDateAdded": "Aggiunto il", - "OptionAlbumArtist": "Artista dell'album", + "DateAddedValue": "Date added: {0}", + "OptionAlbumArtist": "Artista Album", "OptionArtist": "Artista", "OptionAlbum": "Album", "OptionTrackName": "Nome Brano", @@ -203,20 +192,18 @@ "OptionBanner": "Banner", "OptionCriticRating": "Voto della critica", "OptionVideoBitrate": "Bitrate Video", - "OptionResumable": "Interrotti", - "ScheduledTasksHelp": "Fare clic su una voce per cambiare la sua pianificazione.", - "ScheduledTasksTitle": "Operazioni Pianificate", - "TabMyPlugins": "Plugin installati", + "OptionResumable": "Interrotto", + "ScheduledTasksHelp": "Clicca una voce per cambiare la sua pianificazione.", + "TabMyPlugins": "I miei Plug-in", "TabCatalog": "Catalogo", - "TitlePlugins": "Plugin", + "TitlePlugins": "Plug-in", "HeaderAutomaticUpdates": "Aggiornamenti Automatici", "HeaderNowPlaying": "In Riproduzione", "HeaderLatestAlbums": "Ultimi Album", - "HeaderLatestSongs": "Ultime Canzoni", + "HeaderLatestSongs": "Ultimi Brani", "HeaderRecentlyPlayed": "Visti di recente", "HeaderFrequentlyPlayed": "Visti di frequente", - "DevBuildWarning": "Le versioni Dev sono sperimentali. Rilasciate di frequente, queste versioni non sono state testate. L'applicazione potrebbe chiudersi in modo imprevisto e alcune intere funzionalit\u00e0 potrebbero non funzionare affatto", - "LabelVideoType": "Tipo video:", + "LabelVideoType": "Tipo di video:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", "OptionIso": "Iso", @@ -225,14 +212,14 @@ "LabelLastResult": "Ultimo risultato:", "OptionHasSubtitles": "Sottotitoli", "OptionHasTrailer": "Trailer", - "OptionHasThemeSong": "Tema Canzone", - "OptionHasThemeVideo": "Tema video", + "OptionHasThemeSong": "Sigla", + "OptionHasThemeVideo": "Video Sigla", "TabMovies": "Film", "TabStudios": "Studios", "TabTrailers": "Trailer", - "LabelArtists": "Cantanti", - "LabelArtistsHelp": "Separazione multipla utilizzando ;", - "HeaderLatestTrailers": "Ultimi Trailers Aggiunti", + "LabelArtists": "Artisti:", + "LabelArtistsHelp": "Separa valori multipli usando ;", + "HeaderLatestTrailers": "Ultimi Trailer Aggiunti", "OptionHasSpecialFeatures": "Contenuti speciali", "OptionImdbRating": "Voto IMDB", "OptionParentalRating": "Voto Genitori", @@ -242,13 +229,13 @@ "OptionContinuing": "In corso", "OptionEnded": "Finito", "HeaderAirDays": "In onda da:", - "OptionSundayShort": "Sun", - "OptionMondayShort": "Mon", - "OptionTuesdayShort": "Tue", - "OptionWednesdayShort": "Wed", - "OptionThursdayShort": "Thu", - "OptionFridayShort": "Fri", - "OptionSaturdayShort": "Sat", + "OptionSundayShort": "Dom", + "OptionMondayShort": "Lun", + "OptionTuesdayShort": "Mar", + "OptionWednesdayShort": "Mer", + "OptionThursdayShort": "Gio", + "OptionFridayShort": "Ven", + "OptionSaturdayShort": "Sab", "OptionSunday": "Domenica", "OptionMonday": "Luned\u00ec", "OptionTuesday": "Marted\u00ec", @@ -267,8 +254,8 @@ "TabSupporterKey": "Chiave Emby Premiere", "TabBecomeSupporter": "Ottieni Emby Premiere", "TabEmbyPremiere": "Emby Premiere", - "ProjectHasCommunity": "Emby ha una ricca community di utilizzatori e collaboratori", - "CheckoutKnowledgeBase": "Scopri la nostra Knoledge Base per ottenere il massimo da Emby", + "ProjectHasCommunity": "Emby ha una ricca comunit\u00e0 di utenti e collaboratori", + "CheckoutKnowledgeBase": "Scopri la nostra Knowledge Base per ottenere il massimo da Emby.", "SearchKnowledgeBase": "Cerca nella guida online", "VisitTheCommunity": "Visita la nostra Community", "VisitProjectWebsite": "Visita il sito di Emby", @@ -277,39 +264,34 @@ "OptionHideUserFromLoginHelp": "Utile per account nascosti o amministratore. L'utente avr\u00e0 bisogno di accedere manualmente utilizzando la propria username e password", "OptionDisableUser": "Disabilita questo utente", "OptionDisableUserHelp": "Se disabilitato, il server non sar\u00e0 disponibile per questo utente. La connessione corrente verr\u00e0 TERMINATA", - "HeaderAdvancedControl": "Controlli avanzati", "LabelName": "Nome:", "ButtonHelp": "Aiuto", "OptionAllowUserToManageServer": "Consenti a questo utente di accedere alla configurazione del SERVER", "HeaderFeatureAccess": "Accesso alle funzionalit\u00e0", - "OptionAllowMediaPlayback": "Consentire la riproduzione multimediale", - "OptionAllowBrowsingLiveTv": "Consenti accesso alla TV live", + "OptionAllowMediaPlayback": "Consenti la riproduzione dei media", + "OptionAllowBrowsingLiveTv": "Consenti accesso alla TV in diretta", "OptionAllowDeleteLibraryContent": "Consenti l'eliminazione dei media", - "OptionAllowManageLiveTv": "Consenti la gestione di registrazione Live TV", + "OptionAllowManageLiveTv": "Consenti la gestione delle registrazioni TV", "OptionAllowRemoteControlOthers": "Consenti controllo remoto di altri utenti", "OptionAllowRemoteSharedDevices": "Consenti controllo remoto di dispositivi condivisi", "OptionAllowRemoteSharedDevicesHelp": "Dispositivi DLNA sono considerati condivisi fino a quando un utente non inizia a controllarli.", - "OptionAllowLinkSharing": "Consentire la riproduzione multimediale", + "OptionAllowLinkSharing": "Consenti la condivisione dei media", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Condividendo", "HeaderRemoteControl": "telecomando", "OptionMissingTmdbId": "Tmdb Id mancante", "OptionIsHD": "HD", "OptionIsSD": "SD", "OptionMetascore": "Punteggio", "ButtonSelect": "Seleziona", - "PismoMessage": "Dona per avere una licenza di Pismo", - "TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.", - "HeaderCredits": "Crediti", - "PleaseSupportOtherProduces": "Per favore supporta gli altri prodotti gratuiti che utilizziamo", + "PismoMessage": "Utilizza Pismo File Mount attraverso una licenza donata.", + "TangibleSoftwareMessage": "Utilizza convertitori Tangible Solutions Java\/C# attraverso una licenza donata.", + "HeaderCredits": "Ringraziamenti", + "PleaseSupportOtherProduces": "Per favore supporta gli altri prodotti gratuiti che utilizziamo:", "VersionNumber": "Versione {0}", "TabPaths": "Percorsi", "TabServer": "Server", "TabTranscoding": "Trascodifica", - "TitleAdvanced": "Avanzato", "OptionRelease": "Versione Ufficiale", - "OptionBeta": "Beta", - "OptionDev": "Dev (instabile)", "LabelAllowServerAutoRestart": "Consenti al server di Riavviarsi automaticamente per applicare gli aggiornamenti", "LabelAllowServerAutoRestartHelp": "Il server si Riavvier\u00e0 solamente quando nessun utente \u00e8 collegato", "LabelRunServerAtStartup": "Esegui il server all'avvio di windows", @@ -317,11 +299,11 @@ "ButtonSelectDirectory": "Seleziona cartella", "LabelCachePath": "Percorso Cache:", "LabelCachePathHelp": "Specificare un percorso personalizzato per i file della cache del server, ad esempio immagini. Lasciare vuoto per usare il server predefinito.", - "LabelRecordingPath": "Default recording path:", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelSeriesRecordingPath": "Series recording path (optional):", + "LabelRecordingPath": "Percorso di registrazione predefinito:", + "LabelMovieRecordingPath": "Percorso di registrazione film (opzionale):", + "LabelSeriesRecordingPath": "Percorso di registrazione serie (opzionale):", "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", - "LabelMetadataPath": "Percorso dei file con i metadati:", + "LabelMetadataPath": "Percorso per i metadati:", "LabelMetadataPathHelp": "Specificare un percorso personalizzato per le immagini e i metadati scaricati.", "LabelTranscodingTempPath": "Cartella temporanea per la trascodifica:", "LabelTranscodingTempPathHelp": "Questa cartella contiene i file di lavoro utilizzati dal transcoder. Specificare un percorso personalizzato, oppure lasciare vuoto per utilizzare l'impostazione predefinita all'interno della cartella dei dati del server.", @@ -329,15 +311,13 @@ "TabTV": "Serie TV", "TabGames": "Giochi", "TabMusic": "Musica", - "TabOthers": "Altri", - "HeaderExtractChapterImagesFor": "Estrai le immagini dei capitoli per:", + "TabOthers": "Altro", "OptionMovies": "Film", "OptionEpisodes": "Episodi", "OptionOtherVideos": "Altri Video", - "TitleMetadata": "Metadati", "LabelFanartApiKey": "Chiavi API personali", - "LabelFanartApiKeyHelp": "Le richieste di fanart effettuate senza una chiave API personale restituiranno risultati approvati pi\u00f9 di 7 giorni fa. Con una chiave API personale questo tempo scende a 48 ore, e se sei un membro VIP questo tempo scender\u00e0 ulteriormente a circa 10 minuti.", - "ExtractChapterImagesHelp": "L'estrazione delle immagini dai capitoli permetter\u00e0 ai client di avere un men\u00f9 grafico per la selezione delle scene. Il processo potrebbe essere lento, con uso intensivo della CPU e potrebbe richiedere diversi gigabyte di spazio. Viene avviato quando vengono trovati nuovi video, e anche durante la notte, ad ogni modo \u00e8 configurabile nella sezione azioni pianificate. Non \u00e8 raccomandato l'avvio di questo processo durante le ore di massimo utilizzo.", + "LabelFanartApiKeyHelp": "Le richieste di fanart effettuate senza una chiave API personale restituiranno immagini approvate pi\u00f9 di 7 giorni fa. Con una chiave API personale questo tempo scende a 48 ore e, se sei un membro VIP, questo tempo scender\u00e0 ulteriormente a circa 10 minuti.", + "ExtractChapterImagesHelp": "L'estrazione delle immagini dai capitoli permetter\u00e0 ai client Emby di avere un men\u00f9 grafico per la selezione delle scene. Il processo potrebbe essere lento, con uso intensivo della CPU e potrebbe richiedere diversi gigabyte di spazio. Viene avviato quando vengono trovati nuovi video, e anche durante la notte. La pianificazione \u00e8 configurabile nella sezione azioni pianificate. Non \u00e8 raccomandato l'avvio di questo processo durante le ore di massimo utilizzo.", "LabelMetadataDownloadLanguage": "Lingua preferita per il download:", "ButtonSignIn": "Accedi", "TitleSignIn": "Accedi", @@ -350,15 +330,15 @@ "TabCollections": "Collezioni", "HeaderChannels": "Canali", "TabRecordings": "Registrazioni", - "TabScheduled": "Pianificato", "TabSeries": "Serie TV", "TabFavorites": "Preferiti", - "TabMyLibrary": "Mia Libreria", + "TabMyLibrary": "La mia Libreria", "ButtonCancelRecording": "Annulla la registrazione", - "LabelPrePaddingMinutes": "Minuti di pre-registrazione:", - "LabelPostPaddingMinutes": "Minuti post registrazione", - "HeaderWhatsOnTV": "Cosa c'\u00e8", - "TabStatus": "Stato", + "LabelStartWhenPossible": "Avvia appena possibile:", + "LabelStopWhenPossible": "Ferma appena possibile:", + "MinutesBefore": "minuti prima", + "MinutesAfter": "minuti dopo", + "HeaderWhatsOnTV": "Ora in onda", "TabSettings": "Impostazioni", "ButtonRefreshGuideData": "Aggiorna la guida", "ButtonRefresh": "Aggiorna", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Registra su tutti i canali", "OptionRecordAnytime": "Registra a qualsiasi ora", "OptionRecordOnlyNewEpisodes": "Registra solo i nuovi episodi", - "HeaderRepeatingOptions": "Opzioni di ripetizione", "HeaderDays": "Giorni", "HeaderActiveRecordings": "Registrazioni Attive", "HeaderLatestRecordings": "Ultime registrazioni", @@ -376,7 +355,7 @@ "ButtonRecord": "Registra", "ButtonDelete": "Elimina", "ButtonRemove": "Rimuovi", - "OptionRecordSeries": "Registra Serie", + "OptionRecordSeries": "Registra Serie TV", "HeaderDetails": "Dettagli", "TitleLiveTV": "Tv in diretta", "LabelNumberOfGuideDays": "Numero di giorni per i quali scaricare i dati della guida:", @@ -399,7 +378,7 @@ "LabelMaxBackdropsPerItem": "Massimo numero di sfondi per oggetto:", "LabelMaxScreenshotsPerItem": "Massimo numero di foto per oggetto:", "LabelMinBackdropDownloadWidth": "Massima larghezza sfondo:", - "LabelMinScreenshotDownloadWidth": "Minima larghezza foto:", + "LabelMinScreenshotDownloadWidth": "Larghezza minima screenshot scaricati:", "ButtonAddScheduledTaskTrigger": "Aggiungi operazione", "HeaderAddScheduledTaskTrigger": "Aggiungi operazione", "ButtonAdd": "Aggiungi", @@ -418,22 +397,21 @@ "HeaderLatestGames": "Ultimi giochi", "HeaderRecentlyPlayedGames": "Ultimi giochi eseguiti", "TabGameSystems": "Sistemi di gioco", - "TitleMediaLibrary": "Libreria", "TabFolders": "Cartelle", - "TabPathSubstitution": "Percorso da sostiuire", - "LabelSeasonZeroDisplayName": "Stagione 0 Nome:", + "TabPathSubstitution": "Sostituzione Percorso", + "LabelSeasonZeroDisplayName": "Titolo della Stagione 0:", "LabelEnableRealtimeMonitor": "Abilita monitoraggio in tempo reale", "LabelEnableRealtimeMonitorHelp": "Le modifiche saranno applicate immediatamente, sui file system supportati.", "ButtonScanLibrary": "Scansione libreria", - "HeaderNumberOfPlayers": "Players", + "HeaderNumberOfPlayers": "Riproduttori", "OptionAnyNumberOfPlayers": "Qualsiasi:", "Option1Player": "1+", "Option2Player": "2+", "Option3Player": "3+", "Option4Player": "4+", "HeaderMediaFolders": "Cartelle dei media", - "HeaderThemeVideos": "Tema dei video", - "HeaderThemeSongs": "Tema Canzoni", + "HeaderThemeVideos": "Video Sigle", + "HeaderThemeSongs": "Sigle", "HeaderScenes": "Scene", "HeaderAwardsAndReviews": "Premi e Recensioni", "HeaderSoundtracks": "Colonne sonore", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Separa Versioni", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Mancante", - "LabelOffline": "Spento", - "PathSubstitutionHelp": "La sostituzione percorsi viene utilizzata per mappare un percorso sul server, su uno a cui i client sono in grado di accedere. Consentendo ai client l'accesso diretto ai media sul server possono essere in grado di riprodurli direttamente attraverso la rete ed evitare di utilizzare le risorse del server per lo streaming e la transcodifica.", - "HeaderFrom": "Da", - "HeaderTo": "A", - "LabelFrom": "Da:", - "LabelTo": "A:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Aggiungi sostituzione", "OptionSpecialEpisode": "Speciali", "OptionMissingEpisode": "Episodi mancanti", "OptionUnairedEpisode": "Episodi mai andati in onda", "OptionEpisodeSortName": "Ordina episodi per nome", "OptionSeriesSortName": "Nome Serie", "OptionTvdbRating": "Voto Tvdb", - "EditCollectionItemsHelp": "Aggiungi o rimuovi film, serie, album, libri o giochi che desideri raggruppare in questa collezione.", "HeaderAddTitles": "Aggiungi titoli", "LabelEnableDlnaPlayTo": "Abilita DLNA su", "LabelEnableDlnaPlayToHelp": "Emby pu\u00f2 individuare i dispositivi attivi in rete e offrire la possibilit\u00e0 di controllarli da remoto", @@ -470,17 +439,16 @@ "HeaderSystemDlnaProfiles": "Profili di sistema", "CustomDlnaProfilesHelp": "Crea un profilo personalizzato per un nuovo dispositivo o sovrascrivi quello di sistema", "SystemDlnaProfilesHelp": "I profili di sistema sono in sola lettura. Le modifiche ad un profilo di sistema verranno salvate in un nuovo profilo personalizzato.", - "TitleDashboard": "Pannello di controllo", "TabHome": "Home", "TabInfo": "Info", - "HeaderLinks": "Links", - "LinkCommunity": "Community", + "HeaderLinks": "Link", + "LinkCommunity": "Comunit\u00e0", "LinkGithub": "Github", "LinkApi": "API", "LabelFriendlyServerName": "Nome condiviso del server:", "LabelFriendlyServerNameHelp": "Questo nome \u00e8 usato per identificare il server sulla rete.Se lasciato vuoto verra usato il nome del pc", "LabelPreferredDisplayLanguage": "Lingua preferita visualizzata", - "LabelPreferredDisplayLanguageHelp": "Tradurre EMBY\u00e8 un progetto in corso.", + "LabelPreferredDisplayLanguageHelp": "La traduzione di Emby \u00e8 un progetto attivo.", "LabelReadHowYouCanContribute": "Scopri come puoi contribuire.", "ButtonSubmit": "Invia", "ButtonCreate": "Crea", @@ -493,21 +461,20 @@ "LabelPublicHttpsPort": "Numero porta HTTP pubblica", "LabelPublicHttpsPortHelp": "Numero della porta pubblica che dovrebbe essere mappato sulla porta HTTPS locale.", "LabelEnableHttps": "Riporta HTTPS come indirizzo esterno", - "LabelEnableHttpsHelp": "se abilitato, il server riporter\u00e0 un url HTTPS ai client come il proprio indirizzo esterno.", + "LabelEnableHttpsHelp": "Se abilitato, il server riporter\u00e0 un url HTTPS ai client Emby come il proprio indirizzo esterno.", "LabelHttpsPort": "Porta HTTPS locale", "LabelHttpsPortHelp": "Numero di porta TCP da associare al server https di Emby", "LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte", "LabelEnableAutomaticPortMapHelp": "Tenta di mappare automaticamente la porta pubblica sulla porta locale tramite UPnP. Questo potrebbe non funzionare con alcuni modelli di router.", - "LabelExternalDDNS": "External domain:", + "LabelExternalDDNS": "Dominio esterno:", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.", - "TitleAppSettings": "Impostazioni delle app", + "TitleAppSettings": "Impostazioni App", "LabelMinResumePercentage": "Percentuale minima per il riprendi", "LabelMaxResumePercentage": "Percentuale massima per il riprendi", "LabelMinResumeDuration": "Durata minima per il riprendi (secondi)", "LabelMinResumePercentageHelp": "I film Sono considerati non visti se fermati prima di questo tempo", "LabelMaxResumePercentageHelp": "I film sono considerati visti se fermati dopo questo tempo", "LabelMinResumeDurationHelp": "I film pi\u00f9 corti non saranno riprendibili", - "TitleAutoOrganize": "Organizza Autom.", "TabActivityLog": "Registrazione eventi", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -522,18 +489,17 @@ "LabelFailed": "Fallito", "LabelSkipped": "Saltato", "LabelSeries": "Serie:", - "LabelSeasonNumber": "Season number:", - "LabelEpisodeNumber": "Episode number:", + "LabelSeasonNumber": "Numero stagione:", + "LabelEpisodeNumber": "Numero espisodio:", "LabelEndingEpisodeNumber": "Numero ultimo episodio:", - "LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio", + "LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per episodio", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", "HeaderSupportTheTeam": "Supporta il Team di Emby", "HeaderSupportTheTeamHelp": "Aiuta ad assicurare uno sviluppo continuativo del progetto acquistando Emby Premiere. Una parte del guadagno verr\u00e0 donata ad altri strumenti gratuiti da cui dipendiamo.", "DonationNextStep": "Una volta completata, per favore ritorna qui e inserisci la tua chiave Emby Premiere che riceverai tramite e-mail", "AutoOrganizeHelp": "Organizzazione automatica monitorizza le cartelle dei file scaricati e li sposter\u00e0 automaticamente nelle tue cartelle dei media.", - "AutoOrganizeTvHelp": "L'organizzazione della TV aggiunger\u00e0 solo episodi nuovi alle serie esistenti. Non verranno create nuove cartelle delle serie.", "OptionEnableEpisodeOrganization": "Abilita l'organizzazione dei nuovi episodi", - "LabelWatchFolder": "Monitorizza cartella:", + "LabelWatchFolder": "Monitora cartella:", "LabelWatchFolderHelp": "Il server cercher\u00e0 in questa cartella durante l'operazione pianificata relativa all' Organizzazione dei nuovi file multimediali", "LabelMinFileSizeForOrganize": "Dimensioni minime file (MB):", "LabelMinFileSizeForOrganizeHelp": "I file al di sotto di questa dimensione verranno ignorati.", @@ -550,16 +516,15 @@ "LabelDeleteEmptyFoldersHelp": "Attivare questa opzione per mantenere la directory di download pulita.", "LabelDeleteLeftOverFiles": "Elimina i file rimasti con le seguenti estensioni:", "LabelDeleteLeftOverFilesHelp": "Separare con ;. Per esempio: .nfo;.txt", - "OptionOverwriteExistingEpisodes": "Sovrascrive gli episodi esistenti", + "OptionOverwriteExistingEpisodes": "Sovrascrivi gli episodi esistenti", "LabelTransferMethod": "Metodo di trasferimento", "OptionCopy": "Copia", "OptionMove": "Sposta", - "LabelTransferMethodHelp": "Copiare o spostare i file dalla cartella da monitorizzare", + "LabelTransferMethodHelp": "Copia o sposta i file dalla cartella monitorata", "HeaderLatestNews": "Ultime Novit\u00e0", "HeaderRunningTasks": "Operazioni in corso", "HeaderActiveDevices": "Dispositivi Connessi", "HeaderPendingInstallations": "installazioni in coda", - "HeaderServerInformation": "Informazioni Server", "ButtonRestartNow": "Riavvia Adesso", "ButtonRestart": "Riavvia", "ButtonShutdown": "Arresta Server", @@ -587,8 +552,7 @@ "LabelSupporterKeyHelp": "Inserisci la tua chiave Emby Premiere per iniziare a godere subito di tutti i privilegi aggiuntivi che la community ha sviluppato per Emby.", "MessageInvalidKey": "La chiave Emby Premiere \u00e8 mancante o non valida.", "ErrorMessageInvalidKey": "Per far si che qualunque contenuto premium venga registrato, devi avere anche una sottoscrizione Emby Premiere attiva.", - "HeaderDisplaySettings": "Configurazione Monitor", - "TabPlayTo": "Riproduci su", + "HeaderDisplaySettings": "Impostazioni di Visualizzazione", "LabelEnableDlnaServer": "Abilita server DLNA", "LabelEnableDlnaServerHelp": "Consente ai dispositivi UPnP nella tua rete di sfogliare i contenuti di Emby e riprodurli", "LabelEnableBlastAliveMessages": "Invia segnale di presenza", @@ -597,33 +561,13 @@ "LabelBlastMessageIntervalHelp": "Determina la durata in secondi tra i messaggi di presenza del server.", "LabelDefaultUser": "Utente Predefinito:", "LabelDefaultUserHelp": "Determina quale libreria utente deve essere visualizzato sui dispositivi collegati. Questo pu\u00f2 essere disattivata tramite un profilo di dispositivo.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Impostazioni server", "HeaderRequireManualLogin": "Richiedi l'inserimento manuale nome utente per:", - "HeaderRequireManualLoginHelp": "Quando i client disabilitati possono presentare una schermata di login con una selezione visuale di utenti.", - "OptionOtherApps": "Altre apps", - "OptionMobileApps": "App dispositivi mobili", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Aggiornamento dell'applicazione disponibile", - "NotificationOptionApplicationUpdateInstalled": "Aggiornamento dell'applicazione installato", - "NotificationOptionPluginUpdateInstalled": "Aggiornamento del plugin installato", - "NotificationOptionPluginInstalled": "Plugin installato", - "NotificationOptionPluginUninstalled": "Plugin disinstallato", - "NotificationOptionVideoPlayback": "La riproduzione video \u00e8 iniziata", - "NotificationOptionAudioPlayback": "Riproduzione audio iniziata", - "NotificationOptionGamePlayback": "Gioco avviato", - "NotificationOptionVideoPlaybackStopped": "Riproduzione video interrotta", - "NotificationOptionAudioPlaybackStopped": "Audio Fermato", - "NotificationOptionGamePlaybackStopped": "Gioco Fermato", - "NotificationOptionTaskFailed": "Operazione pianificata fallita", - "NotificationOptionInstallationFailed": "Installazione fallita", - "NotificationOptionNewLibraryContent": "Nuovo contenuto aggiunto", - "NotificationOptionCameraImageUploaded": "Immagine fotocamera caricata", - "NotificationOptionUserLockedOut": "Utente bloccato", - "HeaderSendNotificationHelp": "Le notifiche vengono consegnati alla tua casella di posta ricamato. Ulteriori opzioni possono essere installati dalla scheda Servizi.", - "NotificationOptionServerRestartRequired": "Riavvio del server necessario", + "HeaderRequireManualLoginHelp": "Quando disabilitato, i client Emby possono presentare una schermata di login con una selezione visuale di utenti.", + "OptionOtherApps": "Altre app", + "OptionMobileApps": "Mobile app", "LabelNotificationEnabled": "Abilita questa notifica", - "LabelMonitorUsers": "Monitorare l'attivit\u00e0 da:", + "LabelMonitorUsers": "Monitora l'attivit\u00e0 da:", "LabelSendNotificationToUsers": "Invia notifiche a:", "LabelUseNotificationServices": "Utilizzare i seguenti servizi:", "CategoryUser": "Utente", @@ -662,12 +606,10 @@ "ButtonPrevious": "Precedente", "LabelGroupMoviesIntoCollections": "Raggruppa i film nelle collezioni", "LabelGroupMoviesIntoCollectionsHelp": "Quando si visualizzano le liste di film, quelli appartenenti ad una collezione saranno visualizzati come un elemento raggruppato.", - "NotificationOptionPluginError": "Plugin fallito", "ButtonVolumeUp": "Aumenta Volume", "ButtonVolumeDown": "Diminuisci volume", "HeaderLatestMedia": "Ultimi Media", "OptionNoSubtitles": "Nessun Sottotitolo", - "OptionSpecialFeatures": "Contenuti Speciali", "HeaderCollections": "Collezioni", "LabelProfileCodecsHelp": "Separati da virgola. Questo pu\u00f2 essere lasciato vuoto da applicare a tutti i codec.", "LabelProfileContainersHelp": "Separati da virgola. Questo pu\u00f2 essere lasciato vuoto da applicare a tutti i contenitori.", @@ -695,13 +637,13 @@ "HeaderIdentification": "Identificazione", "TabDirectPlay": "Riproduzione Diretta", "TabContainers": "Contenitori", - "TabCodecs": "Codecs", + "TabCodecs": "Codec", "TabResponses": "Risposte", "HeaderProfileInformation": "Informazioni sul profilo", "LabelEmbedAlbumArtDidl": "Inserisci le copertine degli Album in Didl", "LabelEmbedAlbumArtDidlHelp": "Alcuni dispositivi preferiscono questo metodo per ottenere le copertine degli album. Altri possono non riuscire a riprodurli con questa opzione abilitata.", "LabelAlbumArtPN": "Copertine Album PN:", - "LabelAlbumArtHelp": "PN utilizzato per le copertine degli album, all'interno del DLNA: attributo di ProfileId su upnp:albumArtURI. Alcuni client richiedono un valore specifico, indipendentemente dalla dimensione dell'immagine.", + "LabelAlbumArtHelp": "PN utilizzato per le copertine degli album, all'interno dell'attributo dlna:profileID su upnp:albumArtURI. Alcuni dispositivi richiedono un valore specifico, indipendentemente dalla dimensione dell'immagine.", "LabelAlbumArtMaxWidth": "Larghezza massima copertina Album:", "LabelAlbumArtMaxWidthHelp": "Risoluzione massima copertina Album inviata tramite upnp:albumArtURI", "LabelAlbumArtMaxHeight": "Altezza massima copertina Album:", @@ -716,7 +658,7 @@ "LabelMaxBitrateHelp": "Specificare un bitrate massimo in presenza di larghezza di banda limitata, o se il dispositivo impone il proprio limite.", "LabelMaxStreamingBitrate": "Massimo Bitrate streaming", "LabelMaxStreamingBitrateHelp": "Specifica il bitrate massimo per lo streaming", - "LabelMaxChromecastBitrate": "Max Chromecast bitrate:", + "LabelMaxChromecastBitrate": "Max bitrate Chromecast:", "LabelMusicStaticBitrate": "Musica sync bitrate:", "LabelMusicStaticBitrateHelp": "Specifica il max Bitrate quando sincronizzi la musica", "LabelMusicStreamingTranscodingBitrate": "Musica trascodifica bitrate:", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Nessun plugin disponibile.", "LabelDisplayPluginsFor": "Mostra plugin per:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Nome Episodio", "LabelSeriesNamePlain": "Nome Serie", "ValueSeriesNamePeriod": "Nome Serie", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Numero ultimo episodio", "HeaderTypeText": "Inserisci il testo", "LabelTypeText": "Testo", - "HeaderSearchForSubtitles": "Ricerca per sottotitoli", - "MessageNoSubtitleSearchResultsFound": "Nessun elemento trovato", "TabDisplay": "Schermo", "TabLanguages": "Lingue", "TabAppSettings": "Impostazioni app", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Se abiltato le canzoni a tema saranno riprodotte mentre visualizzi la tua libreria", "LabelEnableBackdropsHelp": "Se abilitato gli sfondi verranno riprodotti mentre visualizzi la tua libreria", "HeaderHomePage": "Pagina Iniziale", - "HeaderSettingsForThisDevice": "Configurazione per questo dispositivo", "OptionAuto": "Automatico", "OptionYes": "Si", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Pagina Iniziale Sezione 2:", "LabelHomePageSection3": "Pagina Iniziale Sezione 3:", "LabelHomePageSection4": "Pagina Iniziale Sezione 4:", - "OptionMyMediaButtons": "I miei media (pulsanti)", "OptionMyMedia": "I miei media", "OptionMyMediaSmall": "I miei media (piccolo)", "OptionResumablemedia": "Riprendi", @@ -813,55 +750,23 @@ "OptionNone": "Nessuno", "HeaderLiveTv": "Diretta TV", "HeaderReports": "Rapporti", - "HeaderSettings": "Configurazione", + "HeaderSettings": "Impostazioni", "OptionDefaultSort": "Predefinito", - "OptionCommunityMostWatchedSort": "Pi\u00f9 visti", "TabNextUp": "Da vedere", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Ottieni Emby Premiere", "MessageNoMovieSuggestionsAvailable": "Nessun suggerimento di film attualmente disponibile. Iniziare a guardare e valutare i vostri film, e poi tornare per i suggerimenti.", "MessageNoCollectionsAvailable": "Le collezioni ti permettono di goderti raccolte personalizzate di Film, Serie TV, Album, Libri e Giochi. Clicca sul + per iniziare a creare le tue Collezioni", "MessageNoPlaylistsAvailable": "Playlist ti permettere di mettere in coda gli elementi da riprodurre.Usa il tasto destro o tap e tieni premuto quindi seleziona elemento da aggiungere", "MessageNoPlaylistItemsAvailable": "Questa playlist al momento \u00e8 vuota", - "ButtonDismiss": "Cancella", "ButtonEditOtherUserPreferences": "Modifica questo utente di profilo, l'immagine e le preferenze personali.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In un ambiente a bassa larghezza di banda, limitando la qualit\u00e0 pu\u00f2 contribuire a garantire un'esperienza di streaming continuo.", "OptionBestAvailableStreamQuality": "Migliore disponibile", "ChannelSettingsFormHelp": "Installare canali come Trailer e Vimeo nel catalogo plugin.", - "ViewTypePlaylists": "Playlist", "ViewTypeMovies": "Film", "ViewTypeTvShows": "Serie Tv", "ViewTypeGames": "Giochi", "ViewTypeMusic": "Musica", - "ViewTypeMusicGenres": "Generi", - "ViewTypeMusicArtists": "Artisti", - "ViewTypeBoxSets": "Collezioni", - "ViewTypeChannels": "Canali", - "ViewTypeLiveTV": "TV in diretta", - "ViewTypeLiveTvNowPlaying": "Ora in onda", - "ViewTypeLatestGames": "Ultimi Giorchi", - "ViewTypeRecentlyPlayedGames": "Guardato di recente", - "ViewTypeGameFavorites": "Preferiti", - "ViewTypeGameSystems": "Configurazione gioco", - "ViewTypeGameGenres": "Generi", - "ViewTypeTvResume": "Riprendi", - "ViewTypeTvNextUp": "Prossimi", - "ViewTypeTvLatest": "Ultimi", - "ViewTypeTvShowSeries": "Serie", - "ViewTypeTvGenres": "Generi", - "ViewTypeTvFavoriteSeries": "Serie Preferite", - "ViewTypeTvFavoriteEpisodes": "Episodi Preferiti", - "ViewTypeMovieResume": "Riprendi", - "ViewTypeMovieLatest": "Ultimi", - "ViewTypeMovieMovies": "Film", - "ViewTypeMovieCollections": "Collezioni", - "ViewTypeMovieFavorites": "Preferiti", - "ViewTypeMovieGenres": "Generi", - "ViewTypeMusicLatest": "Ultimi", - "ViewTypeMusicPlaylists": "Playlist", - "ViewTypeMusicAlbums": "Album", - "ViewTypeMusicAlbumArtists": "Album Artisti", "HeaderOtherDisplaySettings": "Impostazioni Video", "ViewTypeMusicSongs": "Canzoni", "ViewTypeMusicFavorites": "Preferiti", @@ -877,7 +782,7 @@ "OptionLatestTvRecordings": "Ultime registrazioni", "LabelProtocolInfo": "Info protocollo:", "LabelProtocolInfoHelp": "Il valore che verr\u00e0 utilizzato quando si risponde a richieste GetProtocolInfo dal dispositivo.", - "TabNfoSettings": "Nfo Settings", + "TabNfoSettings": "Impostazioni nfo", "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Services tab to configure options for your media types.", "LabelKodiMetadataUser": "Sincronizza i dati utente a nfo di per:", "LabelKodiMetadataUserHelp": "Abilita questa opzione per mantenere i dati di orologio sincronizzati tra il Server Emby e i file NFO.", @@ -888,15 +793,14 @@ "LabelKodiMetadataEnablePathSubstitution": "Abilita sostituzione di percorso", "LabelKodiMetadataEnablePathSubstitutionHelp": "Consente percorso sostituzione dei percorsi delle immagini utilizzando le impostazioni di sostituzione percorso del server.", "LabelKodiMetadataEnablePathSubstitutionHelp2": "Vedere la sostituzione percorso.", - "OptionDisplayChannelsInline": "Canali di visualizzazione in linea all'interno le mie opinioni", - "OptionDisplayChannelsInlineHelp": "Se abilitata, i canali verranno visualizzati direttamente accanto ad altri punti di vista. Se disattivato, saranno esposti all'interno di una vista canali separati.", + "OptionDisplayChannelsInline": "Mostra canali come cartelle di media", + "OptionDisplayChannelsInlineHelp": "Se abilitata, i canali verranno visualizzati direttamente accanto alle altre librerie di media. Se disattivato, saranno esposti all'interno di una cartella Canali separata.", "LabelDisplayCollectionsView": "Mostra le Collezioni di film", "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", "LabelKodiMetadataEnableExtraThumbs": "Copia extrafanart in extrathumbs", "LabelKodiMetadataEnableExtraThumbsHelp": "Copia extrafanart in extrathumbs", "TabServices": "Servizi", "TabLogs": "Logs", - "HeaderServerLogFiles": "File log del Server:", "TabBranding": "Personalizza", "HeaderBrandingHelp": "Personalizza l'aspetto di Emby per soddisfare le esigenze del tuo gruppo o della tua organizzazione.", "LabelLoginDisclaimer": "Avviso Login:", @@ -917,7 +821,6 @@ "HeaderDevice": "Dispositivo", "HeaderUser": "Utente", "HeaderDateIssued": "data di pubblicazione", - "LabelChapterName": "Capitolo {0}", "HeaderHttpHeaders": "Intestazioni Http", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "valore:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Sottostringa", "TabView": "Vista", - "TabSort": "Ordina", "TabFilter": "Filtra", "ButtonView": "Vista", "LabelPageSize": "Limite articolo:", @@ -945,9 +847,7 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Contenuto:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sinc", - "TabPlaylists": "Playlists", + "TabPlaylists": "Playlist", "ButtonClose": "Chiudi", "LabelAllLanguages": "Tutte le lingue", "HeaderBrowseOnlineImages": "Sfoglia le immagini sul web", @@ -956,7 +856,6 @@ "LabelImage": "Immagine:", "HeaderImages": "Immagini", "HeaderBackdrops": "Sfondi", - "HeaderScreenshots": "Immagini", "HeaderAddUpdateImage": "Aggiungi\/aggiorna immagine", "LabelDropImageHere": "Rilasciare l'immagine qui", "LabelJpgPngOnly": "JPG\/PNG solamente", @@ -964,7 +863,7 @@ "OptionPrimary": "Primaria", "OptionArt": "Art", "OptionBox": "Box", - "OptionBoxRear": "Box rear", + "OptionBoxRear": "Retro Box", "OptionDisc": "Disco", "OptionIcon": "Icona", "OptionLogo": "Logo", @@ -973,13 +872,12 @@ "OptionLocked": "Bloccato", "OptionUnidentified": "Non identificata", "OptionMissingParentalRating": "Voto genitori mancante", - "OptionStub": "Stub", "OptionSeason0": "Stagione 0", "LabelReport": "Report:", "OptionReportSongs": "Canzoni", - "OptionReportSeries": "Series", + "OptionReportSeries": "Serie", "OptionReportSeasons": "Stagioni", - "OptionReportTrailers": "Trailers", + "OptionReportTrailers": "Trailer", "OptionReportMusicVideos": "Video musicali", "OptionReportMovies": "Film", "OptionReportHomeVideos": "Video personali", @@ -989,36 +887,23 @@ "OptionReportBooks": "Libri", "OptionReportArtists": "Cantanti", "OptionReportAlbums": "Album", - "ButtonMore": "Piu", + "ButtonMore": "Altro", "HeaderActivity": "Attivit\u00e0", - "ScheduledTaskStartedWithName": "{0} Avviati", - "ScheduledTaskCancelledWithName": "{0} cancellati", - "ScheduledTaskCompletedWithName": "{0} completati", - "ScheduledTaskFailed": "Operazione pianificata completata", "PluginInstalledWithName": "{0} sono stati Installati", "PluginUpdatedWithName": "{0} sono stati aggiornati", "PluginUninstalledWithName": "{0} non sono stati installati", - "ScheduledTaskFailedWithName": "{0} Falliti", - "DeviceOnlineWithName": "{0} \u00e8 connesso", "UserOnlineFromDevice": "{0} \u00e8 online da {1}", - "DeviceOfflineWithName": "{0} \u00e8 stato disconesso", "UserOfflineFromDevice": "{0} \u00e8 stato disconesso da {1}", - "SubtitlesDownloadedForItem": "Sottotitoli scaricati per {0}", - "SubtitleDownloadFailureForItem": "Sottotitoli non scaricati per {0}", "LabelRunningTimeValue": "Durata: {0}", "LabelIpAddressValue": "Indirizzo IP: {0}", "UserLockedOutWithName": "L'utente {0} \u00e8 stato bloccato", "UserConfigurationUpdatedWithName": "Configurazione utente \u00e8 stata aggiornata per {0}", "UserCreatedWithName": "Utente {0} \u00e8 stato creato", - "UserPasswordChangedWithName": "Password utente cambiata per {0}", "UserDeletedWithName": "Utente {0} \u00e8 stato cancellato", "MessageServerConfigurationUpdated": "Configurazione server aggioprnata", "MessageNamedServerConfigurationUpdatedWithValue": "La sezione {0} \u00e8 stata aggiornata", "MessageApplicationUpdated": "Il Server Emby \u00e8 stato aggiornato", "UserDownloadingItemWithValues": "{0} sta scaricando {1}", - "UserStartedPlayingItemWithValues": "{0} \u00e8 partito da {1}", - "UserStoppedPlayingItemWithValues": "{0} stoppato {1}", - "AppDeviceValues": "App: {0}, Dispositivo: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Attivit\u00e0 recenti", "HeaderPeople": "Persone", @@ -1027,7 +912,7 @@ "OptionOthers": "Altri", "HeaderDownloadPeopleMetadataForHelp": "Abilitando il provider scaricher\u00e0 pi\u00f9 informazioni ( la scansione sar\u00e0 pi\u00f9 lenta)", "ViewTypeFolders": "Cartelle", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", + "OptionDisplayFolderView": "Visualizza cartelle come normali cartelle dei media", "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", "ViewTypeLiveTvRecordingGroups": "Registrazioni", "ViewTypeLiveTvChannels": "canali", @@ -1051,27 +936,18 @@ "LabelAirDate": "In onda da (gg):", "LabelAirTime:": "In onda da:", "LabelRuntimeMinutes": "Durata ( minuti):", - "LabelRevenue": "Fatturato ($):", - "HeaderAlternateEpisodeNumbers": "Numeri Episode alternativi", "HeaderSpecialEpisodeInfo": "Episodio Speciale Info", - "HeaderExternalIds": "Esterno Id di :", - "LabelAirsBeforeSeason": "tempo prima della stagione:", - "LabelAirsAfterSeason": "tempo dopo della stagione:", - "LabelAirsBeforeEpisode": "tempo prima episodio:", "LabelDisplaySpecialsWithinSeasons": "Mostra gli Special all'interno delle stagioni in cui sono stati trasmessi", - "HeaderCountries": "Paesi", "HeaderGenres": "Generi", "HeaderPlotKeywords": "Trama", "HeaderStudios": "Studios", - "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Lasciare vuoto per ereditare le impostazioni da un elemento principale, o il valore predefinito globale.", + "HeaderTags": "Tag", "OptionNoTrailer": "Nessun Trailer", "ButtonPurchase": "Acquista", "OptionActor": "Attore", "OptionComposer": "Compositore", "OptionDirector": "Regista", "OptionProducer": "Produttore", - "OptionWriter": "Scrittore", "LabelAirDays": "In onda da (gg):", "LabelAirTime": "In onda da:", "HeaderMediaInfo": "Informazioni Media", @@ -1093,7 +969,7 @@ "LabelExtractChaptersDuringLibraryScan": "Estrarre immagini capitolo durante la scansione biblioteca", "LabelExtractChaptersDuringLibraryScanHelp": "Se abilitata, le immagini capitolo verranno estratti quando i video vengono importati durante la scansione della libreria. Se disabilitata verranno estratti durante le immagini dei capitoli programmati compito, permettendo la scansione biblioteca regolare per completare pi\u00f9 velocemente.", "LabelConnectGuestUserName": "Username di Emby o indirizzo email:", - "LabelConnectUserName": "Emby username or email address:", + "LabelConnectUserName": "Utente Emby o indirizzo e-mail:", "LabelConnectUserNameHelp": "Collegare questo utente locale a un account online ricamato per consentire un facile segno-in di accesso da qualsiasi applicazione ricamato senza dover conoscere l'indirizzo IP del server", "ButtonLearnMoreAboutEmbyConnect": "Scopri di pi\u00f9 su Emby Connect", "LabelExternalPlayers": "Player esterni:", @@ -1113,15 +989,15 @@ "LabelSubtitleFormatHelp": "Esempio: srt", "ButtonLearnMore": "saperne di pi\u00f9", "TabPlayback": "Riproduzione", - "HeaderAudioSettings": "Audio Settings", - "HeaderSubtitleSettings": "Subtitle Settings", + "HeaderAudioSettings": "Impostazioni audio", + "HeaderSubtitleSettings": "Impostazioni Sottotitoli", "TabCinemaMode": "Modalit\u00e0 Cinema", "TitlePlayback": "Riproduzione", "LabelEnableCinemaModeFor": "Attiva modalit\u00e0 cinema per:", "CinemaModeConfigurationHelp": "Modalit\u00e0 Cinema porta l'esperienza del teatro direttamente nel tuo salotto con la possibilit\u00e0 di vedere trailer e intro personalizzati prima la caratteristica principale.", "OptionTrailersFromMyMovies": "Includi i trailer di film nella mia biblioteca", "OptionUpcomingMoviesInTheaters": "Includi i trailer di film nuovi e imminenti", - "LabelLimitIntrosToUnwatchedContent": "Solo i trailer da contenuti non visti", + "LabelLimitIntrosToUnwatchedContent": "Riproduci i trailer solo per i contenuti non visti", "LabelEnableIntroParentalControl": "Abilita controllo parentale intelligente", "LabelEnableIntroParentalControlHelp": "Trailer: verr\u00e0 selezionata solo con un rating genitori uguale o inferiore al contenuto di essere osservato.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "Queste funzionalit\u00e0 richiedono una sottoscrizione a Emby Premiere e l'installazione del plugin Trailers", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Controllo Genitore", "HeaderAccessSchedule": "Orario di accesso", "HeaderAccessScheduleHelp": "Creare un programma di accesso per limitare l'accesso a determinate ore.", - "ButtonAddSchedule": "Agg. orario schedultao", "LabelAccessDay": "Giorno della settimana:", "LabelAccessStart": "Ora di inizio:", "LabelAccessEnd": "Ora di fine:", @@ -1177,7 +1052,7 @@ "ButtonForgotPassword": "Password Dimenticata", "OptionDisableUserPreferences": "Disabilitare l'accesso alle preferenze dell'utente", "OptionDisableUserPreferencesHelp": "Se abilitato, solo gli amministratori saranno in grado di configurare le immagini del profilo utente, password e preferenze di lingua.", - "HeaderSelectServer": "Selezionare il server", + "HeaderSelectServer": "Scegli Server", "MessageNoServersAvailableToConnect": "Nessun server sono disponibili per la connessione a. Se siete stati invitati a condividere un server, assicurarsi di accettarla sotto o facendo clic sul collegamento nell'e-mail.", "TitleNewUser": "Nuovo Utente", "ButtonConfigurePassword": "Configura Password", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Attiv. di Sinc.", "HeaderThisUserIsCurrentlyDisabled": "Questo utente \u00e8 al momento disabilitato", "MessageReenableUser": "Guarda in basso per ri-abilitare", - "LabelEnableInternetMetadataForTvPrograms": "Fa il download da Internet dei metadati per:", "OptionTVMovies": "Film TV", "HeaderUpcomingMovies": "Film in arrivo", "HeaderUpcomingSports": "Sport in arrivo", @@ -1225,11 +1099,11 @@ "HeaderPlayback": "Riproduzione", "OptionAllowAudioPlaybackTranscoding": "Abilita la riproduzione di audio che necessita di transcodifica", "OptionAllowVideoPlaybackTranscoding": "Abilita la riproduzione di video che necessita di transcodifica", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowVideoPlaybackRemuxing": "Consenti la riproduzione di video che necessitano di conversione ma non di ricodifica", "OptionAllowMediaPlaybackTranscodingHelp": "Gli utenti riceveranno messaggi esplicativi quando il contenuto non \u00e8 riproducibile a causa della policy.", "TabStreaming": "Streaming", "LabelRemoteClientBitrateLimit": "Bitrate limite per lo streaming via internet (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "Un limite di streaming bitrate opzionale per tutti fuori di client di rete. Ci\u00f2 \u00e8 utile per evitare che i clienti di richiedere un bitrate pi\u00f9 alto grado di gestire la connessione a Internet.", + "LabelRemoteClientBitrateLimitHelp": "Un limite opzionale al bitrate in streaming per tutti i dispositivi all'esterno della rete. Pu\u00f2 essere utile per evitare che i dispositivi richiedano un bitrate pi\u00f9 alto di quanto possa gestire la tua connessione ad Internet.", "LabelConversionCpuCoreLimit": "Limite della CPU:", "LabelConversionCpuCoreLimitHelp": "Limiita il numero di CPU da utilizzare durante l'operazione di sincronizzazione.", "OptionEnableFullSpeedConversion": "Abilita conversione a velocit\u00e0 piena", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlist", "HeaderViewStyles": "Stili Viste", "TabPhotos": "Foto", - "TabVideos": "Video", "HeaderWelcomeToEmby": "Benvenuto in Emby", "EmbyIntroMessage": "Con Emby si pu\u00f2 facilmente lo streaming di video, musica e foto da smartphone, tablet e altri dispositivi dal vostro ricamato Server.", "ButtonSkip": "Salta", @@ -1257,14 +1130,13 @@ "HeaderColumns": "Colonne", "ButtonReset": "Ripristina", "OptionEnableExternalVideoPlayers": "Abilita lettori video esterne", - "ButtonUnlockGuide": "Sblocca Guida", "LabelEnableFullScreen": "Abilita modalit\u00e0 a schermo intero", - "LabelEmail": "Email:", + "LabelEmail": "E-mail:", "LabelUsername": "Nome utente", "HeaderSignUp": "Iscriviti", "LabelPasswordConfirm": "Conferma la password:", "ButtonAddServer": "Aggiungi server", - "TabHomeScreen": "Schermata iniziale", + "TabHomeScreen": "Pagina iniziale", "HeaderDisplay": "Schermo", "HeaderNavigation": "Navigazione", "OptionEnableAutomaticServerUpdates": "Attiva aggiornamenti automatici del server", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Panoramica", "HeaderShortOverview": "breve panoramica", "HeaderType": "Tipo", - "HeaderSeverity": "gravit\u00e0", "OptionReportActivities": "attivit\u00e0 Log", "HeaderTunerDevices": "Dispositivi Tuner", "HeaderAddDevice": "Agg. dispositivo", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Ripeti", "LabelEnableThisTuner": "Abilita questo sintonizzatore", "LabelEnableThisTunerHelp": "Deselezionare per impedire l'importazione di canali da questo sintonizzatore.", - "HeaderUnidentified": "Non identificata", "HeaderImagePrimary": "Primaria", "HeaderImageBackdrop": "Sfondo", "HeaderImageLogo": "Logo", @@ -1308,21 +1178,21 @@ "OptionSyncOnlyOnWifi": "Sincronizza solo su Wifi", "OptionSyncLosslessAudioOriginal": "Sincronizzazione audio lossless in qualit\u00e0 originale", "HeaderUpcomingForKids": "Prossime per i bambini", - "HeaderSetupLiveTV": "Setup Live TV", + "HeaderSetupLiveTV": "Configura Live TV", "LabelTunerType": "Tipo sintonizzatore:", "HelpMoreTunersCanBeAdded": "Sintonizzatori supplementari possono essere aggiunti in seguito nella sezione Live TV.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Ulteriori fornitori di TV Live possono essere aggiunti successivamente all'interno della sezione Live TV.", "HeaderSetupTVGuide": "Guida all'installazione TV", "LabelDataProvider": "Fornitore di dati:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Imbottitura predefinito", + "HeaderDefaultRecordingSettings": "Impostazioni di Registrazione Predefinite", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Sottotitoli", "HeaderVideos": "Video", - "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", - "ButtonServerDashboard": "Server Dashboard", - "HeaderAdmin": "Admin", + "LabelHardwareAccelerationType": "Accelerazione Hardware:", + "LabelHardwareAccelerationTypeHelp": "Disponibile solo su sistemi supportati.", + "ButtonServerDashboard": "Pannello di Controllo del Server", + "HeaderAdmin": "Ammin.", "ButtonSignOut": "Esci", "HeaderCameraUpload": "Caricamenti Fotocamera", "SelectCameraUploadServers": "Carica le foto dalla fotocamera sui seguenti server:", @@ -1330,25 +1200,22 @@ "LabelFolder": "Cartella:", "HeadersFolders": "Cartella", "LabelDisplayName": "Nome visualizzato:", - "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", + "HeaderNewRecording": "Nuova Registrazione", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", - "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", + "OptionConvertRecordingsToStreamingFormat": "Converti automaticamente le registrazioni in un formato adatto allo streaming", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", - "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", - "FileExtension": "File extension", - "OptionReplaceExistingImages": "Sovrascrivi immagini esistenti", - "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", - "OptionDownloadImagesInAdvance": "Download images in advance", + "FeatureRequiresEmbyPremiere": "Questa funzionalit\u00e0 richiede un abbonamento ad Emby Premiere.", + "FileExtension": "Estensione file", + "OptionPlayNextEpisodeAutomatically": "Riproduci automaticamente l'episodio successivo", + "OptionDownloadImagesInAdvance": "Scarica preventivamente le immagini", "SettingsSaved": "Settaggi salvati.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Utenti", "Delete": "Elimina", "Password": "Password", "DeleteImage": "Elimina immagine", "MessageThankYouForSupporting": "Grazie per il tuo sostegno a Emby.", - "MessagePleaseSupportProject": "Per favore, sostieni Emby.", "DeleteImageConfirmation": "Sei sicuro di voler eliminare questa immagine?", "FileReadCancelled": "Il file letto \u00e8 stato cancellato.", "FileNotFound": "File non trovato", @@ -1365,7 +1232,7 @@ "PasswordMatchError": "Le password non coincidono.", "UninstallPluginHeader": "Disinstalla Plugin", "UninstallPluginConfirmation": "Sei sicuro di voler Disinstallare {0}?", - "NoPluginConfigurationMessage": "Questo Plugin non \u00e8 stato configurato.", + "NoPluginConfigurationMessage": "Questo Plugin non ha impostazioni da configurare.", "NoPluginsInstalledMessage": "Non ci sono Plugins installati.", "BrowsePluginCatalogMessage": "Sfoglia il catalogo dei Plugins.", "HeaderNewApiKey": "Nuova Chiave Api", @@ -1383,16 +1250,12 @@ "LabelTag": "Tag:", "ButtonSelectView": "Seleziona vista", "HeaderSelectDate": "Seleziona la data", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", + "ServerUpdateNeeded": "Questo server Emby deve essere aggiornato. Puoi scaricare l'ultima versione da {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "I miei media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Livello di aggiornamento automatico per i plugin:", "ErrorLaunchingChromecast": "Si \u00e8 verificato un errore all'avvio di chromecast. Assicurati che il tuo dispositivo sia connesso alla rete wireless.", "MessageErrorLoadingSupporterInfo": "C'\u00e8 stato un errore nel caricamento delle informazioni dell'Emby Premiere. Per favore riprova pi\u00f9 tardi.", - "MessageLinkYourSupporterKey": "Collega la tua chiave Emby Premiere con {0} membri Emby Connect per godere dell'accesso gratuito alle seguenti app:", "HeaderConfirmRemoveUser": "Cancellazione utente", - "MessageConfirmRemoveConnectSupporter": "Sei sicuro che vuoi rimuovere i benefici di Emby Premiere da questo utente?", "ValueTimeLimitSingleHour": "Tempo limite: 1 ora", "ValueTimeLimitMultiHour": "Tempo limite: {0} ore", "PluginCategoryGeneral": "Generale", @@ -1400,7 +1263,7 @@ "PluginCategoryScreenSaver": "Salva schermo", "PluginCategoryTheme": "Temi", "PluginCategorySync": "Sincr.", - "PluginCategorySocialIntegration": "Social Networks", + "PluginCategorySocialIntegration": "Social Network", "PluginCategoryNotifications": "Notifiche", "PluginCategoryMetadata": "Metadati", "PluginCategoryLiveTV": "TV in diretta", @@ -1411,9 +1274,9 @@ "LabelMovie": "Film", "LabelMusicVideo": "Video Musicali", "LabelEpisode": "Episodio", - "Series": "Series", + "Series": "Serie TV", "LabelStopping": "Sto fermando", - "LabelCancelled": "Cancelled", + "LabelCancelled": "Annullato", "ButtonDownload": "Download", "SyncJobStatusQueued": "In Coda", "SyncJobStatusConverting": "Conversione", @@ -1429,14 +1292,13 @@ "ButtonScheduledTasks": "Operazioni Pianificate", "MessageItemsAdded": "Oggetti aggiunti", "HeaderSelectCertificatePath": "Seleziona il percorso del Certificato", - "ConfirmMessageScheduledTaskButton": "Questa operazione viene eseguito normalmente automaticamente come un'attivit\u00e0 pianificata e non richiede alcun intervento manuale. Per configurare l'operazione pianificata, vedere:", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "HeaderWelcomeToProjectServerDashboard": "Benvenuto nel Pannello di controllo del Server Emby", + "HeaderWelcomeToProjectServerDashboard": "Benvenuto nel Pannello di Controllo del Server Emby", "HeaderWelcomeToProjectWebClient": "Benvenuto in Emby", "ButtonTakeTheTour": "Fai una visita", "HeaderWelcomeBack": "Ben tornato!", "ButtonTakeTheTourToSeeWhatsNew": "Fai un tour per vedere cosa \u00e8 cambiato", - "MessageNoSyncJobsFound": "Nessuna sincronizzazione pianificata. Creane una utilizzando i pulsanti sull'interfaccia web", + "MessageNoSyncJobsFound": "Nessuna sincronizzazione pianificata. Creane una utilizzando i pulsanti Sincronizza sull'applicazione.", "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "HeaderSelectDevices": "Seleziona periferiche", "ButtonCancelItem": "Cancella oggetto", @@ -1455,7 +1317,7 @@ "HeaderPlaybackError": "Errore di riproduzione", "MessagePlaybackErrorNotAllowed": "Al momento non sei autorizzato a riprodurre questo contenuto. Per favore contatta l'amministratore del sistema per ulteriori dettagli", "MessagePlaybackErrorNoCompatibleStream": "Nessuna trasmissione compatibile \u00e8 al momento disponibile. Per favore riprova in seguito o contatta il tuo Amministratore di sistema per chiarimenti", - "MessagePlaybackErrorPlaceHolder": "Il contenuto scelto non pu\u00f2 essere riprodotto su questo dispositivo", + "MessagePlaybackErrorPlaceHolder": "Per favore inserisci i dischi nell'ordine per riprodurre questo video.", "HeaderSelectAudio": "Seleziona audio", "HeaderSelectSubtitles": "Seleziona sottotitoli", "ButtonMarkForRemoval": "Rimuovi dal dispositivo", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabilitato", "ButtonMoreInformation": "Maggiori informazioni", "LabelNoUnreadNotifications": "Nessuna notifica non letta", - "LabelAllPlaysSentToPlayer": "Tutti i play saranno inviati al riproduttore selezionato.", "MessageInvalidUser": "Utente o password errato. Riprova", "HeaderLoginFailure": "Errore di accesso", "RecommendationBecauseYouLike": "Perch\u00e9 ti piace {0}", @@ -1483,11 +1344,9 @@ "MessageRecordingCancelled": "Registrazione eliminata.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Conferma cancellazione serie", - "MessageConfirmSeriesCancellation": "Sei sicuro di voler cancellare questa serie?", - "MessageSeriesCancelled": "Serie cancellata", "HeaderConfirmRecordingDeletion": "Conferma cancellazione registrazione", "MessageRecordingSaved": "Salvataggio registrazione", - "OptionWeekend": "weekend", + "OptionWeekend": "Weekend", "OptionWeekday": "Giorni feriali", "MessageConfirmPathSubstitutionDeletion": "Sei sicuro di voler cancellare questa sostituzione percorso?", "LiveTvUpdateAvailable": "(Aggiornamento disponibile)", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Sfoglia o immetti il percorso da utilizzare per i file di cache server. La cartella deve essere scrivibile", "HeaderSelectTranscodingPathHelp": "Sfoglia o immettere il percorso da utilizzare per la transcodifica dei file temporanei. La cartella deve essere scrivibile.", "HeaderSelectMetadataPathHelp": "Sfoglia o inserire il percorso in cui vuoi archiviare i metadati. La cartella deve essere scrivibile.", - "HeaderSelectChannelDownloadPath": "Selezionare il percorso di download del Canale", - "HeaderSelectChannelDownloadPathHelp": "Sfoglia o immettere il percorso da utilizzare per memorizzare i file di cache del canale. La cartella deve essere scrivibile.", - "LabelChapterDownloaders": "Downloader capitoli:", - "LabelChapterDownloadersHelp": "Abilitare e classificare le downloader capitoli preferiti in ordine di priorit\u00e0. I Downloader con priorit\u00e0 pi\u00f9 bassa saranno utilizzati solo per compilare le informazioni mancanti.", "HeaderFavoriteAlbums": "Album preferiti", "HeaderLatestChannelMedia": "Ultimi elementi aggiunti", "ButtonOrganizeFile": "Organizza file", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Riproduzione Diretta", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Accesso locale {0}", - "LabelRemoteAccessUrl": "Accesso remoto: {0}", + "LabelLocalAccessUrl": "Accesso locale (LAN): {0}", + "LabelRemoteAccessUrl": "Accesso remoto (WAN): {0}", "LabelRunningOnPort": "In esecuzione sulla porta HTTP {0}.", "LabelRunningOnPorts": "In esecuzione sulla porta HTTP {0}, e porta HTTPS {1}", "HeaderLatestFromChannel": "Ultime da {0}", - "HeaderCurrentSubtitles": "Sottotitoli correnti", "ButtonRemoteControl": "Telecomando", "HeaderLatestTvRecordings": "Ultime registrazioni", "LabelCurrentPath": "Percorso Corrente:", @@ -1574,16 +1428,16 @@ "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Emby system user at least read access to your storage locations.", "HeaderMenu": "Menu", "ButtonOpen": "Apri", - "ButtonShuffle": "A caso", + "ButtonShuffle": "Casuale", "ButtonResume": "Riprendi", "HeaderAudioTracks": "Tracce audio", "HeaderLibraries": "Librerie", "HeaderVideoQuality": "Qualit\u00e0 video", "MessageErrorPlayingVideo": "Si \u00e8 verificato un errore nella riproduzione del video.", "MessageEnsureOpenTuner": "Si prega di assicurarsi che ci sia un sintonizzatore disponibile.", - "ButtonDashboard": "Pannello", - "ButtonReports": "Reports", - "MetadataManager": "Metadata Manager", + "ButtonDashboard": "Pannello Controllo", + "ButtonReports": "Rapporti", + "MetadataManager": "Gestisci Metadati", "HeaderTime": "Tempo", "LabelAddedOnDate": "Aggiunto {0}", "ButtonStart": "Avvio", @@ -1601,8 +1455,8 @@ "MessageConfirmRevokeApiKey": "Sei sicuro di voler revocare questa chiave api? La connessione dell'applicazione al Server Emby terminer\u00e0 immediatamente", "HeaderConfirmRevokeApiKey": "Revocare Chiave Api", "ValueContainer": "Contenitore: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", + "ValueAudioCodec": "Codec Audio: {0}", + "ValueVideoCodec": "Codec Video: {0}", "ValueCodec": "Codec: {0}", "ValueConditions": "Condizioni: {0}", "LabelAll": "Tutti", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Elimina elemento", "ConfirmDeleteItem": "L'eliminazione di questo articolo sar\u00e0 eliminarlo sia dal file system e la vostra libreria multimediale. Sei sicuro di voler continuare?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "Il valore inserito non \u00e8 corretto.Riprova di nuovo.", "MessageItemSaved": "Elemento salvato.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Per favore accetta i termini di servizio prima di continuare.", "OptionOff": "Off", @@ -1630,11 +1483,10 @@ "MissingBackdropImage": "Sfondi mancanti", "MissingLogoImage": "Loghi mancanti", "MissingEpisode": "Episodi mancanti", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Sfondi", "OptionImages": "Immagini", "OptionKeywords": "Parole", - "OptionTags": "Tags", + "OptionTags": "Tag", "OptionStudios": "Studios", "OptionName": "Nome", "OptionOverview": "Panoramica", @@ -1642,10 +1494,6 @@ "OptionPeople": "Persone", "OptionProductionLocations": "Sedi di produzione", "OptionBirthLocation": "Nascita Posizione", - "LabelAllChannels": "Tutti i canali", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Cambia il tipo di contenuto", "HeaderChangeFolderTypeHelp": "Per modificare il tipo, rimuovere e ricostruire la raccolta con il nuovo tipo.", "HeaderAlert": "Avviso", @@ -1662,8 +1510,7 @@ "ButtonAudioTracks": "Audio Tracks", "ButtonQuality": "Qualit\u00e0", "HeaderNotifications": "Notifiche", - "HeaderSelectPlayer": "Utente selezionato :", - "MessageInternetExplorerWebm": "Se utilizzi internet Explorer installa WebM plugin", + "HeaderSelectPlayer": "Seleziona Riproduttore:", "HeaderVideoError": "Video Errore", "ButtonViewSeriesRecording": "Vista delle serie in registrazione", "HeaderSpecials": "Speciali", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Durata", "HeaderParentalRating": "Valutazione parentale", "HeaderReleaseDate": "Data Rilascio", - "HeaderDateAdded": "Aggiunto il", "HeaderSeries": "Serie:", "HeaderSeason": "Stagione", "HeaderSeasonNumber": "Stagione Numero", @@ -1690,7 +1536,7 @@ "OptionMusicAlbums": "Album", "OptionMusicVideos": "Video", "OptionSongs": "Canzoni", - "OptionHomeVideos": "Video personali", + "OptionHomeVideos": "Video e foto personali", "OptionBooks": "Libri", "ButtonUp": "Su", "ButtonDown": "Giu", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Rimuovi percorso media", "MessageConfirmRemoveMediaLocation": "Sei sicuro di voler rimuovere questa posizione?", "LabelNewName": "Nuovo nome:", - "HeaderAddMediaFolder": "Aggiungi cartella", - "HeaderAddMediaFolderHelp": "Nome (film,musica,tv etc ):", "HeaderRemoveMediaFolder": "Rimuovi cartella", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Sei sicuro di voler rimuovere questa posizione?", @@ -1719,11 +1563,10 @@ "ButtonChangeContentType": "Cambia tipo del contenuto", "HeaderMediaLocations": "Posizioni Media", "LabelContentTypeValue": "Tipo di contenuto {0}", - "LabelPathSubstitutionHelp": "Opzionale: cambio Path pu\u00f2 mappare i percorsi del server a condivisioni di rete che i clienti possono accedere per la riproduzione diretta.", "FolderTypeUnset": "Disinserito (contenuto misto)", - "BirthPlaceValue": "Luogo di nascita: {0}", + "BirthPlaceValue": "nato a: {0}", "DeathDateValue": "Morto: {0}", - "BirthDateValue": "Nato: {0}", + "BirthDateValue": "Nato il: {0}", "HeaderLatestReviews": "Ultime recensioni", "HeaderPluginInstallation": "Installazione Plugin", "MessageAlreadyInstalled": "Questa versione \u00e8 gi\u00e0 installata.", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "mai in onda", "HeaderMissing": "Assente", "ButtonWebsite": "Web", - "ValueSeriesYearToPresent": "{0}-Presenti", + "ValueSeriesYearToPresent": "{0} - Oggi", "ValueAwards": "Premi: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Entrate: {0}", "ValuePremiered": "Debuttato {0}", "ValuePremieres": "Debuttato {0}", "ValueStudio": "Studio: {0}", @@ -1800,7 +1641,7 @@ "MediaInfoLongitude": "Longitudine", "MediaInfoShutterSpeed": "velocit\u00e0 otturatore", "MediaInfoSoftware": "Software", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "Simili a questo", "HeaderMovies": "Film", "HeaderAlbums": "Album", "HeaderGames": "Giochi", @@ -1811,14 +1652,14 @@ "HeaderItems": "Elementi", "HeaderOtherItems": "Altri elmenti", "ButtonFullReview": "Trama completa", - "ValueAsRole": "Come {0}", + "ValueAsRole": "\u00e8 {0}", "ValueGuestStar": "Personaggi famosi", "MediaInfoSize": "Dimensione", "MediaInfoPath": "Percorso", "MediaInfoFile": "File", "MediaInfoFormat": "Formato", "MediaInfoContainer": "Contenitore", - "MediaInfoDefault": "Default", + "MediaInfoDefault": "Predefinito", "MediaInfoForced": "Forzato", "MediaInfoExternal": "Esterno", "MediaInfoTimestamp": "Timestamp", @@ -1843,16 +1684,11 @@ "MediaInfoStreamTypeVideo": "Video", "MediaInfoStreamTypeSubtitle": "Sottotitolo", "MediaInfoStreamTypeEmbeddedImage": "Immagine incorporata", - "MediaInfoRefFrames": "Ref frames", + "MediaInfoRefFrames": "Ref frame", "TabExpert": "Esperto", "HeaderSelectCustomIntrosPath": "Selezionare Intro Path Personalizzata", - "HeaderRateAndReview": "Punteggio e Commenti", "HeaderThankYou": "Grazie", - "MessageThankYouForYourReview": "Grazie per la tua opinione.", - "LabelYourRating": "Il tuo voto:", "LabelFullReview": "Recensione completa:", - "LabelShortRatingDescription": "Breve riassunto Valutazione:", - "OptionIRecommendThisItem": "Consiglio questo elemento", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "Visualizza i file multimediali aggiunti di recente, i prossimi episodi, e altro ancora. I cerchi verdi indicano quanti oggetti unplayed avete.", @@ -1870,18 +1706,17 @@ "WebClientTourMobile2": "e controlla facilmente altri dispositivi e app Emby", "WebClientTourMySync": "Sincronizza il tuo personal media per i dispositivi per la visualizzazione offline.", "MessageEnjoyYourStay": "Godetevi il vostro soggiorno", - "DashboardTourDashboard": "Il pannello di controllo del server consente di monitorare il vostro server e gli utenti. Potrai sempre sapere chi sta facendo cosa e dove sono.", - "DashboardTourHelp": "In-app help offre pulsanti facili da aprire le pagine wiki relative al contenuto sullo schermo.", - "DashboardTourUsers": "Facile creazione di account utente per i vostri amici e la famiglia, ognuno con le proprie autorizzazioni, accesso alla libreria, controlli parentali e altro ancora.", - "DashboardTourCinemaMode": "Modalit\u00e0 Cinema porta l'esperienza del teatro direttamente nel tuo salotto con la possibilit\u00e0 di giocare trailer e intro personalizzati prima la caratteristica principale.", - "DashboardTourChapters": "Abilita capitolo generazione di immagini per i vostri video per una presentazione pi\u00f9 gradevole durante la visualizzazione.", - "DashboardTourSubtitles": "Scaricare automaticamente i sottotitoli per i tuoi video in qualsiasi lingua.", - "DashboardTourPlugins": "Installare il plugin come canali internet video, live tv, scanner metadati e altro ancora.", - "DashboardTourNotifications": "Inviare automaticamente notifiche di eventi server al vostro dispositivo mobile, e-mail e altro ancora.", - "DashboardTourScheduledTasks": "Gestire facilmente le operazioni di lunga esecuzione con le operazioni pianificate. Decidere quando corrono, e con quale frequenza.", - "DashboardTourMobile": "Il Pannello di Controllo del Server Emby funziona bene su smartphone e tablet. Gestisci il tuo server con il palmo della tua mano, quando vuoi, dove vuoi", - "DashboardTourSync": "Sincronizza il tuo personal media per i dispositivi per la visualizzazione offline.", - "MessageRefreshQueued": "Aggiornamento programmato", + "DashboardTourDashboard": "Il pannello di controllo del server consente di monitorare il server e gli utenti. Potrai sempre sapere chi sta facendo cosa e da dove.", + "DashboardTourHelp": "L'aiuto integrato offre semplici pulsanti per aprire le pagine wiki relative al contenuto sullo schermo.", + "DashboardTourUsers": "Crea facilmente account utente per i tuoi amici e la famiglia, ognuno con le proprie autorizzazioni, accesso alla libreria, controlli parentali ed altro ancora.", + "DashboardTourCinemaMode": "Modalit\u00e0 Cinema porta l'esperienza del teatro direttamente nel tuo salotto con la possibilit\u00e0 di riprodurre trailer ed intro personalizzate prima del contenuto principale.", + "DashboardTourChapters": "Abilita la generazione immagini di capitolo per i tuoi video per una presentazione pi\u00f9 gradevole durante la visione.", + "DashboardTourSubtitles": "Scarica automaticamente i sottotitoli per i tuoi video in tutte le lingue.", + "DashboardTourPlugins": "Installa plug-in come canali video Internet, tv live, scanner di metadati ed altro ancora.", + "DashboardTourNotifications": "Invia automaticamente notifiche di eventi server al tuo dispositivo mobile, e-mail o altro.", + "DashboardTourScheduledTasks": "Gestisci facilmente le operazioni di lunga durata con le operazioni pianificate. Decidi quando eseguirle e con quale frequenza.", + "DashboardTourMobile": "Il pannello di controllo del Server Emby funziona bene anche su smartphone e tablet. Gestisci il tuo server dal palmo della tua mano, quando vuoi, dove vuoi.", + "DashboardTourSync": "Sincronizza i tuoi media con i tuoi dispositivi per vederli offline.", "TabExtras": "Extra", "HeaderUploadImage": "Carica immagine", "DeviceLastUsedByUserName": "Ultimo utilizzata da {0}", @@ -1913,13 +1748,9 @@ "ButtonLinkMyEmbyAccount": "Collega il mio account ora", "MessageConnectAccountRequiredToInviteGuest": "Per invitare gli amici \u00e8 necessario innanzitutto collegare l'account Emby a questo server.", "SyncMedia": "Sync media", - "HeaderCancelSyncJob": "Cancel Sync", + "HeaderCancelSyncJob": "Cancella Sinc", "CancelSyncJobConfirmation": "La cancellazione dell'attivit\u00e0 di sincronizzazione causer\u00e0 la rimozione dal dispositivo dei media sincronizzati durante il prossimo processo di sincronizzazione. Sei sicuro di voler comunque procedere?", - "MessagePleaseSelectDeviceToSyncTo": "Selezionare un dispositivo per la sincronizzazione", - "MessageSyncJobCreated": "Attivit\u00e0 di Sincronizz. Creata", "LabelQuality": "Qualit\u00e0:", - "OptionAutomaticallySyncNewContent": "Sincronizza automaticamente nuovi contenuti", - "OptionAutomaticallySyncNewContentHelp": "Nuovi contenuti aggiunto verranno sincronizzati automaticamente al dispositivo.", "MessageBookPluginRequired": "Richiede l'installazione del plugin Bookshelf", "MessageGamePluginRequired": "Richiede l'installazione del plugin GameBrowser", "MessageUnsetContentHelp": "Il contenuto verr\u00e0 visualizzato come pianura cartelle. Per ottenere i migliori risultati utilizzare il gestore di metadati per impostare i tipi di contenuto di sottocartelle.", @@ -1932,33 +1763,26 @@ "SyncJobItemStatusCancelled": "Cancellato", "LabelProfile": "Profilo:", "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "Per scaricare e installare Emby server visita {0}.", + "EmbyIntroDownloadMessage": "Per scaricare ed installare Emby Server (gratuito) visita {0}.", "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.", "ButtonNewServer": "Nuovo Server", "MyDevice": "Mio dispositivo", - "ButtonRemote": "Remoto", + "ButtonRemote": "Telecomando", "TabCast": "Cast", "TabScenes": "Scene", "HeaderUnlockApp": "Sblocca App", "HeaderUnlockSync": "Sblocca Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Sblocca questa funzionalit\u00e0 con un piccolo acquisto singolo, o con un abbonamento Emby Premiere", - "MessageUnlockAppWithSupporter": "Sblocca questa funzionalit\u00e0 con un abbonamento Emby Premiere", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "I servizi di pagamento non sono attualmente disponibili. Per favore riprova pi\u00f9 tardi.", - "ButtonUnlockWithPurchase": "Sbloccare con l'acquisto", - "ButtonUnlockPrice": "Sblocca {0}", - "MessageLiveTvGuideRequiresUnlock": "La Guida TV \u00e8 attualmente limitata a {0} canali. Premi il tasto di sblocco per imparare come goderti una piena esperienza.", "OptionEnableFullscreen": "Abilita schermo intero", "ButtonServer": "Server", "HeaderLibrary": "Libreria", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Dire qualcosa di simile ...", "NoResultsFound": "No results found.", "ButtonManageServer": "Gestisci Server", "ButtonPreferences": "Preferenze", "ButtonViewArtist": "Visualizza artista", "ButtonViewAlbum": "Visualizza album", - "ButtonEditImages": "Edit images", + "ButtonEditImages": "Modifica Immagini", "ErrorMessagePasswordNotMatchConfirm": "La password e la password di conferma devono corrispondere.", "ErrorMessageUsernameInUse": "L' username \u00e8 gi\u00e0 usato. Per favore scegli un nuovo nome e riprova.", "ErrorMessageEmailInUse": "L'indirizzo email \u00e8 gi\u00e0 usato.Per favore inserisci un nuovo indirizzo email e riprova, o usa la funzione password dimenticata.", @@ -1974,50 +1798,34 @@ "ErrorGettingTvLineups": "Si \u00e8 verificato un errore durante il download formazioni tv. Assicurarsi vostre informazioni sono corrette e riprovare.", "MessageCreateAccountAt": "Crea un account a {0}", "ErrorPleaseSelectLineup": "Si prega di selezionare una scaletta e riprova. Se non formazioni sono disponibili, quindi si prega di verificare che il vostro nome utente, password, e il codice postale \u00e8 corretto.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Ottieni Emby Premiere", - "ButtonClosePlayVideo": "Chiudi e avvia il mio media", - "MessageDidYouKnowCinemaMode": "Lo sapevi che con Emby Premiere puoi migilorare la tua esperienza con funzionalit\u00e0 come la Modalit\u00e0 Cinema?", - "MessageDidYouKnowCinemaMode2": "La Modalit\u00e0 Cinema ti d\u00e0 la vera una esperienza da cinema con trailers e intro personalizzati prima delle funzioni principali.", + "HeaderTryEmbyPremiere": "Prova Emby Premiere", "OptionEnableDisplayMirroring": "Abilita visualizzazione remota", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "La sincronizzazione richiede la connessione con Emby Server, e un abbonamento Emby Premiere attivo.", "ErrorValidatingSupporterInfo": "C'\u00e8 stato un errore nella convalida delle informazioni sul tuo abonamento Emby Premiere. Riprova pi\u00f9 tardi.", "LabelLocalSyncStatusValue": "Stato {0}", "MessageSyncStarted": "Sync iniziato", - "NoSlideshowContentFound": "Non sono state trovate immagini della presentazione.", - "OptionPhotoSlideshow": "Foto presentazione", "OptionBackdropSlideshow": "Scenografia presentazione", "HeaderTopPlugins": "Migliori Plugins", "ButtonOther": "Altro", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", + "HeaderSortBy": "Ordina per", + "HeaderSortOrder": "Ordinamento", "ButtonDisconnect": "Disconetti", "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "Per ulteriori provider Live TV, fare clic sulla scheda Servizi Esterni per vedere le opzioni disponibili.", "ButtonGuide": "Guida", - "ButtonRecordedTv": "Tv Registrata", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Si", "AddUser": "Aggiungi utente", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Ripristinare acquisto", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "In riproduzione ora", "HeaderLatestMovies": "Ultimi Film Aggiunti", - "EmbyPremiereMonthly": "Emby Premiere Mensile", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Mensile {0}", "HeaderEmailAddress": "Indirizzo E-Mail", - "TextPleaseEnterYourEmailAddressForSubscription": "Per favore inserisci il tuo indirizzo e-mail.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Termini di utilizzo", "NumLocationsValue": "{0} cartelle", "ButtonAddMediaLibrary": "Aggiungi raccolta multimediale", "ButtonManageFolders": "Gestisci cartelle", - "MessageTryMicrosoftEdge": "Per un'esperienza migliore su Windows 10, prova il browser Microsoft Edge.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "C'\u00e8 stato un errore nell'aggiunta della tua lista all'account Schedules Direct.\nSchedules Direct permette solo un numero limitato di selezioni per account. Potresti aver bisogno di accedere al sito Schedules Direct e rimuoverne alcune prima di procedere.", "PleaseAddAtLeastOneFolder": "Per favore aggiungi almeno una cartella alla raccolta cliccando sul pulsante Aggiungi.", "ErrorAddingMediaPathToVirtualFolder": "C'\u00e8 stato un errore durante l'aggiunta del percorso. Per favore controlla che sia valido, e che Emby Server abbia l'accesso alla posizione indicata.", @@ -2026,65 +1834,53 @@ "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", + "HeaderFavoriteSongs": "Brani Preferiti", + "HeaderConfirmPluginInstallation": "Conferma Installazione Plugin", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", + "HeaderCloudSync": "Sinc. nel Cloud", + "HeaderFreeApps": "App Gratuite Emby", + "CoverArt": "Copertine", + "ButtonOff": "Spento", + "TitleHardwareAcceleration": "Accelerazione Hardware:", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", - "ValueExample": "Example: {0}", - "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", + "ValueExample": "Esempio: {0}", + "OptionEnableAnonymousUsageReporting": "Consenti l'invio di rapporti d'uso anonimi", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", "LabelFileOrUrl": "File or url:", "OptionEnableForAllTuners": "Enable for all tuner devices", "HeaderTuners": "Tuners", - "LabelOptionalM3uUrl": "M3U url (optional):", + "LabelOptionalM3uUrl": "Indirizzo M3U (opzionale)", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", + "TabResumeSettings": "Ripristina Impostazioni", "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "LabelAllowHWTranscoding": "Allow hardware transcoding", + "LabelAllowHWTranscoding": "Consenti transcodifica hardware", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.", "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.", "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Yesterday": "Yesterday", + "Yesterday": "Ieri", "DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", - "HealthMonitorNoAlerts": "There are no active alerts.", + "HealthMonitorNoAlerts": "Non ci sono avvisi importanti.", "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", "VisualLoginFormHelp": "Select a user or sign in manually", - "LabelSportsCategories": "Sports categories:", + "LabelSportsCategories": "Categorie sport:", "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", "LabelNewsCategories": "News categories:", "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", "LabelKidsCategories": "Children's categories:", "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "LabelMovieCategories": "Movie categories:", + "LabelMovieCategories": "Categorie film:", "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", "LabelBindToLocalNetworkAddress": "Bind to local network address:", @@ -2101,46 +1897,53 @@ "DownloadFFmpeg": "Download FFmpeg", "FFmpegSuggestedDownload": "Suggested download: {0}", "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", - "OptionUseSystemInstalledVersion": "Use system installed version", + "OptionUseSystemInstalledVersion": "Usa versione installata nel sistema", "OptionUseMyCustomVersion": "Use a custom version", "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", "XmlTvPremiere": "By default, Emby will import {0} hours of guide data. Importing unlimited data requires an active Emby Premiere subscription.", - "MoreFromValue": "More from {0}", + "MoreFromValue": "Altro di {0}", "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", - "EnablePhotos": "Enable photos", + "EnablePhotos": "Abilita foto", "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "MakeAvailableOffline": "Make available offline", + "MakeAvailableOffline": "Rendi disponibile offline", "ConfirmRemoveDownload": "Remove download?", "RemoveDownload": "Remove download", - "SyncToOtherDevices": "Sync to other devices", + "SyncToOtherDevices": "Sinc. con altri dispositivi", "ManageOfflineDownloads": "Manage offline downloads", "MessageDownloadScheduled": "Download scheduled", - "RememberMe": "Remember me", + "RememberMe": "Ricordami", "HeaderOfflineSync": "Offline Sync", "LabelMaxAudioFileBitrate": "Massimo bitrate per file audio:", "LabelMaxAudioFileBitrateHelp": "I file audio con un valore pi\u00f9 alto di bitrate saranno convertiti dal Server Emby. Seleziona un valore pi\u00f9 alto per una qualit\u00e0 migliore, oppure, un valore pi\u00f9 basso per risparmiare spazio di archiviazione.", - "LabelVaapiDevice": "VA API Device:", + "LabelVaapiDevice": "Dispositivo VA API:", "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", "HowToConnectFromEmbyApps": "How to Connect from Emby apps", "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", - "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", + "OptionExtractChapterImage": "Abilita estrazione dell'immagine dei capitoli", + "Downloads": "Scaricamenti", "LabelEnableDebugLogging": "Attiva la registrazione degli eventi", "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", + "LabelH264EncodingPreset": "Preset di codifica H264:", "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", + "LabelH264Crf": "CRF di codifica H264:", "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", + "Sports": "Sport", "HeaderForKids": "For Kids", "HeaderRecordingGroups": "Recording Groups", "LabelConvertRecordingsTo": "Convert recordings to:", - "HeaderUpcomingOnTV": "Upcoming On TV", + "HeaderUpcomingOnTV": "In onda a breve", "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play con un lettore esterno", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Ultimi {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/kk.json b/dashboard-ui/strings/kk.json index 3c265b7ce2..cc927c6160 100644 --- a/dashboard-ui/strings/kk.json +++ b/dashboard-ui/strings/kk.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u0428\u044b\u0493\u0443", - "LabelApiDocumentation": "API \u049b\u04b1\u0436\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b", - "LabelBrowseLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0448\u043e\u043b\u0443", - "LabelConfigureServer": "Emby \u0442\u0435\u04a3\u0448\u0435\u0443", + "OptionAutomaticallyGroupSeriesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043e\u0441\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0456\u0448\u0456\u043d\u0434\u0435\u0433\u0456 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0441\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0431\u0456\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0493\u0430 \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0430\u0434\u044b.", + "OptionAutomaticallyGroupSeries": "\u0411\u0456\u0440\u043d\u0435\u0448\u0435 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0442\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0431\u0456\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u0493\u0430 \u0431\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0443", "LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b", "LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443", "LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\u0410\u0442\u044b\u04a3\u044b\u0437:", "MoreUsersCanBeAddedLater": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u043a\u0435\u0439\u0456\u043d \u0422\u0430\u049b\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.", "UserProfilesIntro": "Emby \u0456\u0448\u0456\u043d\u0434\u0435 \u04d9\u0440\u049b\u0430\u0439\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u04e9\u0437\u0456\u043d\u0456\u04a3 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u04af\u0439\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u044b \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d\u044b\u04a3 \u043a\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u044b \u0431\u0430\u0440.", - "LabelWindowsService": "Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456", - "AWindowsServiceHasBeenInstalled": "Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b.", - "WindowsServiceIntro1": "Emby Server \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0441\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u0435\u0433\u0435\u0440 \u043e\u043d\u044b\u04a3 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u04e9\u04a3\u0434\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u04b1\u043d\u0430\u0442\u0441\u0430\u04a3\u044b\u0437, \u043e\u0441\u044b\u043d\u044b\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \u0431\u04b1\u043b Windows \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", - "WindowsServiceIntro2": "\u0415\u0433\u0435\u0440 Windows \u049b\u044b\u0437\u043c\u0435\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430 \u0431\u043e\u043b\u0441\u0430, \u0435\u0441\u043a\u0435\u0440\u0456\u04a3\u0456\u0437, \u0431\u04b1\u043b \u0441\u043e\u043b \u043c\u0435\u0437\u0433\u0456\u043b\u0434\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u0493\u044b \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0434\u0435\u0439 \u0436\u04af\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d \u0435\u043c\u0435\u0441, \u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u0442\u0430\u049b\u0442\u0430\u0434\u0430\u043d \u0448\u044b\u0493\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u0493\u0430\u043d \u049b\u0430\u0442\u0430\u0440, \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0456 \u04d9\u043a\u0456\u043c\u0448\u0456 \u049b\u04b1\u049b\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u0438\u0435 \u0431\u043e\u043b\u044b\u043f \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0435\u04a3\u0448\u0435\u0443 \u049b\u0430\u0436\u0435\u0442. \u049a\u044b\u0437\u043c\u0435\u0442 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u049b\u0430\u043d\u0434\u0430, \u049b\u044b\u0437\u043c\u0435\u0442 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0439 \u0430\u043b\u0430\u0442\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0456\u04a3\u0456\u0437 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.", "WizardCompleted": "\u04d8\u0437\u0456\u0440\u0448\u0435 \u0431\u04b1\u043b \u0431\u0456\u0437\u0433\u0435 \u043a\u0435\u0440\u0435\u0433\u0456\u043d\u0456\u04a3 \u0431\u04d9\u0440\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. Emby \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0438\u043d\u0430\u0439 \u0431\u0430\u0441\u0442\u0430\u0434\u044b. \u0415\u043d\u0434\u0456 \u043a\u0435\u0439\u0431\u0456\u0440 \u0431\u0456\u0437\u0434\u0456\u04a3 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043c\u044b\u0437\u0431\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437, \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d \u0414\u0430\u0439\u044b\u043d<\/b> \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0430\u049b\u0442\u0430\u0441\u044b<\/b> \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0448\u044b\u0493\u0430 \u043a\u0435\u043b\u0435\u0434\u0456.", "LabelConfigureSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443", - "LabelEnableAutomaticPortMapping": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u043f\u043e\u0440\u0442 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443", - "LabelEnableAutomaticPortMappingHelp": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u044b\u043f \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d UPnP \u0436\u043e\u043b \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u044b\u0448\u0442\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u0442\u0435\u04a3\u0448\u0435\u0443\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0411\u04b1\u043b \u043a\u0435\u0439\u0431\u0456\u0440 \u0436\u043e\u043b \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u044b\u0448 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u043c\u0435\u0439\u0442\u0456\u043d\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", "HeaderTermsOfService": "Emby \u049b\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b", "MessagePleaseAcceptTermsOfService": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d \u049a\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u0436\u04d9\u043d\u0435 \u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u04a3\u044b\u0437.", "OptionIAcceptTermsOfService": "\u049a\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0439\u043c\u044b\u043d", "ButtonPrivacyPolicy": "\u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b\u043d\u0430", "ButtonTermsOfService": "\u049a\u044b\u0437\u043c\u0435\u0442 \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d\u0430", - "HeaderDeveloperOptions": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043e\u043f\u0446\u0438\u044f\u043b\u0430\u0440\u044b", - "OptionEnableWebClientResponseCache": "\u0412\u0435\u0431 \u04af\u043d \u049b\u0430\u0442\u0443 \u043a\u044d\u0448\u0442\u0435\u0443\u0456\u043d \u049b\u043e\u0441\u0443", - "OptionDisableForDevelopmentHelp": "\u0412\u0435\u0431-\u0436\u0430\u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u043c\u044b\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437.", - "OptionEnableWebClientResourceMinification": "\u0412\u0435\u0431 \u049b\u043e\u0440\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443\u0434\u044b \u049b\u043e\u0441\u0443", - "LabelDashboardSourcePath": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u043a\u04e9\u0437\u0456\u043d\u0456\u04a3 \u0436\u043e\u043b\u044b:", - "LabelDashboardSourcePathHelp": "\u0415\u0433\u0435\u0440 \u0441\u0435\u0440\u0432\u0435\u0440 \u049b\u0430\u0439\u043d\u0430\u0440 \u043a\u043e\u0434\u044b\u043d\u0430\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0441\u0435, dashboard-ui \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d\u0430 \u0436\u043e\u043b\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0456\u04a3 \u0431\u0430\u0440\u043b\u044b\u049b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u043e\u0441\u044b \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u0430\u043d \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u0430\u0434\u044b.", "ButtonConvertMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443", "ButtonOrganize": "\u04b0\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", "HeaderSupporterBenefits": "Emby Premiere \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "\u0422\u0456\u0437\u0456\u043c\u0434\u0435 \u0436\u043e\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0430\u043b\u0434\u044b\u043c\u0435\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b \u0431\u0435\u0442\u0456\u043d\u0435\u043d Emby Connect \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u043e\u043d\u044b\u04a3 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u0441\u0442\u0440\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442.", "LabelPinCode": "PIN-\u043a\u043e\u0434:", "OptionHideWatchedContentFromLatestMedia": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0435\u043d \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0436\u0430\u0441\u044b\u0440\u0443", + "DeleteMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0456 \u0436\u043e\u044e", "HeaderSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "ButtonOk": "\u0416\u0430\u0440\u0430\u0439\u0434\u044b", "ButtonCancel": "\u0411\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", "ButtonExit": "\u0428\u044b\u0493\u0443", "ButtonNew": "\u0416\u0430\u0441\u0430\u0443", + "OptionDev": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u044b\u049b", + "OptionBeta": "\u0411\u0435\u0442\u0430 \u043d\u04b1\u0441\u049b\u0430", "HeaderTaskTriggers": "\u0422\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u043b\u0435\u0440\u0456", "HeaderTV": "\u0422\u0414", "HeaderAudio": "\u0414\u044b\u0431\u044b\u0441", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u0442\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437", "ButtonConfigurePinCode": "PIN-\u043a\u043e\u0434\u0442\u044b \u0442\u0435\u04a3\u0448\u0435\u0443", "RegisterWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u0440\u043a\u0435\u043b\u0443", - "HeaderEnjoyDayTrial": "\u0422\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u0443\u0434\u044b 14 \u043a\u04af\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0456\u0437", "LabelSyncTempPath": "\u0423\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b \u0436\u043e\u043b\u044b:", "LabelSyncTempPathHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u049b\u0430\u043b\u0442\u0430\u043d\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0441\u044b \u043e\u0440\u044b\u043d\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.", "LabelCustomCertificatePath": "\u041a\u0443\u04d9\u043b\u0456\u043a \u0436\u043e\u043b\u044b:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, .rar \u0436\u04d9\u043d\u0435 .zip \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.", "LabelEnterConnectUserName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430:", "LabelEnterConnectUserNameHelp": "\u0411\u04b1\u043b \u0441\u0456\u0437\u0434\u0456\u04a3 Emby \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.", - "LabelEnableEnhancedMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443", - "LabelEnableEnhancedMoviesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456, \u049b\u043e\u0441\u044b\u043c\u0448\u0430\u043b\u0430\u0440\u0434\u044b, \u0441\u043e\u043c\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0443\u0448\u0456\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u049b\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u0430\u043c\u0442\u0443 \u04af\u0448\u0456\u043d, \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440 \u049b\u0430\u043b\u0442\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456", "HeaderSyncJobInfo": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b", "FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d", "FolderTypeMovies": "\u041a\u0438\u043d\u043e", @@ -84,7 +70,6 @@ "LabelContentType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456:", "TitleScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440", "HeaderSetupLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443", - "ButtonAddMediaFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u04af\u0441\u0442\u0435\u0443", "LabelFolderType": "\u049a\u0430\u043b\u0442\u0430 \u0442\u04af\u0440\u0456:", "LabelCountry": "\u0415\u043b:", "LabelLanguage": "\u0422\u0456\u043b:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "\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 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b \u0456\u0448\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u043b\u0443\u044b \u043e\u043b\u0430\u0440\u0434\u044b \u0436\u0435\u04a3\u0456\u043b \u04e9\u04a3\u0434\u0435\u0439 \u0430\u043b\u0430\u0442\u044b\u043d \u043e\u0440\u044b\u043d\u0493\u0430 \u049b\u043e\u044f\u0434\u044b.", "LabelDownloadInternetMetadata": "\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 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443", "LabelDownloadInternetMetadataHelp": "\u041c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u043a\u04e9\u0440\u043c\u0435\u043b\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d Emby Server \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", - "TabPreferences": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440", "TabPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437", "TabLibraryAccess": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443", "TabAccess": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "\u0411\u0430\u0440\u043b\u044b\u049b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043b\u0430\u0440\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443", "DeviceAccessHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u0435\u0433\u0435\u0439 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d \u049b\u0430\u043d\u0442\u044b\u043d\u0430\u0443\u0493\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u043c\u0430\u0439\u0434\u044b. \u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d\u0430\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u0441\u04af\u0437\u0433\u0456\u043b\u0435\u0443\u0456 \u0436\u0430\u04a3\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u043c\u04b1\u043d\u0434\u0430 \u0431\u0435\u043a\u0456\u0442\u0456\u043b\u0433\u0435\u043d\u0448\u0435 \u0434\u0435\u0439\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0493\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u0430\u0434\u044b.", "LabelDisplayMissingEpisodesWithinSeasons": "\u0416\u043e\u049b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u043c\u0430\u0443\u0441\u044b\u043c \u0456\u0448\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "\u0411\u04b1\u043b \u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b Emby Server \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d\u0434\u0430\u0493\u044b \u0422\u0414 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043b\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u0443\u043b\u044b \u0431\u043e\u043b\u0443\u044b \u043a\u0435\u0440\u0435\u043a.", "LabelUnairedMissingEpisodesWithinSeasons": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0433\u0435\u043d \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u043c\u0430\u0443\u0441\u044b\u043c \u0456\u0448\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443", + "ImportMissingEpisodesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u043e\u049b \u044d\u043f\u0438\u0437\u043e\u0434\u0442\u0430\u0440 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442 \u0441\u0456\u0437\u0434\u0456\u04a3 Emby \u0434\u0435\u0440\u0435\u043a\u049b\u043e\u0440\u0493\u0430 \u04d9\u043a\u0435\u043b\u0456\u043d\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0430\u0443\u0441\u044b\u043c\u0434\u0430\u0440 \u043c\u0435\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440 \u0430\u044f\u0441\u044b\u043d\u0434\u0430 \u043f\u0430\u0439\u0434\u0430 \u0431\u043e\u043b\u0430\u0434\u044b. \u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0434\u0435 \u0431\u04b1\u043b \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u04b1\u0437\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", "HeaderVideoPlaybackSettings": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", + "OptionDownloadInternetMetadataTvPrograms": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0435\u0433\u0456 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u043b\u0433\u0435\u043d \u0431\u0435\u0440\u0456\u043b\u0456\u043c\u0434\u0435\u0440 \u04af\u0448\u0456\u043d \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443", "HeaderPlaybackSettings": "\u041e\u0439\u043d\u0430\u0442\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", "LabelAudioLanguagePreference": "\u0414\u044b\u0431\u044b\u0441 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:", "LabelSubtitleLanguagePreference": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 \u043f\u0456\u0448\u0456\u043c\u0434\u0456\u043a \u0430\u0440\u0430\u049b\u0430\u0442\u044b\u043d\u0430\u0441\u044b \u04b1\u0441\u044b\u043d\u044b\u043b\u0430\u0434\u044b. \u0422\u0435\u043a \u049b\u0430\u043d\u0430 JPG\/PNG.", "MessageNothingHere": "\u041e\u0441\u044b\u043d\u0434\u0430 \u0435\u0448\u0442\u0435\u043c\u0435 \u0436\u043e\u049b.", "MessagePleaseEnsureInternetMetadata": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u044b \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.", - "TabSuggested": "\u04b0\u0441\u044b\u043d\u044b\u043b\u0493\u0430\u043d", + "AlreadyPaidHelp1": "\u0415\u0433\u0435\u0440 \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d Media Browser for Android \u0435\u0441\u043a\u0456 \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043b\u0435\u0433\u0435\u043d \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0441\u0456\u0437\u0433\u0435 \u043e\u0441\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u0434\u0430\u043d \u0442\u04e9\u043b\u0435\u0443\u0433\u0435 \u049b\u0430\u0436\u0435\u0442\u0456 \u0436\u043e\u049b. \u0411\u0456\u0437\u0433\u0435 {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u0493\u0430 \u0445\u0430\u0442 \u0436\u0456\u0431\u0435\u0440\u0443 \u04af\u0448\u0456\u043d \u0416\u0430\u0440\u0430\u0439\u0434\u044b \u0434\u0435\u0433\u0435\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0441\u0456\u0437 \u04af\u0448\u0456\u043d \u0431\u0456\u0437 \u043e\u043d\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0435\u043c\u0456\u0437.", + "AlreadyPaidHelp2": "Emby Premiere \u0430\u043b\u0434\u044b\u04a3\u044b\u0437 \u0431\u0430? \u0416\u0430\u0439 \u0493\u0430\u043d\u0430 \u0431\u04b1\u043b \u0442\u0456\u043b\u049b\u0430\u0442\u044b\u0441\u0443 \u0442\u0435\u0440\u0435\u0437\u0435\u0441\u0456\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u04a3\u044b\u0437 \u0434\u0430, Emby Server \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430 -> Emby Premiere \u0430\u0441\u0442\u044b\u043d\u0434\u0430 Emby Premiere \u043e\u0440\u043d\u0430\u0442\u044b\u043f \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437, \u0441\u043e\u043d\u0434\u0430 \u0431\u04b1\u043d\u044b\u04a3 \u049b\u04b1\u043b\u043f\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0430\u0448\u044b\u043b\u0430\u0434\u044b.", "TabSuggestions": "\u04b0\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440", "TabLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456", "TabUpcoming": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d", "TabShows": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440", "TabEpisodes": "\u0422\u0414-\u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", "TabGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440", - "TabPeople": "\u0410\u0434\u0430\u043c\u0434\u0430\u0440", "TabNetworks": "\u0416\u0435\u043b\u0456\u043b\u0435\u0440", "HeaderUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440", "HeaderFilters": "\u0421\u04af\u0437\u0433\u0456\u043b\u0435\u0440", @@ -166,6 +153,7 @@ "OptionWriters": "\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439\u0448\u0456\u043b\u0435\u0440", "OptionProducers": "\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440\u043b\u0435\u0440", "HeaderResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443", + "HeaderContinueWatching": "\u049a\u0430\u0440\u0430\u0443\u0434\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443", "HeaderNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456", "NoNextUpItemsMessage": "\u0415\u0448\u0442\u0435\u04a3\u0435 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b. \u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u0430\u0440\u0430\u0439 \u0431\u0430\u0441\u0442\u0430\u04a3\u044b\u0437!", "HeaderLatestEpisodes": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", @@ -185,6 +173,7 @@ "OptionPlayCount": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0435\u0441\u0435\u0431\u0456", "OptionDatePlayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043a\u04af\u043d\u0456", "OptionDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456", + "DateAddedValue": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456: {0}", "OptionAlbumArtist": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u0441\u044b", "OptionArtist": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b", "OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "\u0411\u0435\u0439\u043d\u0435 \u049b\u0430\u0440\u049b\u044b\u043d\u044b", "OptionResumable": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0430\u043b\u0430\u0442\u044b\u043d", "ScheduledTasksHelp": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u044b\u043d \u043b\u0430\u0439\u044b\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043d\u044b \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437.", - "ScheduledTasksTitle": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b", "TabMyPlugins": "\u041c\u0435\u043d\u0456\u04a3 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0456\u043c", "TabCatalog": "\u0422\u0456\u0437\u0456\u043c\u0434\u0435\u043c\u0435", "TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u04d9\u0443\u0435\u043d\u0434\u0435\u0440", "HeaderRecentlyPlayed": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430\u0440", "HeaderFrequentlyPlayed": "\u0416\u0438\u0456 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430\u0440", - "DevBuildWarning": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443 \u049b\u04b1\u0440\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u0430\u0440 \u0435\u04a3 \u0430\u043b\u0434\u044b\u04a3\u0493\u044b \u049b\u0430\u0442\u0430\u0440\u043b\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0416\u0438\u0456 \u0448\u044b\u0493\u0430\u0440\u043b\u044b\u043f \u043c\u044b\u043d\u0430 \u049b\u04b1\u0440\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u0430\u0440 \u0442\u043e\u043b\u044b\u049b \u0441\u044b\u043d\u0430\u049b\u0442\u0430\u043c\u0430\u043b\u0430\u0443\u0434\u0430\u043d \u04e9\u0442\u043f\u0435\u0433\u0435\u043d. \u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0431\u04b1\u0437\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0442\u04af\u0433\u0435\u043b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440 \u043c\u04af\u043b\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u043c\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", "LabelVideoType": "\u0411\u0435\u0439\u043d\u0435 \u0442\u04af\u0440\u0456:", "OptionBluray": "BluRay", "OptionDvd": "DVD", @@ -277,9 +264,8 @@ "OptionHideUserFromLoginHelp": "\u0416\u0435\u043a\u0435 \u043d\u0435\u043c\u0435\u0441\u0435 \u0436\u0430\u0441\u044b\u0440\u044b\u043d \u04d9\u043a\u0456\u043c\u0448\u0456 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u044b. \u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043c\u0435\u043d \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0435\u043d\u0433\u0456\u0437\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u049b\u043e\u043b\u043c\u0435\u043d \u043a\u0456\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.", "OptionDisableUser": "\u0411\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u0443", "OptionDisableUserHelp": "\u0415\u0433\u0435\u0440 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u044b\u043d\u0441\u0430, \u0441\u0435\u0440\u0432\u0435\u0440 \u0431\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0434\u0430\u043d \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u043f\u0435\u0439\u0434\u0456. \u0411\u0430\u0440 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u0434\u0430\u0440 \u043a\u0435\u043d\u0435\u0442 \u04af\u0437\u0456\u043b\u0435\u0434\u0456.", - "HeaderAdvancedControl": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443", "LabelName": "\u0410\u0442\u044b:", - "ButtonHelp": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u0433\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430\u0493\u0430", + "ButtonHelp": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430", "OptionAllowUserToManageServer": "\u0411\u0443\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443", "HeaderFeatureAccess": "\u049a\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0434\u044b \u049b\u0430\u0442\u044b\u043d\u0430\u0443", "OptionAllowMediaPlayback": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443", @@ -290,8 +276,7 @@ "OptionAllowRemoteSharedDevices": "\u041e\u0440\u0442\u0430\u049b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443", "OptionAllowRemoteSharedDevicesHelp": "DLNA-\u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0431\u0430\u0441\u049b\u0430\u0440\u0493\u0430\u043d\u0448\u0430 \u0434\u0435\u0439\u0456\u043d \u043e\u0440\u0442\u0430\u049b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0435\u0441\u0435\u043f\u0442\u0435\u043b\u0456\u043d\u0435\u0434\u0456.", "OptionAllowLinkSharing": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442\u0442\u0456\u043a \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443", - "OptionAllowLinkSharingHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0432\u0435\u0431-\u0431\u0435\u0442\u0442\u0435\u0440 \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u043d\u0430\u0434\u044b. \u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0435\u0448\u049b\u0430\u0448\u0430\u043d \u043e\u0440\u0442\u0430\u049b \u0436\u0430\u0440\u0438\u044f\u043b\u0430\u043d\u0431\u0430\u0439\u0434\u044b. \u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u0443\u0430\u049b\u044b\u0442\u043f\u0435\u043d \u0448\u0435\u043a\u0442\u0435\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 {0} \u043a\u04af\u043d\u0434\u0435 \u0430\u044f\u049b\u0442\u0430\u043b\u0430\u0434\u044b.", - "HeaderSharing": "\u041e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443", + "OptionAllowLinkSharingHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0431\u0435\u0442\u0442\u0435\u0440 \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u043d\u0430\u0434\u044b. \u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0435\u0448\u049b\u0430\u0448\u0430\u043d \u043e\u0440\u0442\u0430\u049b \u0436\u0430\u0440\u0438\u044f\u043b\u0430\u043d\u0431\u0430\u0439\u0434\u044b. \u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u0443\u0430\u049b\u044b\u0442\u043f\u0435\u043d \u0448\u0435\u043a\u0442\u0435\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 {0} \u043a\u04af\u043d\u0434\u0435 \u0430\u044f\u049b\u0442\u0430\u043b\u0430\u0434\u044b.", "HeaderRemoteControl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443", "OptionMissingTmdbId": "TMDb Id \u0436\u043e\u049b", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "\u0416\u043e\u043b\u0434\u0430\u0440", "TabServer": "\u0421\u0435\u0440\u0432\u0435\u0440", "TabTranscoding": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443", - "TitleAdvanced": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d", "OptionRelease": "\u0420\u0435\u0441\u043c\u0438 \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u044b\u043c", - "OptionBeta": "\u0411\u0435\u0442\u0430 \u043d\u04b1\u0441\u049b\u0430", - "OptionDev": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u044b\u049b", "LabelAllowServerAutoRestart": "\u0416\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0441\u0435\u0440\u0432\u0435\u0440\u0433\u0435 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u0434\u044b \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443", "LabelAllowServerAutoRestartHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u043f\u0430\u0439\u0434\u0430\u043b\u0443\u043d\u0448\u044b\u043b\u0430\u0440 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0435\u043c\u0435\u0441, \u04d9\u0440\u0435\u043a\u0435\u0442\u0441\u0456\u0437 \u043c\u0435\u0437\u0433\u0456\u043b\u0434\u0435\u0440\u0434\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0430\u0434\u044b.", "LabelRunServerAtStartup": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u0434\u0430\u043d \u0431\u0430\u0441\u0442\u0430\u043f \u043e\u0440\u044b\u043d\u0434\u0430\u0443", @@ -330,11 +312,9 @@ "TabGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440", "TabMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", "TabOthers": "\u0411\u0430\u0441\u049b\u0430\u043b\u0430\u0440", - "HeaderExtractChapterImagesFor": "\u0421\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u0443 \u043c\u0430\u043a\u0441\u0430\u0442\u044b:", "OptionMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440", "OptionEpisodes": "\u0422\u0414-\u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", "OptionOtherVideos": "\u0411\u0430\u0441\u049b\u0430 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440", - "TitleMetadata": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440", "LabelFanartApiKey": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442:", "LabelFanartApiKeyHelp": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u0441\u0456\u0437 Fanart \u04af\u0448\u0456\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0430\u0443\u0430\u043b\u0434\u0430\u0440\u0493\u0430 7 \u043a\u04af\u043d\u0456\u043d\u0435\u043d \u0431\u04b1\u0440\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u043b\u0493\u0430\u043d \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u049b\u0430\u0439\u0442\u0430\u0440\u044b\u043b\u0430\u0434\u044b. \u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u043c\u0435\u043d \u0431\u04b1\u043b 48 \u0441\u0430\u0493\u0430\u0442\u049b\u0430 \u0434\u0435\u0439\u0456\u043d \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b, \u0430\u043b,\u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b, Fanart VIP-\u043c\u04af\u0448\u0435\u0441\u0456 \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0431\u04b1\u043b \u0448\u0430\u043c\u0430\u043c\u0435\u043d 10 \u043c\u0438\u043d\u04e9\u0442\u043a\u0435 \u0434\u0435\u0439\u0456\u043d \u0442\u0430\u0493\u044b \u0434\u0430 \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b.", "ExtractChapterImagesHelp": "\u0421\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0448\u044b\u0493\u0430\u0440\u044b\u043f \u0430\u043b\u0443 Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0441\u0430\u0445\u043d\u0430 \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u0443\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u044b\u0437\u0431\u0430\u043b\u044b\u049b \u043c\u04d9\u0437\u0456\u0440\u043b\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0411\u04b1\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0431\u0430\u044f\u0443, \u041e\u041f \u043a\u0435\u0440\u0435\u043a \u049b\u044b\u043b\u0430\u0442\u044b\u043d \u0436\u04d9\u043d\u0435 \u0431\u0456\u0440\u0430\u0437 \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d. \u041e\u043b \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0442\u0430\u0431\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u04d9\u043d\u0435 \u0442\u04af\u043d\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u044b\u043d\u0430 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456. \u041e\u0440\u044b\u043d\u0434\u0430\u0443 \u043a\u0435\u0441\u0442\u0435\u0441\u0456 \u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b \u0430\u0439\u043c\u0430\u0493\u044b\u043d\u0434\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0435\u0434\u0456. \u0411\u04b1\u043b \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043d\u044b \u049b\u0430\u0440\u0431\u0430\u043b\u0430\u0441 \u0441\u0430\u0493\u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0434\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0442\u043a\u0456\u0437\u0443 \u04b1\u0441\u044b\u043d\u044b\u043b\u043c\u0430\u0439\u0434\u044b.", @@ -350,15 +330,15 @@ "TabCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440", "HeaderChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440", "TabRecordings": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440", - "TabScheduled": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d", "TabSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440", "TabFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440", "TabMyLibrary": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043c", "ButtonCancelRecording": "\u0416\u0430\u0437\u0431\u0430\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "LabelPrePaddingMinutes": "\u0410\u043b\u0493\u0430 \u0448\u0435\u0433\u0456\u043d\u0456\u0441, \u043c\u0438\u043d:", - "LabelPostPaddingMinutes": "\u0410\u0440\u0442\u049b\u0430 \u0448\u0435\u0433\u0456\u043d\u0456\u0441, \u043c\u0438\u043d:", + "LabelStartWhenPossible": "\u041c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u0431\u0430\u0441\u0442\u0430\u0443:", + "LabelStopWhenPossible": "\u041c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u0442\u043e\u049b\u0442\u0430\u0442\u0443:", + "MinutesBefore": "\u043c\u0438\u043d\u04e9\u0442 \u0430\u043b\u0434\u044b\u043d\u0434\u0430", + "MinutesAfter": "\u043c\u0438\u043d\u04e9\u0442 \u0441\u043e\u04a3\u044b\u04a3\u0434\u0430", "HeaderWhatsOnTV": "\u042d\u0444\u0438\u0440\u0434\u0435", - "TabStatus": "\u041a\u04af\u0439", "TabSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440", "ButtonRefreshGuideData": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443", "ButtonRefresh": "\u0416\u0430\u04a3\u0493\u044b\u0440\u0442\u0443", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u0430\u043d \u0436\u0430\u0437\u044b\u043f \u0430\u043b\u0443", "OptionRecordAnytime": "\u04d8\u0440 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0436\u0430\u0437\u044b\u043f \u0430\u043b\u0443", "OptionRecordOnlyNewEpisodes": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u0430\u04a3\u0430 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u0430\u0437\u044b\u043f \u0430\u043b\u0443", - "HeaderRepeatingOptions": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u043e\u043f\u0446\u0438\u044f\u043b\u0430\u0440\u044b", "HeaderDays": "\u041a\u04af\u043d\u0434\u0435\u0440", "HeaderActiveRecordings": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440", "HeaderLatestRecordings": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u043e\u0439\u044b\u043d\u0434\u0430\u0440", "HeaderRecentlyPlayedGames": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043e\u0439\u044b\u043d\u0434\u0430\u0440", "TabGameSystems": "\u041e\u0439\u044b\u043d \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456", - "TitleMediaLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430", "TabFolders": "\u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440", "TabPathSubstitution": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443", "LabelSeasonZeroDisplayName": "\u041c\u0430\u0443\u0441\u044b\u043c 0 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u0430\u0442\u044b:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "\u041d\u04af\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0439\u0442\u0430 \u0431\u04e9\u043b\u0443", "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0433\u0435", "LabelMissing": "\u0416\u043e\u049b", - "LabelOffline": "\u0414\u0435\u0440\u0431\u0435\u0441", - "PathSubstitutionHelp": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u043b\u0430\u0440\u044b\u043d \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u044b Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u043e\u043b\u043c\u0435\u043d \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u0433\u0435\u043d\u0434\u0435, \u0431\u04b1\u043b\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0442\u044b \u0436\u0435\u043b\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u0440\u0435\u0441\u0443\u0440\u0441\u0442\u0430\u0440\u044b\u043d \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430\u043d \u0436\u0430\u043b\u0442\u0430\u0440\u0430\u0434\u044b.", - "HeaderFrom": "\u049a\u0430\u0439\u0434\u0430\u043d", - "HeaderTo": "\u049a\u0430\u0439\u0434\u0430", - "LabelFrom": "\u049a\u0430\u0439\u0434\u0430\u043d:", - "LabelTo": "\u049a\u0430\u0439\u0434\u0430:", - "LabelToHelp": "\u041c\u044b\u0441\u0430\u043b: \\\\MyServer\\Movies (Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u049b\u0430\u0442\u044b\u043d\u0430\u0439\u0442\u044b\u043d \u0436\u043e\u043b)", - "ButtonAddPathSubstitution": "\u0410\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u04af\u0441\u0442\u0435\u0443", "OptionSpecialEpisode": "\u0410\u0440\u043d\u0430\u0439\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", "OptionMissingEpisode": "\u0416\u043e\u049b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", "OptionUnairedEpisode": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0433\u0435\u043d \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", "OptionEpisodeSortName": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0456\u04a3 \u0441\u04b1\u0440\u044b\u043f\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0430\u0442\u044b", "OptionSeriesSortName": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0430\u0442\u044b", "OptionTvdbRating": "Tvdb \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b", - "EditCollectionItemsHelp": "\u0411\u04b1\u043b \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0430 \u049b\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u04d9\u0440\u049b\u0430\u0439\u0441\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456, \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b, \u0430\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440\u0434\u044b, \u043a\u0456\u0442\u0430\u043f\u0442\u0430\u0440\u0434\u044b \u043d\u0435 \u043e\u0439\u044b\u043d\u0434\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u04a3\u0456\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437.", "HeaderAddTitles": "\u0410\u0442\u0430\u0443\u043b\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443", "LabelEnableDlnaPlayTo": "DLNA \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u043e\u0441\u0443", "LabelEnableDlnaPlayToHelp": "Emby \u0436\u0435\u043b\u0456\u0434\u0435\u0433\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0431\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0431\u04b1\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0456\u043d \u04b1\u0441\u044b\u043d\u0430\u0434\u044b.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "\u0416\u04af\u0439\u0435\u043b\u0456\u043a \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440", "CustomDlnaProfilesHelp": "\u0416\u0430\u04a3\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u043c\u0430\u049b\u0441\u0430\u0442\u044b \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u044b \u0436\u0430\u0441\u0430\u0443 \u043d\u0435 \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u044b \u049b\u0430\u0439\u0442\u0430 \u0430\u043d\u044b\u049b\u0442\u0430\u0443.", "SystemDlnaProfilesHelp": "\u0416\u04af\u0439\u0435\u043b\u0456\u043a \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0442\u0435\u043a \u043e\u049b\u0443 \u04af\u0448\u0456\u043d. \u0416\u04af\u0439\u0435\u043b\u0456\u043a \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u044b\u04a3 \u04e9\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440\u0456 \u0436\u0430\u04a3\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0493\u0430 \u0436\u0430\u0437\u044b\u043b\u0430\u0434\u044b.", - "TitleDashboard": "\u0422\u0430\u049b\u0442\u0430", "TabHome": "\u0411\u0430\u0441\u0442\u044b", "TabInfo": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b \u0442\u0443\u0440\u0430\u043b\u044b", "HeaderLinks": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043b\u0435\u0440", @@ -485,7 +453,7 @@ "ButtonSubmit": "\u0416\u0456\u0431\u0435\u0440\u0443", "ButtonCreate": "\u0416\u0430\u0441\u0430\u0443", "LabelCustomCss": "\u0422\u0435\u04a3\u0448\u0435\u0443\u043b\u0456 CSS:", - "LabelCustomCssHelp": "\u04e8\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u0443\u043b\u0456 CSS-\u043a\u043e\u0434\u044b\u043d \u0432\u0435\u0431-\u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u04a3\u044b\u0437.", + "LabelCustomCssHelp": "\u04e8\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u0443\u043b\u0456 CSS-\u043a\u043e\u0434\u044b\u043d \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440-\u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u04a3\u044b\u0437.", "LabelLocalHttpServerPortNumber": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 http-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:", "LabelLocalHttpServerPortNumberHelp": "Emby HTTP-\u0441\u0435\u0440\u0432\u0435\u0440\u0456 \u0431\u0430\u0439\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0493\u0430 \u0442\u0438\u0456\u0441\u0442\u0456 TCP-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.", "LabelPublicHttpPort": "\u0416\u0430\u0440\u0438\u044f http-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "\u0411\u04b1\u043b \u043a\u0435\u0437\u0434\u0435\u043d \u0431\u04b1\u0440\u044b\u043d \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0441\u0430 \u0442\u0443\u044b\u043d\u0434\u044b\u043b\u0430\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0434\u0435\u043f \u0431\u043e\u043b\u0436\u0430\u043b\u0434\u044b", "LabelMaxResumePercentageHelp": "\u0411\u04b1\u043b \u043a\u0435\u0437\u0434\u0435\u043d \u043a\u0435\u0439\u0456\u043d \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0441\u0430 \u0442\u0443\u044b\u043d\u0434\u044b\u043b\u0430\u0440 \u0442\u043e\u043b\u044b\u049b \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u0434\u0435\u043f \u0431\u043e\u043b\u0436\u0430\u043b\u0434\u044b", "LabelMinResumeDurationHelp": "\u0411\u04b1\u0434\u0430\u043d \u049b\u044b\u0441\u049b\u0430 \u0442\u0443\u044b\u043d\u0434\u044b\u043b\u0430\u0440 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u043c\u0430\u0439\u0434\u044b", - "TitleAutoOrganize": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", "TabActivityLog": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440 \u0436\u04b1\u0440\u043d\u0430\u043b\u044b", "TabSmartMatches": "\u0417\u0438\u044f\u0442\u0442\u044b \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0435\u0440", "TabSmartMatchInfo": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u0442\u04af\u0437\u0435\u0442\u0443 \u0434\u0438\u0430\u043b\u043e\u0433\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0433\u0435\u043d \u0437\u0438\u044f\u0442\u0442\u044b \u0441\u04d9\u0439\u043a\u0435\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Emby Premiere \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u043e\u0441\u044b \u0436\u043e\u0431\u0430 \u0434\u0430\u043c\u0443\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u044b\u043d\u0430 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443\u0433\u0435 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0456\u04a3\u0456\u0437. \u0411\u0430\u0440\u043b\u044b\u049b \u0442\u0430\u0431\u044b\u0441\u0442\u0430\u0440\u0434\u044b\u04a3 \u0431\u0456\u0440 \u0431\u04e9\u043b\u0456\u0433\u0456\u043d \u0431\u0456\u0437\u0433\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u0431\u0430\u0441\u049b\u0430 \u0442\u0435\u0433\u0456\u043d \u049b\u04b1\u0440\u0430\u043b\u0434\u0430\u0440 \u04af\u0448\u0456\u043d \u04af\u043b\u0435\u0441\u0442\u0456\u0440\u0435\u043c\u0456\u0437.", "DonationNextStep": "\u0410\u044f\u049b\u0442\u0430\u043b\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d, \u049b\u0430\u0439\u0442\u0430 \u043e\u0440\u0430\u043b\u044b\u04a3\u044b\u0437 \u0434\u0430 \u042d-\u043f\u043e\u0448\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u043b\u044b\u043d\u0430\u0442\u044b\u043d Emby Premiere \u043a\u0456\u043b\u0442\u0456\u04a3\u0456\u0437\u0434\u0456 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.", "AutoOrganizeHelp": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0434\u0430\u0493\u044b \u0436\u0430\u04a3\u0430 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0431\u0430\u049b\u044b\u043b\u0430\u0439\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u04b1\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0430\u0434\u044b.", - "AutoOrganizeTvHelp": "\u0422\u0414 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0430\u0440 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0493\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0435\u0434\u0456.", "OptionEnableEpisodeOrganization": "\u0416\u0430\u04a3\u0430 \u0431\u04e9\u043b\u0456\u043c \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443", "LabelWatchFolder": "\u049a\u0430\u0434\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u0430\u0493\u044b \u049b\u0430\u043b\u0442\u0430:", "LabelWatchFolderHelp": "\"\u0416\u0430\u04a3\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443\" \u0434\u0435\u0433\u0435\u043d \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0493\u0430\u043d \u043a\u0435\u0437\u0434\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u0431\u04b1\u043b \u049b\u0430\u043b\u0442\u0430\u043d\u044b \u0441\u0430\u0443\u0430\u043b\u0434\u0430\u043f \u0442\u04b1\u0440\u0430\u0434\u044b.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "\u041e\u0440\u044b\u043d\u0434\u0430\u043b\u044b\u043f \u0436\u0430\u0442\u049b\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440", "HeaderActiveDevices": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440", "HeaderPendingInstallations": "\u0411\u04e9\u0433\u0435\u043b\u0456\u0441 \u043e\u0440\u043d\u0430\u0442\u044b\u043c\u0434\u0430\u0440", - "HeaderServerInformation": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b", "ButtonRestartNow": "\u049a\u0430\u0437\u0456\u0440 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443", "ButtonRestart": "\u049a\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443", "ButtonShutdown": "\u0416\u04b1\u043c\u044b\u0441\u0442\u044b \u0430\u044f\u049b\u0442\u0430\u0443", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere \u043a\u0456\u043b\u0442\u0456 \u0436\u043e\u049b \u043d\u0435\u043c\u0435\u0441\u0435 \u0436\u0430\u0440\u0430\u043c\u0441\u044b\u0437.", "ErrorMessageInvalidKey": "\u04d8\u0440\u049b\u0430\u0439\u0441\u044b \u0441\u044b\u0439\u0430\u049b\u044b\u043b\u044b\u049b \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u044b\u043d\u0434\u0430, \u0441\u0456\u0437 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b\u043d\u0430 \u0438\u0435 \u0431\u043e\u043b\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442.", "HeaderDisplaySettings": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", - "TabPlayTo": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443", "LabelEnableDlnaServer": "DLNA \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443", "LabelEnableDlnaServerHelp": "\u0416\u0435\u043b\u0456\u0434\u0435\u0433\u0456 UPnP \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0493\u0430 Emby \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d \u0448\u043e\u043b\u0443 \u043c\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443.", "LabelEnableBlastAliveMessages": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u0440\u044b\u043d \u0436\u0430\u0443\u0434\u044b\u0440\u0443", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u043b\u0456\u0433\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0440\u0430 \u04b1\u0437\u0430\u049b\u0442\u044b\u0493\u044b\u043d \u0441\u0435\u043a\u0443\u043d\u0434\u0442\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b.", "LabelDefaultUser": "\u04d8\u0434\u0435\u043f\u043a\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b:", "LabelDefaultUserHelp": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430 \u049b\u0430\u0439 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0441\u044b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0443\u0456 \u0442\u0438\u0456\u0441\u0442\u0456\u043b\u0456\u0433\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b. \u041f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0493\u0430\u043d\u0434\u0430 \u0431\u04b1\u043b \u04d9\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", - "TitleDlna": "DLNA", "HeaderServerSettings": "\u0421\u0435\u0440\u0432\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", "HeaderRequireManualLogin": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u049b\u043e\u043b\u043c\u0435\u043d \u043a\u0456\u0440\u0443\u0433\u0435 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0443:", "HeaderRequireManualLoginHelp": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430, Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u043f\u0430\u0439\u0434\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u043d\u0435\u043a\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443\u044b \u0431\u0430\u0440 \u043a\u0456\u0440\u0443 \u044d\u043a\u0440\u0430\u043d\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", "OptionOtherApps": "\u0411\u0430\u0441\u049b\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440", "OptionMobileApps": "\u04b0\u0442\u049b\u044b\u0440 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440", - "HeaderNotificationList": "\u0416\u0456\u0431\u0435\u0440\u0443 \u043e\u043f\u0446\u0438\u044f\u043b\u0430\u0440\u044b\u043d \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437.", - "NotificationOptionApplicationUpdateAvailable": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456", - "NotificationOptionApplicationUpdateInstalled": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b", - "NotificationOptionPluginUpdateInstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b", - "NotificationOptionPluginInstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b", - "NotificationOptionPluginUninstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b", - "NotificationOptionVideoPlayback": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b", - "NotificationOptionAudioPlayback": "\u0414\u044b\u0431\u044b\u0441 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b", - "NotificationOptionGamePlayback": "\u041e\u0439\u044b\u043d \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b", - "NotificationOptionVideoPlaybackStopped": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b", - "NotificationOptionAudioPlaybackStopped": "\u0414\u044b\u0431\u044b\u0441 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b", - "NotificationOptionGamePlaybackStopped": "\u041e\u0439\u044b\u043d \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b", - "NotificationOptionTaskFailed": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0441\u04d9\u0442\u0441\u0456\u0437\u0434\u0456\u0433\u0456", - "NotificationOptionInstallationFailed": "\u041e\u0440\u043d\u0430\u0442\u0443 \u0441\u04d9\u0442\u0441\u0456\u0437\u0434\u0456\u0433\u0456", - "NotificationOptionNewLibraryContent": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d", - "NotificationOptionCameraImageUploaded": "\u041a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442 \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u044b\u043b\u0493\u0430\u043d", - "NotificationOptionUserLockedOut": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u044b", - "HeaderSendNotificationHelp": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440 Emby \u043a\u0456\u0440\u0456\u0441 \u0436\u04d9\u0448\u0456\u0433\u0456\u043d\u0435 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u043b\u0435\u0434\u0456. \u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u043e\u043f\u0446\u0438\u044f\u043b\u0430\u0440 \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u049b\u043e\u0439\u044b\u043d\u0434\u044b\u0441\u044b\u043d\u0430\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.", - "NotificationOptionServerRestartRequired": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u049b\u0430\u0436\u0435\u0442", "LabelNotificationEnabled": "\u0411\u04b1\u043b \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u049b\u043e\u0441\u0443", "LabelMonitorUsers": "\u041c\u044b\u043d\u0430\u043d\u044b\u04a3 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0431\u0430\u049b\u044b\u043b\u0430\u0443:", "LabelSendNotificationToUsers": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u0436\u0456\u0431\u0435\u0440\u0443:", @@ -662,12 +606,10 @@ "ButtonPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b\u0493\u0430", "LabelGroupMoviesIntoCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0456\u0448\u0456\u043d\u0434\u0435\u0433\u0456 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456 \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443", "LabelGroupMoviesIntoCollectionsHelp": "\u0424\u0438\u043b\u044c\u043c \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0433\u0435\u043d \u043a\u0435\u0437\u0434\u0435 \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u043a\u0456\u0440\u0435\u0442\u0456\u043d \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440 \u0442\u043e\u043f\u0442\u0430\u043b\u0493\u0430\u043d \u0431\u0456\u0440\u044b\u04a3\u0493\u0430\u0439 \u0442\u0430\u0440\u043c\u0430\u049b \u0431\u043e\u043b\u044b\u043f \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0434\u0456.", - "NotificationOptionPluginError": "\u041f\u043b\u0430\u0433\u0438\u043d \u0441\u04d9\u0442\u0441\u0456\u0437\u0434\u0456\u0433\u0456", "ButtonVolumeUp": "\u04ae\u043d\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u043e\u0493\u0430\u0440\u044b\u043b\u0430\u0442\u0443", "ButtonVolumeDown": "\u04ae\u043d\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u0442\u04e9\u043c\u0435\u043d\u0434\u0435\u0442\u0443", "HeaderLatestMedia": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440", "OptionNoSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u043e\u049b", - "OptionSpecialFeatures": "\u0410\u0440\u043d\u0430\u0439\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440", "HeaderCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440", "LabelProfileCodecsHelp": "\u04ae\u0442\u0456\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d. \u0411\u0430\u0440\u043b\u044b\u049b \u043a\u043e\u0434\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u04b1\u043b \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.", "LabelProfileContainersHelp": "\u04ae\u0442\u0456\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d. \u0411\u0430\u0440\u043b\u044b\u049b \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u043b\u0435\u0440\u0433\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u04b1\u043b \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "\u049a\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0436\u043e\u049b", "LabelDisplayPluginsFor": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u043c\u044b\u043d\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "\u0411\u04e9\u043b\u0456\u043c \u0430\u0442\u0430\u0443\u044b", "LabelSeriesNamePlain": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0430\u0442\u0430\u0443\u044b", "ValueSeriesNamePeriod": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f.\u0430\u0442\u0430\u0443\u044b", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "\u0410\u044f\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0456\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456", "HeaderTypeText": "\u041c\u04d9\u0442\u0456\u043d\u0434\u0456 \u0435\u043d\u0433\u0456\u0437\u0443", "LabelTypeText": "\u041c\u04d9\u0442\u0456\u043d", - "HeaderSearchForSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0456\u0437\u0434\u0435\u0443", - "MessageNoSubtitleSearchResultsFound": "\u0406\u0437\u0434\u0435\u0433\u0435\u043d\u0434\u0435 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", "TabDisplay": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443", "TabLanguages": "\u0422\u0456\u043b\u0434\u0435\u0440", "TabAppSettings": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "\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.", "LabelEnableBackdropsHelp": "\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.", "HeaderHomePage": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442", - "HeaderSettingsForThisDevice": "\u041e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440", "OptionAuto": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b", "OptionYes": "\u0418\u04d9", "OptionNo": "\u0416\u043e\u049b", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 2-\u0431\u04e9\u043b\u0456\u043c:", "LabelHomePageSection3": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 3-\u0431\u04e9\u043b\u0456\u043c:", "LabelHomePageSection4": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 4-\u0431\u04e9\u043b\u0456\u043c:", - "OptionMyMediaButtons": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c (\u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440)", "OptionMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c", "OptionMyMediaSmall": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c (\u044b\u049b\u0448\u0430\u043c)", "OptionResumablemedia": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b", @@ -815,53 +752,21 @@ "HeaderReports": "\u0411\u0430\u044f\u043d\u0430\u0442\u0442\u0430\u0440", "HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440", "OptionDefaultSort": "\u04d8\u0434\u0435\u043f\u043a\u0456", - "OptionCommunityMostWatchedSort": "\u0415\u04a3 \u043a\u04e9\u043f \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u0434\u0430\u0440", "TabNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456", - "PlaceholderUsername": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b", "HeaderBecomeProjectSupporter": "Emby Premiere \u0430\u043b\u0443", "MessageNoMovieSuggestionsAvailable": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0444\u0438\u043b\u044c\u043c \u04b1\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440\u044b \u0430\u0493\u044b\u043c\u0434\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456 \u049b\u0430\u0440\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b \u0431\u0430\u0441\u0442\u0430\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u04b1\u0441\u044b\u043d\u044b\u0442\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b \u043a\u04e9\u0440\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u043a\u0435\u043b\u0456\u04a3\u0456\u0437.", "MessageNoCollectionsAvailable": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0441\u0456\u0437\u0433\u0435 \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3, \u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3, \u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440\u0434\u044b\u04a3, \u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440\u0434\u044b\u04a3, \u0436\u04d9\u043d\u0435 \u041e\u0439\u044b\u043d\u0434\u0430\u0440\u0434\u044b\u04a3 \u0434\u0435\u0440\u0431\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u043e\u043f\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0436\u0430\u0441\u0430\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \"+\" \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", "MessageNoPlaylistsAvailable": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0456\u0440 \u043a\u0435\u0437\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u0436\u0430\u0441\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0433\u0435 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u043f \u0436\u04d9\u043d\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.", "MessageNoPlaylistItemsAvailable": "\u041e\u0441\u044b \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c \u0430\u0493\u044b\u043c\u0434\u0430\u0493\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0431\u043e\u0441.", - "ButtonDismiss": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u043c\u0430\u0443", "ButtonEditOtherUserPreferences": "\u041e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b\u04a3 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043d, \u0441\u0443\u0440\u0435\u0442\u0456\u043d \u0436\u04d9\u043d\u0435 \u04e9\u0437\u0456\u043d\u0434\u0456\u043a \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u04e9\u04a3\u0434\u0435\u0443.", "LabelChannelStreamQuality": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u043d\u0430\u0441\u044b\u043d\u044b\u04a3 \u0441\u0430\u043f\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:", "LabelChannelStreamQualityHelp": "\u04e8\u0442\u043a\u0456\u0437\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456 \u0442\u04e9\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u0434\u0430, \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u043d\u0443 \u0436\u0430\u0442\u044b\u049b \u04d9\u0441\u0435\u0440\u0433\u0435 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0441\u0430\u043f\u0430\u043d\u044b \u0448\u0435\u043a\u0442\u0435\u0443 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.", "OptionBestAvailableStreamQuality": "\u049a\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u04a3 \u0436\u0430\u049b\u0441\u044b", "ChannelSettingsFormHelp": "\u041f\u043b\u0430\u0433\u0438\u043d \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u043c\u0435\u0441\u0456\u043d\u0434\u0435\u0433\u0456 Trailers \u0436\u04d9\u043d\u0435 Vimeo \u0441\u0438\u044f\u049b\u0442\u044b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", - "ViewTypePlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456", "ViewTypeMovies": "\u041a\u0438\u043d\u043e", "ViewTypeTvShows": "\u0422\u0414", "ViewTypeGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440", "ViewTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", - "ViewTypeMusicGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440", - "ViewTypeMusicArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440", - "ViewTypeBoxSets": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440", - "ViewTypeChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440", - "ViewTypeLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414", - "ViewTypeLiveTvNowPlaying": "\u042d\u0444\u0438\u0440\u0434\u0435", - "ViewTypeLatestGames": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u043e\u0439\u044b\u043d\u0434\u0430\u0440", - "ViewTypeRecentlyPlayedGames": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430\u0440", - "ViewTypeGameFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440", - "ViewTypeGameSystems": "\u041e\u0439\u044b\u043d \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456", - "ViewTypeGameGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440", - "ViewTypeTvResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b", - "ViewTypeTvNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456", - "ViewTypeTvLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456", - "ViewTypeTvShowSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440", - "ViewTypeTvGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440", - "ViewTypeTvFavoriteSeries": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440", - "ViewTypeTvFavoriteEpisodes": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", - "ViewTypeMovieResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b", - "ViewTypeMovieLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456", - "ViewTypeMovieMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440", - "ViewTypeMovieCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440", - "ViewTypeMovieFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440", - "ViewTypeMovieGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440", - "ViewTypeMusicLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456", - "ViewTypeMusicPlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456", - "ViewTypeMusicAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440", - "ViewTypeMusicAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b", "HeaderOtherDisplaySettings": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", "ViewTypeMusicSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440", "ViewTypeMusicFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u0433\u0435\u043d \u043a\u0435\u0437\u0434\u0435, \u043e\u043b\u0430\u0440 Kodi \u049b\u0430\u0431\u044b\u0493\u044b\u043c\u0435\u043d \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u0441\u0438\u044b\u0441\u044b\u043c\u0434\u044b\u0493\u044b \u04af\u0448\u0456\u043d extrafanart \u0436\u04d9\u043d\u0435 extrathumbs \u0435\u043a\u0435\u0443\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.", "TabServices": "\u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440", "TabLogs": "\u0416\u04b1\u0440\u043d\u0430\u043b\u0434\u0430\u0440", - "HeaderServerLogFiles": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0436\u04b1\u0440\u043d\u0430\u043b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b:", "TabBranding": "\u0411\u0435\u0437\u0435\u043d\u0434\u0456\u0440\u0443", "HeaderBrandingHelp": "\u0422\u043e\u0431\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043d\u0435 \u04b1\u0439\u044b\u043c\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043c\u04b1\u049b\u0442\u0430\u0436\u0434\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430 \u04af\u0439\u043b\u0435\u0441\u0456\u043c\u0434\u0456 Emby \u0431\u0435\u0437\u0435\u043d\u0434\u0456\u0440\u0443\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443.", "LabelLoginDisclaimer": "\u041a\u0456\u0440\u0433\u0435\u043d\u0434\u0435\u0433\u0456 \u0435\u0441\u043a\u0435\u0440\u0442\u0443:", @@ -917,7 +821,6 @@ "HeaderDevice": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b", "HeaderUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b", "HeaderDateIssued": "\u0411\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456", - "LabelChapterName": "{0}-\u0441\u0430\u0445\u043d\u0430", "HeaderHttpHeaders": "HTTP \u04af\u0441\u0442\u0456\u04a3\u0433\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u043b\u0435\u0440\u0456", "HeaderIdentificationHeader": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u04a3\u0433\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u0441\u0456", "LabelValue": "\u041c\u04d9\u043d\u0456:", @@ -926,7 +829,6 @@ "OptionRegex": "\u04b0\u0434\u0430\u0439\u044b \u04e9\u0440\u043d\u0435\u043a", "OptionSubstring": "\u0406\u0448\u043a\u0456 \u0436\u043e\u043b", "TabView": "\u041a\u04e9\u0440\u0456\u043d\u0456\u0441", - "TabSort": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443", "TabFilter": "\u0421\u04af\u0437\u0443", "ButtonView": "\u049a\u0430\u0440\u0430\u0443", "LabelPageSize": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0448\u0435\u0433\u0456:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "HTTP", "OptionProtocolHls": "Http \u0422\u0456\u043a\u0435\u043b\u0435\u0439 \u0422\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u043d\u0443 (HLS)", "LabelContext": "\u041c\u04d9\u0442\u0456\u043d\u043c\u04d9\u043d:", - "OptionContextStreaming": "\u0422\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u043d\u0443", - "OptionContextStatic": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "TabPlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456", "ButtonClose": "\u0416\u0430\u0431\u0443", "LabelAllLanguages": "\u0411\u0430\u0440\u043b\u044b\u049b \u0442\u0456\u043b\u0434\u0435\u0440", @@ -956,7 +856,6 @@ "LabelImage": "\u0421\u0443\u0440\u0435\u0442:", "HeaderImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440", "HeaderBackdrops": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440", - "HeaderScreenshots": "\u042d\u043a\u0440\u0430\u043d \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456", "HeaderAddUpdateImage": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u04af\u0441\u0442\u0435\u0443\/\u0436\u0430\u04a3\u0430\u0440\u0442\u0443", "LabelDropImageHere": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u043c\u04b1\u043d\u0434\u0430 \u0441\u04af\u0439\u0440\u0435\u0442\u0456\u04a3\u0456\u0437", "LabelJpgPngOnly": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "\u049a\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u043d\u0493\u0430\u043d\u0434\u0430\u0440", "OptionUnidentified": "\u0410\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d\u0434\u0430\u0440", "OptionMissingParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442 \u0436\u043e\u049b", - "OptionStub": "\u0422\u044b\u0493\u044b\u043d", "OptionSeason0": "0-\u043c\u0430\u0443\u0441\u044b\u043c", "LabelReport": "\u0411\u0430\u044f\u043d\u0430\u0442:", "OptionReportSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440", @@ -991,34 +889,21 @@ "OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440", "ButtonMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a", "HeaderActivity": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440", - "ScheduledTaskStartedWithName": "{0} \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0434\u044b", - "ScheduledTaskCancelledWithName": "{0} \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b", - "ScheduledTaskCompletedWithName": "{0} \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b", - "ScheduledTaskFailed": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b", "PluginInstalledWithName": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b", "PluginUpdatedWithName": "{0} \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b", "PluginUninstalledWithName": "{0} \u0436\u043e\u0439\u044b\u043b\u0434\u044b", - "ScheduledTaskFailedWithName": "{0} \u0441\u04d9\u0442\u0441\u0456\u0437", - "DeviceOnlineWithName": "{0} \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d", "UserOnlineFromDevice": "{0} - {1} \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d", - "DeviceOfflineWithName": "{0} \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d", "UserOfflineFromDevice": "{0} - {1} \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d", - "SubtitlesDownloadedForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 {0} \u04af\u0448\u0456\u043d \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0434\u044b", - "SubtitleDownloadFailureForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 {0} \u04af\u0448\u0456\u043d \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437", "LabelRunningTimeValue": "\u0406\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443 \u0443\u0430\u049b\u044b\u0442\u044b: {0}", "LabelIpAddressValue": "IP \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b: {0}", "UserLockedOutWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u044b", "UserConfigurationUpdatedWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b", "UserCreatedWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d", - "UserPasswordChangedWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u04af\u0448\u0456\u043d \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437 \u04e9\u0437\u0433\u0435\u0440\u0442\u0456\u043b\u0434\u0456", "UserDeletedWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u0436\u043e\u0439\u044b\u043b\u0493\u0430\u043d", "MessageServerConfigurationUpdated": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456 \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b", "MessageNamedServerConfigurationUpdatedWithValue": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456 ({0} \u0431\u04e9\u043b\u0456\u043c\u0456) \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b", "MessageApplicationUpdated": "Emby Server \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b.", "UserDownloadingItemWithValues": "{0} \u043c\u044b\u043d\u0430\u043d\u044b \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u0430: {1}", - "UserStartedPlayingItemWithValues": "{0} - {1} \u043e\u0439\u043d\u0430\u0442\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0434\u044b", - "UserStoppedPlayingItemWithValues": "{0} - {1} \u043e\u0439\u043d\u0430\u0442\u0443\u044b\u043d \u0442\u043e\u049b\u0442\u0430\u0442\u0442\u044b", - "AppDeviceValues": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430: {0}, \u049a\u04b1\u0440\u044b\u043b\u0493\u044b: {1}", "ProviderValue": "\u0416\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456: {0}", "HeaderRecentActivity": "\u041a\u0435\u0438\u0456\u043d\u0433\u0456 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440", "HeaderPeople": "\u0410\u0434\u0430\u043c\u0434\u0430\u0440", @@ -1051,27 +936,18 @@ "LabelAirDate": "\u042d\u0444\u0438\u0440 \u043a\u04af\u043d\u0434\u0435\u0440\u0456:", "LabelAirTime:": "\u042d\u0444\u0438\u0440 \u0443\u0430\u049b\u044b\u0442\u044b", "LabelRuntimeMinutes": "\u04b0\u0437\u0430\u049b\u0442\u044b\u0493\u044b, \u043c\u0438\u043d:", - "LabelRevenue": "\u0422\u04af\u0441\u0456\u043c\u0456, $:", - "HeaderAlternateEpisodeNumbers": "\u0411\u0430\u043b\u0430\u043c\u0430\u043b\u044b \u0431\u04e9\u043b\u0456\u043c \u043d\u04e9\u043c\u0456\u0440\u043b\u0435\u0440\u0456", "HeaderSpecialEpisodeInfo": "\u0410\u0440\u043d\u0430\u0439\u044b \u0431\u04e9\u043b\u0456\u043c \u0442\u0443\u0440\u0430\u043b\u044b", - "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:", - "LabelAirsBeforeSeason": "\"Airs before\" \u043c\u0430\u0443\u0441\u044b\u043c\u044b", - "LabelAirsAfterSeason": "\"Airs after\" \u043c\u0430\u0443\u0441\u044b\u043c\u044b", - "LabelAirsBeforeEpisode": "\"Airs after\" \u0431\u04e9\u043b\u0456\u043c\u0456", "LabelDisplaySpecialsWithinSeasons": "\u0410\u0440\u043d\u0430\u0439\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u044d\u0444\u0438\u0440\u0434\u0435 \u0431\u043e\u043b\u0493\u0430\u043d \u043c\u0430\u0443\u0441\u044b\u043c \u0456\u0448\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443", - "HeaderCountries": "\u0415\u043b\u0434\u0435\u0440", "HeaderGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440", "HeaderPlotKeywords": "\u0421\u044e\u0436\u0435\u0442\u0442\u0456\u043d \u043a\u0456\u043b\u0442 \u0441\u04e9\u0437\u0434\u0435\u0440\u0456", "HeaderStudios": "\u0421\u0442\u0443\u0434\u0438\u044f\u043b\u0430\u0440", "HeaderTags": "\u0422\u0435\u0433\u0442\u0435\u0440", - "MessageLeaveEmptyToInherit": "\u0422\u0435\u043a\u0442\u0456\u043a \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u043d, \u043d\u0435\u043c\u0435\u0441\u0435 \u0493\u0430\u043b\u0430\u043c\u0434\u044b\u049b \u04d9\u0434\u0435\u043f\u043a\u0456 \u043c\u04d9\u043d\u0456\u043d\u0435\u043d\u0456. \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043c\u04b1\u0440\u0430\u0441\u044b\u043d\u0430 \u0438\u0435\u043b\u0435\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.", "OptionNoTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0441\u0456\u0437", "ButtonPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443", "OptionActor": "\u0410\u043a\u0442\u0435\u0440", "OptionComposer": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440", "OptionDirector": "\u0420\u0435\u0436\u0438\u0441\u0441\u0435\u0440", "OptionProducer": "\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440", - "OptionWriter": "\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439\u0448\u0456", "LabelAirDays": "\u042d\u0444\u0438\u0440 \u043a\u04af\u043d\u0434\u0435\u0440\u0456:", "LabelAirTime": "\u042d\u0444\u0438\u0440 \u0443\u0430\u049b\u044b\u0442\u044b:", "HeaderMediaInfo": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b", @@ -1160,7 +1036,6 @@ "TabParentalControl": "\u041c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0431\u0430\u0441\u049b\u0430\u0440\u0443", "HeaderAccessSchedule": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443 \u043a\u0435\u0441\u0442\u0435\u0441\u0456", "HeaderAccessScheduleHelp": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u0431\u0435\u043b\u0433\u0456\u043b\u0456 \u0441\u0430\u0493\u0430\u0442\u0442\u0430\u0440\u0493\u0430 \u0448\u0435\u043a\u0442\u0435\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043a\u0435\u0441\u0442\u0435\u0441\u0456\u043d \u0436\u0430\u0441\u0430\u04a3\u044b\u0437.", - "ButtonAddSchedule": "\u041a\u0435\u0441\u0442\u0435 \u04af\u0441\u0442\u0435\u0443", "LabelAccessDay": "\u0410\u043f\u0442\u0430 \u043a\u04af\u043d\u0456", "LabelAccessStart": "\u0411\u0430\u0441\u0442\u0430\u0443 \u0443\u0430\u049b\u044b\u0442\u044b:", "LabelAccessEnd": "\u0410\u044f\u049b\u0442\u0430\u0443 \u0443\u0430\u049b\u044b\u0442\u044b:", @@ -1212,8 +1087,7 @@ "TabSyncJobs": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u0442\u0430\u0440\u044b", "HeaderThisUserIsCurrentlyDisabled": "\u041e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u043a\u0435\u0437\u0434\u0435 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d", "MessageReenableUser": "\u049a\u0430\u0439\u0442\u0430 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043c\u0435\u043d\u0434\u0435 \u049b\u0430\u0440\u0430\u04a3\u044b\u0437", - "LabelEnableInternetMetadataForTvPrograms": "\u041c\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443", - "OptionTVMovies": "\u0422\u0414-\u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440", + "OptionTVMovies": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u043c\u0435\u043d \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440", "HeaderUpcomingMovies": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440", "HeaderUpcomingSports": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0441\u043f\u043e\u0440\u0442", "HeaderUpcomingPrograms": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0431\u0435\u0440\u043b\u0456\u043c\u0434\u0435\u0440", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440", "HeaderViewStyles": "\u0410\u0441\u043f\u0435\u043a\u0442 \u043c\u04d9\u043d\u0435\u0440\u043b\u0435\u0440\u0456", "TabPhotos": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440", - "TabVideos": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440", "HeaderWelcomeToEmby": "Emby \u0456\u0448\u0456\u043d\u0435 \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!", "EmbyIntroMessage": "Emby \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456, \u043c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u0436\u04d9\u043d\u0435 \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 Emby Server \u0436\u0430\u0493\u044b\u043d\u0430\u043d \u049b\u0430\u043b\u0442\u0430\u0444\u043e\u043d\u0434\u0430\u0440\u0493\u0430, \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0435\u0440\u0433\u0435 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0493\u044b \u0431\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0493\u0430 \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0436\u0435\u04a3\u0456\u043b \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d", "ButtonSkip": "\u04e8\u0442\u043a\u0456\u0437\u0443", @@ -1257,7 +1130,6 @@ "HeaderColumns": "\u0411\u0430\u0493\u0430\u043d\u0434\u0430\u0440", "ButtonReset": "\u042b\u0441\u044b\u0440\u0443", "OptionEnableExternalVideoPlayers": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440\u0434\u044b \u049b\u043e\u0441\u0443", - "ButtonUnlockGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0456 \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", "LabelEnableFullScreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d \u0440\u0435\u0436\u0456\u043c\u0456\u043d \u049b\u043e\u0441\u0443", "LabelEmail": "\u042d-\u043f\u043e\u0448\u0442\u0430:", "LabelUsername": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "\u0416\u0430\u043b\u043f\u044b \u0448\u043e\u043b\u0443", "HeaderShortOverview": "\u049a\u044b\u0441\u049b\u0430\u0448\u0430 \u0448\u043e\u043b\u0443", "HeaderType": "\u0422\u04af\u0440\u0456", - "HeaderSeverity": "\u049a\u0438\u044b\u043d\u0434\u044b\u0493\u044b", "OptionReportActivities": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440 \u0436\u04b1\u0440\u043d\u0430\u043b\u044b", "HeaderTunerDevices": "\u0422\u044e\u043d\u0435\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b", "HeaderAddDevice": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443", "LabelEnableThisTuner": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443", "LabelEnableThisTunerHelp": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0435\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0443\u0433\u0435 \u0442\u0438\u044b\u043c \u0441\u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.", - "HeaderUnidentified": "\u0410\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d", "HeaderImagePrimary": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456", "HeaderImageBackdrop": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442", "HeaderImageLogo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443", "LabelDataProvider": "\u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456:", "OptionSendRecordingsToAutoOrganize": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0431\u0430\u0441\u049b\u0430 \u043a\u0456\u0442\u0430\u043f\u0445\u0430\u043d\u0430\u043b\u0430\u0440\u0434\u0430\u0493\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u0441\u0442\u0430 \u0431\u043e\u043b\u0493\u0430\u043d \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0430\u0434\u044b", - "HeaderDefaultPadding": "\u04d8\u0434\u0435\u043f\u043a\u0456 \u0448\u0435\u0433\u0456\u043d\u0456\u0441", + "HeaderDefaultRecordingSettings": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", "OptionEnableRecordingSubfolders": "\u0421\u043f\u043e\u0440\u0442, \u0411\u0430\u043b\u0430\u043b\u0430\u0440\u0493\u0430 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b \u0441\u0430\u043d\u0430\u0442\u0442\u0430\u0440 \u04af\u0448\u0456\u043d \u0456\u0448\u043a\u0456 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0436\u0430\u0441\u0430\u043b\u0430\u0434\u044b", "HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440", "HeaderVideos": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440", @@ -1331,24 +1201,21 @@ "HeadersFolders": "\u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440", "LabelDisplayName": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0443 \u0430\u0442\u044b:", "HeaderNewRecording": "\u0416\u0430\u04a3\u0430 \u0436\u0430\u0437\u0431\u0430", - "ButtonAdvanced": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d", "LabelCodecIntrosPath": "\u041a\u043e\u0434\u0435\u043a \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440 \u0436\u043e\u043b\u044b:", "LabelCodecIntrosPathHelp": "\u0411\u0435\u0439\u043d\u0435 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u049b\u0430\u043b\u0442\u0430. \u0415\u0433\u0435\u0440 \u043a\u04e9\u0440\u043d\u0435\u0443 \u0431\u0435\u0439\u043d\u0435 \u0444\u0430\u0439\u043b\u044b\u043d\u044b\u04a3 \u0430\u0442\u0430\u0443\u044b \u0431\u0435\u0439\u043d\u0435 \u043a\u043e\u0434\u0435\u043a\u043a\u0435, \u0434\u044b\u0431\u044b\u0441 \u043a\u043e\u0434\u0435\u043a\u043a\u0435, \u0434\u044b\u0431\u044b\u0441 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043d\u0430 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u0435\u0433\u043a\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0441\u0430, \u043e\u043d\u0434\u0430 \u043e\u043b \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b.", "OptionConvertRecordingsToStreamingFormat": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443\u0493\u0430 \u043e\u04a3\u0430\u0439 \u043f\u0456\u0448\u0456\u043c\u0433\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443", "OptionConvertRecordingsToStreamingFormatHelp": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u0430 \u043e\u04a3\u0430\u0439 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043d\u0430\u049b\u0442\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 MP4 \u043d\u0435\u043c\u0435\u0441\u0435 MKV \u043f\u0456\u0448\u0456\u043c\u0456\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0435\u0434\u0456.", "FeatureRequiresEmbyPremiere": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441 \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", "FileExtension": "\u0424\u0430\u0439\u043b \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043c\u0456", - "OptionReplaceExistingImages": "\u0411\u0430\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443", "OptionPlayNextEpisodeAutomatically": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0456 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443", "OptionDownloadImagesInAdvance": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0430\u043b\u0434\u044b\u043d \u0430\u043b\u0430 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443", "SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", - "OptionDownloadImagesInAdvanceHelp": "\u04d8\u0434\u0435\u043f\u043a\u0456\u0434\u0435, \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0431\u0456 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b \u0441\u04b1\u0440\u0430\u0441\u0430 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456. \u0416\u0430\u04a3\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u043a\u0435\u0437\u0434\u0435 \u0430\u043b\u0434\u044b\u043d \u0430\u043b\u0430 \u0431\u0430\u0440\u043b\u044b\u049b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, \u043e\u0441\u044b \u043e\u043f\u0446\u0438\u044f\u043d\u044b \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.", + "OptionDownloadImagesInAdvanceHelp": "\u04d8\u0434\u0435\u043f\u043a\u0456\u0434\u0435, \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0431\u0456 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b \u0441\u04b1\u0440\u0430\u0441\u0430 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456. \u0416\u0430\u04a3\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u043a\u0435\u0437\u0434\u0435 \u0430\u043b\u0434\u044b\u043d \u0430\u043b\u0430 \u0431\u0430\u0440\u043b\u044b\u049b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, \u043e\u0441\u044b \u043e\u043f\u0446\u0438\u044f\u043d\u044b \u049b\u043e\u0441\u044b\u04a3\u044b\u0437. \u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0434\u0435 \u0431\u04b1\u043b \u0430\u0439\u0442\u0430\u0440\u043b\u044b\u049b\u0442\u0430\u0439 \u04b1\u0437\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", "Users": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440", "Delete": "\u0416\u043e\u044e", "Password": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437", "DeleteImage": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u043e\u044e", "MessageThankYouForSupporting": "Emby \u0436\u0430\u049b\u0442\u0430\u0493\u0430\u043d\u044b\u04a3\u044b\u0437\u0493\u0430 \u0430\u043b\u0493\u044b\u0441.", - "MessagePleaseSupportProject": "Emby \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437.", "DeleteImageConfirmation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0431\u04b1\u043b \u0441\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", "FileReadCancelled": "\u0424\u0430\u0439\u043b \u043e\u049b\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.", "FileNotFound": "\u0424\u0430\u0439\u043b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", @@ -1386,13 +1253,9 @@ "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", "LabelFromHelp": "\u041c\u044b\u0441\u0430\u043b: {0} (\u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435)", "HeaderMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c", - "LabelAutomaticUpdateLevel": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456:", - "LabelAutomaticUpdateLevelForPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456:", "ErrorLaunchingChromecast": "Chromecast \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u04a3\u044b\u0437 \u0441\u044b\u043c\u0441\u044b\u0437 \u0436\u0435\u043b\u0456\u0433\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.", "MessageErrorLoadingSupporterInfo": "Emby Premiere \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0436\u04af\u043a\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "MessageLinkYourSupporterKey": "\u041a\u0435\u043b\u0435\u0441\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u0493\u0430 \u0442\u0435\u0433\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d Emby Premiere \u043a\u0456\u043b\u0442\u0456\u04a3\u0456\u0437\u0434\u0456 {0} \u0434\u0435\u0439\u0456\u043d Emby Connect \u043c\u04af\u0448\u0435\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0431\u0430\u0439\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437.", "HeaderConfirmRemoveUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmRemoveConnectSupporter": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0434\u0430\u043d \u049b\u043e\u0441\u044b\u043c\u0448\u0430 Emby Premiere \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", "ValueTimeLimitSingleHour": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456: 1 \u0441\u0430\u0493\u0430\u0442", "ValueTimeLimitMultiHour": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456: {0} \u0441\u0430\u0493\u0430\u0442", "PluginCategoryGeneral": "\u0416\u0430\u043b\u043f\u044b", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440\u0493\u0430 \u04e9\u0442\u0443", "MessageItemsAdded": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d", "HeaderSelectCertificatePath": "\u041a\u0443\u04d9\u043b\u0456\u043a \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", - "ConfirmMessageScheduledTaskButton": "\u0411\u04b1\u043b \u04d9\u0440\u0435\u043a\u0435\u0442 \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u043b\u043c\u0435\u043d \u043a\u04af\u0448 \u0441\u0430\u043b\u0443 \u049b\u0430\u0436\u0435\u0442 \u0435\u043c\u0435\u0441. \u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043d\u044b \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d, \u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b\u043d\u044b \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437.", "HeaderSupporterBenefit": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u049b\u043e\u043b \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456, \u043c\u044b\u0441\u0430\u043b\u044b, \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0433\u0435 \u049b\u0430\u0442\u044b\u043d\u0430\u0443, \u0441\u044b\u0439\u0430\u049b\u044b\u043b\u044b\u049b \u043f\u043b\u0430\u0433\u0438\u043d, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u043d\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u044b \u0436\u04d9\u043d\u0435 \u043e\u043d\u0430\u043d\u0434\u0430 \u043a\u04e9\u0431\u0456\u0440\u0435\u043a. {0}\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0456\u04a3\u0456\u0437{1}.", "HeaderWelcomeToProjectServerDashboard": "Emby Server \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0430 \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!", "HeaderWelcomeToProjectWebClient": "Emby \u0456\u0448\u0456\u043d\u0435 \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!", @@ -1448,7 +1310,7 @@ "HeaderDeleteTaskTrigger": "\u0422\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0456\u043d \u0436\u043e\u044e", "MessageDeleteTaskTrigger": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0456\u043d \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", "MessageNoPluginsInstalled": "\u041e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0436\u043e\u049b.", - "MessageNoPluginsDueToAppStore": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d, Emby \u0432\u0435\u0431-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", + "MessageNoPluginsDueToAppStore": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d, Emby \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", "LabelVersionInstalled": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d", "LabelNumberReviews": "{0} \u043f\u0456\u043a\u0456\u0440", "LabelFree": "\u0422\u0435\u0433\u0456\u043d", @@ -1471,7 +1333,6 @@ "LabelDisabled": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d", "ButtonMoreInformation": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430", "LabelNoUnreadNotifications": "\u041e\u049b\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440 \u0436\u043e\u049b", - "LabelAllPlaysSentToPlayer": "\u0411\u0430\u0440\u043b\u044b\u049b \u043e\u0439\u043d\u0430\u0442\u0443\u043b\u0430\u0440 \u0442\u0430\u04a3\u0434\u0430\u043b\u0493\u0430\u043d \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u049b\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456.", "MessageInvalidUser": "\u0416\u0430\u0440\u0430\u043c\u0441\u044b\u0437 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "HeaderLoginFailure": "\u041a\u0456\u0440\u0443 \u0441\u04d9\u0442\u0441\u0456\u0437\u0434\u0456\u0433\u0456", "RecommendationBecauseYouLike": "\u04e8\u0439\u0442\u043a\u0435\u043d\u0456 {0} \u0436\u0430\u0440\u0430\u0442\u0442\u044b\u04a3\u044b\u0437", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "\u0416\u0430\u0437\u0431\u0430 \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.", "MessageRecordingScheduled": "\u0416\u0430\u0437\u0431\u0430 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d.", "HeaderConfirmSeriesCancellation": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b\u04a3 \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmSeriesCancellation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageSeriesCancelled": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.", "HeaderConfirmRecordingDeletion": "\u0416\u0430\u0437\u0431\u0430 \u0436\u043e\u044e\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443", "MessageRecordingSaved": "\u0416\u0430\u0437\u0431\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", "OptionWeekend": "\u0414\u0435\u043c\u0430\u043b\u044b\u0441 \u043a\u04af\u043d\u0434\u0435\u0440\u0456", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u043a\u044d\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", "HeaderSelectTranscodingPathHelp": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b\u04a3 \u0443\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", "HeaderSelectMetadataPathHelp": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "HeaderSelectChannelDownloadPath": "\u0410\u0440\u043d\u0430 \u0436\u04af\u043a\u0442\u0435\u0443 \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437", - "HeaderSelectChannelDownloadPathHelp": "\u0410\u0440\u043d\u0430 \u043a\u044d\u0448\u0456 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u0441\u0430\u049b\u0442\u0430\u043f \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "LabelChapterDownloaders": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440:", - "LabelChapterDownloadersHelp": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0441\u0430\u0445\u043d\u0430 \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u043b\u044b\u049b \u0440\u0435\u0442\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0434\u04d9\u0440\u0435\u0436\u0435 \u0431\u0435\u0440\u0456\u04a3\u0456\u0437. \u0422\u04e9\u043c\u0435\u043d\u0433\u0456 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b \u0431\u0430\u0440 \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u043e\u049b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u0442\u043e\u043b\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.", "HeaderFavoriteAlbums": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0430\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440", "HeaderLatestChannelMedia": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b\u04a3 \u0435\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u044b", "ButtonOrganizeFile": "\u0424\u0430\u0439\u043b\u0434\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u0430", "LabelAudioCodec": "\u0414\u044b\u0431\u044b\u0441: {0}", "LabelVideoCodec": "\u0411\u0435\u0439\u043d\u0435: {0}", - "LabelLocalAccessUrl": "\u04ae\u0439\u0434\u0435\u0433\u0456 \u049b\u0430\u0442\u044b\u043d\u0430\u0443: {0}", - "LabelRemoteAccessUrl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443: {0}", + "LabelLocalAccessUrl": "\u04ae\u0439\u0434\u0435\u0433\u0456 (LAN) \u049b\u0430\u0442\u044b\u043d\u0430\u0443: {0}", + "LabelRemoteAccessUrl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d (WAN) \u049b\u0430\u0442\u044b\u043d\u0430\u0443: {0}", "LabelRunningOnPort": "{0} http-\u043f\u043e\u0440\u0442\u044b\u043d\u0434\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456.", "LabelRunningOnPorts": "{0} http-\u043f\u043e\u0440\u0442\u044b\u043d\u0434\u0430 \u0436\u04d9\u043d\u0435 {1} https-\u043f\u043e\u0440\u0442\u044b\u043d\u0434\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456.", "HeaderLatestFromChannel": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 {0}", - "HeaderCurrentSubtitles": "\u0410\u0493\u044b\u043c\u0434\u044b\u049b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440", "ButtonRemoteControl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443", "HeaderLatestTvRecordings": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440", "LabelCurrentPath": "\u0410\u0493\u044b\u043c\u0434\u044b\u049b \u0436\u043e\u043b:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u044e", "ConfirmDeleteItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b \u0444\u0430\u0439\u043b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0436\u043e\u0439\u044b\u043b\u0430\u0434\u044b. \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", "ConfirmDeleteItems": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0435\u043a\u0435\u0443\u0456\u043d\u0434\u0435 \u0436\u043e\u0439\u044b\u043b\u0430\u0434. \u0421\u0456\u0437 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430? \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageValueNotCorrect": "\u0415\u043d\u0433\u0456\u0437\u0456\u043b\u0433\u0435\u043d \u043c\u04d9\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "MessageItemSaved": "\u0422\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d \u049a\u044b\u0437\u043c\u0435\u0442 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u04a3\u044b\u0437.", "OptionOff": "\u04e8\u0448\u0456\u0440", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442 \u0436\u043e\u049b.", "MissingLogoImage": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f \u0441\u0443\u0440\u0435\u0442\u0456 \u0436\u043e\u049b.", "MissingEpisode": "\u0416\u043e\u049b \u0431\u04e9\u043b\u0456\u043c.", - "OptionScreenshots": "\u042d\u043a\u0440\u0430\u043d \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456", "OptionBackdrops": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440", "OptionImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440", "OptionKeywords": "\u041a\u0456\u043b\u0442 \u0441\u04e9\u0437\u0434\u0435\u0440", @@ -1642,10 +1494,6 @@ "OptionPeople": "\u0410\u0434\u0430\u043c\u0434\u0430\u0440", "OptionProductionLocations": "\u04e8\u043d\u0434\u0456\u0440\u0443 \u043e\u0440\u044b\u043d\u0434\u0430\u0440\u044b", "OptionBirthLocation": "\u0422\u0443\u0493\u0430\u043d \u043e\u0440\u043d\u044b", - "LabelAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440", - "AttributeNew": "\u0416\u0430\u04a3\u0430", - "AttributePremiere": "\u0422\u04b1\u0441\u0430\u0443\u043a\u0435\u0441\u0435\u0440\u0456", - "AttributeLive": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439", "HeaderChangeFolderType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", "HeaderChangeFolderTypeHelp": "\u0422\u04af\u0440\u0434\u0456 \u04e9\u0437\u0433\u0435\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437 \u0434\u0430, \u0436\u0430\u04a3\u0430 \u0442\u04af\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u0442\u0430 \u049b\u04b1\u0440\u044b\u04a3\u044b\u0437.", "HeaderAlert": "\u0415\u0441\u043a\u0435\u0440\u0442\u0443", @@ -1663,7 +1511,6 @@ "ButtonQuality": "\u0421\u0430\u043f\u0430\u0441\u044b\u043d\u0430", "HeaderNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440", "HeaderSelectPlayer": "\u041e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443", - "MessageInternetExplorerWebm": "Internet Explorer \u0430\u0440\u049b\u044b\u043b\u044b \u0435\u04a3 \u0436\u0430\u049b\u0441\u044b \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0433\u0435 \u0438\u0435 \u0431\u043e\u043b\u0443 \u04af\u0448\u0456\u043d WebM \u043e\u0439\u043d\u0430\u0442\u0443 \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", "HeaderVideoError": "\u0411\u0435\u0439\u043d\u0435 \u049b\u0430\u0442\u0435\u0441\u0456", "ButtonViewSeriesRecording": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0436\u0430\u0437\u0431\u0430\u0441\u044b\u043d \u049b\u0430\u0440\u0430\u0443", "HeaderSpecials": "\u0410\u0440\u043d\u0430\u0439\u044b \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u0434\u0430\u0440", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "\u04b0\u0437\u0430\u049b\u0442\u044b\u0493\u044b", "HeaderParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b", "HeaderReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456", - "HeaderDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456", "HeaderSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440", "HeaderSeason": "\u041c\u0430\u0443\u0441\u044b\u043c", "HeaderSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443", "MessageConfirmRemoveMediaLocation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u0434\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", "LabelNewName": "\u0416\u0430\u04a3\u0430 \u0430\u0442\u044b", - "HeaderAddMediaFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u04af\u0441\u0442\u0435\u0443", - "HeaderAddMediaFolderHelp": "\u0410\u0442\u044b (\u041a\u0438\u043d\u043e, \u041c\u0443\u0437\u044b\u043a\u0430, \u0422\u0414, \u0442.\u0431.):", "HeaderRemoveMediaFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Emby \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u043a\u0435\u043b\u0435\u0441\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u043b\u0430\u0440\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0430\u0434\u044b:", "MessageAreYouSureYouWishToRemoveMediaFolder": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", "HeaderMediaLocations": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u043b\u0430\u0440\u044b", "LabelContentTypeValue": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456: {0}", - "LabelPathSubstitutionHelp": "\u041c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441: \u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u0430\u0440\u0434\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u049b\u043e\u0440 \u043a\u04e9\u0437\u0434\u0435\u0440\u0456\u043c\u0435\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", "FolderTypeUnset": "\u0422\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u043c\u0430\u0493\u0430\u043d (\u0430\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d)", "BirthPlaceValue": "\u0422\u0443\u0493\u0430\u043d \u043e\u0440\u043d\u044b: {0}", "DeathDateValue": "\u04e8\u043b\u0433\u0435\u043d\u0456: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "\u0421\u0430\u0439\u0442\u044b\u043d\u0430", "ValueSeriesYearToPresent": "{0} - \u049b\u0430\u0437\u0456\u0440\u0434\u0435", "ValueAwards": "\u041c\u0430\u0440\u0430\u043f\u0430\u0442\u0442\u0430\u0440: {0}", - "ValueBudget": "\u0411\u044e\u0434\u0436\u0435\u0442\u0456: {0}", - "ValueRevenue": "\u0422\u0430\u0431\u044b\u0441\u044b: {0}", "ValuePremiered": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430\u0441\u044b {0}", "ValuePremieres": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430\u043b\u0430\u0440 {0}", "ValueStudio": "\u0421\u0442\u0443\u0434\u0438\u044f\u0441\u044b: {0}", @@ -1846,17 +1687,12 @@ "MediaInfoRefFrames": "\u0422\u0456\u0440\u0435\u043a \u043a\u0430\u0434\u0440\u043b\u0430\u0440", "TabExpert": "\u0421\u0430\u0440\u0430\u043f\u0442\u0430\u043c\u0430\u043b\u044b\u049b", "HeaderSelectCustomIntrosPath": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderRateAndReview": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443 \u0436\u04d9\u043d\u0435 \u043f\u0456\u043a\u0456\u0440\u043b\u0435\u0441\u0443", "HeaderThankYou": "\u0420\u0430\u0445\u043c\u0435\u0442 \u0441\u0456\u0437\u0433\u0435", - "MessageThankYouForYourReview": "\u041f\u0456\u043a\u0456\u0440\u0456\u04a3\u0456\u0437 \u04af\u0448\u0456\u043d \u0440\u0430\u0445\u043c\u0435\u0442 \u0441\u0456\u0437\u0433\u0435", - "LabelYourRating": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437", "LabelFullReview": "\u041f\u0456\u043a\u0456\u0440 \u0442\u043e\u043b\u044b\u0493\u044b\u043c\u0435\u043d:", - "LabelShortRatingDescription": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b\u04a3 \u049b\u044b\u0441\u049b\u0430 \u0430\u049b\u043f\u0430\u0440\u044b:", - "OptionIRecommendThisItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u04b1\u0441\u044b\u043d\u0430\u043c\u044b\u043d", "ReleaseYearValue": "\u0428\u044b\u0493\u0430\u0440\u0443 \u0436\u043e\u043b\u044b: {0}", "OriginalAirDateValue": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u044d\u0444\u0438\u0440: {0}", "WebClientTourContent": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456, \u043a\u0435\u043b\u0435\u0441\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u049b\u0430\u0440\u0430\u04a3\u044b\u0437. \u0416\u0430\u0441\u044b\u043b \u0448\u0435\u043d\u0431\u0435\u0440\u043b\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u049b\u0430\u043d\u0448\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0431\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456.", - "WebClientTourMovies": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0456 \u0431\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u043e\u0439\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", + "WebClientTourMovies": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0448\u043e\u043b\u0493\u044b\u0448\u044b \u0431\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u043e\u0439\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", "WebClientTourMouseOver": "\u041c\u0430\u04a3\u044b\u0437\u0434\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430 \u0436\u044b\u043b\u0434\u0430\u043c \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u0436\u0430\u0440\u049b\u0430\u0493\u0430\u0437\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u043d\u0434\u0435 \u0442\u0456\u043d\u0442\u0443\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0440\u0441\u0435\u0442\u043a\u0456\u0448\u0456\u043d \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437", "WebClientTourTapHold": "\u041c\u04d9\u0442\u0456\u043d\u043c\u04d9\u043d\u0434\u0456\u043a \u043c\u04d9\u0437\u0456\u0440 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u0436\u0430\u0440\u049b\u0430\u0493\u0430\u0437\u0434\u044b \u0442\u04af\u0440\u0442\u0456\u043f \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437", "WebClientTourMetadataManager": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456\u043d\u0456 \u0430\u0448\u0443 \u04af\u0448\u0456\u043d \u04e8\u04a3\u0434\u0435\u0443 \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437", @@ -1864,7 +1700,7 @@ "WebClientTourCollections": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456 \u0431\u0456\u0440\u0433\u0435 \u0442\u043e\u043f\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0444\u0438\u043b\u044c\u043c \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u04a3\u044b\u0437", "WebClientTourUserPreferences1": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456 Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u0431\u04d9\u0440\u0456\u043d\u0434\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437 \u049b\u0430\u043b\u0430\u0439 \u049b\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0442\u0456\u043d \u0442\u04d9\u0441\u0456\u043b\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456", "WebClientTourUserPreferences2": "\u04d8\u0440\u0431\u0456\u0440 Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b \u04af\u0448\u0456\u043d \u0434\u044b\u0431\u044b\u0441\u0442\u044b\u049b \u0436\u04d9\u043d\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0442\u0456\u043b\u0434\u0456\u043a \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u0431\u0456\u0440\u0436\u043e\u043b\u0493\u044b \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437", - "WebClientTourUserPreferences3": "\u04b0\u043d\u0430\u0442\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u043a\u043b\u0438\u0435\u043d\u0442\u0456\u043d\u0456\u04a3 \u0431\u0430\u0441\u0442\u044b \u0431\u0435\u0442\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0440\u0435\u0441\u0456\u043c\u0434\u0435\u04a3\u0456\u0437", + "WebClientTourUserPreferences3": "\u049a\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u043a\u043b\u0438\u0435\u043d\u0442\u0456\u043d\u0456\u04a3 \u0431\u0430\u0441\u0442\u044b \u0431\u0435\u0442\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0440\u0435\u0441\u0456\u043c\u0434\u0435\u04a3\u0456\u0437", "WebClientTourUserPreferences4": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456, \u0442\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0441\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440\u0434\u044b \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437", "WebClientTourMobile1": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u043a\u043b\u0438\u0435\u043d\u0442\u0456 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0434\u0430\u0440\u0434\u0430 \u0436\u04d9\u043d\u0435 \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0435\u0440\u0434\u0435 \u0442\u0430\u043c\u0430\u0448\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456", "WebClientTourMobile2": "\u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b \u043c\u0435\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u043e\u04a3\u0430\u0439 \u0431\u0430\u0441\u049b\u0430\u0440\u0430\u0434\u044b", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u04b1\u0437\u0430\u049b \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0430\u0442\u044b\u043d \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0435\u04a3\u0456\u043b \u0431\u0430\u0441\u049b\u0430\u0440\u044b\u04a3\u044b\u0437. \u0411\u04b1\u043b\u0430\u0440 \u049b\u0430\u0448\u0430\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u043d\u0434\u0430\u0439 \u0436\u0438\u0456\u043b\u0456\u043a\u043f\u0435\u043d \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0430\u0442\u044b\u043d\u044b\u043d \u0448\u0435\u0448\u0456\u04a3\u0456\u0437.", "DashboardTourMobile": "Emby Server \u0442\u0430\u049b\u0442\u0430\u0441\u044b \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0434\u0430\u0440 \u043c\u0435\u043d \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0435\u0440\u0434\u0435 \u0437\u043e\u0440 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456. \u041a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0436\u0435\u0440\u0434\u0435, \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456 \u0430\u043b\u0430\u049b\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u0430\u0493\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c\u0435\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u044b\u04a3\u044b\u0437.", "DashboardTourSync": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u0430\u0440\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0437\u0456\u043d\u0434\u0456\u043a \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.", - "MessageRefreshQueued": "\u0416\u0430\u04a3\u0493\u044b\u0440\u0442\u0443 \u043a\u0435\u0437\u0435\u043a\u0442\u0435", "TabExtras": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430\u043b\u0430\u0440", "HeaderUploadImage": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0431\u0435\u0440\u0443", "DeviceLastUsedByUserName": "{0} \u0430\u0440\u049b\u044b\u043b\u044b \u0435\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0493\u0430\u043d", @@ -1915,11 +1750,7 @@ "SyncMedia": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "HeaderCancelSyncJob": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", "CancelSyncJobConfirmation": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443\u044b \u043a\u0435\u043b\u0435\u0441\u0456 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u043e\u044f\u0434\u044b. \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043a\u0456\u0440\u0456\u0441\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessagePleaseSelectDeviceToSyncTo": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.", - "MessageSyncJobCreated": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b \u0436\u0430\u0441\u0430\u043b\u0434\u044b.", "LabelQuality": "\u0421\u0430\u043f\u0430\u0441\u044b:", - "OptionAutomaticallySyncNewContent": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "OptionAutomaticallySyncNewContentHelp": "\u041e\u0441\u044b \u049b\u0430\u043b\u044c\u0430\u0493\u0430 \u0436\u0430\u04a3\u0430\u0434\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u043e\u0441\u044b \u049b\u04b1\u0440-\u043c\u0435\u043d \u04af\u043d\u0434-\u0434\u0456.", "MessageBookPluginRequired": "Bookshelf \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456", "MessageGamePluginRequired": "GameBrowser \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456", "MessageUnsetContentHelp": "\u041c\u0430\u0437\u043c\u04b1\u043d \u043a\u04d9\u0434\u0456\u043c\u0433\u0456 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456. \u0415\u04a3 \u0436\u0430\u049b\u0441\u044b \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, \u0456\u0448\u043a\u0456 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u044b\u04a3 \u043c\u0430\u0437\u043c\u04af\u043d \u0442\u04af\u0440\u043b\u0435\u0440\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043f \u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456\u043d\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437", @@ -1933,7 +1764,7 @@ "LabelProfile": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b:", "LabelBitrateMbps": "\u049a\u0430\u0440\u049b\u044b\u043d\u044b (\u041c\u0431\u0438\u0442\/\u0441):", "EmbyIntroDownloadMessage": "\u0410\u049b\u044b\u0441\u044b\u0437 Emby Server \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u043c\u0435\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d {0} \u0431\u0430\u0440\u044b\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437.", - "EmbyIntroDownloadMessageWithoutLink": "\u0410\u049b\u044b\u0441\u044b\u0437 Emby Server \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u043c\u0435\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d Emby \u0432\u0435\u0431-\u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u0431\u0430\u0440\u044b\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437.", + "EmbyIntroDownloadMessageWithoutLink": "\u0410\u049b\u044b\u0441\u044b\u0437 Emby Server \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u043c\u0435\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d Emby \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u0431\u0430\u0440\u044b\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437.", "ButtonNewServer": "\u0416\u0430\u04a3\u0430 \u0441\u0435\u0440\u0432\u0435\u0440", "MyDevice": "\u041c\u0435\u043d\u0456\u04a3 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c", "ButtonRemote": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443", @@ -1941,18 +1772,11 @@ "TabScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440", "HeaderUnlockApp": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", "HeaderUnlockSync": "Emby \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \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.", - "MessageToValidateSupporter": "\u0415\u0433\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0431\u043e\u043b\u0441\u0430, Emby Server \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b Emby Premiere \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u044b\u043f \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0411\u04b1\u043b \u0431\u0430\u0441\u0442\u044b \u043c\u04d9\u0437\u0456\u0440\u0434\u0435 Emby Premiere \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u043d\u04b1\u049b\u044b\u043f \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b.", "MessagePaymentServicesUnavailable": "\u0422\u04e9\u043b\u0435\u043c \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0456 \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "ButtonUnlockWithPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443\u043c\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", - "ButtonUnlockPrice": "{0} \u049b\u04b1\u043b\u044b\u043f\u0442\u0430\u043c\u0430\u0443", - "MessageLiveTvGuideRequiresUnlock": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0435 \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 {0} \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0448\u0435\u043a\u0442\u0435\u043b\u0435\u0434\u0456. \u0422\u043e\u043b\u044b\u049b \u0442\u04d9\u0436\u0440\u0438\u0431\u0435 \u0430\u043b\u0443\u0493\u0430 \u04af\u0439\u0440\u0435\u043d\u0443 \u04af\u0448\u0456\u043d \u049a\u04b1\u0440\u0441\u0430\u0443\u044b\u043d \u0431\u043e\u0441\u0430\u0442\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", "OptionEnableFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d\u0434\u044b \u049b\u043e\u0441\u0443", "ButtonServer": "\u0421\u0435\u0440\u0432\u0435\u0440", "HeaderLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430", "HeaderMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440", - "HeaderSaySomethingLike": "\u041e\u0441\u044b\u043d\u0434\u0430\u0439 \u0441\u0438\u044f\u049b\u0442\u044b\u043d\u044b \u0430\u0439\u0442\u044b\u04a3\u044b\u0437...", "NoResultsFound": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", "ButtonManageServer": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443", "ButtonPreferences": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "{0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0443", "ErrorPleaseSelectLineup": "\u0422\u0456\u0437\u0431\u0435\u043a\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437. \u0415\u0433\u0435\u0440 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u0456\u0437\u0431\u0435\u043a \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u043c\u0430\u0441\u0430, \u043e\u043d\u0434\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b\u04a3\u044b\u0437\u0434\u044b, \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043f\u043e\u0448\u0442\u0430 \u043a\u043e\u0434\u044b\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0456\u04a3\u0456\u0437.", "HeaderTryEmbyPremiere": "Emby Premiere \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", - "ButtonBecomeSupporter": "Emby Premiere \u0430\u043b\u0443", - "ButtonClosePlayVideo": "\u0416\u0430\u0431\u0443 \u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448. \u043e\u0439\u043d\u0430\u0442\u0443", - "MessageDidYouKnowCinemaMode": "Emby Premiere \u0430\u0440\u049b\u044b\u043b\u044b, \u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u0443\u0440\u0430\u043b\u044b \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?", - "MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", "OptionEnableDisplayMirroring": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0456\u04a3 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u049b\u043e\u0441\u0443", "HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442.", "HeaderSyncRequiresSupporterMembershipAppVersion": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b\u043c\u0435\u043d Emby Server \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0443 \u049b\u0430\u0436\u0435\u0442", "ErrorValidatingSupporterInfo": "Emby Premiere \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", "LabelLocalSyncStatusValue": "\u041a\u04af\u0439\u0456: {0}", "MessageSyncStarted": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b", - "NoSlideshowContentFound": "\u0415\u0448 \u0441\u043b\u0430\u0439\u0434\u0448\u043e\u0443 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0493\u0430\u043d.", - "OptionPhotoSlideshow": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0441\u043b\u0430\u0439\u0434\u0448\u043e\u0443\u044b", "OptionBackdropSlideshow": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0441\u043b\u0430\u0439\u0434\u0448\u043e\u0443\u044b", "HeaderTopPlugins": "\u0422\u0430\u043d\u044b\u043c\u0430\u043b \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440", "ButtonOther": "\u0411\u0430\u0441\u049b\u0430", @@ -1996,28 +1814,18 @@ "ButtonMenu": "\u041c\u04d9\u0437\u0456\u0440", "ForAdditionalLiveTvOptions": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u043b\u0435\u0440 \u04af\u0448\u0456\u043d, \u0421\u044b\u0440\u0442\u049b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u049b\u043e\u0439\u044b\u043d\u0434\u044b\u0441\u044b\u043d \u043d\u04b1\u049b\u044b\u043f, \u049b\u043e\u043b\u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u043e\u043f\u0446\u0438\u044f\u043b\u0430\u0440\u0431\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437.", "ButtonGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434", - "ButtonRecordedTv": "\u0416\u0430\u0437\u044b\u043b\u0493\u0430\u043d \u0422\u0414", "ConfirmEndPlayerSession": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 Emby \u0436\u0430\u0431\u0443\u044b\u043d \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?", "ButtonYes": "\u0418\u04d9", "AddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443", "ButtonNo": "\u0416\u043e\u049b", - "ButtonRestorePreviousPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0493\u0430\u043d\u0434\u044b \u049b\u0430\u043b\u043f\u044b\u043d\u0430 \u043a\u0435\u043b\u0442\u0456\u0440\u0443", - "AlreadyPaid": "\u04d8\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u0442\u04e9\u043b\u0435\u043d\u0434\u0456 \u043c\u0435?", - "AlreadyPaidHelp1": "\u0415\u0433\u0435\u0440 \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d Media Browser for Android \u0435\u0441\u043a\u0456 \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043b\u0435\u0433\u0435\u043d \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0441\u0456\u0437\u0433\u0435 \u043e\u0441\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u0434\u0430\u043d \u0442\u04e9\u043b\u0435\u0443\u0433\u0435 \u049b\u0430\u0436\u0435\u0442\u0456 \u0436\u043e\u049b. \u0411\u0456\u0437\u0433\u0435 {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u0493\u0430 \u0445\u0430\u0442 \u0436\u0456\u0431\u0435\u0440\u0443 \u04af\u0448\u0456\u043d \u0416\u0430\u0440\u0430\u0439\u0434\u044b \u0434\u0435\u0433\u0435\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0441\u0456\u0437 \u04af\u0448\u0456\u043d \u0431\u0456\u0437 \u043e\u043d\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0435\u043c\u0456\u0437.", - "AlreadyPaidHelp2": "Emby Premiere \u0430\u043b\u0434\u044b\u04a3\u044b\u0437 \u0431\u0430? \u0416\u0430\u0439 \u0493\u0430\u043d\u0430 \u0431\u04b1\u043b \u0442\u0456\u043b\u049b\u0430\u0442\u044b\u0441\u0443 \u0442\u0435\u0440\u0435\u0437\u0435\u0441\u0456\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u04a3\u044b\u0437 \u0434\u0430, Emby Server \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430 -> Emby Premiere \u0430\u0441\u0442\u044b\u043d\u0434\u0430 Emby Premiere \u043e\u0440\u043d\u0430\u0442\u044b\u043f \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437, \u0441\u043e\u043d\u0434\u0430 \u0431\u04b1\u043d\u044b\u04a3 \u049b\u04b1\u043b\u043f\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0430\u0448\u044b\u043b\u0430\u0434\u044b.", "ButtonNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430...", "HeaderLatestMovies": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440", - "EmbyPremiereMonthly": "Emby Premiere \u0430\u0439 \u0431\u043e\u0439\u044b\u043d\u0448\u0430", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere \u0430\u0439 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 {0}", "HeaderEmailAddress": "\u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b", - "TextPleaseEnterYourEmailAddressForSubscription": "\u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0434\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437", "LoginDisclaimer": "Emby \u0436\u0435\u043a\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u044b (\u043c\u044b\u0441\u0430\u043b\u044b, \u04af\u0439\u043b\u0456\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u043c\u0435\u043d \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456) \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0493\u0430 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u04af\u0448\u0456\u043d \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d. \u0411\u0456\u0437\u0434\u0456\u04a3 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u049b\u0430\u0440\u0430\u04a3\u044b\u0437. \u041a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d Emby \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u043c\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u043d\u0493\u0430\u043d\u0434\u0430 \u043e\u0441\u044b \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u0434\u044b\u04a3 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u044b\u043d \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456.", "TermsOfUse": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b", "NumLocationsValue": "{0} \u049b\u0430\u043b\u0442\u0430", "ButtonAddMediaLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u04af\u0441\u0442\u0435\u0443", "ButtonManageFolders": "\u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u044b \u0431\u0430\u0441\u049b\u0430\u0440\u0443", - "MessageTryMicrosoftEdge": "Windows 10 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u043d\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 Microsoft Edge \u0448\u043e\u043b\u0493\u044b\u0448\u044b\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.", - "MessageTryModernBrowser": "Windows \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u0441\u0456\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d, \u043c\u044b\u0441\u0430\u043b\u044b, Google Chrome, Firefox \u043d\u0435 Opera \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.", "ErrorAddingListingsToSchedulesDirect": "Schedules Direct \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0456\u0437\u0431\u0435\u043a \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. Schedules Direct \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0434\u0435 \u0442\u0456\u0437\u0431\u0435\u043a\u0442\u0435\u0440\u0434\u0456\u04a3 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0448\u0435\u043a\u0442\u0435\u0443\u043b\u0456 \u0441\u0430\u043d\u044b \u0440\u0443\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u0435\u0434\u0456. \u041e\u0440\u044b\u043d\u0434\u0430\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d Schedules Direct \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u043a\u0456\u0440\u0456\u043f \u0436\u04d9\u043d\u0435 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0434\u0435\u043d \u0431\u0430\u0441\u049b\u0430 \u0442\u0456\u0437\u0431\u0435\u043b\u0435\u0440\u0434\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", "PleaseAddAtLeastOneFolder": "\u049a\u043e\u0441\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u0443 \u0430\u0440\u049b\u044b\u043b\u044b, \u043e\u0441\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0493\u0430 \u043a\u0435\u043c \u0434\u0435\u0433\u0435\u043d\u0434\u0435 \u0431\u0456\u0440 \u049b\u0430\u043b\u0442\u0430 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.", "ErrorAddingMediaPathToVirtualFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u043e\u043b\u044b\u043d \u04af\u0441\u0442\u0435\u0433\u0435\u043d \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0416\u043e\u043b \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u0436\u04d9\u043d\u0435 Emby Server \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043e\u0441\u044b \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0439\u0442\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043c\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443", "PleaseConfirmPluginInstallation": "\u0416\u043e\u0493\u0430\u0440\u044b\u0434\u0430\u0493\u044b\u043d\u044b \u043e\u049b\u044b\u043f \u0448\u044b\u049b\u049b\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u044b \u0436\u04d9\u043d\u0435 \u043f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0443\u044b\u04a3\u044b\u0437\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0416\u0430\u0440\u0430\u0439\u0434\u044b \u0434\u0435\u0433\u0435\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", "MessagePluginInstallDisclaimer": "Emby \u049b\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0493\u044b \u043c\u04af\u0448\u0435\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 Emby \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u043c\u0435\u043d \u0436\u04d9\u043d\u0435 \u0436\u0435\u04a3\u0456\u043b\u0434\u0456\u043a\u0442\u0435\u0440\u043c\u0435\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0441\u044b \u0442\u04d9\u0441\u0456\u043b\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u041e\u0440\u043d\u0430\u0442\u043f\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d, \u043e\u043b\u0430\u0440 Emby \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u04b1\u0437\u0430\u049b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443, \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u04e9\u04a3\u0434\u0456\u043a \u04e9\u04a3\u0434\u0435\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0436\u04af\u0439\u0435\u043d\u0456\u04a3 \u0442\u04b1\u0440\u0430\u049b\u0442\u044b\u043b\u044b\u0493\u044b\u043d \u0442\u04e9\u043c\u0435\u043d\u0434\u0435\u0442\u0443 \u0441\u0438\u044f\u049b\u0442\u044b \u04d9\u0441\u0435\u0440\u043b\u0435\u0440 \u0435\u0442\u0443\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d \u0431\u043e\u043b\u0443\u044b\u043d\u0430 \u0445\u0430\u0431\u0430\u0440\u0434\u0430\u0440 \u0431\u043e\u043b\u044b\u04a3\u044b\u0437.", - "ButtonPlayOneMinute": "\u0411\u0456\u0440 \u043c\u0438\u043d\u04e9\u0442 \u043e\u0439\u043d\u0430\u0442\u0443", - "ThankYouForTryingEnjoyOneMinute": "\u0411\u0456\u0440 \u043c\u0438\u043d\u04e9\u0442 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u044b \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0437. Emby \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0433\u0435\u043d\u0456\u04a3\u0456\u0437\u0433\u0435 \u0440\u0430\u049b\u043c\u0435\u0442.", - "HeaderTryPlayback": "\u041e\u0439\u043d\u0430\u0442\u0443\u0434\u044b \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", - "HeaderBenefitsEmbyPremiere": "Emby Premiere \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b", - "MobileSyncFeatureDescription": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0434\u0430\u0440 \u0431\u0435\u043d \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0435\u0440\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.", - "CoverArtFeatureDescription": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0436\u0435\u043a\u0435\u043b\u0435\u0443\u0433\u0435 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u04af\u0448\u0456\u043d Cover Art \u049b\u044b\u0437\u044b\u049b\u0442\u044b \u043c\u04b1\u049b\u0430\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0434\u0430 \u04e9\u04a3\u0434\u0435\u0442\u0443\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u0430\u0439\u0434\u044b.", "HeaderMobileSync": "\u04b0\u0442\u049b\u044b\u0440 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", "HeaderCloudSync": "\u0411\u04b1\u043b\u0442 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "CloudSyncFeatureDescription": "\u0421\u0430\u049b\u0442\u044b\u049b \u043a\u04e9\u0448\u0456\u0440\u043c\u0435\u043d\u0456, \u043c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0456 \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0431\u04b1\u043b\u0442\u043f\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.", "HeaderFreeApps": "\u0422\u0435\u0433\u0456\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b", - "FreeAppsFeatureDescription": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u0430 \u0442\u0430\u04a3\u0434\u0430\u043c\u0430\u043b\u044b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d \u0442\u0435\u0433\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u04a3\u044b\u0437.", - "CinemaModeFeatureDescription": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", "CoverArt": "Cover Art", "ButtonOff": "\u04e8\u0448\u0456\u0440", "TitleHardwareAcceleration": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443", "HardwareAccelerationWarning": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443\u0434\u0456 \u049b\u043e\u0441\u0443 \u043a\u0435\u0439\u0431\u0456\u0440 \u043e\u0440\u0442\u0430\u043b\u0430\u0440\u0434\u0430 \u0442\u04b1\u0440\u0430\u049b\u0441\u044b\u0437\u0434\u044b\u049b \u0442\u0443\u0434\u044b\u0440\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d. \u0410\u043c\u0430\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u04a3\u0456\u0437 \u0431\u0435\u043d \u0431\u0435\u0439\u043d\u0435 \u0434\u0440\u0430\u0439\u0432\u0435\u0440\u043b\u0435\u0440\u0456\u04a3\u0456\u0437 \u0442\u043e\u043b\u044b\u049b \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u043e\u0441\u044b\u043d\u044b \u049b\u043e\u0441\u049b\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u0431\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u0430 \u049b\u0438\u044b\u043d\u0434\u044b\u049b \u0431\u043e\u043b\u0441\u0430, \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0434\u0456 \u049b\u0430\u0439\u0442\u0430 \u0410\u0432\u0442\u043e \u04af\u0448\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443\u0456\u04a3\u0456\u0437 \u049b\u0430\u0436\u0435\u0442.", "HeaderSelectCodecIntrosPath": "\u041a\u043e\u0434\u0435\u043a \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", - "ButtonAddMissingData": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u043e\u043a \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u04af\u0441\u0442\u0435\u0443", "ValueExample": "\u041c\u044b\u0441\u0430\u043b: {0}", "OptionEnableAnonymousUsageReporting": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u043d\u043e\u043d\u0438\u043c\u0434\u0456\u043a \u0435\u0441\u0435\u043f\u0442\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443", "OptionEnableAnonymousUsageReportingHelp": "Emby \u04af\u0448\u0456\u043d \u0430\u043d\u043e\u043d\u0438\u043c\u0434\u0456\u043a \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456, \u043c\u044b\u0441\u0430\u043b\u044b, \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b, Emby-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u043d\u04b1\u0441\u049b\u0430 \u043d\u04e9\u043c\u0456\u0440\u043b\u0435\u0440\u0456\u043d, \u0442.\u0431. \u0436\u0438\u043d\u0430\u0443\u0493\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u041e\u0441\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u043c\u0430\u043d\u044b \u0430\u0440\u0442\u0442\u044b\u0440\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u044b \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.", @@ -2057,12 +1855,9 @@ "LabelOptionalM3uUrl": "M3U URL (\u043c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441):", "LabelOptionalM3uUrlHelp": "\u041a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 M3U \u0430\u0440\u043d\u0430 \u0442\u0456\u0437\u0431\u0435\u0441\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u0439\u0434\u044b.", "TabResumeSettings": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", - "HowDidYouPay": "\u049a\u0430\u043b\u0430\u0439 \u0442\u04e9\u043b\u0435\u0434\u0456\u04a3\u0456\u0437?", - "IHaveEmbyPremiere": "\u041c\u0435\u043d\u0434\u0435 Emby Premiere \u0431\u0430\u0440", - "IPurchasedThisApp": "\u041c\u0435\u043d \u043e\u0441\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0434\u044b\u043c", "DrmChannelsNotImported": "DRM \u0431\u0430\u0440 \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0448\u0435\u0442\u0442\u0435\u043d \u04d9\u043a\u0435\u043b\u0456\u043d\u0431\u0435\u0439\u0434\u0456.", "LabelAllowHWTranscoding": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443", - "AllowHWTranscodingHelp": "\u0415\u0433\u0435\u0440 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u0431\u043e\u043b\u0441\u0430, \u0430\u0493\u044b\u043d\u0434\u0430\u0440\u0434\u044b \u043d\u0430\u049b\u0442\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0442\u044e\u043d\u0435\u0440\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u0411\u04b1\u043b Emby Server \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u0442\u0430\u043b\u0430\u0431\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443\u0493\u0430 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", + "AllowHWTranscodingHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0430\u0493\u044b\u043d\u0434\u0430\u0440\u0434\u044b \u043d\u0430\u049b\u0442\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0442\u044e\u043d\u0435\u0440\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456. \u0411\u04b1\u043b Emby Server \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u0442\u0430\u043b\u0430\u0431\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443\u0493\u0430 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", "OptionRequirePerfectSubtitleMatch": "\u0411\u0435\u0439\u043d\u0435 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043c \u04af\u0448\u0456\u043d \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u043a\u0435\u043c\u0435\u043b\u0434\u0456 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443", "ErrorAddingGuestAccount1": "Emby Connect \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u049a\u043e\u043d\u0430\u0493\u044b\u04a3\u044b\u0437 Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0436\u0430\u0441\u0430\u0434\u044b \u043c\u0430? \u041e\u043b {0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", "ErrorAddingGuestAccount2": "\u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u044d-\u043f\u043e\u0448\u0442\u0430\u043c\u0435\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440\u0493\u0430 \u0441\u04d9\u0439\u043a\u0435\u0441, \u049b\u043e\u043d\u0430\u0493\u044b\u04a3\u044b\u0437 \u0436\u0430\u0441\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0443\u0456\u043d \u0430\u044f\u049b\u0442\u0430\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u043e\u043b \u043e\u0441\u044b \u044d-\u043f\u043e\u0448\u0442\u0430\u043d\u044b \u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u043e\u043b\u0441\u0430, \u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0436\u04d9\u043d\u0435 \u043e\u043d\u044b\u04a3 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u043b\u0430\u0440\u044b\u043d \u049b\u043e\u0441\u044b\u043f \u044d-\u043f\u043e\u0448\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d\u0430 \u0445\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0456\u04a3\u0456\u0437.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443 \u0431\u043e\u043b\u0430\u0448\u0430\u049b\u0442\u0430\u0493\u044b \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u04d9\u0441\u0435\u0440 \u0435\u0442\u0435\u0434\u0456. \u0411\u0430\u0440 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0442\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440 \u044d\u043a\u0440\u0430\u043d\u044b\u043d \u0430\u0448\u044b\u04a3\u044b\u0437 \u0434\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u043d\u0435\u043c\u0435\u0441\u0435 \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0440\u0435\u0442\u0442\u0435\u0443\u0456\u0448\u0456\u043d\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u049b\u043e\u0440\u044b\u043c\u044b\u043c\u0435\u043d \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u0434\u044b \u043e\u0440\u044b\u043d\u0434\u0430\u04a3\u044b\u0437.", "OptionConvertRecordingPreserveAudio": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0433\u0435\u043d\u0434\u0435 \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0434\u044b\u0431\u044b\u0441\u0442\u044b \u04e9\u0437\u0433\u0435\u0440\u0442\u043f\u0435\u0443 (\u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430)", "OptionConvertRecordingPreserveAudioHelp": "\u0411\u04b1\u043b \u0436\u0430\u049b\u0441\u044b\u043b\u0430\u0443 \u0434\u044b\u0431\u044b\u0441\u0442\u044b \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u043a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b \u0442\u0430\u043b\u0430\u043f \u0435\u0442\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.", - "CreateCollectionHelp": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0441\u0456\u0437\u0433\u0435 \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0493\u044b \u0431\u0430\u0441\u049b\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b\u04a3 \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d \u0434\u0435\u0440\u0431\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u043e\u043f\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456.", + "OptionConvertRecordingPreserveVideo": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0433\u0435\u043d\u0434\u0435 \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0431\u0435\u0439\u043d\u0435\u043d\u0456 \u04e9\u0437\u0433\u0435\u0440\u0442\u043f\u0435\u0443", + "OptionConvertRecordingPreserveVideoHelp": "\u0411\u04b1\u043b \u0436\u0430\u049b\u0441\u044b\u043b\u0430\u0443 \u0431\u0435\u0439\u043d\u0435\u043d\u0456 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d, \u0431\u0456\u0440\u0430\u049b \u043a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b \u0442\u0430\u043b\u0430\u043f \u0435\u0442\u0435\u0434\u0456.", "AddItemToCollectionHelp": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0456\u0437\u0434\u0435\u043f \u0436\u04d9\u043d\u0435 \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u043d \u0431\u0430\u0441\u044b\u043f \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440\u0493\u0430 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u04a3\u0456\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d \u043c\u04d9\u0437\u0456\u0440\u043b\u0435\u0440\u0434\u0456 \u0442\u04af\u0440\u0442\u0456\u04a3\u0456\u0437.", "HeaderHealthMonitor": "\u0416\u04b1\u043c\u044b\u0441\u049b\u0430 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0442\u0456\u043b\u0456\u043a \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u044b", "HealthMonitorNoAlerts": "\u041e\u0441\u044b\u043d\u0434\u0430 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0435\u0441\u043a\u0435\u0440\u0442\u0443\u043b\u0435\u0440 \u0436\u043e\u049b.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(\u041c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441) \u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u049b\u0430\u043b\u0442\u0430:", "LabelOptionalNetworkPathHelp": "\u0415\u0433\u0435\u0440 \u043e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u04e9\u0437 \u0436\u0435\u043b\u0456\u04a3\u0456\u0437\u0434\u0435 \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0441\u0430, \u0436\u0435\u043b\u0456\u0434\u0435 \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u0436\u043e\u043b\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u0431\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430\u0493\u044b Emby-\u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u0430\u0440\u0493\u0430 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d\u0430 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u049b\u043e\u043b \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a \u0431\u0435\u0440\u0435\u0434\u0456.", "ButtonPlayExternalPlayer": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u043f\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u0443", - "WillRecord": "\u0416\u0430\u0437\u044b\u043b\u0430\u0434\u044b", "NotScheduledToRecord": "\u0416\u0430\u0437\u0443\u0493\u0430 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u043d\u0431\u0430\u0493\u0430\u043d", - "SynologyUpdateInstructions": "\u0416\u0430\u04a3\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d DSM \u043e\u0440\u043d\u044b\u043d\u0430 \u043a\u0456\u0440\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 Package Center \u049b\u0430\u0440\u0430\u0439 \u04e9\u0442\u0456\u04a3\u0456\u0437." + "SynologyUpdateInstructions": "\u0416\u0430\u04a3\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d DSM \u043e\u0440\u043d\u044b\u043d\u0430 \u043a\u0456\u0440\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 Package Center \u049b\u0430\u0440\u0430\u0439 \u04e9\u0442\u0456\u04a3\u0456\u0437.", + "LatestFromLibrary": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 {0}", + "LabelMoviePrefix": "\u0424\u0438\u043b\u044c\u043c \u043f\u0440\u0435\u0444\u0438\u043a\u0441\u0456:", + "LabelMoviePrefixHelp": "\u0415\u0433\u0435\u0440 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3 \u0430\u0442\u0430\u0443\u044b\u043d\u0434\u0430 \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0441\u0430, Emby \u0434\u04b1\u0440\u044b\u0441 \u04e9\u04a3\u0434\u0435\u0439 \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u0431\u04b1\u043d\u044b \u043c\u04b1\u043d\u0434\u0430 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.", + "HeaderRecordingPostProcessing": "\u0416\u0430\u0437\u0431\u0430\u043d\u044b \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u04e9\u04a3\u0434\u0435\u0443", + "LabelPostProcessorArguments": "\u041f\u043e\u0441\u0442-\u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440 \u043f\u04d9\u0440\u043c\u0435\u043d \u0436\u043e\u043b\u044b\u043d\u044b\u04a3 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456:", + "LabelPostProcessorArgumentsHelp": "\u0416\u0430\u0437\u044b\u043b\u0430\u0442\u044b\u043d \u0444\u0430\u0439\u043b \u0436\u043e\u043b\u044b \u0435\u0441\u0435\u0431\u0456\u043d\u0434\u0435 {path} \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", + "LabelPostProcessor": "\u041a\u0435\u0439\u0456\u043d\u0433\u0456 \u04e9\u04a3\u0434\u0435\u0443 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b:", + "ErrorAddingXmlTvFile": "XmlTV \u0444\u0430\u0439\u043b\u044b\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0424\u0430\u0439\u043b \u0431\u0430\u0440 \u0431\u043e\u043b\u0443\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437." } \ No newline at end of file diff --git a/dashboard-ui/strings/ko.json b/dashboard-ui/strings/ko.json index 1ef5249b6e..2652795f14 100644 --- a/dashboard-ui/strings/ko.json +++ b/dashboard-ui/strings/ko.json @@ -1,8 +1,6 @@ { - "LabelExit": "\uc885\ub8cc", - "LabelApiDocumentation": "Api \ubb38\uc11c", - "LabelBrowseLibrary": "\ub77c\uc774\ube0c\ub7ec\ub9ac \ud0d0\uc0c9", - "LabelConfigureServer": "Emby \uc124\uc815", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "\uc774\uc804", "LabelFinish": "\ub05d\ub0b4\uae30", "LabelNext": "\ub2e4\uc74c", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\uc774\ub984:", "MoreUsersCanBeAddedLater": "\ub098\uc911\uc5d0 \ub300\uc2dc\ubcf4\ub4dc\uc5d0\uc11c \uc0ac\uc6a9\uc790\ub97c \ub354 \ucd94\uac00\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.", "UserProfilesIntro": "Emby\ub294 \uac01 \uc0ac\uc6a9\uc790\ubcc4 \ud654\uba74 \uc124\uc815, \uc7ac\uc0dd \uc0c1\ud0dc, \uc790\ub140\ubcf4\ud638 \uc0ac\uc6a9\uc744 \uc9c0\uc6d0\ud558\ub294 \uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c\uc744 \uae30\ubcf8 \uc9c0\uc6d0\ud569\ub2c8\ub2e4.", - "LabelWindowsService": "Windows \uc11c\ube44\uc2a4", - "AWindowsServiceHasBeenInstalled": "Windows \uc11c\ube44\uc2a4\uac00 \uc124\uce58\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "WindowsServiceIntro1": "Emby \uc11c\ubc84\ub294 \uc77c\ubc18\uc801\uc73c\ub85c \ud2b8\ub808\uc774 \uc544\uc774\ucf58\uacfc \ud568\uaed8 \ub370\uc2a4\ud06c\ud0d1 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc73c\ub85c \uc2e4\ud589\ub418\uc9c0\ub9cc, \uc6d0\ud558\ub294 \uacbd\uc6b0 windows \uc11c\ube44\uc2a4 \uc81c\uc5b4 \ud328\ub110\uc5d0\uc11c \ubc31\uadf8\ub77c\uc6b4\ub4dc \uc11c\ube44\uc2a4\ub85c \uc2e4\ud589\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "\uc9c0\uae08 \ud544\uc694\ud55c \uac83\uc740 \uc774\uac83\uc774 \uc804\ubd80\uc785\ub2c8\ub2e4. Emby\uac00 \uadc0\ud558\uc758 \ubbf8\ub514\uc5b4 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc815\ubcf4\ub97c \ubaa8\uc73c\uae30 \uc2dc\uc791\ud588\uc2b5\ub2c8\ub2e4. \uc6b0\ub9ac\uc758 \ub2e4\ub978 \uc571\uc744 \ud655\uc778\ud574 \ubcf4\uc138\uc694. \uc11c\ubc84 \ub300\uc2dc\ubcf4\ub4dc<\/b>\ub97c \ubcf4\ub824\uba74 \ub05d\ub0b4\uae30<\/b>\ub97c \ud074\ub9ad\ud558\uc138\uc694.", "LabelConfigureSettings": "\ud658\uacbd \uc124\uc815", - "LabelEnableAutomaticPortMapping": "\uc790\ub3d9 \ud3ec\ud2b8 \ub9f5\ud551 \uc0ac\uc6a9", - "LabelEnableAutomaticPortMappingHelp": "UPnP\uac00 \uc190\uc26c\uc6b4 \uc6d0\uaca9 \uc811\uc18d\uc744 \uc704\ud55c \uc790\ub3d9 \uc790\ub3d9 \ub77c\uc6b0\ud130 \uc124\uc815\uc744 \uc9c0\uc6d0\ud569\ub2c8\ub2e4. \ud2b9\uc815 \ubaa8\ub378\uc758 \ub77c\uc6b0\ud130\uc5d0\uc11c\ub294 \ub3d9\uc791\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.", "HeaderTermsOfService": "Emby \uc11c\ube44\uc2a4 \uc57d\uad00", "MessagePleaseAcceptTermsOfService": "\uacc4\uc18d\ud558\uae30 \uc804\uc5d0 \uc11c\ube44\uc2a4 \uc57d\uad00\uacfc \uac1c\uc778\uc815\ubcf4 \uc815\ucc45\uc5d0 \ub3d9\uc758\ud558\uc138\uc694.", "OptionIAcceptTermsOfService": "\uc11c\ube44\uc2a4 \uc57d\uad00\uc5d0 \ub3d9\uc758\ud569\ub2c8\ub2e4", "ButtonPrivacyPolicy": "\uac1c\uc778\uc815\ubcf4 \uc815\ucc45", "ButtonTermsOfService": "\uc11c\ube44\uc2a4 \uc57d\uad00", - "HeaderDeveloperOptions": "\uac1c\ubc1c\uc790 \uc635\uc158", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "\uc6f9 \ud074\ub77c\uc774\uc5b8\ud2b8 \uc18c\uc2a4 \uacbd\ub85c:", - "LabelDashboardSourcePathHelp": "\uc18c\uc2a4\uc5d0\uc11c \uc11c\ubc84\ub97c \uc2e4\ud589\ud558\ub294 \uacbd\uc6b0 \ub300\uc2dc\ubcf4\ub4dc UI \ud3f4\ub354\uc758 \uacbd\ub85c\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \ubaa8\ub4e0 \uc6f9 \ud074\ub77c\uc774\uc5b8\ud2b8 \ud30c\uc77c\uc740 \uc774 \uc7a5\uc18c\uc5d0\uc11c \uc81c\uacf5\ub429\ub2c8\ub2e4.", "ButtonConvertMedia": "\ubbf8\ub514\uc5b4 \ubcc0\ud658", "ButtonOrganize": "\uc815\ub9ac \ubc0f \uad6c\uc131", "HeaderSupporterBenefits": "Emby \ud504\ub9ac\ubbf8\uc5b4 \ud61c\ud0dd", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "\ubaa9\ub85d\uc5d0 \uc5c6\ub294 \uc0ac\uc6a9\uc790\ub97c \ucd94\uac00\ud558\ub824\uba74 \uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c \ud398\uc774\uc9c0\uc5d0\uc11c Emby Connect\uc5d0 \uba3c\uc800 \uc5f0\uacb0\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.", "LabelPinCode": "PIN \ucf54\ub4dc:", "OptionHideWatchedContentFromLatestMedia": "\ucd5c\uadfc \ubbf8\ub514\uc5b4\uc5d0\uc11c \uc2dc\uccad\ud55c \ucf58\ud150\uce20 \uc228\uae40", + "DeleteMedia": "Delete media", "HeaderSync": "\ub3d9\uae30\ud654", "ButtonOk": "OK", "ButtonCancel": "\ucde8\uc18c", "ButtonExit": "\uc885\ub8cc", "ButtonNew": "New", + "OptionDev": "\uac1c\ubc1c (\ubd88\uc548\uc815)", + "OptionBeta": "\ubca0\ud0c0", "HeaderTaskTriggers": "\uc791\uc5c5 \ud2b8\ub9ac\uac70", "HeaderTV": "TV", "HeaderAudio": "\uc624\ub514\uc624", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "\uc811\uc18d\ud558\ub824\uba74 \uac04\ud3b8 PIN \ucf54\ub4dc\ub97c \uc785\ub825\ud558\uc138\uc694", "ButtonConfigurePinCode": "PIN \ucf54\ub4dc \uc124\uc815", "RegisterWithPayPal": "PayPal\ub85c \ub4f1\ub85d\ud558\uae30", - "HeaderEnjoyDayTrial": "14\uc77c \ubb34\ub8cc \uccb4\ud5d8\ud558\uae30", "LabelSyncTempPath": "\uc784\uc2dc \ud30c\uc77c \uacbd\ub85c:", "LabelSyncTempPathHelp": "\uc0ac\uc6a9\uc790 \ub3d9\uae30\ud654 \uc791\uc5c5 \ud3f4\ub354\ub97c \uc9c0\uc815\ud569\ub2c8\ub2e4. \ub3d9\uae30\ud654 \uacfc\uc815\uc5d0\uc11c \ub9cc\ub4e4\uc5b4\uc9c4 \ubcc0\ud658\ub41c \ubbf8\ub514\uc5b4\uac00 \uc5ec\uae30\uc5d0 \uc800\uc7a5\ub429\ub2c8\ub2e4.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": ".rar, .zip \ud655\uc7a5\uc790\ub97c \uac00\uc9c4 \ud30c\uc77c\uc744 \ubbf8\ub514\uc5b4 \ud30c\uc77c\ub85c \uc778\uc2dd\ud569\ub2c8\ub2e4.", "LabelEnterConnectUserName": "\uc0ac\uc6a9\uc790\uba85 \ub610\ub294 \uc774\uba54\uc77c", "LabelEnterConnectUserNameHelp": "Emby \uc628\ub77c\uc778 \uacc4\uc815\uc758 \uc0ac\uc6a9\uc790\uba85 \ub610\ub294 \uc774\uba54\uc77c\uc785\ub2c8\ub2e4.", - "LabelEnableEnhancedMovies": "\ud5a5\uc0c1\ub41c \uc601\ud654 \ud654\uba74 \uc0ac\uc6a9", - "LabelEnableEnhancedMoviesHelp": "\uc601\ud654 \uc608\uace0\ud3b8, \ucd94\uac00\uc815\ubcf4, \ubc30\uc5ed \ub4f1\uc758 \uad00\ub828 \ucf58\ud150\uce20\uac00 \ud3ec\ud568\ub41c \ud3f4\ub354\ub85c \ud45c\uc2dc\ud569\ub2c8\ub2e4.", "HeaderSyncJobInfo": "\ub3d9\uae30\ud654 \uc791\uc5c5", "FolderTypeMixed": "\ud63c\ud569 \ucf58\ud150\uce20", "FolderTypeMovies": "\uc601\ud654", @@ -84,7 +70,6 @@ "LabelContentType": "\ucf58\ud150\uce20 \uc885\ub958:", "TitleScheduledTasks": "\uc608\uc57d \uc791\uc5c5", "HeaderSetupLibrary": "\ubbf8\ub514\uc5b4 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc124\uc815", - "ButtonAddMediaFolder": "\ubbf8\ub514\uc5b4 \ud3f4\ub354 \ucd94\uac00", "LabelFolderType": "\ud3f4\ub354 \uc885\ub958:", "LabelCountry": "\uad6d\uac00:", "LabelLanguage": "\uc5b8\uc5b4:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "\uc778\ud130\ub137\uc5d0\uc11c \uc544\ud2b8\uc6cc\ud06c\uc640 \uba54\ud0c0\ub370\uc774\ud130 \ub2e4\uc6b4\ub85c\ub4dc", "LabelDownloadInternetMetadataHelp": "Emby \uc11c\ubc84\uac00 \ubbf8\ub514\uc5b4 \uc815\ubcf4\ub97c \ub2e4\uc6b4\ub85c\ub4dc\ud558\uc5ec \ud48d\ubd80\ud55c \ud654\uba74\uc744 \ud45c\uc2dc\ud569\ub2c8\ub2e4.", - "TabPreferences": "\uc124\uc815", "TabPassword": "\ube44\ubc00\ubc88\ud638", "TabLibraryAccess": "\ub77c\uc774\ube0c\ub7ec\ub9ac \uc811\uc18d", "TabAccess": "\uc811\uc18d", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "\ubaa8\ub4e0 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \uc811\uc18d \ud5c8\uc6a9", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "\uac01 \uc2dc\uc98c\uc758 \ub204\ub77d\ub41c \uc5d0\ud53c\uc18c\ub4dc \ud45c\uc2dc", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "\uac01 \uc2dc\uc98c\uc758 \ubc29\uc1a1\ub418\uc9c0 \uc54a\uc740 \uc5d0\ud53c\uc18c\ub4dc \ud45c\uc2dc", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "\ube44\ub514\uc624 \uc7ac\uc0dd \uc124\uc815", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "\uc7ac\uc0dd \uc124\uc815", "LabelAudioLanguagePreference": "\uc624\ub514\uc624 \uc5b8\uc5b4 \uc124\uc815:", "LabelSubtitleLanguagePreference": "\uc790\ub9c9 \uc5b8\uc5b4 \uc124\uc815:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 \ube44\uc728\uc744 \ucd94\ucc9c\ud569\ub2c8\ub2e4. JPG\/PNG\ub9cc \uc0ac\uc6a9.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "\uc778\ud130\ub137 \uba54\ud0c0\ub370\uc774\ud130 \ub2e4\uc6b4\ub85c\ub4dc\uac00 \ucf1c\uc838 \uc788\ub294\uc9c0 \ud655\uc778\ud558\uc138\uc694.", - "TabSuggested": "\ucd94\ucc9c", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "\ucd94\ucc9c", "TabLatest": "\ucd5c\uadfc", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "\uc5d0\ud53c\uc18c\ub4dc", "TabGenres": "\uc7a5\ub974", - "TabPeople": "People", "TabNetworks": "\ub124\ud2b8\uc6cc\ud06c", "HeaderUsers": "\uc0ac\uc6a9\uc790", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "\uc791\uac00", "OptionProducers": "\ud504\ub85c\ub4c0\uc11c", "HeaderResume": "\uc774\uc5b4\uc11c \uc7ac\uc0dd", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "\uc7ac\uc0dd \ud69f\uc218", "OptionDatePlayed": "Date Played", "OptionDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "\uc568\ubc94 \uc544\ud2f0\uc2a4\ud2b8", "OptionArtist": "\uc544\ud2f0\uc2a4\ud2b8", "OptionAlbum": "\uc568\ubc94", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "\ube44\ub514\uc624 \ube44\ud2b8\ub808\uc774\ud2b8", "OptionResumable": "\uc774\uc5b4\ubcf4\uae30", "ScheduledTasksHelp": "\uc608\uc57d\uc744 \uc218\uc815\ud560 \uc791\uc5c5\uc744 \ud074\ub9ad\ud558\uc138\uc694.", - "ScheduledTasksTitle": "\uc608\uc57d \uc791\uc5c5", "TabMyPlugins": "\ub0b4 \ud50c\ub7ec\uadf8\uc778", "TabCatalog": "\uce74\ud0c8\ub85c\uadf8", "TitlePlugins": "\ud50c\ub7ec\uadf8\uc778", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\ucd5c\uadfc \ub178\ub798", "HeaderRecentlyPlayed": "\ucd5c\uadfc \uc7ac\uc0dd", "HeaderFrequentlyPlayed": "\uc790\uc8fc \uc7ac\uc0dd", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "\ube44\ub514\uc624 \uc885\ub958:", "OptionBluray": "\ube14\ub8e8\ub808\uc774", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "\ube44\uacf5\uac1c \ub610\ub294 \uc228\uae40 \uad00\ub9ac\uc790 \uacc4\uc815\uc5d0 \uc720\uc6a9\ud569\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\ub294 \uc218\ub3d9\uc73c\ub85c \uc0ac\uc6a9\uc790\uba85\uacfc \ube44\ubc00\ubc88\ud638\ub97c \uc785\ub825\ud558\uc5ec \ub85c\uadf8\uc778 \ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.", "OptionDisableUser": "\uc774 \uc0ac\uc6a9\uc790 \uc0ac\uc6a9 \uc548 \ud568", "OptionDisableUserHelp": "\uc11c\ubc84\uac00 \uc774 \uc0ac\uc6a9\uc790\uc758 \uc5f0\uacb0\uc744 \ud5c8\uc6a9\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ud604\uc7ac \uc5f0\uacb0\uc774 \uc608\uace0\uc5c6\uc774 \uc885\ub8cc\ub429\ub2c8\ub2e4.", - "HeaderAdvancedControl": "\uace0\uae09 \uc81c\uc5b4", "LabelName": "Name:", "ButtonHelp": "\ub3c4\uc6c0\ub9d0", "OptionAllowUserToManageServer": "\uc774 \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc774 \uc11c\ubc84\uc758 \uad00\ub9ac\ub97c \ud5c8\uc6a9\ud569\ub2c8\ub2e4", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "\uc18c\uc15c \ubbf8\ub514\uc5b4 \uacf5\uc720 \ud5c8\uc6a9", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "\uacf5\uc720", "HeaderRemoteControl": "\uc6d0\uaca9 \uc81c\uc5b4", "OptionMissingTmdbId": "\ub204\ub77d\ub41c TMDB ID", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "\uacbd\ub85c", "TabServer": "\uc11c\ubc84", "TabTranscoding": "\ud2b8\ub79c\uc2a4\ucf54\ub529", - "TitleAdvanced": "\uace0\uae09", "OptionRelease": "\uacf5\uc2dd \ub9b4\ub9ac\uc988", - "OptionBeta": "\ubca0\ud0c0", - "OptionDev": "\uac1c\ubc1c (\ubd88\uc548\uc815)", "LabelAllowServerAutoRestart": "\uc11c\ubc84\uac00 \uc790\ub3d9\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8\ub97c \uc801\uc6a9\ud558\ub3c4\ub85d \uc7ac\uc2dc\uc791 \ud5c8\uc6a9", "LabelAllowServerAutoRestartHelp": "\uc11c\ubc84\ub294 \ud65c\uc131\ud654\ub41c \uc0ac\uc6a9\uc790\uac00 \uc5c6\ub294 \uc720\ud734 \uae30\uac04\uc5d0\ub9cc \ub2e4\uc2dc \uc2dc\uc791\ud569\ub2c8\ub2e4.", "LabelRunServerAtStartup": "\uc2dc\uc791\ud560 \ub54c \uc11c\ubc84 \uc2e4\ud589", @@ -330,11 +312,9 @@ "TabGames": "\uac8c\uc784", "TabMusic": "\uc74c\uc545", "TabOthers": "\uae30\ud0c0", - "HeaderExtractChapterImagesFor": "\ucc55\ud130 \uc774\ubbf8\uc9c0 \ucd94\ucd9c:", "OptionMovies": "\uc601\ud654", "OptionEpisodes": "\uc5d0\ud53c\uc18c\ub4dc", "OptionOtherVideos": "\uae30\ud0c0 \ube44\ub514\uc624", - "TitleMetadata": "\uba54\ud0c0\ub370\uc774\ud130", "LabelFanartApiKey": "\uac1c\uc778 API \ud0a4:", "LabelFanartApiKeyHelp": "API \ud0a4\uac00 \uc5c6\uc73c\uba74 7\uc77c \uc804\uc758 fanart\ub97c \uac00\uc838\uc635\ub2c8\ub2e4. \uac1c\uc778 API\ub97c \uc785\ub825\ud558\uba74 48\uc2dc\uac04 \ub0b4\uc758 \uc774\ubbf8\uc9c0\ub97c \uac00\uc838\uc624\uba70, fanart VIP \uba64\ubc84\uc758 \uacbd\uc6b0 10\ubd84 \ub0b4\uc678\uc758 \uc774\ubbf8\uc9c0\ub97c \ub2e4\uc6b4\ub85c\ub4dc\ud569\ub2c8\ub2e4.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "\uceec\ub809\uc158", "HeaderChannels": "\ucc44\ub110", "TabRecordings": "\ub179\ud654", - "TabScheduled": "\uc608\uc57d\ub428", "TabSeries": "\uc2dc\ub9ac\uc988", "TabFavorites": "\uc990\uaca8\ucc3e\uae30", "TabMyLibrary": "\ub0b4 \ub77c\uc774\ube0c\ub7ec\ub9ac", "ButtonCancelRecording": "\ub179\ud654 \ucde8\uc18c", - "LabelPrePaddingMinutes": "\uc774\uc804 \uc5ec\ubc31 (\ubd84):", - "LabelPostPaddingMinutes": "\uc774\ud6c4 \uc5ec\ubc31 (\ubd84):", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "\uc0c1\ud0dc", "TabSettings": "\uc124\uc815", "ButtonRefreshGuideData": "\uac00\uc774\ub4dc \ub370\uc774\ud130 \uc0c8\ub85c \uace0\uce68", "ButtonRefresh": "\uc0c8\ub85c \uace0\uce68", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "\ubaa8\ub4e0 \ucc44\ub110 \ub179\ud654", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "\uc0c8 \uc5d0\ud53c\uc18c\ub4dc\ub9cc \ub179\ud654", - "HeaderRepeatingOptions": "\ub179\ud654 \uc635\uc158", "HeaderDays": "\uc77c", "HeaderActiveRecordings": "\ud65c\uc131\ud654 \ub41c \ub179\ud654", "HeaderLatestRecordings": "\ucd5c\uadfc \ub179\ud654", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\ucd5c\uadfc \uac8c\uc784", "HeaderRecentlyPlayedGames": "\ucd5c\uadfc \ud50c\ub808\uc774\ud55c \uac8c\uc784", "TabGameSystems": "\uac8c\uc784 \uc2dc\uc2a4\ud15c", - "TitleMediaLibrary": "\ubbf8\ub514\uc5b4 \ub77c\uc774\ube0c\ub7ec\ub9ac", "TabFolders": "\ud3f4\ub354", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "\uc2dc\uc98c 0 \ud45c\uc2dc \uc81c\ubaa9:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "\uc608\uace0\ud3b8", "LabelMissing": "Missing", - "LabelOffline": "\uc624\ud504\ub77c\uc778", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "\uc2a4\ud398\uc15c", "OptionMissingEpisode": "\ub204\ub77d \uc5d0\ud53c\uc18c\ub4dc", "OptionUnairedEpisode": "\ubc29\uc1a1\ud558\uc9c0 \uc54a\uc740 \uc5d0\ud53c\uc18c\ub4dc", "OptionEpisodeSortName": "\uc5d0\ud53c\uc18c\ub4dc \uc815\ub82c \uc81c\ubaa9", "OptionSeriesSortName": "\uc2dc\ub9ac\uc988 \uc81c\ubaa9", "OptionTvdbRating": "TVDb \ud3c9\uc810", - "EditCollectionItemsHelp": "\uc774 \uceec\ub809\uc158\uc73c\ub85c \ubb36\uc744 \uc601\ud654, \uc2dc\ub9ac\uc988, \uc568\ubc94, \ucc45, \uac8c\uc784\uc744 \ucd94\uac00 \ub610\ub294 \uc0ad\uc81c\ud569\ub2c8\ub2e4.", "HeaderAddTitles": "\uc81c\ubaa9 \ucd94\uac00", "LabelEnableDlnaPlayTo": "\ub2e4\uc74c\uc5d0\uc11c DNLA \uc7ac\uc0dd \uc0ac\uc6a9:", "LabelEnableDlnaPlayToHelp": "Emby\ub294 \uc5ec\ub7ec\ubd84\uc758 \ub124\ud2b8\uc6cc\ud06c\uc5d0\uc11c \uc7a5\uce58\ub97c \uc778\uc2dd\ud558\uc5ec \uc6d0\uaca9\uc73c\ub85c \uc81c\uc5b4\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "\uc2dc\uc2a4\ud15c \ud504\ub85c\ud30c\uc77c", "CustomDlnaProfilesHelp": "\ub300\uc0c1 \uc7a5\uce58\ub97c \uc0c8 \uae30\uae30\ub85c \uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c\uc744 \uc0dd\uc131\ud558\uac70\ub098 \uc2dc\uc2a4\ud15c \ud504\ub85c\ud30c\uc77c\ub85c \ub36e\uc5b4\uc501\ub2c8\ub2e4.", "SystemDlnaProfilesHelp": "\uc2dc\uc2a4\ud15c \ud504\ub85c\ud30c\uc77c\uc740 \uc77d\uae30 \uc804\uc6a9\uc785\ub2c8\ub2e4. \uc2dc\uc2a4\ud15c \ud504\ub85c\ud30c\uc77c\ub85c \ubcc0\uacbd\ud558\uba74 \uc0c8 \uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c\ub85c \uc800\uc7a5\ub429\ub2c8\ub2e4.", - "TitleDashboard": "\ub300\uc2dc\ubcf4\ub4dc", "TabHome": "\ud648", "TabInfo": "\uc815\ubcf4", "HeaderLinks": "\ub9c1\ud06c", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "\uc790\ub3d9 \uad6c\uc131", "TabActivityLog": "\ud65c\ub3d9 \ub85c\uadf8", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "\uc644\ub8cc\ud55c \ud6c4 \ub3cc\uc544\uc640\uc11c \uc774\uba54\uc77c\ub85c \ubc1b\uc740 Emby \ud504\ub9ac\ubbf8\uc5b4 \ud0a4\ub97c \uc785\ub825\ud558\uc138\uc694.", "AutoOrganizeHelp": "\uc790\ub3d9 \uad6c\uc131\uc740 \ub2e4\uc6b4\ub85c\ub4dc \ud3f4\ub354\uc5d0\uc11c \uc0c8 \ud30c\uc77c\uc744 \uac10\uc9c0\ud558\uc5ec \ubbf8\ub514\uc5b4 \ub514\ub809\ud1a0\ub9ac\ub85c \uc62e\uae41\ub2c8\ub2e4.", - "AutoOrganizeTvHelp": "TV \ud30c\uc77c \uad6c\uc131\uc740 \uc774\ubbf8 \uc788\ub294 \uc2dc\ub9ac\uc988\uc5d0\ub9cc \uc5d0\ud53c\uc18c\ub4dc\ub97c \ucd94\uac00\ud569\ub2c8\ub2e4. \uc0c8 \uc2dc\ub9ac\uc988 \ud3f4\ub354\ub97c \ub9cc\ub4e4\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.", "OptionEnableEpisodeOrganization": "\uc0c8 \uc5d0\ud53c\uc18c\ub4dc \uad6c\uc131 \uc0ac\uc6a9", "LabelWatchFolder": "\uac10\uc2dc \ud3f4\ub354:", "LabelWatchFolderHelp": "\uc11c\ubc84\uac00 '\uc0c8 \ubbf8\ub514\uc5b4 \ud30c\uc77c \uad6c\uc131' \uc608\uc57d \uc791\uc5c5\uc744 \uc218\ud589\ud558\ub294 \ub3d9\uc548 \uc774 \ud3f4\ub354\ub97c \uc870\uc0ac\ud569\ub2c8\ub2e4.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "\uc2e4\ud589\uc911\uc778 \uc791\uc5c5", "HeaderActiveDevices": "\ud65c\uc131 \uae30\uae30", "HeaderPendingInstallations": "\uc124\uce58 \ubcf4\ub958", - "HeaderServerInformation": "\uc11c\ubc84 \uc815\ubcf4", "ButtonRestartNow": "\uc9c0\uae08 \ub2e4\uc2dc \uc2dc\uc791", "ButtonRestart": "\ub2e4\uc2dc \uc2dc\uc791", "ButtonShutdown": "\uc885\ub8cc", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby \ud504\ub9ac\ubbf8\uc5b4 \ud0a4\uac00 \uc5c6\uac70\ub098 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.", "ErrorMessageInvalidKey": "\ud504\ub9ac\ubbf8\uc5c4 \ucf58\ud150\ud2b8\ub97c \ub4f1\ub85d\ud558\ub824\uba74 \uc720\ud6a8\ud55c Emby \ud504\ub9ac\ubbf8\uc5b4 \uad6c\ub3c5\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.", "HeaderDisplaySettings": "\ud654\uba74 \uc124\uc815", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "DLNA \uc11c\ubc84 \uc0ac\uc6a9", "LabelEnableDlnaServerHelp": "\uc5ec\ub7ec\ubd84\uc758 \ub124\ud2b8\uc6cc\ud06c\uc5d0 \uc788\ub294 UPnP \uc7a5\uce58\uac00 Emby \ucf58\ud150\uce20\ub97c \ud0d0\uc0c9\ud558\uace0 \uc7ac\uc0dd\ud560 \uc218 \uc788\uac8c \ud5c8\uc6a9\ud569\ub2c8\ub2e4.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "\uae30\ubcf8 \uc0ac\uc6a9\uc790:", "LabelDefaultUserHelp": "\uc5f0\uacb0\ub41c \uc7a5\uce58\uc5d0 \uc5b4\ub5a4 \uc0ac\uc6a9\uc790 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ud45c\uc2dc\ud560 \uc9c0 \uacb0\uc815\ud569\ub2c8\ub2e4. \uc774 \uc124\uc815\uc740 \uac01 \uc7a5\uce58\uc758 \uc0ac\uc6a9\uc911\uc778 \ud504\ub85c\ud30c\uc77c\uc744 \ub300\uccb4\ud569\ub2c8\ub2e4.", - "TitleDlna": "DLNA", "HeaderServerSettings": "\uc11c\ubc84 \uc124\uc815", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "\ub2e4\ub978 \uc571", "OptionMobileApps": "\ubaa8\ubc14\uc77c \uc571", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "\uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc5c5\ub370\uc774\ud2b8 \uc0ac\uc6a9 \uac00\ub2a5", - "NotificationOptionApplicationUpdateInstalled": "\uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uc5c5\ub370\uc774\ud2b8 \uc124\uce58\ub428", - "NotificationOptionPluginUpdateInstalled": "\ud50c\ub7ec\uadf8\uc778 \uc5c5\ub370\uc774\ud2b8 \uc124\uce58\ub428", - "NotificationOptionPluginInstalled": "\ud50c\ub7ec\uadf8\uc778 \uc124\uce58\ub428", - "NotificationOptionPluginUninstalled": "\ud50c\ub7ec\uadf8\uc778 \uc124\uce58 \uc81c\uac70\ub428", - "NotificationOptionVideoPlayback": "\ube44\ub514\uc624 \uc7ac\uc0dd \uc2dc\uc791\ub428", - "NotificationOptionAudioPlayback": "\uc624\ub514\uc624 \uc7ac\uc0dd \uc2dc\uc791\ub428", - "NotificationOptionGamePlayback": "\uac8c\uc784 \ud50c\ub808\uc774 \uc9c0\uc791\ub428", - "NotificationOptionVideoPlaybackStopped": "\ube44\ub514\uc624 \uc7ac\uc0dd \uc911\uc9c0\ub428", - "NotificationOptionAudioPlaybackStopped": "\uc624\ub514\uc624 \uc7ac\uc0dd \uc911\uc9c0\ub428", - "NotificationOptionGamePlaybackStopped": "\uac8c\uc784 \ud50c\ub808\uc774 \uc911\uc9c0\ub428", - "NotificationOptionTaskFailed": "\uc608\uc57d \uc791\uc5c5 \uc2e4\ud328", - "NotificationOptionInstallationFailed": "\uc124\uce58 \uc2e4\ud328", - "NotificationOptionNewLibraryContent": "\uc0c8 \ucf58\ud150\ud2b8 \ucd94\uac00\ub428", - "NotificationOptionCameraImageUploaded": "\uce74\uba54\ub77c \uc774\ubbf8\uc9c0 \uc5c5\ub85c\ub4dc\ub428", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "\uc54c\ub9bc\uc774 Emby \uc218\uc2e0\ud568\uc73c\ub85c \uc804\uc1a1\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \ucd94\uac00 \uc635\uc158\uc744 \uc11c\ube44\uc2a4 \ud0ed\uc5d0\uc11c \uc124\uce58\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.", - "NotificationOptionServerRestartRequired": "\uc11c\ubc84\ub97c \ub2e4\uc2dc \uc2dc\uc791\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4", "LabelNotificationEnabled": "\uc774 \uc54c\ub9bc \uc0ac\uc6a9", "LabelMonitorUsers": "\ub2e4\uc74c\uc758 \ud65c\ub3d9 \ubaa8\ub2c8\ud130\ub9c1:", "LabelSendNotificationToUsers": "\ub2e4\uc74c\uc73c\ub85c \uc54c\ub9bc \uc804\uc1a1:", @@ -662,12 +606,10 @@ "ButtonPrevious": "\uc774\uc804", "LabelGroupMoviesIntoCollections": "\uceec\ub809\uc158\uc73c\ub85c \uc601\ud654 \ubb36\uae30", "LabelGroupMoviesIntoCollectionsHelp": "\uc601\ud654 \ubaa9\ub85d\uc744 \ud45c\uc2dc\ud560 \ub54c \uceec\ub809\uc158\uc5d0 \ud3ec\ud568\ub41c \uc601\ud654\uac00 \ud55c \uac1c\ub85c \ubb36\uc5ec\uc9c4 \ud56d\ubaa9\uc73c\ub85c \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.", - "NotificationOptionPluginError": "\ud50c\ub7ec\uadf8\uc778 \uc2e4\ud328", "ButtonVolumeUp": "\uc74c\ub7c9 \ud06c\uac8c", "ButtonVolumeDown": "\uc74c\ub7c9 \uc791\uac8c", "HeaderLatestMedia": "\ucd5c\uadfc \ubbf8\ub514\uc5b4", "OptionNoSubtitles": "\uc790\ub9c9 \uc5c6\uc74c", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "\uceec\ub809\uc158", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "\uc5d0\ud53c\uc18c\ub4dc \uc81c\ubaa9", "LabelSeriesNamePlain": "\uc2dc\ub9ac\uc988 \uc81c\ubaa9", "ValueSeriesNamePeriod": "\uc2dc\ub9ac\uc988.\uc81c\ubaa9", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "\ub9c8\uc9c0\ub9c9 \uc5d0\ud53c\uc18c\ub4dc \ubc88\ud638", "HeaderTypeText": "\ud14d\uc2a4\ud2b8 \uc785\ub825", "LabelTypeText": "\ud14d\uc2a4\ud2b8", - "HeaderSearchForSubtitles": "\uc790\ub9c9 \uac80\uc0c9", - "MessageNoSubtitleSearchResultsFound": "\uac80\uc0c9 \uacb0\uacfc \uc5c6\uc74c", "TabDisplay": "\ud654\uba74", "TabLanguages": "\uc5b8\uc5b4", "TabAppSettings": "\uc571 \uc124\uc815", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "\ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ud0d0\uc0c9\ud560 \ub54c \ud14c\ub9c8\uc74c\uc545\uc744 \uc7ac\uc0dd\ud569\ub2c8\ub2e4.", "LabelEnableBackdropsHelp": "\ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \ud0d0\uc0c9\ud560 \ub54c \ubc30\uacbd\uc5d0 \uc774\ubbf8\uc9c0\ub97c \ud45c\uc2dc\ud569\ub2c8\ub2e4.", "HeaderHomePage": "\ud648 \ud398\uc774\uc9c0", - "HeaderSettingsForThisDevice": "\uc774 \uc7a5\uce58 \uc124\uc815", "OptionAuto": "\uc790\ub3d9", "OptionYes": "\uc608", "OptionNo": "\uc544\ub2c8\uc624", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "\ud648 \ud398\uc774\uc9c0 \uc139\uc158 2:", "LabelHomePageSection3": "\ud648 \ud398\uc774\uc9c0 \uc139\uc158 3:", "LabelHomePageSection4": "\ud648 \ud398\uc774\uc9c0 \uc139\uc158 4:", - "OptionMyMediaButtons": "\ub0b4 \ubbf8\ub514\uc5b4 (\ubc84\ud2bc)", "OptionMyMedia": "\ub0b4 \ubbf8\ub514\uc5b4", "OptionMyMediaSmall": "\ub0b4 \ubbf8\ub514\uc5b4 (\uc791\uc74c)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "\uc124\uc815", "OptionDefaultSort": "\uae30\ubcf8", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "\uc0ac\uc6a9\uc790\uba85", "HeaderBecomeProjectSupporter": "Emby \ud504\ub9ac\ubbf8\uc5b4 \uc5bb\uae30", "MessageNoMovieSuggestionsAvailable": "\ud604\uc7ac \ucd94\ucc9c \uc601\ud654\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc601\ud654 \ubcf4\uae30\ub97c \uc2dc\uc791\ud558\uace0 \ud3c9\uac00\ub97c \ud558\uba74 \ucd94\ucc9c\uc744 \ubcfc \uc218 \uc788\uc2b5\ub2c8\ub2e4.", "MessageNoCollectionsAvailable": "\uceec\ub809\uc158\uc744 \uc0ac\uc6a9\ud558\uba74 \uac1c\uc778\ud654\ub41c \uc601\ud654, \uc2dc\ub9ac\uc988, \uc568\ubc94, \ucc45, \uac8c\uc784 \ubb36\uc74c\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. + \ubc84\ud2bc\uc744 \ud074\ub9ad\ud558\uc5ec \uceec\ub809\uc158\uc744 \uc0dd\uc131\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "\uc774 \uc7ac\uc0dd\ubaa9\ub85d\uc740 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "\uc0ac\uc6a9\uc790 \ud504\ub85c\ud30c\uc77c, \uc774\ubbf8\uc9c0, \uac1c\uc778 \uc124\uc815\uc744 \ud3b8\uc9d1\ud569\ub2c8\ub2e4.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "\ub300\uc5ed\ud3ed\uc774 \ub0ae\uc740 \ud658\uacbd\uc5d0\uc11c \ud488\uc9c8\uc744 \uc81c\ud55c\ud558\uba74 \ubd80\ub4dc\ub7ec\uc6b4 \uc2a4\ud2b8\ub9ac\ubc0d\uc744 \uc720\uc9c0\ud558\ub294\ub370 \ub3c4\uc6c0\uc774 \ub429\ub2c8\ub2e4.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "\ud50c\ub7ec\uadf8\uc778 \uce74\ud0c8\ub85c\uadf8\uc5d0\uc11c Trailers\ub098 Vimeo \uac19\uc740 \ucc44\ub110\uc744 \uc124\uce58\ud569\ub2c8\ub2e4.", - "ViewTypePlaylists": "\uc7ac\uc0dd\ubaa9\ub85d", "ViewTypeMovies": "\uc601\ud654", "ViewTypeTvShows": "TV", "ViewTypeGames": "\uac8c\uc784", "ViewTypeMusic": "\uc74c\uc545", - "ViewTypeMusicGenres": "\uc7a5\ub974", - "ViewTypeMusicArtists": "\uc544\ud2f0\uc2a4\ud2b8", - "ViewTypeBoxSets": "\uceec\ub809\uc158", - "ViewTypeChannels": "\ucc44\ub110", - "ViewTypeLiveTV": "TV \ubc29\uc1a1", - "ViewTypeLiveTvNowPlaying": "\uc9c0\uae08 \ubc29\uc1a1 \uc911", - "ViewTypeLatestGames": "\ucd5c\uadfc \uac8c\uc784", - "ViewTypeRecentlyPlayedGames": "\ucd5c\uadfc \ud50c\ub808\uc774", - "ViewTypeGameFavorites": "\uc990\uaca8\ucc3e\uae30", - "ViewTypeGameSystems": "\uac8c\uc784 \uc2dc\uc2a4\ud15c", - "ViewTypeGameGenres": "\uc7a5\ub974", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "\uc2dc\ub9ac\uc988", - "ViewTypeTvGenres": "\uc7a5\ub974", - "ViewTypeTvFavoriteSeries": "\uc88b\uc544\ud558\ub294 \uc2dc\ub9ac\uc988", - "ViewTypeTvFavoriteEpisodes": "\uc88b\uc544\ud558\ub294 \uc5d0\ud53c\uc18c\ub4dc", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "\uc601\ud654", - "ViewTypeMovieCollections": "\uceec\ub809\uc158", - "ViewTypeMovieFavorites": "\uc990\uaca8\ucc3e\uae30", - "ViewTypeMovieGenres": "\uc7a5\ub974", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "\uc7ac\uc0dd\ubaa9\ub85d", - "ViewTypeMusicAlbums": "\uc568\ubc94", - "ViewTypeMusicAlbumArtists": "\uc568\ubc94 \uc544\ud2f0\uc2a4\ud2b8", "HeaderOtherDisplaySettings": "\ud654\uba74 \uc124\uc815", "ViewTypeMusicSongs": "\ub178\ub798", "ViewTypeMusicFavorites": "\uc990\uaca8\ucc3e\uae30", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "\uc11c\ube44\uc2a4", "TabLogs": "\ub85c\uadf8", - "HeaderServerLogFiles": "\uc11c\ubc84 \ub85c\uadf8 \ud30c\uc77c:", "TabBranding": "\ube0c\ub79c\ub529", "HeaderBrandingHelp": "\uc0ac\uc6a9\uc790\uc758 \ub2e8\uccb4\ub098 \uc870\uc9c1\uc5d0 \ub9de\uac8c Emby \ubaa8\uc591\uc0c8\ub97c \uc815\uc758\ud569\ub2c8\ub2e4.", "LabelLoginDisclaimer": "\ub85c\uadf8\uc778 \uace0\uc9c0\uc0ac\ud56d", @@ -917,7 +821,6 @@ "HeaderDevice": "\uc7a5\uce58", "HeaderUser": "\uc0ac\uc6a9\uc790", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "\ucc55\ud130 {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "\ubcf4\uae30", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "\uc2a4\ud2b8\ub9ac\ubc0d", - "OptionContextStatic": "\ub3d9\uae30\ud654", "TabPlaylists": "\uc7ac\uc0dd\ubaa9\ub85d", "ButtonClose": "\ub2eb\uae30", "LabelAllLanguages": "\ubaa8\ub4e0 \uc5b8\uc5b4", @@ -956,7 +856,6 @@ "LabelImage": "\uc774\ubbf8\uc9c0:", "HeaderImages": "\uc774\ubbf8\uc9c0", "HeaderBackdrops": "\ubc30\uacbd", - "HeaderScreenshots": "\uc2a4\ud06c\ub9b0\uc0f7", "HeaderAddUpdateImage": "\uc774\ubbf8\uc9c0 \ucd94\uac00\/\uc5c5\ub370\uc774\ud2b8", "LabelDropImageHere": "\uc5ec\uae30\uc5d0 \uc774\ubbf8\uc9c0 \ub5a8\uc5b4\ub728\ub9ac\uae30", "LabelJpgPngOnly": "JPG\/PNG \ub9cc", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "\uc2dc\uc98c 0", "LabelReport": "Report:", "OptionReportSongs": "\ub178\ub798", @@ -991,34 +889,21 @@ "OptionReportAlbums": "\uc568\ubc94", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} \uc2dc\uc791\ub428", - "ScheduledTaskCancelledWithName": "{0} \ucde8\uc18c\ub428", - "ScheduledTaskCompletedWithName": "{0} \uc644\ub8cc\ub428", - "ScheduledTaskFailed": "\uc608\uc57d \uc791\uc5c5 \uc644\ub8cc", "PluginInstalledWithName": "{0} \uc124\uce58\ub428", "PluginUpdatedWithName": "{0} \uc5c5\ub370\uc774\ud2b8\ub428", "PluginUninstalledWithName": "{0} \uc124\uce58 \uc81c\uac70\ub428", - "ScheduledTaskFailedWithName": "{0} \uc2e4\ud328", - "DeviceOnlineWithName": "{0} \uc5f0\uacb0\ub428", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} \uc5f0\uacb0 \ud574\uc81c\ub428", "UserOfflineFromDevice": "{1} \uc5d0\uc11c {0} \uc5f0\uacb0 \ud574\uc81c\ub428", - "SubtitlesDownloadedForItem": "{0} \uc790\ub9c9 \ub2e4\uc6b4\ub85c\ub4dc\ub428", - "SubtitleDownloadFailureForItem": "{0} \uc790\ub9c9 \ub2e4\uc6b4\ub85c\ub4dc \uc2e4\ud328", "LabelRunningTimeValue": "\uc0c1\uc601 \uc2dc\uac04: {0}", "LabelIpAddressValue": "IP \uc8fc\uc18c: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "{0} \uc0ac\uc6a9\uc790 \uc124\uc815\uc774 \uc5c5\ub370\uc774\ud2b8\ub428", "UserCreatedWithName": "\uc0ac\uc6a9\uc790 {0} \uc0dd\uc131\ub428", - "UserPasswordChangedWithName": "\uc0ac\uc6a9\uc790 {0} \ube44\ubc00\ubc88\ud638 \ubcc0\uacbd\ub428", "UserDeletedWithName": "\uc0ac\uc6a9\uc790 {0} \uc0ad\uc81c\ub428", "MessageServerConfigurationUpdated": "\uc11c\ubc84 \ud658\uacbd \uc124\uc815 \uc5c5\ub370\uc774\ub4dc\ub428", "MessageNamedServerConfigurationUpdatedWithValue": "\uc11c\ubc84 \ud658\uacbd \uc124\uc815 {0} \uc139\uc158 \uc5c5\ub370\uc774\ud2b8 \ub428", "MessageApplicationUpdated": "Emby \uc11c\ubc84 \uc5c5\ub370\uc774\ud2b8\ub428", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "\uc571: {0}, \uc7a5\uce58: {1}", "ProviderValue": "\uc81c\uacf5\uc790: {0}", "HeaderRecentActivity": "\ucd5c\uadfc \ud65c\ub3d9", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "\ubc29\uc1a1\uc77c:", "LabelAirTime:": "\ubc29\uc1a1 \uc2dc\uac01:", "LabelRuntimeMinutes": "\uc0c1\uc601 \uc2dc\uac04 (\ubd84):", - "LabelRevenue": "\uc218\uc775 ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "\uc2a4\ud398\uc15c \uc5d0\ud53c\uc18c\ub4dc \uc815\ubcf4", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "\uad6d\uac00", "HeaderGenres": "\uc7a5\ub974", "HeaderPlotKeywords": "\uc904\uac70\ub9ac \ud0a4\uc6cc\ub4dc", "HeaderStudios": "\uc2a4\ud29c\ub514\uc624", "HeaderTags": "\ud0dc\uadf8", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "\uc608\uace0\ud3b8 \uc5c6\uc74c", "ButtonPurchase": "\uad6c\ub9e4", "OptionActor": "\ubc30\uc6b0", "OptionComposer": "\uc791\uace1\uac00", "OptionDirector": "\uac10\ub3c5", "OptionProducer": "\ud504\ub85c\ub4c0\uc11c", - "OptionWriter": "\uc791\uac00", "LabelAirDays": "\ubc29\uc601\uc77c:", "LabelAirTime": "\ubc29\uc601 \uc2dc\uac01:", "HeaderMediaInfo": "\ubbf8\ub514\uc5b4 \uc815\ubcf4", @@ -1160,7 +1036,6 @@ "TabParentalControl": "\uc790\ub140 \ubcf4\ud638", "HeaderAccessSchedule": "\uc811\uc18d \uc77c\uc815", "HeaderAccessScheduleHelp": "\ud2b9\uc815 \uc2dc\uac04\ub300\uc5d0 \uc811\uc18d\uc744 \uc81c\ud55c\ud558\uae30 \uc704\ud55c \uc811\uc18d \uc77c\uc815\uc744 \ub9cc\ub4ed\ub2c8\ub2e4.", - "ButtonAddSchedule": "\uc77c\uc815 \ucd94\uac00", "LabelAccessDay": "\uc694\uc77c:", "LabelAccessStart": "\uc2dc\uc791 \uc2dc\uac01:", "LabelAccessEnd": "\uc885\ub8cc \uc2dc\uac01:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "\uc791\uc5c5 \ub3d9\uae30\ud654", "HeaderThisUserIsCurrentlyDisabled": "\uc774 \uc0ac\uc6a9\uc790\ub294 \ud604\uc7ac \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "\uc778\ud130\ub137 \uba54\ud0c0\ub370\uc774\ud130 \ub2e4\uc6b4\ub85c\ub4dc:", "OptionTVMovies": "TV \uc601\ud654", "HeaderUpcomingMovies": "\uac1c\ubd09 \uc608\uc815 \uc601\ud654", "HeaderUpcomingSports": "\uc608\uc815 \uc2a4\ud3ec\uce20", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "\uc7ac\uc0dd\ubaa9\ub85d", "HeaderViewStyles": "\ubcf4\uae30 \uc2a4\ud0c0\uc77c", "TabPhotos": "\uc0ac\uc9c4", - "TabVideos": "\ube44\ub514\uc624", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "\uac74\ub108\ub6f0\uae30", @@ -1257,7 +1130,6 @@ "HeaderColumns": "\uc5f4", "ButtonReset": "\ucd08\uae30\ud654", "OptionEnableExternalVideoPlayers": "\uc678\ubd80 \ube44\ub514\uc624 \ud50c\ub808\uc774\uc5b4 \uc0ac\uc6a9", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "\uc804\uccb4 \ud654\uba74 \ubaa8\ub4dc \uc0ac\uc6a9", "LabelEmail": "\uc774\uba54\uc77c:", "LabelUsername": "\uc0ac\uc6a9\uc790\uba85:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "\uc904\uac70\ub9ac", "HeaderShortOverview": "\uac04\ub7b5 \uc904\uac70\ub9ac", "HeaderType": "Type", - "HeaderSeverity": "\uc2ec\uac01\ub3c4", "OptionReportActivities": "\ud65c\ub3d9 \ub85c\uadf8", "HeaderTunerDevices": "\ud29c\ub108 \uc7a5\uce58", "HeaderAddDevice": "\uc7a5\uce58 \ucd94\uac00", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "\ubc18\ubcf5", "LabelEnableThisTuner": "\uc774 \ud29c\ub108 \uc0ac\uc6a9", "LabelEnableThisTunerHelp": "\uc774 \ud29c\ub108\uc5d0\uc11c \ucc44\ub110 \uac00\uc838\uc624\uae30\ub97c \ubc29\uc9c0\ud558\ub824\uba74 \uccb4\ud06c\ub97c \ud574\uc81c\ud558\uc138\uc694.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "\ubc30\uacbd", "HeaderImageLogo": "\ub85c\uace0", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "TV \uac00\uc774\ub4dc \uc124\uc815", "LabelDataProvider": "\ub370\uc774\ud130 \uc81c\uacf5\uc790:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "\uae30\ubcf8 \uc5ec\ubc31", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "\uc790\ub9c9", "HeaderVideos": "\ube44\ub514\uc624", @@ -1331,24 +1201,21 @@ "HeadersFolders": "\ud3f4\ub354", "LabelDisplayName": "\ud45c\uc2dc \uc774\ub984:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "\ud604\uc7ac \uc774\ubbf8\uc9c0 \uad50\uccb4", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "\uc124\uc815\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "\uc0ac\uc6a9\uc790", "Delete": "\uc0ad\uc81c", "Password": "\ube44\ubc00\ubc88\ud638", "DeleteImage": "\uc774\ubbf8\uc9c0 \uc0ad\uc81c", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "\uc774 \uc774\ubbf8\uc9c0\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "\ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "\ub0b4 \ubbf8\ub514\uc5b4", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "\ud50c\ub7ec\uadf8\uc778 \uc790\ub3d9 \uc5c5\ub370\uc774\ud2b8 \uc218\uc900:", "ErrorLaunchingChromecast": "\ud06c\ub86c\uce90\uc2a4\ud2b8 \uc2e4\ud589\uc5d0 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc7a5\uce58\uac00 \ubb34\uc120 \ub124\ud2b8\uc6cc\ud06c\uc5d0 \uc5f0\uacb0\ub418\uc5b4 \uc788\ub294\uc9c0 \ud655\uc778\ud558\uc138\uc694.", "MessageErrorLoadingSupporterInfo": "Emby \ud504\ub9ac\ubbf8\uc5b4 \uc815\ubcf4\ub97c \uac00\uc838\uc624\uae30\uc5d0 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud574 \uc8fc\uc138\uc694.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "\uc0ac\uc6a9\uc790 \uc0ad\uc81c", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "\uc2dc\uac04 \uc81c\ud55c: 1 \uc2dc\uac04", "ValueTimeLimitMultiHour": "\uc2dc\uac04 \uc81c\ud55c: {0} \uc2dc\uac04", "PluginCategoryGeneral": "\uc77c\ubc18", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "\uc608\uc57d \uc791\uc5c5", "MessageItemsAdded": "\ud56d\ubaa9 \ucd94\uac00\ub428", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "\uc774 \uc791\uc5c5\uc740 \uc77c\ubc18\uc801\uc73c\ub85c \uc608\uc57d \uc791\uc5c5\uc73c\ub85c \uc790\ub3d9 \uc2e4\ud589\ub418\ubbc0\ub85c \uc218\uc791\uc5c5\uc774 \ud544\uc694\uc5c6\uc2b5\ub2c8\ub2e4. \uc608\uc57d \uc791\uc5c5\uc744 \uc124\uc815\ud558\ub824\uba74 \ub2e4\uc74c\uc744 \ubcf4\uc138\uc694:", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "\uc0ac\uc6a9 \uc548 \ud568", "ButtonMoreInformation": "\ucd94\uac00 \uc815\ubcf4", "LabelNoUnreadNotifications": "\uc77d\uc9c0 \uc54a\uc740 \uc54c\ub9bc\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "\uc62c\ubc14\ub974\uc9c0 \uc54a\uc740 \uc0ac\uc6a9\uc790\uba85 \ub610\ub294 \ube44\ubc00\ubc88\ud638\uc785\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", "HeaderLoginFailure": "\ub85c\uadf8\uc778 \uc2e4\ud328", "RecommendationBecauseYouLike": "{0} \uc744(\ub97c) \uc88b\uc544\ud558\uae30 \ub54c\ubb38\uc5d0", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "\ub179\ud654\uac00 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "\uc2dc\ub9ac\uc988 \ucde8\uc18c \ud655\uc778", - "MessageConfirmSeriesCancellation": "\uc774 \uc2dc\ub9ac\uc988\ub97c \ucde8\uc18c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessageSeriesCancelled": "\uc2dc\ub9ac\uc988\uac00 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "HeaderConfirmRecordingDeletion": "\ub179\ud654 \uc0ad\uc81c \ud655\uc778", "MessageRecordingSaved": "\ub179\ud654\uac00 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "OptionWeekend": "\uc8fc\ub9d0", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "\uc11c\ubc84 \uce90\uc2dc \ud30c\uc77c\uc5d0 \uc0ac\uc6a9\ud560 \uacbd\ub85c\ub97c \ud0d0\uc0c9 \ub610\ub294 \uc785\ub825\ud558\uc138\uc694. \uc4f0\uae30 \uac00\ub2a5\ud55c \ud3f4\ub354\uc5ec\uc57c \ud569\ub2c8\ub2e4.", "HeaderSelectTranscodingPathHelp": "\ud2b8\ub79c\uc2a4\ucf54\ub529 \uc784\uc2dc \ud30c\uc77c\uc5d0 \uc0ac\uc6a9\ud560 \uacbd\ub85c\ub97c \ud0d0\uc0c9 \ub610\ub294 \uc785\ub825\ud558\uc138\uc694. \uc4f0\uae30 \uac00\ub2a5\ud55c \ud3f4\ub354\uc5ec\uc57c \ud569\ub2c8\ub2e4.", "HeaderSelectMetadataPathHelp": "\uba54\ud0c0\ub370\uc774\ud130\ub97c \ubcf4\uad00\ud560 \uacbd\ub85c\ub97c \ud0d0\uc0c9 \ub610\ub294 \uc785\ub825\ud558\uc138\uc694. \uc4f0\uae30 \uac00\ub2a5\ud55c \ud3f4\ub354\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "HeaderSelectChannelDownloadPath": "\ucc44\ub110 \ub2e4\uc6b4\ub85c\ub4dc \uacbd\ub85c \uc120\ud0dd", - "HeaderSelectChannelDownloadPathHelp": "\ucc44\ub110 \uce90\uc2dc \ud30c\uc77c\uc5d0 \uc0ac\uc6a9\ud560 \uacbd\ub85c\ub97c \ud0d0\uc0c9 \ub610\ub294 \uc785\ub825\ud558\uc138\uc694. \uc4f0\uae30 \uac00\ub2a5\ud55c \ud3f4\ub354\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "LabelChapterDownloaders": "\ucc55\ud130 \ub2e4\uc6b4\ub85c\ub354:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "\uc990\uaca8\ucc3e\ub294 \uc568\ubc94", "HeaderLatestChannelMedia": "\ucd5c\uadfc \ucc44\ub110 \ud56d\ubaa9", "ButtonOrganizeFile": "\ud30c\uc77c \uad6c\uc131", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "\ud604\uc7ac \uc790\ub9c9", "ButtonRemoteControl": "\uc6d0\uaca9 \uc81c\uc5b4", "HeaderLatestTvRecordings": "\ucd5c\uadfc \ub179\ud654", "LabelCurrentPath": "\ud604\uc7ac \uacbd\ub85c:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "\ud56d\ubaa9 \uc0ad\uc81c", "ConfirmDeleteItem": "\uc774 \ud56d\ubaa9\uc744 \uc0ad\uc81c\ud558\uba74 \ud30c\uc77c \uc2dc\uc2a4\ud15c\uacfc \ub77c\uc774\ube0c\ub7ec\ub9ac \ubaa8\ub450\uc5d0\uc11c \uc0ad\uc81c\ub429\ub2c8\ub2e4. \uacc4\uc18d\ud558\uaca0\uc2b5\ub2c8\uae4c?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "\uc785\ub825\ud55c \uac12\uc774 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", "MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "\uc2dc\uc791\ud558\uae30 \uc804\uc5d0 \uc11c\ube44\uc2a4 \uc57d\uad00\uc5d0 \ub3d9\uc758\ud558\uc138\uc694.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "\uc2a4\ud06c\ub9b0\uc0f7", "OptionBackdrops": "\ubc30\uacbd", "OptionImages": "\uc774\ubbf8\uc9c0", "OptionKeywords": "\ud0a4\uc6cc\ub4dc", @@ -1642,10 +1494,6 @@ "OptionPeople": "\uc778\ubb3c", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "\ucd9c\uc0dd\uc9c0", - "LabelAllChannels": "\ubaa8\ub4e0 \ucc44\ub110", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "\ucf58\ud150\ud2b8 \uc885\ub958 \ubcc0\uacbd", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "\uacbd\uace0", @@ -1663,7 +1511,6 @@ "ButtonQuality": "\ud488\uc9c8", "HeaderNotifications": "\uc54c\ub9bc", "HeaderSelectPlayer": "\ud50c\ub808\uc774\uc5b4 \uc120\ud0dd", - "MessageInternetExplorerWebm": "Internet Explorer\uc5d0\uc11c \ucd5c\uc0c1\uc758 \uacb0\uacfc\ub97c \uc704\ud574 WebM \uc7ac\uc0dd \ud50c\ub7ec\uadf8\uc778\uc744 \uc124\uce58\ud558\uc138\uc694.", "HeaderVideoError": "\ube44\ub514\uc624 \uc624\ub958", "ButtonViewSeriesRecording": "\uc2dc\ub9ac\uc988 \ub179\ud654 \ubcf4\uae30", "HeaderSpecials": "\uc2a4\ud398\uc15c", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "\uc0c1\uc601 \uc2dc\uac04", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "\uac1c\ubd09\uc77c", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "\uc2dc\uc98c", "HeaderSeasonNumber": "\uc2dc\uc98c \ubc88\ud638", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "\ubbf8\ub514\uc5b4 \uc704\uce58 \uc81c\uac70", "MessageConfirmRemoveMediaLocation": "\uc774 \ubbf8\ub514\uc5b4 \uc704\uce58\ub97c \uc81c\uac70\ud558\uaca0\uc2b5\ub2c8\uae4c?", "LabelNewName": "\uc0c8 \uc774\ub984:", - "HeaderAddMediaFolder": "\ubbf8\ub514\uc5b4 \ud3f4\ub354 \ucd94\uac00", - "HeaderAddMediaFolderHelp": "\uc774\ub984 (\uc601\ud654, \uc74c\uc545, TV, \uae30\ud0c0):", "HeaderRemoveMediaFolder": "\ubbf8\ub514\uc5b4 \ud3f4\ub354 \uc81c\uac70", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "\ubbf8\ub514\uc5b4 \ud3f4\ub354\ub97c \uc81c\uac70\ud558\uaca0\uc2b5\ub2c8\uae4c?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "\ucf58\ud150\ud2b8 \uc885\ub958 \ubcc0\uacbd", "HeaderMediaLocations": "\ubbf8\ub514\uc5b4 \uc704\uce58", "LabelContentTypeValue": "\ucf58\ud150\ud2b8 \uc885\ub958: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "\ucd9c\uc0dd\uc9c0: {0}", "DeathDateValue": "\uc0ac\ub9dd: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "\uc6f9\uc0ac\uc774\ud2b8", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "\uc2a4\ud29c\ub514\uc624: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "\ud3c9\uc810 \ubc0f \ub9ac\ubdf0", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "\ub0b4 \ud3c9\uc810:", "LabelFullReview": "\uc0c1\uc138 \ub9ac\ubdf0:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "\uc774 \ud56d\ubaa9 \ucd94\ucc9c", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "\ubbf8\ub514\uc5b4 \ub3d9\uae30\ud654", "HeaderCancelSyncJob": "\ub3d9\uae30\ud654 \ucde8\uc18c", "CancelSyncJobConfirmation": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc744 \ucde8\uc18c\ud558\uba74 \ub2e4\uc74c \ub3d9\uae30\ud654\ub97c \uc9c4\ud589\ud560 \ub54c \ub3d9\uae30\ud654 \ub41c \ubbf8\ub514\uc5b4\ub97c \uc7a5\uce58\uc5d0\uc11c \uc0ad\uc81c\ud569\ub2c8\ub2e4. \uc9c4\ud589\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessagePleaseSelectDeviceToSyncTo": "\ub3d9\uae30\ud654 \ud560 \uc7a5\uce58\ub97c \uc120\ud0dd\ud558\uc138\uc694.", - "MessageSyncJobCreated": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc774 \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "LabelQuality": "\ud488\uc9c8:", - "OptionAutomaticallySyncNewContent": "\uc0c8 \ucf58\ud150\ud2b8 \uc790\ub3d9 \ub3d9\uae30\ud654", - "OptionAutomaticallySyncNewContentHelp": "\uc0c8 \ucf58\ud150\ud2b8\uac00 \uc7a5\uce58\ub85c \ub3d9\uae30\ud654\ub418\uc5b4 \uc790\ub3d9\uc73c\ub85c \ucd94\uac00\ub429\ub2c8\ub2e4.", "MessageBookPluginRequired": "Bookshelf \ud50c\ub7ec\uadf8\uc778 \uc124\uce58 \ud544\uc694", "MessageGamePluginRequired": "GameBrowser \ud50c\ub7ec\uadf8\uc778 \uc124\uce58 \ud544\uc694", "MessageUnsetContentHelp": "\ucf58\ud150\ud2b8\uac00 \uc77c\ubc18 \ud3f4\ub354\ub85c \ud45c\uc2dc\ub429\ub2c8\ub2e4. \ucd5c\uc0c1\uc758 \uacb0\uacfc\ub97c \uc704\ud574 \uba54\ud0c0\ub370\uc774\ud130 \uad00\ub9ac\uc790\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud558\uc704 \ud3f4\ub354\uc758 \ucf58\ud150\ud2b8 \uc885\ub958\ub97c \uc124\uc815\ud558\uc138\uc694.", @@ -1941,18 +1772,11 @@ "TabScenes": "\uc7a5\uba74", "HeaderUnlockApp": "\uc571 \uc81c\ud55c \ud480\uae30", "HeaderUnlockSync": "Emby \ub3d9\uae30\ud654 \uc81c\ud55c \ud480\uae30", - "MessageUnlockAppWithPurchaseOrSupporter": "\uc774 \uae30\ub2a5\uc758 \uc81c\ud55c\uc744 \ud480\ub824\uba74 \uad6c\ub9e4\ud558\uac70\ub098 Emby \ud504\ub9ac\ubbf8\uc5b4\ub97c \uad6c\ub3c5\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "MessageUnlockAppWithSupporter": "Emby \ud504\ub9ac\ubbf8\uc5b4 \uad6c\ub3c5\uc73c\ub85c \uc774 \uae30\ub2a5\uc758 \uc81c\ud55c\uc744 \ud489\ub2c8\ub2e4.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "\ud604\uc7ac \uacb0\uc81c \uc11c\ube44\uc2a4\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub098\uc911\uc5d0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "ButtonUnlockWithPurchase": "\uad6c\ub9e4\ud558\uc5ec \uc81c\ud55c \ud480\uae30", - "ButtonUnlockPrice": "\uc81c\ud55c \ud480\uae30 {0}", - "MessageLiveTvGuideRequiresUnlock": "TV \ubc29\uc1a1 \uac00\uc774\ub4dc\ub294 \ud604\uc7ac {0} \ucc44\ub110\uc5d0 \uc81c\ud55c\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \uc81c\ud55c \ud480\uae30 \ubc84\ud2bc\uc744 \ud074\ub9ad\ud558\uc5ec \ubaa8\ub4e0 \uacbd\ud5d8\uc744 \uc990\uae30\uc138\uc694.", "OptionEnableFullscreen": "\uc804\uccb4 \ud654\uba74 \uc0ac\uc6a9", "ButtonServer": "\uc11c\ubc84", "HeaderLibrary": "\ub77c\uc774\ube0c\ub7ec\ub9ac", "HeaderMedia": "\ubbf8\ub514\uc5b4", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "\uc11c\ubc84 \uad00\ub9ac", "ButtonPreferences": "\ud658\uacbd \uc124\uc815", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "\uc2ac\ub77c\uc774\ub4dc \uc1fc \uc774\ubbf8\uc9c0\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.", - "OptionPhotoSlideshow": "\uc0ac\uc9c4 \uc2ac\ub77c\uc774\ub4dc \uc1fc", "OptionBackdropSlideshow": "\ubc30\uacbd \uc2ac\ub77c\uc774\ub4dc \uc1fc", "HeaderTopPlugins": "\ucd5c\uace0 \ud50c\ub7ec\uadf8\uc778", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "\uba54\ub274", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "\uac00\uc774\ub4dc", - "ButtonRecordedTv": "TV \ub179\ud654", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "\uc608", "AddUser": "\uc0ac\uc6a9\uc790 \ucd94\uac00", "ButtonNo": "\uc544\ub2c8\uc624", - "ButtonRestorePreviousPurchase": "\uad6c\ub9e4 \ubcf5\uc6d0", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "\uc774\uba54\uc77c \uc8fc\uc18c", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "\uc678\ubd80 \ud50c\ub808\uc774\uc5b4\ub85c \uc7ac\uc0dd", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/lt-LT.json b/dashboard-ui/strings/lt-LT.json new file mode 100644 index 0000000000..9200f459f6 --- /dev/null +++ b/dashboard-ui/strings/lt-LT.json @@ -0,0 +1,1949 @@ +{ + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", + "LabelPrevious": "Ankstesnis", + "LabelFinish": "Baigti", + "LabelNext": "Kitas", + "LabelYoureDone": "Baigta!", + "WelcomeToProject": "Sveiki atvyk\u0119 \u012f Emby!", + "ThisWizardWillGuideYou": "\u0160is pagalbininkas pad\u0117s jums paruo\u0161ti Emby. Prad\u017eiai pasirinkite pageidaujam\u0105 kalb\u0105.", + "TellUsAboutYourself": "Papasakokite apie save", + "ButtonQuickStartGuide": "Greitos prad\u017eios gidas", + "LabelYourFirstName": "J\u016bs\u0173 vardas:", + "MoreUsersCanBeAddedLater": "V\u0117liau gal\u0117site prid\u0117ti daugiau vartotoj\u0173 Skydelyje.", + "UserProfilesIntro": "Emby palaiko vartotoj\u0173 profilius, leid\u017eian\u010dius kiekvienam nustatyti savo rodymo nustatymus, \u017ei\u016br\u0117jimo statistik\u0105 ir t\u0117vi\u0161k\u0105 kontrol\u0119.", + "WizardCompleted": "Kol kas to u\u017eteks. Emby prad\u0117jo rinkti duomenis apie J\u016bs\u0173 medijos bibliotek\u0105. Per\u017ei\u016br\u0117kite program\u0117les, o po to spauskite Baigti<\/b> ir perkelsime jus \u012f Serverio skydel\u012f<\/b>.", + "LabelConfigureSettings": "Konfig\u016bruoti nustatymus", + "HeaderTermsOfService": "Emby Naudojimo s\u0105lygos", + "MessagePleaseAcceptTermsOfService": "Prie\u0161 t\u0119siant pra\u0161ome per\u017ei\u016br\u0117ti naudojimo s\u0105lygas ir privatumo politik\u0105.", + "OptionIAcceptTermsOfService": "Sutinku su naudojimo s\u0105lygomis", + "ButtonPrivacyPolicy": "Privatumo politika", + "ButtonTermsOfService": "Naudojimo s\u0105lygos", + "ButtonConvertMedia": "Konvertuoti medij\u0105", + "ButtonOrganize": "Organizuoti", + "HeaderSupporterBenefits": "Emby Premiere privalumai", + "HeaderAddUser": "Prid\u0117t vartotoj\u0105", + "LabelAddConnectSupporterHelp": "Pridedant vartotoj\u0105, kurio n\u0117ra, reikia pirma susieti jo paskyr\u0105 su Emby Connect jo profilio puslapyje.", + "LabelPinCode": "Pin kodas:", + "OptionHideWatchedContentFromLatestMedia": "Nerodyti per\u017ei\u016br\u0117tos medijos i\u0161 naujausios medijos", + "DeleteMedia": "Delete media", + "HeaderSync": "SInchron.", + "ButtonOk": "OK", + "ButtonCancel": "At\u0161aukti", + "ButtonExit": "I\u0161eiti", + "ButtonNew": "Naujas", + "OptionDev": "K\u016br\u0117jai", + "OptionBeta": "Beta", + "HeaderTaskTriggers": "U\u017eduo\u010di\u0173 trigeris", + "HeaderTV": "TV", + "HeaderAudio": "Garsas", + "HeaderVideo": "Video", + "HeaderPaths": "Keliai", + "CategorySync": "Sinchron.", + "TabPlaylist": "Grojara\u0161tis", + "HeaderEasyPinCode": "Lengvas Pin kodas", + "HeaderInstalledServices": "\u012ediegtos paslaugos", + "HeaderAvailableServices": "Galimos paslaugos", + "MessageNoServicesInstalled": "N\u0117ra \u012fdiegt\u0173 paslaug\u0173.", + "HeaderToAccessPleaseEnterEasyPinCode": "Pra\u0161ome \u012fvesti savo lengv\u0105 pin kod\u0105.", + "ButtonConfigurePinCode": "Konfig\u016bruoti pin kod\u0105", + "RegisterWithPayPal": "Registruotis su PayPal", + "LabelSyncTempPath": "Laikin\u0173 fail\u0173 kelias:", + "LabelSyncTempPathHelp": "Nurodykite sinchronizavimo darbin\u012f aplank\u0105. Jame bus laikoma konvertuojama medija, sukurta sinchronizavimo proceso metu.", + "LabelCustomCertificatePath": "Kit\u0173 sertifikat\u0173 kelias:", + "LabelCustomCertificatePathHelp": "Nurodykite savo ssl sertifikato .pfx fail\u0105. Jei nenurodysite, serveris sukurs paties pasira\u0161yt\u0105 sertifikat\u0105.", + "TitleNotifications": "Prane\u0161imai", + "OptionDetectArchiveFilesAsMedia": "Nustatyti archyv\u0173 failus kaip medij\u0105", + "OptionDetectArchiveFilesAsMediaHelp": "Jei \u012fjungta, failai su .rar ir .zip pl\u0117tiniais bus nustatyti kaip medija failai.", + "LabelEnterConnectUserName": "Vartotojas arba e-pa\u0161tas:", + "LabelEnterConnectUserNameHelp": "Tai J\u016bs\u0173 Emby paskyros vartotojas arba e-pa\u0161tas.", + "HeaderSyncJobInfo": "Sinchron. darbas", + "FolderTypeMixed": "Mi\u0161rus turinys", + "FolderTypeMovies": "Filmai", + "FolderTypeMusic": "Muzika", + "FolderTypePhotos": "Nuotraukos", + "FolderTypeMusicVideos": "Muzikos klipai", + "FolderTypeGames": "\u017daidimai", + "FolderTypeBooks": "Knygos", + "FolderTypeTvShows": "TV", + "FolderTypeInherit": "Paveld\u0117ti", + "LabelContentType": "Turinio tipas:", + "TitleScheduledTasks": "Numatytos u\u017eduotys", + "HeaderSetupLibrary": "Tvarkyti medijos bibliotek\u0105", + "LabelFolderType": "Aplanko tipas:", + "LabelCountry": "\u0160alis:", + "LabelLanguage": "Kalba:", + "LabelTimeLimitHours": "Laiko limitas (val.):", + "HeaderPreferredMetadataLanguage": "Pageidaujama metaduomen\u0173 kalba", + "LabelSaveLocalMetadata": "I\u0161saugoti iliustracijas ir metaduomenis \u012f medijos aplankus.", + "LabelSaveLocalMetadataHelp": "Saugoti iliustracijas ir metaduomenis tiesiai \u012f medijos aplankus, ir taip juos bus lengviau redaguoti.", + "LabelDownloadInternetMetadata": "Atsisi\u0173sti i\u0161 interneto iliustracijas ir metaduomenis", + "LabelDownloadInternetMetadataHelp": "Emby Serveris gali atsisi\u0173sti informacij\u0105 apie J\u016bs\u0173 medij\u0105 ir sukurti turiningus pristatymus.", + "TabPassword": "Slapta\u017eodis", + "TabLibraryAccess": "Bibliotekos prieiga", + "TabAccess": "Prieiga", + "TabImage": "Paveikslas", + "TabProfile": "Profilis", + "TabMetadata": "Metaduomenys", + "TabImages": "Paveikslai", + "TabNotifications": "Prane\u0161imai", + "TabCollectionTitles": "Pavadinimai", + "HeaderDeviceAccess": "\u012erenginio prieiga", + "OptionEnableAccessFromAllDevices": "Leisti prieig\u0105 i\u0161 vis\u0173 \u012frengini\u0173", + "OptionEnableAccessToAllChannels": "Leisti prieig\u0105 prie vis\u0173 kanal\u0173", + "OptionEnableAccessToAllLibraries": "Leisti prieig\u0105 prie vis\u0173 bibliotekos", + "DeviceAccessHelp": "Tai taikoma tik \u012frenginiams, kurie gali b\u016bti identifikuojami, ir neu\u017edraus prieigos per nar\u0161ykl\u0119. Vartotojo \u012frenginio prieigos filtravimas neleis jiems naudotis naujais \u012frenginiais kol jie nepatvirtinti \u010dia.", + "LabelDisplayMissingEpisodesWithinSeasons": "Rodyti sezonuose tr\u016bkstamas serijas", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", + "LabelUnairedMissingEpisodesWithinSeasons": "Rodyti sezonuose dar netransliuotas serijas", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", + "HeaderVideoPlaybackSettings": "Video atk\u016brimo nustatymai", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", + "HeaderPlaybackSettings": "Atk\u016brimo nustatymai", + "LabelAudioLanguagePreference": "Garso kalbos pageidavimas:", + "LabelSubtitleLanguagePreference": "Subtitr\u0173 kalbos pageidavimai:", + "OptionDefaultSubtitles": "\u012eprastas", + "OptionSmartSubtitles": "Gudrus", + "OptionSmartSubtitlesHelp": "Subtitrai, atitinkantys kalbos pasirinkimus, bus rodomi jei garso takelis u\u017esienio kalboje.", + "OptionOnlyForcedSubtitles": "Tik priversti (forced) subtitrai", + "OptionAlwaysPlaySubtitles": "Visada rodyti subtitrus", + "OptionDefaultSubtitlesHelp": "Subtitrai bus rodomi remiantis metaduomen\u0173 \u017eym\u0117mis \"default\" ir \"forced\". Kalbos pasirinkimas bus vertinamas jei bus keli subtitrai.", + "OptionOnlyForcedSubtitlesHelp": "Bus rodomi tik \"forced\" pa\u017eym\u0117ti subtitrai.", + "OptionAlwaysPlaySubtitlesHelp": "Subtitrai, atitinkantys kalbos pasirinkim\u0105, bus u\u017ekrauti nepriklausomai nuo garso takelio kalbos.", + "OptionNoSubtitlesHelp": "\u012eprastai subtitrai nebus rodomi.", + "TabProfiles": "Profiliai", + "TabSecurity": "Saugumas", + "ButtonAddUser": "Prid\u0117t vartotoj\u0105", + "ButtonInviteUser": "Kviesti vartotoj\u0105", + "ButtonSave": "Saugoti", + "ButtonResetPassword": "Atstatyti slapta\u017eod\u012f", + "LabelNewPassword": "Naujas slapta\u017eodis:", + "LabelNewPasswordConfirm": "Naujas slapta\u017eodis (pakartokite):", + "HeaderCreatePassword": "Sukurti slapta\u017eod\u012f", + "LabelCurrentPassword": "Dabartinis slapta\u017eodis", + "LabelMaxParentalRating": "Did\u017eiausias leistinas t\u0117v\u0173 reitingas:", + "MaxParentalRatingHelp": "Auk\u0161tesnio reitingo turinys bus slepiamas nuo \u0161io vartotojo.", + "LibraryAccessHelp": "Pasirinkite medijos aplankus, kuriuos norite dalintis su \u0161iuo vartotoju. Administratoriai gal\u0117s redaguoti visus aplankus per metaduomen\u0173 valdym\u0105.", + "ChannelAccessHelp": "Pasirinkite kanalus, kuriuos norite dalintis su \u0161iuo vartotoju. Administratoriai gal\u0117s redaguoti visus kanalus per metaduomen\u0173 valdym\u0105.", + "ButtonDeleteImage": "Trinti paveikslus", + "LabelSelectUsers": "Rinktis vartotojus:", + "ButtonUpload": "Si\u0173sti", + "HeaderUploadNewImage": "Si\u0173sti nauj\u0105 paveiksl\u0105", + "ImageUploadAspectRatioHelp": "Rekomenduojamas 1:1 santykis. Tik JPG\/PNG.", + "MessageNothingHere": "\u010cia nieko n\u0117ra.", + "MessagePleaseEnsureInternetMetadata": "Patikrinkite, ar \u012fjungtas metaduomen\u0173 siuntimas i\u0161 interneto.", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", + "TabSuggestions": "Pasi\u016blymai", + "TabLatest": "V\u0117liausi", + "TabUpcoming": "B\u016bsimi", + "TabShows": "Laidos", + "TabEpisodes": "Serijos", + "TabGenres": "\u017danrai", + "TabNetworks": "Tinklai", + "HeaderUsers": "Vartotojai", + "HeaderFilters": "Filtrai", + "ButtonFilter": "Filtras", + "OptionFavorite": "M\u0117gstami", + "OptionLikes": "Patinka", + "OptionDislikes": "Nepatinka", + "OptionActors": "Aktoriai", + "OptionGuestStars": "Kviestin\u0117s \u017evaig\u017ed\u0117s", + "OptionDirectors": "Re\u017eisieriai", + "OptionWriters": "Ra\u0161ytojai", + "OptionProducers": "Prodiuseriai", + "HeaderResume": "T\u0119sti", + "HeaderContinueWatching": "\u017di\u016br\u0117ti toliau", + "HeaderNextUp": "Toliau eil\u0117je", + "NoNextUpItemsMessage": "Nieko neradau. Prad\u0117kite \u017ei\u016br\u0117ti laidas!", + "HeaderLatestEpisodes": "V\u0117liausios serijos", + "HeaderPersonTypes": "Asmen\u0173 tipai:", + "TabSongs": "Dainos", + "TabAlbums": "Albumai", + "TabArtists": "Atlik\u0117jai", + "TabAlbumArtists": "Albumo atlik\u0117jai", + "TabMusicVideos": "Muzikos klipai", + "ButtonSort": "R\u016b\u0161iuoti", + "OptionPlayed": "Rodyta", + "OptionUnplayed": "Nerodyta", + "OptionAscending": "Did\u0117jan\u010dia", + "OptionDescending": "Ma\u017e\u0117jan\u010dia", + "OptionRuntime": "Trukm\u0117", + "OptionReleaseDate": "I\u0161leidimo data", + "OptionPlayCount": "Rodym\u0173 kiekis", + "OptionDatePlayed": "Rodymo data", + "OptionDateAdded": "Prid\u0117jimo data", + "DateAddedValue": "Date added: {0}", + "OptionAlbumArtist": "Albumo atlik\u0117jas", + "OptionArtist": "Atlik\u0117jas", + "OptionAlbum": "Albumas", + "OptionTrackName": "Dainos pavadinimas", + "OptionCommunityRating": "Bendruomen\u0117s vertinimas", + "OptionNameSort": "Vardas", + "OptionFolderSort": "Aplankai", + "OptionBudget": "Biud\u017eetas", + "OptionRevenue": "Pajamos", + "OptionPoster": "Plakatas", + "OptionPosterCard": "Plakatas", + "OptionBackdrop": "Fonas", + "OptionTimeline": "Laiko juosta", + "OptionThumb": "Minipav.", + "OptionThumbCard": "Minipav.", + "OptionBanner": "Juosta", + "OptionCriticRating": "Kritik\u0173 vertinimas", + "OptionVideoBitrate": "Video kokyb\u0117", + "OptionResumable": "Prat\u0119siamas", + "ScheduledTasksHelp": "Spauskite ant u\u017eduoties kad keisti jos tvarkara\u0161t\u012f.", + "TabMyPlugins": "Mano priedai", + "TabCatalog": "Katalogas", + "TitlePlugins": "Priedai", + "HeaderAutomaticUpdates": "Automatiniai atnaujinimai", + "HeaderNowPlaying": "Dabar rodoma", + "HeaderLatestAlbums": "V\u0117liausi albumai", + "HeaderLatestSongs": "V\u0117liausios dainos", + "HeaderRecentlyPlayed": "Nesenai paleista", + "HeaderFrequentlyPlayed": "Da\u017enai leid\u017eiama", + "LabelVideoType": "Video tipas:", + "OptionBluray": "Bluray", + "OptionDvd": "DVD", + "OptionIso": "ISO", + "Option3D": "3D", + "LabelStatus": "B\u016bkl\u0117:", + "LabelLastResult": "Paskutinis rezultatas:", + "OptionHasSubtitles": "Subtitrai", + "OptionHasTrailer": "Anonsas", + "OptionHasThemeSong": "Temin\u0117 daina", + "OptionHasThemeVideo": "Teminis video", + "TabMovies": "Filmai", + "TabStudios": "Studijos", + "TabTrailers": "Anonsai", + "LabelArtists": "Atlik\u0117jai:", + "LabelArtistsHelp": "Atskirti kelis naudojant:", + "HeaderLatestTrailers": "V\u0117liausi anonsai", + "OptionHasSpecialFeatures": "Ypatingos serijos", + "OptionImdbRating": "IMDb vertinimas", + "OptionParentalRating": "T\u0117v\u0173 reitingas", + "OptionPremiereDate": "Premjeros data", + "TabBasic": "Paprasta", + "TabAdvanced": "Sud\u0117tingiau", + "OptionContinuing": "T\u0119siamas", + "OptionEnded": "Pasibaig\u0117", + "HeaderAirDays": "Eterio dienos", + "OptionSundayShort": "Sek", + "OptionMondayShort": "Pir", + "OptionTuesdayShort": "Ant", + "OptionWednesdayShort": "Tre", + "OptionThursdayShort": "Ket", + "OptionFridayShort": "Pen", + "OptionSaturdayShort": "\u0160e\u0161", + "OptionSunday": "Sekmadienis", + "OptionMonday": "Pirmadienis", + "OptionTuesday": "Antradienis", + "OptionWednesday": "Tre\u010diadienis", + "OptionThursday": "Ketvirtadienis", + "OptionFriday": "Penktadienis", + "OptionSaturday": "\u0160e\u0161tadienis", + "HeaderManagement": "Valdymas", + "LabelManagement": "Valdymas:", + "OptionMissingImdbId": "Tr\u016bksta IMDb ID", + "OptionMissingTvdbId": "Tr\u016bksta TheTVDB ID", + "OptionMissingOverview": "Tr\u016bksta ap\u017evalgos", + "TabGeneral": "Bendra", + "TitleSupport": "Parama", + "TabAbout": "Apie", + "TabSupporterKey": "Emby Premiere Raktas", + "TabBecomeSupporter": "Gauti Emby Premiere", + "TabEmbyPremiere": "Emby Premiere", + "ProjectHasCommunity": "Emby turi gyv\u0105 vartotoj\u0173 ir pagalbinink\u0173 bendruomen\u0119.", + "CheckoutKnowledgeBase": "Pavartykite m\u016bs\u0173 \u017eini\u0173 baz\u0119.", + "SearchKnowledgeBase": "Ie\u0161kokite \u017dini\u0173 baz\u0117je", + "VisitTheCommunity": "Aplankykite Bendruomen\u0119", + "VisitProjectWebsite": "Aplankykite Emby tinklap\u012f", + "VisitProjectWebsiteLong": "Aplankykite Emby tinklap\u012f, kuriame rasite naujienas ir k\u016br\u0117j\u0173 blog\u0105.", + "OptionHideUser": "Pasl\u0117pti \u0161\u012f vartotoj\u0105 i\u0161 prisijungimo ekrano", + "OptionHideUserFromLoginHelp": "Naudinga priva\u010dioms ar slaptoms administratori\u0173 paskyroms. Vartotojui reik\u0117s rankiniu b\u016bdu \u012fvesti vartotoj\u0105 vard\u0105 ir slapta\u017eod\u012f.", + "OptionDisableUser": "I\u0161jungti \u0161\u012f vartotoj\u0105", + "OptionDisableUserHelp": "I\u0161jungus serveris neleis prisijungti \u0161iam vartotojui. Esamas ry\u0161ys bus nutrauktas.", + "LabelName": "Vardas:", + "ButtonHelp": "Pagalba", + "OptionAllowUserToManageServer": "Leisti \u0161iam vartotojui valdyti server\u012f", + "HeaderFeatureAccess": "Prieiga prie funkcij\u0173", + "OptionAllowMediaPlayback": "Leisti medijos atk\u016brim\u0105", + "OptionAllowBrowsingLiveTv": "Leisti \u017ei\u016br\u0117ti tiesiogin\u0119 TV", + "OptionAllowDeleteLibraryContent": "Leisti trinti medij\u0105", + "OptionAllowManageLiveTv": "Leisti valdyti tiesiogin\u0117s TV \u012fra\u0161ym\u0105", + "OptionAllowRemoteControlOthers": "Leisti nuotoliniu b\u016bdu kontroliuoti kitus vartotojus", + "OptionAllowRemoteSharedDevices": "Leisti nuotoliniu b\u016bdu valdyti bendrus \u012frenginius", + "OptionAllowRemoteSharedDevicesHelp": "Dlna \u012frenginiai yra laikomi bendrais kol vartotojas nepradeda j\u0173 kontroliuoti.", + "OptionAllowLinkSharing": "Leisti dalintis socialin\u0117se aplinkose", + "OptionAllowLinkSharingHelp": "Dalinamasi tik tinklapiais su medijos informacija. Medijos failai niekada nevie\u0161inami. Pasidalinimai yra ribojami laike ir pasens po {0} dien\u0173.", + "HeaderRemoteControl": "Nuotolinis valdymas", + "OptionMissingTmdbId": "Tr\u016bksta Tmdb ID", + "OptionIsHD": "HD", + "OptionIsSD": "SH", + "OptionMetascore": "Meta-vertinimas", + "ButtonSelect": "Rinktis", + "PismoMessage": "Naudoju Pismo File Mount per dovanot\u0105 licencij\u0105.", + "TangibleSoftwareMessage": "Naudoju Tangible Solutions Java\/C# konverterius per dovanot\u0105 licencij\u0105.", + "HeaderCredits": "Titrai", + "PleaseSupportOtherProduces": "Paremkite kitus m\u016bs\u0173 naudojamus nemokamus produktus:", + "VersionNumber": "Versija {0}", + "TabPaths": "Keliai", + "TabServer": "Serveris", + "TabTranscoding": "Transkodavimas", + "OptionRelease": "Oficialus i\u0161leidimas", + "LabelAllowServerAutoRestart": "Leisti serveriui automati\u0161kai persikrauti pritaikant atnaujinimus", + "LabelAllowServerAutoRestartHelp": "Serveris persikraus tik nieko neveikimo metu, kai nebus aktyvus nei vienas vartotojas.", + "LabelRunServerAtStartup": "Paleisti server\u012f paleid\u017eiant kompiuter\u012f", + "LabelRunServerAtStartupHelp": "Tai paleis ikon\u0117l\u0119 prie laikrod\u017eio paleid\u017eiant Windows. WIndows paslaugos paleidimui \u010dia ne\u017eym\u0117kite ir paleiskite paslaug\u0105 i\u0161 Windows valdymo panel\u0117s. Atminkite, kad negalite abiej\u0173 \u0161i\u0173 funkcij\u0173 paleisti vienu metu, tod\u0117l reik\u0117s i\u0161jungti ikon\u0117l\u0119 prie\u0161 paleid\u017eiant paslaug\u0105.", + "ButtonSelectDirectory": "Rinktis direktorij\u0105", + "LabelCachePath": "Kelias \u012f atmintin\u0119:", + "LabelCachePathHelp": "Nurodykite viet\u0105 serverio atmintinei failams, pvz. paveikslams. Palikite tu\u0161\u010di\u0105 kad b\u016bt\u0173 naudojama \u012fprasta vieta.", + "LabelRecordingPath": "\u012eprasta \u012fra\u0161\u0173 vieta:", + "LabelMovieRecordingPath": "Film\u0173 \u012fra\u0161\u0173 vieta (neb\u016btina):", + "LabelSeriesRecordingPath": "Laid\u0173 \u012fra\u0161\u0173 vieta (neb\u016btina):", + "LabelRecordingPathHelp": "Nurodykite \u012fprast\u0105 viet\u0105, kur saugoti \u012fra\u0161us. Palikus tu\u0161\u010dia bus saugoma \u012f serverio programos duomen\u0173 direktorij\u0105.", + "LabelMetadataPath": "Metaduomen\u0173 kelias:", + "LabelMetadataPathHelp": "Nurodykite savo viet\u0105 atsisi\u0173stiems paveikslams ir metaduomenims.", + "LabelTranscodingTempPath": "Transkodavimo laikinas kelias:", + "LabelTranscodingTempPathHelp": "\u0160iame aplanke bus darbiniai transkoderio failai. Nurodykite savo viet\u0105, arba palikite tu\u0161\u010di\u0105, kad b\u016bt\u0173 naudojamas serverio duomen\u0173 aplankas.", + "TabBasics": "Pagrindai", + "TabTV": "TV", + "TabGames": "\u017daidimai", + "TabMusic": "Muzika", + "TabOthers": "Kita", + "OptionMovies": "Filmams", + "OptionEpisodes": "Serijoms", + "OptionOtherVideos": "Kitiems video", + "LabelFanartApiKey": "Asmeninis api raktas", + "LabelFanartApiKeyHelp": "Fan\u0173 meno u\u017eklausos be asmeninio API rakto pateiks paveikslus, kurie buvo patvirtinti seniau nei prie\u0161 7 dienas. Su asmeniniu API raktu \u0161is laikas suma\u017e\u0117ja iki 48 valand\u0173, o jei esate fan\u0173 meno VIP narys, \u0161is laikas dar suma\u017e\u0117s iki ma\u017edaug 10 minu\u010di\u0173.", + "ExtractChapterImagesHelp": "Skyri\u0173 paveiksl\u0173 i\u0161skyrimas pad\u0117s Emby program\u0117l\u0117ms rodyti vaizdingus scen\u0173 pasirinkimo meniu. Procesas gana l\u0117tas, naudoja daug procesoriaus paj\u0117gum\u0173 ir gigabaitus vietos. Jis vyksta atradus video, taip pat numatytas naktimis. Tvarkara\u0161t\u012f galima keisti numatyt\u0173 u\u017eduo\u010di\u0173 skyriuje. Nerekomenduojama vykdyti \u0161ios u\u017eduoties pikinio vartojimo valandomis.", + "LabelMetadataDownloadLanguage": "Pageidaujama siuntimo kalba:", + "ButtonSignIn": "Prisijungti", + "TitleSignIn": "Prisijungti", + "HeaderPleaseSignIn": "Pra\u0161au prisijungti", + "LabelUser": "Vartotojas", + "LabelPassword": "Slapta\u017eodis:", + "ButtonManualLogin": "Rankinis prisijungimas", + "TabGuide": "Gidas", + "TabChannels": "Kanalai", + "TabCollections": "Kolekcijos", + "HeaderChannels": "Kanalai", + "TabRecordings": "\u012era\u0161ai", + "TabSeries": "Laidos", + "TabFavorites": "M\u0117gstamiausi", + "TabMyLibrary": "Mano biblioteka", + "ButtonCancelRecording": "At\u0161aukti \u012fra\u0161ym\u0105", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", + "HeaderWhatsOnTV": "Kas rodoma dabar", + "TabSettings": "Nustatymai", + "ButtonRefreshGuideData": "Atnaujinti gido duomenis", + "ButtonRefresh": "Atnaujinti", + "OptionPriority": "Prioritetas", + "OptionRecordOnAllChannels": "\u012era\u0161yti visuose kanaluose", + "OptionRecordAnytime": "\u012era\u0161yti bet kada", + "OptionRecordOnlyNewEpisodes": "\u012era\u0161yti tik naujas serijas", + "HeaderDays": "Dienos", + "HeaderActiveRecordings": "Aktyv\u016bs \u012fra\u0161ai", + "HeaderLatestRecordings": "Naujausi \u012fra\u0161ai", + "HeaderAllRecordings": "Visi \u012fra\u0161ai", + "ButtonPlay": "Leisti", + "ButtonEdit": "Redaguoti", + "ButtonRecord": "\u012era\u0161yti", + "ButtonDelete": "I\u0161trinti", + "ButtonRemove": "Pa\u0161alinti", + "OptionRecordSeries": "\u012era\u0161yti laid\u0105", + "HeaderDetails": "Daugiau info", + "TitleLiveTV": "Tiesiogin\u0117 TV", + "LabelNumberOfGuideDays": "Kiek dien\u0173 gido duomen\u0173 atsisi\u0173sti:", + "LabelNumberOfGuideDaysHelp": "Atsiuntus daugiau gido duomen\u0173 dien\u0173 bus galima toliau numatyti tvarkara\u0161t\u012f, ta\u010diau tai u\u017etruks ilgiau. Auto parinks dien\u0173 skai\u010di\u0173 pagal kanal\u0173 kiek\u012f.", + "OptionAutomatic": "Auto", + "HeaderServices": "Paslaugos", + "LabelCustomizeOptionsPerMediaType": "Keisti medijos tipui:", + "OptionDownloadThumbImage": "Minipav.", + "OptionDownloadMenuImage": "Meniu", + "OptionDownloadLogoImage": "Logotipas", + "OptionDownloadBoxImage": "Vir\u0161elis", + "OptionDownloadDiscImage": "Diskas", + "OptionDownloadBannerImage": "Juosta", + "OptionDownloadBackImage": "Nugar\u0117l\u0117", + "OptionDownloadArtImage": "Menas", + "OptionDownloadPrimaryImage": "Pirminis", + "HeaderFetchImages": "Gauti nuotraukas:", + "HeaderImageSettings": "Vaizd\u0173 nustatymai", + "TabOther": "Kita", + "LabelMaxBackdropsPerItem": "Maksimalus fon\u0173 kiekis elementui:", + "LabelMaxScreenshotsPerItem": "Maksimalus ekrano nuotrauk\u0173 kiekis elementui:", + "LabelMinBackdropDownloadWidth": "Minimalus fono atsiuntimo plotis:", + "LabelMinScreenshotDownloadWidth": "Minimalus ekrano nuotraukos siuntimo plotis:", + "ButtonAddScheduledTaskTrigger": "Prid\u0117ti jungikl\u012f", + "HeaderAddScheduledTaskTrigger": "Prid\u0117ti jungikl\u012f", + "ButtonAdd": "Prid\u0117ti", + "LabelTriggerType": "Jungiklio tipas:", + "OptionDaily": "Kasdienis", + "OptionWeekly": "Savaitinis", + "OptionOnInterval": "Pasikartojantis", + "OptionOnAppStartup": "Paleidus program\u0105", + "OptionAfterSystemEvent": "Po sisteminio \u012fvykio", + "LabelDay": "Diena:", + "LabelTime": "Laikas:", + "LabelEvent": "\u012evykis:", + "OptionWakeFromSleep": "\u017dadinti i\u0161 miego", + "LabelEveryXMinutes": "Kas:", + "HeaderTvTuners": "Tiuneriai", + "HeaderLatestGames": "Naujausi \u017eaidimai", + "HeaderRecentlyPlayedGames": "V\u0117liausiai \u017eaisti \u017eaidimai", + "TabGameSystems": "\u017daidim\u0173 sistemos", + "TabFolders": "Aplankai", + "TabPathSubstitution": "Keli\u0173 pakeitimai", + "LabelSeasonZeroDisplayName": "Sezono 0 rodymas:", + "LabelEnableRealtimeMonitor": "\u012ejungti steb\u0117jim\u0105 realiu laiku", + "LabelEnableRealtimeMonitorHelp": "Poky\u010diai bus apdoroti i\u0161 karto (palaikomose fail\u0173 sistemose).", + "ButtonScanLibrary": "Skenuoti bibliotek\u0105", + "HeaderNumberOfPlayers": "\u017daid\u0117j\u0173", + "OptionAnyNumberOfPlayers": "Bet kiek", + "Option1Player": "1+", + "Option2Player": "2+", + "Option3Player": "3+", + "Option4Player": "4+", + "HeaderMediaFolders": "Medijos aplankai", + "HeaderThemeVideos": "Teminiai video", + "HeaderThemeSongs": "Temin\u0117s dainos", + "HeaderScenes": "Scenos", + "HeaderAwardsAndReviews": "Apdovanojimai ir ap\u017evalgos", + "HeaderSoundtracks": "Garso takeliai", + "HeaderMusicVideos": "Muzikiniai klipai", + "HeaderSpecialFeatures": "Ypatingos serijos", + "HeaderCastCrew": "K\u016br\u0117jai", + "HeaderAdditionalParts": "Papildomos dalys", + "ButtonSplitVersionsApart": "I\u0161skirti versijas", + "ButtonPlayTrailer": "Anonsas", + "LabelMissing": "Tr\u016bksta", + "OptionSpecialEpisode": "Ypatingos", + "OptionMissingEpisode": "Tr\u016bkstamos serijos", + "OptionUnairedEpisode": "Nerodytos serijos", + "OptionEpisodeSortName": "Serijos pavadinimas r\u016b\u0161iavimui", + "OptionSeriesSortName": "Laidos pavadinimas", + "OptionTvdbRating": "Tvdb vertinimas", + "HeaderAddTitles": "Prid\u0117ti pavadinimus", + "LabelEnableDlnaPlayTo": "\u012ejungti DLNA", + "LabelEnableDlnaPlayToHelp": "Emby gali nustatyti \u012frenginius J\u016bs\u0173 tinkle ir pasi\u016blyti nuotolin\u012f j\u0173 valdym\u0105.", + "LabelEnableDlnaDebugLogging": "\u012ejungti DLNA loginim\u0105", + "LabelEnableDlnaDebugLoggingHelp": "Tai sukurs didelius log failus ir tur\u0117t\u0173 b\u016bti naudojama tik problem\u0173 sprendim\u0173 metu.", + "LabelEnableDlnaClientDiscoveryInterval": "Kliento atradimo intervalas (sekund\u0117s)", + "LabelEnableDlnaClientDiscoveryIntervalHelp": "Nustato laik\u0105 sekund\u0117mis, kas kiek laiko Emby vykdys SSDP paie\u0161kas.", + "HeaderCustomDlnaProfiles": "Kiti profiliai", + "HeaderSystemDlnaProfiles": "Sistemos profilis", + "CustomDlnaProfilesHelp": "Sukurti kit\u0105 profil\u012f naujam \u012frenginiui ar pakeisti sistemos profil\u012f.", + "SystemDlnaProfilesHelp": "Sistemos profiliai yra tik skaitomi. Pakeitimai sistemos profiliui bus i\u0161saugoti \u012f nauj\u0105 kit\u0105 profil\u012f.", + "TabHome": "Namai", + "TabInfo": "Info", + "HeaderLinks": "Nuorodos", + "LinkCommunity": "Bendruomen\u0117", + "LinkGithub": "Github", + "LinkApi": "Api", + "LabelFriendlyServerName": "Draugi\u0161kas serverio pavadinimas:", + "LabelFriendlyServerNameHelp": "\u0160is pavadinimas bus naudojamas serverio identifikavimui. Palikus tu\u0161\u010di\u0105 bus naudojamas kompiuterio pavadinimas.", + "LabelPreferredDisplayLanguage": "Pageidaujama rodymo kalba:", + "LabelPreferredDisplayLanguageHelp": "Emby vertimas yra besit\u0119siantis projektas.", + "LabelReadHowYouCanContribute": "Su\u017einokite, kaip galite prisid\u0117ti.", + "ButtonSubmit": "Pateikti", + "ButtonCreate": "Sukurti", + "LabelCustomCss": "Kitoks CSS:", + "LabelCustomCssHelp": "Pritaikykite tinklapio i\u0161vaizdai savo CSS.", + "LabelLocalHttpServerPortNumber": "Vietinis HTTP porto numeris:", + "LabelLocalHttpServerPortNumberHelp": "TCP porto numeris, kur\u012f tur\u0117t\u0173 naudoti Emby HTTP serveris.", + "LabelPublicHttpPort": "Vie\u0161as HTTP porto numeris:", + "LabelPublicHttpPortHelp": "Vie\u0161as porto numeris, kur\u012f reikt\u0173 susieti su vietiniu HTTP portu.", + "LabelPublicHttpsPort": "Vie\u0161as HTTPS porto numeris:", + "LabelPublicHttpsPortHelp": "Vie\u0161as porto numeris, kur\u012f reikt\u0173 susieti su vietiniu HTTPS portu.", + "LabelEnableHttps": "Prane\u0161ti HTTPS kaip i\u0161orin\u012f adres\u0105", + "LabelEnableHttpsHelp": "jungus serveris prane\u0161 HTTPS adres\u0105 Emby program\u0117l\u0117ms kaip i\u0161orin\u012f adres\u0105.", + "LabelHttpsPort": "Vietinis HTTPS porto numeris:", + "LabelHttpsPortHelp": "TCP porto numeris, kur\u012f tur\u0117t\u0173 naudoti Emby HTTPS serveris.", + "LabelEnableAutomaticPortMap": "\u012ejungti automatin\u012f port\u0173 i\u0161d\u0117stym\u0105", + "LabelEnableAutomaticPortMapHelp": "Pabandyti automati\u0161kai susieti vie\u0161us portus su vietiniais portais per UPnP. Tai gali neveikti su kai kuriais mar\u0161rutizatoriais.", + "LabelExternalDDNS": "I\u0161orinis domenas:", + "LabelExternalDDNSHelp": "Jei J\u016bs\u0173 DNS dinaminis, \u012fveskite j\u012f \u010dia. Emby program\u0117l\u0117s naudos j\u012f jungiantis i\u0161 i\u0161or\u0117s. \u0160is laukas b\u016btinas naudojant kitok\u012f SSL sertifikat\u0105.", + "TitleAppSettings": "Program\u0117li\u0173 nustatymai", + "LabelMinResumePercentage": "Ma\u017eiausias prat\u0119simo procentas:", + "LabelMaxResumePercentage": "Did\u017eiausias prat\u0119simo procentas:", + "LabelMinResumeDuration": "Ma\u017eiausia prat\u0119simo trukm\u0117 (sek.):", + "LabelMinResumePercentageHelp": "Failai laikomi ne\u017ei\u016br\u0117tais jei sustabdoma iki \u0161io laiko", + "LabelMaxResumePercentageHelp": "Gailai laikomi per\u017ei\u016br\u0117ti, jei sustabdoma v\u0117liau \u0161io laiko", + "LabelMinResumeDurationHelp": "Trumpesni\u0173 fail\u0173 prat\u0119sti nebus \u012fmanoma", + "TabActivityLog": "Veiksm\u0173 \u017eurnalas", + "TabSmartMatches": "Gudr\u016bs sutapimai", + "TabSmartMatchInfo": "Valdykite protingus sutapimus, kurie buvo prid\u0117ti naudojant Auto-organizavimo taisymo dialog\u0105", + "HeaderName": "Vardas", + "HeaderDate": "Data", + "HeaderSource": "\u0160altinis", + "HeaderStatus": "B\u016bkl\u0117", + "HeaderDestination": "Tikslas", + "HeaderProgram": "Programa", + "HeaderClients": "Klientai", + "LabelCompleted": "Baigta", + "LabelFailed": "Nepavyko", + "LabelSkipped": "Praleista", + "LabelSeries": "Laidos", + "LabelSeasonNumber": "Sezono numeris:", + "LabelEpisodeNumber": "Serijos numeris:", + "LabelEndingEpisodeNumber": "Paskutin\u0117s serijos numeris:", + "LabelEndingEpisodeNumberHelp": "Reikalinga tik keli\u0173 serij\u0173 failams", + "OptionRememberOrganizeCorrection": "I\u0161saugokite ir pritaikykite \u0161\u012f taisym\u0105 ateityje kitiems failams su pana\u0161iais pavadinimais", + "HeaderSupportTheTeam": "Paremkite Emby Komand\u0105", + "HeaderSupportTheTeamHelp": "Pad\u0117kite u\u017etikrinti tolesn\u012f \u0161io projekto tobulinim\u0105 nupirkdami Emby Premiere. Dalis vis\u0173 pajam\u0173 bus panaudota kitiems nemokamiems \u012frankiams, nuo kuri\u0173 priklausome.", + "DonationNextStep": "Pabaigus gr\u012f\u017ekite ir \u012fveskite savo Emby Premiere rakt\u0105, kur\u012f gausite pa\u0161tu.", + "AutoOrganizeHelp": "Auto-organizavimas stebi J\u016bs\u0173 siuntini\u0173 katalogus ir naujus failus perkelia \u012f atitinkamus medijos katalogus.", + "OptionEnableEpisodeOrganization": "\u012ejungti nauj\u0173 serij\u0173 organizavim\u0105", + "LabelWatchFolder": "Steb\u0117jimo katalogas:", + "LabelWatchFolderHelp": "Serveris steb\u0117s \u0161\u012f katalog\u0105 numatytoje u\u017eduotyje \"Organizuoti naujus medijos failus\".", + "LabelMinFileSizeForOrganize": "Ma\u017eiausias failo dydis (MB):", + "LabelMinFileSizeForOrganizeHelp": "Ma\u017eesni failai bus ignoruojami.", + "LabelSeasonFolderPattern": "Sezono katalogo \u0161ablonas:", + "LabelSeasonZeroFolderName": "Nulinio sezono katalogo pavadinimas:", + "HeaderEpisodeFilePattern": "Serij\u0173 failo \u0161ablonas", + "LabelEpisodePattern": "Serijos \u0161ablonas:", + "LabelMultiEpisodePattern": "Keli\u0173 serij\u0173 \u0161ablonas:", + "HeaderSupportedPatterns": "Palaikomi \u0161ablonai", + "HeaderTerm": "S\u0105lyga", + "HeaderPattern": "\u0160ablonas", + "HeaderResult": "Rezultatas", + "LabelDeleteEmptyFolders": "Trinti tu\u0161\u010dius katalogus po organizavimo", + "LabelDeleteEmptyFoldersHelp": "\u012ejunkite tai kad J\u016bs\u0173 siuntini\u0173 katalogas b\u016bt\u0173 tvarkingas.", + "LabelDeleteLeftOverFiles": "Trinti likusius failus su \u0161iais i\u0161pl\u0117timais:", + "LabelDeleteLeftOverFilesHelp": "Atskirkite su ;. Pavyzd\u017eiui: .nfo;.txt", + "OptionOverwriteExistingEpisodes": "Ra\u0161yti ant esan\u010di\u0173 serij\u0173", + "LabelTransferMethod": "Perk\u0117limo metodas", + "OptionCopy": "Kopijuoti", + "OptionMove": "Perkelti", + "LabelTransferMethodHelp": "Kopijuoti ar perkelti failus i\u0161 steb\u0117jimo katalogo", + "HeaderLatestNews": "V\u0117liausios naujienos", + "HeaderRunningTasks": "Veikian\u010dios u\u017eduotys", + "HeaderActiveDevices": "Aktyv\u016bs \u012frenginiai", + "HeaderPendingInstallations": "Pending Installations", + "ButtonRestartNow": "Restart Now", + "ButtonRestart": "Restart", + "ButtonShutdown": "Shutdown", + "ButtonUpdateNow": "Update Now", + "TabHosting": "Hosting", + "PleaseUpdateManually": "Please shutdown the server and update manually.", + "NewServerVersionAvailable": "A new version of Emby Server is available!", + "ServerUpToDate": "Emby Server is up to date", + "LabelComponentsUpdated": "The following components have been installed or updated:", + "MessagePleaseRestartServerToFinishUpdating": "Please restart the server to finish applying updates.", + "LabelDownMixAudioScale": "Audio boost when downmixing:", + "LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.", + "ButtonLinkKeys": "Transfer Key", + "LabelOldSupporterKey": "Old Emby Premiere key", + "LabelNewSupporterKey": "New Emby Premiere key", + "HeaderMultipleKeyLinking": "Transfer to New Key", + "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.", + "LabelCurrentEmailAddress": "Current email address", + "LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.", + "HeaderForgotKey": "Forgot Key", + "LabelEmailAddress": "Email address", + "LabelSupporterEmailAddress": "The email address that was used to purchase the key.", + "ButtonRetrieveKey": "Retrieve Key", + "LabelSupporterKey": "Emby Premiere key (paste from email):", + "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.", + "MessageInvalidKey": "Emby Premiere key is missing or invalid.", + "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", + "HeaderDisplaySettings": "Display Settings", + "LabelEnableDlnaServer": "Enable Dlna server", + "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", + "LabelEnableBlastAliveMessages": "Blast alive messages", + "LabelEnableBlastAliveMessagesHelp": "Enable this if the server is not detected reliably by other UPnP devices on your network.", + "LabelBlastMessageInterval": "Alive message interval (seconds)", + "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", + "LabelDefaultUser": "Default user:", + "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", + "HeaderServerSettings": "Server Settings", + "HeaderRequireManualLogin": "Require manual username entry for:", + "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", + "OptionOtherApps": "Other apps", + "OptionMobileApps": "Mobile apps", + "LabelNotificationEnabled": "Enable this notification", + "LabelMonitorUsers": "Monitor activity from:", + "LabelSendNotificationToUsers": "Send the notification to:", + "LabelUseNotificationServices": "Naudoti \u0161ias paslaugas:", + "CategoryUser": "Vartotojas", + "CategorySystem": "Sistema", + "CategoryApplication": "Program\u0117l\u0117", + "CategoryPlugin": "\u012eskiepis", + "LabelAvailableTokens": "Galimi tokenai:", + "AdditionalNotificationServices": "Nar\u0161ykite \u012fskiepi\u0173 katalog\u0105 ir \u012fsidiekite papildom\u0173 prane\u0161im\u0173 paslaug\u0173.", + "OptionAllUsers": "Visi vartotojai", + "OptionAdminUsers": "Administratoriai", + "OptionCustomUsers": "Kita", + "ButtonArrowUp": "Auk\u0161tyn", + "ButtonArrowDown": "\u017demyn", + "ButtonArrowLeft": "Kair\u0117n", + "ButtonArrowRight": "De\u0161in\u0117n", + "ButtonBack": "Atgal", + "ButtonInfo": "Info", + "ButtonOsd": "Informacija ekrane", + "ButtonPageUp": "Puslapis auk\u0161tyn", + "ButtonPageDown": "Puslapis \u017eemyn", + "ButtonHome": "Namai", + "ButtonSearch": "Paie\u0161ka", + "ButtonSettings": "Nustatymai", + "ButtonTakeScreenshot": "I\u0161saugoti ekrano nuotrauk\u0105", + "LetterButtonAbbreviation": "A", + "TabNowPlaying": "Dabar rodoma", + "TabNavigation": "Navigacija", + "TabControls": "Valdymas", + "ButtonScenes": "Scenos", + "ButtonSubtitles": "Subtitrai", + "ButtonPreviousTrack": "Ankstesnis takelis", + "ButtonNextTrack": "Kitas takelis", + "ButtonStop": "Stabdyti", + "ButtonPause": "Pauz\u0117", + "ButtonNext": "Kitas", + "ButtonPrevious": "Ankstesnis", + "LabelGroupMoviesIntoCollections": "Grupuoti filmus \u012f kolekcijas", + "LabelGroupMoviesIntoCollectionsHelp": "Rodant film\u0173 s\u0105ra\u0161\u0105 filmai i\u0161 kolekcijos bus rodomi kaip vienas elementas.", + "ButtonVolumeUp": "Garsiau", + "ButtonVolumeDown": "Tyliau", + "HeaderLatestMedia": "Naujausia medija", + "OptionNoSubtitles": "N\u0117ra subtitr\u0173", + "HeaderCollections": "Kolekcijos", + "LabelProfileCodecsHelp": "Atskirta kableliais. Palikus tu\u0161\u010di\u0105 bus pritaikyta visiems kodekams.", + "LabelProfileContainersHelp": "Atskirta kableliais. Palikus tu\u0161\u010di\u0105 bus pritaikyta visiems konteineriams.", + "HeaderResponseProfile": "Response Profile", + "LabelType": "Type:", + "LabelProfileContainer": "Container:", + "LabelProfileVideoCodecs": "Video codecs:", + "LabelProfileAudioCodecs": "Audio codecs:", + "LabelProfileCodecs": "Codecs:", + "HeaderDirectPlayProfile": "Direct Play Profile", + "HeaderTranscodingProfile": "Transcoding Profile", + "HeaderCodecProfile": "Codec Profile", + "HeaderContainerProfile": "Container Profile", + "OptionProfileVideo": "Video", + "OptionProfileAudio": "Audio", + "OptionProfileVideoAudio": "Video Audio", + "OptionProfilePhoto": "Photo", + "LabelUserLibrary": "User library:", + "LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.", + "OptionPlainStorageFolders": "Display all folders as plain storage folders", + "OptionPlainStorageFoldersHelp": "If enabled, all folders are represented in DIDL as \"object.container.storageFolder\" instead of a more specific type, such as \"object.container.person.musicArtist\".", + "OptionPlainVideoItems": "Display all videos as plain video items", + "OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".", + "LabelSupportedMediaTypes": "Supported Media Types:", + "HeaderIdentification": "Identification", + "TabDirectPlay": "Direct Play", + "TabContainers": "Containers", + "TabCodecs": "Codecs", + "TabResponses": "Responses", + "HeaderProfileInformation": "Profile Information", + "LabelEmbedAlbumArtDidl": "Embed album art in Didl", + "LabelEmbedAlbumArtDidlHelp": "Some devices prefer this method for obtaining album art. Others may fail to play with this option enabled.", + "LabelAlbumArtPN": "Album art PN:", + "LabelAlbumArtHelp": "PN used for album art, within the dlna:profileID attribute on upnp:albumArtURI. Some devices require a specific value, regardless of the size of the image.", + "LabelAlbumArtMaxWidth": "Album art max width:", + "LabelAlbumArtMaxWidthHelp": "Max resolution of album art exposed via upnp:albumArtURI.", + "LabelAlbumArtMaxHeight": "Album art max height:", + "LabelAlbumArtMaxHeightHelp": "Max resolution of album art exposed via upnp:albumArtURI.", + "LabelIconMaxWidth": "Icon max width:", + "LabelIconMaxWidthHelp": "Max resolution of icons exposed via upnp:icon.", + "LabelIconMaxHeight": "Icon max height:", + "LabelIconMaxHeightHelp": "Max resolution of icons exposed via upnp:icon.", + "LabelIdentificationFieldHelp": "A case-insensitive substring or regex expression.", + "HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.", + "LabelMaxBitrate": "Max bitrate:", + "LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.", + "LabelMaxStreamingBitrate": "Max streaming bitrate:", + "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.", + "LabelMaxChromecastBitrate": "Max Chromecast bitrate:", + "LabelMusicStaticBitrate": "Music sync bitrate:", + "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music", + "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:", + "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music", + "OptionIgnoreTranscodeByteRangeRequests": "Ignoruot transkodavimo bait\u0173 ruo\u017eo u\u017eklausas", + "OptionIgnoreTranscodeByteRangeRequestsHelp": "\u012ejungus \u0161ios u\u017eklausos bus vykdomos i\u0161skyrus bait\u0173 ruo\u017e\u0105.", + "LabelFriendlyName": "Draugi\u0161kas pavadinimas", + "LabelManufacturer": "Gamintojas", + "LabelManufacturerUrl": "Gamintojo adresas", + "LabelModelName": "Modelio pavadinimas", + "LabelModelNumber": "Modelio numeris", + "LabelModelDescription": "Modelio apra\u0161ymas", + "LabelModelUrl": "Modelio adresas", + "LabelSerialNumber": "Serijinis numeris", + "LabelDeviceDescription": "\u012erenginio apra\u0161ymas", + "HeaderIdentificationCriteriaHelp": "\u012eveskite bent vien\u0105 identifikavimo kriterij\u0173.", + "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", + "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", + "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", + "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", + "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", + "LabelXDlnaCap": "X-Dlna cap:", + "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", + "LabelXDlnaDoc": "X-Dlna doc:", + "LabelXDlnaDocHelp": "Determines the content of the X_DLNADOC element in the urn:schemas-dlna-org:device-1-0 namespace.", + "LabelSonyAggregationFlags": "Sony aggregation flags:", + "LabelSonyAggregationFlagsHelp": "Determines the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace.", + "LabelTranscodingContainer": "Container:", + "LabelTranscodingVideoCodec": "Video codec:", + "LabelTranscodingAudioCodec": "Audio codec:", + "OptionEnableM2tsMode": "Enable M2ts mode", + "OptionEnableM2tsModeHelp": "Enable m2ts mode when encoding to mpegts.", + "OptionEstimateContentLength": "Estimate content length when transcoding", + "OptionReportByteRangeSeekingWhenTranscoding": "Report that the server supports byte seeking when transcoding", + "OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.", + "HeaderDownloadSubtitlesFor": "Download subtitles for:", + "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", + "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", + "TabSubtitles": "Subtitles", + "TabChapters": "Chapters", + "LabelOpenSubtitlesUsername": "Open Subtitles username:", + "LabelOpenSubtitlesPassword": "Open Subtitles password:", + "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language", + "LabelSubtitlePlaybackMode": "Subtitle mode:", + "LabelDownloadLanguages": "Download languages:", + "ButtonRegister": "Register", + "LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language", + "LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.", + "HeaderSendMessage": "Send Message", + "ButtonSend": "Send", + "LabelMessageText": "Message text:", + "LabelMessageTitle": "Message title:", + "MessageNoAvailablePlugins": "No available plugins.", + "LabelDisplayPluginsFor": "Display plugins for:", + "PluginTabAppClassic": "Emby Classic", + "LabelEpisodeNamePlain": "Episode name", + "LabelSeriesNamePlain": "Series name", + "ValueSeriesNamePeriod": "Series.name", + "ValueSeriesNameUnderscore": "Series_name", + "ValueEpisodeNamePeriod": "Episode.name", + "ValueEpisodeNameUnderscore": "Episode_name", + "LabelSeasonNumberPlain": "Season number", + "LabelEpisodeNumberPlain": "Episode number", + "LabelEndingEpisodeNumberPlain": "Ending episode number", + "HeaderTypeText": "Enter Text", + "LabelTypeText": "Text", + "TabDisplay": "Display", + "TabLanguages": "Languages", + "TabAppSettings": "App Settings", + "LabelEnableThemeSongs": "Enable theme songs", + "LabelEnableBackdrops": "Enable backdrops", + "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", + "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", + "HeaderHomePage": "Home Page", + "OptionAuto": "Auto", + "OptionYes": "Yes", + "OptionNo": "No", + "HeaderOptions": "Options", + "LabelHomePageSection1": "Home page section 1:", + "LabelHomePageSection2": "Home page section 2:", + "LabelHomePageSection3": "Home page section 3:", + "LabelHomePageSection4": "Home page section 4:", + "OptionMyMedia": "My media", + "OptionMyMediaSmall": "My media (small)", + "OptionResumablemedia": "Resume", + "OptionLatestMedia": "Latest media", + "OptionLatestChannelMedia": "Latest channel items", + "HeaderLatestChannelItems": "Latest Channel Items", + "OptionNone": "None", + "HeaderLiveTv": "Live TV", + "HeaderReports": "Reports", + "HeaderSettings": "Settings", + "OptionDefaultSort": "Default", + "TabNextUp": "Next Up", + "HeaderBecomeProjectSupporter": "Get Emby Premiere", + "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", + "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", + "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", + "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", + "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", + "LabelChannelStreamQuality": "Preferred internet channel quality:", + "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", + "OptionBestAvailableStreamQuality": "Best available", + "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", + "ViewTypeMovies": "Movies", + "ViewTypeTvShows": "TV", + "ViewTypeGames": "Games", + "ViewTypeMusic": "Music", + "HeaderOtherDisplaySettings": "Display Settings", + "ViewTypeMusicSongs": "Songs", + "ViewTypeMusicFavorites": "Favorites", + "ViewTypeMusicFavoriteAlbums": "Favorite Albums", + "ViewTypeMusicFavoriteArtists": "Favorite Artists", + "ViewTypeMusicFavoriteSongs": "Favorite Songs", + "HeaderMyViews": "My Views", + "LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:", + "LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.", + "OptionDisplayAdultContent": "Display adult content", + "OptionLibraryFolders": "Media folders", + "TitleRemoteControl": "Remote Control", + "OptionLatestTvRecordings": "Latest recordings", + "LabelProtocolInfo": "Protocol info:", + "LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.", + "TabNfoSettings": "Nfo Settings", + "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Services tab to configure options for your media types.", + "LabelKodiMetadataUser": "Sync user watch data to nfo's for:", + "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.", + "LabelKodiMetadataDateFormat": "Release date format:", + "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.", + "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files", + "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.", + "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution", + "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.", + "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.", + "OptionDisplayChannelsInline": "Display channels as media folders", + "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other media libraries. If disabled, they'll be displayed within a separate Channels folder.", + "LabelDisplayCollectionsView": "Display a collections view to show movie collections", + "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", + "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs", + "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", + "TabServices": "Services", + "TabLogs": "Logs", + "TabBranding": "Branding", + "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", + "LabelLoginDisclaimer": "Login disclaimer:", + "LabelLoginDisclaimerHelp": "This will be displayed at the bottom of the login page.", + "OptionList": "List", + "TabDashboard": "Dashboard", + "TitleServer": "Server", + "LabelCache": "Cache:", + "LabelLogs": "Logs:", + "LabelMetadata": "Metadata:", + "LabelTranscodingTemporaryFiles": "Transcoding temporary files:", + "HeaderLatestMusic": "Latest Music", + "HeaderBranding": "Branding", + "HeaderApiKeys": "Api Keys", + "HeaderApiKeysHelp": "External applications are required to have an Api key in order to communicate with Emby Server. Keys are issued by logging in with an Emby account, or by manually granting the application a key.", + "HeaderApiKey": "Api Key", + "HeaderApp": "App", + "HeaderDevice": "Device", + "HeaderUser": "User", + "HeaderDateIssued": "Date Issued", + "HeaderHttpHeaders": "Http Headers", + "HeaderIdentificationHeader": "Identification Header", + "LabelValue": "Value:", + "LabelMatchType": "Match type:", + "OptionEquals": "Equals", + "OptionRegex": "Regex", + "OptionSubstring": "Substring", + "TabView": "View", + "TabFilter": "Filter", + "ButtonView": "View", + "LabelPageSize": "Item limit:", + "LabelPath": "Path:", + "LabelView": "View:", + "TabUsers": "Users", + "HeaderFeatures": "Features", + "HeaderAdvanced": "Advanced", + "ButtonSync": "Sync", + "TabScheduledTasks": "Scheduled Tasks", + "HeaderChapters": "Chapters", + "HeaderResumeSettings": "Resume Settings", + "TabSync": "Sync", + "TitleUsers": "Users", + "LabelProtocol": "Protocol:", + "OptionProtocolHttp": "Http", + "OptionProtocolHls": "Http Live Streaming", + "LabelContext": "Context:", + "TabPlaylists": "Playlists", + "ButtonClose": "Close", + "LabelAllLanguages": "All languages", + "HeaderBrowseOnlineImages": "Browse Online Images", + "LabelSource": "Source:", + "OptionAll": "All", + "LabelImage": "Image:", + "HeaderImages": "Images", + "HeaderBackdrops": "Backdrops", + "HeaderAddUpdateImage": "Add\/Update Image", + "LabelDropImageHere": "Drop image here", + "LabelJpgPngOnly": "JPG\/PNG only", + "LabelImageType": "Image type:", + "OptionPrimary": "Primary", + "OptionArt": "Art", + "OptionBox": "Box", + "OptionBoxRear": "Box rear", + "OptionDisc": "Disc", + "OptionIcon": "Icon", + "OptionLogo": "Logo", + "OptionMenu": "Menu", + "OptionScreenshot": "Screenshot", + "OptionLocked": "Locked", + "OptionUnidentified": "Unidentified", + "OptionMissingParentalRating": "Missing parental rating", + "OptionSeason0": "Season 0", + "LabelReport": "Report:", + "OptionReportSongs": "Songs", + "OptionReportSeries": "Series", + "OptionReportSeasons": "Seasons", + "OptionReportTrailers": "Trailers", + "OptionReportMusicVideos": "Music videos", + "OptionReportMovies": "Movies", + "OptionReportHomeVideos": "Home videos", + "OptionReportGames": "Games", + "OptionReportEpisodes": "Episodes", + "OptionReportCollections": "Collections", + "OptionReportBooks": "Books", + "OptionReportArtists": "Artists", + "OptionReportAlbums": "Albums", + "ButtonMore": "More", + "HeaderActivity": "Activity", + "PluginInstalledWithName": "{0} was installed", + "PluginUpdatedWithName": "{0} was updated", + "PluginUninstalledWithName": "{0} was uninstalled", + "UserOnlineFromDevice": "{0} is online from {1}", + "UserOfflineFromDevice": "{0} has disconnected from {1}", + "LabelRunningTimeValue": "Running time: {0}", + "LabelIpAddressValue": "Ip address: {0}", + "UserLockedOutWithName": "User {0} has been locked out", + "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", + "UserCreatedWithName": "User {0} has been created", + "UserDeletedWithName": "User {0} has been deleted", + "MessageServerConfigurationUpdated": "Server configuration has been updated", + "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", + "MessageApplicationUpdated": "Emby Server has been updated", + "UserDownloadingItemWithValues": "{0} is downloading {1}", + "ProviderValue": "Provider: {0}", + "HeaderRecentActivity": "Recent Activity", + "HeaderPeople": "People", + "HeaderDownloadPeopleMetadataFor": "Download biography and images for:", + "OptionComposers": "Composers", + "OptionOthers": "Others", + "HeaderDownloadPeopleMetadataForHelp": "Enabling additional options will provide more on-screen information but will result in slower library scans.", + "ViewTypeFolders": "Folders", + "OptionDisplayFolderView": "Display a folder view to show plain media folders", + "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", + "ViewTypeLiveTvRecordingGroups": "Recordings", + "ViewTypeLiveTvChannels": "Channels", + "LabelEasyPinCode": "Easy pin code:", + "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.", + "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code", + "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.", + "HeaderPassword": "Password", + "HeaderViewOrder": "View Order", + "ButtonResetEasyPassword": "Reset easy pin code", + "LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps", + "HeaderPersonInfo": "Person Info", + "HeaderConfirmDeletion": "Confirm Deletion", + "LabelAlbumArtist": "Album artist:", + "LabelAlbumArtists": "Album artists:", + "LabelAlbum": "Album:", + "LabelCommunityRating": "Community rating:", + "LabelAwardSummary": "Award summary:", + "LabelReleaseDate": "Release date:", + "LabelEndDate": "End date:", + "LabelAirDate": "Air days:", + "LabelAirTime:": "Air time:", + "LabelRuntimeMinutes": "Run time (minutes):", + "HeaderSpecialEpisodeInfo": "Special Episode Info", + "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", + "HeaderGenres": "Genres", + "HeaderPlotKeywords": "Plot Keywords", + "HeaderStudios": "Studios", + "HeaderTags": "Tags", + "OptionNoTrailer": "No Trailer", + "ButtonPurchase": "Purchase", + "OptionActor": "Actor", + "OptionComposer": "Composer", + "OptionDirector": "Director", + "OptionProducer": "Producer", + "LabelAirDays": "Air days:", + "LabelAirTime": "Air time:", + "HeaderMediaInfo": "Media Info", + "HeaderPhotoInfo": "Photo Info", + "HeaderInstall": "Install", + "LabelSelectVersionToInstall": "Select version to install:", + "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere", + "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.", + "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.", + "HeaderReviews": "Reviews", + "HeaderDeveloperInfo": "Developer Info", + "HeaderRevisionHistory": "Revision History", + "ButtonViewWebsite": "View website", + "HeaderXmlSettings": "Xml Settings", + "HeaderXmlDocumentAttributes": "Xml Document Attributes", + "HeaderXmlDocumentAttribute": "Xml Document Attribute", + "XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.", + "OptionSaveMetadataAsHidden": "Save metadata and images as hidden files", + "LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan", + "LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.", + "LabelConnectGuestUserName": "Their Emby username or email address:", + "LabelConnectUserName": "Emby username or email address:", + "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.", + "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect", + "LabelExternalPlayers": "External players:", + "LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.", + "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.", + "HeaderSubtitleProfile": "Subtitle Profile", + "HeaderSubtitleProfiles": "Subtitle Profiles", + "HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.", + "LabelFormat": "Format:", + "LabelMethod": "Method:", + "LabelDidlMode": "Didl mode:", + "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", + "OptionResElement": "res element", + "OptionEmbedSubtitles": "Embed within container", + "OptionExternallyDownloaded": "External download", + "OptionHlsSegmentedSubtitles": "Hls segmented subtitles", + "LabelSubtitleFormatHelp": "Example: srt", + "ButtonLearnMore": "Learn more", + "TabPlayback": "Playback", + "HeaderAudioSettings": "Audio Settings", + "HeaderSubtitleSettings": "Subtitle Settings", + "TabCinemaMode": "Cinema Mode", + "TitlePlayback": "Playback", + "LabelEnableCinemaModeFor": "Enable cinema mode for:", + "CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "OptionTrailersFromMyMovies": "Include trailers from movies in my library", + "OptionUpcomingMoviesInTheaters": "Include trailers from new and upcoming movies", + "LabelLimitIntrosToUnwatchedContent": "Only play trailers from unwatched content", + "LabelEnableIntroParentalControl": "Enable smart parental control", + "LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.", + "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.", + "OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.", + "LabelCustomIntrosPath": "Custom intros path:", + "LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.", + "LabelSelectInternetTrailersForCinemaMode": "Internet trailers:", + "OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray", + "OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix", + "CinemaModeConfigurationHelp2": "Emby apps will have a setting to enable or disable cinema mode. TV apps enable cinema mode by default.", + "LabelEnableCinemaMode": "Enable cinema mode", + "HeaderCinemaMode": "Cinema Mode", + "LabelDateAddedBehavior": "Date added behavior for new content:", + "OptionDateAddedImportTime": "Use date scanned into the library", + "OptionDateAddedFileTime": "Use file creation date", + "LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.", + "LabelNumberTrailerToPlay": "Number of trailers to play:", + "TitleDevices": "Devices", + "TabCameraUpload": "Camera Upload", + "TabDevices": "Devices", + "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.", + "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", + "LabelCameraUploadPath": "Camera upload path:", + "LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.", + "LabelCreateCameraUploadSubfolder": "Create a subfolder for each device", + "LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.", + "LabelCustomDeviceDisplayName": "Display name:", + "LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.", + "HeaderInviteUser": "Invite User", + "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.", + "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.", + "ButtonSendInvitation": "Send Invitation", + "HeaderSignInWithConnect": "Sign in with Emby Connect", + "HeaderGuests": "Guests", + "HeaderPendingInvitations": "Pending Invitations", + "TabParentalControl": "Parental Control", + "HeaderAccessSchedule": "Access Schedule", + "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", + "LabelAccessDay": "Day of week:", + "LabelAccessStart": "Start time:", + "LabelAccessEnd": "End time:", + "HeaderSchedule": "Schedule", + "OptionEveryday": "Every day", + "OptionWeekdays": "Weekdays", + "OptionWeekends": "Weekends", + "MessageProfileInfoSynced": "User profile information synced with Emby Connect.", + "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account", + "ButtonTrailer": "Trailer", + "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", + "HeaderNewUsers": "New Users", + "ButtonSignUp": "Sign up", + "ButtonForgotPassword": "Forgot password", + "OptionDisableUserPreferences": "Disable access to user preferences", + "OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.", + "HeaderSelectServer": "Select Server", + "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", + "TitleNewUser": "New User", + "ButtonConfigurePassword": "Configure Password", + "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", + "HeaderLibraryAccess": "Library Access", + "HeaderChannelAccess": "Channel Access", + "HeaderLatestItems": "Latest Items", + "LabelSelectLastestItemsFolders": "Include media from the following sections in Latest Items", + "HeaderShareMediaFolders": "Share Media Folders", + "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", + "HeaderInvitations": "Invitations", + "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.", + "HeaderForgotPassword": "Forgot Password", + "TitlePasswordReset": "Password Reset", + "LabelPasswordRecoveryPinCode": "Pin code:", + "HeaderPasswordReset": "Password Reset", + "HeaderParentalRatings": "Parental Ratings", + "HeaderVideoTypes": "Video Types", + "HeaderYears": "Years", + "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", + "LabelBlockContentWithTags": "Block content with tags:", + "LabelEnableSingleImageInDidlLimit": "Limit to single embedded image", + "LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.", + "TabActivity": "Activity", + "TitleSync": "Sync", + "OptionAllowSyncContent": "Allow Sync", + "OptionAllowContentDownloading": "Allow media downloading", + "NameSeasonUnknown": "Season Unknown", + "NameSeasonNumber": "Season {0}", + "LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)", + "TabJobs": "Jobs", + "TabSyncJobs": "Sync Jobs", + "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", + "MessageReenableUser": "See below to reenable", + "OptionTVMovies": "TV Movies", + "HeaderUpcomingMovies": "Upcoming Movies", + "HeaderUpcomingSports": "Upcoming Sports", + "HeaderUpcomingPrograms": "Upcoming Programs", + "ButtonMoreItems": "More", + "OptionEnableTranscodingThrottle": "Enable throttling", + "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", + "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", + "OptionAllowSyncTranscoding": "Allow syncing that requires transcoding", + "HeaderPlayback": "Media Playback", + "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", + "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", + "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.", + "TabStreaming": "Streaming", + "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", + "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle.", + "LabelConversionCpuCoreLimit": "CPU core limit:", + "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", + "OptionEnableFullSpeedConversion": "Enable full speed conversion", + "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", + "HeaderPlaylists": "Playlists", + "HeaderViewStyles": "View Styles", + "TabPhotos": "Photos", + "HeaderWelcomeToEmby": "Welcome to Emby", + "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", + "ButtonSkip": "Skip", + "TextConnectToServerManually": "Connect to server manually", + "ButtonSignInWithConnect": "Sign in with Emby Connect", + "ButtonConnect": "Connect", + "LabelServerHost": "Host:", + "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", + "LabelServerPort": "Port:", + "HeaderNewServer": "New Server", + "ButtonChangeServer": "Change Server", + "HeaderConnectToServer": "Connect to Server", + "OptionReportList": "List View", + "OptionReportStatistics": "Statistics", + "OptionReportGrouping": "Grouping", + "HeaderExport": "Export", + "HeaderColumns": "Columns", + "ButtonReset": "Reset", + "OptionEnableExternalVideoPlayers": "Enable external video players", + "LabelEnableFullScreen": "Enable fullscreen mode", + "LabelEmail": "Email:", + "LabelUsername": "Username:", + "HeaderSignUp": "Sign Up", + "LabelPasswordConfirm": "Password (confirm):", + "ButtonAddServer": "Add Server", + "TabHomeScreen": "Home Screen", + "HeaderDisplay": "Display", + "HeaderNavigation": "Navigation", + "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", + "OptionOtherTrailers": "Include trailers from older movies", + "HeaderOverview": "Overview", + "HeaderShortOverview": "Short Overview", + "HeaderType": "Type", + "OptionReportActivities": "Activities Log", + "HeaderTunerDevices": "Tuner Devices", + "HeaderAddDevice": "Add Device", + "HeaderExternalServices": "External Services", + "LabelTunerIpAddress": "Tuner IP Address:", + "TabExternalServices": "External Services", + "HeaderGuideProviders": "Guide Providers", + "AddGuideProviderHelp": "Add a source for TV Guide information", + "LabelZipCode": "Zip Code:", + "GuideProviderSelectListings": "Select Listings", + "GuideProviderLogin": "Login", + "LabelLineup": "Lineup:", + "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", + "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", + "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", + "ButtonRepeat": "Repeat", + "LabelEnableThisTuner": "Enable this tuner", + "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", + "HeaderImagePrimary": "Primary", + "HeaderImageBackdrop": "Backdrop", + "HeaderImageLogo": "Logo", + "HeaderUserPrimaryImage": "User Image", + "ButtonProfile": "Profile", + "ButtonProfileHelp": "Set your profile image and password.", + "HeaderHomeScreenSettings": "Home Screen settings", + "HeaderProfile": "Profile", + "HeaderLanguage": "Language", + "LabelTranscodingThreadCount": "Transcoding thread count:", + "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.", + "OptionMax": "Max", + "LabelSyncPath": "Synced content path:", + "OptionSyncOnlyOnWifi": "Sync only on Wifi", + "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", + "HeaderUpcomingForKids": "Upcoming for Kids", + "HeaderSetupLiveTV": "Setup Live TV", + "LabelTunerType": "Tuner type:", + "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", + "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", + "HeaderSetupTVGuide": "Setup TV Guide", + "LabelDataProvider": "Data provider:", + "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", + "HeaderDefaultRecordingSettings": "Default Recording Settings", + "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", + "HeaderSubtitles": "Subtitles", + "HeaderVideos": "Videos", + "LabelHardwareAccelerationType": "Hardware acceleration:", + "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "ButtonServerDashboard": "Server Dashboard", + "HeaderAdmin": "Admin", + "ButtonSignOut": "Sign out", + "HeaderCameraUpload": "Camera Upload", + "SelectCameraUploadServers": "Upload camera photos to the following servers:", + "ButtonClear": "Clear", + "LabelFolder": "Folder:", + "HeadersFolders": "Folders", + "LabelDisplayName": "Display name:", + "HeaderNewRecording": "New Recording", + "LabelCodecIntrosPath": "Codec intros path:", + "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", + "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", + "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", + "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", + "FileExtension": "File extension", + "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", + "OptionDownloadImagesInAdvance": "Download images in advance", + "SettingsSaved": "Settings saved.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", + "Users": "Users", + "Delete": "Delete", + "Password": "Password", + "DeleteImage": "Delete Image", + "MessageThankYouForSupporting": "Thank you for supporting Emby.", + "DeleteImageConfirmation": "Are you sure you wish to delete this image?", + "FileReadCancelled": "The file read has been canceled.", + "FileNotFound": "File not found.", + "FileReadError": "An error occurred while reading the file.", + "DeleteUser": "Delete User", + "DeleteUserConfirmation": "Are you sure you wish to delete this user?", + "PasswordResetHeader": "Reset Password", + "PasswordResetComplete": "The password has been reset.", + "PinCodeResetComplete": "The pin code has been reset.", + "PasswordResetConfirmation": "Are you sure you wish to reset the password?", + "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", + "HeaderPinCodeReset": "Reset Pin Code", + "PasswordSaved": "Password saved.", + "PasswordMatchError": "Password and password confirmation must match.", + "UninstallPluginHeader": "Uninstall Plugin", + "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", + "NoPluginConfigurationMessage": "This plugin has no settings to configure.", + "NoPluginsInstalledMessage": "You have no plugins installed.", + "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", + "HeaderNewApiKey": "New Api Key", + "LabelAppName": "App name", + "LabelAppNameExample": "Example: Sickbeard, NzbDrone", + "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", + "MessageKeyEmailedTo": "Key emailed to {0}.", + "MessageKeysLinked": "Keys linked.", + "HeaderConfirmation": "Confirmation", + "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", + "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", + "TextEnjoyBonusFeatures": "Enjoy Bonus Features", + "ButtonCancelSyncJob": "Cancel sync", + "HeaderAddTag": "Add Tag", + "LabelTag": "Tag:", + "ButtonSelectView": "Select view", + "HeaderSelectDate": "Select Date", + "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", + "LabelFromHelp": "Example: {0} (on the server)", + "HeaderMyMedia": "My Media", + "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", + "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", + "HeaderConfirmRemoveUser": "Remove User", + "ValueTimeLimitSingleHour": "Time limit: 1 hour", + "ValueTimeLimitMultiHour": "Time limit: {0} hours", + "PluginCategoryGeneral": "General", + "PluginCategoryContentProvider": "Content Providers", + "PluginCategoryScreenSaver": "Screen Savers", + "PluginCategoryTheme": "Themes", + "PluginCategorySync": "Sync", + "PluginCategorySocialIntegration": "Social Networks", + "PluginCategoryNotifications": "Notifications", + "PluginCategoryMetadata": "Metadata", + "PluginCategoryLiveTV": "Live TV", + "PluginCategoryChannel": "Channels", + "HeaderSearch": "Search", + "ValueDateCreated": "Date created: {0}", + "LabelArtist": "Artist", + "LabelMovie": "Movie", + "LabelMusicVideo": "Music Video", + "LabelEpisode": "Episode", + "Series": "Series", + "LabelStopping": "Stopping", + "LabelCancelled": "Cancelled", + "ButtonDownload": "Download", + "SyncJobStatusQueued": "Queued", + "SyncJobStatusConverting": "Converting", + "SyncJobStatusFailed": "Failed", + "SyncJobStatusCancelled": "Cancelled", + "SyncJobStatusCompleted": "Synced", + "SyncJobStatusReadyToTransfer": "Ready to Transfer", + "SyncJobStatusTransferring": "Transferring", + "SyncJobStatusCompletedWithError": "Synced with errors", + "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", + "LabelCollection": "Collection", + "HeaderDevices": "Devices", + "ButtonScheduledTasks": "Scheduled tasks", + "MessageItemsAdded": "Items added", + "HeaderSelectCertificatePath": "Select Certificate Path", + "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", + "HeaderWelcomeToProjectWebClient": "Welcome to Emby", + "ButtonTakeTheTour": "Take the tour", + "HeaderWelcomeBack": "Welcome back!", + "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", + "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the app.", + "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "HeaderSelectDevices": "Select Devices", + "ButtonCancelItem": "Cancel item", + "ButtonQueueForRetry": "Queue for retry", + "ButtonReenable": "Re-enable", + "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", + "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", + "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", + "HeaderDeleteTaskTrigger": "Delete Task Trigger", + "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", + "MessageNoPluginsInstalled": "You have no plugins installed.", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", + "LabelVersionInstalled": "{0} installed", + "LabelNumberReviews": "{0} Reviews", + "LabelFree": "Free", + "HeaderPlaybackError": "Playback Error", + "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", + "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", + "MessagePlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", + "HeaderSelectAudio": "Select Audio", + "HeaderSelectSubtitles": "Select Subtitles", + "ButtonMarkForRemoval": "Remove from device", + "ButtonUnmarkForRemoval": "Cancel removal from device", + "LabelDefaultStream": "(Default)", + "LabelForcedStream": "(Forced)", + "LabelDefaultForcedStream": "(Default\/Forced)", + "LabelUnknownLanguage": "Unknown language", + "ButtonMute": "Mute", + "ButtonUnmute": "Unmute", + "ButtonPlaylist": "Playlist", + "LabelEnabled": "Enabled", + "LabelDisabled": "Disabled", + "ButtonMoreInformation": "More Information", + "LabelNoUnreadNotifications": "No unread notifications.", + "MessageInvalidUser": "Invalid username or password. Please try again.", + "HeaderLoginFailure": "Login Failure", + "RecommendationBecauseYouLike": "Because you like {0}", + "RecommendationBecauseYouWatched": "Because you watched {0}", + "RecommendationDirectedBy": "Directed by {0}", + "RecommendationStarring": "Starring {0}", + "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", + "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", + "MessageRecordingCancelled": "Recording cancelled.", + "MessageRecordingScheduled": "Recording scheduled.", + "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", + "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", + "MessageRecordingSaved": "Recording saved.", + "OptionWeekend": "Weekends", + "OptionWeekday": "Weekdays", + "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", + "LiveTvUpdateAvailable": "(Update available)", + "LabelVersionUpToDate": "Up to date!", + "ButtonResetTuner": "Reset tuner", + "HeaderResetTuner": "Reset Tuner", + "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", + "ButtonCancelSeries": "Cancel Series", + "HeaderSeriesRecordings": "Series Recordings", + "LabelAnytime": "Any time", + "StatusRecording": "Recording", + "StatusWatching": "Watching", + "StatusRecordingProgram": "Recording {0}", + "StatusWatchingProgram": "Watching {0}", + "HeaderSplitMedia": "Split Media Apart", + "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", + "HeaderError": "Error", + "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", + "HeaderLibraryFolders": "Media Folders", + "HeaderFavoriteMovies": "Favorite Movies", + "HeaderFavoriteShows": "Favorite Shows", + "HeaderFavoriteEpisodes": "Favorite Episodes", + "HeaderFavoriteGames": "Favorite Games", + "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", + "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", + "HeaderSelectServerCachePath": "Select Server Cache Path", + "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", + "HeaderSelectMetadataPath": "Select Metadata Path", + "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", + "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", + "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", + "HeaderFavoriteAlbums": "Favorite Albums", + "HeaderLatestChannelMedia": "Latest Channel Items", + "ButtonOrganizeFile": "Organize File", + "ButtonDeleteFile": "Delete File", + "HeaderOrganizeFile": "Organize File", + "HeaderDeleteFile": "Delete File", + "StatusSkipped": "Skipped", + "StatusFailed": "Failed", + "StatusSuccess": "Success", + "MessageFileWillBeDeleted": "The following file will be deleted:", + "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", + "MessageDuplicatesWillBeDeleted": "In addition the following duplicates will be deleted:", + "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", + "MessageDestinationTo": "to:", + "HeaderSelectWatchFolder": "Select Watch Folder", + "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", + "OrganizePatternResult": "Result: {0}", + "AutoOrganizeError": "Error Organizing File", + "FileOrganizeManually": "Organize File", + "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", + "HeaderRestart": "Restart", + "HeaderShutdown": "Shutdown", + "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", + "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", + "ValueItemCount": "{0} item", + "ValueItemCountPlural": "{0} items", + "NewVersionOfSomethingAvailable": "A new version of {0} is available!", + "VersionXIsAvailableForDownload": "Version {0} is now available for download.", + "LabelVersionNumber": "Version {0}", + "LabelPlayMethodTranscoding": "Transcoding", + "LabelPlayMethodDirectStream": "Direct Streaming", + "LabelPlayMethodDirectPlay": "Direct Playing", + "LabelAudioCodec": "Audio: {0}", + "LabelVideoCodec": "Video: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", + "LabelRunningOnPort": "Running on http port {0}.", + "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", + "HeaderLatestFromChannel": "Latest from {0}", + "ButtonRemoteControl": "Remote Control", + "HeaderLatestTvRecordings": "Latest Recordings", + "LabelCurrentPath": "Current path:", + "HeaderSelectMediaPath": "Select Media Path", + "HeaderSelectPath": "Select Path", + "ButtonNetwork": "Network", + "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", + "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", + "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Emby system user at least read access to your storage locations.", + "HeaderMenu": "Menu", + "ButtonOpen": "Open", + "ButtonShuffle": "Shuffle", + "ButtonResume": "Resume", + "HeaderAudioTracks": "Audio Tracks", + "HeaderLibraries": "Libraries", + "HeaderVideoQuality": "Video Quality", + "MessageErrorPlayingVideo": "There was an error playing the video.", + "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", + "ButtonDashboard": "Dashboard", + "ButtonReports": "Reports", + "MetadataManager": "Metadata Manager", + "HeaderTime": "Time", + "LabelAddedOnDate": "Added {0}", + "ButtonStart": "Start", + "OptionBlockOthers": "Others", + "OptionBlockTvShows": "TV Shows", + "OptionBlockTrailers": "Trailers", + "OptionBlockMusic": "Music", + "OptionBlockMovies": "Movies", + "OptionBlockBooks": "Books", + "OptionBlockGames": "Games", + "OptionBlockLiveTvPrograms": "Live TV Programs", + "OptionBlockLiveTvChannels": "Live TV Channels", + "OptionBlockChannelContent": "Internet Channel Content", + "ButtonRevoke": "Revoke", + "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", + "HeaderConfirmRevokeApiKey": "Revoke Api Key", + "ValueContainer": "Container: {0}", + "ValueAudioCodec": "Audio Codec: {0}", + "ValueVideoCodec": "Video Codec: {0}", + "ValueCodec": "Codec: {0}", + "ValueConditions": "Conditions: {0}", + "LabelAll": "All", + "HeaderDeleteImage": "Delete Image", + "MessageFileNotFound": "File not found.", + "MessageFileReadError": "An error occurred reading this file.", + "ButtonNextPage": "Next Page", + "ButtonPreviousPage": "Previous Page", + "ButtonMoveLeft": "Move left", + "ButtonMoveRight": "Move right", + "ButtonBrowseOnlineImages": "Browse online images", + "HeaderDeleteItem": "Delete Item", + "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", + "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", + "MessageItemSaved": "Item saved.", + "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", + "OptionOff": "Off", + "OptionOn": "On", + "ButtonUninstall": "Uninstall", + "HeaderEnabledFields": "Enabled Fields", + "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", + "HeaderLiveTV": "Live TV", + "MissingPrimaryImage": "Missing primary image.", + "MissingBackdropImage": "Missing backdrop image.", + "MissingLogoImage": "Missing logo image.", + "MissingEpisode": "Missing episode.", + "OptionBackdrops": "Backdrops", + "OptionImages": "Images", + "OptionKeywords": "Keywords", + "OptionTags": "Tags", + "OptionStudios": "Studios", + "OptionName": "Name", + "OptionOverview": "Overview", + "OptionGenres": "Genres", + "OptionPeople": "People", + "OptionProductionLocations": "Production Locations", + "OptionBirthLocation": "Birth Location", + "HeaderChangeFolderType": "Change Content Type", + "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", + "HeaderAlert": "Alert", + "MessagePleaseRestart": "Please restart to finish updating.", + "ButtonHide": "Hide", + "MessageSettingsSaved": "Settings saved.", + "TabLibrary": "Library", + "TabDLNA": "DLNA", + "TabLiveTV": "Live TV", + "TabAutoOrganize": "Auto-Organize", + "TabPlugins": "Plugins", + "TabHelp": "Help", + "ButtonFullscreen": "Fullscreen", + "ButtonAudioTracks": "Audio Tracks", + "ButtonQuality": "Quality", + "HeaderNotifications": "Notifications", + "HeaderSelectPlayer": "Select Player", + "HeaderVideoError": "Video Error", + "ButtonViewSeriesRecording": "View series recording", + "HeaderSpecials": "Specials", + "HeaderTrailers": "Trailers", + "HeaderResolution": "Resolution", + "HeaderRuntime": "Runtime", + "HeaderParentalRating": "Parental rating", + "HeaderReleaseDate": "Release date", + "HeaderSeries": "Series", + "HeaderSeason": "Season", + "HeaderSeasonNumber": "Season number", + "HeaderNetwork": "Network", + "HeaderYear": "Year", + "HeaderGameSystem": "Game system", + "HeaderEmbeddedImage": "Embedded image", + "HeaderTrack": "Track", + "OptionCollections": "Collections", + "OptionSeries": "Series", + "OptionSeasons": "Seasons", + "OptionGames": "Games", + "OptionGameSystems": "Game systems", + "OptionMusicArtists": "Music artists", + "OptionMusicAlbums": "Music albums", + "OptionMusicVideos": "Music videos", + "OptionSongs": "Songs", + "OptionHomeVideos": "Home videos & photos", + "OptionBooks": "Books", + "ButtonUp": "Up", + "ButtonDown": "Down", + "LabelMetadataReaders": "Metadata readers:", + "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", + "LabelMetadataDownloaders": "Metadata downloaders:", + "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", + "LabelMetadataSavers": "Metadata savers:", + "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", + "LabelImageFetchers": "Image fetchers:", + "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", + "LabelDynamicExternalId": "{0} Id:", + "PersonTypePerson": "Person", + "OptionSortName": "Sort name", + "LabelDateOfBirth": "Date of birth:", + "LabelDeathDate": "Death date:", + "HeaderRemoveMediaLocation": "Remove Media Location", + "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", + "LabelNewName": "New name:", + "HeaderRemoveMediaFolder": "Remove Media Folder", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", + "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", + "ButtonRename": "Rename", + "ButtonChangeContentType": "Change content type", + "HeaderMediaLocations": "Media Locations", + "LabelContentTypeValue": "Content type: {0}", + "FolderTypeUnset": "Unset (mixed content)", + "BirthPlaceValue": "Birth place: {0}", + "DeathDateValue": "Died: {0}", + "BirthDateValue": "Born: {0}", + "HeaderLatestReviews": "Latest Reviews", + "HeaderPluginInstallation": "Plugin Installation", + "MessageAlreadyInstalled": "This version is already installed.", + "ValueReviewCount": "{0} Reviews", + "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", + "MessageTrialExpired": "The trial period for this feature has expired", + "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", + "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", + "ValuePriceUSD": "Price: {0} (USD)", + "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", + "HeaderEmbyAccountAdded": "Emby Account Added", + "MessageEmbyAccountAdded": "The Emby account has been added to this user.", + "MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", + "HeaderEmbyAccountRemoved": "Emby Account Removed", + "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", + "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", + "HeaderUnrated": "Unrated", + "ValueDiscNumber": "Disc {0}", + "HeaderUnknownDate": "Unknown Date", + "HeaderUnknownYear": "Unknown Year", + "ValueMinutes": "{0} min", + "HeaderSelectExternalPlayer": "Select External Player", + "HeaderExternalPlayerPlayback": "External Player Playback", + "ButtonImDone": "I'm Done", + "OptionWatched": "Watched", + "OptionUnwatched": "Unwatched", + "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", + "LabelMarkAs": "Mark as:", + "OptionInProgress": "In-Progress", + "LabelResumePoint": "Resume point:", + "ValueOneMovie": "1 movie", + "ValueMovieCount": "{0} movies", + "ValueOneTrailer": "1 trailer", + "ValueTrailerCount": "{0} trailers", + "ValueOneSeries": "1 series", + "ValueSeriesCount": "{0} series", + "ValueOneEpisode": "1 episode", + "ValueEpisodeCount": "{0} episodes", + "ValueOneGame": "1 game", + "ValueGameCount": "{0} games", + "ValueOneAlbum": "1 album", + "ValueAlbumCount": "{0} albums", + "ValueOneSong": "1 song", + "ValueSongCount": "{0} songs", + "ValueOneMusicVideo": "1 music video", + "ValueMusicVideoCount": "{0} music videos", + "HeaderOffline": "Offline", + "HeaderUnaired": "Unaired", + "HeaderMissing": "Missing", + "ButtonWebsite": "Website", + "ValueSeriesYearToPresent": "{0} - Present", + "ValueAwards": "Awards: {0}", + "ValuePremiered": "Premiered {0}", + "ValuePremieres": "Premieres {0}", + "ValueStudio": "Studio: {0}", + "ValueStudios": "Studios: {0}", + "ValueStatus": "Status: {0}", + "LabelLimit": "Limit:", + "ValueLinks": "Links: {0}", + "HeaderCastAndCrew": "Cast & Crew", + "ValueArtist": "Artist: {0}", + "ValueArtists": "Artists: {0}", + "MediaInfoCameraMake": "Camera make", + "MediaInfoCameraModel": "Camera model", + "MediaInfoAltitude": "Altitude", + "MediaInfoAperture": "Aperture", + "MediaInfoExposureTime": "Exposure time", + "MediaInfoFocalLength": "Focal length", + "MediaInfoOrientation": "Orientation", + "MediaInfoIsoSpeedRating": "Iso speed rating", + "MediaInfoLatitude": "Latitude", + "MediaInfoLongitude": "Longitude", + "MediaInfoShutterSpeed": "Shutter speed", + "MediaInfoSoftware": "Software", + "HeaderMoreLikeThis": "Daugiau pana\u0161i\u0173", + "HeaderMovies": "Movies", + "HeaderAlbums": "Albums", + "HeaderGames": "Games", + "HeaderBooks": "Books", + "HeaderEpisodes": "Episodes", + "HeaderSeasons": "Seasons", + "HeaderTracks": "Tracks", + "HeaderItems": "Items", + "HeaderOtherItems": "Other Items", + "ButtonFullReview": "Full review", + "ValueAsRole": "as {0}", + "ValueGuestStar": "Guest star", + "MediaInfoSize": "Size", + "MediaInfoPath": "Path", + "MediaInfoFile": "File", + "MediaInfoFormat": "Format", + "MediaInfoContainer": "Container", + "MediaInfoDefault": "Default", + "MediaInfoForced": "Forced", + "MediaInfoExternal": "External", + "MediaInfoTimestamp": "Timestamp", + "MediaInfoPixelFormat": "Pixel format", + "MediaInfoBitDepth": "Bit depth", + "MediaInfoSampleRate": "Sample rate", + "MediaInfoBitrate": "Bitrate", + "MediaInfoChannels": "Channels", + "MediaInfoLayout": "Layout", + "MediaInfoLanguage": "Language", + "MediaInfoCodec": "Codec", + "MediaInfoCodecTag": "Codec tag", + "MediaInfoProfile": "Profile", + "MediaInfoLevel": "Level", + "MediaInfoAspectRatio": "Aspect ratio", + "MediaInfoResolution": "Resolution", + "MediaInfoAnamorphic": "Anamorphic", + "MediaInfoInterlaced": "Interlaced", + "MediaInfoFramerate": "Framerate", + "MediaInfoStreamTypeAudio": "Audio", + "MediaInfoStreamTypeData": "Data", + "MediaInfoStreamTypeVideo": "Video", + "MediaInfoStreamTypeSubtitle": "Subtitle", + "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", + "MediaInfoRefFrames": "Ref frames", + "TabExpert": "Expert", + "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", + "HeaderThankYou": "Thank You", + "LabelFullReview": "Full review:", + "ReleaseYearValue": "Release year: {0}", + "OriginalAirDateValue": "Original air date: {0}", + "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", + "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", + "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", + "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", + "WebClientTourMetadataManager": "Click edit to open the metadata manager", + "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", + "WebClientTourCollections": "Create movie collections to group box sets together", + "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", + "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", + "WebClientTourUserPreferences3": "Design the web client home page to your liking", + "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", + "WebClientTourMobile1": "The web client works great on smartphones and tablets...", + "WebClientTourMobile2": "and easily controls other devices and Emby apps", + "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", + "MessageEnjoyYourStay": "Enjoy your stay", + "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", + "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", + "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", + "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", + "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", + "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", + "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", + "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", + "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", + "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", + "TabExtras": "Extras", + "HeaderUploadImage": "Upload Image", + "DeviceLastUsedByUserName": "Last used by {0}", + "HeaderDeleteDevice": "Delete Device", + "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", + "LabelEnableCameraUploadFor": "Enable camera upload for:", + "HeaderSelectUploadPath": "Select Upload Path", + "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", + "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", + "ButtonLibraryAccess": "Library access", + "ButtonParentalControl": "Parental control", + "HeaderInvitationSent": "Invitation Sent", + "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", + "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", + "HeaderConnectionFailure": "Connection Failure", + "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", + "ButtonSelectServer": "Select Server", + "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", + "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", + "DefaultErrorMessage": "There was an error processing the request. Please try again later.", + "ButtonAccept": "Accept", + "ButtonReject": "Reject", + "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", + "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", + "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", + "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", + "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", + "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", + "ButtonLinkMyEmbyAccount": "Link my account now", + "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", + "SyncMedia": "Sync Media", + "HeaderCancelSyncJob": "Cancel Sync", + "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", + "LabelQuality": "Quality:", + "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", + "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", + "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", + "SyncJobItemStatusQueued": "Queued", + "SyncJobItemStatusConverting": "Converting", + "SyncJobItemStatusTransferring": "Transferring", + "SyncJobItemStatusSynced": "Synced", + "SyncJobItemStatusFailed": "Failed", + "SyncJobItemStatusRemovedFromDevice": "Removed from device", + "SyncJobItemStatusCancelled": "Cancelled", + "LabelProfile": "Profile:", + "LabelBitrateMbps": "Bitrate (Mbps):", + "EmbyIntroDownloadMessage": "To download and install the free Emby Server visit {0}.", + "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.", + "ButtonNewServer": "New Server", + "MyDevice": "My Device", + "ButtonRemote": "Remote", + "TabCast": "Cast", + "TabScenes": "Scenes", + "HeaderUnlockApp": "Unlock App", + "HeaderUnlockSync": "Unlock Emby Sync", + "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", + "OptionEnableFullscreen": "Enable Fullscreen", + "ButtonServer": "Server", + "HeaderLibrary": "Library", + "HeaderMedia": "Media", + "NoResultsFound": "No results found.", + "ButtonManageServer": "Manage Server", + "ButtonPreferences": "Preferences", + "ButtonViewArtist": "View artist", + "ButtonViewAlbum": "View album", + "ButtonEditImages": "Edit images", + "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", + "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", + "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", + "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", + "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "ButtonShare": "Share", + "HeaderConfirm": "Confirm", + "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", + "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", + "HeaderDeleteProvider": "Delete Provider", + "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", + "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", + "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", + "MessageCreateAccountAt": "Create an account at {0}", + "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", + "HeaderTryEmbyPremiere": "Try Emby Premiere", + "OptionEnableDisplayMirroring": "Enable display mirroring", + "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", + "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", + "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", + "LabelLocalSyncStatusValue": "Status: {0}", + "MessageSyncStarted": "Sync started", + "OptionBackdropSlideshow": "Backdrop slideshow", + "HeaderTopPlugins": "Top Plugins", + "ButtonOther": "Other", + "HeaderSortBy": "Sort By", + "HeaderSortOrder": "Sort Order", + "ButtonDisconnect": "Disconnect", + "ButtonMenu": "Menu", + "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", + "ButtonGuide": "Guide", + "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", + "ButtonYes": "Yes", + "AddUser": "Add User", + "ButtonNo": "No", + "ButtonNowPlaying": "Now Playing", + "HeaderLatestMovies": "Latest Movies", + "HeaderEmailAddress": "E-Mail Address", + "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", + "TermsOfUse": "Terms of use", + "NumLocationsValue": "{0} folders", + "ButtonAddMediaLibrary": "Add Media Library", + "ButtonManageFolders": "Manage folders", + "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", + "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", + "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", + "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.", + "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", + "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", + "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "HeaderFavoriteArtists": "Favorite Artists", + "HeaderFavoriteSongs": "Favorite Songs", + "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", + "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", + "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", + "HeaderMobileSync": "Mobile Sync", + "HeaderCloudSync": "Cloud Sync", + "HeaderFreeApps": "Free Emby Apps", + "CoverArt": "Cover Art", + "ButtonOff": "Off", + "TitleHardwareAcceleration": "Hardware Acceleration", + "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", + "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", + "ValueExample": "Example: {0}", + "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", + "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", + "LabelFileOrUrl": "File or url:", + "OptionEnableForAllTuners": "Enable for all tuner devices", + "HeaderTuners": "Tuners", + "LabelOptionalM3uUrl": "M3U url (optional):", + "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", + "TabResumeSettings": "Resume Settings", + "DrmChannelsNotImported": "Channels with DRM will not be imported.", + "LabelAllowHWTranscoding": "Allow hardware transcoding", + "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", + "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", + "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.", + "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.", + "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", + "Yesterday": "Yesterday", + "DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", + "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", + "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", + "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", + "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", + "HeaderHealthMonitor": "Health Monitor", + "HealthMonitorNoAlerts": "There are no active alerts.", + "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", + "VisualLoginFormHelp": "Select a user or sign in manually", + "LabelSportsCategories": "Sports categories:", + "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", + "LabelNewsCategories": "News categories:", + "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", + "LabelKidsCategories": "Children's categories:", + "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", + "LabelMovieCategories": "Movie categories:", + "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", + "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", + "LabelBindToLocalNetworkAddress": "Bind to local network address:", + "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", + "TitleHostingSettings": "Hosting Settings", + "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", + "MapChannels": "Map Channels", + "LabelffmpegPath": "FFmpeg path:", + "LabelffmpegVersion": "FFmpeg version:", + "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", + "SetupFFmpeg": "Setup FFmpeg", + "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", + "EnterFFmpegLocation": "Enter FFmpeg path", + "DownloadFFmpeg": "Download FFmpeg", + "FFmpegSuggestedDownload": "Suggested download: {0}", + "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", + "OptionUseSystemInstalledVersion": "Use system installed version", + "OptionUseMyCustomVersion": "Use a custom version", + "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", + "XmlTvPremiere": "By default, Emby will import {0} hours of guide data. Importing unlimited data requires an active Emby Premiere subscription.", + "MoreFromValue": "More from {0}", + "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", + "EnablePhotos": "Enable photos", + "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", + "MakeAvailableOffline": "Make available offline", + "ConfirmRemoveDownload": "Remove download?", + "RemoveDownload": "Remove download", + "SyncToOtherDevices": "Sync to other devices", + "ManageOfflineDownloads": "Manage offline downloads", + "MessageDownloadScheduled": "Download scheduled", + "RememberMe": "Remember me", + "HeaderOfflineSync": "Offline Sync", + "LabelMaxAudioFileBitrate": "Max audio file bitrate:", + "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", + "LabelVaapiDevice": "VA API Device:", + "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", + "HowToConnectFromEmbyApps": "How to Connect from Emby apps", + "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", + "OptionExtractChapterImage": "Enable chapter image extraction", + "Downloads": "Downloads", + "LabelEnableDebugLogging": "Enable debug logging", + "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", + "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", + "LabelH264EncodingPreset": "H264 encoding preset:", + "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", + "LabelH264Crf": "H264 encoding CRF:", + "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", + "Sports": "Sports", + "HeaderForKids": "For Kids", + "HeaderRecordingGroups": "Recording Groups", + "LabelConvertRecordingsTo": "Convert recordings to:", + "HeaderUpcomingOnTV": "Upcoming On TV", + "LabelOptionalNetworkPath": "(Optional) Shared network folder:", + "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", + "ButtonPlayExternalPlayer": "Play with external player", + "NotScheduledToRecord": "Not scheduled to record", + "SynologyUpdateInstructions": "\u012esijunkite \u012f DSM ir eikite \u012f Paket\u0173 centr\u0105 atnaujinimui.", + "LatestFromLibrary": "V\u0117liausi {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." +} \ No newline at end of file diff --git a/dashboard-ui/strings/ms.json b/dashboard-ui/strings/ms.json index 68ed6cb8f1..82663ef54b 100644 --- a/dashboard-ui/strings/ms.json +++ b/dashboard-ui/strings/ms.json @@ -1,8 +1,6 @@ { - "LabelExit": "Tutup", - "LabelApiDocumentation": "Api Documentation", - "LabelBrowseLibrary": "Imbas Pengumpulan", - "LabelConfigureServer": "Configure Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Sebelumnya", "LabelFinish": "Habis", "LabelNext": "Seterusnya", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Your first name:", "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Configure settings", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organize", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Cancel", "ButtonExit": "Exit", "ButtonNew": "New", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", "LabelCountry": "Country:", "LabelLanguage": "Language:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", "TabPassword": "Password", "TabLibraryAccess": "Library Access", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Episodes", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Seting Disimpan", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Para Pengguna", "Delete": "Padam", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Tambah Pengguna", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/nb.json b/dashboard-ui/strings/nb.json index 787c64fd91..c4ca416ff4 100644 --- a/dashboard-ui/strings/nb.json +++ b/dashboard-ui/strings/nb.json @@ -1,8 +1,6 @@ { - "LabelExit": "Avslutt", - "LabelApiDocumentation": "API-dokumentasjon", - "LabelBrowseLibrary": "Browse biblioteket", - "LabelConfigureServer": "Konfigurer Emby", + "OptionAutomaticallyGroupSeriesHelp": "Hvis aktivert, vil serien som er spredt over flere mapper innenfor dette biblioteket sp\u00f8r automatisk sl\u00e5tt sammen til en enkelt serie.", + "OptionAutomaticallyGroupSeries": "Fusjoner automatisk serier som er spredt ut over flere mapper", "LabelPrevious": "Forrige", "LabelFinish": "Ferdig", "LabelNext": "Neste", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Ditt fornavn:", "MoreUsersCanBeAddedLater": "Du kan legge til flere brukere senere via Dashbord", "UserProfilesIntro": "Emby har innebygd st\u00f8tte for brukerprofiler, slik at hver bruker har sine egne skjerminnstillinger, avspillingstatus og foreldrekontroll.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "En Windows Service har blitt installert", - "WindowsServiceIntro1": "Emby Server kj\u00f8rer normalt som en desktop applikasjon med ikon i systemstatusfeltet nede til venstre, men hvis du foretrekker \u00e5 kj\u00f8re det som en bakgrunnstjeneste, kan det i stedet startes fra Windows Services i kontrollpanelet.", - "WindowsServiceIntro2": "Hvis du bruker windows services, vennligst legg merke til at det ikke kan kj\u00f8rer samtidig som applikasjonen med ikon i systemstatusfeltet. Windows Service m\u00e5 ogs\u00e5 konfigureres med administrator rettigheter via kontrollpanel. N\u00e5r du kj\u00f8rer som tjeneste m\u00e5 du passe p\u00e5 at tjenste-brukeren har tilgang til mediamappene dine.", "WizardCompleted": "Det er alt vi trenger for n\u00e5. Emby har begynt \u00e5 samle informasjon om mediebiblioteket. Sjekk ut noen av v\u00e5re apper, og klikk deretter Fullf\u00f8r <\/b> for \u00e5 se Server Dashboard<\/b>.", "LabelConfigureSettings": "Konfigurer innstillinger", - "LabelEnableAutomaticPortMapping": "Sl\u00e5 p\u00e5 automatisk port-mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP tillater automatisert router-konfigurasjon for enkel ekstern tilgang. Denne funksjonen st\u00f8ttes ikke av alle routere.", "HeaderTermsOfService": "Emby vilk\u00e5r for bruk.", "MessagePleaseAcceptTermsOfService": "Vennligst aksepter v\u00e5re servicevilk\u00e5r og personvernpolicy f\u00f8r du fortsetter.", "OptionIAcceptTermsOfService": "Jeg aksepterer servicevilk\u00e5rene", "ButtonPrivacyPolicy": "Personvernpolicy", "ButtonTermsOfService": "Servicevilk\u00e5r", - "HeaderDeveloperOptions": "Utvikler-innstillinger", - "OptionEnableWebClientResponseCache": "Aktiver web respons caching", - "OptionDisableForDevelopmentHelp": "Konfigurer disse etter behov for web utviklingsform\u00e5l.", - "OptionEnableWebClientResourceMinification": "Aktiver nettressursen minifisering", - "LabelDashboardSourcePath": "Webklient kildesti:", - "LabelDashboardSourcePathHelp": "Hvis serveren kj\u00f8rer fra kildekode, angi sti til mappe for dashboard-ui. Alle filer for webklienten kommer fra denne mappen.", "ButtonConvertMedia": "Konverter media", "ButtonOrganize": "Organiser", "HeaderSupporterBenefits": "Fordeler med Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "For \u00e5 legge til en bruker som ikke er oppf\u00f8rt, m\u00e5 du f\u00f8rst koble sin konto til Emby Connect fra deres brukerprofilside.", "LabelPinCode": "Pin kode:", "OptionHideWatchedContentFromLatestMedia": "Skjul sett innhold fra siste media.", + "DeleteMedia": "Slett media", "HeaderSync": "Synk.", "ButtonOk": "Ok", "ButtonCancel": "Avbryt", "ButtonExit": "Avslutt", "ButtonNew": "Ny", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Oppgave Triggers", "HeaderTV": "TV", "HeaderAudio": "Lyd", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Oppgi din enkle PIN-kode for \u00e5 f\u00e5 tilgang", "ButtonConfigurePinCode": "Konfigurer PIN-kode", "RegisterWithPayPal": "Registrer med PayPal", - "HeaderEnjoyDayTrial": "Hygg deg med en 14-dagers gratis pr\u00f8veperiode", "LabelSyncTempPath": "Midlertidig fil-sti:", "LabelSyncTempPathHelp": "Spesifiser din egen synk-mappe. Konverterte mediefiler opprettet ved synkronisering vil lagres her.", "LabelCustomCertificatePath": "Sti for eget sertifikat:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Hvis aktivert blir .rar- og .zipfiler behandlet som mediafiler.", "LabelEnterConnectUserName": "Brukernavn eller epostadresse:", "LabelEnterConnectUserNameHelp": "Dette er ditt Emby online brukernavn eller epost.", - "LabelEnableEnhancedMovies": "Aktiver forbedrede filmvisning", - "LabelEnableEnhancedMoviesHelp": "N\u00e5r den er aktivert, vil filmene bli vist som mapper for \u00e5 inkludere trailere, statister, cast og crew, og annet relatert innhold.", "HeaderSyncJobInfo": "Synk.jobb", "FolderTypeMixed": "Blandet innhold", "FolderTypeMovies": "Filmer", @@ -84,7 +70,6 @@ "LabelContentType": "Innholdstype:", "TitleScheduledTasks": "Planlagt oppgaver", "HeaderSetupLibrary": "Sett opp dine media bibliotek", - "ButtonAddMediaFolder": "Legg til media-mappe", "LabelFolderType": "Mappetype", "LabelCountry": "Land:", "LabelLanguage": "Spr\u00e5k:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Lagring av artwork og metadata direkte gjennom mediemapper vil legge dem et sted hvor de lett kan editeres.", "LabelDownloadInternetMetadata": "Last ned cover og metadata fra internett", "LabelDownloadInternetMetadataHelp": "Emby Server kan laste ned informasjon om mediene for \u00e5 aktivere rike presentasjoner.", - "TabPreferences": "Preferanser", "TabPassword": "Passord", "TabLibraryAccess": "Bibliotektilgang", "TabAccess": "Tilgang", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Gi tilgang til alle bibliotek", "DeviceAccessHelp": "Dette gjelder bare for enheter som som kan unikt identifiseres og vil ikke forindre tilgang fra nettleser. Filtrering av brukerens enhet vil forhindre dem fra \u00e5 bruke nye enheter inntil de har blitt godkjent her.", "LabelDisplayMissingEpisodesWithinSeasons": "Vis episoder som mangler fra sesongen", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Denne m\u00e5 ogs\u00e5 v\u00e6re aktivert for TV biblioteker i Emby Server oppsett.", "LabelUnairedMissingEpisodesWithinSeasons": "Vis episoder som enn\u00e5 ikke har blitt sendt", + "ImportMissingEpisodesHelp": "Hvis aktivert, vil informasjon om manglende episoder importeres inn i databasen og Emby vises i \u00e5rstider og serier. Dette kan f\u00f8re til betydelig lengre bibliotek skanninger.", "HeaderVideoPlaybackSettings": "Innstillinger for video-avspilling", + "OptionDownloadInternetMetadataTvPrograms": "Last ned internett metadata for programmer i guiden.", "HeaderPlaybackSettings": "Avspillingsinnstillinger", "LabelAudioLanguagePreference": "Foretrukket lydspor:", "LabelSubtitleLanguagePreference": "Foretrukket undertekst:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 sideforhold anbefales. Kun JPG\/PNG.", "MessageNothingHere": "Ingeting her.", "MessagePleaseEnsureInternetMetadata": "P\u00e5se at nedlasting av internet-metadata er sl\u00e5tt p\u00e5.", - "TabSuggested": "Forslag", + "AlreadyPaidHelp1": "Hvis du allerede har betalt for \u00e5 installere en eldre versjon av Media Browser for Android, trenger du ikke \u00e5 betale p\u00e5 nytt for \u00e5 aktivere dette programmet. Klikk OK for \u00e5 sende oss en e-post p\u00e5 {0}, og vi vil f\u00e5 det aktivert for deg.", + "AlreadyPaidHelp2": "Har du Emby Premiere. Da kan du avbryte denne dialogen. Logg inn p\u00e5 web-klinten Hjelp -> Emby Premiere og tast inn din Premier n\u00f8kkel for \u00e5 lose opp disse funksjonene.", "TabSuggestions": "Forslag", "TabLatest": "Siste", "TabUpcoming": "Kommer", "TabShows": "Show", "TabEpisodes": "Episoder", "TabGenres": "Sjangre", - "TabPeople": "Folk", "TabNetworks": "Nettverk", "HeaderUsers": "Brukere", "HeaderFilters": "Filtre", @@ -166,6 +153,7 @@ "OptionWriters": "Manus", "OptionProducers": "Produsent", "HeaderResume": "Fortsette", + "HeaderContinueWatching": "Forsett", "HeaderNextUp": "Neste", "NoNextUpItemsMessage": "Ingen funnet. Begyn \u00e5 se det du har", "HeaderLatestEpisodes": "Siste episoder", @@ -185,6 +173,7 @@ "OptionPlayCount": "Antall avspillinger", "OptionDatePlayed": "Dato spilt", "OptionDateAdded": "Dato lagt til", + "DateAddedValue": "Dato tilf\u00f8rt: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video bitrate", "OptionResumable": "Kan fortsettes", "ScheduledTasksHelp": "Klikk p\u00e5 en oppgave for \u00e5 tilpasse tidsplan", - "ScheduledTasksTitle": "Planlagte Oppgaver", "TabMyPlugins": "Mine programtillegg", "TabCatalog": "Katalog", "TitlePlugins": "Programtillegg", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Siste l\u00e5ter", "HeaderRecentlyPlayed": "Nylig avspilt", "HeaderFrequentlyPlayed": "Ofte avspilt", - "DevBuildWarning": "Dev builds er \u00e5 anses som ustabile. Disse har ikke blitt testet. Dette vil kunne medf\u00f8re til at applikasjonen kan krasje og komplette funksjoner ikke fungerer.", "LabelVideoType": "Video-type:", "OptionBluray": "Bluray", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Praktisk for private eller skjulte administratorer. Brukeren vil m\u00e5tte logge inn manuelt ved \u00e5 skrive inn brukernavn og passord.", "OptionDisableUser": "Deaktiver denne brukeren", "OptionDisableUserHelp": "Hvis avsl\u00e5tt vil ikke serveren godta noen forbindelser fra denne brukeren. Eksisterende forbindelser vil avsluttes umiddelbart.", - "HeaderAdvancedControl": "Avansert Kontroll", "LabelName": "Navn", "ButtonHelp": "Hjelp", "OptionAllowUserToManageServer": "TIllatt denne brukeren \u00e5 administrere serveren", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheter betraktes som delte inntil en bruker begynner \u00e5 styre dem.", "OptionAllowLinkSharing": "Tillat deling p\u00e5 sosiale media", "OptionAllowLinkSharingHelp": "Bare websider som inneholder medieinformasjon blir delt . Mediefiler blir aldri delt offentlig. Delt innhold er tidsbegrenset og utl\u00f8per etter {0} dager.", - "HeaderSharing": "Deler", "HeaderRemoteControl": "Fjernstyring", "OptionMissingTmdbId": "Mangler Tmdb ID", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Stier", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Avansert", "OptionRelease": "Offisiell utgivelse", - "OptionBeta": "Beta", - "OptionDev": "Dev (Ustabil)", "LabelAllowServerAutoRestart": "Tillat at serveren restartes automatisk for \u00e5 gjennomf\u00f8re oppdateringer", "LabelAllowServerAutoRestartHelp": "Serveren vil kun restartes i inaktive perioder, n\u00e5r ingen brukere er aktive.", "LabelRunServerAtStartup": "Start server ved maskin-oppstart", @@ -330,11 +312,9 @@ "TabGames": "Spill", "TabMusic": "Musikk", "TabOthers": "Andre", - "HeaderExtractChapterImagesFor": "Pakk ut kapittelbilder for:", "OptionMovies": "Filmer", "OptionEpisodes": "Episoder", "OptionOtherVideos": "Andre Videoer", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personlig API-n\u00f8kkel:", "LabelFanartApiKeyHelp": "Foresp\u00f8rsler for fanart uten personlig API-n\u00f8kkel vil gi resultater som ble godkjent for over 7 dager siden. Med en personlig API-n\u00f8kkel synker dette til 48 timer, og med et fanart VIP-medlemskap synker det ytterliger til ca. 10 minutter.", "ExtractChapterImagesHelp": "Ved \u00e5 hente ut kapittelbilder kan klientene vise grafiske menyer for valg av sccene. Denne prosessen kan v\u00e6re treg, CPU-intensiv og krever flerfoldige gigabytes med plass. Prosessen kj\u00f8res n\u00e5r videoer scannes, og kan ogs\u00e5 kj\u00f8res om natten. Dette er konfigurerbart under Planlagte Aktiviteter. Det er ikke anbefalt \u00e5 kj\u00f8re dette mens serveren er i bruk til visning av media.", @@ -350,15 +330,15 @@ "TabCollections": "Samlinger", "HeaderChannels": "Kanaler", "TabRecordings": "Opptak", - "TabScheduled": "Planlagt", "TabSeries": "Serier", "TabFavorites": "Favoritter", "TabMyLibrary": "Mitt Bibliotek", "ButtonCancelRecording": "Avbryt Opptak", - "LabelPrePaddingMinutes": "Margin f\u00f8r programstart i minutter:", - "LabelPostPaddingMinutes": "Margin etter programslutt i minutter:", + "LabelStartWhenPossible": "Start n\u00e5r mulig:", + "LabelStopWhenPossible": "Avslutt n\u00e5r mulig:", + "MinutesBefore": "minutter f\u00f8r", + "MinutesAfter": "minutter etter", "HeaderWhatsOnTV": "Hva er p\u00e5", - "TabStatus": "Status", "TabSettings": "Innstillinger", "ButtonRefreshGuideData": "Oppdater Guide Data", "ButtonRefresh": "Oppdater", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Ta opptak p\u00e5 alle kanaler", "OptionRecordAnytime": "Ta opptak n\u00e5r som helst", "OptionRecordOnlyNewEpisodes": "Ta opptak kun av nye episoder", - "HeaderRepeatingOptions": "Gjenta alternativer", "HeaderDays": "Dager", "HeaderActiveRecordings": "Aktive opptak", "HeaderLatestRecordings": "Siste opptak", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Siste Spill", "HeaderRecentlyPlayedGames": "Nylig Spilte Spill", "TabGameSystems": "Spill Systemer", - "TitleMediaLibrary": "Media-bibliotek", "TabFolders": "Mapper", "TabPathSubstitution": "Sti erstatter", "LabelSeasonZeroDisplayName": "Sesong 0 visningsnavn:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Splitt versjoner fra hverandre", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Mangler", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Sti erstatninger er brukt for \u00e5 koble en katalog p\u00e5 serveren til en katalog som brukeren har tilgang til. Ved \u00e5 gi brukerne direkte tilgang til media p\u00e5 serveren kan de v\u00e6re i stand til \u00e5 spille dem direkte over nettverket, og unng\u00e5 \u00e5 bruke serverens ressurser til \u00e5 streame og transcode dem.", - "HeaderFrom": "Fra", - "HeaderTo": "Til", - "LabelFrom": "Fra:", - "LabelTo": "Til:", - "LabelToHelp": "Eksempel: \\\\MinServer\\Filmer (en sti klienter har tilgang til)", - "ButtonAddPathSubstitution": "Legg til erstatter", "OptionSpecialEpisode": "Spesielle", "OptionMissingEpisode": "Mangler Episoder", "OptionUnairedEpisode": "Kommende Episoder", "OptionEpisodeSortName": "Episode Etter Navn", "OptionSeriesSortName": "Serienavn", "OptionTvdbRating": "Tvdb Rangering", - "EditCollectionItemsHelp": "Legg til eller fjern hvilken som helst film, serie, album, bok eller spill som du \u00f8nsker \u00e5 gruppere innen denne samlingen.", "HeaderAddTitles": "Legg til Titler", "LabelEnableDlnaPlayTo": "Sl\u00e5 p\u00e5 DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby kan oppdage enheter i nettverket ditt, og tilbyr muligheten til \u00e5 fjernstyre dem.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Systemprofiler", "CustomDlnaProfilesHelp": "Lag en tilpasset profil for \u00e5 sette en ny enhet til \u00e5 overstyre en system profil.", "SystemDlnaProfilesHelp": "Systemprofiler er read-only. Endinger p\u00e5 en systemprofil vil bli lagret til en ny tilpasset profil.", - "TitleDashboard": "Dashbord", "TabHome": "Hjem", "TabInfo": "Info", "HeaderLinks": "Lenker", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titler blir antatt som ikke avspilt hvis de stopper f\u00f8r denne tiden", "LabelMaxResumePercentageHelp": "Titler blir antatt som fullstendig avspilt hvis de stopper etter denne tiden", "LabelMinResumeDurationHelp": "Titler kortere enn dette kan ikke fortsettes.", - "TitleAutoOrganize": "Auto-Organisering", "TabActivityLog": "Aktivitetslog", "TabSmartMatches": "Smarte matcher", "TabSmartMatchInfo": "Administrer smarte matchsom ble lagt til ved hjelp av Auto-Organiser dialog korreksjon", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Bidra til \u00e5 sikre fortsatt utvikling av dette prosjektet ved \u00e5 kj\u00f8pe Emby Premiere. En del av alle inntektene vil bli ogs\u00e5 bidratt til andre gratisverkt\u00f8y vi er avhengige av.", "DonationNextStep": "N\u00e5r du er ferdig, kan du g\u00e5 tilbake og skriv inn Emby Premiere n\u00f8kkel, som du vil motta per e-post.", "AutoOrganizeHelp": "Auto-organisere monitorerer dine nedlastingsmapper for nye filer og flytter dem til riktig mediakatalog.", - "AutoOrganizeTvHelp": "TV organisering vil kun legge til episoder til eksisterende serier. Den vil ikke lage nye serie-mapper.", "OptionEnableEpisodeOrganization": "Aktiver organisering av ny episode", "LabelWatchFolder": "Se p\u00e5 mappe:", "LabelWatchFolderHelp": "Serveren vil hente denne mappen under 'Organiser nye mediefiler' planlagte oppgaven.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Kj\u00f8rende oppgaver", "HeaderActiveDevices": "Aktive enheter", "HeaderPendingInstallations": "Installeringer i k\u00f8", - "HeaderServerInformation": "Serverinformasjon", "ButtonRestartNow": "Restart N\u00e5", "ButtonRestart": "Restart", "ButtonShutdown": "Sl\u00e5 Av", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere n\u00f8kkel mangler eller er ugyldig", "ErrorMessageInvalidKey": "For at eventuelt premiuminnhold registreres, m\u00e5 du ogs\u00e5 ha et aktivt Emby Premiere abonnement.", "HeaderDisplaySettings": "Visnings innstillinger", - "TabPlayTo": "Spill Til", "LabelEnableDlnaServer": "Sl\u00e5 p\u00e5 Dlna server", "LabelEnableDlnaServerHelp": "Lar UPnP-enheter p\u00e5 nettverket til \u00e5 bla gjennom og spille Emby innhold.", "LabelEnableBlastAliveMessages": "Spreng levende meldinger", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Avgj\u00f8r tiden i sekunder mellom server levende meldinger.", "LabelDefaultUser": "Standard bruker:", "LabelDefaultUserHelp": "Avgj\u00f8r hvilket bruker bibliotek som skal bli vist p\u00e5 koblede enheter. Dette kan bli overskrevet for hver enhet som bruker profiler.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Serverinnstillinger", "HeaderRequireManualLogin": "Krev manuell brukernavn oppf\u00f8ring for:", "HeaderRequireManualLoginHelp": "N\u00e5r deaktiverte kan brukere vises en innloggingskjerm med et visuelt utvalg av brukere.", "OptionOtherApps": "Andre applikasjoner", "OptionMobileApps": "Mobile applikasjoner", - "HeaderNotificationList": "Klikk p\u00e5 et varsel for \u00e5 konfigurere alternativer for sendinger.", - "NotificationOptionApplicationUpdateAvailable": "Oppdatering tilgjengelig", - "NotificationOptionApplicationUpdateInstalled": "Oppdatering installert", - "NotificationOptionPluginUpdateInstalled": "Oppdatert programtillegg installert", - "NotificationOptionPluginInstalled": "Programtillegg installert", - "NotificationOptionPluginUninstalled": "Programtillegg er fjernet", - "NotificationOptionVideoPlayback": "Videoavspilling startet", - "NotificationOptionAudioPlayback": "Lydavspilling startet", - "NotificationOptionGamePlayback": "Spill startet", - "NotificationOptionVideoPlaybackStopped": "Videoavspilling stoppet", - "NotificationOptionAudioPlaybackStopped": "Lydavspilling stoppet", - "NotificationOptionGamePlaybackStopped": "Spill stoppet", - "NotificationOptionTaskFailed": "Planlagt oppgave feilet", - "NotificationOptionInstallationFailed": "Installasjon feilet", - "NotificationOptionNewLibraryContent": "Nytt innhold er lagt til", - "NotificationOptionCameraImageUploaded": "Bilde fra kamera lastet opp", - "NotificationOptionUserLockedOut": "Bruker er utestengt", - "HeaderSendNotificationHelp": "Varsler blir levert til Emby innboks. Andre alternativer kan installeres fra Tjenester kategorien .", - "NotificationOptionServerRestartRequired": "Server m\u00e5 startes p\u00e5 nytt", "LabelNotificationEnabled": "Sl\u00e5 p\u00e5 denne varslingen", "LabelMonitorUsers": "Monitorer aktivitet fra:", "LabelSendNotificationToUsers": "Send varslingen til:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Forrige", "LabelGroupMoviesIntoCollections": "Grupp\u00e9r filmer i samlinger", "LabelGroupMoviesIntoCollectionsHelp": "Ved visning av filmlister vil filmer som tilh\u00f8rer en samling bli vist som ett gruppeelement.", - "NotificationOptionPluginError": "Programtillegg feilet", "ButtonVolumeUp": "Volum opp", "ButtonVolumeDown": "Volum ned", "HeaderLatestMedia": "Siste Media", "OptionNoSubtitles": "Ingen undertekster", - "OptionSpecialFeatures": "Spesielle Funksjoner", "HeaderCollections": "Samlinger", "LabelProfileCodecsHelp": "Separert med komma. Dette feltet kan forbli tomt for \u00e5 gjelde alle codecs.", "LabelProfileContainersHelp": "Separert med komma. Dette feltet kan forbli tomt for \u00e5 gjelde alle kontainere.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Ingen tilgjengelige programtillegg.", "LabelDisplayPluginsFor": "Vis plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episodenavn", "LabelSeriesNamePlain": "Serienavn", "ValueSeriesNamePeriod": "Serier.navn", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Siste episode nummer", "HeaderTypeText": "Skriv Tekst", "LabelTypeText": "Tekst", - "HeaderSearchForSubtitles": "S\u00f8k etter undertekster", - "MessageNoSubtitleSearchResultsFound": "Ingen s\u00f8k funnet.", "TabDisplay": "Skjerm", "TabLanguages": "Spr\u00e5k", "TabAppSettings": "App-innstillinger", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Hvis p\u00e5sl\u00e5tt vil tema sanger bli avspilt i bakgrunnen mens man blar igjennom biblioteket.", "LabelEnableBackdropsHelp": "Hvis p\u00e5sl\u00e5tt vil backdrops bli vist i bakgrunnen p\u00e5 noen sider mens man blar igjennom biblioteket.", "HeaderHomePage": "Hjemmeside", - "HeaderSettingsForThisDevice": "Innstillinger for denne enheten", "OptionAuto": "Auto", "OptionYes": "Ja", "OptionNo": "Nei", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Hjemme side seksjon 2:", "LabelHomePageSection3": "Hjemme side seksjon 3:", "LabelHomePageSection4": "Hjemme side seksjon 4:", - "OptionMyMediaButtons": "Mine medier(knapper)", "OptionMyMedia": "Mine medier", "OptionMyMediaSmall": "Mine medier(liten)", "OptionResumablemedia": "Fortsette", @@ -815,53 +752,21 @@ "HeaderReports": "Rapporter", "HeaderSettings": "Innstillinger", "OptionDefaultSort": "Standard", - "OptionCommunityMostWatchedSort": "Mest Sett", "TabNextUp": "Neste", - "PlaceholderUsername": "Brukernavn", "HeaderBecomeProjectSupporter": "Skaff Emby Premiere", "MessageNoMovieSuggestionsAvailable": "Ingen film forslag er forel\u00f8pig tilgjengelig. Start med \u00e5 se og ranger filmer. Kom deretter tilbake for \u00e5 f\u00e5 forslag p\u00e5 anbefalinger.", "MessageNoCollectionsAvailable": "Samlinger l\u00e5r deg nye personlige gruppering av Filmer, Seirer, Musikk, B\u00f8ker og Spill. Trykk p\u00e5 + knappen og start en samling.", "MessageNoPlaylistsAvailable": "Spillelister tillater deg \u00e5 lage lister over innhold til \u00e5 spille etter hverandre p\u00e5 en gang. For \u00e5 legge til elementer i spillelister, h\u00f8yreklikk eller trykk og hold, og velg Legg til i spilleliste.", "MessageNoPlaylistItemsAvailable": "Denne spillelisten er forel\u00f8pig tom", - "ButtonDismiss": "Avvis", "ButtonEditOtherUserPreferences": "Endre denne brukeren sin profilbilde og personlige innstillinger.", "LabelChannelStreamQuality": "Foretrukket internet kanalkvalitet:", "LabelChannelStreamQualityHelp": "P\u00e5 en linje med lav b\u00e5ndbredde, vil begrensing av kvalitet hjelpe med \u00e5 gi en mer behagelig streaming opplevelse.", "OptionBestAvailableStreamQuality": "Beste tilgjengelig", "ChannelSettingsFormHelp": "Installer kanaler som eksempel Trailers og Vimeo i programtillegg katalogen.", - "ViewTypePlaylists": "Spillelister", "ViewTypeMovies": "Filmer", "ViewTypeTvShows": "TV", "ViewTypeGames": "Spill", "ViewTypeMusic": "Musikk", - "ViewTypeMusicGenres": "Sjangere", - "ViewTypeMusicArtists": "Artist", - "ViewTypeBoxSets": "Samlinger", - "ViewTypeChannels": "Kanaler", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Sendes n\u00e5", - "ViewTypeLatestGames": "Siste spill", - "ViewTypeRecentlyPlayedGames": "Nylig spilt", - "ViewTypeGameFavorites": "Favoritter", - "ViewTypeGameSystems": "Spillsystemer", - "ViewTypeGameGenres": "Sjangere", - "ViewTypeTvResume": "Fortsette", - "ViewTypeTvNextUp": "Neste", - "ViewTypeTvLatest": "Siste", - "ViewTypeTvShowSeries": "Serier", - "ViewTypeTvGenres": "Sjangere", - "ViewTypeTvFavoriteSeries": "Favoritt serier", - "ViewTypeTvFavoriteEpisodes": "Favoritt episoder", - "ViewTypeMovieResume": "Fortsette", - "ViewTypeMovieLatest": "Siste", - "ViewTypeMovieMovies": "Filmer", - "ViewTypeMovieCollections": "Samlinger", - "ViewTypeMovieFavorites": "Favoritter", - "ViewTypeMovieGenres": "Sjangere", - "ViewTypeMusicLatest": "Siste", - "ViewTypeMusicPlaylists": "Spillelister", - "ViewTypeMusicAlbums": "Albumer", - "ViewTypeMusicAlbumArtists": "Album artister", "HeaderOtherDisplaySettings": "Visnings Innstillinger", "ViewTypeMusicSongs": "Sanger", "ViewTypeMusicFavorites": "Favoritter", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Ved nedlasting av bilder kan de bli lagret inn til b\u00e5de extrafanart og extrathumbs for maksimum Kodi skin kompabilitet.", "TabServices": "Tjenester", "TabLogs": "Logger", - "HeaderServerLogFiles": "Server log filer:", "TabBranding": "Merke", "HeaderBrandingHelp": "Tilpass utseendet Emby \u00e5 passe din gruppe eller organisasjon sine behov.", "LabelLoginDisclaimer": "Login ansvarsfraskrivelse:", @@ -917,7 +821,6 @@ "HeaderDevice": "Enhet", "HeaderUser": "Bruker", "HeaderDateIssued": "Dato utstedt", - "LabelChapterName": "Kapittel {0}", "HeaderHttpHeaders": "Http Headere", "HeaderIdentificationHeader": "Identifiseringsheader", "LabelValue": "Verdi:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "SubString", "TabView": "Se", - "TabSort": "Sorter", "TabFilter": "Filter", "ButtonView": "Se", "LabelPageSize": "Element grense:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Kontekst", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Synk", "TabPlaylists": "Spliielister", "ButtonClose": "Lukk", "LabelAllLanguages": "Alle spr\u00e5k", @@ -956,7 +856,6 @@ "LabelImage": "Bilde:", "HeaderImages": "Bilder", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Legg Til\/Oppdater Bilde", "LabelDropImageHere": "Slipp bilde her", "LabelJpgPngOnly": "JPG\/PNG kun", @@ -973,7 +872,6 @@ "OptionLocked": "L\u00e5st", "OptionUnidentified": "uidentifisert", "OptionMissingParentalRating": "Mangler foreldresensur", - "OptionStub": "stump", "OptionSeason0": "Sesong 0", "LabelReport": "Rapport:", "OptionReportSongs": "Sanger:", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albumer", "ButtonMore": "Mer", "HeaderActivity": "Aktivitet", - "ScheduledTaskStartedWithName": "{0} startet", - "ScheduledTaskCancelledWithName": "{0} ble avbrutt", - "ScheduledTaskCompletedWithName": "{0} fullf\u00f8rt", - "ScheduledTaskFailed": "Planlagte oppgaver utf\u00f8rt", "PluginInstalledWithName": "{0} ble installert", "PluginUpdatedWithName": "{0} ble oppdatert", "PluginUninstalledWithName": "{0} ble avinstallert", - "ScheduledTaskFailedWithName": "{0} feilet", - "DeviceOnlineWithName": "{0} er tilkoblet", "UserOnlineFromDevice": "{0} er online fra {1}", - "DeviceOfflineWithName": "{0} har koblet fra", "UserOfflineFromDevice": "{0} har koblet fra {1}", - "SubtitlesDownloadedForItem": "Undertekster lastet ned for {0}", - "SubtitleDownloadFailureForItem": "nedlasting av undertekster feilet for {0}", "LabelRunningTimeValue": "Spille tide: {0}", "LabelIpAddressValue": "Ip adresse: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "Bruker konfigurasjon har blitt oppdatert for {0}", "UserCreatedWithName": "Bruker {0} har blitt opprettet", - "UserPasswordChangedWithName": "Passord har blitt endret for bruker {0}", "UserDeletedWithName": "Bruker {0} har blitt slettet", "MessageServerConfigurationUpdated": "Server konfigurasjon har blitt oppdatert", "MessageNamedServerConfigurationUpdatedWithValue": "Server konfigurasjon seksjon {0} har blitt oppdatert", "MessageApplicationUpdated": "Emby server har blitt oppdatert", "UserDownloadingItemWithValues": "{0} laster ned {1}", - "UserStartedPlayingItemWithValues": "{0} har startet avspilling av {1}", - "UserStoppedPlayingItemWithValues": "{0} har stoppet avspilling av {1}", - "AppDeviceValues": "App: {0} , Device: {1}", "ProviderValue": "Tilbyder: {0}", "HeaderRecentActivity": "Siste Aktivitet", "HeaderPeople": "Personer", @@ -1051,27 +936,18 @@ "LabelAirDate": "Sendings dager:", "LabelAirTime:": "Sendings tid:", "LabelRuntimeMinutes": "Spilletid (minutter):", - "LabelRevenue": "Inntjening ($):", - "HeaderAlternateEpisodeNumbers": "Alternativ Episode nummerering", "HeaderSpecialEpisodeInfo": "Spesial Episode info", - "HeaderExternalIds": "Ekstern Id'er:", - "LabelAirsBeforeSeason": "Send f\u00f8r sesong:", - "LabelAirsAfterSeason": "Sendt etter sesong:", - "LabelAirsBeforeEpisode": "Sendt f\u00f8r episode:", "LabelDisplaySpecialsWithinSeasons": "Vis speialiteter innfor sensongen de ble sendt i", - "HeaderCountries": "Land", "HeaderGenres": "Sjanger", "HeaderPlotKeywords": "Plott n\u00f8kkelord", "HeaderStudios": "Studioer", "HeaderTags": "Tagger", - "MessageLeaveEmptyToInherit": "La v\u00e6re blank for \u00e5 arve innstillinger fra et foreldre element, eller den globale standard verdien.", "OptionNoTrailer": "Ingen trailer", "ButtonPurchase": "Kj\u00f8p", "OptionActor": "Skuespiller", "OptionComposer": "Komponist", "OptionDirector": "Regiss\u00f8r", "OptionProducer": "Produsent", - "OptionWriter": "Manus", "LabelAirDays": "Sendings dager:", "LabelAirTime": "Sendings tid:", "HeaderMediaInfo": "Media informasjon", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Foreldrekontroll", "HeaderAccessSchedule": "Tilgang Planlegger", "HeaderAccessScheduleHelp": "Lag en tilgang tidsplan for \u00e5 begrense tilgangen til visse tider.", - "ButtonAddSchedule": "Legg til timeplan", "LabelAccessDay": "Ukedag:", "LabelAccessStart": "Starttid:", "LabelAccessEnd": "Sluttid:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Synk-jobber", "HeaderThisUserIsCurrentlyDisabled": "Denne brukeren er deaktivert", "MessageReenableUser": "Se under for \u00e5 aktivere", - "LabelEnableInternetMetadataForTvPrograms": "Last ned internet metadata for:", "OptionTVMovies": "TV serier", "HeaderUpcomingMovies": "Kommende filmer", "HeaderUpcomingSports": "Kommende sport", @@ -1225,7 +1099,7 @@ "HeaderPlayback": "Media avspilling", "OptionAllowAudioPlaybackTranscoding": "Tillat lydavspilling som krever transkoding", "OptionAllowVideoPlaybackTranscoding": "Tillat filmavspilling som krever transkoding", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowVideoPlaybackRemuxing": "Tillat film tilbakespilling som krever konvertering uten rekoding.", "OptionAllowMediaPlaybackTranscodingHelp": "Brukerne vil motta vennlige meldinger n\u00e5r innholdet ikke er spillbart basert p\u00e5 policy.", "TabStreaming": "Streaming", "LabelRemoteClientBitrateLimit": "Internett str\u00f8mnings bitrate begrensing (Mbps):", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Spillelister", "HeaderViewStyles": "Se stiler", "TabPhotos": "Bilder", - "TabVideos": "Filmer", "HeaderWelcomeToEmby": "Velkommen til Emby", "EmbyIntroMessage": "Med Emby kan du enkelt str\u00f8mme filmer, musikk og bilder til smartelefon, tablet eller andre enheter fra din Emby server.", "ButtonSkip": "Hopp over", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Kolonner", "ButtonReset": "Resett", "OptionEnableExternalVideoPlayers": "Aktiver eksterne videoavspillere", - "ButtonUnlockGuide": "L\u00e5s opp Guide", "LabelEnableFullScreen": "Aktiver fullskjermmodus", "LabelEmail": "Epost:", "LabelUsername": "Brukernavn:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Aktivitets logg", "HeaderTunerDevices": "Tuner enheter", "HeaderAddDevice": "Legg til enhet", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Gjenta", "LabelEnableThisTuner": "Aktiver denne tuneren", "LabelEnableThisTunerHelp": "Fjern haken for \u00e5 hindre import av kanaler fra denne tuneren.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Sett opp TV Guide", "LabelDataProvider": "Dataleverand\u00f8rer", "OptionSendRecordingsToAutoOrganize": "Aktivere auto-organisering av nye opptak in til eksisterende mapper for serier i andre biblioteker.", - "HeaderDefaultPadding": "Standard padding", + "HeaderDefaultRecordingSettings": "Standard opptak innstillinger", "OptionEnableRecordingSubfolders": "Opprett undermapper for kategorier slik som sport, barn, etc.", "HeaderSubtitles": "Undertekster", "HeaderVideos": "Filmer", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Mapper:", "LabelDisplayName": "Visningsnavn:", "HeaderNewRecording": "Nye opptak:", - "ButtonAdvanced": "Avansert", "LabelCodecIntrosPath": "Kodek intro bane:", "LabelCodecIntrosPathHelp": "En mappe som inneholder videofiler. Hvis en intro video filnavn matcher videokodek , lydkodek, lydprofil, eller en kode, s\u00e5 vil det bli spilt f\u00f8r den viktigste funksjonen.", "OptionConvertRecordingsToStreamingFormat": "Automatisk konvertere opptak til et streaming vennlig format", "OptionConvertRecordingsToStreamingFormatHelp": "Opptakene vil bli konvertert p\u00e5 et \u00f8yeblikk til MP4 for enkel avspilling p\u00e5 enhetene.", "FeatureRequiresEmbyPremiere": "Denne funksjonen krever et aktivt Emby Premiere abonnement.", "FileExtension": "Filtype", - "OptionReplaceExistingImages": "Bytt ut eksisterende bilder", "OptionPlayNextEpisodeAutomatically": "Spill av neste episode automatisk", "OptionDownloadImagesInAdvance": "Last ned alle bilder p\u00e5 forh\u00e5nd.", "SettingsSaved": "Innstillinger lagret", @@ -1348,7 +1216,6 @@ "Password": "Passord", "DeleteImage": "Slett bilde", "MessageThankYouForSupporting": "Takk for at du st\u00f8tter Emby.", - "MessagePleaseSupportProject": "Vennligst st\u00f8tt Emby.", "DeleteImageConfirmation": "Er du sikker p\u00e5 at du vil slette bildet?", "FileReadCancelled": "Lesing av filen kansellert.", "FileNotFound": "Fil ikke funnet", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Denne Emby serveren m\u00e5 oppdateres. For \u00e5 laste ned siste versjonen, vennligst bes\u00f8k: {0}", "LabelFromHelp": "Eksempel: {0} (p\u00e5 serveren)", "HeaderMyMedia": "Mine media", - "LabelAutomaticUpdateLevel": "Automatisk oppdateringniv\u00e5:", - "LabelAutomaticUpdateLevelForPlugins": "Automatisk oppdateringniv\u00e5 for plugins:", "ErrorLaunchingChromecast": "Det var en feil ved start av Chromecast. Vennligst forsikre deg om at enheten har korrekt forbindelse til ditt tr\u00e5dl\u00f8se nettverk.", "MessageErrorLoadingSupporterInfo": "Det skjedde en feil under lasting av Emby Premiere informasjon. Vennligst pr\u00f8v igjen senere.", - "MessageLinkYourSupporterKey": "Koble din Emby Premiere n\u00f8kkel opp med {0} Emby Connect medlemmer for \u00e5 nyte gratis tilgang til f\u00f8lgende applikasjoner:", "HeaderConfirmRemoveUser": "Fjern bruker", - "MessageConfirmRemoveConnectSupporter": "Er du sikker p\u00e5 at du \u00f8nsker \u00e5 fjerne Emby Premiere fordeler fra denne brukeren?", "ValueTimeLimitSingleHour": "Tidsgrense: 1 time", "ValueTimeLimitMultiHour": "Tidsgrense: {0} time", "PluginCategoryGeneral": "Generelt", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Planlagte oppgaver", "MessageItemsAdded": "Elementer lagt til", "HeaderSelectCertificatePath": "Velg sti for sertifikat:", - "ConfirmMessageScheduledTaskButton": "Denne operasjonen g\u00e5r som normalt automatisk som en planlagt oppgave og krever ingen manuell innsats. For \u00e5 konfigurere planlagt oppgave, se:", "HeaderSupporterBenefit": "Et aktivt Emby Premiere abonnement gir flere fordeler som tilgang til \u00e5 synkronisere, premium plugins, internet kanal innhold, og mer. {0} L\u00e6r mer {1}.", "HeaderWelcomeToProjectServerDashboard": "Velkommen til Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Velkommen til Emby", @@ -1437,7 +1299,7 @@ "HeaderWelcomeBack": "Velkommen tilbake!", "ButtonTakeTheTourToSeeWhatsNew": "Ta en titt p\u00e5 hva som er nytt", "MessageNoSyncJobsFound": "Ingen synkroniseringsjobber funnet. Opprett en synkroniseringsjobb ved hjelp av Synkroniseringsknappene i biblioteket", - "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "MessageDownloadsFound": "Ingen offline nedlastinger. Gj\u00f8r mediene tilgjengelig i frakoblet modus ved \u00e5 klikke Gj\u00f8r tilgjengelig i frakoblet hele programmet.", "HeaderSelectDevices": "Velg enheter", "ButtonCancelItem": "Avbryt element", "ButtonQueueForRetry": "K\u00f8 for \u00e5 pr\u00f8ve igjen", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Deaktivert", "ButtonMoreInformation": "Mer Informasjon", "LabelNoUnreadNotifications": "Ingen uleste meldinger.", - "LabelAllPlaysSentToPlayer": "Alt som spilles vil bli sendt til den valgte spilleren.", "MessageInvalidUser": "Ugyldig brukernavn eller passord. Vennligst pr\u00f8v igjen.", "HeaderLoginFailure": "P\u00e5loggingsfeil", "RecommendationBecauseYouLike": "Fordi du liker {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Opptak er Avbrutt.", "MessageRecordingScheduled": "Opptak planlegger", "HeaderConfirmSeriesCancellation": "Bekreft Serier kansellering", - "MessageConfirmSeriesCancellation": "Er du sikker p\u00e5 at du vil kansellere denne serien?", - "MessageSeriesCancelled": "Serie kansellert.", "HeaderConfirmRecordingDeletion": "Bekreft Sletting av Opptak", "MessageRecordingSaved": "Opptak lagret.", "OptionWeekend": "Helger", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Bla eller skriv stien som skal brukes for server cache filer. Mappen m\u00e5 v\u00e6re skrivbar.", "HeaderSelectTranscodingPathHelp": "Bla eller skriv stien som skal brukes for transcoding av midlertidige filer. Mappen m\u00e5 v\u00e6re skrivbar.", "HeaderSelectMetadataPathHelp": "Bla eller skriv stien som skal brukes for metadata. Mappen m\u00e5 v\u00e6re skrivbar.", - "HeaderSelectChannelDownloadPath": "Velg Nedlastingsti For Kanal", - "HeaderSelectChannelDownloadPathHelp": "Bla igjennom eller skriv en sti som brukes for lagring av cache filer. Mappen m\u00e5 v\u00e6re skrivbar.", - "LabelChapterDownloaders": "Kapittel nedlastinger:", - "LabelChapterDownloadersHelp": "Aktiver og ranger din foretrukne kapittel nedlasting i f\u00f8lgende prioritet. Lavere prioritet nedlastinger vil kun bli brukt for \u00e5 fylle inn manglende informasjon", "HeaderFavoriteAlbums": "Favoritt Albumer", "HeaderLatestChannelMedia": "Siste Kanal Elementer", "ButtonOrganizeFile": "Organiser Fil", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "Kj\u00f8rer p\u00e5 http port {0}.", "LabelRunningOnPorts": "Kj\u00f8rer p\u00e5 http port {0} og https port {1}.", "HeaderLatestFromChannel": "Siste fra {0}", - "HeaderCurrentSubtitles": "N\u00e5v\u00e6rende undertekster", "ButtonRemoteControl": "Ekstern Kontroll", "HeaderLatestTvRecordings": "Siste Opptak", "LabelCurrentPath": "N\u00e5v\u00e6rende sti:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Slett element", "ConfirmDeleteItem": "Sletter elementet fra b\u00e5de filsystemet og biblioteket. Er du sikker p\u00e5 at du vil fortsette?", "ConfirmDeleteItems": "Slette disse elementene vil slette dem fra b\u00e5de filsystemet og mediebiblioteket . Er du sikker p\u00e5 at du vil fortsette?", - "MessageValueNotCorrect": "Verdien som ble skrevet er ikke korrekt. Vennligst pr\u00f8v igjen.", "MessageItemSaved": "Element lagret.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Vennligst aksepter tjenestevilk\u00e5rene f\u00f8r du fortsetter.", "OptionOff": "Av", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Mangler backdrop bilde.", "MissingLogoImage": "Mangler logo bilde.", "MissingEpisode": "Mangler episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Bilder", "OptionKeywords": "N\u00f8kkelord", @@ -1642,10 +1494,6 @@ "OptionPeople": "Person", "OptionProductionLocations": "Produksjonsplass", "OptionBirthLocation": "F\u00f8dested", - "LabelAllChannels": "Alle kanaler", - "AttributeNew": "Ny", - "AttributePremiere": "Premiere", - "AttributeLive": "Direkte", "HeaderChangeFolderType": "Endre innholdstype", "HeaderChangeFolderTypeHelp": "For \u00e5 endre type, m\u00e5 du fjerne og gjenoppbygge biblioteket med den nye typen.", "HeaderAlert": "Varsling", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Kvalitet", "HeaderNotifications": "Melding", "HeaderSelectPlayer": "Velg avspiller", - "MessageInternetExplorerWebm": "For det beste resultatet med Internet Explorer anbefales det at du installerer WebM programtillegg for videoavspilling.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "Se serie opptak", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Spilletid", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Utgivelsesdato", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Sesong", "HeaderSeasonNumber": "Sesong nummer", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Fjern Mediamappe", "MessageConfirmRemoveMediaLocation": "Er du sikker p\u00e5 at du vil slette dette stedet??", "LabelNewName": "Nytt navn:", - "HeaderAddMediaFolder": "Legg til mediamappe", - "HeaderAddMediaFolderHelp": "Navn (Filmer, Musikk, TV, etc):", "HeaderRemoveMediaFolder": "Fjern Mediamappe", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "F\u00f8lgende medielokasjoner vil bli fjernet fra ditt Emby Bibliotek:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Er du sikker p\u00e5 at dul vil slette denne media-mappen?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Velg innholdtype", "HeaderMediaLocations": "Media Steder", "LabelContentTypeValue": "Innholdstype {0}", - "LabelPathSubstitutionHelp": "Valgfritt: Sti erstatter kan koble server stier til nettverkressurser som klienter har tilgang til for direkte avspilling.", "FolderTypeUnset": "Ikke bestemt (variert innhold)", "BirthPlaceValue": "F\u00f8dested: {0}", "DeathDateValue": "D\u00f8de: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Nettsted", "ValueSeriesYearToPresent": "{0}-N\u00e5", "ValueAwards": "Priser: {0}", - "ValueBudget": "Budsjett: {0}", - "ValueRevenue": "Inntjening: {0}", "ValuePremiered": "Premiere {0}", "ValuePremieres": "Premiere {0}", "ValueStudio": "Studio: {0}", @@ -1800,7 +1641,7 @@ "MediaInfoLongitude": "Lengdegrad", "MediaInfoShutterSpeed": "Lukkerhastighet", "MediaInfoSoftware": "Programvare", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "Flere som dette", "HeaderMovies": "Filmer", "HeaderAlbums": "Albumer", "HeaderGames": "Spill", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Ekspert", "HeaderSelectCustomIntrosPath": "Velg tilpasset intro sti", - "HeaderRateAndReview": "Ranger og anmeld", "HeaderThankYou": "Takk", - "MessageThankYouForYourReview": "Takk for din anmeldelse.", - "LabelYourRating": "Din vurdering:", "LabelFullReview": "Full anmeldelse:", - "LabelShortRatingDescription": "Kort sammendrag av vurdering:", - "OptionIRecommendThisItem": "Jeg anbefaler dette elementet", "ReleaseYearValue": "Utgivelse \u00e5r: {0}", "OriginalAirDateValue": "Original utgivelse dato: {0}", "WebClientTourContent": "Vis dine nylig tilf\u00f8yde medier, neste episodene og mer. De gr\u00f8nne sirklene viser hvor mange uspilte elementer du har.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Administrer enkelt operasjoner som kan ta lang tid med oppgaveplanlegging. Bestem n\u00e5r de kj\u00f8rer og hvor ofte.", "DashboardTourMobile": "Emby server dashbord fungerer str\u00e5lende p\u00e5 smarttelefoner og tablets.\nAdministrere din server p\u00e5 farta til enhver tid.", "DashboardTourSync": "Synkroniser personlige mediafiler til din enhet for \u00e5 se p\u00e5 offline.", - "MessageRefreshQueued": "Oppfrisk k\u00f8en", "TabExtras": "Ekstra", "HeaderUploadImage": "Last opp bilde", "DeviceLastUsedByUserName": "Sist brukt av {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Synkroniser media", "HeaderCancelSyncJob": "Avbryt synkronisering", "CancelSyncJobConfirmation": "Avbryte synkronisering jobben vil fjerne synkronisert media fra enheten ved neste synkronisering prosess. Er du sikker p\u00e5 at du vil fortsette?", - "MessagePleaseSelectDeviceToSyncTo": "Velg enhet \u00e5 synkronisere til.", - "MessageSyncJobCreated": "Synkroniseringsjobb p\u00e5begynt.", "LabelQuality": "Kvalitet:", - "OptionAutomaticallySyncNewContent": "Automatisk synkroniser nytt innhold", - "OptionAutomaticallySyncNewContentHelp": "Nytt innhold blir automatisk synkronisert til enheten.", "MessageBookPluginRequired": "Forutsetter at programtillegget bokhylle er installert", "MessageGamePluginRequired": "Forutsetter at programtillegget GameBrowser er installert", "MessageUnsetContentHelp": "Innhold vises som enkle mapper. For beste resultat, bruk metadata for \u00e5 sette innholdstype for mapper.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scener", "HeaderUnlockApp": "L\u00e5s opp Appen", "HeaderUnlockSync": "L\u00e5s opp Emby Synkronisering", - "MessageUnlockAppWithPurchaseOrSupporter": "L\u00e5s opp denne funksjonen med en liten engangs sum eller et aktivt Emby Premiere abonnement.", - "MessageUnlockAppWithSupporter": "L\u00e5s opp denne funksjonen med et aktivt Emby Premiere abonnement.", - "MessageToValidateSupporter": "Hvis du har et aktivt Emby Premiere abandonment, foresikker deg at du har satt opp Emby Premiere i ditt Emby Server Dashboard under Hjelp -> Emby Premiere.", "MessagePaymentServicesUnavailable": "Betalingstjenester er fortiden utilgjengelig. Vennligst pr\u00f8v igjen p\u00e5 et senere tidspunkt.", - "ButtonUnlockWithPurchase": "L\u00e5s opp med kj\u00f8p", - "ButtonUnlockPrice": "L\u00e5s opp {0}", - "MessageLiveTvGuideRequiresUnlock": "Live TV Guide er forel\u00f8pig begrenset til {0} kanaler. Klikk p\u00e5 utl\u00f8serknappen for \u00e5 l\u00e6re hvorda du kan f\u00e5 nyte den fulle opplevelsen.", "OptionEnableFullscreen": "Aktiver fullskjerm", "ButtonServer": "Server", "HeaderLibrary": "Bibliotek", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Si noenting slik som...", "NoResultsFound": "Ingen resulterer funnet.", "ButtonManageServer": "Administrer Server", "ButtonPreferences": "Innstillinger", @@ -1963,7 +1787,7 @@ "ErrorMessageUsernameInUse": "Brukernavnet er alt i bruk, Pr\u00f8v igjen med et annet brukernavn.", "ErrorMessageEmailInUse": "Epost addressee du oppgav er alt i bruk. Velg en annen epost adresse eller bruk tilbakestilling av passord funksjonen.", "MessageThankYouForConnectSignUp": "Takk for din registering i Emby Connect nettverket. En e-post vil bli sendt til din adresse med instruksjoner om hvordan du bekrefte den nye kontoen. Vennligst bekreft kontoen og deretter kom tilbake hit for \u00e5 logge p\u00e5.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "MessageThankYouForConnectSignUpNoValidation": "Takk for at du registrerte deg for Emby Connect! Du vil n\u00e5 bli bedt om og logge inn med din Emby Connect informasjon.", "ButtonShare": "Del", "HeaderConfirm": "Bekreft", "MessageConfirmDeleteTunerDevice": "Er du sikker p\u00e5 at du vil slette denne enheten?", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Opprett en konto p\u00e5 {0}", "ErrorPleaseSelectLineup": "Velg en oppstilling og pr\u00f8v igjen. Hvis ingen oppstillinger er tilgjengelig, s\u00e5 vennligst sjekk at brukernavn, passord og postnummer er riktig.", "HeaderTryEmbyPremiere": "Pr\u00f8v Emby Premiere", - "ButtonBecomeSupporter": "Skaff Emby Premiere", - "ButtonClosePlayVideo": "Stengt og spill av innhold", - "MessageDidYouKnowCinemaMode": "Viste du at med Emby Premiere, f\u00e5r du oppleve Emby med kino modus?", - "MessageDidYouKnowCinemaMode2": "Kino-modus bringer kinoopplevelsen direkte til din stue med muligheten til \u00e5 spille trailere og tilpassede introer f\u00f8r filmen begynner.", "OptionEnableDisplayMirroring": "Aktiver skjerm speiling.", "HeaderSyncRequiresSupporterMembership": "Synkronisering krever Emby Premiere abonnement.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Synkronisering krever tilkobling til en Emby Server med et aktivt Emby Premiere abonnement.", "ErrorValidatingSupporterInfo": "Det oppstod en feil under validering din Emby Premiere informasjon. Vennligst pr\u00f8v igjen senere.", "LabelLocalSyncStatusValue": "Status {0}", "MessageSyncStarted": "Synkronisering startet", - "NoSlideshowContentFound": "Ingen lysbilder ble funnet.", - "OptionPhotoSlideshow": "Lysbilde", "OptionBackdropSlideshow": "Bakteppe lysbildefremviser", "HeaderTopPlugins": "Topp Plugins", "ButtonOther": "Andre", @@ -1996,59 +1814,39 @@ "ButtonMenu": "Meny", "ForAdditionalLiveTvOptions": "For ytterligere Direkte-TV-leverand\u00f8rer, klikk p\u00e5 fanen Eksterne Tjenester for \u00e5 se de tilgjengelige alternativene.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Ta opp TV", "ConfirmEndPlayerSession": "Vill du stenge Emby p\u00e5 denne enheten?", "ButtonYes": "Ja", "AddUser": "Legg til bruker", "ButtonNo": "Nei", - "ButtonRestorePreviousPurchase": "Gjenopprett tidligere kj\u00f8p", - "AlreadyPaid": "Allende betalt?", - "AlreadyPaidHelp1": "Hvis du allerede har betalt for \u00e5 installere en eldre versjon av Media Browser for Android, trenger du ikke \u00e5 betale p\u00e5 nytt for \u00e5 aktivere dette programmet. Klikk OK for \u00e5 sende oss en e-post p\u00e5 {0}, og vi vil f\u00e5 det aktivert for deg.", - "AlreadyPaidHelp2": "Har du Emby Premiere. Da kan du avbryte denne dialogen. Logg inn p\u00e5 web-klinten Hjelp -> Emby Premiere og tast inn din Premier n\u00f8kkel for \u00e5 lose opp disse funksjonene.", "ButtonNowPlaying": "Spilles N\u00e5", "HeaderLatestMovies": "Siste Filmer", - "EmbyPremiereMonthly": "Emby Premiere m\u00e5nedlig", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere m\u00e5nedlig {0}", "HeaderEmailAddress": "Epost adresse", - "TextPleaseEnterYourEmailAddressForSubscription": "Vennligst tast inn din epost adresse", "LoginDisclaimer": "Emby er utviklet for \u00e5 hjelpe deg med \u00e5 administrere ditt personlige mediebibliotek, slik som hjemmevideoer og bilder. Vennligst se v\u00e5re brukervilk\u00e5r. Bruken av enhver Emby programvare aksepterer disse vilk\u00e5rene.", "TermsOfUse": "Brukervilk\u00e5r", "NumLocationsValue": "{0} mapper", "ButtonAddMediaLibrary": "Legg element til biblioteket", "ButtonManageFolders": "Mappebehandling", - "MessageTryMicrosoftEdge": "For en bedre opplevelse p\u00e5 Windows 10, kan du pr\u00f8ve den nye Microsoft Edge nettleseren.", - "MessageTryModernBrowser": "For en bedre opplevelse p\u00e5 Windows pr\u00f8v en moderne nettleser slik som Google Chrome, Firefox eller Opera.", "ErrorAddingListingsToSchedulesDirect": "Det oppstod en feil mens du legger din oppstilling til tidsplaner Direkte konto. Direkte tidsplaner kun tillatt et begrenset antall oppstillingkombinasjoner per brukerkonto. Du b\u00f8r logge inn p\u00e5 nettstedet i planene Direct konto og noen samlinger av kontoen din for \u00e5 slette f\u00f8r du fortsetter.", "PleaseAddAtLeastOneFolder": "Vennligst legg til mint en mappe ved \u00e5 trykke p\u00e5 Legg til knappen.", "ErrorAddingMediaPathToVirtualFolder": "Det oppstod en feil \u00e5 legge mediebanen . S\u00f8rg for at banen er gyldig og Emby Server prosessen har tilgang til stedet.", "ErrorRemovingEmbyConnectAccount": "Det oppstod en feil under fjerning Emby Connect-kontoen. Kontroller at du har en aktiv Internett-tilkobling og pr\u00f8v igjen.", "ErrorAddingEmbyConnectAccount1": "Det oppstod en feil \u00e5 legge den Emby Connect-kontoen. Har du opprettet en Emby konto? Meld deg p\u00e5 her {0}.", "ErrorAddingEmbyConnectAccount2": "S\u00f8rg for at Emby kontoen er aktivert ved \u00e5 f\u00f8lge instruksjonene i e-posten som ble sent etter at du opprettet kontoen. Hvis du ikke har mottatt denne e-posten s\u00e5 kan du sende en e-post til {0} fra e-postadressen som brukes med Emby konto.", - "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "ErrorAddingEmbyConnectAccount3": "Denne Emby brukeren er alt koblet til en eksisterende lokal bruker. Emby konto kan bare v\u00e6re tilkoblet en lokal bruker omgangen.", "HeaderFavoriteArtists": "Favoritt artist", "HeaderFavoriteSongs": "Favoritt sang", "HeaderConfirmPluginInstallation": "Bekreft Installasjon av Plugin", "PleaseConfirmPluginInstallation": "Klikk p\u00e5 OK for \u00e5 bekrefte at du har lest ovenfor og \u00f8nsker \u00e5 fortsette med installasjonen.", "MessagePluginInstallDisclaimer": "Plugins bygget av Emby samfunnsmedlemmer er en fin m\u00e5te \u00e5 forbedre Emby erfaringen, med flere funksjoner og andre fordeler. F\u00f8r du installerer, m\u00e5 du v\u00e6re klar over effekten de kan ha p\u00e5 din Emby Server, for eksempel tregere bibliotek skanner, ekstra bakgrunnsprosessering, og redusert systemstabilitet.", - "ButtonPlayOneMinute": "Spill av et minutt", - "ThankYouForTryingEnjoyOneMinute": "Vennligst nyt et minutt avspilling, Takk for at du pr\u00f8ver Emby.", - "HeaderTryPlayback": "Pr\u00f8v avspilling", - "HeaderBenefitsEmbyPremiere": "Fordeler med Emby Premiere", - "MobileSyncFeatureDescription": "Synkronisere medier til smarttelefoner og nettbrett for lettvint frakoblet tilgang.", - "CoverArtFeatureDescription": "Dekselkunst skaper morsomme deksler og andre behandlinger for \u00e5 hjelpe deg med \u00e5 tilpasse mediebilder.", "HeaderMobileSync": "Mobil synkronisering", "HeaderCloudSync": "Sky synkronisering", - "CloudSyncFeatureDescription": "Synkronisere dine medier til syken for sikkerhetskopi, arkivering og konvertering.", "HeaderFreeApps": "Gratis Emby Applikasjoner", - "FreeAppsFeatureDescription": "Nyt gratis tilgang til utvalgte Emby applikasjoner for dine enheter", - "CinemaModeFeatureDescription": "Kino modus gir deg ekte kino opplevelse med trailere og egendefinerte introduksjoner f\u00f8r filmen.", "CoverArt": "Omslagsbilde", "ButtonOff": "Av", "TitleHardwareAcceleration": "Maskinvareakselerasjon", "HardwareAccelerationWarning": "Aktivering av maskinvareakselerasjon kan f\u00f8re til ustabilitet i enkelte milj\u00f8er. S\u00f8rg for at operativsystemet og skjermdriverne dine er fullt oppdatert. Hvis du har problemer med \u00e5 spille videoer etter \u00e5 ha aktivert dette, m\u00e5 du endre innstillingen tilbake til Auto.", "HeaderSelectCodecIntrosPath": "Velg Kodek Intro Bane", - "ButtonAddMissingData": "Legg kun til manglende data", - "ValueExample": "13:00", + "ValueExample": "Eksempel: {0}", "OptionEnableAnonymousUsageReporting": "Aktiver anonym bruksrapportering", "OptionEnableAnonymousUsageReportingHelp": "Tillat Emby \u00e5 samle inn anonyme data som installerte plugins, versjonsnumrene for dine Emby apps osv Denne informasjonen brukes kun forbedre programvaren.", "LabelFileOrUrl": "Fil eller URL:", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U URL (valgfri)", "LabelOptionalM3uUrlHelp": "Noen enheter st\u00f8tter en M3U kanalliste.", "TabResumeSettings": "Resume innstillinger.", - "HowDidYouPay": "Hvordan betaler du?", - "IHaveEmbyPremiere": "Jeg har Emby Premiere", - "IPurchasedThisApp": "Jeg har alt kj\u00f8pt denne applikasjonen", "DrmChannelsNotImported": "Kanaler med DRM vill ikke bli importert.", "LabelAllowHWTranscoding": "Tillat maskinvaretranskoding", "AllowHWTranscodingHelp": "Hvis aktivert, vil tuneren \u00e5 omkode str\u00f8mmer. Dette kan bidra til \u00e5 redusere transkoding som kreves av Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Endre metadatainnstillinger vil p\u00e5virke nytt innhold blir lagt fremover. For \u00e5 oppdatere eksisterende innhold, \u00e5pner detalj skjermen og klikker p\u00e5 oppdateringsknappen, eller utf\u00f8re masse oppdateres ved hjelp av metadata manager.", "OptionConvertRecordingPreserveAudio": "Bevare opprinnelige lyd ved konvertering av opptak (N\u00e5r dette er mulig)", "OptionConvertRecordingPreserveAudioHelp": "Denne leverand\u00f8ren gir bedre lyd, men kan kreve transcoding under avspilling p\u00e5 enkelte enheter.", - "CreateCollectionHelp": "Samlinger tillate deg \u00e5 lage personlige grupperinger av filmer og annet bibliotek innhold.", + "OptionConvertRecordingPreserveVideo": "Bevar original video ved konvertering av opptak", + "OptionConvertRecordingPreserveVideoHelp": "Dette kan gi bedre videokvalitet , men vil kreve transcoding under avspilling p\u00e5 enkelte enheter.", "AddItemToCollectionHelp": "Legg til elementer i samlingene ved \u00e5 s\u00f8ke etter dem og bruke sine h\u00f8yreklikk eller pek menyer for \u00e5 legge dem til en samling.", "HeaderHealthMonitor": "Helse Overv\u00e5ker", "HealthMonitorNoAlerts": "Det finnes ingen aktive varslinger", @@ -2094,7 +1890,7 @@ "MapChannels": "Kartlegge kanaler", "LabelffmpegPath": "FFmpeg sti:", "LabelffmpegVersion": "FFmpeg versjon:", - "LabelffmpegPathHelp": "Stien til den nedlastede FFmpeg program eller en mappe som inneholder FFmpeg.", + "LabelffmpegPathHelp": "Stien til ffmpeg program fil eller mappen som inneholder ffmpeg", "SetupFFmpeg": "Oppsett av FFmpeg", "SetupFFmpegHelp": "FFmpeg er en n\u00f8dvendig komponent og m\u00e5 konfigureres.", "EnterFFmpegLocation": "Tast inn FFmpeg sti", @@ -2106,41 +1902,48 @@ "FFmpegSavePathNotFound": "Vi kan dessverre ikke finne FFmpeg bruke banen du har angitt. FFprobe er ogs\u00e5 n\u00f8dvendig og m\u00e5 ligge i samme mappe. Disse komponentene er vanligvis buntet sammen i samme nedlastning. Kontroller banen og pr\u00f8v igjen.", "XmlTvPremiere": "Som standard, vill Emby importere {0} timer av tv guide informasjon. For \u00e5 kunne importere ubegrenset med data kreves det et aktivt Emby Premiere abonnement.", "MoreFromValue": "Mer informasjon fra {0}", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", + "OptionSaveMetadataAsHiddenHelp": "Endring av denne vil gjelde for nye metadata lagret i tiden fremover. Eksisterende metadatafiler blir oppdatert neste gang de blir lagret av Emby Server.", "EnablePhotos": "Aktiver bilder", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "MakeAvailableOffline": "Make available offline", + "EnablePhotosHelp": "Bilder vil bli oppdaget og vises sammen med andre mediefiler .", + "MakeAvailableOffline": "Lag tilgjengelige frakoblet", "ConfirmRemoveDownload": "Fjern nedlastet?", "RemoveDownload": "Fjern nedlastet", - "SyncToOtherDevices": "Sync to other devices", - "ManageOfflineDownloads": "Manage offline downloads", - "MessageDownloadScheduled": "Download scheduled", + "SyncToOtherDevices": "Synkronisere til andre enheter", + "ManageOfflineDownloads": "Behandle frakoblet nedlastinger", + "MessageDownloadScheduled": "Nedlasting planlagt", "RememberMe": "Husk meg", - "HeaderOfflineSync": "Offline Sync", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", + "HeaderOfflineSync": "Frakoblet synkronisering", + "LabelMaxAudioFileBitrate": "Maks lydspor bitrate", + "LabelMaxAudioFileBitrateHelp": "Lydfiler med h\u00f8yere bitrate vil bli konvertert av Emby Server. Velg en h\u00f8yere verdi for bedre kvalitet, eller en lavere verdi for \u00e5 bevare lokal lagringsplass.", "LabelVaapiDevice": "VA API enhet:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", - "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", - "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", + "LabelVaapiDeviceHelp": "Dette er den gjengi noden som brukes for maskinvareakselerasjon.", + "HowToConnectFromEmbyApps": "Hvordan koble fra Emby apps", + "MessageFolderRipPlaybackExperimental": "St\u00f8tte for avspilling av mappe rips og ISOs i dette programmet er bare eksperimentell. For best resultat, pr\u00f8v en Emby app som st\u00f8tter disse formatene fritt, eller bruke vanlig videofiler.", + "OptionExtractChapterImage": "Aktiver kapittel bildeutklipping", + "Downloads": "Nedlastinger", "LabelEnableDebugLogging": "Sl\u00e5 p\u00e5 debug logging.", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", - "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", - "HeaderForKids": "For Kids", - "HeaderRecordingGroups": "Recording Groups", - "LabelConvertRecordingsTo": "Convert recordings to:", - "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", + "OptionEnableExternalContentInSuggestions": "Aktiver eksternt innhold i forslag", + "OptionEnableExternalContentInSuggestionsHelp": "Tillater internett tilhengere og live tv-programmer for \u00e5 bli inkludert i sl\u00e5tt innhold.", + "LabelH264EncodingPreset": "H264 koding forh\u00e5ndsinnstilling:", + "H264EncodingPresetHelp": "Velg en raskere verdi \u00e5 forbedre ytelsen, eller en lavere verdi for \u00e5 forbedre kvaliteten.", + "LabelH264Crf": "H264 enkoding CRF:", + "H264CrfHelp": "Constant Rate Factor (CRF) er standard kvalitetsinnstilling for x264 encoder. Du kan stille inn verdier mellom 0 og 51, hvor lavere verdier vil resultere i bedre kvalitet (p\u00e5 bekostning av h\u00f8yere filst\u00f8rrelser). Sane verdier er mellom 18 og 28. Standard for x264 er 23, slik at du kan bruke dette som et utgangspunkt.", + "Sports": "Sport", + "HeaderForKids": "For barn", + "HeaderRecordingGroups": "Opptak Grupper", + "LabelConvertRecordingsTo": "Konverter opptak til:", + "HeaderUpcomingOnTV": "Kommer p\u00e5 TV", + "LabelOptionalNetworkPath": "(Valgfritt) Delte nettverks mapper:", + "LabelOptionalNetworkPathHelp": "Hvis denne mappen er delt p\u00e5 nettverket, leverer nettverksdelingsbane kan tillate Emby apps p\u00e5 andre enheter for \u00e5 f\u00e5 tilgang til mediefiler direkte.", "ButtonPlayExternalPlayer": "Spill i ekstern avspiller", - "WillRecord": "Will record", - "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "NotScheduledToRecord": "Ikke planlagt for opptak", + "SynologyUpdateInstructions": "Vennligst logg inn p\u00e5 DSM og g\u00e5 til pakke senter for oppdatering.", + "LatestFromLibrary": "Siste {0}", + "LabelMoviePrefix": "Film prefiks:", + "LabelMoviePrefixHelp": "Hvis en prefiks er lagt til i film tittler, tast den inn her slik at Emby kan h\u00e5ndtere den riktig.", + "HeaderRecordingPostProcessing": "Etterbehandling av opptak", + "LabelPostProcessorArguments": "Post-prosessering kommandolinjeargumenter:", + "LabelPostProcessorArgumentsHelp": "Bruk {path} som banen til opptaksfilen.", + "LabelPostProcessor": "Etterbehandling applikasjon:", + "ErrorAddingXmlTvFile": "Det oppstod en feil tilgang til XmlTV filen. S\u00f8rg for at filen finnes og pr\u00f8v igjen." } \ No newline at end of file diff --git a/dashboard-ui/strings/nl.json b/dashboard-ui/strings/nl.json index 9f08ea8acf..1c4a23bc1f 100644 --- a/dashboard-ui/strings/nl.json +++ b/dashboard-ui/strings/nl.json @@ -1,8 +1,6 @@ { - "LabelExit": "Afsluiten", - "LabelApiDocumentation": "Api documentatie", - "LabelBrowseLibrary": "Bekijk bibliotheek", - "LabelConfigureServer": "Emby Configureren", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Vorige", "LabelFinish": "Voltooien", "LabelNext": "Volgende", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Uw voornaam:", "MoreUsersCanBeAddedLater": "Meer gebruikers kunnen later via het dashboard worden toegevoegd.", "UserProfilesIntro": "Emby heeft ingebouwde ondersteuning voor gebruikersprofielen die het mogelijk maakt om elke gebruiker eigen scherminstellingen, afspeelinstellingen en ouderlijk toezicht te geven.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "Er is een Windows service ge\u00efnstalleerd.", - "WindowsServiceIntro1": "Emby Server draait normaal gesproken als een desktop applicatie met een icoon in het systeemvak, maar als u dat wilt kunt u het als een achtergrondproces draaien. Het kan daarvoor worden gestart vanuit het Windows Services configuratiescherm.", - "WindowsServiceIntro2": "Wanneer u de Windows service gebruikt, dient u er rekening mee te houden dat het niet op hetzelfde moment als de desktop applicatie kan worden uitgevoerd. Het is daarom vereist de desktop applicatie eerst af te sluiten voordat u de service gebruikt. De service moet worden geconfigureerd met beheerdersrechten via het configuratie scherm. Bij het uitvoeren als eenservice, moet u er rekening mee houden dat het service-account toegang heeft tot uw mappen met media bestanden.", "WizardCompleted": "Dat is alles wat we nu nodig hebben. Emby is begonnen met het verzamelen van informatie over uw media bibliotheek. Probeer sommige van onze apps en klik dan Finish<\/b> om het Server Dashboard<\/b> te bekijken.", "LabelConfigureSettings": "Configureer instellingen", - "LabelEnableAutomaticPortMapping": "Automatische poorttoewijzing inschakelen", - "LabelEnableAutomaticPortMappingHelp": "UPnP zorgt voor geautomatiseerde configuratie van de router voor gemakkelijke toegang op afstand. Dit werkt mogelijk niet met sommige routers.", "HeaderTermsOfService": "Emby Service Voorwaarden", "MessagePleaseAcceptTermsOfService": "Accepteer a.u.b. de voorwaarden en het privacybeleid voordat u doorgaat.", "OptionIAcceptTermsOfService": "Ik accepteer de voorwaarden", "ButtonPrivacyPolicy": "Privacybeleid", "ButtonTermsOfService": "Service voorwaarden", - "HeaderDeveloperOptions": "Ontwikkelaar Opties", - "OptionEnableWebClientResponseCache": "Activeer web reactie caching", - "OptionDisableForDevelopmentHelp": "Configureer deze zo nodig voor web ontwikkeling doeleinden.", - "OptionEnableWebClientResourceMinification": "Activeer web bron minimalisering", - "LabelDashboardSourcePath": "Webclient bron pad:", - "LabelDashboardSourcePathHelp": "Wanneer u de server draait vanaf de bron, geeft u het pad naar de map dashboard-ui op. Alle webclient bestanden worden geladen vanaf deze locatie.", "ButtonConvertMedia": "Converteer media", "ButtonOrganize": "Organiseren", "HeaderSupporterBenefits": "Emby Premiere Voordelen", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Om een \u200b\u200bgebruiker toe te voegen die niet in de lijst voorkomt, moet u eerst hun account aan Emby Connect koppelen vanuit hun gebruikersprofiel pagina.", "LabelPinCode": "Pincode:", "OptionHideWatchedContentFromLatestMedia": "Verberg bekeken inhoud van recent toegevoegd", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Annuleren", "ButtonExit": "Afsluiten", "ButtonNew": "Nieuw", + "OptionDev": "Dev (Instabiel)", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Taak Triggers", "HeaderTV": "TV", "HeaderAudio": "Geluid", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Voor toegang toets uw pincode", "ButtonConfigurePinCode": "Configureer pincode", "RegisterWithPayPal": "Registreer met PayPal", - "HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie", "LabelSyncTempPath": "Pad voor tijdelijke bestanden:", "LabelSyncTempPathHelp": "Geef een afwijkende sync werk directory op. Tijdens het sync proces aangemaakte geconverteerde media zal hier opgeslagen worden.", "LabelCustomCertificatePath": "Aangepast certificaat pad:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Indien ingeschakeld zullen bestanden met .rar en .zip extensies herkend worden als media bestanden.", "LabelEnterConnectUserName": "Gebruikersnaam of email:", "LabelEnterConnectUserNameHelp": "Dit is uw Emby Online Account gebruikersnaam of e-mailadres.", - "LabelEnableEnhancedMovies": "Verbeterde film weergave inschakelen", - "LabelEnableEnhancedMoviesHelp": "Wanneer ingeschakeld, zullen films worden weergegeven als mappen inclusief trailers, extra's, cast & crew en andere gerelateerde inhoud.", "HeaderSyncJobInfo": "Sync Opdrachten", "FolderTypeMixed": "Gemengde inhoud", "FolderTypeMovies": "Films", @@ -84,7 +70,6 @@ "LabelContentType": "Inhoud type:", "TitleScheduledTasks": "Geplande Taken", "HeaderSetupLibrary": "Stel uw mediabibliotheken in", - "ButtonAddMediaFolder": "Mediamap toevoegen", "LabelFolderType": "Maptype:", "LabelCountry": "Land:", "LabelLanguage": "Taal:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Door afbeeldingen en metadata op te slaan in de mediamappen kunnen ze makkelijker worden gevonden en bewerkt.", "LabelDownloadInternetMetadata": "Download afbeeldingen en metadata van het internet", "LabelDownloadInternetMetadataHelp": "Emby Server kan informatie downloaden van uw media om rijke presentaties mogelijk te maken.", - "TabPreferences": "Voorkeuren", "TabPassword": "Wachtwoord", "TabLibraryAccess": "Bibliotheek toegang", "TabAccess": "Toegang", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Toegang tot alle bibliotheken inschakelen", "DeviceAccessHelp": "Dit geldt alleen voor apparaten die uniek ge\u00efdentificeerd kunnen worden en voorkomen niet toegang via een webbrowser. Filteren van apparaat toegang voor gebruikers voorkomt dat zij nieuwe apparaten gebruiken totdat deze hier zijn goedgekeurd.", "LabelDisplayMissingEpisodesWithinSeasons": "Toon ontbrekende afleveringen binnen een seizoen", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Dit moet ook worden ingeschakeld voor TV bibliotheken in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Toon komende afleveringen binnen een seizoen", + "ImportMissingEpisodesHelp": "Indien ingeschakeld, wordt informatie over ontbrekende afleveringen in uw Emby de database ge\u00efmporteerd en weergegeven in de seizoenen en series. Dit kan aanzienlijk langere bibliotheekscans veroorzaken.", "HeaderVideoPlaybackSettings": "Video afspeel instellingen", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata voor de programma's in de gids", "HeaderPlaybackSettings": "Afspeel instellingen", "LabelAudioLanguagePreference": "Voorkeurs taal geluid:", "LabelSubtitleLanguagePreference": "Voorkeurs taal ondertiteling:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 beeldverhouding geadviseerd. Alleen JPG\/PNG.", "MessageNothingHere": "Lijst is leeg.", "MessagePleaseEnsureInternetMetadata": "Zorg ervoor dat het downloaden van metadata van het internet is ingeschakeld.", - "TabSuggested": "Aanbevolen", + "AlreadyPaidHelp1": "Als u een oudere versie van Media Browser voor Android aangeschaft hebt hoeft u niet opnieuw te betalen om deze app te activeren. Klik op OK om ons u een e-mail op {0} te sturen en wij activeren deze voor u.", + "AlreadyPaidHelp2": "Heb je Emby premi\u00e8re? Annuleer dan dit dialoogvenster, Activeer Emby premi\u00e8re in uw Emby Server Dashboard onder Help-> Emby premi\u00e8re en het zal automatisch worden ontgrendeld.", "TabSuggestions": "Suggesties", "TabLatest": "Nieuw", "TabUpcoming": "Binnenkort op TV", "TabShows": "Series", "TabEpisodes": "Afleveringen", "TabGenres": "Genres", - "TabPeople": "Personen", "TabNetworks": "TV-Studio's", "HeaderUsers": "Gebruikers", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Schrijvers", "OptionProducers": "Producenten", "HeaderResume": "Hervatten", + "HeaderContinueWatching": "Kijken hervatten", "HeaderNextUp": "Volgend", "NoNextUpItemsMessage": "Niets gevonden. Start met kijken!", "HeaderLatestEpisodes": "Nieuwste Afleveringen", @@ -185,6 +173,7 @@ "OptionPlayCount": "Afspeel telling", "OptionDatePlayed": "Datum afgespeeld", "OptionDateAdded": "Datum toegevoegd", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Albumartiest", "OptionArtist": "Artiest", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Hervatbaar", "ScheduledTasksHelp": "Klik op een taak om het schema aan te passen.", - "ScheduledTasksTitle": "Geplande taken", "TabMyPlugins": "Mijn Plugins", "TabCatalog": "Catalogus", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Nieuwste Titels", "HeaderRecentlyPlayed": "Recent afgespeeld", "HeaderFrequentlyPlayed": "Vaak afgespeeld", - "DevBuildWarning": "Ontwikkelaars versies zijn geheel voor eigen risico. Deze versies worden vaak vrijgegeven en zijn niet getest! De applicatie kan crashen en sommige functies kunnen mogelijk niet werken.", "LabelVideoType": "Video Type:", "OptionBluray": "Blu-ray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Handig voor piv\u00e9 of verborgen beheer accounts. De gebruiker zal handmatig m.b.v. gebruikersnaam en wachtwoord aan moeten melden.", "OptionDisableUser": "Dit account uitschakelen", "OptionDisableUserHelp": "Indien uitgeschakeld zal de server geen verbindingen van deze gebruiker toestaan. Bestaande verbindingen zullen abrupt worden be\u00ebindigd.", - "HeaderAdvancedControl": "Geavanceerd Beheer", "LabelName": "Naam:", "ButtonHelp": "Hulp", "OptionAllowUserToManageServer": "Deze gebruiker kan de server beheren", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna apparaten worden als gedeeld apparaat gezien totdat een gebruiker deze gaat gebruiken.", "OptionAllowLinkSharing": "Sta social media delen toe", "OptionAllowLinkSharingHelp": "Alleen webpagina's met media-informatie worden gedeeld. Media-bestanden worden nooit publiekelijk gedeeld. Gedeelde items zijn beperkt in tijd en verlopen na {0} dagen.", - "HeaderSharing": "Delen", "HeaderRemoteControl": "Gebruik op afstand", "OptionMissingTmdbId": "TMDB Id ontbreekt", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paden", "TabServer": "Server", "TabTranscoding": "Transcoderen", - "TitleAdvanced": "Geavanceerd", "OptionRelease": "Offici\u00eble Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Instabiel)", "LabelAllowServerAutoRestart": "Automatisch herstarten van de server toestaan om updates toe te passen", "LabelAllowServerAutoRestartHelp": "De server zal alleen opnieuw opstarten tijdens inactieve perioden, wanneer er geen gebruikers actief zijn.", "LabelRunServerAtStartup": "Start server bij het aanmelden", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Muziek", "TabOthers": "Overig", - "HeaderExtractChapterImagesFor": "Hoofdstuk afbeeldingen uitpakken voor:", "OptionMovies": "Films", "OptionEpisodes": "Afleveringen", "OptionOtherVideos": "Overige Video's", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Persoonlijke api sleutel:", "LabelFanartApiKeyHelp": "Verzoeken om fanart zonder een persoonlijke API sleutel geven resultaten terug die meer dan 7 dagen geleden goedgekeurd zijn. Een persoonlijke API sleutel brengt dat terug tot 48 uur en als u ook een fanart VIP lid bent wordt dit tot 10 minuten teruggebracht.", "ExtractChapterImagesHelp": "Uitpakken van hoofdstuk afbeeldingen biedt clients grafische scene selectie menu's. Het proces kan langzaam en processor intensief zijn en kan enkele gigabytes aan vrije ruimte vereisen. Het draait wanneer video's worden gevonden en als een nachtelijke geplande taak. Het schema kan bij de geplande taken worden aangepast. Het wordt niet aanbevolen om deze taak tijdens piekuren te draaien.", @@ -350,15 +330,15 @@ "TabCollections": "Collecties", "HeaderChannels": "Kanalen", "TabRecordings": "Opnamen", - "TabScheduled": "Gepland", "TabSeries": "Serie", "TabFavorites": "Favorieten", "TabMyLibrary": "Mijn bibliotheek", "ButtonCancelRecording": "Opname annuleren", - "LabelPrePaddingMinutes": "Tijd voor het programma (Minuten):", - "LabelPostPaddingMinutes": "Tijd na het programma (Minuten):", + "LabelStartWhenPossible": "Start zodra mogelijk:", + "LabelStopWhenPossible": "Stop zodra mogelijk:", + "MinutesBefore": "minuten voor", + "MinutesAfter": "minuten na", "HeaderWhatsOnTV": "Nu te zien", - "TabStatus": "Status", "TabSettings": "Instellingen", "ButtonRefreshGuideData": "Gidsgegevens Vernieuwen", "ButtonRefresh": "Vernieuwen", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Op alle kanalen opnemen", "OptionRecordAnytime": "Op elk tijdstip opnemen", "OptionRecordOnlyNewEpisodes": "Alleen nieuwe afleveringen opnemen", - "HeaderRepeatingOptions": "Herhaling opties", "HeaderDays": "Dagen", "HeaderActiveRecordings": "Actieve Opnames", "HeaderLatestRecordings": "Nieuwe Opnames", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Nieuwe Games", "HeaderRecentlyPlayedGames": "Recent gespeelde Games", "TabGameSystems": "Game Systemen", - "TitleMediaLibrary": "Media Bibliotheek", "TabFolders": "Mappen", "TabPathSubstitution": "Pad Vervangen", "LabelSeasonZeroDisplayName": "Weergave naam voor Seizoen 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Splits Versies Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Ontbreekt", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Pad vervangingen worden gebruikt om een pad op de server te vertalen naar een pad dat de client in staat stelt om toegang te krijgen. Doordat de client directe toegang tot de media op de server heeft is deze in staat om ze direct af te spelen via het netwerk. Daardoor wordt het gebruik van server resources om te streamen en te transcoderen vermeden.", - "HeaderFrom": "Van", - "HeaderTo": "Naar", - "LabelFrom": "Van:", - "LabelTo": "Naar:", - "LabelToHelp": "Voorbeeld: \\\\Server\\Films (een pad dat Emby apps kunnen benaderen)", - "ButtonAddPathSubstitution": "Vervanging toevoegen", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Ontbrekende Afleveringen", "OptionUnairedEpisode": "Toekomstige Afleveringen", "OptionEpisodeSortName": "Aflevering Sorteer Naam", "OptionSeriesSortName": "Serie Naam", "OptionTvdbRating": "Tvdb Waardering", - "EditCollectionItemsHelp": "Toevoegen of verwijderen van alle films, series, albums, boeken of games die u in deze collectie wilt groeperen.", "HeaderAddTitles": "Titels toevoegen", "LabelEnableDlnaPlayTo": "DLNA Afspelen Met inschakelen", "LabelEnableDlnaPlayToHelp": "Emby kan apparaten detecteren binnen uw netwerk en biedt de mogelijkheid om ze op afstand te controleren", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Systeem Profielen", "CustomDlnaProfilesHelp": "Maak een aangepast profiel om een \u200b\u200bnieuw apparaat aan te maken of overschrijf een systeemprofiel.", "SystemDlnaProfilesHelp": "Systeem profielen zijn alleen-lezen. Om een \u200b\u200bsysteem profiel te overschrijven, maakt u een aangepast profiel gericht op hetzelfde apparaat.", - "TitleDashboard": "Dashboard", "TabHome": "Start", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titels worden als niet afgespeeld beschouwd indien gestopt voor deze tijd", "LabelMaxResumePercentageHelp": "Titels worden ingesteld als volledig afgespeeld indien gestopt na deze tijd", "LabelMinResumeDurationHelp": "Titels korter dan dit zullen niet hervatbaar zijn", - "TitleAutoOrganize": "Automatisch Organiseren", "TabActivityLog": "Activiteiten Logboek", "TabSmartMatches": "Slimme overeenkomstige", "TabSmartMatchInfo": "Beheer je slimme overeenkomstige die toegevoegd zijn bij het gebruik van het Auto Organize correctie venster", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Door Emby Premiere aan te schaffen draagt u bij aan de verdere ontwikkeling van dit project. Een deel van alle donaties zal worden bijgedragen aan de andere gratis tools waarvan we afhankelijk zijn.", "DonationNextStep": "Eenmaal voltooid, gaat u terug en voert U Uw Emby Premiere sleutel, die u ontvangt per e-mail in.", "AutoOrganizeHelp": "Automatisch organiseren monitort de download mappen op nieuwe bestanden en verplaatst ze naar uw mediamappen.", - "AutoOrganizeTvHelp": "TV bestanden Organiseren voegt alleen afleveringen toe aan de bestaande series. Het zal geen nieuwe serie mappen aanmaken.", "OptionEnableEpisodeOrganization": "Nieuwe aflevering organisatie inschakelen", "LabelWatchFolder": "Bewaakte map:", "LabelWatchFolderHelp": "De server zal deze map doorzoeken tijdens de geplande taak voor 'Organiseren van nieuwe mediabestanden'", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Actieve taken", "HeaderActiveDevices": "Actieve apparaten", "HeaderPendingInstallations": "In afwachting van installaties", - "HeaderServerInformation": "Server informatie", "ButtonRestartNow": "Nu opnieuw opstarten", "ButtonRestart": "Herstart", "ButtonShutdown": "Afsluiten", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere sleutel ontbreekt of is ongeldig.", "ErrorMessageInvalidKey": "Voordat premium inhoud kan worden geregistreerd, moet u ook een actief Emby Premiere abonnement hebben.", "HeaderDisplaySettings": "Weergave instellingen", - "TabPlayTo": "Afspelen met", "LabelEnableDlnaServer": "DLNA server inschakelen", "LabelEnableDlnaServerHelp": "Sta UPnP apparaten op uw netwerk toe om door Emby inhoud te bladeren en af te spelen.", "LabelEnableBlastAliveMessages": "Alive berichten zenden", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Bepaalt de duur in seconden tussen server Alive berichten.", "LabelDefaultUser": "Standaard gebruiker:", "LabelDefaultUserHelp": "Bepaalt welke gebruikers bibliotheek op aangesloten apparaten moet worden weergegeven. Dit kan worden overschreven voor elk apparaat met behulp van profielen.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Instellingen", "HeaderRequireManualLogin": "Vereist handmatig aanmelden met gebruikersnaam voor:", "HeaderRequireManualLoginHelp": "Indien uitgeschakeld toont de client een aanmeldscherm met een visuele selectie van gebruikers.", "OptionOtherApps": "Overige apps", "OptionMobileApps": "Mobiele apps", - "HeaderNotificationList": "Klik op een melding om de opties voor het versturen te configureren.", - "NotificationOptionApplicationUpdateAvailable": "Programma-update beschikbaar", - "NotificationOptionApplicationUpdateInstalled": "Programma-update ge\u00efnstalleerd", - "NotificationOptionPluginUpdateInstalled": "Plug-in-update ge\u00efnstalleerd", - "NotificationOptionPluginInstalled": "Plug-in ge\u00efnstalleerd", - "NotificationOptionPluginUninstalled": "Plug-in verwijderd", - "NotificationOptionVideoPlayback": "Video afspelen gestart", - "NotificationOptionAudioPlayback": "Geluid afspelen gestart", - "NotificationOptionGamePlayback": "Game gestart", - "NotificationOptionVideoPlaybackStopped": "Video afspelen gestopt", - "NotificationOptionAudioPlaybackStopped": "Geluid afspelen gestopt", - "NotificationOptionGamePlaybackStopped": "Afspelen spel gestopt", - "NotificationOptionTaskFailed": "Mislukken van de geplande taak", - "NotificationOptionInstallationFailed": "Mislukken van de installatie", - "NotificationOptionNewLibraryContent": "Nieuwe content toegevoegd", - "NotificationOptionCameraImageUploaded": "Camera afbeelding ge\u00fcpload", - "NotificationOptionUserLockedOut": "Gebruikersaccount vergrendeld", - "HeaderSendNotificationHelp": "Notificaties worden in uw Emby inbox afgeleverd. Additionele opties kunnen vanuit de Services tab ge\u00efnstalleerd worden.", - "NotificationOptionServerRestartRequired": "Server herstart nodig", "LabelNotificationEnabled": "Deze melding inschakelen", "LabelMonitorUsers": "Monitor activiteit van:", "LabelSendNotificationToUsers": "Stuur de melding naar:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Vorige", "LabelGroupMoviesIntoCollections": "Groepeer films in collecties", "LabelGroupMoviesIntoCollectionsHelp": "Bij de weergave van film lijsten, zullen films die tot een collectie behoren worden weergegeven als een gegroepeerd object.", - "NotificationOptionPluginError": "Plug-in fout", "ButtonVolumeUp": "Volume omhoog", "ButtonVolumeDown": "Volume omlaag", "HeaderLatestMedia": "Nieuw in bibliotheek", "OptionNoSubtitles": "Geen ondertiteling", - "OptionSpecialFeatures": "Extra's", "HeaderCollections": "Collecties", "LabelProfileCodecsHelp": "Gescheiden door een komma. Deze kan leeg gelaten worden om te laten gelden voor alle codecs.", "LabelProfileContainersHelp": "Gescheiden door een komma. Deze kan leeg gelaten worden om te laten gelden voor alle containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Geen beschikbare Plugins.", "LabelDisplayPluginsFor": "Toon Plugins voor:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Naam aflevering", "LabelSeriesNamePlain": "Naam serie", "ValueSeriesNamePeriod": "Serie.Naam", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Laatste nummer aflevering", "HeaderTypeText": "Voer tekst in", "LabelTypeText": "Tekst", - "HeaderSearchForSubtitles": "Zoeken naar ondertitels", - "MessageNoSubtitleSearchResultsFound": "Geen zoekresultaten gevonden.", "TabDisplay": "Weergave", "TabLanguages": "Talen", "TabAppSettings": "App Instellingen", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Indien ingeschakeld, zal de herkenningsmelodie in de achtergrond worden afgespeeld tijdens het bladeren door de bibliotheek.", "LabelEnableBackdropsHelp": "Indien ingeschakeld, zullen achtergrondafbeeldingen in de achtergrond worden getoond van een aantal pagina's tijdens het browsen door de bibliotheek.", "HeaderHomePage": "Startpagina", - "HeaderSettingsForThisDevice": "Instellingen voor dit apparaat", "OptionAuto": "Auto", "OptionYes": "Ja", "OptionNo": "Nee", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Startpagina sectie 2:", "LabelHomePageSection3": "Startpagina sectie 3:", "LabelHomePageSection4": "Startpagina sectie 4:", - "OptionMyMediaButtons": "Mijn media (knoppen)", "OptionMyMedia": "Mijn media", "OptionMyMediaSmall": "Mijn media (klein)", "OptionResumablemedia": "Hervatten", @@ -815,53 +752,21 @@ "HeaderReports": "Rapporten", "HeaderSettings": "Instellingen", "OptionDefaultSort": "Standaard", - "OptionCommunityMostWatchedSort": "Meest bekeken", "TabNextUp": "Volgend", - "PlaceholderUsername": "Gebruikersnaam", "HeaderBecomeProjectSupporter": "Emby Premiere verkrijgen", "MessageNoMovieSuggestionsAvailable": "Er zijn momenteel geen film suggesties beschikbaar. Begin met het bekijken en waardeer uw films, kom daarna terug om uw aanbevelingen te bekijken.", "MessageNoCollectionsAvailable": "Collecties maken het u mogelijk om Films, Series, Albums, Boeken en Games te groeperen. Klik op de + knop om Collecties aan te maken.", "MessageNoPlaylistsAvailable": "Met afspeellijsten kunt u een lijst maken waarvan de items achter elkaar afgespeeld worden. Om een item toe te voegen klikt u met rechts of tik en houd het vast om het te selecteren, klik vervolgens op Toevoegen aan afspeellijst.", "MessageNoPlaylistItemsAvailable": "De afspeellijst is momenteel leeg.", - "ButtonDismiss": "Afwijzen", "ButtonEditOtherUserPreferences": "Wijzig het profiel, afbeelding en persoonlijke voorkeuren van deze gebruiker.", "LabelChannelStreamQuality": "Voorkeurs kwaliteit voor internet kanaal:", "LabelChannelStreamQualityHelp": "Bij weinig beschikbare bandbreedte kan het verminderen van de kwaliteit betere streams opleveren.", "OptionBestAvailableStreamQuality": "Best beschikbaar", "ChannelSettingsFormHelp": "Installeer kanalen zoals Trailers en Vimeo in de Plug-in catalogus.", - "ViewTypePlaylists": "Afspeellijsten", "ViewTypeMovies": "Films", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Muziek", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artiesten", - "ViewTypeBoxSets": "Collecties", - "ViewTypeChannels": "Kanalen", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Nu uitgezonden", - "ViewTypeLatestGames": "Nieuwste games", - "ViewTypeRecentlyPlayedGames": "Recent gespeelt", - "ViewTypeGameFavorites": "Favorieten", - "ViewTypeGameSystems": "Game systemen", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Hervatten", - "ViewTypeTvNextUp": "Volgende", - "ViewTypeTvLatest": "Nieuwste", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favoriete Series", - "ViewTypeTvFavoriteEpisodes": "Favoriete Afleveringen", - "ViewTypeMovieResume": "Hervatten", - "ViewTypeMovieLatest": "Nieuwste", - "ViewTypeMovieMovies": "Films", - "ViewTypeMovieCollections": "Collecties", - "ViewTypeMovieFavorites": "Favorieten", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Nieuwste", - "ViewTypeMusicPlaylists": "Afspeellijsten", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album artiesten", "HeaderOtherDisplaySettings": "Beeld instellingen", "ViewTypeMusicSongs": "Titels", "ViewTypeMusicFavorites": "Favorieten", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Gedownloade afbeeldingen kunnen direct in extrafanart en extrathumbs opgeslagen worden voor maximale Kodi skin compatibiliteit.", "TabServices": "Diensten", "TabLogs": "Logboeken", - "HeaderServerLogFiles": "Server logboek bestanden:", "TabBranding": "Huisstijl", "HeaderBrandingHelp": "Pas het uiterlijk van Emby aan, aan de behoeften van uw groep of organisatie.", "LabelLoginDisclaimer": "Aanmeld vrijwaring:", @@ -917,7 +821,6 @@ "HeaderDevice": "Apparaat", "HeaderUser": "Gebruiker", "HeaderDateIssued": "Datum uitgegeven", - "LabelChapterName": "Hoofdstuk {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identificatie Header", "LabelValue": "Waarde:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Subtekenreeks", "TabView": "Weergave", - "TabSort": "Sorteren", "TabFilter": "Filter", "ButtonView": "Weergave", "LabelPageSize": "Itemlimiet:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Synchronisatie", "TabPlaylists": "Afspeellijst", "ButtonClose": "Sluiten", "LabelAllLanguages": "Alle talen", @@ -956,7 +856,6 @@ "LabelImage": "Afbeelding:", "HeaderImages": "Afbeeldingen", "HeaderBackdrops": "Achtergronden", - "HeaderScreenshots": "Schermafbeelding", "HeaderAddUpdateImage": "Afbeelding toevoegen\/wijzigen", "LabelDropImageHere": "Afbeelding hier neerzetten", "LabelJpgPngOnly": "Alleen JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Vergrendeld", "OptionUnidentified": "Onge\u00efdentificeerd", "OptionMissingParentalRating": "Ontbrekende kijkwijzer classificatie", - "OptionStub": "Stub", "OptionSeason0": "Seizoen 0", "LabelReport": "Rapport:", "OptionReportSongs": "Titels", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "Meer", "HeaderActivity": "Activiteit", - "ScheduledTaskStartedWithName": "{0} is gestart", - "ScheduledTaskCancelledWithName": "{0} is geannuleerd", - "ScheduledTaskCompletedWithName": "{0} is gereed", - "ScheduledTaskFailed": "Geplande taak is gereed", "PluginInstalledWithName": "{0} is ge\u00efnstalleerd", "PluginUpdatedWithName": "{0} is bijgewerkt", "PluginUninstalledWithName": "{0} is gede\u00efnstalleerd", - "ScheduledTaskFailedWithName": "{0} is mislukt", - "DeviceOnlineWithName": "{0} is verbonden", "UserOnlineFromDevice": "{0} heeft verbinding met {1}", - "DeviceOfflineWithName": "{0} is losgekoppeld", "UserOfflineFromDevice": "Verbinding van {0} met {1} is verbroken", - "SubtitlesDownloadedForItem": "Ondertiteling voor {0} is gedownload", - "SubtitleDownloadFailureForItem": "Downloaden van ondertiteling voor {0} is mislukt", "LabelRunningTimeValue": "Looptijd: {0}", "LabelIpAddressValue": "IP adres: {0}", "UserLockedOutWithName": "Gebruikersaccount {0} is vergrendeld", "UserConfigurationUpdatedWithName": "Gebruikersinstellingen voor {0} zijn bijgewerkt", "UserCreatedWithName": "Gebruiker {0} is aangemaakt", - "UserPasswordChangedWithName": "Wachtwoord voor {0} is gewijzigd", "UserDeletedWithName": "Gebruiker {0} is verwijderd", "MessageServerConfigurationUpdated": "Server configuratie is bijgewerkt", "MessageNamedServerConfigurationUpdatedWithValue": "Sectie {0} van de server configuratie is bijgewerkt", "MessageApplicationUpdated": "Emby Server is bijgewerkt", "UserDownloadingItemWithValues": "{0} download {1}", - "UserStartedPlayingItemWithValues": "{0} heeft afspelen van {1} gestart", - "UserStoppedPlayingItemWithValues": "{0} heeft afspelen van {1} gestopt", - "AppDeviceValues": "App: {0}, Apparaat: {1}", "ProviderValue": "Aanbieder: {0}", "HeaderRecentActivity": "Recente activiteit", "HeaderPeople": "Personen", @@ -1051,27 +936,18 @@ "LabelAirDate": "Uitzend dagen:", "LabelAirTime:": "Uitzend tijd:", "LabelRuntimeMinutes": "Speelduur (minuten):", - "LabelRevenue": "Omzet ($):", - "HeaderAlternateEpisodeNumbers": "Afwijkende afleveringsnummers", "HeaderSpecialEpisodeInfo": "Speciale afleveringsinformatie", - "HeaderExternalIds": "Externe Id's", - "LabelAirsBeforeSeason": "Uitgezonden voor seizoen:", - "LabelAirsAfterSeason": "Uitgezonden na seizoen:", - "LabelAirsBeforeEpisode": "Uitgezonden voor aflevering:", "LabelDisplaySpecialsWithinSeasons": "Voeg specials toe aan het seizoen waarin ze uitgezonden zijn", - "HeaderCountries": "Landen", "HeaderGenres": "Genres", - "HeaderPlotKeywords": "Trefwoorden plot", + "HeaderPlotKeywords": "Trefwoorden verhaallijn", "HeaderStudios": "Studio's", "HeaderTags": "Labels", - "MessageLeaveEmptyToInherit": "Leeg laten om instellingen van bovenliggend item of de algemene waarde over te nemen.", "OptionNoTrailer": "Geen trailer", "ButtonPurchase": "Aankoop", "OptionActor": "Acteur", "OptionComposer": "Componist", "OptionDirector": "Regiseur", "OptionProducer": "Producent", - "OptionWriter": "Schrijver", "LabelAirDays": "Uitzend dagen:", "LabelAirTime": "Uitzend tijd:", "HeaderMediaInfo": "Media informatie", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Ouderlijk toezicht", "HeaderAccessSchedule": "Schema Toegang", "HeaderAccessScheduleHelp": "Maak een toegangsschema om de toegang tot bepaalde tijden te beperken.", - "ButtonAddSchedule": "Voeg schema toe", "LabelAccessDay": "Dag van de week:", "LabelAccessStart": "Start tijd:", "LabelAccessEnd": "Eind tijd:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Opdrachten", "HeaderThisUserIsCurrentlyDisabled": "Deze gebruiker is momenteel uitgesloten", "MessageReenableUser": "Zie hieronder hoe opnieuw in te schakelen", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata voor:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Films binnenkort", "HeaderUpcomingSports": "Sport binnenkort", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Afspeellijsten", "HeaderViewStyles": "Bekijk stijlen", "TabPhotos": "Foto's", - "TabVideos": "Video's", "HeaderWelcomeToEmby": "Welkom bij Emby", "EmbyIntroMessage": "Met Emby kunt u eenvoudig films, muziek en foto's naar uw telefoon, tablet en andere apparatuur streamen.", "ButtonSkip": "Overslaan", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Kolommen", "ButtonReset": "Rest", "OptionEnableExternalVideoPlayers": "Inschakelen van externe video-spelers", - "ButtonUnlockGuide": "Gids vrijgeven", "LabelEnableFullScreen": "Schakel Full Screen in", "LabelEmail": "Email adres:", "LabelUsername": "Gebruikersnaam:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overzicht", "HeaderShortOverview": "Kort overzicht", "HeaderType": "Type", - "HeaderSeverity": "Ernst", "OptionReportActivities": "Activiteiten log", "HeaderTunerDevices": "Tuner apparaten", "HeaderAddDevice": "Voeg apparaat toe", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Herhaling", "LabelEnableThisTuner": "Schakel deze tuner in", "LabelEnableThisTunerHelp": "Schakel uit om te voorkomen dat er van deze tuner zenders ge\u00efmporteerd worden.", - "HeaderUnidentified": "One\u00efdentificaard", "HeaderImagePrimary": "Primair", "HeaderImageBackdrop": "Achtergrond", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "TV Gids configureren", "LabelDataProvider": "Gegevensleverancier:", "OptionSendRecordingsToAutoOrganize": "Automatisch organiseren van opnames in de bestaande serie mappen van andere bibliotheken", - "HeaderDefaultPadding": "Standaard 'Padding'", + "HeaderDefaultRecordingSettings": "Standaard opname-instellingen", "OptionEnableRecordingSubfolders": "Maak sub-mappen voor categorie\u00ebn zoals Sport, Kinderen, enz.", "HeaderSubtitles": "Ondertiteling", "HeaderVideos": "Video's", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Mappen", "LabelDisplayName": "Weergave naam:", "HeaderNewRecording": "Nieuwe opname", - "ButtonAdvanced": "Geavanceerd", "LabelCodecIntrosPath": "Codec intro's pad:", "LabelCodecIntrosPathHelp": "Een map met video bestanden. Als de bestandsnaam van een video bestand overeenkomt met de video-, audiocodec ,audio profiel of een Tag dan zal deze afgespeeld worden voor de hoofd film.", "OptionConvertRecordingsToStreamingFormat": "Opnamen automatisch converteren naar een streaming formaat", "OptionConvertRecordingsToStreamingFormatHelp": "Opnames zullen direct worden omgezet naar MP4 voor het eenvoudig afspelen op uw apparaten.", "FeatureRequiresEmbyPremiere": "Deze functie vereist een actieve Emby Premiere abonnement.", "FileExtension": "Bestandsextensie", - "OptionReplaceExistingImages": "Bestaande afbeeldingen vervangen", "OptionPlayNextEpisodeAutomatically": "Speel volgende aflevering automatisch", "OptionDownloadImagesInAdvance": "Download alle afbeeldingen van tevoren", "SettingsSaved": "Instellingen opgeslagen.", @@ -1348,7 +1216,6 @@ "Password": "Wachtwoord", "DeleteImage": "Verwijder afbeelding", "MessageThankYouForSupporting": "Bedankt voor uw steun aan Emby", - "MessagePleaseSupportProject": "Steun Emby a.u.b.", "DeleteImageConfirmation": "Weet u zeker dat u deze afbeelding wilt verwijderen?", "FileReadCancelled": "Bestand lezen is geannuleerd.", "FileNotFound": "Bestand niet gevonden.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Deze Emby Server moet worden bijgewerkt. Om de laatste versie te downloaden, gaat u naar {0}", "LabelFromHelp": "Voorbeeld: {0} (op de server)", "HeaderMyMedia": "Mijn media", - "LabelAutomaticUpdateLevel": "Niveau automatische update:", - "LabelAutomaticUpdateLevelForPlugins": "Niveau automatische update voor plugins:", "ErrorLaunchingChromecast": "Er is een fout opgetreden bij het starten van chromecast. Zorg ervoor dat uw apparaat is aangesloten op uw draadloze netwerk.", "MessageErrorLoadingSupporterInfo": "Er is een fout bij het laden van Emby Premiere informatie opgetreden. Probeer het later opnieuw.", - "MessageLinkYourSupporterKey": "Koppel uw Emby Premiere sleutel aan max. {0} Emby Connect-leden om te genieten van gratis toegang tot de volgende apps:", "HeaderConfirmRemoveUser": "Gebruiker verwijderen", - "MessageConfirmRemoveConnectSupporter": "Weet u zeker dat u de extra Emby Premiere voordelen van deze gebruiker wilt verwijderen?", "ValueTimeLimitSingleHour": "Tijdslimiet: 1 uur", "ValueTimeLimitMultiHour": "Tijdslimiet: {0} uren", "PluginCategoryGeneral": "Algemeen", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Geplande taken", "MessageItemsAdded": "Items toegevoegd", "HeaderSelectCertificatePath": "Selecteer Certificaat Pad", - "ConfirmMessageScheduledTaskButton": "Deze operatie loopt normaal gesproken automatisch als een geplande taak en behoeft geen handmatige inspanning. Om de geplande taak te configureren, zie:", "HeaderSupporterBenefit": "Een actief Emby Premiere abonnement geeft extra voordelen zoals toegang tot synchronisatie, Premium plugins, Internet kanalen en meer. {0} meer info{1}.", "HeaderWelcomeToProjectServerDashboard": "Welkom bij het Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welkom bij Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Uitgeschakeld", "ButtonMoreInformation": "Meer informatie", "LabelNoUnreadNotifications": "Geen ongelezen meldingen.", - "LabelAllPlaysSentToPlayer": "Alles zal worden verzonden naar de geselecteerde speler.", "MessageInvalidUser": "Foutieve gebruikersnaam of wachtwoord. Probeer opnieuw.", "HeaderLoginFailure": "Aanmeld fout", "RecommendationBecauseYouLike": "Omdat u {0} leuk vond.", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Opname geannuleerd.", "MessageRecordingScheduled": "Opname schema", "HeaderConfirmSeriesCancellation": "Bevestig Annulering Series", - "MessageConfirmSeriesCancellation": "Weet u zeker dat u deze serie wilt annuleren?", - "MessageSeriesCancelled": "Serie geannuleerd.", "HeaderConfirmRecordingDeletion": "Bevestigen Verwijdering Opname", "MessageRecordingSaved": "Opname opgeslagen.", "OptionWeekend": "Weekenden", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Bladeren of voer het pad in om te gebruiken voor server cache-bestanden. De map moet beschrijfbaar zijn.", "HeaderSelectTranscodingPathHelp": "Bladeren of voer het pad in om te gebruiken voor het transcoderen van tijdelijke bestanden. De map moet beschrijfbaar zijn.", "HeaderSelectMetadataPathHelp": "Blader of voer het pad in dat u wilt gebruiken om metadata in op te slaan. De map moet beschrijfbaar zijn.", - "HeaderSelectChannelDownloadPath": "Selecteer Kanaal Download Pad", - "HeaderSelectChannelDownloadPathHelp": "Bladeren of voer het pad in om te gebruiken voor het opslaan van kanaal cache-bestanden. De map moet beschrijfbaar zijn.", - "LabelChapterDownloaders": "Hoofdstuk downloaders:", - "LabelChapterDownloadersHelp": "Schakel rangschikking van uw favoriete hoofdstuk downloaders in, in volgorde van prioriteit. Lagere prioriteit downloaders zullen enkel gebruikt worden om de ontbrekende gegevens in te vullen.", "HeaderFavoriteAlbums": "Favoriete Albums", "HeaderLatestChannelMedia": "Nieuwste Kanaal Items", "ButtonOrganizeFile": "Bestand Organiseren", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "Draait op http poort {0}.", "LabelRunningOnPorts": "Draait op http poort {0} en https poort {1}.", "HeaderLatestFromChannel": "Laatste van {0}", - "HeaderCurrentSubtitles": "Huidige ondertiteling", "ButtonRemoteControl": "Beheer op afstand", "HeaderLatestTvRecordings": "Nieuwste opnames", "LabelCurrentPath": "Huidige pad:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Item verwijderen", "ConfirmDeleteItem": "Verwijderen van dit item zal het verwijderen uit zowel het bestandssysteem als de Media Bibliotheek. Weet u zeker dat u wilt doorgaan?", "ConfirmDeleteItems": "Het verwijderen van deze items verwijdert ze van het bestandssysteem en uit uw bibliotheek. Weet u zeker dat u verder wilt gaan?", - "MessageValueNotCorrect": "De ingevoerde waarde is niet correct. Probeer het opnieuw.", "MessageItemSaved": "Item opgeslagen.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Accepteer a.u.b. de voorwaarden voordat u doorgaat.", "OptionOff": "Uit", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Achtergrondafbeelding ontbreekt.", "MissingLogoImage": "Logo ontbreekt.", "MissingEpisode": "Ontbrekende aflevering.", - "OptionScreenshots": "Schermopnamen", "OptionBackdrops": "Achtergronden", "OptionImages": "Afbeeldingen", "OptionKeywords": "Trefwoorden", @@ -1642,10 +1494,6 @@ "OptionPeople": "Personen", "OptionProductionLocations": "Productie Locaties", "OptionBirthLocation": "Geboorte Locatie", - "LabelAllChannels": "Alle kanalen", - "AttributeNew": "Nieuw", - "AttributePremiere": "Premi\u00e8re", - "AttributeLive": "Live", "HeaderChangeFolderType": "Verander Content Type", "HeaderChangeFolderTypeHelp": "Als u het type wilt wijzigen, verwijder het dan en maak dan een nieuwe bibliotheek met het nieuwe type.", "HeaderAlert": "Waarschuwing", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Kwaliteit", "HeaderNotifications": "Meldingen", "HeaderSelectPlayer": "Selecteer Speler", - "MessageInternetExplorerWebm": "Voor het beste resultaat met Internet Explorer installeert u de WebM plugin.", "HeaderVideoError": "Video Fout", "ButtonViewSeriesRecording": "Bekijk serie opnamen", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Speelduur", "HeaderParentalRating": "Kijkwijzer classificatie", "HeaderReleaseDate": "Uitgave datum", - "HeaderDateAdded": "Datum toegevoegd", "HeaderSeries": "Series:", "HeaderSeason": "Seizoen", "HeaderSeasonNumber": "Seizoen nummer", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Verwijder media locatie", "MessageConfirmRemoveMediaLocation": "Weet u zeker dat u deze locatie wilt verwijderen?", "LabelNewName": "Nieuwe naam:", - "HeaderAddMediaFolder": "Voeg media map toe", - "HeaderAddMediaFolderHelp": "Naam (Films, Muziek, TV enz.):", "HeaderRemoveMediaFolder": "Verwijder media map", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "De volgende media locaties worden verwijderd uit de Emby bibliotheek:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Weet u zeker dat u deze media map wilt verwijderen?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Verander content type", "HeaderMediaLocations": "Media Locaties", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optioneel: Pad vervanging kan server paden naar netwerk locaties verwijzen zodat clients direct kunnen afspelen.", "FolderTypeUnset": "Niet ingesteld (gemengde inhoud)", "BirthPlaceValue": "Geboorte plaats: {0})", "DeathDateValue": "Overleden: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0}-Heden", "ValueAwards": "Prijzen: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiere {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1800,7 +1641,7 @@ "MediaInfoLongitude": "Lengte graad", "MediaInfoShutterSpeed": "Sluitertijd", "MediaInfoSoftware": "Software", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "Meer als dit", "HeaderMovies": "Films", "HeaderAlbums": "Albums", "HeaderGames": "Games", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Selecteer eigen pad naar intro's", - "HeaderRateAndReview": "Beoordelen", "HeaderThankYou": "Bedankt", - "MessageThankYouForYourReview": "Bedankt voor de beoordeling", - "LabelYourRating": "Uw beoordeling:", "LabelFullReview": "Volledige beoordeling:", - "LabelShortRatingDescription": "Korte beoordeling overzicht:", - "OptionIRecommendThisItem": "Ik beveel dit item aan", "ReleaseYearValue": "Jaar van uitgifte: {0}", "OriginalAirDateValue": "Originele uitzenddatum: {0}", "WebClientTourContent": "Bekijk uw recent toegevoegde media, volgende afleveringen, en meer. De groene cirkels geven aan hoeveel afgespeelde items u heeft.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Beheer eenvoudig langlopende transacties met geplande taken. Beslis zelf wanneer ze worden uitgevoerd en hoe vaak.", "DashboardTourMobile": "Het Emby Server dashboard werkt goed op smartphones en tablets. Beheer uw server vanuit uw handpalm, altijd en overal.", "DashboardTourSync": "Synchroniseer uw persoonlijke media naar uw apparaten om het offline te bekijken.", - "MessageRefreshQueued": "Vernieuwen wachtrij", "TabExtras": "Extra's", "HeaderUploadImage": "Afbeelding uploaden", "DeviceLastUsedByUserName": "Het laatste gebruikt door {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Synchroniseer media", "HeaderCancelSyncJob": "Annuleer synchronisatie", "CancelSyncJobConfirmation": "Als u de synchroniseertaak annuleert wordt de gesynchroniseerde media bij de volgende synchroniseertaak van het apparaat verwijderd. Weet u zeker dat u door wilt gaan?", - "MessagePleaseSelectDeviceToSyncTo": "Selecteer een apparaat om mee te synchroniseren.", - "MessageSyncJobCreated": "Synchronisatie taak gemaakt.", "LabelQuality": "Kwaliteit", - "OptionAutomaticallySyncNewContent": "Nieuwe inhoud automatisch synchroniseren", - "OptionAutomaticallySyncNewContentHelp": "Nieuwe inhoud zal automatisch met het apparaat gesynchroniseerd worden.", "MessageBookPluginRequired": "Vereist installatie van de Bookshelf plugin", "MessageGamePluginRequired": "Vereist installatie van de GameBrowser plugin", "MessageUnsetContentHelp": "Inhoud zal als gewone folders worden getoond. Gebruik voor het beste resultaat de Metadata Manager om de inhoud types voor subfolders in te stellen.", @@ -1941,18 +1772,11 @@ "TabScenes": "Hoofdstukken", "HeaderUnlockApp": "App vrijgeven", "HeaderUnlockSync": "Ontgrendel Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Ontgrendel deze functie met een kleine eenmalige aankoop, of met een actief Emby Premiere abonnement.", - "MessageUnlockAppWithSupporter": "Ontgrendel deze functie met een actief Emby Premiere abonnement.", - "MessageToValidateSupporter": "Als u een actieve Emby Premiere abonnement heeft , zorg er dan voor dat u deze activeert in uw Emby Server Dashboard door te klikken op Emby Premiere in het hoofdmenu.", "MessagePaymentServicesUnavailable": "Betaal services zijn momenteel niet beschikbaar, Probeer het later svp. nog eens.", - "ButtonUnlockWithPurchase": "Geef vrij met een aankoop", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "De Live TV Gids is momenteel gelimiteerd tot {0} kanalen. Klik op de Geef vrij knop om te zien hoe u deze limiet op kunt heffen.", "OptionEnableFullscreen": "Schakel volledig scherm in", "ButtonServer": "Server", "HeaderLibrary": "Bibliotheek", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Zeg iets zoals...", "NoResultsFound": "Geen resultaten gevonden.", "ButtonManageServer": "Beheer server", "ButtonPreferences": "Voorkeuren", @@ -1963,7 +1787,7 @@ "ErrorMessageUsernameInUse": "Deze gebruikersnaam is al in gebruik. Kies een andere en probeer het opnieuw.", "ErrorMessageEmailInUse": "Dit emailadres is al in gebruik. Kies een ander en probeer het opnieuw, of gebruik de vergeten wachtwoord functie.", "MessageThankYouForConnectSignUp": "Bedankt voor het aanmelden bij Emby Connect. Een e-mail met instructies hoe uw account bevestigd moet worden wordt verstuurd. Bevestig het account en keer terug om aan te melden.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "MessageThankYouForConnectSignUpNoValidation": "Bedankt voor het aanmelden bij Emby Connect. U wordt gevraagd om aan te melden met uw Emby Connect informatie.", "ButtonShare": "Delen", "HeaderConfirm": "bevestigen", "MessageConfirmDeleteTunerDevice": "Weet u zeker dat u dit apparaat wilt verwijderen?", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Maak een account bij {0}", "ErrorPleaseSelectLineup": "Selecteer een lineup en probeer het opnieuw. Als er geen lineups beschibaar zijn, controleer dan of uw gebruikersnaam, wachtwoord en postcode correct zijn.", "HeaderTryEmbyPremiere": "Probeer Emby Premiere", - "ButtonBecomeSupporter": "Verkrijg Emby Premiere", - "ButtonClosePlayVideo": "Sluit af en speel mijn media", - "MessageDidYouKnowCinemaMode": "Wist u dat u met Emby Premiere uw ervaring met functies zoals Cinema Mode kunt verbeteren?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.", "OptionEnableDisplayMirroring": "Schakel beeld spiegeling in", "HeaderSyncRequiresSupporterMembership": "Sync Vereist een actief Premiere lidmaatschap.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync vereist een verbinding met een Emby Server met een actief Emby Premiere abonnement.", "ErrorValidatingSupporterInfo": "Er is een fout bij het valideren van uw Emby Premiere gegevens . Probeer het later opnieuw.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Synchroniseren gestart", - "NoSlideshowContentFound": "Geen voorstelling afbeeldingen gevonden.", - "OptionPhotoSlideshow": "Foto voorstelling", "OptionBackdropSlideshow": "Achtergrondafbeelding voorstelling", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Andere", @@ -1996,58 +1814,38 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "Klik op de Externe Services tab om de opties voor andere Live TV aanbieders te zien.", "ButtonGuide": "Gids", - "ButtonRecordedTv": "Tv-opnamen", "ConfirmEndPlayerSession": "Wilt u Emby afsluiten op dit toestel?", "ButtonYes": "Ja", "AddUser": "Gebruiker toevoegen", "ButtonNo": "Nee", - "ButtonRestorePreviousPurchase": "Herstel aankoop", - "AlreadyPaid": "Al betaald?", - "AlreadyPaidHelp1": "Als u een oudere versie van Media Browser voor Android aangeschaft hebt hoeft u niet opnieuw te betalen om deze app te activeren. Klik op OK om ons u een e-mail op {0} te sturen en wij activeren deze voor u.", - "AlreadyPaidHelp2": "Heb je Emby premi\u00e8re? Annuleer dan dit dialoogvenster, Activeer Emby premi\u00e8re in uw Emby Server Dashboard onder Help-> Emby premi\u00e8re en het zal automatisch worden ontgrendeld.", "ButtonNowPlaying": "Wordt nu afgespeeld", "HeaderLatestMovies": "Nieuwste Films", - "EmbyPremiereMonthly": "Emby Premiere Maandelijks", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Maandelijks {0}", "HeaderEmailAddress": "E-mailadres", - "TextPleaseEnterYourEmailAddressForSubscription": "Vul alstublieft uw e-mail adres in. ", "LoginDisclaimer": "Emby is ontworpen om uw persoonlijke mediabibliotheek te helpen beheren, zoals home video's en foto's. Zie onze gebruiksvoorwaarden. Het gebruik van Emby software betekent acceptatie van deze voorwaarden.", "TermsOfUse": "Gebruiksvoorwaarden", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Voeg Media Bibliotheek toe", "ButtonManageFolders": "Beheer mappen", - "MessageTryMicrosoftEdge": "Voor een betere ervaring in Windows 10 gebruikt u de nieuwe Microsoft Edge webbrowser.", - "MessageTryModernBrowser": "Voor een betere ervaring in Windows, probeer een moderne webbrowser zoals Google Chrome, Firefox of Opera.", "ErrorAddingListingsToSchedulesDirect": "Er ging iets mis bij het toevoegen van de lineup aan uw Schedules Direct account. Schedules Direct staat maar een beperkt aantal lineups per account toe. Het kan nodig zijn dat u zich aan moet melden op de Schedules Direct website en andere lineups moet verwijderen voordat u verder kunt.", "PleaseAddAtLeastOneFolder": "Voeg tenminste 1 map aan deze bibliotheek toe door op de Toevoegen knop te klikken.", "ErrorAddingMediaPathToVirtualFolder": "Er ging iets mis bij het toevoegen van het media pad. Controleer of het pad klopt en of het Emby server process toegang heeft tot het pad.", "ErrorRemovingEmbyConnectAccount": "Er ging iets mis bij het verwijderen van het Emby Connect account. Controleer de internet verbinding en probeer het opnieuw.", "ErrorAddingEmbyConnectAccount1": "Er ging iets mis bij het toevoegen van de Emby Connect account. Hebt u een Emby account aangemaakt? Registreer op {0}.", "ErrorAddingEmbyConnectAccount2": "Verzekert u zich er a.u.b. van dat het Emby account geactiveerd is door de instructies te volgen in de e-mail die verstuurd is na het aanmaken van de account. Als u deze mail niet ontvangen hebt, stuur dan a.u.b. een e-mail naar {0} vanaf het e-mailadres dat gebruikt is bij het aanmaken van het Emby account.", - "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "ErrorAddingEmbyConnectAccount3": "De Emby account is al gekoppeld aan een bestaande lokale gebruiker. Een Emby account kan alleen worden gekoppeld aan \u00e9\u00e9n lokale gebruiker tegelijk.", "HeaderFavoriteArtists": "Favoriete Artiest", "HeaderFavoriteSongs": "Favoriete Titels", "HeaderConfirmPluginInstallation": "Bevestig Plugin Installatie", "PleaseConfirmPluginInstallation": "Klik op OK om te bevestigen dat u bovenstaande heeft gelezen en door wenst te gaan met het installeren van de plugin.", "MessagePluginInstallDisclaimer": "Plugins ontwikkeld door leden van de Emby gemeenschap zijn een geweldige manier om uw Emby ervaring met extra functies en voordelen te verbeteren. Alvorens te installeren, dient u zich bewust te zijn van de gevolgen die zij kunnen hebben op uw Emby Server, zoals langere bibliotheek scans, extra achtergrondinformatie verwerking, en een verminderde stabiliteit van het systeem.", - "ButtonPlayOneMinute": "Speel \u00e9\u00e9n minuut", - "ThankYouForTryingEnjoyOneMinute": "U kunt nu genieten van \u00e9\u00e9n minuut afspelen. Bedankt voor het uitproberen van Emby.", - "HeaderTryPlayback": "Probeer afspelen", - "HeaderBenefitsEmbyPremiere": "Voordelen van Emby Premiere", - "MobileSyncFeatureDescription": "Synchroniseert uw media op uw smartphones en tablets voor een gemakkelijke offline toegang.", - "CoverArtFeatureDescription": "Cover Art cre\u00ebert leuke covers en andere bewerkingen om u te helpen uw mediabeelden te personaliseren.", "HeaderMobileSync": "Mobiel Synchronisatie", "HeaderCloudSync": "Cloud Synchronisatie", - "CloudSyncFeatureDescription": "Synchroniseer uw media naar de cloud voor eenvoudige backup, archivering en conversie.", "HeaderFreeApps": "Gratis Emby Apps", - "FreeAppsFeatureDescription": "Geniet van gratis toegang om Emby apps te selecteren voor uw apparaten.", - "CinemaModeFeatureDescription": "Cinema Mode geeft u de ware bioscoopervaring met trailers en aangepaste intro voor de weergave van uw keuze.", "CoverArt": "Cover Art", "ButtonOff": "Uit", "TitleHardwareAcceleration": "Hardware versnelling", "HardwareAccelerationWarning": "Hardwareversnelling inschakelen kan instabiliteit veroorzaken in sommige omgevingen. Zorg ervoor dat uw besturingssysteem en videostuurprogramma's volledig up to date zijn. Als u problemen ondervindt bij het afspelen van video, nadat u dit hebt ingeschakeld, moet u de instelling terugzetten naar Auto.\n", "HeaderSelectCodecIntrosPath": "Selecteer het Codec intro's pad", - "ButtonAddMissingData": "Alleen ontbrekende gegevens toevoegen", "ValueExample": "13:00", "OptionEnableAnonymousUsageReporting": "Activeer anonieme gebruiksgegevens rapportage", "OptionEnableAnonymousUsageReportingHelp": "Sta Emby toe anonieme gegevens zoals ge\u00efnstalleerde plugins, de versienummers van Emby toepassingen, etc. te verzamelen. Deze informatie wordt alleen gebruikt met het doel de software te verbeteren.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optioneel):", "LabelOptionalM3uUrlHelp": "Sommige apparaten ondersteunen een M3U-kanaal lijst.", "TabResumeSettings": "Instellingen voor hervatten", - "HowDidYouPay": "Hoe heb je betaald?", - "IHaveEmbyPremiere": "Ik heb Emby premi\u00e8re", - "IPurchasedThisApp": "Ik heb deze app gekocht\n", "DrmChannelsNotImported": "Kanalen met DRM worden niet ge\u00efmporteerd.", "LabelAllowHWTranscoding": "Hardware transcoding toestaan", "AllowHWTranscodingHelp": "Wanneer ingeschakeld zal de tuner streams direct transcoderen streams. Dit kan helpen de transcodering vereist door Emby Server te verlagen.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Veranderen van metadata instellingen zal nieuwe content die wordt toegevoegd be\u00efnvloeden. Om de bestaande inhoud te vernieuwen, opent u het detail scherm en klik op de knop Vernieuwen, of doe een bulk vernieuwing met behulp van de metadata manager.", "OptionConvertRecordingPreserveAudio": "Behoud van originele audio bij het converteren opnamen (Waar mogelijk)", "OptionConvertRecordingPreserveAudioHelp": "Dit zal betere audio leveren, maar kan transcodering nodig hebben tijdens het afspelen op sommige apparaten.", - "CreateCollectionHelp": "Collecties maken het u mogelijk om gepersonaliseerde groeperingen van films en andere bibliotheek inhoud te maken.", + "OptionConvertRecordingPreserveVideo": "Behoud van originele video bij het converteren van opnamen", + "OptionConvertRecordingPreserveVideoHelp": "Dit kan een betere beeldkwaliteit te bieden, maar zal transcodering nodig heeft tijdens het afspelen op sommige apparaten.", "AddItemToCollectionHelp": "Voegen items aan uw collecties toe door te zoeken en gebruik rechts klikken met de muis of tik op menu's om ze toe te voegen aan een verzameling.", "HeaderHealthMonitor": "Gezondheid", "HealthMonitorNoAlerts": "Er zijn geen actieve waarschuwingen.", @@ -2136,11 +1932,18 @@ "HeaderForKids": "Voor Kinderen", "HeaderRecordingGroups": "Opname groepen", "LabelConvertRecordingsTo": "Converteer opnames naar:", - "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", + "HeaderUpcomingOnTV": "Binnenkort op TV", + "LabelOptionalNetworkPath": "(Optioneel) Gedeelde netwerkmap:", + "LabelOptionalNetworkPathHelp": "Als deze map wordt gedeeld op uw netwerk, kunnen middels het netwerkpad Emby apps op andere apparaten rechtstreeks toegang tot mediabestanden krijgen.", "ButtonPlayExternalPlayer": "Speel in externe speler", - "WillRecord": "Will record", - "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "NotScheduledToRecord": "Niet gepland voor opname", + "SynologyUpdateInstructions": "Gelieve in te loggen op DSM en ga naar Pakket Center om bij te werken.", + "LatestFromLibrary": "Laatste {0}", + "LabelMoviePrefix": "Film voorvoegsel:", + "LabelMoviePrefixHelp": "Als een voorvoegsel wordt toegepast op filmtitels, typ deze dan eventueel hier zodat Emby het goed kan verwerken.", + "HeaderRecordingPostProcessing": "Opname nabewerking", + "LabelPostProcessorArguments": "Nabewerkings command line argumenten:", + "LabelPostProcessorArgumentsHelp": "Gebruik {path} als het pad naar het opnamebestand.", + "LabelPostProcessor": "Nabewerkings toepassing:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/pl.json b/dashboard-ui/strings/pl.json index 6f7aaac280..4367a1d7cd 100644 --- a/dashboard-ui/strings/pl.json +++ b/dashboard-ui/strings/pl.json @@ -1,8 +1,6 @@ { - "LabelExit": "Wyj\u015bcie", - "LabelApiDocumentation": "Dokumantacja API", - "LabelBrowseLibrary": "Przegl\u0105daj bibliotek\u0119", - "LabelConfigureServer": "Konfiguracja Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Wstecz", "LabelFinish": "Koniec", "LabelNext": "Dalej", @@ -10,29 +8,17 @@ "WelcomeToProject": "Witaj w Emby!", "ThisWizardWillGuideYou": "Asystent pomo\u017ce Ci podczas procesu instalacji. Aby rozpocz\u0105\u0107, wybierz sw\u00f3j preferowany j\u0119zyk.", "TellUsAboutYourself": "Opowiedz nam o sobie", - "ButtonQuickStartGuide": "Skr\u00f3cona instrukcja obs\u0142ug", + "ButtonQuickStartGuide": "Skr\u00f3cona instrukcja obs\u0142ugi", "LabelYourFirstName": "Twoje imi\u0119:", - "MoreUsersCanBeAddedLater": "Mo\u017cesz doda\u0107 wi\u0119cej u\u017cytkownik\u00f3w p\u00f3\u017aniej u\u017cywaj\u0105c panlu g\u0142\u00f3wnego.", + "MoreUsersCanBeAddedLater": "Mo\u017cesz doda\u0107 wi\u0119cej u\u017cytkownik\u00f3w p\u00f3\u017aniej u\u017cywaj\u0105c kokpitu.", "UserProfilesIntro": "Emby zawiera wbudowane wsparcie dla profili u\u017cytkownik\u00f3w, pozwalaj\u0105c ka\u017cdemu u\u017cytkownikowi na w\u0142asne ustawienia wy\u015bwietlania, stanu odtwarzania i kontroli rodzicielskiej.", - "LabelWindowsService": "Us\u0142uga Windows", - "AWindowsServiceHasBeenInstalled": "Us\u0142uga Windows zosta\u0142a zainstalowana.", - "WindowsServiceIntro1": "Serwer Emby normalnie dzia\u0142a jako aplikacja desktopowa z ikon\u0105 w pasku zada\u0144, ale je\u017celi wolisz aby dzia\u0142a\u0142a jako us\u0142uga w tle, mo\u017cne by\u0107 uruchomiona z panelu zarz\u0105dzania us\u0142ugami systemu windows.", - "WindowsServiceIntro2": "Us\u0142uga Windows nie mo\u017ce dzia\u0142a\u0107 jednocze\u015bnie z ikon\u0105 na pasku zada\u0144. Wy\u0142\u0105cz ikon\u0119 i uruchom us\u0142ug\u0119 u\u017cywaj\u0105c panelu sterowania i praw administratora. Upewnij si\u0119, \u017ce konto us\u0142ugi ma dost\u0119p do plik\u00f3w z mediami.", - "WizardCompleted": "To wszystko co narazie potrzebujemy. Emby zacz\u0105\u0142 zbiera\u0107 informacje o twojej bibliotece medi\u00f3w. Sprawd\u017a nasz\u0119 aplikacje, a nast\u0119pnie kliknik Koniec<\/b> aby zobaczy\u0107 Panel G\u0142\u00f3wny<\/b>.", + "WizardCompleted": "To wszystko co teraz potrzebujemy. Emby zacz\u0105\u0142 zbiera\u0107 informacje o twojej bibliotece medi\u00f3w. Sprawd\u017a nasze aplikacje, a nast\u0119pnie kliknij Koniec<\/b> aby zobaczy\u0107 Kokpit<\/b>.", "LabelConfigureSettings": "Konfiguruj ustawienia", - "LabelEnableAutomaticPortMapping": "W\u0142\u0105cz automatyczne mapowanie port\u00f3w", - "LabelEnableAutomaticPortMappingHelp": "UPnP umo\u017cliwia automatyczne ustawienie routera dla \u0142atwego zdalnego dost\u0119pu. Ta opcja mo\u017ce nie dzia\u0142a\u0107 na niekt\u00f3rych modelach router\u00f3w.", "HeaderTermsOfService": "Warunki Us\u0142ugi Emby", "MessagePleaseAcceptTermsOfService": "Prosz\u0119 zaakceptowa\u0107 warunki us\u0142ugi oraz polityk\u0119 prywatno\u015bci przed kontunuowaniem", "OptionIAcceptTermsOfService": "Akceptuje warunki us\u0142ugi", "ButtonPrivacyPolicy": "Polityka prywatno\u015bci", "ButtonTermsOfService": "Warunki Us\u0142ugi", - "HeaderDeveloperOptions": "Opcje dla Deweloper\u00f3w", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "\u015acie\u017cka \u017ar\u00f3d\u0142a klienta web", - "LabelDashboardSourcePathHelp": "Je\u017celi uruchamiasz server ze \u017ar\u00f3de\u0142, podaj \u015bcie\u017ck\u0119 do folderu dashboard-ui. Wszystkie klienty web b\u0119d\u0105 obs\u0142ugiwane z tej lokalizacji.", "ButtonConvertMedia": "Konwertuj media", "ButtonOrganize": "Organizuj", "HeaderSupporterBenefits": "Korzy\u015bci Emby Premiere", @@ -40,26 +26,28 @@ "LabelAddConnectSupporterHelp": "Aby doda\u0107 u\u017cytkownika kt\u00f3ry nie jest wylistowany, musisz najpierw po\u0142\u0105czy\u0107 jego konto z Emby Connect z jego strony profilu u\u017cytkownika", "LabelPinCode": "Kod PIN:", "OptionHideWatchedContentFromLatestMedia": "Ukryj obej\u017can\u0105 zawarto\u015b\u0107 z najnowszych medi\u00f3w", - "HeaderSync": "Sync", + "DeleteMedia": "Delete media", + "HeaderSync": "Synchronizacja", "ButtonOk": "Ok", "ButtonCancel": "Anuluj", "ButtonExit": "Wyjd\u017a", "ButtonNew": "Nowe", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Wyzwalacze Zada\u0144", "HeaderTV": "TV", "HeaderAudio": "Audio", "HeaderVideo": "Wideo", "HeaderPaths": "\u015acie\u017cki", - "CategorySync": "Sync", + "CategorySync": "Synchronizacja", "TabPlaylist": "Lista", "HeaderEasyPinCode": "\u0141atwy Kod Pin", - "HeaderInstalledServices": "Zainstalowane Us\u0142ugi", - "HeaderAvailableServices": "Dost\u0119pne Us\u0142ugi", + "HeaderInstalledServices": "Zainstalowane us\u0142ugi", + "HeaderAvailableServices": "Dost\u0119pne us\u0142ugi", "MessageNoServicesInstalled": "Brak zainstalowanych us\u0142ug.", "HeaderToAccessPleaseEnterEasyPinCode": "Wprowad\u017a pin aby uzyska\u0107 dost\u0119p", "ButtonConfigurePinCode": "Konfiguruj kod pin", "RegisterWithPayPal": "Zarejestruj z PayPal", - "HeaderEnjoyDayTrial": "Mi\u0142ego 14 dniowego okresu pr\u00f3bnego", "LabelSyncTempPath": "\u015acie\u017cka do plik\u00f3w tymczasowych:", "LabelSyncTempPathHelp": "Okre\u015b w\u0142asny folder synchronizacji. Utworzone skonwertowane media podczas synchronizacji b\u0119d\u0105 zapisywane tutaj.", "LabelCustomCertificatePath": "W\u0142a\u015bna \u015bcie\u017cka do certyfiaktu:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Je\u015bli w\u0142\u0105czone, pliki z rozszezeniem .rar i .zip bed\u0105 wykrywane jako pliki z mediami.", "LabelEnterConnectUserName": "Nazwa u\u017cytkownika lub email:", "LabelEnterConnectUserNameHelp": "To twoje konto online Emby lub email.", - "LabelEnableEnhancedMovies": "W\u0142\u0105cz rozszerzone wy\u015bwietlanie film\u00f3w", - "LabelEnableEnhancedMoviesHelp": "Je\u015bli w\u0142\u0105czone, filmy bed\u0105 wy\u015bwitlane jako foldery aby zawiera\u0107 trailery, dodatki, obsade i ekip\u0119, oraz inn\u0105 powi\u0105zan\u0105 zawarto\u015b\u0107.", "HeaderSyncJobInfo": "Zadanie synchronizacji", "FolderTypeMixed": "R\u00f3\u017cna zawarto\u015b\u0107", "FolderTypeMovies": "Filmy", @@ -84,17 +70,15 @@ "LabelContentType": "Typ zawarto\u015bci", "TitleScheduledTasks": "Zaplanowane zadania", "HeaderSetupLibrary": "Ustaw swoje biblioteki medi\u00f3w", - "ButtonAddMediaFolder": "Dodaj folder z mediami", "LabelFolderType": "Typ folderu:", "LabelCountry": "Kraj:", "LabelLanguage": "J\u0119zyk:", "LabelTimeLimitHours": "Limi czasu (godziny):", - "HeaderPreferredMetadataLanguage": "Preferowany j\u0119zyk metadanych:", + "HeaderPreferredMetadataLanguage": "Preferowany j\u0119zyk metadanych", "LabelSaveLocalMetadata": "Zapisz artwork i metadata w folderach medi\u00f3w", "LabelSaveLocalMetadataHelp": "Zapisywanie artwork\u00f3w i metadanych w folderach z mediami, umie\u015bci je w miejscu gdzie mog\u0105 by\u0107 \u0142atwo edytowane.", "LabelDownloadInternetMetadata": "Pobieraj artworki i metadane z internetu", "LabelDownloadInternetMetadataHelp": "Serwer Emby mo\u017c\u0119 pobiera\u0107 informacje o twoich mediach i udost\u0119pni\u0107 ich bogat\u0105 prezentacj\u0119.", - "TabPreferences": "Preferencje", "TabPassword": "Has\u0142o", "TabLibraryAccess": "Dost\u0119p do biblioteki", "TabAccess": "Dost\u0119p", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "W\u0142\u0105cz dost\u0119p do wszystkich bibliotek", "DeviceAccessHelp": "Dotyczy to tylko urz\u0105dze\u0144 kt\u00f3re mo\u017cemy unikalnie zidentyfikowa\u0107, nie przeszkodzi to dost\u0119powi przez przegl\u0105dark\u0119. Filtorawnie urz\u0105dze\u0144 u\u017cytkownik\u00f3w zabroni korzystanie im z nich do p\u00f3ki nie otrzymaj\u0105 autoryzacji.", "LabelDisplayMissingEpisodesWithinSeasons": "Wy\u015bwietl brakuj\u0105ce odcinki w sezonach", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Wy\u015bwietl nie wydanie odcinki w sezonach", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Ustawienia odtwarzacza wideo", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Ustawienia odtwarzania", "LabelAudioLanguagePreference": "Preferencje j\u0119zyka audio:", "LabelSubtitleLanguagePreference": "Preferencje j\u0119zyka napis\u00f3w:", @@ -134,7 +121,7 @@ "LabelNewPasswordConfirm": "Potwierd\u017a nowe has\u0142o:", "HeaderCreatePassword": "Stw\u00f3rz has\u0142o:", "LabelCurrentPassword": "Bie\u017c\u0105ce has\u0142o:", - "LabelMaxParentalRating": "Maksymalna dozwolony rating rodzicielski:", + "LabelMaxParentalRating": "Maksymalna dozwolona klasyfikacja rodzicielska:", "MaxParentalRatingHelp": "Zawarto\u015b\u0107 z wy\u017cszym ratingiem b\u0119dzie schowana dla tego u\u017cytkownika.", "LibraryAccessHelp": "Wybierz foldery medi\u00f3w do udostepnienia temu u\u017cytkownikowi. Administratorzy b\u0119d\u0105 mogli edytowa\u0107 wszystkie foldery u\u017cywaj\u0105\u0107 menagera metadanych", "ChannelAccessHelp": "Wybierz kana\u0142y do udost\u0119pnienia temu u\u017cytkownikowi. Administratorzy b\u0119d\u0105 mogli edytowa\u0107 wszystkie kana\u0142y u\u017cywaj\u0105\u0107 menagera metadanych", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 zalecany stosunek. Tylko JPG\/PNG.", "MessageNothingHere": "Nic tutaj nie ma.", "MessagePleaseEnsureInternetMetadata": "Upewnij si\u0119 \u017ce pobieranie metadanych z internetu jest w\u0142\u0105czone.", - "TabSuggested": "Sugerowane", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Sugestie", "TabLatest": "Najnowsze", "TabUpcoming": "Nadchodz\u0105ce", "TabShows": "Seriale", "TabEpisodes": "Odcinki", "TabGenres": "Gatunki", - "TabPeople": "Osoby", "TabNetworks": "Sieci", "HeaderUsers": "U\u017cytkownicy", "HeaderFilters": "Filtry", @@ -166,6 +153,7 @@ "OptionWriters": "Scenarzy\u015bci", "OptionProducers": "Producenci", "HeaderResume": "Wzn\u00f3w", + "HeaderContinueWatching": "Kontynuuj ogl\u0105danie", "HeaderNextUp": "Nast\u0119pny", "NoNextUpItemsMessage": "Nie znaleziono nieczego. Zacznij ogl\u0105da\u0107 twoje seriale!", "HeaderLatestEpisodes": "Ostanie odcinki", @@ -185,6 +173,7 @@ "OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144", "OptionDatePlayed": "Data odtworzenia", "OptionDateAdded": "Data dodania", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Artysta albumu", "OptionArtist": "Artysta", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Bitrate Wideo", "OptionResumable": "Do wznowienia", "ScheduledTasksHelp": "Kliknij zadanie aby poprawi\u0107 harmonogram.", - "ScheduledTasksTitle": "Zaplanowane zadania", "TabMyPlugins": "Moje wtyczki", "TabCatalog": "Katalog", "TitlePlugins": "Wtyczki", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Ostatnie Utwory", "HeaderRecentlyPlayed": "Ostatnio Odtwarzane", "HeaderFrequentlyPlayed": "Cz\u0119sto Odtwarzane", - "DevBuildWarning": "Buildy deweloperskie to najnowsze opcje. Wypuszczane cz\u0119sto, te buildy nie s\u0105 testowane. Aplikacja mo\u017ce si\u0119 wy\u0142\u0105cza\u0107 i niekt\u00f3re funkcje mog\u0105 wog\u00f3le nie dzia\u0142a\u0107.", "LabelVideoType": "Typy Wideo:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -235,7 +222,7 @@ "HeaderLatestTrailers": "Ostatnie Zwiastuny", "OptionHasSpecialFeatures": "Funkcje Specjalne", "OptionImdbRating": "Ocena IMDb", - "OptionParentalRating": "Ocena rodzicielska", + "OptionParentalRating": "Klasyfikacja rodzicielska", "OptionPremiereDate": "Data premiery", "TabBasic": "Podstawowe", "TabAdvanced": "Zaawansowane", @@ -247,7 +234,7 @@ "OptionTuesdayShort": "Wt.", "OptionWednesdayShort": "\u015ar.", "OptionThursdayShort": "Czw.", - "OptionFridayShort": "Pi\u0105.", + "OptionFridayShort": "Pt.", "OptionSaturdayShort": "Sob.", "OptionSunday": "Niedziela", "OptionMonday": "Poniedzia\u0142ek", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Przydatne dla prywatno\u015bci lub ukrycia kont administrator\u00f3w. Uzytkownik b\u0119dzie musia\u0142 wprowadzi\u0107 r\u0119cznie nazw\u0119 u\u017cytkownika i has\u0142o.", "OptionDisableUser": "Deaktywuj tego u\u017cytkownika", "OptionDisableUserHelp": "Je\u015bli wy\u0142aczone serwer nie pozwoli na \u017cadne po\u0142aczenia od tego u\u017cytkownika. Istniej\u0105ce po\u0142aczenia bed\u0105 nagle zako\u0144czone.", - "HeaderAdvancedControl": "Zaawansowana Kontrola", "LabelName": "Imi\u0119:", "ButtonHelp": "Pomoc", "OptionAllowUserToManageServer": "Pozw\u00f3l temu u\u017cytkownikowi na zarz\u0105dzanie serwerem", @@ -290,8 +276,7 @@ "OptionAllowRemoteSharedDevices": "Pozw\u00f3l na zdalne sterowanie udostepnionymi urz\u0105dzeniami", "OptionAllowRemoteSharedDevicesHelp": "Urz\u0105dzenia dlna s\u0105 uwa\u017canie jako udostepnione dop\u00f3ki u\u017cytkonik nie zacznie nimi sterowa\u0107.", "OptionAllowLinkSharing": "Zezwala\u0144 na udost\u0119pnienie w sieciach spo\u0142eczno\u015bciowych", - "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Udost\u0119pnianie", + "OptionAllowLinkSharingHelp": "Tylko strony zawieraj\u0105ce informacje o mediach s\u0105 udost\u0119pnione. Media nie s\u0105 udost\u0119pniane publicznie. Udost\u0119pnienia s\u0105 ograniczone czasowo i wygasn\u0105 po {0} dniach.", "HeaderRemoteControl": "Zdalne Sterowanie", "OptionMissingTmdbId": "Brakuje Tmdb id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "\u015acie\u017cki", "TabServer": "Serwer", "TabTranscoding": "Transkodowanie", - "TitleAdvanced": "Zaawansowane", "OptionRelease": "Oficjalne Wydanie", - "OptionBeta": "Beta", - "OptionDev": "Dev (Niestabilne)", "LabelAllowServerAutoRestart": "Pozw\u00f3l serwerowi na automatyczny restart aby zainstalowa\u0107 aktualizacj\u0119", "LabelAllowServerAutoRestartHelp": "Serwer zrestartuj\u0119 si\u0119 tylko raz podczas okresu bezczynno\u015bci, kiedy nie ma aktywnych u\u017cytkownik\u00f3w.", "LabelRunServerAtStartup": "Uruchom serwer na starcie", @@ -330,14 +312,12 @@ "TabGames": "Gry", "TabMusic": "Muzyka", "TabOthers": "Inne", - "HeaderExtractChapterImagesFor": "Wydob\u0105d\u017a obrazy rozdzia\u0142\u00f3w dla:", "OptionMovies": "Filmy", "OptionEpisodes": "Odcinki", "OptionOtherVideos": "Inne wideo", - "TitleMetadata": "Metadane", "LabelFanartApiKey": "Osobisty klucz api:", - "LabelFanartApiKeyHelp": "\u017b\u0105dania wysy\u0142ane do fanart bez osobistego klucza API zwr\u00f3c\u0105 wyniki kt\u00f3re by\u0142y zatwierdzone przed 7 dniami. Z osobistym kluczem API warto\u015b\u0107 spada do 48 godzin, je\u017celi jeste\u015b cz\u0142onkiem VIP fanart-u warto\u015b\u0107 ta spadnie do oko\u0142o 10 minut.", - "ExtractChapterImagesHelp": "Wydobywanie obraz\u00f3w rozdzia\u0142\u00f3w pozwoli klientom na wy\u015bwietlanie graficznego menu wyboru scen. Proces ten mo\u017ce by\u0107 wolny, mocno wykorzystuj\u0105cy procesor i mo\u017ce wymaga\u0107 kilku gigabajt\u00f3w przestrzeni dyskowej. Jest uruchamiany gdy filmy s\u0105 wykrywane oraz podczas nocnych zaplanowanych zada\u0144. Zadania s\u0105 konfigurowalne w cz\u0119\u015bci zaplanowanych zada\u0144. Nie jest zalecane uruchamianie tego zadania podczas szczytowych godzin u\u017cycia serwera.", + "LabelFanartApiKeyHelp": "\u017b\u0105dania wysy\u0142ane do fanart bez osobistego klucza API zwr\u00f3c\u0105 obrazy, kt\u00f3re by\u0142y zatwierdzone 7 dni temu. Z osobistym kluczem API warto\u015b\u0107 spada do 48 godzin, a je\u017celi jeste\u015b cz\u0142onkiem VIP fanart-u warto\u015b\u0107 ta spadnie do oko\u0142o 10 minut.", + "ExtractChapterImagesHelp": "Wydobywanie obraz\u00f3w rozdzia\u0142\u00f3w pozwoli aplikacjom Emby na wy\u015bwietlanie graficznego menu wyboru scen. Proces ten mo\u017ce by\u0107 wolny, mocno wykorzystuj\u0105cy procesor i mo\u017ce wymaga\u0107 kilku gigabajt\u00f3w przestrzeni dyskowej. Jest uruchamiany gdy filmy s\u0105 wykrywane oraz podczas nocnych zaplanowanych zada\u0144. Zadania s\u0105 konfigurowalne w cz\u0119\u015bci zaplanowanych zada\u0144. Nie jest zalecane uruchamianie tego zadania podczas szczytowych godzin u\u017cycia serwera.", "LabelMetadataDownloadLanguage": "Preferowany j\u0119zyk pobierania:", "ButtonSignIn": "Zaloguj si\u0119", "TitleSignIn": "Zaloguj si\u0119", @@ -350,15 +330,15 @@ "TabCollections": "Kolekcje", "HeaderChannels": "Kana\u0142y", "TabRecordings": "Nagrania", - "TabScheduled": "Zaplanowane", "TabSeries": "Seriale", "TabFavorites": "Ulubione", "TabMyLibrary": "Moje Biblioteka", "ButtonCancelRecording": "Anuluj Nagranie", - "LabelPrePaddingMinutes": "Pre-padding minuty:", - "LabelPostPaddingMinutes": "Post-padding minuty:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "Co leci", - "TabStatus": "Status", "TabSettings": "Ustawienia", "ButtonRefreshGuideData": "Od\u015bwie\u017c Dane Programu TV", "ButtonRefresh": "Od\u015bwie\u017c", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Nagrywaj na wszystkich kana\u0142ach", "OptionRecordAnytime": "Nagrywaj o ka\u017cdym czasie", "OptionRecordOnlyNewEpisodes": "Nagrywaj tylko nowe odcinki", - "HeaderRepeatingOptions": "Opcje powtarzania", "HeaderDays": "Dni", "HeaderActiveRecordings": "Aktywne Nagrania", "HeaderLatestRecordings": "Ostatnie Nagrania", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Ostatnie Gry", "HeaderRecentlyPlayedGames": "Ostatnio Odtwarzane Gry", "TabGameSystems": "Systemy Gier Wideo", - "TitleMediaLibrary": "Biblioteka Medi\u00f3w", "TabFolders": "Foldery", "TabPathSubstitution": "Zamiennik \u015bcie\u017cki", "LabelSeasonZeroDisplayName": "Wy\u015bwietlana nazwa sezonu 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Podziel Wersje", "ButtonPlayTrailer": "Zwiastun", "LabelMissing": "Brakuj\u0105cy", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Podmiana \u015bcie\u017cek jest u\u017cywana do mapowania \u015bcie\u017cek na serwerze do \u015bcie\u017cek do kt\u00f3rych klienci maj\u0105 dost\u0119p. Pozwalaj\u0105c klientom na bezpo\u015bredni dost\u0119p do medi\u00f3w na serwerze, mog\u0105 oni odtwarza\u0107 bezpo\u015brednio po sieci, unikaj\u0105c w ten spos\u00f3b u\u017cywania zasob\u00f3w serwera na streaming i transkodowanie ich.", - "HeaderFrom": "Z", - "HeaderTo": "Do", - "LabelFrom": "Z:", - "LabelTo": "Do:", - "LabelToHelp": "Przyk\u0142ad: \\\\M\u00f3jSerwer\\Filmy (\u015bcie\u017cka do kt\u00f3rej klient ma dost\u0119p)", - "ButtonAddPathSubstitution": "Dodaj Podmian\u0119", "OptionSpecialEpisode": "Specjalne", "OptionMissingEpisode": "Brakuj\u0105ce Odcinki", "OptionUnairedEpisode": "Niewy\u015bwietlone Odcinki", "OptionEpisodeSortName": "Kr\u00f3tka Nazwa Odcinka", "OptionSeriesSortName": "Nazwa Serialu", "OptionTvdbRating": "Rating Tvdb", - "EditCollectionItemsHelp": "Dodaj lub usu\u0144 dowolne filmy, seriale, albumy, ksi\u0105\u017cki lub gry, kt\u00f3re chcesz pogrupowa\u0107 w kolekcje.", "HeaderAddTitles": "Dodaj Tytu\u0142y", "LabelEnableDlnaPlayTo": "W\u0142\u0105cz DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby mo\u017ce wykrywa\u0107 urz\u0105dzenia w twojej sieci i proponowa\u0107 mo\u017cliwo\u015b\u0107 ich zdalnej kontroli", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Profile Systemowe", "CustomDlnaProfilesHelp": "Utw\u00f3rz w\u0142asny profil dla nowego urz\u0105dzenia lub nadpisz profil systemowy.", "SystemDlnaProfilesHelp": "Profil systemowy jest tylko do odczytu. Zmiany do profilu systemowego b\u0119dzie zapisane jako nowy profil w\u0142asny.", - "TitleDashboard": "Panel G\u0142\u00f3wny", "TabHome": "Dom", "TabInfo": "Info", "HeaderLinks": "Likni", @@ -493,13 +461,13 @@ "LabelPublicHttpsPort": "Publiczny nr portu https:", "LabelPublicHttpsPortHelp": "Publiczny numer port na kt\u00f3ry ma by\u0107 zmapowany lokalny port https.", "LabelEnableHttps": "Zg\u0142o\u015b https jako zewn\u0119trzny adres", - "LabelEnableHttpsHelp": "Je\u015bli w\u0142\u0105czone, serwer zg\u0142osi https url do klient\u00f3w jako zewn\u0119trzny adres.", + "LabelEnableHttpsHelp": "Je\u015bli w\u0142\u0105czone, serwer zg\u0142osi adres https do aplikacji Emby jako zewn\u0119trzny adres.", "LabelHttpsPort": "Lokalny numer portu https:", "LabelHttpsPortHelp": "Numer portu tcp do kt\u00f3re serwer https Emby ma zosta\u0107 powi\u0105zany.", "LabelEnableAutomaticPortMap": "W\u0142\u0105cz automatyczne mapowanie portu", "LabelEnableAutomaticPortMapHelp": "Pr\u00f3bowa\u0107 automatycznie zmapowa\u0107 publiczny nr portu do lokalnego numeru portu przez UPnP. Opcja ta mo\u017ce nie dzia\u0142a z niekt\u00f3rymi modelami router\u00f3w.", "LabelExternalDDNS": "Domena zewn\u0119trzna:", - "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.", + "LabelExternalDDNSHelp": "Je\u015bli masz dynamiczne DNS wprowad\u017a je tutaj. Aplikacje Emby u\u017cyj\u0105 jej podczas po\u0142\u0105czenia. To pole jest wymagane kiedy u\u017cywasz niestandardowego certyfikatu SSL.", "TitleAppSettings": "Ustawienia Aplikacji", "LabelMinResumePercentage": "Minimalny procent dla wznowienia", "LabelMaxResumePercentage": "Maksymalny procent dla wznowienia", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Tytu\u0142y s\u0105 uznane za nie odtworzone je\u015bli zatrzymane przed tym czasem", "LabelMaxResumePercentageHelp": "Tytu\u0142y s\u0105 uznane za odtworzone je\u015bli zatrzymane po tym czasem", "LabelMinResumeDurationHelp": "Tytu\u0142y kr\u00f3tsze ni\u017c nie b\u0119d\u0105 wznawiane", - "TitleAutoOrganize": "Auto-Organizuj", "TabActivityLog": "Dziennik Aktywno\u015bci", "TabSmartMatches": "Smart sugestie", "TabSmartMatchInfo": "Zarz\u0105dzaj smart sugestiami kt\u00f3re zosta\u0142y dodane u\u017cywaj\u0105c dodatku Auto-Organize.", @@ -522,7 +489,7 @@ "LabelFailed": "Nieudane", "LabelSkipped": "Pomini\u0119te", "LabelSeries": "Seriale:", - "LabelSeasonNumber": "Season number:", + "LabelSeasonNumber": "Numer sezonu:", "LabelEpisodeNumber": "Numer odcinka:", "LabelEndingEpisodeNumber": "Numer ostatniego odcinka:", "LabelEndingEpisodeNumberHelp": "Wymagane tylko dla wielo-odcinkowych plik\u00f3w", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Pom\u00f3\u017c zapewni\u0107 kontynuowanie rozwoju tego projektu poprzez zakup Emby Premiere. Cz\u0119\u015b\u0107 ca\u0142ego dochodu b\u0119dzie przekazana na wsparcie innych narz\u0119dzi na kt\u00f3rych Emby polega.", "DonationNextStep": "Po zako\u0144czeniu, prosz\u0119 wr\u00f3\u0107 i wprowad\u017a klucz Emby Premiere, kt\u00f3ry otrzymasz na email.", "AutoOrganizeHelp": "Auto-organizator monitoruje twoje foldery pobierania dla nowych plik\u00f3w i przenosi je do twoich katalog\u00f3w z mediami.", - "AutoOrganizeTvHelp": "Organizacja plik\u00f3w TV doda nowe odcinki do istniej\u0105cych seriali. Nie stworzy nowego folderu serialu.", "OptionEnableEpisodeOrganization": "W\u0142\u0105cz organizacj\u0119 nowego serialu", "LabelWatchFolder": "Obserwowany folder:", "LabelWatchFolderHelp": "Serwer b\u0119dzie pobiera\u0142 z tego foldera podczas zaplanowanego zadania 'Organizuje nowe pliki medi\u00f3w'", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Aktywne Zadania", "HeaderActiveDevices": "Aktywne Urz\u0105dzenia", "HeaderPendingInstallations": "Instalacje w toku", - "HeaderServerInformation": "Informacje o Serwerze", "ButtonRestartNow": "Restartuj Teraz", "ButtonRestart": "Restart", "ButtonShutdown": "Zamknij", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Klucz Emby Premiere jest nieobecny lub nieprawid\u0142owy.", "ErrorMessageInvalidKey": "Aby jakakolwiek zawarto\u015b\u0107 premium by\u0142a zarejestrowana, musisz posiada\u0107 aktywn\u0105 subskrypcje Emby Premiere.", "HeaderDisplaySettings": "Ustawienia Wy\u015bwietlania", - "TabPlayTo": "Odtwarzaj na", "LabelEnableDlnaServer": "W\u0142\u0105cz serwer Dlna", "LabelEnableDlnaServerHelp": "Zezwalaj urz\u0105dzeniom UPnP w twojej sieci na przegl\u0105danie i odtwarzanie zawarto\u015bci Emby.", "LabelEnableBlastAliveMessages": "Przesy\u0142aj wiadomo\u015bci \u017cywotno\u015bci", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Okre\u015bla czas trwania w sekundach pomi\u0119dzy wiadomo\u015bciami \u017cywotno\u015bci serwera.", "LabelDefaultUser": "Domy\u015blny u\u017cytkownik:", "LabelDefaultUserHelp": "Okre\u015bla kt\u00f3re biblioteki u\u017cytkownika powinny by\u0107 wy\u015bwietlane na pod\u0142\u0105czonych urz\u0105dzeniach. Mo\u017ce to by\u0107 nadpisane dla ka\u017cdego urz\u0105dzenia u\u017cywaj\u0105c profili.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Ustawienia Serwera", "HeaderRequireManualLogin": "Wymagaj r\u0119cznego wprowadzenia nazwy u\u017cytkownika dla:", - "HeaderRequireManualLoginHelp": "Gdy wy\u0142\u0105czone klienty mog\u0105 wy\u015bwietla\u0107 ekran logowania z wizualnym wyborem u\u017cytkownika.", + "HeaderRequireManualLoginHelp": "Gdy wy\u0142\u0105czone aplikacje Emby mog\u0105 wy\u015bwietla\u0107 ekran logowania z wizualnym wyborem u\u017cytkownika.", "OptionOtherApps": "Inne aplikacje", "OptionMobileApps": "Aplikacje Mobilne", - "HeaderNotificationList": "Kliknij na notyfikacj\u0119 aby skonfigurowa\u0107 opcje wysy\u0142ania.", - "NotificationOptionApplicationUpdateAvailable": "Dost\u0119pna aktualizacja aplikacji", - "NotificationOptionApplicationUpdateInstalled": "Zainstalowano aktualizacj\u0119 aplikacji", - "NotificationOptionPluginUpdateInstalled": "Zainstalowano aktualizacj\u0119 wtyczki", - "NotificationOptionPluginInstalled": "Zainstalowano wtyczk\u0119", - "NotificationOptionPluginUninstalled": "Odinstalowano wtyczk\u0119", - "NotificationOptionVideoPlayback": "Rozpocz\u0119to odtwarzanie wideo", - "NotificationOptionAudioPlayback": "Rozpocz\u0119to odtwarzanie audio", - "NotificationOptionGamePlayback": "Odtwarzanie gry rozpocz\u0119te", - "NotificationOptionVideoPlaybackStopped": "Odtwarzanie wideo zatrzymane", - "NotificationOptionAudioPlaybackStopped": "Odtwarzane audio zatrzymane", - "NotificationOptionGamePlaybackStopped": "Odtwarzanie gry zatrzymane", - "NotificationOptionTaskFailed": "Niepowodzenie zaplanowanego zadania", - "NotificationOptionInstallationFailed": "Niepowodzenie instalacji", - "NotificationOptionNewLibraryContent": "Nowa zawarto\u015b\u0107 dodana", - "NotificationOptionCameraImageUploaded": "Obraz z Kamery dodany", - "NotificationOptionUserLockedOut": "U\u017cytkownik zablokowany", - "HeaderSendNotificationHelp": "Powiadomienia s\u0105 dostarczane do skrzynki Emby. Dodatkowe opcje mog\u0105 by\u0107 doinstalowane z zak\u0142adki Us\u0142ugi.", - "NotificationOptionServerRestartRequired": "Restart serwera wymagany", "LabelNotificationEnabled": "W\u0142\u0105cz te powiadomienie", "LabelMonitorUsers": "Monitoruj aktywno\u015b\u0107 z:", "LabelSendNotificationToUsers": "Wy\u015blij powiadomienie do:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Poprzedni", "LabelGroupMoviesIntoCollections": "Grupuj filmy w kolekcje", "LabelGroupMoviesIntoCollectionsHelp": "Podczas wy\u015bwietlania listy film\u00f3w, filmy nale\u017c\u0105ce do kolekcji b\u0119d\u0105 wy\u015bwietlone jako jedna zgrupowana pozycja.", - "NotificationOptionPluginError": "Niepowodzenie wtyczki", "ButtonVolumeUp": "G\u0142o\u015bno\u015b\u0107 w g\u00f3re", "ButtonVolumeDown": "G\u0142o\u015bno\u015b\u0107 w d\u00f3\u0142", "HeaderLatestMedia": "Ostatnie Media", "OptionNoSubtitles": "Bez Napis\u00f3w", - "OptionSpecialFeatures": "Zawarto\u015b\u0107 Dodatkowa", "HeaderCollections": "Kolekcje", "LabelProfileCodecsHelp": "Oddzielone przecinkiem. Zostaw puste aby zastosowa\u0107 wszystkie kodeki.", "LabelProfileContainersHelp": "Oddzielone przecinkiem. Zostaw puste aby zastosowa\u0107 wszystkie kontenery.", @@ -701,7 +643,7 @@ "LabelEmbedAlbumArtDidl": "Wbudowana ok\u0142adka albumu w Didl", "LabelEmbedAlbumArtDidlHelp": "Niekt\u00f3re urz\u0105dzenia wybieraj\u0105 t\u0119 metod\u0119 uzyskiwania ok\u0142adki albumu. Inne mog\u0105 nie odtwarza\u0107 gdy ta opcja jest w\u0142\u0105czona.", "LabelAlbumArtPN": "PN ok\u0142adki Albumu:", - "LabelAlbumArtHelp": "PN u\u017cywany jak dla ok\u0142adek Albumu z atrybutu dlna:profileID na upnp:albumArtURI. Niekt\u00f3re klienty wymagaj\u0105 konkretnych warto\u015bci, niezale\u017cnie od rozmiaru obrazu.", + "LabelAlbumArtHelp": "PN u\u017cywany jak dla ok\u0142adek Albumu z atrybutu dlna:profileID na upnp:albumArtURI. Niekt\u00f3re urz\u0105dzenia wymagaj\u0105 konkretnych warto\u015bci, niezale\u017cnie od rozmiaru obrazu.", "LabelAlbumArtMaxWidth": "Ok\u0142adka albumu maksymalna szeroko\u015b\u0107:", "LabelAlbumArtMaxWidthHelp": "Maksymalna rozdzielczo\u015b\u0107 ok\u0142adki albumu wystawiana przez upnp:albumArtURI.", "LabelAlbumArtMaxHeight": "Ok\u0142adka albumu maksymalna wysoko\u015b\u0107:", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Brak dost\u0119pnych wtyczek.", "LabelDisplayPluginsFor": "Wy\u015bwietl wtyczki dla:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Kino", "LabelEpisodeNamePlain": "Nazwa odcinka", "LabelSeriesNamePlain": "Nazwa serialu", "ValueSeriesNamePeriod": "Serial.nazwa", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Numer ostatniego odcinka", "HeaderTypeText": "Wprowad\u017a tekst", "LabelTypeText": "Tekst", - "HeaderSearchForSubtitles": "Szukaj Napis\u00f3w", - "MessageNoSubtitleSearchResultsFound": "Nie znaleziono \u017cadnych wynik\u00f3w.", "TabDisplay": "Wy\u015bwietl", "TabLanguages": "J\u0119zyki", "TabAppSettings": "Ustawienia Aplikacji", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Je\u017celi w\u0142\u0105czone utwory tematyczne b\u0119d\u0105 odtwarzane w tle podczas przegl\u0105dania biblioteki.", "LabelEnableBackdropsHelp": "Je\u017celi w\u0142\u0105czone t\u0142a tematyczne b\u0119d\u0105 odtwarzane w tle dla niekt\u00f3rych stron podczas przegl\u0105dania biblioteki.", "HeaderHomePage": "Strona Domowa", - "HeaderSettingsForThisDevice": "Ustawienia dla tego Urz\u0105dzenia", "OptionAuto": "Auto", "OptionYes": "Tak", "OptionNo": "Nie", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Strona Domowa sekcja 2:", "LabelHomePageSection3": "Strona Domowa sekcja 3:", "LabelHomePageSection4": "Strona Domowa sekcja 4:", - "OptionMyMediaButtons": "Moje media (przyciski)", "OptionMyMedia": "Moje media", "OptionMyMediaSmall": "Moje media (ma\u0142e)", "OptionResumablemedia": "Wzn\u00f3w", @@ -815,53 +752,21 @@ "HeaderReports": "Raporty", "HeaderSettings": "Ustawienia", "OptionDefaultSort": "Domy\u015blny", - "OptionCommunityMostWatchedSort": "Najcz\u0119\u015bciej Ogl\u0105dane", "TabNextUp": "Nast\u0119pny", - "PlaceholderUsername": "Nazwa u\u017cytkownika", "HeaderBecomeProjectSupporter": "Uzyskaj Emby Premiere", "MessageNoMovieSuggestionsAvailable": "Sugestie film\u00f3w nie s\u0105 obecnie dost\u0119pne. Zacznij ogl\u0105da\u0107 i ocenia\u0107 swoje filmy, nast\u0119pnie wr\u00f3\u0107 aby obejrze\u0107 swoje rekomendacje.", "MessageNoCollectionsAvailable": "Kolekcje pozwalaj\u0105 na cieszenie si\u0119 personalizowanym grupowaniem Film\u00f3w, seriali, Album\u00f3w, Ksi\u0105\u017cek oraz Gier. Kliknij przycisk + aby zacz\u0105\u0107 tworzy\u0107 kolekcje.", "MessageNoPlaylistsAvailable": "Playlisty pozwalaj\u0105 na tworzenie list z zawarto\u015bci\u0105 do odtwarzania kolejno w czasie. Aby doda\u0107 pozycje do playlisty, kliknij prawym guzikiem lub naci\u015bnij i przytrzymaj, a nast\u0119pnie wybierz dodaj do Playlisty.", "MessageNoPlaylistItemsAvailable": "Playlista jest obecnie pusta.", - "ButtonDismiss": "Odrzu\u0107", "ButtonEditOtherUserPreferences": "Edytuj profil, obrazy i ustawienia osobiste tego u\u017cytkownika.", "LabelChannelStreamQuality": "Preferowana jako\u015b\u0107 kana\u0142u internetowego:", "LabelChannelStreamQualityHelp": "W \u015brodowisku z s\u0142abym \u0142\u0105czem, ograniczenie jako\u015bci mo\u017ce zapewni\u0107 lepsze do\u015bwiadczenia w streamowaniu.", "OptionBestAvailableStreamQuality": "Najlepsze mo\u017cliwe", "ChannelSettingsFormHelp": "Zainstaluj kana\u0142y takie jak Trailery i Vimeo z katalogu z wtyczkami.", - "ViewTypePlaylists": "Playlisty", "ViewTypeMovies": "Filmy", "ViewTypeTvShows": "TV", "ViewTypeGames": "Gry", "ViewTypeMusic": "Muzyka", - "ViewTypeMusicGenres": "Gatunki", - "ViewTypeMusicArtists": "Arty\u015bci", - "ViewTypeBoxSets": "Kolekcje", - "ViewTypeChannels": "Kana\u0142y", - "ViewTypeLiveTV": "TV Na \u017bywo", - "ViewTypeLiveTvNowPlaying": "Teraz Transmitowane", - "ViewTypeLatestGames": "Ostatnie Gry", - "ViewTypeRecentlyPlayedGames": "Ostatnio Odtwarzane", - "ViewTypeGameFavorites": "Ulubione", - "ViewTypeGameSystems": "Systemy Gier Wideo", - "ViewTypeGameGenres": "Gatunki", - "ViewTypeTvResume": "Wzn\u00f3w", - "ViewTypeTvNextUp": "Nast\u0119pny", - "ViewTypeTvLatest": "Najnowsze", - "ViewTypeTvShowSeries": "Seriale", - "ViewTypeTvGenres": "Gatunki", - "ViewTypeTvFavoriteSeries": "Ulubione Seriale", - "ViewTypeTvFavoriteEpisodes": "Ulubione Odcinki", - "ViewTypeMovieResume": "Wzn\u00f3w", - "ViewTypeMovieLatest": "Najnowsze", - "ViewTypeMovieMovies": "Filmy", - "ViewTypeMovieCollections": "Kolekcje", - "ViewTypeMovieFavorites": "Ulubione", - "ViewTypeMovieGenres": "Gatunki", - "ViewTypeMusicLatest": "Najnowsze", - "ViewTypeMusicPlaylists": "Playlisty", - "ViewTypeMusicAlbums": "Albumy", - "ViewTypeMusicAlbumArtists": "Arty\u015bci albumu", "HeaderOtherDisplaySettings": "Ustawienia Wy\u015bwietlania", "ViewTypeMusicSongs": "Utwory", "ViewTypeMusicFavorites": "Ulubione", @@ -878,7 +783,7 @@ "LabelProtocolInfo": "Protok\u00f3\u0142 Info:", "LabelProtocolInfoHelp": "Warto\u015b\u0107 jak b\u0119dzie u\u017cywana przy odpowiedzi na \u017c\u0105dania GetProtocolInfo z urz\u0105dze\u0144.", "TabNfoSettings": "Ustawienia NFO", - "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Services tab to configure options for your media types.", + "HeaderKodiMetadataHelp": "Emby obejmuje natywne wsparcie dla plik\u00f3w metadanych NFO. Aby w\u0142\u0105czy\u0107 lub wy\u0142\u0105czy\u0107 metadane NFO, aby skonfigurowa\u0107 opcje dla typ\u00f3w medi\u00f3w u\u017cyj zak\u0142adki Us\u0142ugi.", "LabelKodiMetadataUser": "Synchronizuj dano o obejrzanych u\u017cytkownika do nfo dla:", "LabelKodiMetadataUserHelp": "W\u0142\u0105cz to aby utrzyma\u0107 dane o obejrzanych mi\u0119dzy Serwerem Emby a plikami Nfo.", "LabelKodiMetadataDateFormat": "Format daty wydania:", @@ -888,21 +793,20 @@ "LabelKodiMetadataEnablePathSubstitution": "W\u0142\u0105cz podmienianie \u015bcie\u017cki", "LabelKodiMetadataEnablePathSubstitutionHelp": "W\u0142\u0105cz podmienianie \u015bcie\u017cki dla \u015bcie\u017cek obraz\u00f3w u\u017cywaj\u0105c ustawie\u0144 podmieniania \u015bcie\u017cki serwera,", "LabelKodiMetadataEnablePathSubstitutionHelp2": "Zobacz podmienione \u015bcie\u017cki", - "OptionDisplayChannelsInline": "Wy\u015bwietlaj kana\u0142y w moich widokach", - "OptionDisplayChannelsInlineHelp": "Je\u015bli opcja zostanie aktywowana, kana\u0142y b\u0119d\u0105 wy\u015bwietlane bezpo\u015brednio obok innych widok\u00f3w. Je\u015bli nie, pojawi\u0105 si\u0119 w osobnym widoku kana\u0142\u00f3w.", + "OptionDisplayChannelsInline": "Wy\u015bwietlaj kana\u0142y jako foldery medi\u00f3w", + "OptionDisplayChannelsInlineHelp": "Je\u015bli opcja zostanie aktywowana, kana\u0142y b\u0119d\u0105 wy\u015bwietlane bezpo\u015brednio obok innych bibliotek medi\u00f3w. Je\u015bli nie, pojawi\u0105 si\u0119 w osobnym folderze kana\u0142\u00f3w.", "LabelDisplayCollectionsView": "Wy\u015bwietlaj widok kolekcji aby wy\u015bwietla\u0107 kolekcje film\u00f3w", - "LabelDisplayCollectionsViewHelp": "This will create a separate view to display movie collections. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ", + "LabelDisplayCollectionsViewHelp": "To stworzy osobny widok do wy\u015bwietlenia kolekcji filmowej. Aby stworzy\u0107 kolekcje, naci\u015bnij prawy przycisk myszy, lub naci\u015bnij i przytrzymaj dowolny film i wybierz 'Dodaj do kolekcji'. ", "LabelKodiMetadataEnableExtraThumbs": "Kopiuj obrazy z folderu \"extrafanart\" do folderu \"extrathumbs\"", "LabelKodiMetadataEnableExtraThumbsHelp": "\u015aci\u0105gni\u0119te obrazy mog\u0105 by\u0107 zapisane zar\u00f3wno w folderze \"extrafanart\" jak i \"extrathumbs\" w celu zachowania maksymalnej kompatybilno\u015bci z Kodi.", "TabServices": "Us\u0142ugi", "TabLogs": "Logi", - "HeaderServerLogFiles": "Pliki z logami serwera:", "TabBranding": "W\u0142asna marka", "HeaderBrandingHelp": "Dostosuj wygl\u0105d Emby aby dopasowa\u0107 do potrzeb Twojej grupy lub organizacji.", "LabelLoginDisclaimer": "Zastrze\u017cenie odpowiedzialno\u015bci:", "LabelLoginDisclaimerHelp": "To b\u0119dzie wy\u015bwietlone na dole strony logowania.", "OptionList": "Lista", - "TabDashboard": "Panel G\u0142\u00f3wny", + "TabDashboard": "Kokpit", "TitleServer": "Serwer", "LabelCache": "Cache:", "LabelLogs": "Logi:", @@ -917,7 +821,6 @@ "HeaderDevice": "Urzadzenie", "HeaderUser": "U\u017cytkownik", "HeaderDateIssued": "Data wydania", - "LabelChapterName": "Rozdzia\u0142 {0}", "HeaderHttpHeaders": "Nag\u0142\u00f3wki Http", "HeaderIdentificationHeader": "Nag\u0142\u00f3wek identyfikacyjny", "LabelValue": "Warto\u015b\u0107:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "Widok", - "TabSort": "Sortuj", "TabFilter": "Filtruj", "ButtonView": "Widok", "LabelPageSize": "Limit pozycji:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Streaming Na \u017bywo Http", "LabelContext": "Kontekst:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlista", "ButtonClose": "Zamknij", "LabelAllLanguages": "Wszystkie j\u0119zyki", @@ -956,7 +856,6 @@ "LabelImage": "Obrazek:", "HeaderImages": "Obrazki", "HeaderBackdrops": "T\u0142a tematyczne", - "HeaderScreenshots": "Zrzuty ekranu", "HeaderAddUpdateImage": "Dodaj\/Aktualizuj obrazek", "LabelDropImageHere": "Upu\u015b\u0107 obraz tutaj", "LabelJpgPngOnly": "Tylko JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Zablokowane", "OptionUnidentified": "Niezidentyfikowane", "OptionMissingParentalRating": "Brak oceny rodzicielskiej", - "OptionStub": "Stub", "OptionSeason0": "Sezon 0", "LabelReport": "Zg\u0142o\u015b:", "OptionReportSongs": "Utwory", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albumy", "ButtonMore": "Wi\u0119cej", "HeaderActivity": "Aktywno\u015b\u0107", - "ScheduledTaskStartedWithName": "{0} rozpocz\u0119te", - "ScheduledTaskCancelledWithName": "{0} anulowane", - "ScheduledTaskCompletedWithName": "{0} zako\u0144czone", - "ScheduledTaskFailed": "Zaplanowane zadanie zako\u0144czone", "PluginInstalledWithName": "{0} zainstalowanych", "PluginUpdatedWithName": "{0} zaktualizowanych", "PluginUninstalledWithName": "{0} odinstalowanych", - "ScheduledTaskFailedWithName": "{0} niepowodze\u0144", - "DeviceOnlineWithName": "{0} po\u0142\u0105czonych", - "UserOnlineFromDevice": "{0} jest online od {1}", - "DeviceOfflineWithName": "{0} zosta\u0142o od\u0142aczonych", - "UserOfflineFromDevice": "{0} zosta\u0142o od\u0142\u0105czonych od {1}", - "SubtitlesDownloadedForItem": "Napisy pobrane dla {0}", - "SubtitleDownloadFailureForItem": "Napisy niepobrane dla {0}", + "UserOnlineFromDevice": "{0} jest online z {1}", + "UserOfflineFromDevice": "{0} zosta\u0142 od\u0142\u0105czony z {1}", "LabelRunningTimeValue": "Czas trwania: {0}", "LabelIpAddressValue": "Adres IP: {0}", "UserLockedOutWithName": "U\u017cytkownik {0} zosta\u0142 zablokowany", "UserConfigurationUpdatedWithName": "Konfiguracja u\u017cytkownika zosta\u0142a zaktualizowana dla {0}", "UserCreatedWithName": "U\u017cytkownik {0} zosta\u0142 utworzony", - "UserPasswordChangedWithName": "Has\u0142o zosta\u0142o zmienione dla u\u017cytkownika {0}", "UserDeletedWithName": "u\u017cytkownik {0} zosta\u0142 usuni\u0119ty", "MessageServerConfigurationUpdated": "Konfiguracja serwera zosta\u0142a zaktualizowana", "MessageNamedServerConfigurationUpdatedWithValue": "Sekcja {0} konfiguracji serwera zosta\u0142a zaktualizowana", "MessageApplicationUpdated": "Serwer Emby zosta\u0142 zaktualizowany", "UserDownloadingItemWithValues": "{0} pobiera {1}", - "UserStartedPlayingItemWithValues": "{0} rozpocz\u0105\u0142 odtwarzanie {1}", - "UserStoppedPlayingItemWithValues": "{0} zatrzyma\u0142 odtwarzanie {1}", - "AppDeviceValues": "Aplikacja: {0}, Urz\u0105dzenie: {1}", "ProviderValue": "Dostawca: {0}", "HeaderRecentActivity": "Ostatnia Aktywno\u015b\u0107", "HeaderPeople": "Ludzie", @@ -1027,8 +912,8 @@ "OptionOthers": "Inne", "HeaderDownloadPeopleMetadataForHelp": "W\u0142\u0105czenie dodatkowych opcji dostarczy wi\u0119cej informacji na ekranie, ale spowoduje wolniejsze skanowanie biblioteki.", "ViewTypeFolders": "Foldery", - "OptionDisplayFolderView": "Display a folder view to show plain media folders", - "OptionDisplayFolderViewHelp": "If enabled, Emby apps will display a Folders category alongside your media library. This is useful if you'd like to have plain folder views.", + "OptionDisplayFolderView": "Wy\u015bwietlaj wszystkie foldery jako p\u0142askie foldery medi\u00f3w.", + "OptionDisplayFolderViewHelp": "Je\u015bli w\u0142\u0105czone, aplikacje Emby wy\u015bwietl\u0105 foldery kategorii obok biblioteki multimedi\u00f3w. Funkcja ta jest przydatna, je\u015bli chcesz mie\u0107 zwyk\u0142y widok\u00f3w folder\u00f3w.", "ViewTypeLiveTvRecordingGroups": "Nagrania", "ViewTypeLiveTvChannels": "Kana\u0142y", "LabelEasyPinCode": "\u0141atwy kod pin:", @@ -1051,27 +936,18 @@ "LabelAirDate": "Dni wy\u015bwietlania:", "LabelAirTime:": "Czas transmisji:", "LabelRuntimeMinutes": "Czas (w minutach):", - "LabelRevenue": "Doch\u00f3d ($):", - "HeaderAlternateEpisodeNumbers": "Alternatywna numeracja epizod\u00f3w", "HeaderSpecialEpisodeInfo": "Specjalne informacje o odcinku", - "HeaderExternalIds": "Zewn\u0119trzne ID:", - "LabelAirsBeforeSeason": "Transmisja prze sezonem:", - "LabelAirsAfterSeason": "Transmisja po sezonie:", - "LabelAirsBeforeEpisode": "Transmisja przed odcinkiem:", "LabelDisplaySpecialsWithinSeasons": "Wy\u015bwietlaj zawarto\u015b\u0107 dodatkow\u0105 w sezonach w kt\u00f3rych by\u0142y transmitowane", - "HeaderCountries": "Kraje", "HeaderGenres": "Gatunki", "HeaderPlotKeywords": "S\u0142owa Kluczowe Fabu\u0142y", "HeaderStudios": "Studia", "HeaderTags": "Tagi", - "MessageLeaveEmptyToInherit": "Zostaw puste aby odziedziczy\u0107 ustawienia z nadrz\u0119dnej pozycji, lub globalnej warto\u015bci domy\u015blnej.", "OptionNoTrailer": "Bez Trailera", "ButtonPurchase": "Kup", "OptionActor": "Aktor", "OptionComposer": "Kompozytor", "OptionDirector": "Re\u017cyser", "OptionProducer": "Producent", - "OptionWriter": "Scenarzysta", "LabelAirDays": "Dni transmisji:", "LabelAirTime": "Czas transmisji:", "HeaderMediaInfo": "Informacje o Medium", @@ -1106,7 +982,7 @@ "LabelMethod": "Metoda:", "LabelDidlMode": "Ustawienie Didl:", "OptionCaptionInfoExSamsung": "CaptionInfoEx (Samsung)", - "OptionResElement": "res element", + "OptionResElement": "Element res", "OptionEmbedSubtitles": "Wklej w film", "OptionExternallyDownloaded": "Pobierz zewn\u0119trznie", "OptionHlsSegmentedSubtitles": "Napisy dostosowane do HLS", @@ -1121,9 +997,9 @@ "CinemaModeConfigurationHelp": "Tryb kinowy wniesie filmowe prze\u017cycia wprost do Twojego salonu z mo\u017cliwo\u015bci\u0105 odtwarzania zwiastun\u00f3w i w\u0142asnych intro przez seansem.", "OptionTrailersFromMyMovies": "Do\u0142\u0105cz zwiastuny film\u00f3w do mojej biblioteki", "OptionUpcomingMoviesInTheaters": "Do\u0142\u0105cz zwiastuny z nowych i nadchodz\u0105cych film\u00f3w", - "LabelLimitIntrosToUnwatchedContent": "U\u017cywaj zapowiedzi tylko z kontrolowanych \u017ar\u00f3de\u0142.", + "LabelLimitIntrosToUnwatchedContent": "Odtwarzaj zwiastuny tylko z nieobejrzanych zawarto\u015bci", "LabelEnableIntroParentalControl": "W\u0142\u0105cz inteligentny system ochrony rodzicielskiej", - "LabelEnableIntroParentalControlHelp": "Zostan\u0105 wy\u015bwietlone tylko trailery z ocen\u0105 rodzicielsk\u0105 mniejsz\u0105 lub r\u00f3wn\u0105 ocenie ogl\u0105danego filmu.", + "LabelEnableIntroParentalControlHelp": "Zostan\u0105 wy\u015bwietlone tylko trailery z klasyfikacj\u0105 rodzicielsk\u0105 mniejsz\u0105 lub r\u00f3wn\u0105 klasyfikacji ogl\u0105danego filmu.", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "Te opcje wymagaj\u0105 aktywnej subskrypcji Emby Premiere oraz instalacji plugin'u Trailer Channel.", "OptionTrailersFromMyMoviesHelp": "Wymaga ustawienia lokalnych trailer\u00f3w.", "LabelCustomIntrosPath": "W\u0142asna \u015bcie\u017cka do intra:", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Ochrona Rodzicielska", "HeaderAccessSchedule": "Dost\u0119p Harmonogramu", "HeaderAccessScheduleHelp": "Utw\u00f3rz dost\u0119p do harmonogramu aby ograniczy\u0107 go do okre\u015blonych godzin.", - "ButtonAddSchedule": "Dodaj Harmonogram", "LabelAccessDay": "Dzie\u0144 tygodnia:", "LabelAccessStart": "Czas startu:", "LabelAccessEnd": "Czas zako\u0144czenia:", @@ -1194,7 +1069,7 @@ "TitlePasswordReset": "Zresetuj has\u0142o", "LabelPasswordRecoveryPinCode": "Kod pin:", "HeaderPasswordReset": "Zresetuj has\u0142o", - "HeaderParentalRatings": "Ocena rodzicielska", + "HeaderParentalRatings": "Klasyfikacja rodzicielska", "HeaderVideoTypes": "Typy Video", "HeaderYears": "Lata", "HeaderBlockItemsWithNoRating": "Blokuj zawarto\u015b\u0107 bez informacji o ocenie rodzicielskiej b\u0105d\u017a gdy jest ona nierozpoznana:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Synchronizuj zadania", "HeaderThisUserIsCurrentlyDisabled": "Ten u\u017cytkownik jest aktualnie zablokowany", "MessageReenableUser": "Zobacz poni\u017cej aby aktywowa\u0107 ponownie", - "LabelEnableInternetMetadataForTvPrograms": "\u015aci\u0105gnij metadane z internetu dla:", "OptionTVMovies": "Seriale i Filmy", "HeaderUpcomingMovies": "Przysz\u0142e filmy", "HeaderUpcomingSports": "Przysz\u0142e wydarzenia sportowe", @@ -1225,11 +1099,11 @@ "HeaderPlayback": "Odtwarzanie medi\u00f3w", "OptionAllowAudioPlaybackTranscoding": "Zgadzaj si\u0119 na odtwarzanie audio, kt\u00f3re wymaga transkodowania", "OptionAllowVideoPlaybackTranscoding": "Zgadzaj si\u0119 na odtwarzanie video, kt\u00f3re wymaga transkodowania", - "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", + "OptionAllowVideoPlaybackRemuxing": "Pozw\u00f3l na wy\u015bwietlanie video, kt\u00f3re wymagaj\u0105 konwersji, bez ponownego kodowania", "OptionAllowMediaPlaybackTranscodingHelp": "U\u017cytkownicy otrzymaj\u0105 wiadomo\u015b\u0107 je\u015bli nie mog\u0105 odtworzy\u0107 pliku ze wzgl\u0119du na polis\u0119 serwera.", "TabStreaming": "Streaming", "LabelRemoteClientBitrateLimit": "Limit bitrate streamingu (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "Opcjonalny limit bitrate streamowania dla klient\u00f3w z poza sieci. Jest to wykorzystywane aby zapobiega\u0107 przed \u017c\u0105daniem wy\u017cszego bitrate ni\u017c twoje \u0142\u0105cze jest w stanie sobie z tym poradzi\u0107.", + "LabelRemoteClientBitrateLimitHelp": "Opcjonalny limit streamowania bitrate dla urz\u0105dze\u0144 z poza sieci. Jest to wykorzystywane aby zapobiega\u0107 przed \u017c\u0105daniem wy\u017cszego bitrate ni\u017c z jakim jest w stanie sobie poradzi\u0107 twoje \u0142\u0105cze.", "LabelConversionCpuCoreLimit": "Limit rdzeni procesora:", "LabelConversionCpuCoreLimitHelp": "Okre\u015bl limit rdzeni procesora kt\u00f3re b\u0119d\u0105 u\u017cyte podczas konwersji przy synchronizacji.", "OptionEnableFullSpeedConversion": "W\u0142\u0105cz konwersj\u0119 z pe\u0142n\u0105 pr\u0119dko\u015bci\u0105", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playllisty", "HeaderViewStyles": "Widok Styl\u00f3w", "TabPhotos": "Zdj\u0119cia", - "TabVideos": "Wideo", "HeaderWelcomeToEmby": "Witaj w Emby", "EmbyIntroMessage": "Z Emby mo\u017cesz \u0142atwo streamowa\u0107 wideo, muzyk\u0119 i zdj\u0119cia do smartfon\u00f3w, tablet\u00f3w i innych urz\u0105dzeni ze swojego Serwera Emby.", "ButtonSkip": "Pomi\u0144", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Kolumny", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "W\u0142\u0105cz zewn\u0119trzne odtwarzacze wideo", - "ButtonUnlockGuide": "Odblokuj Przewodnik", "LabelEnableFullScreen": "W\u0142\u0105cz tryb pe\u0142noekranowy", "LabelEmail": "Email:", "LabelUsername": "Nazwa u\u017cytkownika:", @@ -1270,9 +1142,8 @@ "OptionEnableAutomaticServerUpdates": "W\u0142\u0105cz automatyczne aktualizacje serwera", "OptionOtherTrailers": "Do\u0142\u0105cz zwiastuny z starszych film\u00f3w", "HeaderOverview": "Opis", - "HeaderShortOverview": "Kr\u00f3tki Opis", + "HeaderShortOverview": "Streszczenie", "HeaderType": "Typ", - "HeaderSeverity": "Rygor", "OptionReportActivities": "Dziennik Aktywno\u015bci", "HeaderTunerDevices": "Tunery", "HeaderAddDevice": "Dodaj urz\u0105dzenie", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Powt\u00f3rz", "LabelEnableThisTuner": "W\u0142\u0105cz ten dekoder", "LabelEnableThisTunerHelp": "Odznacz aby nie importowa\u0107 kana\u0142\u00f3w z tego tunera.", - "HeaderUnidentified": "Niezidentyfikowane", "HeaderImagePrimary": "Priorytetowy", "HeaderImageBackdrop": "Obraz t\u0142a", "HeaderImageLogo": "Logo", @@ -1314,14 +1184,14 @@ "AdditionalLiveTvProvidersCanBeInstalledLater": "Dodatkowi dostawcy TV Na \u017bywo mog\u0105 by\u0107 dodani p\u00f3\u017aniej z sekcji TV Na \u017bywo.", "HeaderSetupTVGuide": "Skonfiguruj Program TV", "LabelDataProvider": "Dostawca danych:", - "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Domy\u015blny Padding", - "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", + "OptionSendRecordingsToAutoOrganize": "Organizuj automatycznie nagrania do istniej\u0105cych folderach seriali w innej bibliotece", + "HeaderDefaultRecordingSettings": "Default Recording Settings", + "OptionEnableRecordingSubfolders": "Utw\u00f3rz podfoldery dla kategorii tj. sport, dla dzieci itp.", "HeaderSubtitles": "Napisy", "HeaderVideos": "Wideo", "LabelHardwareAccelerationType": "Akceleracja sprz\u0119towa:", "LabelHardwareAccelerationTypeHelp": "Dost\u0119pne tylko na wspieranych systemach.", - "ButtonServerDashboard": "Panel G\u0142\u00f3wny Serwera", + "ButtonServerDashboard": "Kokpit serwera", "HeaderAdmin": "Admin", "ButtonSignOut": "Wyloguj", "HeaderCameraUpload": "Upload z Aparatu", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Foldery", "LabelDisplayName": "Wy\u015bwietlaj nazw\u0119:", "HeaderNewRecording": "Nowe nagranie", - "ButtonAdvanced": "Zaawansowane", "LabelCodecIntrosPath": "\u015acie\u017cka do intro kodeka:", "LabelCodecIntrosPathHelp": "Folder zawieraj\u0105cy pliki wideo. Je\u015bli nazwa pliku intro odpowiada nazwie kodeka video, audio, profilowi audio lub tag'owi, plik zostanie odtworzony przed filmem.", "OptionConvertRecordingsToStreamingFormat": "Automatycznie konwertuj nagrania do formatu przyjaznego strumieniowaniu.", - "OptionConvertRecordingsToStreamingFormatHelp": "Nagrania zostan\u0105 skonwertowane \"w locie\" do formatu MP4 aby umo\u017cliwi\u0107 ich odtworzenie na wi\u0119kszo\u015bci urz\u0105dze\u0144.", + "OptionConvertRecordingsToStreamingFormatHelp": "Nagrania zostan\u0105 skonwertowane w locie do formatu MP4 lub MKV aby umo\u017cliwi\u0107 ich odtworzenie na wi\u0119kszo\u015bci urz\u0105dze\u0144.", "FeatureRequiresEmbyPremiere": "Ta funkcja wymaga aktywnej subskrypcji Emby Premiere.", "FileExtension": "Rozszerzenie pliku", - "OptionReplaceExistingImages": "Zast\u0105p istniej\u0105ce obrazy", "OptionPlayNextEpisodeAutomatically": "Odtw\u00f3rz nast\u0119pny odcinek automatycznie", - "OptionDownloadImagesInAdvance": "Download images in advance", + "OptionDownloadImagesInAdvance": "Pobieraj zdj\u0119cia z wyprzedzeniem", "SettingsSaved": "Ustawienia zapisane.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "Domy\u015blnie, wi\u0119kszo\u015b\u0107 obraz\u00f3w jest pobierana tylko kiedy jest wymagana przez aplikacje Emby. W\u0142\u0105cz t\u0105 opcj\u0119, aby pobiera\u0107 wszystkie obrazy z wyprzedzeniem, podczas importowania multimedi\u00f3w.", "Users": "U\u017cytkownicy", "Delete": "Usu\u0144", "Password": "Has\u0142o", "DeleteImage": "Usu\u0144 zdj\u0119cie", "MessageThankYouForSupporting": "Dzi\u0119kujemy za wspieranie Emby.", - "MessagePleaseSupportProject": "Prosz\u0119 wesprzyj Emby.", "DeleteImageConfirmation": "Jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 to zdj\u0119cie?", "FileReadCancelled": "Odczytywanie pliku zosta\u0142o anulowane.", "FileNotFound": "Plik nie znaleziony.", @@ -1383,16 +1250,12 @@ "LabelTag": "Tag:", "ButtonSelectView": "Wybierz widok", "HeaderSelectDate": "Wybierz Dat\u0119", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", + "ServerUpdateNeeded": "Ten serwer Emby wymaga aktualizacji. Do pobrania najnowszej wersji odwied\u017a {0}", "LabelFromHelp": "Przyk\u0142ad: {0} (na serwerze)", "HeaderMyMedia": "Moje Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatyczne poziom aktualizacji dla wtyczek:", "ErrorLaunchingChromecast": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas uruchamiania chromecast. Prosz\u0119 upewnij si\u0119 \u017ce twoje urz\u0105dzenie jest pod\u0142\u0105czone do sieci bezprzewodowej.", "MessageErrorLoadingSupporterInfo": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas \u0142adowania informacji Emby Premiere. Spr\u00f3buj ponownie p\u00f3\u017aniej.", - "MessageLinkYourSupporterKey": "Po\u0142\u0105cz sw\u00f3j klucz Emby Premier z {0} cz\u0142onkami Emby Connect aby cieszy\u0107 si\u0119 darmowych dost\u0119pem do nast\u0119puj\u0105cych aplikacji:", "HeaderConfirmRemoveUser": "Usu\u0144 U\u017cytkownika", - "MessageConfirmRemoveConnectSupporter": "Czy jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 dodatkowe korzy\u015bci Emby Premier temu u\u017cytkownikowi?", "ValueTimeLimitSingleHour": "Limit czasu: 1 godzina", "ValueTimeLimitMultiHour": "Limit czasu: {0} godzin", "PluginCategoryGeneral": "Og\u00f3lne", @@ -1411,7 +1274,7 @@ "LabelMovie": "Film", "LabelMusicVideo": "Teledysk", "LabelEpisode": "Odcinek", - "Series": "Series", + "Series": "Seriale", "LabelStopping": "Zatrzymywanie", "LabelCancelled": "Anulowano", "ButtonDownload": "Pobierz", @@ -1429,22 +1292,21 @@ "ButtonScheduledTasks": "Zaplanowane zadania", "MessageItemsAdded": "Obiekty dodane", "HeaderSelectCertificatePath": "Wybierz \u015bcie\u017ck\u0119 do certyfiaktu", - "ConfirmMessageScheduledTaskButton": "Operacja zazwyczaj dzia\u0142a w tle jako zaplanowane zadanie oraz nie wymaga r\u0119cznego w\u0142\u0105czenia. Aby skonfigurowa\u0107 zaplanowane zadanie zobacz:", "HeaderSupporterBenefit": "Aktywa subskrypcja Emby Premiere daje dodatkowe korzy\u015bci np: dost\u0119p do synchronizacji, pluginy premium, zawarto\u015b\u0107 kana\u0142\u00f3w internetowych i inne. {0} Dowiedz si\u0119 wi\u0119cej {1}.", - "HeaderWelcomeToProjectServerDashboard": "Witaj w dashboard'zie serwera Emby!", + "HeaderWelcomeToProjectServerDashboard": "Witaj w kokpicie serwera Emby!", "HeaderWelcomeToProjectWebClient": "Witamy w Emby", "ButtonTakeTheTour": "Dowiedz si\u0119 wi\u0119cej", "HeaderWelcomeBack": "Witaj ponownie!", "ButtonTakeTheTourToSeeWhatsNew": "Zobacz co nowego dla Ciebie przygotowali\u015bmy", - "MessageNoSyncJobsFound": "Brak zada\u0144 synchronizacji. Stw\u00f3rz nowe u\u017cywaj\u0105c odno\u015bnik\u00f3w Sync w interfejsie webowym Emby.", - "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", + "MessageNoSyncJobsFound": "Brak zada\u0144 synchronizacji. Stw\u00f3rz nowe u\u017cywaj\u0105c odno\u015bnik\u00f3w Sync w aplikacji.", + "MessageDownloadsFound": "Brak pobra\u0144 offline. Uczy\u0144 multimedia dost\u0119pne bez po\u0142\u0105czenia, poprzez wybranie opcji \"Dost\u0119pne bez po\u0142\u0105czenia\" w aplikacji.", "HeaderSelectDevices": "Wybierz urz\u0105dzenie", "ButtonCancelItem": "Anuluj obiekt", "ButtonQueueForRetry": "Zapisz aby spr\u00f3bowa\u0107 p\u00f3\u017aniej", "ButtonReenable": "Aktywuj ponownie", "SyncJobItemStatusSyncedMarkForRemoval": "Oznaczone do usuni\u0119cia", "LabelAbortedByServerShutdown": "(Przerwano w skuter wy\u0142\u0105czenia serwera)", - "LabelScheduledTaskLastRan": "Ostation uruchomiono {0}, czas trwania {1}.", + "LabelScheduledTaskLastRan": "Ostatnio uruchomiono {0}, czas trwania {1}.", "HeaderDeleteTaskTrigger": "Usu\u0144 Wyzwalacz Zadania", "MessageDeleteTaskTrigger": "Jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 ten wyzwalacz zadania?", "MessageNoPluginsInstalled": "Nie masz \u017cadnych wtyczek zainstalowanych.", @@ -1455,7 +1317,7 @@ "HeaderPlaybackError": "B\u0142\u0105d Odtwarzania", "MessagePlaybackErrorNotAllowed": "Obecnie nie jeste\u015b autoryzowany do odtwarzania tej zawarto\u015bci. prosz\u0119 skontaktuj si\u0119 ze swoim administratorem.", "MessagePlaybackErrorNoCompatibleStream": "Obecnie brak kompatybilnych stream\u00f3w. Prosz\u0119 spr\u00f3buj ponownie p\u00f3\u017aniej lub skontaktuj si\u0119 z administratorem systemu.", - "MessagePlaybackErrorPlaceHolder": "Wybrana zawarto\u015b\u0107 nie mo\u017ce by\u0107 odtwarzana z tego urz\u0105dzenia.", + "MessagePlaybackErrorPlaceHolder": "Prosz\u0119 w\u0142o\u017cy\u0107 p\u0142yt\u0119 aby odtworzy\u0107 ten film.", "HeaderSelectAudio": "Wybierz Audio", "HeaderSelectSubtitles": "Wybierz Napisy", "ButtonMarkForRemoval": "Usu\u0144 z Urz\u0105dzenia", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Wy\u0142\u0105czone", "ButtonMoreInformation": "Wi\u0119cej Informacji", "LabelNoUnreadNotifications": "Brak nieprzeczytanych powiadomie\u0144", - "LabelAllPlaysSentToPlayer": "Wszystkie odtworzenia b\u0119d\u0105 wysy\u0142ane do wybranego odtwarzacza.", "MessageInvalidUser": "Nieprawid\u0142owa nazwa u\u017cytkownika lub has\u0142o. Spr\u00f3buj ponownie.", "HeaderLoginFailure": "B\u0142\u0105d Logowania", "RecommendationBecauseYouLike": "Bo polubi\u0142e\u015b {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Nagranie anulowane.", "MessageRecordingScheduled": "Nagranie zosta\u0142o zaplanowane.", "HeaderConfirmSeriesCancellation": "Potwierd\u017a Anulowanie Serialu", - "MessageConfirmSeriesCancellation": "Czy na pewno chcesz anulowa\u0107 ten serial?", - "MessageSeriesCancelled": "Serial anulowany.", "HeaderConfirmRecordingDeletion": "Potwierd\u017a Usuni\u0119cie Nagrania", "MessageRecordingSaved": "Nagranie zapisane", "OptionWeekend": "Weekendy", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 dla plik\u00f3w cache serwera. Folder musi by\u0107 zapisywany.", "HeaderSelectTranscodingPathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 dla plik\u00f3w tymczasowych transkodowania. Folder musi by\u0107 zapisywany.", "HeaderSelectMetadataPathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 w kt\u00f3rej chcesz przechowywa\u0107 metadane. Folder musi by\u0107 zapisywany.", - "HeaderSelectChannelDownloadPath": "Wybierz \u015acie\u017ck\u0119 Pobierania Kana\u0142\u00f3w", - "HeaderSelectChannelDownloadPathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 do u\u017cycia dla zapisywania plik\u00f3w cache kana\u0142\u00f3w. Folder musi by\u0107 zapisywany.", - "LabelChapterDownloaders": "Podbieracze rozdzia\u0142\u00f3w:", - "LabelChapterDownloadersHelp": "W\u0142\u0105cz i okre\u015bl swoje preferowane podbieracze rozdzia\u0142\u00f3w w kolejno\u015bci priorytetu. Ni\u017cszy priorytet b\u0119dzie u\u017cyty do wype\u0142nienia brakuj\u0105cych informacji.", "HeaderFavoriteAlbums": "Ulubione Albumy", "HeaderLatestChannelMedia": "Ostatnie Pozycje Kana\u0142\u00f3w", "ButtonOrganizeFile": "Organizuj Pliki", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "Pracuje na porcie http {0}.", "LabelRunningOnPorts": "Pracuje na porcie http {0} oraz na porcie https {1}.", "HeaderLatestFromChannel": "Najnowsze w {0}", - "HeaderCurrentSubtitles": "Aktualne napisy", "ButtonRemoteControl": "Zdalne sterowanie", "HeaderLatestTvRecordings": "Najnowsze nagrania", "LabelCurrentPath": "Aktualna \u015bcie\u017cka:", @@ -1581,7 +1435,7 @@ "HeaderVideoQuality": "Jako\u015b\u0107 Wideo", "MessageErrorPlayingVideo": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas odtwarzania wideo.", "MessageEnsureOpenTuner": "Prosz\u0119 upewnij si\u0119 \u017ce otwarty tuner jest dost\u0119pny.", - "ButtonDashboard": "Panel G\u0142\u00f3wny", + "ButtonDashboard": "Kokpit", "ButtonReports": "Raporty", "MetadataManager": "Menad\u017cer metadanych", "HeaderTime": "Czas", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Usu\u0144 pozycje", "ConfirmDeleteItem": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?", "ConfirmDeleteItems": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?", - "MessageValueNotCorrect": "Wprowadzona warto\u015b\u0107 nie jest prawid\u0142owa. Spr\u00f3buj ponownie.", "MessageItemSaved": "Obiekt zapisany.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Prosz\u0119 zaakceptowa\u0107 warunki us\u0142ugi przed kontynuowaniem", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Brakuje obrazu t\u0142a.", "MissingLogoImage": "Brakuje logo.", "MissingEpisode": "Brakuje epizodu.", - "OptionScreenshots": "Zrzuty ekranu", "OptionBackdrops": "T\u0142a tematyczne", "OptionImages": "Obrazki", "OptionKeywords": "S\u0142owa kluczowe", @@ -1642,10 +1494,6 @@ "OptionPeople": "Ludzie", "OptionProductionLocations": "Lokalizacja produkcji", "OptionBirthLocation": "Miejsce urodzenia", - "LabelAllChannels": "Wszystkie kana\u0142y", - "AttributeNew": "Nowe", - "AttributePremiere": "Premiera", - "AttributeLive": "Na \u017cywo", "HeaderChangeFolderType": "Zmie\u0144 typ zawarto\u015bci", "HeaderChangeFolderTypeHelp": "Aby zmieni\u0107 typ, usu\u0144 bibliotek\u0119 a potem dodaj j\u0105 okre\u015blaj\u0105c nowy typ.", "HeaderAlert": "Powiadomienie", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Jako\u015b\u0107", "HeaderNotifications": "Powiadomienia", "HeaderSelectPlayer": "Wybierz Odtworzacz", - "MessageInternetExplorerWebm": "Dla najlepszych rezultat\u00f3w z internet Explorer prosz\u0119 zainstaluj wtyczk\u0119 WebM playback.", "HeaderVideoError": "B\u0142\u0105d Wideo", "ButtonViewSeriesRecording": "Ogl\u0105daj nagrania seriali", "HeaderSpecials": "Specjalne", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "D\u0142ugo\u015b\u0107 filmu", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Data wydania", - "HeaderDateAdded": "Data dodania", "HeaderSeries": "Seriale:", "HeaderSeason": "Sezon", "HeaderSeasonNumber": "Numer sezonu", @@ -1690,7 +1536,7 @@ "OptionMusicAlbums": "Albumy muzyczne", "OptionMusicVideos": "Teledyski", "OptionSongs": "Utwory", - "OptionHomeVideos": "Filmy domowe", + "OptionHomeVideos": "Filmy i zdj\u0119cia domowe", "OptionBooks": "Ksi\u0105\u017cki", "ButtonUp": "G\u00f3ra", "ButtonDown": "D\u00f3\u0142", @@ -1710,16 +1556,13 @@ "HeaderRemoveMediaLocation": "Usu\u0144 lokalizacj\u0119 medi\u00f3w", "MessageConfirmRemoveMediaLocation": "Czy na pewno chcesz usun\u0105\u0107 t\u0119 lokacj\u0119?", "LabelNewName": "Nowa nazwa:", - "HeaderAddMediaFolder": "Dodaj folder z mediami", - "HeaderAddMediaFolderHelp": "Nazwa (Filmy, Muzyka, TV, itp.):", "HeaderRemoveMediaFolder": "Usu\u0144 folder z mediami", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Nast\u0119puj\u0105ce lokacje multimedi\u00f3w zostan\u0105 usuni\u0119te z biblioteki Emby:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Czy na pewno chcesz usun\u0105\u0107 ten folder z biblioteki?", "ButtonRename": "Zmie\u0144 nazw\u0119", "ButtonChangeContentType": "Zmie\u0144 typ zawarto\u015bci", "HeaderMediaLocations": "Lokalizacja medi\u00f3w", "LabelContentTypeValue": "Typ zawarto\u015bci: {0}", - "LabelPathSubstitutionHelp": "Opcjonalnie: Zast\u0105pienie \u015bcie\u017cek mapuje lokalizacj\u0119 biblioteki do udzia\u0142\u00f3w sieciowych, kt\u00f3re klienci mog\u0105 u\u017cy\u0107 aby odtwarza\u0107 media bezpo\u015brednio.", "FolderTypeUnset": "Nieokre\u015blone (zawarto\u015b\u0107 mieszana)", "BirthPlaceValue": "Miejsce urodzenia: {0}", "DeathDateValue": "Zmar\u0142y: {0}", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "Nie transmitowany", "HeaderMissing": "Brakuj\u0105ce", "ButtonWebsite": "Strona WWW", - "ValueSeriesYearToPresent": "{0}-Obecnych", + "ValueSeriesYearToPresent": "{0} - Obecnych", "ValueAwards": "Nagrody: {0}", - "ValueBudget": "Bud\u017cet: {0}", - "ValueRevenue": "Zysk: {0}", "ValuePremiered": "Premiera {0}", "ValuePremieres": "Premiery {0}", "ValueStudio": "Studio: {0}", @@ -1800,12 +1641,12 @@ "MediaInfoLongitude": "D\u0142ugo\u015b\u0107 geo.", "MediaInfoShutterSpeed": "Pr\u0119dko\u015b\u0107 migawki", "MediaInfoSoftware": "Oprogramowanie", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "Wi\u0119cej do tego podobnych", "HeaderMovies": "Filmy", "HeaderAlbums": "Albumy", "HeaderGames": "Gry", "HeaderBooks": "Ksi\u0105\u017cki", - "HeaderEpisodes": "Episodes", + "HeaderEpisodes": "Odcinki", "HeaderSeasons": "Sezony", "HeaderTracks": "Utwory", "HeaderItems": "Pozycje", @@ -1815,7 +1656,7 @@ "ValueGuestStar": "Go\u015b\u0107 specjalny", "MediaInfoSize": "Rozmiar", "MediaInfoPath": "\u015acie\u017cka", - "MediaInfoFile": "File", + "MediaInfoFile": "Plik", "MediaInfoFormat": "Format", "MediaInfoContainer": "Kontener", "MediaInfoDefault": "Domy\u015blnie", @@ -1846,15 +1687,10 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Okre\u015bl w\u0142asn\u0105 \u015bcie\u017ck\u0119 intro", - "HeaderRateAndReview": "Oceny i Recenzje", "HeaderThankYou": "Dzi\u0119kuje", - "MessageThankYouForYourReview": "Dzi\u0119kuje za recenzje", - "LabelYourRating": "Twoja ocena:", "LabelFullReview": "Pe\u0142na recenzja:", - "LabelShortRatingDescription": "Kr\u00f3tkie podsumowanie oceny:", - "OptionIRecommendThisItem": "Polecam t\u0105 pozycje", - "ReleaseYearValue": "Release year: {0}", - "OriginalAirDateValue": "Original air date: {0}", + "ReleaseYearValue": "Rok wydania: {0}", + "OriginalAirDateValue": "data pierwszej emisji: {0}", "WebClientTourContent": "Obejrzyj swoje niedawno dodane media, nast\u0119pne odcinki i wi\u0119cej. Zielone k\u00f3\u0142ka oznaczaj\u0105 jak wiele nie odtworzonych pozycji zosta\u0142o.", "WebClientTourMovies": "Odtwarzaj filmy, zwiastuny i wiele wi\u0119cej z ka\u017cdego urz\u0105dzeni i przegl\u0105darki", "WebClientTourMouseOver": "zatrzymaj mysz nad plakatem aby uzyska\u0107 szybk\u0105 informacj\u0119", @@ -1870,18 +1706,17 @@ "WebClientTourMobile2": "i \u0142atwo kontroluje inne urz\u0105dzenia i aplikacje Emby", "WebClientTourMySync": "Synchronizuj swoje osobiste media do twoich urz\u0105dze\u0144 dla ogl\u0105dania offline.", "MessageEnjoyYourStay": "Mi\u0142ego pobytu", - "DashboardTourDashboard": "Panel g\u0142\u00f3wny serwera pozwala ci na monitorowanie twojego serwera i u\u017cytkownik\u00f3w. Zawsze b\u0119dziesz wiedzia\u0142 co kto robi i gdzie si\u0119 znajduje.", + "DashboardTourDashboard": "Kokpit serwera pozwala ci na monitorowanie twojego serwera i u\u017cytkownik\u00f3w. Zawsze b\u0119dziesz wiedzia\u0142 co kto robi i gdzie si\u0119 znajduje.", "DashboardTourHelp": "Pomoc w aplikacji dostarcza \u0142atwe guziki do otwierania stron wiki powi\u0105zanych z zawarto\u015bci\u0105 strony.", "DashboardTourUsers": "\u0141atwo tw\u00f3rz konta u\u017cytkownik\u00f3w dla swoich przyjaci\u00f3\u0142 i rodziny, ka\u017cdy ze swoimi uprawnieniami, dost\u0119pem do biblioteki, ochron\u0105 rodzicielsk\u0105 i wi\u0119cej.", - "DashboardTourCinemaMode": "Tryb kina wnosi do\u015bwiadczenie kinowe prosto do twojego salonu z mo\u017cliwo\u015bci\u0105 odtwarzania zwiastun\u00f3w i w\u0142asnego intra przed g\u0142\u00f3wn\u0105 tre\u015bci\u0105.", + "DashboardTourCinemaMode": "Tryb kinowy wniesie kinowe prze\u017cycia wprost do Twojego salonu z mo\u017cliwo\u015bci\u0105 odtwarzania zwiastun\u00f3w i w\u0142asnego intra przez seansem.", "DashboardTourChapters": "W\u0142\u0105cz generowanie obraz\u00f3w rozdzia\u0142\u00f3w dla twoich wideo dla \u0142adniejszej prezentacji podczas przegl\u0105dania.", - "DashboardTourSubtitles": "Automatycznie pobieraj napisy dla twoich wideo w dowolnym j\u0119zyku.", + "DashboardTourSubtitles": "Automatycznie pobieraj napisy dla twojego wideo w dowolnym j\u0119zyku.", "DashboardTourPlugins": "Zainstaluj wtyczki takie jak przegl\u0105darka kana\u0142\u00f3w internetowych, TV na \u017cywo, skanery metadanych i wiele wi\u0119cej.", "DashboardTourNotifications": "Automatycznie wysy\u0142aj powiadomienia o zdarzeniach na serwerze do swoich urz\u0105dze\u0144 mobilnym, maila i wi\u0119cej.", "DashboardTourScheduledTasks": "\u0141awo zarz\u0105dzaj d\u0142ugo trwaj\u0105cymi operacjami za pomoc\u0105 zaplanowanych zada\u0144. Decyduj kiedy s\u0105 uruchamiane i jak cz\u0119sto.", - "DashboardTourMobile": "Panel G\u0142\u00f3wny Emby dzia\u0142a \u015bwietnie na smartfonach i tabletach. Zarz\u0105dzaj swoim serwerem ze swojej d\u0142oni kiedykolwiek, gdziekolwiek.", - "DashboardTourSync": "Synchronizuj swoje osobiste media z swoimi urz\u0105dzeniami do ogl\u0105dania offline.", - "MessageRefreshQueued": "Od\u015bwie\u017cenie w kolejce", + "DashboardTourMobile": "Kokpit Emby dzia\u0142a \u015bwietnie na smartfonach i tabletach. Zarz\u0105dzaj swoim serwerem ze swojej d\u0142oni kiedykolwiek, gdziekolwiek.", + "DashboardTourSync": "Synchronizuj swoje osobiste multimedia z swoimi urz\u0105dzeniami do ogl\u0105dania offline.", "TabExtras": "Dodatki", "HeaderUploadImage": "Wy\u015blij obrazek", "DeviceLastUsedByUserName": "Ostatnio u\u017cyte przez {0}", @@ -1915,14 +1750,10 @@ "SyncMedia": "Synchronizuj media", "HeaderCancelSyncJob": "Anuluj synchronizacj\u0119", "CancelSyncJobConfirmation": "Anulowanie synchronizacji spowoduje usuni\u0119cie medi\u00f3w z urz\u0105dzenia podczas kolejnej synchronizacji. Czy jeste\u015b pewien, \u017ce chcesz kontynuowa\u0107?", - "MessagePleaseSelectDeviceToSyncTo": "Wybierz urz\u0105dzenie do synchronizacji", - "MessageSyncJobCreated": "Utworzono zadanie synchronizacji.", "LabelQuality": "Jako\u015b\u0107:", - "OptionAutomaticallySyncNewContent": "Automatycznie synchronizuj now\u0105 zawarto\u015b\u0107", - "OptionAutomaticallySyncNewContentHelp": "Nowododana zawarto\u015b\u0107 zostanie automatycznie zsynchronizowana z urz\u0105dzeniem.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", + "MessageBookPluginRequired": "Wymaga instalacji wtyczki Bookshelf", + "MessageGamePluginRequired": "Wymaga instalacji wtyczki GameBrowser", + "MessageUnsetContentHelp": "Zawarto\u015b\u0107 zostanie wy\u015bwietlona jako p\u0142askie foldery, dla najlepszych wynik\u00f3w u\u017cyj menad\u017cera metadanych dla ustawienia typu zawarto\u015bci sub folder\u00f3w.", "SyncJobItemStatusQueued": "Zakolejkowano", "SyncJobItemStatusConverting": "Konwertuj\u0119", "SyncJobItemStatusTransferring": "Przenosz\u0119", @@ -1933,7 +1764,7 @@ "LabelProfile": "Profil:", "LabelBitrateMbps": "Przep\u0142ywno\u015b\u0107 (Mbps):", "EmbyIntroDownloadMessage": "Aby pobra\u0107 i zainstalowa\u0107 serwer Emby odwied\u017a {0}.", - "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.", + "EmbyIntroDownloadMessageWithoutLink": "Aby pobra\u0107 i zainstalowa\u0107 darmowy serwer Emby odwied\u017a witryn\u0119 internetow\u0105 Emby.", "ButtonNewServer": "Nowy serwer", "MyDevice": "Moje urz\u0105dzenie", "ButtonRemote": "Zdalny", @@ -1941,53 +1772,40 @@ "TabScenes": "Sceny", "HeaderUnlockApp": "Odblokuj aplikacj\u0119", "HeaderUnlockSync": "Odblokuj synchronizacj\u0119 Emby", - "MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119 ma\u0142\u0105, jednorazow\u0105 op\u0142at\u0105, albo wykupuj\u0105c\u0105c subskrypcj\u0119 Emby Premiere.", - "MessageUnlockAppWithSupporter": "Odblokuj t\u0119 funkcj\u0119 poprzez subskrypcj\u0119 Emby Premiere.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Serwis p\u0142atno\u015bci jest chwilowo niedost\u0119pny. Prosz\u0119 spr\u00f3bowa\u0107 p\u00f3\u017aniej.", - "ButtonUnlockWithPurchase": "Odblokuj zakupem", - "ButtonUnlockPrice": "Odblokuj {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "W\u0142\u0105cz pe\u0142en ekran", "ButtonServer": "Serwer", "HeaderLibrary": "Biblioteka", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Powiedz co\u015b jak...", - "NoResultsFound": "No results found.", + "NoResultsFound": "Nic nie znaleziono.", "ButtonManageServer": "Zarz\u0105dzaj Serwerem", "ButtonPreferences": "Preferencje", "ButtonViewArtist": "Zobacz artyst\u00f3w", "ButtonViewAlbum": "Zobacz album", - "ButtonEditImages": "Edit images", + "ButtonEditImages": "Edytuj obrazy", "ErrorMessagePasswordNotMatchConfirm": "Has\u0142o i potwierdzenie has\u0142a musz\u0105 by\u0107 takie same.", "ErrorMessageUsernameInUse": "Nazwa u\u017cytkownika jest aktualnie zaj\u0119ta. Wybierz inna nazw\u0119 i spr\u00f3buj ponownie.", "ErrorMessageEmailInUse": "Adres e-mail jest ju\u017c aktualnie w u\u017cyciu. Wprowad\u017a nowy adres e-mail i spr\u00f3buj ponownie lub u\u017cyj opcji przywracania has\u0142a.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "MessageThankYouForConnectSignUp": "Dzi\u0119kujemy za rejestracj\u0119 w Emby Connect. Email b\u0119dzie wys\u0142any na tw\u00f3j adres z instrukcjami jak autoryzowa\u0107 twoje nowe konto. Prosz\u0119 potwierdzi\u0107 konto i wr\u00f3ci\u0107 tutaj aby si\u0119 zalogowa\u0107.", + "MessageThankYouForConnectSignUpNoValidation": "Dzi\u0119kujemy za rejestracj\u0119 w Emby Connect! Zostaniesz teraz poproszony o zalogowanie si\u0119 danymi z Emby Connect.", "ButtonShare": "Udost\u0119pnij", "HeaderConfirm": "Potwierd\u017a", "MessageConfirmDeleteTunerDevice": "Czy na pewno chcesz usun\u0105\u0107 to urz\u0105dzenie?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", + "MessageConfirmDeleteGuideProvider": "Czy na pewno chcesz usun\u0105\u0107 tego dostawc\u0119 programu telewizyjnego?", "HeaderDeleteProvider": "Usu\u0144 operatora", "ErrorAddingTunerDevice": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawania dekodera telewizyjnego. Upewnij si\u0119, \u017ce masz do niego dost\u0119p i spr\u00f3buj ponownie.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", + "ErrorSavingTvProvider": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawania dostawc\u0119 telewizji. Upewnij si\u0119, \u017ce masz do niego dost\u0119p i spr\u00f3buj ponownie.", + "ErrorGettingTvLineups": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas pobierania programu telewizyjnego. Upewnij si\u0119, \u017ce informacje s\u0105 poprawne i spr\u00f3buj ponownie.", + "MessageCreateAccountAt": "Stw\u00f3rz konto na {0}", + "ErrorPleaseSelectLineup": "Wybierz program i spr\u00f3buj ponownie, je\u015bli \u017cadne programy nie s\u0105 dost\u0119pne, sprawd\u017a czy tw\u00f3j login, has\u0142o i kod pocztowy jest poprawny.", "HeaderTryEmbyPremiere": "Wypr\u00f3buj Emby Premiere", - "ButtonBecomeSupporter": "Kup Emby Premiere", - "ButtonClosePlayVideo": "Zamknij i odtwarzaj moje media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", + "OptionEnableDisplayMirroring": "W\u0142\u0105cz wy\u015bwietlanie lustrzane", + "HeaderSyncRequiresSupporterMembership": "Synchronizacja wymaga aktywnej subskrypcji Emby Premiere.", + "HeaderSyncRequiresSupporterMembershipAppVersion": "Synchronizacja wymaga po\u0142\u0105czenia z serwerem Emby z aktywna subskrypcj\u0105 Emby Premiere.", + "ErrorValidatingSupporterInfo": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas sprawdzania twoich informacji Emby Premiere. Spr\u00f3buj ponownie p\u00f3\u017aniej.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Synchronizacja rozpocz\u0119ta", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", + "OptionBackdropSlideshow": "Pokaz zrzut\u00f3w", "HeaderTopPlugins": "Najlepsze pluginy", "ButtonOther": "Inne", "HeaderSortBy": "Sortuj wed\u0142ug", @@ -1996,151 +1814,136 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "Dla wi\u0119kszej liczby dostawc\u00f3w telewizji, kliknij Zewn\u0119trzne Us\u0142ugi aby zobaczyc pozosta\u0142e opcje.", "ButtonGuide": "Przewodnik", - "ButtonRecordedTv": "Nagrana telewizja", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", + "ConfirmEndPlayerSession": "Czy chcesz zamkn\u0105\u0107 Emby na tym urz\u0105dzeniu?", "ButtonYes": "Tak", "AddUser": "Dodaj u\u017cytkownika", "ButtonNo": "Nie", - "ButtonRestorePreviousPurchase": "Przywr\u00f3\u0107 zakup", - "AlreadyPaid": "Ju\u017c zap\u0142acone?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Teraz odtwarzane", "HeaderLatestMovies": "Ostatnie filmy", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "Adres e-mail", - "TextPleaseEnterYourEmailAddressForSubscription": "Prosz\u0119 wprowadzi\u0107 sw\u00f3j adres e-mail.", "LoginDisclaimer": "Emby jest zaprojektowane tak, aby pomaga\u0107 w zarz\u0105dzaniu bibliotek\u0105 domow\u0105 - filmami, muzyk\u0105 czy zdj\u0119ciami. Zapoznaj si\u0119 z zasadami u\u017cytkowania. U\u017cywanie oprogramowania Emby wymaga pe\u0142nego zaakceptowania zasad.", "TermsOfUse": "Zasady u\u017cytkowania", "NumLocationsValue": "{0} folder\u00f3w", "ButtonAddMediaLibrary": "Dodaj media do biblioteki", "ButtonManageFolders": "Zarz\u0105dzaj folderami", - "MessageTryMicrosoftEdge": "Dla wi\u0119kszego komportu na Windows 10 wypr\u00f3buj now\u0105 przegl\u0105dark\u0119 Microsoft Edge.", - "MessageTryModernBrowser": "Dla lepszego u\u017cytkowania na systemie Windows, wypr\u00f3buj nowoczesne przegl\u0105darki jak Google Chrome, Firefox czy Opera.", "ErrorAddingListingsToSchedulesDirect": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawanie sk\u0142adu do twojego konta Schedules Direct. Schedules Direct pozwala na limitowana ilo\u015b\u0107 sk\u0142ad\u00f3w na konto. Mo\u017ce by\u0107 wymagane zalogowanie si\u0119 na stron\u0119 Schedules Direct i usuni\u0119cie innych sk\u0142ad\u00f3w aby kontunuowa\u0107.", "PleaseAddAtLeastOneFolder": "Prosz\u0119 dodaj przynajmniej jeden folder do tej listy poprzez klikni\u0119cie guzika Dodaj", "ErrorAddingMediaPathToVirtualFolder": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawania \u015bcie\u017cki z mediami. Prosz\u0119 upewnij si\u0119 \u017ce podana \u015bcie\u017cka jest prawid\u0142owa oraz czy Serwer Emby posiada dost\u0119p do lokalizacji.", "ErrorRemovingEmbyConnectAccount": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas usuwania konta Emby Connect. Prosz\u0119 upewnij si\u0119 \u017ce posiadasz aktywne po\u0142\u0105czenie z internetem i spr\u00f3buj ponownie.", - "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", + "ErrorAddingEmbyConnectAccount1": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawania konta Emby Connect. Posiadasz konto Emby? Zarejestruj si\u0119 na {0}.", + "ErrorAddingEmbyConnectAccount2": "Upewnij si\u0119, \u017ce konto Emby zosta\u0142o aktywowane post\u0119puj\u0105c zgodnie z instrukcjami zawartymi w wiadomo\u015bci e-mail wysy\u0142anej po utworzeniu konta. Je\u015bli nie otrzyma\u0142e\u015b tej wiadomo\u015bci, prosz\u0119 wy\u015blij e-mail na {0} z adresu e-mail u\u017cywanego w koncie Emby.", + "ErrorAddingEmbyConnectAccount3": "Konto Emby jest ju\u017c po\u0142\u0105czone z innym u\u017cytkownikiem lokalnym. Konto Emby mo\u017ce by\u0107 po\u0142\u0105czone tylko z jednym u\u017cytkownikiem lokalnym w danym czasie.", "HeaderFavoriteArtists": "Ulubieni arty\u015bci", "HeaderFavoriteSongs": "Ulubione utwory", "HeaderConfirmPluginInstallation": "Potwierd\u017a instalacj\u0119 pluginu", "PleaseConfirmPluginInstallation": "Kliknij OK aby potwierdzi\u0107, i\u017c zapozna\u0142e\u015b si\u0119 z powy\u017cszym i chcesz zainstalowa\u0107 plugin.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Odtw\u00f3rz jedn\u0105 minut\u0119", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Dodaj tylko brakuj\u0105ce informacje", - "ValueExample": "Example: {0}", - "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", - "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", - "LabelFileOrUrl": "File or url:", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "HeaderTuners": "Tuners", - "LabelOptionalM3uUrl": "M3U url (optional):", - "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", - "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", - "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "LabelAllowHWTranscoding": "Allow hardware transcoding", - "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", - "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", - "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.", - "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.", - "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Yesterday": "Yesterday", - "DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", - "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", - "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", - "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", - "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", + "MessagePluginInstallDisclaimer": "Wtyczki tworzone przez cz\u0142onk\u00f3w spo\u0142eczno\u015bci Emby s\u0105 doskona\u0142ym sposobem, aby zwi\u0119kszy\u0107 swoje prze\u017cycia z dodatkowymi funkcjami i zaletami Emby. Przed instalacj\u0105 nale\u017cy zdawa\u0107 sobie spraw\u0119 jakie efekty mog\u0105 mie\u0107 na tw\u00f3j serwer Emby, takie jak d\u0142u\u017cszy skan biblioteki, dodatkowe przetwarzanie w tle, a tak\u017ce obni\u017cenie stabilno\u015bci systemu.", + "HeaderMobileSync": "Synchronizacja mobilna", + "HeaderCloudSync": "Synchronizacja z chmur\u0105", + "HeaderFreeApps": "Darmowe aplikacje Emby", + "CoverArt": "Ok\u0142adka", + "ButtonOff": "Wy\u0142\u0105cz", + "TitleHardwareAcceleration": "Akceleracja sprz\u0119towa", + "HardwareAccelerationWarning": "W\u0142\u0105czenie akceleracji strz\u0119towej mo\u017ce wywo\u0142a\u0107 niestabilno\u015b\u0107 na niekt\u00f3rych \u015brodowiskach. Upewnij si\u0119 \u017ce tw\u00f3j system operacyjny i sterowniki karty graficznej s\u0105 w pe\u0142ni aktualne. Je\u017celi masz problemy z odtwarzaniem wideo po w\u0142\u0105czeni, musisz zmieni\u0107 ponownie na Automatyczne.", + "HeaderSelectCodecIntrosPath": "Wybierz \u015bcie\u017ck\u0119 do intro kodeka", + "ValueExample": "Przyk\u0142ad: {0}", + "OptionEnableAnonymousUsageReporting": "W\u0142\u0105cz anonimowe raporty u\u017cytkowania", + "OptionEnableAnonymousUsageReportingHelp": "Pozw\u00f3l Emby na zbieranie anonimowych danych tj. zainstalowane wtyczki, wersja aplikacji Emby itp. Te informacje s\u0105 wykorzystywane tylko w celach poprawy oprogramowania.", + "LabelFileOrUrl": "Plik, lub adres url:", + "OptionEnableForAllTuners": "W\u0142\u0105cz dla wszystkich tuner\u00f3w", + "HeaderTuners": "Tunery", + "LabelOptionalM3uUrl": "Adres url M3U (opcjonalny)", + "LabelOptionalM3uUrlHelp": "Niekt\u00f3re urz\u0105dzenia wspieraj\u0105 list\u0119 kana\u0142\u00f3w M3U.", + "TabResumeSettings": "Ustawienia Wznawiania", + "DrmChannelsNotImported": "Kana\u0142y z DRM nie zostan\u0105 zaimportowane.", + "LabelAllowHWTranscoding": "Zezwalaj na sprz\u0119towe transkodowanie", + "AllowHWTranscodingHelp": "Je\u015bli w\u0142\u0105czone, zezwalaj tunerowi na transkodowanie strumieni w locie. To mo\u017ce pom\u00f3c zmniejszy\u0107 pro\u015bby serwera Emby na transkodowanie.", + "OptionRequirePerfectSubtitleMatch": "Pobierz tylko napisy, kt\u00f3re pasuj\u0105 idealnie do moich plik\u00f3w wideo", + "ErrorAddingGuestAccount1": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawania konta Emby Connect. Czy tw\u00f3j go\u015b\u0107 posiada konto Emby? Mo\u017ce zarejestrowa\u0107 si\u0119 na {0}.", + "ErrorAddingGuestAccount2": "Upewnij si\u0119, \u017ce tw\u00f3j go\u015b\u0107 zako\u0144czy\u0142 aktywacj\u0119 post\u0119puj\u0105c zgodnie z instrukcjami zawartymi w wiadomo\u015bci e-mail wysy\u0142anej po utworzeniu konta. Je\u015bli nie otrzyma\u0142 tej wiadomo\u015bci, prosz\u0119 wy\u015blij e-mail na {0} z zawieraj\u0105cego tw\u00f3j adres e-mail, jak i jego.", + "GuestUserNotFound": "U\u017cytkownik nie znaleziony. Upewnij si\u0119 \u017ce nazwa jest poprawna i spr\u00f3buj ponownie, albo wprowad\u017a jego adres email.", + "Yesterday": "Wczoraj", + "DownloadImagesInAdvanceWarning": "Pobieranie wszystkich obraz\u00f3w z wyprzedzeniem mo\u017ce skutkowa\u0107 d\u0142u\u017cszym czasem skanowania biblioteki", + "MetadataSettingChangeHelp": "Zmiana ustawie\u0144 metadanych wp\u0142ynie ns now\u0105 tre\u015b\u0107, kt\u00f3ra b\u0119dzie dodawana w przysz\u0142o\u015bci. Aby od\u015bwie\u017cy\u0107 istniej\u0105c\u0105 zawarto\u015b\u0107, otw\u00f3rz ekran szczeg\u00f3\u0142\u00f3w, a nast\u0119pnie kliknij przycisk Od\u015bwie\u017c lub wykonaj od\u015bwie\u017canie zbiorcze, korzystaj\u0105c z mened\u017cera metadanych.", + "OptionConvertRecordingPreserveAudio": "Zachowaj oryginalne audio przy konwersji nagra\u0144 (je\u015bli to mo\u017cliwe)", + "OptionConvertRecordingPreserveAudioHelp": "Zapewni to lepszy d\u017awi\u0119k, ale mo\u017ce wymaga\u0107 transkodowania podczas odtwarzania na niekt\u00f3rych urz\u0105dzeniach.", + "OptionConvertRecordingPreserveVideo": "Zachowaj oryginalne wideo przy konwersji nagra\u0144", + "OptionConvertRecordingPreserveVideoHelp": "Zapewni to lepszy obraz, ale mo\u017ce wymaga\u0107 transkodowania podczas odtwarzania na niekt\u00f3rych urz\u0105dzeniach.", + "AddItemToCollectionHelp": "Dodaj obiekty do kolekcji wyszukuj\u0105c je i u\u017cyj prawy przycisk myszy lub dotknij menu, aby doda\u0107 je do kolekcji.", "HeaderHealthMonitor": "Health Monitor", - "HealthMonitorNoAlerts": "There are no active alerts.", + "HealthMonitorNoAlerts": "Nie ma aktywnych alert\u00f3w.", "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "VisualLoginFormHelp": "Select a user or sign in manually", - "LabelSportsCategories": "Sports categories:", - "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "LabelNewsCategories": "News categories:", - "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "LabelKidsCategories": "Children's categories:", - "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "LabelMovieCategories": "Movie categories:", - "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", - "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", - "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", - "TitleHostingSettings": "Hosting Settings", - "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "MapChannels": "Map Channels", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegVersion": "FFmpeg version:", - "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "SetupFFmpeg": "Setup FFmpeg", - "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "DownloadFFmpeg": "Download FFmpeg", - "FFmpegSuggestedDownload": "Suggested download: {0}", - "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", - "OptionUseSystemInstalledVersion": "Use system installed version", - "OptionUseMyCustomVersion": "Use a custom version", - "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", - "XmlTvPremiere": "By default, Emby will import {0} hours of guide data. Importing unlimited data requires an active Emby Premiere subscription.", - "MoreFromValue": "More from {0}", - "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", - "EnablePhotos": "Enable photos", - "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", - "MakeAvailableOffline": "Make available offline", - "ConfirmRemoveDownload": "Remove download?", - "RemoveDownload": "Remove download", - "SyncToOtherDevices": "Sync to other devices", - "ManageOfflineDownloads": "Manage offline downloads", - "MessageDownloadScheduled": "Download scheduled", - "RememberMe": "Remember me", - "HeaderOfflineSync": "Offline Sync", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", - "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelVaapiDevice": "VA API Device:", + "VisualLoginFormHelp": "Wybierz u\u017cytkownika, albo zaloguj si\u0119 r\u0119cznie", + "LabelSportsCategories": "Kategorie sportowe:", + "XmlTvSportsCategoriesHelp": "Programy z tymi kategoriami, b\u0119d\u0105 wy\u015bwietlane jako sportowe. Oddziel je u\u017cywaj\u0105c '|'.", + "LabelNewsCategories": "Kategorie wiadomo\u015bci:", + "XmlTvNewsCategoriesHelp": "Programy z tymi kategoriami, b\u0119d\u0105 wy\u015bwietlane jako wiadomo\u015bci. Oddziel je u\u017cywaj\u0105c '|'.", + "LabelKidsCategories": "Kategorie dzieci\u0119ce:", + "XmlTvKidsCategoriesHelp": "Programy z tymi kategoriami, b\u0119d\u0105 wy\u015bwietlane jako dzieci\u0119ce. Oddziel je u\u017cywaj\u0105c '|'.", + "LabelMovieCategories": "Kategorie filmowe", + "XmlTvMovieCategoriesHelp": "Programy z tymi kategoriami, b\u0119d\u0105 wy\u015bwietlane jako filmy. Oddziel je u\u017cywaj\u0105c '|'.", + "XmlTvPathHelp": "\u015acie\u017cka do pliku xml tv. Emby przeczyta ten plik i okresowo sprawdzi aktualizacj\u0119. Jeste\u015b odpowiedzialny za tworzenie i aktualizowanie pliku.", + "LabelBindToLocalNetworkAddress": "Przypisz do lokalnego adresu sieciowego:", + "LabelBindToLocalNetworkAddressHelp": "Opcjonalne. Zast\u0105pi to lokalny adres IP adresem serwera HTTP Je\u015bli pozostanie puste, serwer b\u0119dzie wi\u0105za\u0107 si\u0119 z wszystkimi dost\u0119pnymi adresami. Zmiana tej warto\u015bci wymaga ponownego uruchomienia serwera Emby.", + "TitleHostingSettings": "Ustawienia Hosting", + "SettingsWarning": "Zmiana tych warto\u015bci mo\u017ce spowodowa\u0107 niestabilno\u015b\u0107 lub awari\u0119 po\u0142\u0105czenia. Je\u015bli wyst\u0105pi\u0105 jakiekolwiek problemy, zalecamy powr\u00f3t do ustawie\u0144 ich na domy\u015blne.", + "MapChannels": "Mapuj kana\u0142y", + "LabelffmpegPath": "\u015acie\u017cka do FFmpeg:", + "LabelffmpegVersion": "Wersja FFmpeg:", + "LabelffmpegPathHelp": "\u015acie\u017cka do FFmpeg, lub folderu zawieraj\u0105cego FFmpeg.", + "SetupFFmpeg": "Konfiguracja FFmpeg", + "SetupFFmpegHelp": "Emby mo\u017ce wymaga\u0107 biblioteki lub aplikacji do konwersji niekt\u00f3rych rodzaj\u00f3w materia\u0142\u00f3w. Istnieje wiele r\u00f3\u017cnych dost\u0119pnych aplikacji, jednak Emby zosta\u0142 przetestowany do pracy z FFmpeg. Emby nie jest w \u017caden spos\u00f3b zwi\u0105zany z FFmpeg, ich w\u0142asno\u015bciom, kodem, czy te\u017c dystrybucj\u0105.", + "EnterFFmpegLocation": "Wprowad\u017a \u015bcie\u017ck\u0119 do FFmpeg", + "DownloadFFmpeg": "Pobierz FFmpeg", + "FFmpegSuggestedDownload": "Sugerowane pobieranie: {0}", + "UnzipFFmpegFile": "Rozpakuj pobrany plik do wybranego folderu.", + "OptionUseSystemInstalledVersion": "U\u017cyj wersji systemowej", + "OptionUseMyCustomVersion": "U\u017cyj wersji niestandardowej", + "FFmpegSavePathNotFound": "Nie Jeste\u015bmy w stanie zlokalizowa\u0107 FFmpeg przy u\u017cyciu wprowadzonej \u015bcie\u017cki. FFprobe jest r\u00f3wnie\u017c wymagane i musi znajdowa\u0107 si\u0119 w tym samym folderze. Elementy te s\u0105 zwykle w tej samej paczce. Prosz\u0119 sprawdzi\u0107 \u015bcie\u017ck\u0119 i spr\u00f3buj ponownie.", + "XmlTvPremiere": "Domy\u015blnie Emby zaimportuje {0} godzin programu. Importowanie nieograniczonej danych wymaga aktywnego subskrypcji Emby Premiere.", + "MoreFromValue": "Wi\u0119cej od {0}", + "OptionSaveMetadataAsHiddenHelp": "Zmiana ta b\u0119dzie mia\u0142a zastosowanie do nowych metadanych zapisanych w przysz\u0142o\u015bci. Istniej\u0105ce pliki metadanych zostan\u0105 zaktualizowane przy nast\u0119pnym zapisie przez serwer Emby.", + "EnablePhotos": "W\u0142\u0105cz zdj\u0119cia", + "EnablePhotosHelp": "Zdj\u0119cia zostan\u0105 wykryte i wy\u015bwietlone obok innych plik\u00f3w multimedialnych.", + "MakeAvailableOffline": "Dost\u0119pne bez po\u0142\u0105czenia", + "ConfirmRemoveDownload": "Usun\u0105\u0107 pobieranie?", + "RemoveDownload": "Usu\u0144 pobieranie", + "SyncToOtherDevices": "Synchronizuj z innymi urz\u0105dzeniami", + "ManageOfflineDownloads": "Zarz\u0105dzaj pobranymi materia\u0142ami", + "MessageDownloadScheduled": "Pobierz zaplanowane", + "RememberMe": "Zapami\u0119taj mnie", + "HeaderOfflineSync": "Synchronizacja offline", + "LabelMaxAudioFileBitrate": "Maksymalny bitrate plik\u00f3w audio:", + "LabelMaxAudioFileBitrateHelp": "Pliki audio z wy\u017cszym bitrate b\u0119d\u0105 konwertowane przez serwer Emby. Wybierz wy\u017csz\u0105 warto\u015b\u0107 dla lepszej jako\u015bci, lub ni\u017csz\u0105 warto\u015b\u0107 dla zachowania przestrzeni dyskowej.", + "LabelVaapiDevice": "Urz\u0105dzenie VA API:", "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", - "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", - "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", + "HowToConnectFromEmbyApps": "Jak pod\u0142\u0105czy\u0107 z aplikacji Emby", + "MessageFolderRipPlaybackExperimental": "Wsparcie dla odtwarzania folder\u00f3w i plik\u00f3w ISO w tej aplikacji jest eksperymentalne. W celu uzyskania najlepszych rezultat\u00f3w, spr\u00f3buj aplikacji Emby kt\u00f3ra obs\u0142uguje te formaty, lub u\u017cywaj zwyk\u0142ych plik\u00f3w wideo.", + "OptionExtractChapterImage": "W\u0142\u0105cz wydobycie obrazu rozdzia\u0142\u00f3w", + "Downloads": "Pobrania", "LabelEnableDebugLogging": "Wl\u0105cz logowanie dubiggingu", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", + "OptionEnableExternalContentInSuggestions": "W\u0142\u0105cz zewn\u0119trzn\u0105 zawarto\u015b\u0107 w sugestiach", + "OptionEnableExternalContentInSuggestionsHelp": "Zezwalaj, aby zwiastuny i programy TV by\u0142y za\u0142\u0105czane w sugestiach.", "LabelH264EncodingPreset": "H264 encoding preset:", "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", "LabelH264Crf": "H264 encoding CRF:", "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", - "HeaderForKids": "For Kids", - "HeaderRecordingGroups": "Recording Groups", - "LabelConvertRecordingsTo": "Convert recordings to:", - "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", + "Sports": "Sport", + "HeaderForKids": "Dla dzieci", + "HeaderRecordingGroups": "Grupy nagra\u0144", + "LabelConvertRecordingsTo": "Konwertuj nagrania do:", + "HeaderUpcomingOnTV": "Nadchodz\u0105ce w TV", + "LabelOptionalNetworkPath": "(Niewymagane) Udost\u0119pniony folder sieciowy:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Odtwarzaj zewn\u0119trznym odtwarzaczem", - "WillRecord": "Will record", - "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "NotScheduledToRecord": "Nie zaplanowano nagrania", + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Ostatnie {0}", + "LabelMoviePrefix": "Prefiks filmu:", + "LabelMoviePrefixHelp": "Je\u015bli prefiks jest stosowany do tytu\u0142\u00f3w film\u00f3w, wprowad\u017a go tutaj aby Emby obs\u0142ugiwa\u0142 go prawid\u0142owo.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/pt-BR.json b/dashboard-ui/strings/pt-BR.json index 2a4456ed7e..15e0645957 100644 --- a/dashboard-ui/strings/pt-BR.json +++ b/dashboard-ui/strings/pt-BR.json @@ -1,8 +1,6 @@ { - "LabelExit": "Sair", - "LabelApiDocumentation": "Documenta\u00e7\u00e3o da Api", - "LabelBrowseLibrary": "Explorar Biblioteca", - "LabelConfigureServer": "Configurar o Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Anterior", "LabelFinish": "Finalizar", "LabelNext": "Pr\u00f3ximo", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Seu primeiro nome:", "MoreUsersCanBeAddedLater": "Mais usu\u00e1rios poder\u00e3o ser adicionados depois dentro do Painel.", "UserProfilesIntro": "Emby inclui suporte nativo para perfis de usu\u00e1rios, permitindo que cada usu\u00e1rio tenha seus pr\u00f3prios ajustes de visualiza\u00e7\u00e3o, estado da reprodu\u00e7\u00e3o e controles et\u00e1rios.", - "LabelWindowsService": "Servi\u00e7o do Windows", - "AWindowsServiceHasBeenInstalled": "Foi instalado um Servi\u00e7o do Windows.", - "WindowsServiceIntro1": "O Servidor Emby normalmente \u00e9 executado como uma aplica\u00e7\u00e3o de desktop com um \u00edcone na bandeja do sistema, mas se preferir executar como um servi\u00e7o em segundo plano, pode ser iniciado no painel de controle de servi\u00e7os do windows.", - "WindowsServiceIntro2": "Se usar o servi\u00e7o do windows, por favor saiba que n\u00e3o \u00e9 poss\u00edvel execut\u00e1-lo ao mesmo tempo que o \u00edcone da bandeja de sistema, por isso necessitar\u00e1 sair da bandeja para poder executar o servi\u00e7o. O servi\u00e7o tamb\u00e9m necessitar\u00e1 ser configurado com privil\u00e9gios de administrador atrav\u00e9s do painel de controle. Ao executar como servi\u00e7o, ser\u00e1 necess\u00e1rio confirmar se a conta do servi\u00e7o pode acessar suas pastas de m\u00eddia.", "WizardCompleted": "Isto \u00e9 tudo que precisamos no momento. Emby come\u00e7ou a coletar informa\u00e7\u00f5es de sua biblioteca de m\u00eddia. Confira algumas de nossas apps e ent\u00e3o cliqueTerminar<\/b> para ver o Painel do Servidor<\/b>.", "LabelConfigureSettings": "Configurar ajustes", - "LabelEnableAutomaticPortMapping": "Ativar mapeamento autom\u00e1tico de portas", - "LabelEnableAutomaticPortMappingHelp": "UPnP permite uma configura\u00e7\u00e3o automatizada do roteador para acesso remoto f\u00e1cil. Isto pode n\u00e3o funcionar em alguns modelos de roteadores.", "HeaderTermsOfService": "Termos de Servi\u00e7o do Emby", "MessagePleaseAcceptTermsOfService": "Por favor, aceite os termos de servi\u00e7o e pol\u00edtica de privacidade antes de continuar.", "OptionIAcceptTermsOfService": "Eu aceito os termos de servi\u00e7o", "ButtonPrivacyPolicy": "Pol\u00edtica de privacidade", "ButtonTermsOfService": "Termos de Servi\u00e7o", - "HeaderDeveloperOptions": "Op\u00e7\u00f5es de Desenvolvedor", - "OptionEnableWebClientResponseCache": "Ativar o cache de resposta da web", - "OptionDisableForDevelopmentHelp": "Configure esta op\u00e7\u00e3o de acordo ao prop\u00f3sito de desenvolvimento web", - "OptionEnableWebClientResourceMinification": "Ativar a minimiza\u00e7\u00e3o de recursos da web", - "LabelDashboardSourcePath": "Local fonte do cliente web:", - "LabelDashboardSourcePathHelp": "Se executar o servidor a partir do c\u00f3digo-fonte, especifique o local da pasta da interface do painel. Todos os arquivos do cliente web ser\u00e3o servidos desta localiza\u00e7\u00e3o.", "ButtonConvertMedia": "Converter m\u00eddia", "ButtonOrganize": "Organizar", "HeaderSupporterBenefits": "Benef\u00edcios do Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Para adicionar um usu\u00e1rio que n\u00e3o esteja listado, voc\u00ea precisar\u00e1 associar sua conta ao Emby Connect na sua p\u00e1gina de perfil.", "LabelPinCode": "C\u00f3digo Pin:", "OptionHideWatchedContentFromLatestMedia": "Ocultar conte\u00fado j\u00e1 assistido das m\u00eddias recentes", + "DeleteMedia": "Delete media", "HeaderSync": "Sincroniza\u00e7\u00e3o", "ButtonOk": "Ok", "ButtonCancel": "Cancelar", "ButtonExit": "Sair", "ButtonNew": "Novo", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Disparadores de Tarefa", "HeaderTV": "TV", "HeaderAudio": "\u00c1udio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Para acessar, por favor digite seu c\u00f3digo pin f\u00e1cil", "ButtonConfigurePinCode": "Configurar c\u00f3digo pin", "RegisterWithPayPal": "Registrar com PayPal", - "HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes", "LabelSyncTempPath": "Local do arquivo tempor\u00e1rio:", "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. M\u00eddias convertidas criadas durante o processo de sincroniza\u00e7\u00e3o ser\u00e3o aqui armazenadas.", "LabelCustomCertificatePath": "Local do certificado personalizado:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Se ativado, arquivos com extens\u00f5es .rar e .zip ser\u00e3o detectados como arquivos de m\u00eddia.", "LabelEnterConnectUserName": "Nome de usu\u00e1rio ou e-mail:", "LabelEnterConnectUserNameHelp": "Este \u00e9 o nome do usu\u00e1rio ou email da sua conta online do Emby.", - "LabelEnableEnhancedMovies": "Ativar exibi\u00e7\u00f5es de filme avan\u00e7adas", - "LabelEnableEnhancedMoviesHelp": "Quando ativado, os filmes ser\u00e3o exibidos como pastas para incluir trailers, extras, elenco & equipe e outros conte\u00fados relacionados.", "HeaderSyncJobInfo": "Tarefa de Sincroniza\u00e7\u00e3o", "FolderTypeMixed": "Conte\u00fado misto", "FolderTypeMovies": "Filmes", @@ -84,7 +70,6 @@ "LabelContentType": "Tipo de conte\u00fado:", "TitleScheduledTasks": "Tarefas Agendadas", "HeaderSetupLibrary": "Configurar suas bibliotecas de m\u00eddias", - "ButtonAddMediaFolder": "Adicionar pasta de m\u00eddias", "LabelFolderType": "Tipo de pasta:", "LabelCountry": "Pa\u00eds:", "LabelLanguage": "Idioma:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Salvar artwork e metadados diretamente nas pastas da m\u00eddia as deixar\u00e1 em um local f\u00e1cil para edit\u00e1-las.", "LabelDownloadInternetMetadata": "Fazer download das imagens e metadados da internet", "LabelDownloadInternetMetadataHelp": "O Servidor Emby pode fazer download das informa\u00e7\u00f5es de sua m\u00eddia para possibilitar belas apresenta\u00e7\u00f5es.", - "TabPreferences": "Prefer\u00eancias", "TabPassword": "Senha", "TabLibraryAccess": "Acesso \u00e0 Biblioteca", "TabAccess": "Acesso", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Ativar o acesso a todas as bibliotecas", "DeviceAccessHelp": "Isto apenas aplica para dispositivos que podem ser identificados como \u00fanicos e n\u00e3o evitar\u00e3o o acesso do navegador. Filtrar o acesso ao dispositivo do usu\u00e1rio evitar\u00e1 que sejam usados novos dispositivos at\u00e9 que sejam aprovados aqui.", "LabelDisplayMissingEpisodesWithinSeasons": "Exibir epis\u00f3dios que faltam dentro das temporadas", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Isto tamb\u00e9m deve ser ativado para as bibliotecas de TV na configura\u00e7\u00e3o do Servidor Emby.", "LabelUnairedMissingEpisodesWithinSeasons": "Exibir epis\u00f3dios por estrear dentro das temporadas", + "ImportMissingEpisodesHelp": "Se ativo, as informa\u00e7\u00f5es dos epis\u00f3dios que faltam ser\u00e3o importadas para sua base de dados do Emby e exibida dentro das temporadas e s\u00e9ries. Isto pode fazer com que o rastreamento da biblioteca seja mais longo.", "HeaderVideoPlaybackSettings": "Ajustes da Reprodu\u00e7\u00e3o de V\u00eddeo", + "OptionDownloadInternetMetadataTvPrograms": "Baixar metadados da internet para os programas listados no guia", "HeaderPlaybackSettings": "Ajustes de Reprodu\u00e7\u00e3o", "LabelAudioLanguagePreference": "Prefer\u00eancia do idioma do \u00e1udio:", "LabelSubtitleLanguagePreference": "Prefer\u00eancia do idioma da legenda:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "Propor\u00e7\u00e3o de Imagem 1:1 Recomendada. Apenas JPG\/PNG", "MessageNothingHere": "Nada aqui.", "MessagePleaseEnsureInternetMetadata": "Por favor, certifique-se que o download de metadados da internet est\u00e1 habilitado.", - "TabSuggested": "Sugeridos", + "AlreadyPaidHelp1": "Se j\u00e1 pagou anteriormente para instalar uma vers\u00e3o antiga do Media Browser para Android, n\u00e3o ser\u00e1 necess\u00e1rio pagar novamente para ativar este app. Clique OK para enviar-nos um email para {0} e n\u00f3s ativaremos para voc\u00ea.", + "AlreadyPaidHelp2": "Possui o Emby Premiere? Cancele esta caixa, configure o Emby Premiere no Painel do Servidor Emby em Ajuda -> Emby Premiere e ele ser\u00e1 automaticamente desbloqueado.", "TabSuggestions": "Sugest\u00f5es", "TabLatest": "Recentes", "TabUpcoming": "Estreando", "TabShows": "S\u00e9ries", "TabEpisodes": "Epis\u00f3dios", "TabGenres": "G\u00eaneros", - "TabPeople": "Pessoas", "TabNetworks": "Emissoras", "HeaderUsers": "Usu\u00e1rios", "HeaderFilters": "Filtros", @@ -166,6 +153,7 @@ "OptionWriters": "Escritores", "OptionProducers": "Produtores", "HeaderResume": "Retomar", + "HeaderContinueWatching": "Continuar Assistindo", "HeaderNextUp": "A Seguir", "NoNextUpItemsMessage": "Nenhum encontrado. Comece a assistir suas s\u00e9ries!", "HeaderLatestEpisodes": "Epis\u00f3dios Recentes", @@ -185,6 +173,7 @@ "OptionPlayCount": "N\u00ba de Reprodu\u00e7\u00f5es", "OptionDatePlayed": "Data da Reprodu\u00e7\u00e3o", "OptionDateAdded": "Data da Adi\u00e7\u00e3o", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Artista do \u00c1lbum", "OptionArtist": "Artista", "OptionAlbum": "\u00c1lbum", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Bitrate do V\u00eddeo", "OptionResumable": "Retom\u00e1vel", "ScheduledTasksHelp": "Clique em uma tarefa para ajustar quando ser\u00e1 executada.", - "ScheduledTasksTitle": "Tarefas Agendadas", "TabMyPlugins": "Meus Plugins", "TabCatalog": "Cat\u00e1logo", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "M\u00fasicas Recentes", "HeaderRecentlyPlayed": "Reprodu\u00e7\u00f5es Recentes", "HeaderFrequentlyPlayed": "Reproduzido Frequentemente", - "DevBuildWarning": "Vers\u00f5es Dev s\u00e3o as mais atuais. Lan\u00e7adas frequentemente, estas vers\u00f5es n\u00e3o foram testadas. A aplica\u00e7\u00e3o pode falhar e v\u00e1rios recursos podem n\u00e3o funcionar.", "LabelVideoType": "Tipo de V\u00eddeo:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "\u00datil para contas de administrador privadas ou ocultas. O usu\u00e1rio necessitar\u00e1 entrar manualmente, digitando seu nome de usu\u00e1rio e senha.", "OptionDisableUser": "Desativar este usu\u00e1rio", "OptionDisableUserHelp": "Se estiver desativado o servidor n\u00e3o permitir\u00e1 nenhuma conex\u00e3o deste usu\u00e1rio. Conex\u00f5es existentes ser\u00e3o abruptamente terminadas.", - "HeaderAdvancedControl": "Controle Avan\u00e7ado", "LabelName": "Nome:", "ButtonHelp": "Ajuda", "OptionAllowUserToManageServer": "Permitir a este usu\u00e1rio administrar o servidor", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dispositivos dlna s\u00e3o considerados compartilhados at\u00e9 que um usu\u00e1rio comece a control\u00e1-lo.", "OptionAllowLinkSharing": "Permitir compartilhamento com m\u00eddia social", "OptionAllowLinkSharingHelp": "Apenas p\u00e1ginas web que contenham informa\u00e7\u00f5es de m\u00eddia s\u00e3o compartilhadas. Arquivos de m\u00eddia nunca s\u00e3o compartilhados publicamente. Os compartilhamentos t\u00eam um limite de tempo e expiram depois de {0} dias.", - "HeaderSharing": "Compartilhar", "HeaderRemoteControl": "Controle Remoto", "OptionMissingTmdbId": "Faltando Id Tmdb", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Locais", "TabServer": "Servidor", "TabTranscoding": "Transcodifica\u00e7\u00e3o", - "TitleAdvanced": "Avan\u00e7ado", "OptionRelease": "Vers\u00e3o Oficial", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es", "LabelAllowServerAutoRestartHelp": "O servidor s\u00f3 reiniciar\u00e1 durante os per\u00edodos ociosos, quando nenhum usu\u00e1rio estiver ativo.", "LabelRunServerAtStartup": "Executar servidor na inicializa\u00e7\u00e3o", @@ -330,11 +312,9 @@ "TabGames": "Jogos", "TabMusic": "M\u00fasica", "TabOthers": "Outros", - "HeaderExtractChapterImagesFor": "Extrair imagens de cap\u00edtulos para:", "OptionMovies": "Filmes", "OptionEpisodes": "Epis\u00f3dios", "OptionOtherVideos": "Outros V\u00eddeos", - "TitleMetadata": "Metadados", "LabelFanartApiKey": "Chave de api pessoal:", "LabelFanartApiKeyHelp": "Solicita\u00e7\u00f5es para fanart sem uma chave de API pessoal retornar\u00e3o imagens que foram aprovadas h\u00e1 mais de 7 dias. Com uma chave de API pessoal isso diminui para 48 horas e se voc\u00ea for um membro VIP da fanart, isso diminuir\u00e1 para aproximadamente 10 minutos.", "ExtractChapterImagesHelp": "Extrair imagens de cap\u00edtulos permitir\u00e1 aos apps Emby exibir menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, demandar uso intensivo de cpu e pode exigir bastante espa\u00e7o em disco. Ele ser\u00e1 executado quando os v\u00eddeos forem descobertos e tamb\u00e9m como uma tarefa noturna. O agendamento pode ser configurado na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de pico de uso.", @@ -350,15 +330,15 @@ "TabCollections": "Colet\u00e2neas", "HeaderChannels": "Canais", "TabRecordings": "Grava\u00e7\u00f5es", - "TabScheduled": "Agendada", "TabSeries": "S\u00e9ries", "TabFavorites": "Favoritos", "TabMyLibrary": "Minha Biblioteca", "ButtonCancelRecording": "Cancelar Grava\u00e7\u00e3o", - "LabelPrePaddingMinutes": "Minutos de Pre-padding:", - "LabelPostPaddingMinutes": "Minutos de Post-padding:", + "LabelStartWhenPossible": "Iniciar quando poss\u00edvel:", + "LabelStopWhenPossible": "Para quando poss\u00edvel:", + "MinutesBefore": "minutos antes", + "MinutesAfter": "minutos depois", "HeaderWhatsOnTV": "No ar", - "TabStatus": "Status", "TabSettings": "Ajustes", "ButtonRefreshGuideData": "Atualizar Dados do Guia", "ButtonRefresh": "Atualizar", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Gravar em todos os canais", "OptionRecordAnytime": "Gravar a qualquer hora", "OptionRecordOnlyNewEpisodes": "Gravar apenas novos epis\u00f3dios", - "HeaderRepeatingOptions": "Op\u00e7\u00f5es de Repeti\u00e7\u00e3o", "HeaderDays": "Dias", "HeaderActiveRecordings": "Grava\u00e7\u00f5es Ativas", "HeaderLatestRecordings": "Grava\u00e7\u00f5es Recentes", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Jogos Recentes", "HeaderRecentlyPlayedGames": "Jogos Jogados Recentemente", "TabGameSystems": "Sistemas de Jogo", - "TitleMediaLibrary": "Biblioteca de M\u00eddia", "TabFolders": "Pastas", "TabPathSubstitution": "Substitui\u00e7\u00e3o de Local", "LabelSeasonZeroDisplayName": "Nome de exibi\u00e7\u00e3o da temporada 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Separar Vers\u00f5es", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Faltando", - "LabelOffline": "Desconectado", - "PathSubstitutionHelp": "Substitui\u00e7\u00f5es de locais s\u00e3o usadas para mapear um local no servidor que possa ser acessado pelos apps Emby. Ao permitir o acesso dos apps \u00e0 m\u00eddia no servidor, eles podem reproduzir diretamente atrav\u00e9s da rede e evitar o uso de recursos do servidor para fazer stream ou transcodifica\u00e7\u00e3o.", - "HeaderFrom": "De", - "HeaderTo": "Para", - "LabelFrom": "De:", - "LabelTo": "Para:", - "LabelToHelp": "Exemplo: \\\\MeuServidor\\Filmes (um local que os apps Emby possam acessar)", - "ButtonAddPathSubstitution": "Adicionar Substitui\u00e7\u00e3o", "OptionSpecialEpisode": "Especiais", "OptionMissingEpisode": "Epis\u00f3dios Faltantes", "OptionUnairedEpisode": "Epis\u00f3dios Por Estrear", "OptionEpisodeSortName": "Nome de Ordena\u00e7\u00e3o do Epis\u00f3dio", "OptionSeriesSortName": "Nome da S\u00e9rie", "OptionTvdbRating": "Avalia\u00e7\u00e3o Tvdb", - "EditCollectionItemsHelp": "Adicione ou remova qualquer filme, s\u00e9rie, \u00e1lbum, livro ou jogo que desejar agrupar dentro desta colet\u00e2nea.", "HeaderAddTitles": "Adicionar T\u00edtulos", "LabelEnableDlnaPlayTo": "Ativar Reproduzir Em usando DLNA", "LabelEnableDlnaPlayToHelp": "Emby pode detectar dispositivos dentro de sua rede e oferece a possibilidade de control\u00e1-los.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Perfis do Sistema", "CustomDlnaProfilesHelp": "Criar um perfil personalizado para um determinado novo dispositivo ou sobrescrever um perfil do sistema.", "SystemDlnaProfilesHelp": "Os perfis do sistema s\u00e3o somente-leitura. As altera\u00e7\u00f5es feitas no perfil do sistema ser\u00e3o salvas em um novo perfil personalizado.", - "TitleDashboard": "Painel", "TabHome": "In\u00edcio", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "T\u00edtulos s\u00e3o considerados como n\u00e3o assistidos se parados antes deste tempo", "LabelMaxResumePercentageHelp": "T\u00edtulos s\u00e3o considerados totalmente assistidos se parados depois deste tempo", "LabelMinResumeDurationHelp": "T\u00edtulos mais curtos que isto n\u00e3o poder\u00e3o ser retomados", - "TitleAutoOrganize": "Auto-Organizar", "TabActivityLog": "Log de Atividades", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Gerencie suas smart matches que foram adicionadas usando a op\u00e7\u00e3o de corre\u00e7\u00e3o do Auto-Organizar", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Ajude a assegurar o desenvolvimento cont\u00ednuo deste projeto comprando o Emby Premiere. Uma parte de todas as receitas ser\u00e1 distribu\u00edda para outras ferramentas gr\u00e1tis das quais dependemos.", "DonationNextStep": "Uma vez completada, por favor retorne e digite a sua chave do Emby Premiere, que receber\u00e1 por email.", "AutoOrganizeHelp": "Auto-organizar monitora suas pastas de download em busca de novos arquivos e os move para seus diret\u00f3rios de m\u00eddia.", - "AutoOrganizeTvHelp": "A organiza\u00e7\u00e3o de arquivos de TV s\u00f3 adicionar\u00e1 arquivos \u00e0s s\u00e9ries existentes. Ela n\u00e3o criar\u00e1 novas pastas de s\u00e9ries.", "OptionEnableEpisodeOrganization": "Ativar a organiza\u00e7\u00e3o de novos epis\u00f3dios", "LabelWatchFolder": "Pasta de Monitora\u00e7\u00e3o:", "LabelWatchFolderHelp": "O servidor ir\u00e1 pesquisar esta pasta durante a tarefa agendada 'Organizar novos arquivos de m\u00eddia'.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Tarefas em Execu\u00e7\u00e3o", "HeaderActiveDevices": "Dispositivos Ativos", "HeaderPendingInstallations": "Instala\u00e7\u00f5es Pendentes", - "HeaderServerInformation": "Informa\u00e7\u00e3o do Servidor", "ButtonRestartNow": "Reiniciar Agora", "ButtonRestart": "Reiniciar", "ButtonShutdown": "Desligar", @@ -588,7 +553,6 @@ "MessageInvalidKey": "A chave do Emby Premiere est\u00e1 faltando ou \u00e9 inv\u00e1lida.", "ErrorMessageInvalidKey": "Para que qualquer conte\u00fado premium seja registrado, voc\u00ea precisa ter uma subscri\u00e7\u00e3o ativa do Emby Premiere.", "HeaderDisplaySettings": "Ajustes de Exibi\u00e7\u00e3o", - "TabPlayTo": "Reproduzir Em", "LabelEnableDlnaServer": "Ativar servidor Dlna", "LabelEnableDlnaServerHelp": "Permite que dispositivos UPnP em sua rede naveguem e reproduzam conte\u00fado do Emby.", "LabelEnableBlastAliveMessages": "Enviar mensagens de explora\u00e7\u00e3o", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determina a dura\u00e7\u00e3o em segundos entre as mensagens de explora\u00e7\u00e3o enviadas pelo servidor.", "LabelDefaultUser": "Usu\u00e1rio padr\u00e3o:", "LabelDefaultUserHelp": "Determina qual usu\u00e1rio ser\u00e1 exibido nos dispositivos conectados. Isto pode ser ignorado para cada dispositivo usando perfis.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Ajustes do Servidor", "HeaderRequireManualLogin": "Necessita a digita\u00e7\u00e3o manual de um nome para:", "HeaderRequireManualLoginHelp": "Quando desativados, os apps Emby podem mostrar a tela de login com uma sele\u00e7\u00e3o visual de usu\u00e1rios.", "OptionOtherApps": "Outros apps", "OptionMobileApps": "Apps m\u00f3veis", - "HeaderNotificationList": "Clique em uma notifica\u00e7\u00e3o para configurar as op\u00e7\u00f5es de envio.", - "NotificationOptionApplicationUpdateAvailable": "Atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o disponivel", - "NotificationOptionApplicationUpdateInstalled": "Atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o instalada", - "NotificationOptionPluginUpdateInstalled": "Atualiza\u00e7\u00e3o do plugin instalada", - "NotificationOptionPluginInstalled": "Plugin instalado", - "NotificationOptionPluginUninstalled": "Plugin desinstalado", - "NotificationOptionVideoPlayback": "Reprodu\u00e7\u00e3o de v\u00eddeo iniciada", - "NotificationOptionAudioPlayback": "Reprodu\u00e7\u00e3o de \u00e1udio iniciada", - "NotificationOptionGamePlayback": "Reprodu\u00e7\u00e3o de jogo iniciada", - "NotificationOptionVideoPlaybackStopped": "Reprodu\u00e7\u00e3o de v\u00eddeo parada", - "NotificationOptionAudioPlaybackStopped": "Reprodu\u00e7\u00e3o de \u00e1udio parada", - "NotificationOptionGamePlaybackStopped": "Reprodu\u00e7\u00e3o de jogo parada", - "NotificationOptionTaskFailed": "Falha na tarefa agendada", - "NotificationOptionInstallationFailed": "Falha na instala\u00e7\u00e3o", - "NotificationOptionNewLibraryContent": "Novo conte\u00fado adicionado", - "NotificationOptionCameraImageUploaded": "Imagem da c\u00e2mera carregada", - "NotificationOptionUserLockedOut": "Usu\u00e1rio bloqueado", - "HeaderSendNotificationHelp": "As notifica\u00e7\u00f5es s\u00e3o entregues na caixa de entrada do Emby. Op\u00e7\u00f5es adicionais podem ser instaladas na guia Servi\u00e7os.", - "NotificationOptionServerRestartRequired": "Necessidade de reiniciar servidor", "LabelNotificationEnabled": "Ativar esta notifica\u00e7\u00e3o", "LabelMonitorUsers": "Monitorar atividade de:", "LabelSendNotificationToUsers": "Enviar notifica\u00e7\u00e3o para:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Anterior", "LabelGroupMoviesIntoCollections": "Agrupar filmes em colet\u00e2neas", "LabelGroupMoviesIntoCollectionsHelp": "Ao exibir listas de filmes, filmes que perten\u00e7am a uma colet\u00e2nea ser\u00e3o exibidos como um \u00fanico item agrupado.", - "NotificationOptionPluginError": "Falha no plugin", "ButtonVolumeUp": "Aumentar volume", "ButtonVolumeDown": "Diminuir volume", "HeaderLatestMedia": "M\u00eddias Recentes", "OptionNoSubtitles": "Nenhuma legenda", - "OptionSpecialFeatures": "Recursos Especiais", "HeaderCollections": "Colet\u00e2neas", "LabelProfileCodecsHelp": "Separados por v\u00edrgula. Pode ser deixado em branco para usar com todos os codecs.", "LabelProfileContainersHelp": "Separados por v\u00edrgula. Pode ser deixado em branco para usar com todos os containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "N\u00e3o existem plugins dispon\u00edveis.", "LabelDisplayPluginsFor": "Exibir plugins para:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Nome do epis\u00f3dio", "LabelSeriesNamePlain": "Nome da s\u00e9rie", "ValueSeriesNamePeriod": "Nome.s\u00e9rie", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "N\u00famero do epis\u00f3dio final", "HeaderTypeText": "Digitar texto", "LabelTypeText": "Texto", - "HeaderSearchForSubtitles": "Buscar Legendas", - "MessageNoSubtitleSearchResultsFound": "N\u00e3o foi encontrado nenhum resultado.", "TabDisplay": "Exibi\u00e7\u00e3o", "TabLanguages": "Idiomas", "TabAppSettings": "Configura\u00e7\u00f5es do App", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Se ativadas, m\u00fasicas-tema ser\u00e3o reproduzidas em segundo plano ao navegar pela biblioteca.", "LabelEnableBackdropsHelp": "Se ativadas, imagens de fundo ser\u00e3o exibidas ao fundo de algumas p\u00e1ginas ao navegar pela biblioteca.", "HeaderHomePage": "P\u00e1gina Inicial", - "HeaderSettingsForThisDevice": "Ajustes para Este Dispositivo", "OptionAuto": "Auto", "OptionYes": "Sim", "OptionNo": "N\u00e3o", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Tela de in\u00edcio se\u00e7\u00e3o 2:", "LabelHomePageSection3": "Tela de in\u00edcio se\u00e7\u00e3o 3:", "LabelHomePageSection4": "Tela de in\u00edcio se\u00e7\u00e3o 4:", - "OptionMyMediaButtons": "Minha m\u00eddia (bot\u00f5es)", "OptionMyMedia": "Minha m\u00eddia", "OptionMyMediaSmall": "Minha m\u00eddia (pequeno)", "OptionResumablemedia": "Retomar", @@ -815,53 +752,21 @@ "HeaderReports": "Relat\u00f3rios", "HeaderSettings": "Ajustes", "OptionDefaultSort": "Padr\u00e3o", - "OptionCommunityMostWatchedSort": "Mais Assistidos", "TabNextUp": "Pr\u00f3ximos", - "PlaceholderUsername": "Nome do usu\u00e1rio", "HeaderBecomeProjectSupporter": "Obter Emby Premiere", "MessageNoMovieSuggestionsAvailable": "N\u00e3o existem sugest\u00f5es de filmes dispon\u00edveis atualmente. Comece por assistir e avaliar seus filmes e, ent\u00e3o, volte para verificar suas recomenda\u00e7\u00f5es.", "MessageNoCollectionsAvailable": "Colet\u00e2neas permitem que voc\u00ea aproveite grupos personalizados de Filmes, S\u00e9ries, \u00c1lbuns, Livros e Jogos. Clique no bot\u00e3o + para come\u00e7ar a criar Colet\u00e2neas.", "MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.", "MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.", - "ButtonDismiss": "Descartar", "ButtonEditOtherUserPreferences": "Editar este perfil de usu\u00e1rio, imagem e prefer\u00eancias pessoais.", "LabelChannelStreamQuality": "Qualidade preferida do canal da internet:", "LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.", "OptionBestAvailableStreamQuality": "Melhor dispon\u00edvel", "ChannelSettingsFormHelp": "Instalar canais como, por exemplo, Trailers e Vimeo no cat\u00e1logo de plugins.", - "ViewTypePlaylists": "Listas de Reprodu\u00e7\u00e3o", "ViewTypeMovies": "Filmes", "ViewTypeTvShows": "TV", "ViewTypeGames": "Jogos", "ViewTypeMusic": "M\u00fasicas", - "ViewTypeMusicGenres": "G\u00eaneros", - "ViewTypeMusicArtists": "Artistas", - "ViewTypeBoxSets": "Colet\u00e2neas", - "ViewTypeChannels": "Canais", - "ViewTypeLiveTV": "TV ao Vivo", - "ViewTypeLiveTvNowPlaying": "Exibindo Agora", - "ViewTypeLatestGames": "Jogos Recentes", - "ViewTypeRecentlyPlayedGames": "Reproduzido Recentemente", - "ViewTypeGameFavorites": "Favoritos", - "ViewTypeGameSystems": "Sistemas de Jogo", - "ViewTypeGameGenres": "G\u00eaneros", - "ViewTypeTvResume": "Retomar", - "ViewTypeTvNextUp": "Pr\u00f3ximos", - "ViewTypeTvLatest": "Recentes", - "ViewTypeTvShowSeries": "S\u00e9ries", - "ViewTypeTvGenres": "G\u00eaneros", - "ViewTypeTvFavoriteSeries": "S\u00e9ries Favoritas", - "ViewTypeTvFavoriteEpisodes": "Epis\u00f3dios Favoritos", - "ViewTypeMovieResume": "Retomar", - "ViewTypeMovieLatest": "Recentes", - "ViewTypeMovieMovies": "Filmes", - "ViewTypeMovieCollections": "Colet\u00e2neas", - "ViewTypeMovieFavorites": "Favoritos", - "ViewTypeMovieGenres": "G\u00eaneros", - "ViewTypeMusicLatest": "Recentes", - "ViewTypeMusicPlaylists": "Listas de Reprodu\u00e7\u00e3o", - "ViewTypeMusicAlbums": "\u00c1lbuns", - "ViewTypeMusicAlbumArtists": "Artistas do \u00c1lbum", "HeaderOtherDisplaySettings": "Ajustes de Exibi\u00e7\u00e3o", "ViewTypeMusicSongs": "M\u00fasicas", "ViewTypeMusicFavorites": "Favoritos", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Ao fazer download das imagens, elas podem ser salvas em ambas extrafanart e extrathumbs para uma maior compatibilidade com as skins do Kodi.", "TabServices": "Servi\u00e7os", "TabLogs": "Logs", - "HeaderServerLogFiles": "Arquivos de log do servidor:", "TabBranding": "Marca", "HeaderBrandingHelp": "Personalize a apar\u00eancia do Emby para satisfazer as necessidades de seu grupo ou organiza\u00e7\u00e3o.", "LabelLoginDisclaimer": "Aviso legal no login:", @@ -917,7 +821,6 @@ "HeaderDevice": "Dispositivo", "HeaderUser": "Usu\u00e1rio", "HeaderDateIssued": "Data da Emiss\u00e3o", - "LabelChapterName": "Cap\u00edtulo {0}", "HeaderHttpHeaders": "Cabe\u00e7alhos de Http", "HeaderIdentificationHeader": "Cabe\u00e7alho de Identifica\u00e7\u00e3o", "LabelValue": "Valor:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "Visualizar", - "TabSort": "Ordenar", "TabFilter": "Filtro", "ButtonView": "Visualizar", "LabelPageSize": "Limite de itens:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Contexto:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sinc", "TabPlaylists": "Listas de Reprodu\u00e7\u00e3o", "ButtonClose": "Fechar", "LabelAllLanguages": "Todos os idiomas", @@ -956,7 +856,6 @@ "LabelImage": "Imagem:", "HeaderImages": "Imagens", "HeaderBackdrops": "Imagens de Fundo", - "HeaderScreenshots": "Imagens da Tela", "HeaderAddUpdateImage": "Adicionar\/Atualizar Imagem", "LabelDropImageHere": "Soltar imagem aqui", "LabelJpgPngOnly": "Apenas JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Bloqueada", "OptionUnidentified": "N\u00e3o identificada", "OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o et\u00e1ria", - "OptionStub": "Stub", "OptionSeason0": "Temporada 0", "LabelReport": "Relat\u00f3rio:", "OptionReportSongs": "M\u00fasicas", @@ -991,34 +889,21 @@ "OptionReportAlbums": "\u00c1lbuns", "ButtonMore": "Mais", "HeaderActivity": "Atividade", - "ScheduledTaskStartedWithName": "{0} iniciado", - "ScheduledTaskCancelledWithName": "{0} foi cancelado", - "ScheduledTaskCompletedWithName": "{0} conclu\u00edda", - "ScheduledTaskFailed": "Tarefa agendada conclu\u00edda", "PluginInstalledWithName": "{0} foi instalado", "PluginUpdatedWithName": "{0} foi atualizado", "PluginUninstalledWithName": "{0} foi desinstalado", - "ScheduledTaskFailedWithName": "{0} falhou", - "DeviceOnlineWithName": "{0} est\u00e1 conectado", "UserOnlineFromDevice": "{0} est\u00e1 ativo em {1}", - "DeviceOfflineWithName": "{0} foi desconectado", "UserOfflineFromDevice": "{0} foi desconectado de {1}", - "SubtitlesDownloadedForItem": "Legendas baixadas para {0}", - "SubtitleDownloadFailureForItem": "Falha ao baixar legendas para {0}", "LabelRunningTimeValue": "Dura\u00e7\u00e3o: {0}", "LabelIpAddressValue": "Endere\u00e7o Ip: {0}", "UserLockedOutWithName": "Usu\u00e1rio {0} foi bloqueado", "UserConfigurationUpdatedWithName": "A configura\u00e7\u00e3o do usu\u00e1rio {0} foi atualizada", "UserCreatedWithName": "O usu\u00e1rio {0} foi criado", - "UserPasswordChangedWithName": "A senha do usu\u00e1rio {0} foi alterada", "UserDeletedWithName": "O usu\u00e1rio {0} foi exclu\u00eddo", "MessageServerConfigurationUpdated": "A configura\u00e7\u00e3o do servidor foi atualizada", "MessageNamedServerConfigurationUpdatedWithValue": "A se\u00e7\u00e3o {0} da configura\u00e7\u00e3o do servidor foi atualizada", "MessageApplicationUpdated": "O Servidor Emby foi atualizado", "UserDownloadingItemWithValues": "{0} est\u00e1 fazendo download de {1}", - "UserStartedPlayingItemWithValues": "{0} come\u00e7ou a reproduzir {1}", - "UserStoppedPlayingItemWithValues": "{0} parou de reproduzir {1}", - "AppDeviceValues": "App: {0}, Dispositivo: {1}", "ProviderValue": "Provedor: {0}", "HeaderRecentActivity": "Atividade Recente", "HeaderPeople": "Pessoas", @@ -1051,27 +936,18 @@ "LabelAirDate": "Dias da exibi\u00e7\u00e3o:", "LabelAirTime:": "Hor\u00e1rio:", "LabelRuntimeMinutes": "Dura\u00e7\u00e3o (minutos):", - "LabelRevenue": "Faturamento ($):", - "HeaderAlternateEpisodeNumbers": "N\u00fameros de Epis\u00f3dios Alternativos", "HeaderSpecialEpisodeInfo": "Informa\u00e7\u00e3o do Epis\u00f3dio Especial", - "HeaderExternalIds": "Id`s Externos:", - "LabelAirsBeforeSeason": "Exibido antes da temporada:", - "LabelAirsAfterSeason": "Exibido depois da temporada:", - "LabelAirsBeforeEpisode": "Exibido antes do epis\u00f3dio:", "LabelDisplaySpecialsWithinSeasons": "Exibir especiais dentro das temporadas em que s\u00e3o exibidos", - "HeaderCountries": "Pa\u00edses", "HeaderGenres": "G\u00eaneros", "HeaderPlotKeywords": "Palavras-chave da Trama", "HeaderStudios": "Est\u00fadios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Deixar em branco para herdar os ajustes de um item superior, ou o valor padr\u00e3o global", "OptionNoTrailer": "Nenhum Trailer", "ButtonPurchase": "Comprar", "OptionActor": "Ator", "OptionComposer": "Compositor", "OptionDirector": "Diretor", "OptionProducer": "Produtor", - "OptionWriter": "Escritor", "LabelAirDays": "Dias da exibi\u00e7\u00e3o:", "LabelAirTime": "Hor\u00e1rio:", "HeaderMediaInfo": "Informa\u00e7\u00f5es da M\u00eddia", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Controle Et\u00e1rio", "HeaderAccessSchedule": "Agendamento de Acesso", "HeaderAccessScheduleHelp": "Criar um agendamento de acesso para limitar o acesso a certas horas.", - "ButtonAddSchedule": "Adicionar Agendamento", "LabelAccessDay": "Dia da semana:", "LabelAccessStart": "Hora inicial:", "LabelAccessEnd": "Hora final:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Tarefas de Sincroniza\u00e7\u00e3o", "HeaderThisUserIsCurrentlyDisabled": "Este usu\u00e1rio est\u00e1 desativado atualmente", "MessageReenableUser": "Veja abaixo para reativar", - "LabelEnableInternetMetadataForTvPrograms": "Fazer download dos metadados da internet para:", "OptionTVMovies": "Filmes da TV", "HeaderUpcomingMovies": "Filmes Por Estrear", "HeaderUpcomingSports": "Esportes Por Estrear", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Listas de reprodu\u00e7\u00e3o", "HeaderViewStyles": "Visualizar Estilos", "TabPhotos": "Fotos", - "TabVideos": "V\u00eddeos", "HeaderWelcomeToEmby": "Bem vindo ao Emby", "EmbyIntroMessage": "Com o Emby voc\u00ea pode facilmente fazer streaming de v\u00eddeos, m\u00fasicas e fotos do Servidor Emby para smartphones, tablets e outros dispositivos.", "ButtonSkip": "Ignorar", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Colunas", "ButtonReset": "Redefinir", "OptionEnableExternalVideoPlayers": "Ativar reprodutores de v\u00eddeo externos", - "ButtonUnlockGuide": "Desbloquear Guia", "LabelEnableFullScreen": "Ativar modo tela cheia", "LabelEmail": "Email:", "LabelUsername": "Nome do Usu\u00e1rio:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Sinopse", "HeaderShortOverview": "Sinopse curta", "HeaderType": "Tipo", - "HeaderSeverity": "Severidade", "OptionReportActivities": "Log de Atividades", "HeaderTunerDevices": "Sintonizadores", "HeaderAddDevice": "Adicionar dispositivo", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repetir", "LabelEnableThisTuner": "Ativar este sintonizador", "LabelEnableThisTunerHelp": "Desmarque para impedir a importa\u00e7\u00e3o de canais deste sintonizador.", - "HeaderUnidentified": "N\u00e3o-identificado", "HeaderImagePrimary": "Principal", "HeaderImageBackdrop": "Imagem de Fundo", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV", "LabelDataProvider": "Provedor de dados:", "OptionSendRecordingsToAutoOrganize": "Organizar automaticamente as grava\u00e7\u00f5es dentro das pastas das s\u00e9ries em outras bibliotecas", - "HeaderDefaultPadding": "Padding Padr\u00e3o", + "HeaderDefaultRecordingSettings": "Configura\u00e7\u00f5es Padr\u00e3o de Grava\u00e7\u00f5es", "OptionEnableRecordingSubfolders": "Criar subpastas para categorias como Esportes, Crian\u00e7as, etc.", "HeaderSubtitles": "Legendas", "HeaderVideos": "V\u00eddeos", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Pastas", "LabelDisplayName": "Nome para exibi\u00e7\u00e3o:", "HeaderNewRecording": "Nova Grava\u00e7\u00e3o", - "ButtonAdvanced": "Avan\u00e7ado", "LabelCodecIntrosPath": "Local dos codecs das introdu\u00e7\u00f5es:", "LabelCodecIntrosPathHelp": "Uma pasta contendo arquivos de v\u00eddeo. Se um nome de arquivo de v\u00eddeo de introdu\u00e7\u00e3o coincidir com o codec de v\u00eddeo, codec de \u00e1udio, perfil de \u00e1udio ou uma tag, ser\u00e1 reproduzido antes do filme principal.", "OptionConvertRecordingsToStreamingFormat": "Converter automaticamente grava\u00e7\u00f5es para um formato amig\u00e1vel a streaming", "OptionConvertRecordingsToStreamingFormatHelp": "Grava\u00e7\u00f5es ser\u00e3o convertidas automaticamente para MP4 ou MKV para uma reprodu\u00e7\u00e3o mais f\u00e1cil em seus dispositivos.", "FeatureRequiresEmbyPremiere": "Este recurso requer uma subscri\u00e7\u00e3o ativa do Emby Premiere", "FileExtension": "Extens\u00e3o do arquivo", - "OptionReplaceExistingImages": "Substituir imagens existentes", "OptionPlayNextEpisodeAutomatically": "Reproduzir pr\u00f3ximo epis\u00f3dio automaticamente", "OptionDownloadImagesInAdvance": "Fazer download das imagens antecipadamente", "SettingsSaved": "Ajustes salvos.", @@ -1348,7 +1216,6 @@ "Password": "Senha", "DeleteImage": "Excluir Imagem", "MessageThankYouForSupporting": "Obrigado por colaborar com o Emby.", - "MessagePleaseSupportProject": "Por favor, colabore com o Emby.", "DeleteImageConfirmation": "Deseja realmente excluir esta imagem?", "FileReadCancelled": "A leitura do arquivo foi cancelada.", "FileNotFound": "Arquivo n\u00e3o encontrado.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Este Servidor Emby precisa ser atualizado. Para fazer download da vers\u00e3o mais recente, por favor visite {0}", "LabelFromHelp": "Exemplo: {0} (no servidor)", "HeaderMyMedia": "Minha M\u00eddia", - "LabelAutomaticUpdateLevel": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica:", - "LabelAutomaticUpdateLevelForPlugins": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica para plugins:", "ErrorLaunchingChromecast": "Ocorreu um erro ao iniciar o chromecast. Por favor verifique se seu dispositivo est\u00e1 conectado \u00e0 sua rede sem fio.", "MessageErrorLoadingSupporterInfo": "Ocorreu um erro ao carregar a informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.", - "MessageLinkYourSupporterKey": "Associe sua chave do Emby Premiere com at\u00e9 {0} membros do Emby Connect para aproveitar o acesso gr\u00e1tis aos seguintes apps:", "HeaderConfirmRemoveUser": "Remover Usu\u00e1rio", - "MessageConfirmRemoveConnectSupporter": "Deseja realmente remover os benef\u00edcios do Emby Premiere deste usu\u00e1rio?", "ValueTimeLimitSingleHour": "Limite de tempo: 1 hora", "ValueTimeLimitMultiHour": "Limite de tempo: {0} horas", "PluginCategoryGeneral": "Geral", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Tarefas Agendadas", "MessageItemsAdded": "Itens adicionados", "HeaderSelectCertificatePath": "Selecione o Local do Certificado", - "ConfirmMessageScheduledTaskButton": "Esta opera\u00e7\u00e3o normalmente \u00e9 executada automaticamente como uma tarefa agendada e n\u00e3o \u00e9 necess\u00e1ria nenhuma intera\u00e7\u00e3o manual. Para configurar a tarefa agendada, clique em Tarefas Agendadas.", "HeaderSupporterBenefit": "Um subscri\u00e7\u00e3o ativa do Emby Premiere fornece benef\u00edcios adicionais como acesso \u00e0 sincroniza\u00e7\u00e3o, plugins premium, conte\u00fado de canais da internet e mais. {0}Saiba mais{1}.", "HeaderWelcomeToProjectServerDashboard": "Bem vindo ao Painel do Servidor Emby", "HeaderWelcomeToProjectWebClient": "Bem vindo ao Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Desativada", "ButtonMoreInformation": "Mais informa\u00e7\u00f5es", "LabelNoUnreadNotifications": "Nenhuma notifica\u00e7\u00e3o sem ler.", - "LabelAllPlaysSentToPlayer": "Todas as reprodu\u00e7\u00f5es ser\u00e3o enviadas para o reprodutor selecionado.", "MessageInvalidUser": "Nome de usu\u00e1rio ou senha inv\u00e1lidos. Por favor, tente novamente.", "HeaderLoginFailure": "Falha no Login", "RecommendationBecauseYouLike": "Porque voc\u00ea gosta de {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Grava\u00e7\u00e3o cancelada.", "MessageRecordingScheduled": "Grava\u00e7\u00e3o agendada.", "HeaderConfirmSeriesCancellation": "Confirmar Cancelamento da S\u00e9rie", - "MessageConfirmSeriesCancellation": "Deseja realmente cancelar esta s\u00e9rie?", - "MessageSeriesCancelled": "S\u00e9rie cancelada.", "HeaderConfirmRecordingDeletion": "Confirmar Exclus\u00e3o da Grava\u00e7\u00e3o", "MessageRecordingSaved": "Grava\u00e7\u00e3o salva.", "OptionWeekend": "Fins-de-semana", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Localize ou digite o local para armazenar os arquivos de cache do servidor. A pasta deve permitir grava\u00e7\u00e3o.", "HeaderSelectTranscodingPathHelp": "Localize ou digite o local para usar para arquivos tempor\u00e1rios de transcodifica\u00e7\u00e3o. A pasta deve ser grav\u00e1vel.", "HeaderSelectMetadataPathHelp": "Localize ou digite o local que voc\u00ea gostaria de armazenar os metadados. A pasta deve ser grav\u00e1vel.", - "HeaderSelectChannelDownloadPath": "Selecione o Caminho para Download do Canal.", - "HeaderSelectChannelDownloadPathHelp": "Localize ou digite o local a ser usado para armazenamento de arquivos de cache do canal. A pasta deve permitir escrita.", - "LabelChapterDownloaders": "Downloaders de cap\u00edtulos:", - "LabelChapterDownloadersHelp": "Habilite e classifique seus downloaders de cap\u00edtulos preferidos em ordem de prioridade. Downloaders de menor prioridade s\u00f3 ser\u00e3o usados para preencher informa\u00e7\u00f5es que ainda n\u00e3o existam.", "HeaderFavoriteAlbums": "\u00c1lbuns Favoritos", "HeaderLatestChannelMedia": "Itens de Canais Recentes", "ButtonOrganizeFile": "Organizar Arquivo", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Reprodu\u00e7\u00e3o Direta", "LabelAudioCodec": "\u00c1udio: {0}", "LabelVideoCodec": "V\u00eddeo: {0}", - "LabelLocalAccessUrl": "Acesso local: {0}", - "LabelRemoteAccessUrl": "Acesso Remoto: {0}", + "LabelLocalAccessUrl": "Acesso em Casa (LAN): {0}", + "LabelRemoteAccessUrl": "Acesso Remoto (WAN): {0}", "LabelRunningOnPort": "Executando na porta http {0}.", "LabelRunningOnPorts": "Executando na porta http {0} e porta https {1}.", "HeaderLatestFromChannel": "Mais recentes de {0}", - "HeaderCurrentSubtitles": "Legendas Atuais", "ButtonRemoteControl": "Controle Remoto", "HeaderLatestTvRecordings": "\u00daltimas Grava\u00e7\u00f5es", "LabelCurrentPath": "Local atual:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Excluir item", "ConfirmDeleteItem": "Excluir este item o excluir\u00e1 do sistema de arquivos e tamb\u00e9m da biblioteca de m\u00eddias. Deseja realmente continuar?", "ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca de m\u00eddias. Deseja realmente continuar?", - "MessageValueNotCorrect": "O valor digitado n\u00e3o est\u00e1 correto. Por favor, tente novamente.", "MessageItemSaved": "Item salvo.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Por favor, aceite os termos de servi\u00e7o antes de continuar.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Faltando imagem de fundo.", "MissingLogoImage": "Faltando imagem do logo.", "MissingEpisode": "Faltando epis\u00f3dio.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Imagens de Fundo", "OptionImages": "Imagens", "OptionKeywords": "Palavras-chave", @@ -1642,10 +1494,6 @@ "OptionPeople": "Pessoas", "OptionProductionLocations": "Locais de Produ\u00e7\u00e3o", "OptionBirthLocation": "Local de Nascimento", - "LabelAllChannels": "Todos os canais", - "AttributeNew": "Novo", - "AttributePremiere": "Premiere", - "AttributeLive": "Ao vivo", "HeaderChangeFolderType": "Alterar Tipo do Conte\u00fado", "HeaderChangeFolderTypeHelp": "Para alterar o tipo, por favor remova e reconstrua a biblioteca com o novo tipo.", "HeaderAlert": "Alerta", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Qualidade", "HeaderNotifications": "Avisos", "HeaderSelectPlayer": "Selecione onde Reproduzir", - "MessageInternetExplorerWebm": "Para melhores resultados com o Internet Explorer, por favor instale o plugin de reprodu\u00e7\u00e3o WebM.", "HeaderVideoError": "Erro de V\u00eddeo", "ButtonViewSeriesRecording": "Visualizar grava\u00e7\u00e3o de s\u00e9ries", "HeaderSpecials": "Especiais", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Dura\u00e7\u00e3o", "HeaderParentalRating": "Classifica\u00e7\u00e3o Et\u00e1ria", "HeaderReleaseDate": "Data de lan\u00e7amento", - "HeaderDateAdded": "Data de adi\u00e7\u00e3o", "HeaderSeries": "S\u00e9rie:", "HeaderSeason": "Temporada", "HeaderSeasonNumber": "N\u00famero da temporada", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remover Localiza\u00e7\u00e3o da M\u00eddia", "MessageConfirmRemoveMediaLocation": "Deseja realmente remover esta localiza\u00e7\u00e3o?", "LabelNewName": "Novo nome:", - "HeaderAddMediaFolder": "Adicionar Pasta de M\u00eddia", - "HeaderAddMediaFolderHelp": "Nome (Filmes, M\u00fasica, TV, etc):", "HeaderRemoveMediaFolder": "Excluir Pasta de M\u00eddia", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "As localiza\u00e7\u00f5es de m\u00eddia abaixo ser\u00e3o exclu\u00eddas de sua biblioteca Emby:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Deseja realmente excluir esta pasta de m\u00eddia?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Alterar o tipo de conte\u00fado", "HeaderMediaLocations": "Localiza\u00e7\u00f5es de M\u00eddia", "LabelContentTypeValue": "Tipo de conte\u00fado: {0}", - "LabelPathSubstitutionHelp": "Opcional: Substitui\u00e7\u00e3o de local pode mapear locais do servidor para compartilhamentos de rede de forma a que os apps Emby possam acessar para reprodu\u00e7\u00e3o direta.", "FolderTypeUnset": "Indefinido (conte\u00fado misto)", "BirthPlaceValue": "Local de nascimento: {0}", "DeathDateValue": "Morte: {0}", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "N\u00e3o-Exibido", "HeaderMissing": "Ausente", "ButtonWebsite": "Website", - "ValueSeriesYearToPresent": "{0}-Presente", + "ValueSeriesYearToPresent": "{0} - Presente", "ValueAwards": "Pr\u00eamios: {0}", - "ValueBudget": "Or\u00e7amento: {0}", - "ValueRevenue": "Faturamento: {0}", "ValuePremiered": "Estr\u00e9ia {0}", "ValuePremieres": "Estr\u00e9ia {0}", "ValueStudio": "Est\u00fadio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Quadros de refer\u00eancia", "TabExpert": "Avan\u00e7ado", "HeaderSelectCustomIntrosPath": "Selecionar o Local para Introdu\u00e7\u00f5es Personalizadas", - "HeaderRateAndReview": "Avaliar e Comentar", "HeaderThankYou": "Obrigado", - "MessageThankYouForYourReview": "Obrigado por sua avalia\u00e7\u00e3o", - "LabelYourRating": "Sua avalia\u00e7\u00e3o:", "LabelFullReview": "Coment\u00e1rio completo:", - "LabelShortRatingDescription": "Resumo da avalia\u00e7\u00e3o:", - "OptionIRecommendThisItem": "Eu recomendo este item", "ReleaseYearValue": "Ano do lan\u00e7amento: {0}", "OriginalAirDateValue": "Data de exibi\u00e7\u00e3o original: {0}", "WebClientTourContent": "Veja suas m\u00eddias adicionadas recentemente, pr\u00f3ximos epis\u00f3dios e mais. Os c\u00edrculos verdes indicam quantos itens n\u00e3o reproduzidos voc\u00ea tem.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Gerencie facilmente opera\u00e7\u00f5es longas com tarefas agendadas. Decida quando executar e com que frequ\u00eancia.", "DashboardTourMobile": "O painel do Servidor Emby funciona perfeitamente em smartphones e tablets. Gerencie seu servidor da palma de sua m\u00e3o a qualquer hora, em qualquer lugar.", "DashboardTourSync": "Sincronize sua m\u00eddia pessoal para seus dispositivos para assistir off-line.", - "MessageRefreshQueued": "Atualiza\u00e7\u00e3o iniciada", "TabExtras": "Extras", "HeaderUploadImage": "Fazer Upload da Imagem", "DeviceLastUsedByUserName": "Utilizado por \u00faltimo por {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sincronizar M\u00eddia", "HeaderCancelSyncJob": "Cancelar Sincroniza\u00e7\u00e3o", "CancelSyncJobConfirmation": "Cancelar a tarefa de sincroniza\u00e7\u00e3o remover\u00e1 m\u00eddias sincronizadas do dispositivo durante o pr\u00f3ximo processo de sincroniza\u00e7\u00e3o. Deseja realmente proceder?", - "MessagePleaseSelectDeviceToSyncTo": "Por favor, selecione um dispositivo para sincronizar.", - "MessageSyncJobCreated": "Tarefa de sincroniza\u00e7\u00e3o criada.", "LabelQuality": "Qualidade:", - "OptionAutomaticallySyncNewContent": "Sincronizar novo conte\u00fado automaticamente", - "OptionAutomaticallySyncNewContentHelp": "Novo conte\u00fado adicionado a esta pasta ser\u00e1 automaticamente sincronizado com o dispositivo.", "MessageBookPluginRequired": "Requer a instala\u00e7\u00e3o do plugin Bookshelf", "MessageGamePluginRequired": "Requer a instala\u00e7\u00e3o do plugin GameBrowser", "MessageUnsetContentHelp": "O conte\u00fado ser\u00e1 exibido em pastas simples. Para melhor resultado, use o gerenciador de metadados para definir os tipos de conte\u00fado das sub-pastas.", @@ -1932,8 +1763,8 @@ "SyncJobItemStatusCancelled": "Cancelado", "LabelProfile": "Perfil:", "LabelBitrateMbps": "Taxa (Mbps):", - "EmbyIntroDownloadMessage": "Para fazer o download e instalar o Servidor Emby visite {0}.", - "EmbyIntroDownloadMessageWithoutLink": "Para fazer download e instalar o Servidor Emby visite o website do Emby.", + "EmbyIntroDownloadMessage": "Para fazer o download e instalar o Servidor Emby gr\u00e1tis visite {0}.", + "EmbyIntroDownloadMessageWithoutLink": "Para fazer download e instalar o Servidor Emby gr\u00e1tis visite o website do Emby.", "ButtonNewServer": "Novo Servidor", "MyDevice": "Meu Dispositivo", "ButtonRemote": "Remoto", @@ -1941,18 +1772,11 @@ "TabScenes": "Cenas", "HeaderUnlockApp": "Desbloquear App", "HeaderUnlockSync": "Destravar a Sincroniza\u00e7\u00e3o do Emby", - "MessageUnlockAppWithPurchaseOrSupporter": "Desbloqueie este recurso com uma pequena compra \u00fanica ou com uma subscri\u00e7\u00e3o ativa do Emby Premiere.", - "MessageUnlockAppWithSupporter": "Desbloqueie este recurso com uma subscri\u00e7\u00e3o ativa do Emby Premiere.", - "MessageToValidateSupporter": "Se possuir uma subscri\u00e7\u00e3o do Emby Premiere ativa, assegure-se que configurou o Emby Premiere no Painel do Servidor Emby, que pode ser acessado ao clicar em Emby Premiere no menu principal.", "MessagePaymentServicesUnavailable": "Servi\u00e7os de pagamento est\u00e3o indispon\u00edveis no momento. Por favor, tente novamente mais tarde.", - "ButtonUnlockWithPurchase": "Desbloquear com Compra", - "ButtonUnlockPrice": "Desbloquear {0}", - "MessageLiveTvGuideRequiresUnlock": "O Guia de TV ao Vivo est\u00e1 atualmente limitado a {0} canais. Clique no bot\u00e3o desbloquear para saber como aproveitar a experi\u00eancia completa.", "OptionEnableFullscreen": "Ativar Tela Cheia", "ButtonServer": "Servidor", "HeaderLibrary": "Biblioteca", "HeaderMedia": "M\u00eddia", - "HeaderSaySomethingLike": "Diga Alguma Coisa Como...", "NoResultsFound": "Nenhum resultado encontrado.", "ButtonManageServer": "Gerenciar Servidor", "ButtonPreferences": "Prefer\u00eancias", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Criar uma conta em {0}", "ErrorPleaseSelectLineup": "Por favor selecione a programa\u00e7\u00e3o e tente novamente. Se n\u00e3o houver programa\u00e7\u00f5es dispon\u00edveis, verifique se o seu nome de usu\u00e1rio, senha e c\u00f3digo postal est\u00e3o corretos.", "HeaderTryEmbyPremiere": "Experimente o Emby Premiere", - "ButtonBecomeSupporter": "Obter Emby Premiere", - "ButtonClosePlayVideo": "Fechar e reproduzir minha m\u00eddia", - "MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que com o Emby Premiere voc\u00ea pode enriquecer sua experi\u00eancia com recursos como o CInema Mode?", - "MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.", "OptionEnableDisplayMirroring": "Ativar espelhamento da tela", "HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o requer uma subscri\u00e7\u00e3o ativa do Emby Premiere.", "HeaderSyncRequiresSupporterMembershipAppVersion": "A Sincroniza\u00e7\u00e3o requer a conex\u00e3o com um Servidor Emby com uma subscric\u00e3o ativa do Emby Premiere.", "ErrorValidatingSupporterInfo": "Ocorreu um erro ao validar sua informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sincroniza\u00e7\u00e3o iniciada", - "NoSlideshowContentFound": "Nenhuma imagem para apresenta\u00e7\u00e3o foi encontrada.", - "OptionPhotoSlideshow": "Apresenta\u00e7\u00e3o de Fotos", "OptionBackdropSlideshow": "Apresenta\u00e7\u00e3o de Imagens de Fundo", "HeaderTopPlugins": "Plugins Mais Usados", "ButtonOther": "Outro", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "Para provedores de TV ao Vivo adicionais, clique na guia Servi\u00e7os Externos para ver as op\u00e7\u00f5es dispon\u00edveis.", "ButtonGuide": "Guia", - "ButtonRecordedTv": "TV Gravada", "ConfirmEndPlayerSession": "Voc\u00ea deseja fechar o Emby no dispositivo?", "ButtonYes": "Sim", "AddUser": "Adicionar Usu\u00e1rio", "ButtonNo": "N\u00e3o", - "ButtonRestorePreviousPurchase": "Restaurar Compra", - "AlreadyPaid": "J\u00e1 Est\u00e1 Pago?", - "AlreadyPaidHelp1": "Se j\u00e1 pagou anteriormente para instalar uma vers\u00e3o antiga do Media Browser para Android, n\u00e3o ser\u00e1 necess\u00e1rio pagar novamente para ativar este app. Clique OK para enviar-nos um email para {0} e n\u00f3s ativaremos para voc\u00ea.", - "AlreadyPaidHelp2": "Possui o Emby Premiere? Cancele esta caixa, configure o Emby Premiere no Painel do Servidor Emby em Ajuda -> Emby Premiere e ele ser\u00e1 automaticamente desbloqueado.", "ButtonNowPlaying": "Reproduzindo Agora", "HeaderLatestMovies": "Filmes Recentes", - "EmbyPremiereMonthly": "Emby Premiere Mensal", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Mensal {0}", "HeaderEmailAddress": "Endere\u00e7o de E-mail", - "TextPleaseEnterYourEmailAddressForSubscription": "Por favor, digite seu endere\u00e7o de e-mail.", "LoginDisclaimer": "Emby est\u00e1 desenhado para ajud\u00e1-lo a gerenciar sua biblioteca de m\u00eddia pessoal, como v\u00eddeos caseiros ou fotos. Por favor, leia nossos termos de uso. O uso de qualquer software Emby constitui a aceita\u00e7\u00e3o desses termos.", "TermsOfUse": "Termos de uso", "NumLocationsValue": "{0} pastas", "ButtonAddMediaLibrary": "Adicionar Biblioteca de M\u00eddia", "ButtonManageFolders": "Gerenciar pastas", - "MessageTryMicrosoftEdge": "Para uma melhor experi\u00eancia no Windows 10, experimente o novo Navegador Microsoft Edge.", - "MessageTryModernBrowser": "Para uma melhor experi\u00eancia no Windows, tente um navegador web moderno como o Google Chrome, Firefox ou Opera.", "ErrorAddingListingsToSchedulesDirect": "Ocorreu um erro ao adicionar a programa\u00e7\u00e3o \u00e0 sua conta da Schedules Direct. A Schedules Direct permite apenas um n\u00famero limitado de programa\u00e7\u00f5es por conta. Talvez seja necess\u00e1rio que voc\u00ea entre no website da Schedules Direct e remova outras listas de sua conta antes de prosseguir.", "PleaseAddAtLeastOneFolder": "Por favor, adicione ao menos uma pasta a esta biblioteca, clicando no bot\u00e3o Adicionar.", "ErrorAddingMediaPathToVirtualFolder": "Ocorreu um erro ao adicionar o local da m\u00eddia. Por favor, assegure-se que o local \u00e9 valido e que o processo do Emby Server tenha acesso a essa localiza\u00e7\u00e3o.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirmar a Instala\u00e7\u00e3o do Plugin", "PleaseConfirmPluginInstallation": "Por favor, clique em OK para confirmar que voc\u00ea leu e deseja prosseguir com a instala\u00e7\u00e3o do plugin.", "MessagePluginInstallDisclaimer": "Plugins feitos por membros da comunidade Emby s\u00e3o uma grande forma de melhorar sua experi\u00eancia Emby com funcionalidades e benef\u00edcios adicionais. Antes de instalar, por favor certifique-se de conhecer os efeitos que podem causar no seu Servidor Emby, tais como, rastreamentos da biblioreca mais longos, processamento adicional e diminui\u00e7\u00e3o na estabilidade do sistema.", - "ButtonPlayOneMinute": "Reproduzir um minuto", - "ThankYouForTryingEnjoyOneMinute": "Por favor, aproveite a reprodu\u00e7\u00e3o de um minuto. Obrigado por experimentar o Emby.", - "HeaderTryPlayback": "Experimente a Reprodu\u00e7\u00e3o", - "HeaderBenefitsEmbyPremiere": "Benef\u00edcios do Emby Premiere", - "MobileSyncFeatureDescription": "Sincronize sua m\u00eddia para seus smart phones e tablets para ter um acesso f\u00e1cil offline.", - "CoverArtFeatureDescription": "Cover Art cria capas divertidas e outros tratamentos para ajud\u00e1-lo a personalizar suas imagens.", "HeaderMobileSync": "Sincroniza\u00e7\u00e3o M\u00f3vel", "HeaderCloudSync": "Sincroniza\u00e7\u00e3o Cloud", - "CloudSyncFeatureDescription": "Sincronize sua m\u00eddia para a nuvem para fazer um backup, arquivamento e convers\u00e3o de forma f\u00e1cil", "HeaderFreeApps": "Apps Emby gratuitos", - "FreeAppsFeatureDescription": "Aproveite o acesso gratuito para selecionar os apps Emby para seu dispositivos.", - "CinemaModeFeatureDescription": "Cinema Mode oferece uma verdadeira experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme.", "CoverArt": "Covert Art", "ButtonOff": "Desligado", "TitleHardwareAcceleration": "Acelera\u00e7\u00e3o de Hardware", "HardwareAccelerationWarning": "Ativar a acelera\u00e7\u00e3o de hardware pode causar instabilidade em alguns ambientes. Assegure-se que seu sistema operacional e drivers de v\u00eddeo est\u00e3o atualizados. Se tiver dificuldades em reproduzir v\u00eddeo depois de ativar isto, dever\u00e1 alterar a configura\u00e7\u00e3o de volta a Auto.", "HeaderSelectCodecIntrosPath": "Selecionar o Local dos Codecs das Introdu\u00e7\u00f5es", - "ButtonAddMissingData": "Adicionar apenas dados que faltam", "ValueExample": "Exemplo: {0}", "OptionEnableAnonymousUsageReporting": "Ativar relat\u00f3rio de uso an\u00f4nimo", "OptionEnableAnonymousUsageReportingHelp": "Permitir que o Emby colete dados an\u00f4nimos como os plugins instalados, os n\u00fameros de vers\u00e3o de seus apps Emby, etc. Estas informa\u00e7\u00f5es s\u00e3o usadas apenas com o prop\u00f3sito de aprimorar o software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "Url M3U (opcional):", "LabelOptionalM3uUrlHelp": "Alguns dispositivos suportam uma lista de canais M3U.", "TabResumeSettings": "Ajustes para Retomar", - "HowDidYouPay": "Como voc\u00ea pagou?", - "IHaveEmbyPremiere": "Eu tenho o Emby Premiere", - "IPurchasedThisApp": "Eu comprei este app.", "DrmChannelsNotImported": "Canais com DRM n\u00e3o ser\u00e3o importados.", "LabelAllowHWTranscoding": "Permitir a transcodifica\u00e7\u00e3o de hardware", "AllowHWTranscodingHelp": "Se ativado, permite ao sintonizador transcodificar streams em tempo real. Isto pode ajudar a reduzir a transcodifica\u00e7\u00e3o requerida pelo Servidor Emby.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Alterar as defini\u00e7\u00f5es dos metadados afetar\u00e1 o novo conte\u00fado que ser\u00e1 adicionado. Para atualizar o conte\u00fado existente, abra a tela de detalhes e clique no bot\u00e3o atualizar ou execute atualiza\u00e7\u00f5es em bloco usando o gerenciador de metadados.", "OptionConvertRecordingPreserveAudio": "Preservar o \u00e1udio original ao converter grava\u00e7\u00f5es (quando poss\u00edvel)", "OptionConvertRecordingPreserveAudioHelp": "Isto permitir\u00e1 um \u00e1udio melhor mas pode necessitar transcodifica\u00e7\u00e3o durante a reprodu\u00e7\u00e3o em alguns dispositivos.", - "CreateCollectionHelp": "Colet\u00e2neas permitem que voc\u00ea crie grupos personalizados de filmes e outros conte\u00fados da biblioteca.", + "OptionConvertRecordingPreserveVideo": "Preservar v\u00eddeo original quando converter grava\u00e7\u00f5es", + "OptionConvertRecordingPreserveVideoHelp": "Isto pode prover melhor qualidade de v\u00eddeo mas ir\u00e1 requerer transcodifica\u00e7\u00e3o durante a reprodu\u00e7\u00e3o em alguns dispositivos.", "AddItemToCollectionHelp": "Adicione itens \u00e0s colet\u00e2neas atrav\u00e9s da busca deles e usando o bot\u00e3o direito ou clique no menu para os adicionar \u00e0 uma colet\u00e2nea.", "HeaderHealthMonitor": "Monitor de Integridade", "HealthMonitorNoAlerts": "N\u00e3o existem alertas ativos.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Opcional) Caminho de rede compartilhado:", "LabelOptionalNetworkPathHelp": "Se esta pasta estiver compartilhada em sua rede, prover o caminho de rede do compartilhamento permitir\u00e1 que apps Emby em outros dispositivos acessem m\u00eddias diretamente.", "ButtonPlayExternalPlayer": "Reproduzir com reprodutor externo", - "WillRecord": "Ir\u00e1 gravar", "NotScheduledToRecord": "N\u00e3o agendado para gravar", - "SynologyUpdateInstructions": "Por favor logue-se no DSM e siga para a Central de Pacotes para atualizar." + "SynologyUpdateInstructions": "Por favor logue-se no DSM e siga para a Central de Pacotes para atualizar.", + "LatestFromLibrary": "\u00daltimos {0}", + "LabelMoviePrefix": "Prefixo dos filmes:", + "LabelMoviePrefixHelp": "Se os t\u00edtulos dos filmes devem ter um prefixo, digite-o aqui para que o Emby possa us\u00e1-lo corretamente.", + "HeaderRecordingPostProcessing": "Processamento P\u00f3s-Grava\u00e7\u00e3o", + "LabelPostProcessorArguments": "Argumentos de linha de comando do P\u00f3s-processador:", + "LabelPostProcessorArgumentsHelp": "Usar {path} como a localiza\u00e7\u00e3o do arquivo de grava\u00e7\u00e3o.", + "LabelPostProcessor": "Aplica\u00e7\u00e3o de P\u00f3s-processamento:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/pt-PT.json b/dashboard-ui/strings/pt-PT.json index 2b920de7f6..7c1d6124a2 100644 --- a/dashboard-ui/strings/pt-PT.json +++ b/dashboard-ui/strings/pt-PT.json @@ -1,8 +1,6 @@ { - "LabelExit": "Sair", - "LabelApiDocumentation": "Documenta\u00e7\u00e3o da API", - "LabelBrowseLibrary": "Navegar pela Biblioteca", - "LabelConfigureServer": "Configurar o Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Anterior", "LabelFinish": "Terminar", "LabelNext": "Seguinte", @@ -14,25 +12,13 @@ "LabelYourFirstName": "O seu primeiro nome:", "MoreUsersCanBeAddedLater": "\u00c9 poss\u00edvel adicionar utilizadores mais tarde no Painel Principal", "UserProfilesIntro": "O Emby inclui suporte nativo de perfis de utilizadores, permitindo que cada utilizador tenha as suas configura\u00e7\u00f5es de visualiza\u00e7\u00e3o, estado da reprodu\u00e7\u00e3o e controlos parentais.", - "LabelWindowsService": "Servi\u00e7o do Windows", - "AWindowsServiceHasBeenInstalled": "Foi instalado um Servi\u00e7o do Windows.", - "WindowsServiceIntro1": "O Servidor Emby \u00e9 normalmente executado como uma aplica\u00e7\u00e3o de ambiente de trabalho com um \u00edcone na barra de tarefas, mas se o preferir executar como um servi\u00e7o em segundo plano, pode ser iniciado no painel de controlo de servi\u00e7os do windows.", - "WindowsServiceIntro2": "Se usar o servi\u00e7o do windows, por favor saiba que n\u00e3o \u00e9 poss\u00edvel execut\u00e1-lo ao mesmo tempo que o \u00edcone da barra Iniciar, por isso necessita de sair da barra Iniciar para poder executar o servi\u00e7o. O servi\u00e7o tamb\u00e9m necessita de ser configurado com privil\u00e9gios de administrador atrav\u00e9s do painel de controlo. Ao executar como servi\u00e7o, ser\u00e1 necess\u00e1rio verificar se a conta do servi\u00e7o pode acessar as suas pastas.", "WizardCompleted": "\u00c9 tudo, de momento. O Emby come\u00e7ou a recolher informa\u00e7\u00f5es da sua biblioteca multim\u00e9dia. Confira algumas das nossas apps e de seguida clique Terminar<\/b> para ver o Painel Principal do Servidor<\/b>", "LabelConfigureSettings": "Configura\u00e7\u00f5es", - "LabelEnableAutomaticPortMapping": "Activar mapeamento autom\u00e1tico de portas", - "LabelEnableAutomaticPortMappingHelp": "UPnP permite configurar automaticamente o router, para um acesso remoto mais facilitado. Pode n\u00e3o suportar todos os modelos de routers.", "HeaderTermsOfService": "Termos de Servi\u00e7o do Emby", "MessagePleaseAcceptTermsOfService": "Por favor, aceite os termos de servi\u00e7o e pol\u00edtica de privacidade antes de continuar.", "OptionIAcceptTermsOfService": "Aceito os termos de servi\u00e7o", "ButtonPrivacyPolicy": "Pol\u00edtica de privacidade", "ButtonTermsOfService": "Termos de Servi\u00e7o", - "HeaderDeveloperOptions": "Op\u00e7\u00f5es do Programador", - "OptionEnableWebClientResponseCache": "Ativar o cache de resposta da web", - "OptionDisableForDevelopmentHelp": "Configure esta op\u00e7\u00e3o de acordo ao prop\u00f3sito de desenvolvimento web", - "OptionEnableWebClientResourceMinification": "Ativar a minimiza\u00e7\u00e3o de recursos da web", - "LabelDashboardSourcePath": "Caminho da fonte do cliente web:", - "LabelDashboardSourcePathHelp": "Se correr o servidor a partir do c\u00f3digo fonte, especifique o caminho da pasta dashboard-ui. Todos os ficheiros do cliente web ser\u00e3o usados a partir desta localiza\u00e7\u00e3o.", "ButtonConvertMedia": "Converter multim\u00e9dia", "ButtonOrganize": "Organizar", "HeaderSupporterBenefits": "Benef\u00edcios do Emby Premiere", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Para adicionar um utilizador que n\u00e3o esteja listado, primeiro precisar\u00e1 de associar a conta ao Emby Connect na p\u00e1gina de perfil.", "LabelPinCode": "C\u00f3digo PIN:", "OptionHideWatchedContentFromLatestMedia": "Ocultar conte\u00fado multim\u00e9dia j\u00e1 assistido", + "DeleteMedia": "Delete media", "HeaderSync": "Sincroniza\u00e7\u00e3o", "ButtonOk": "Ok", "ButtonCancel": "Cancelar", "ButtonExit": "Sair", "ButtonNew": "Novo", + "OptionDev": "Dev (Inst\u00e1vel)", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Disparadores de Tarefa", "HeaderTV": "TV", "HeaderAudio": "\u00c1udio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Para acessar, por favor digite seu c\u00f3digo pin", "ButtonConfigurePinCode": "Configurar c\u00f3digo PIN", "RegisterWithPayPal": "Registar com PayPal", - "HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia", "LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:", "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. Multim\u00e9dia convertida, criada durante o processo de sincroniza\u00e7\u00e3o, ser\u00e1 aqui armazenada.", "LabelCustomCertificatePath": "Localiza\u00e7\u00e3o do certificado personalizado:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Se ativado, arquivos com extens\u00f5es .rar e .zip ser\u00e3o detectados como arquivos multim\u00e9dia.", "LabelEnterConnectUserName": "Nome de utilizador ou email:", "LabelEnterConnectUserNameHelp": "Este \u00e9 o nome de utilizador ou email da sua conta online Emby.", - "LabelEnableEnhancedMovies": "Ativar exibi\u00e7\u00f5es de filme avan\u00e7adas", - "LabelEnableEnhancedMoviesHelp": "Quando ativado, os filmes ser\u00e3o exibidos como pastas para incluir trailers, extras, elenco & equipa e outros conte\u00fados relacionados.", "HeaderSyncJobInfo": "Tarefa de Sincroniza\u00e7\u00e3o", "FolderTypeMixed": "Conte\u00fado misto", "FolderTypeMovies": "Filmes", @@ -84,7 +70,6 @@ "LabelContentType": "Tipo de conte\u00fado:", "TitleScheduledTasks": "Tarefas Agendadas", "HeaderSetupLibrary": "Configurar as suas bibliotecas multim\u00e9dia", - "ButtonAddMediaFolder": "Adicionar pasta multim\u00e9dia", "LabelFolderType": "Tipo de pasta", "LabelCountry": "Pa\u00eds:", "LabelLanguage": "Idioma:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Guardar imagens e metadados diretamente nas pastas multim\u00e9dia, vai coloc\u00e1-los num local de f\u00e1cil acesso para poderem ser editados facilmente.", "LabelDownloadInternetMetadata": "Transferir imagens e metadados da Internet", "LabelDownloadInternetMetadataHelp": "O Servidor Emby pode fazer download das informa\u00e7\u00f5es multim\u00e9dia para possibilitar belas apresenta\u00e7\u00f5es.", - "TabPreferences": "Prefer\u00eancias", "TabPassword": "Senha", "TabLibraryAccess": "Aceder \u00e0 Biblioteca", "TabAccess": "Acesso", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Permitir acesso a todas as bibliotecas", "DeviceAccessHelp": "Isto apenas se aplica para dispositivos que podem ser identificados como \u00fanicos e n\u00e3o evitar\u00e3o o acesso do navegador. Filtrar o acesso ao dispositivo do utilizador evita que sejam usados novos dispositivos at\u00e9 que sejam aprovados aqui.", "LabelDisplayMissingEpisodesWithinSeasons": "Mostrar epis\u00f3dios em falta dentro das temporadas", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Mostrar epis\u00f3dios por estrear dentro das temporadas", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Configura\u00e7\u00f5es de Reprodu\u00e7\u00e3o de V\u00eddeo", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Op\u00e7\u00f5es de Reprodu\u00e7\u00e3o", "LabelAudioLanguagePreference": "Prefer\u00eancias de Idioma de Audio:", "LabelSubtitleLanguagePreference": "Prefer\u00eancia de Idioma de Legenda:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 R\u00e1cio de aspecto recomendado. JPG\/ PNG apenas.", "MessageNothingHere": "Nada aqui.", "MessagePleaseEnsureInternetMetadata": "Certifique-se que a transfer\u00eancia de metadados da internet est\u00e1 activa.", - "TabSuggested": "Sugest\u00f5es", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Sugest\u00f5es", "TabLatest": "Mais recente", "TabUpcoming": "Pr\u00f3ximos", "TabShows": "S\u00e9ries", "TabEpisodes": "Epis\u00f3dios", "TabGenres": "G\u00e9neros", - "TabPeople": "Pessoas", "TabNetworks": "Redes", "HeaderUsers": "Utilizadores", "HeaderFilters": "Filtros", @@ -166,6 +153,7 @@ "OptionWriters": "Argumentistas", "OptionProducers": "Produtores", "HeaderResume": "Resumir", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "A Seguir", "NoNextUpItemsMessage": "Nenhum encontrado. Comece a ver os seus programas!", "HeaderLatestEpisodes": "\u00daltimos Epis\u00f3dios", @@ -185,6 +173,7 @@ "OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es", "OptionDatePlayed": "Data de reprodu\u00e7\u00e3o", "OptionDateAdded": "Data de adi\u00e7\u00e3o", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Artista do \u00c1lbum", "OptionArtist": "Artista", "OptionAlbum": "\u00c1lbum", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Qualidade do v\u00eddeo", "OptionResumable": "Retom\u00e1vel", "ScheduledTasksHelp": "Clique numa tarefa para configurar o seu agendamento.", - "ScheduledTasksTitle": "Tarefas Agendadas", "TabMyPlugins": "As minhas extens\u00f5es", "TabCatalog": "Cat\u00e1logo", "TitlePlugins": "Extens\u00f5es", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u00daltimas m\u00fasicas", "HeaderRecentlyPlayed": "Reproduzido recentemente", "HeaderFrequentlyPlayed": "Reproduzido frequentemente", - "DevBuildWarning": "As vers\u00f5es Dev s\u00e3o a tecnologia de ponta. S\u00e3o lan\u00e7adas frequentemente e n\u00e3o foram testadas. A aplica\u00e7\u00e3o pode bloquear e n\u00e3o funcionar de todo.", "LabelVideoType": "Tipo de V\u00eddeo:", "OptionBluray": "Bluray", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "\u00datil para contas de administrador privadas ou ocultas. O utilizador necessita de entrar manualmente, introduzindo o seu nome de utilizador e senha.", "OptionDisableUser": "Desativar este utilizador", "OptionDisableUserHelp": "Se desativado, o servidor n\u00e3o permite nenhuma conex\u00e3o deste utilizador. Conex\u00f5es existentes ser\u00e3o terminadas.", - "HeaderAdvancedControl": "Controlo Avan\u00e7ado", "LabelName": "Nome:", "ButtonHelp": "Ajuda", "OptionAllowUserToManageServer": "Permitir a este utilizador gerir o servidor", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dispositivos DLNA s\u00e3o considerados compartilhados at\u00e9 que um utilizador comece a control\u00e1-lo.", "OptionAllowLinkSharing": "Permitir partilha nas redes sociais", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Partilhar", "HeaderRemoteControl": "Controlo Remoto", "OptionMissingTmdbId": "Id Tmdb em falta", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Localiza\u00e7\u00f5es", "TabServer": "Servidor", "TabTranscoding": "Transcodifica\u00e7\u00e3o", - "TitleAdvanced": "Avan\u00e7ado", "OptionRelease": "Lan\u00e7amento Oficial", - "OptionBeta": "Beta", - "OptionDev": "Dev (Inst\u00e1vel)", "LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es", "LabelAllowServerAutoRestartHelp": "O servidor ir\u00e1 reiniciar apenas durante per\u00edodos em que n\u00e3o esteja a ser usado, quando nenhum utilizador estiver ativo.", "LabelRunServerAtStartup": "Iniciar o servidor no arranque", @@ -330,11 +312,9 @@ "TabGames": "Jogos", "TabMusic": "M\u00fasica", "TabOthers": "Outros", - "HeaderExtractChapterImagesFor": "Extrair imagens de cap\u00edtulos para:", "OptionMovies": "Filmes", "OptionEpisodes": "Epis\u00f3dios", "OptionOtherVideos": "Outros V\u00eddeos", - "TitleMetadata": "Metadados", "LabelFanartApiKey": "Chave da api pessoal:", "LabelFanartApiKeyHelp": "Solicita\u00e7\u00f5es para fanart sem uma chave de API pessoal retornar\u00e3o resultados que foram aprovados h\u00e1 mais de 7 dias atr\u00e1s. Com uma chave de API pessoal isso diminui para 48 horas e se voc\u00ea for um membro VIP da fanart, isso diminuir\u00e1 para 10 minutos.", "ExtractChapterImagesHelp": "Extrair imagens de cap\u00edtulos permitir\u00e1 aos clientes exibir menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, demandar uso intensivo de cpu e pode exigir bastante espa\u00e7o em disco. Ele ser\u00e1 executado quando os v\u00eddeos forem encontrados e tamb\u00e9m como uma tarefa noturna. A programa\u00e7\u00e3o pode ser configurada na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de pico de uso.", @@ -350,15 +330,15 @@ "TabCollections": "Cole\u00e7\u00f5es", "HeaderChannels": "Canais", "TabRecordings": "Grava\u00e7\u00f5es", - "TabScheduled": "Agendado", "TabSeries": "S\u00e9ries", "TabFavorites": "Favoritos", "TabMyLibrary": "A minha Biblioteca", "ButtonCancelRecording": "Cancelar Grava\u00e7\u00e3o", - "LabelPrePaddingMinutes": "Minutos pr\u00e9vios extra:", - "LabelPostPaddingMinutes": "Minutos posteriores extra:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "Agora a exibir", - "TabStatus": "Estado", "TabSettings": "Configura\u00e7\u00f5es", "ButtonRefreshGuideData": "Atualizar Dados do Guia", "ButtonRefresh": "Atualizar", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Gravar em todos os canais", "OptionRecordAnytime": "Gravar a qualquer hora", "OptionRecordOnlyNewEpisodes": "Gravar apenas novos epis\u00f3dios", - "HeaderRepeatingOptions": "Op\u00e7\u00f5es de Repeti\u00e7\u00e3o", "HeaderDays": "Dias", "HeaderActiveRecordings": "Grava\u00e7\u00f5es ativas", "HeaderLatestRecordings": "\u00daltimas Grava\u00e7\u00f5es", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u00daltimos Jogos", "HeaderRecentlyPlayedGames": "Jogos jogados recentemente", "TabGameSystems": "Sistemas de Jogos", - "TitleMediaLibrary": "Biblioteca Multim\u00e9dia", "TabFolders": "Pastas", "TabPathSubstitution": "Substitui\u00e7\u00e3o de Localiza\u00e7\u00e3o", "LabelSeasonZeroDisplayName": "Nome de apresenta\u00e7\u00e3o da temporada 0:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Separar Vers\u00f5es", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Em falta", - "LabelOffline": "Desconectado", - "PathSubstitutionHelp": "Substitui\u00e7\u00f5es de localiza\u00e7\u00e3o s\u00e3o usadas para mapear uma localiza\u00e7\u00e3o no servidor que possa ser acedido pelos clientes. Ao permitir o acesso dos clientes ao conte\u00fado multim\u00e9dia no servidor, permite-lhes reproduzir diretamente atrav\u00e9s da rede e evitar o uso de recursos do servidor para fazer stream ou transcodifica\u00e7\u00e3o.", - "HeaderFrom": "De", - "HeaderTo": "Para", - "LabelFrom": "De:", - "LabelTo": "Para:", - "LabelToHelp": "Exemplo: \\\\MeuServidor\\Filmes (um local que os clientes possam acessar)", - "ButtonAddPathSubstitution": "Adicionar Substitui\u00e7\u00e3o", "OptionSpecialEpisode": "Especiais", "OptionMissingEpisode": "Epis\u00f3dios em Falta", "OptionUnairedEpisode": "Epis\u00f3dios por Estrear", "OptionEpisodeSortName": "Nome de Ordena\u00e7\u00e3o do Epis\u00f3dio", "OptionSeriesSortName": "Nome da S\u00e9rie", "OptionTvdbRating": "Classifica\u00e7\u00e3o no Tvdb", - "EditCollectionItemsHelp": "Adicione ou remova qualquer filme, s\u00e9rie, \u00e1lbum, livro ou jogo que desejar agrupar dentro desta cole\u00e7\u00e3o.", "HeaderAddTitles": "Adicional T\u00edtulos", "LabelEnableDlnaPlayTo": "Ativar DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby pode detectar dispositivos dentro de sua rede e oferece a possibilidade de control\u00e1-los.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Perfis de Sistema", "CustomDlnaProfilesHelp": "Crie um perfil personalizado para um novo dispositivo ou para sobrepor um perfil de sistema.", "SystemDlnaProfilesHelp": "Perfis de sistema s\u00e3o apenas de leitura. Mudan\u00e7as a um perfil de sistema ser\u00e3o guardadas num novo perfil personalizado.", - "TitleDashboard": "Painel Principal", "TabHome": "In\u00edcio", "TabInfo": "Info", "HeaderLinks": "Hiperliga\u00e7\u00f5es", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Os t\u00edtulos s\u00e3o considerados n\u00e3o assistidos se parados antes deste tempo", "LabelMaxResumePercentageHelp": "Os t\u00edtulos s\u00e3o considerados totalmente assistidos se parados depois deste tempo", "LabelMinResumeDurationHelp": "T\u00edtulos mais curtos que isto n\u00e3o ser\u00e3o retom\u00e1veis", - "TitleAutoOrganize": "Organiza\u00e7\u00e3o Autom\u00e1tica", "TabActivityLog": "Log da Atividade", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Gerencie suas smart matches que foram adicionadas usando a op\u00e7\u00e3o de corre\u00e7\u00e3o do Auto-Organizar", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Ajude a assegurar o desenvolvimento cont\u00ednuo deste projeto comprando o Emby Premiere. Uma parte de todas as receitas ser\u00e1 distribu\u00edda para outras ferramentas gr\u00e1tis das quais dependemos.", "DonationNextStep": "Uma vez completada, por favor retorne e digite a sua chave do Emby Premiere, que receber\u00e1 por email.", "AutoOrganizeHelp": "A organiza\u00e7\u00e3o autom\u00e1tica monitoriza as suas pastas de transfer\u00eancias em busca de novos ficheiros e move-os para as suas pastas multim\u00e9dia.", - "AutoOrganizeTvHelp": "A organiza\u00e7\u00e3o de ficheiros de TV s\u00f3 ir\u00e1 adicionar ficheiros \u00e0s s\u00e9ries existentes. Ela n\u00e3o ir\u00e1 criar novas pastas de s\u00e9ries.", "OptionEnableEpisodeOrganization": "Ativar a organiza\u00e7\u00e3o de novos epis\u00f3dios", "LabelWatchFolder": "Observar pasta:", "LabelWatchFolderHelp": "O servidor ir\u00e1 pesquisar esta pasta durante a tarefa agendada 'Organizar novos ficheiros multim\u00e9dia'.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Tarefas em Execu\u00e7\u00e3o", "HeaderActiveDevices": "Dispositivos Ativos", "HeaderPendingInstallations": "Instala\u00e7\u00f5es Pendentes", - "HeaderServerInformation": "Informa\u00e7\u00e3o do Servidor", "ButtonRestartNow": "Reiniciar Agora", "ButtonRestart": "Reiniciar", "ButtonShutdown": "Encerrar", @@ -588,7 +553,6 @@ "MessageInvalidKey": "A chave do Emby Premiere est\u00e1 faltando ou \u00e9 inv\u00e1lida.", "ErrorMessageInvalidKey": "Para que qualquer conte\u00fado premium seja registrado, voc\u00ea precisa ter uma subscri\u00e7\u00e3o ativa do Emby Premiere.", "HeaderDisplaySettings": "Apresentar Configura\u00e7\u00f5es", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Ativar servidor DLNA", "LabelEnableDlnaServerHelp": "Permite que dispositivos UPnP em sua rede naveguem e reproduzam conte\u00fado do Emby.", "LabelEnableBlastAliveMessages": "Propagar mensagens de reconhecimento", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determina a dura\u00e7\u00e3o em segundos entre as mensagens de explora\u00e7\u00e3o enviadas pelo servidor.", "LabelDefaultUser": "Utilizador padr\u00e3o:", "LabelDefaultUserHelp": "Determina qual utilizador ser\u00e1 exibido nos dispositivos conectados. Isto pode ser ignorado para cada dispositivo usando perfis.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Op\u00e7\u00f5es do Servidor", "HeaderRequireManualLogin": "Necessita a inser\u00e7\u00e3o manual de um nome de utilizador para:", "HeaderRequireManualLoginHelp": "Quando desativados, os clientes podem mostrar a tela de login com uma sele\u00e7\u00e3o visual de utilizadores.", "OptionOtherApps": "Outras apps", "OptionMobileApps": "Apps m\u00f3veis", - "HeaderNotificationList": "Clique em uma notifica\u00e7\u00e3o para configurar as op\u00e7\u00f5es de envio.", - "NotificationOptionApplicationUpdateAvailable": "Dispon\u00edvel atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o", - "NotificationOptionApplicationUpdateInstalled": "Instalada atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o", - "NotificationOptionPluginUpdateInstalled": "Instalada atualiza\u00e7\u00e3o da extens\u00e3o", - "NotificationOptionPluginInstalled": "Extens\u00e3o instalada", - "NotificationOptionPluginUninstalled": "Extens\u00e3o desinstalada", - "NotificationOptionVideoPlayback": "Reprodu\u00e7\u00e3o de v\u00eddeo iniciada", - "NotificationOptionAudioPlayback": "Reprodu\u00e7\u00e3o de \u00e1udio iniciada", - "NotificationOptionGamePlayback": "Reprodu\u00e7\u00e3o de jogo iniciada", - "NotificationOptionVideoPlaybackStopped": "Reprodu\u00e7\u00e3o de v\u00eddeo parada", - "NotificationOptionAudioPlaybackStopped": "Reprodu\u00e7\u00e3o de \u00e1udio parada", - "NotificationOptionGamePlaybackStopped": "Reprodu\u00e7\u00e3o de jogo parada", - "NotificationOptionTaskFailed": "Falha na tarefa agendada", - "NotificationOptionInstallationFailed": "Falha na instala\u00e7\u00e3o", - "NotificationOptionNewLibraryContent": "Adicionado novo conte\u00fado", - "NotificationOptionCameraImageUploaded": "Imagem da c\u00e2mara carregada", - "NotificationOptionUserLockedOut": "Utilizador bloqueado", - "HeaderSendNotificationHelp": "As notifica\u00e7\u00f5es s\u00e3o entregues na caixa de entrada do Emby. Op\u00e7\u00f5es adicionais podem ser instaladas no guia Servi\u00e7os.", - "NotificationOptionServerRestartRequired": "\u00c9 necess\u00e1rio reiniciar o servidor", "LabelNotificationEnabled": "Ativar esta notifica\u00e7\u00e3o", "LabelMonitorUsers": "Monitorizar atividade de:", "LabelSendNotificationToUsers": "Enviar notifica\u00e7\u00e3o para:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Anterior", "LabelGroupMoviesIntoCollections": "Agrupar filmes nas cole\u00e7\u00f5es", "LabelGroupMoviesIntoCollectionsHelp": "Ao exibir listas de filmes, filmes que perten\u00e7am a uma cole\u00e7\u00e3o ser\u00e3o exibidos como um \u00fanico item agrupado.", - "NotificationOptionPluginError": "Falha na extens\u00e3o", "ButtonVolumeUp": "Aumentar volume", "ButtonVolumeDown": "Diminuir volume", "HeaderLatestMedia": "Multim\u00e9dia Recente", "OptionNoSubtitles": "Sem legendas", - "OptionSpecialFeatures": "Recursos Especiais", "HeaderCollections": "Cole\u00e7\u00f5es", "LabelProfileCodecsHelp": "Separados por v\u00edrgula. Pode ser deixado em branco para usar com todos os codecs.", "LabelProfileContainersHelp": "Separados por v\u00edrgula. Pode ser deixado em branco para usar com todos os containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Sem extens\u00f5es dispon\u00edveis.", "LabelDisplayPluginsFor": "Exibir extens\u00f5es para:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Nome do epis\u00f3dio", "LabelSeriesNamePlain": "Nome da s\u00e9rie", "ValueSeriesNamePeriod": "Nome.da.s\u00e9rie", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "N\u00famero do epis\u00f3dio final", "HeaderTypeText": "Inserir texto", "LabelTypeText": "Texto", - "HeaderSearchForSubtitles": "Buscar Legendas", - "MessageNoSubtitleSearchResultsFound": "N\u00e3o foi encontrado nenhum resultado.", "TabDisplay": "Exibi\u00e7\u00e3o", "TabLanguages": "Idiomas", "TabAppSettings": "Configura\u00e7\u00f5es do App", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Se ativadas, m\u00fasicas-tema ser\u00e3o reproduzidas em segundo plano ao navegar pela biblioteca.", "LabelEnableBackdropsHelp": "Se ativadas, imagens de fundo ser\u00e3o exibidas ao fundo de algumas p\u00e1ginas ao navegar pela biblioteca.", "HeaderHomePage": "P\u00e1gina Inicial", - "HeaderSettingsForThisDevice": "Ajustes para Este Dispositivo", "OptionAuto": "Auto", "OptionYes": "Sim", "OptionNo": "N\u00e3o", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Ecr\u00e3 de in\u00edcio se\u00e7\u00e3o 2:", "LabelHomePageSection3": "Ecr\u00e3 de in\u00edcio se\u00e7\u00e3o 3:", "LabelHomePageSection4": "Ecr\u00e3 de in\u00edcio se\u00e7\u00e3o 4:", - "OptionMyMediaButtons": "A minha Multim\u00e9dia (bot\u00f5es)", "OptionMyMedia": "A minha Multim\u00e9dia", "OptionMyMediaSmall": "A minha Multim\u00e9dia (pequeno)", "OptionResumablemedia": "Retomar", @@ -815,53 +752,21 @@ "HeaderReports": "Relat\u00f3rios", "HeaderSettings": "Ajustes", "OptionDefaultSort": "Padr\u00e3o", - "OptionCommunityMostWatchedSort": "Mais Assistidos", "TabNextUp": "Pr\u00f3ximos", - "PlaceholderUsername": "Nome do utilizador", "HeaderBecomeProjectSupporter": "Obter Emby Premiere", "MessageNoMovieSuggestionsAvailable": "N\u00e3o existem sugest\u00f5es de filmes dispon\u00edveis atualmente. Comece por assistir e avaliar seus filmes e, ent\u00e3o, volte para verificar suas recomenda\u00e7\u00f5es.", "MessageNoCollectionsAvailable": "Cole\u00e7\u00f5es permitem que voc\u00ea aproveite grupos personalizados de Filmes, S\u00e9ries, \u00c1lbuns, Livros e Jogos. Clique no bot\u00e3o + para come\u00e7ar a criar Cole\u00e7\u00f5es.", "MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.", "MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.", - "ButtonDismiss": "Descartar", "ButtonEditOtherUserPreferences": "Editar este perfil de utilizador, imagem e prefer\u00eancias pessoais.", "LabelChannelStreamQuality": "Qualidade preferida do canal da internet:", "LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.", "OptionBestAvailableStreamQuality": "Melhor dispon\u00edvel", "ChannelSettingsFormHelp": "Instalar canais como, por exemplo, Trailers e Vimeo no cat\u00e1logo de plugins.", - "ViewTypePlaylists": "Listas de Reprodu\u00e7\u00e3o", "ViewTypeMovies": "Filmes", "ViewTypeTvShows": "TV", "ViewTypeGames": "Jogos", "ViewTypeMusic": "M\u00fasicas", - "ViewTypeMusicGenres": "G\u00eaneros", - "ViewTypeMusicArtists": "Artistas", - "ViewTypeBoxSets": "Cole\u00e7\u00f5es", - "ViewTypeChannels": "Canais", - "ViewTypeLiveTV": "TV ao Vivo", - "ViewTypeLiveTvNowPlaying": "Exibindo Agora", - "ViewTypeLatestGames": "Jogos Recentes", - "ViewTypeRecentlyPlayedGames": "Reproduzido Recentemente", - "ViewTypeGameFavorites": "Favoritos", - "ViewTypeGameSystems": "Sistemas de Jogo", - "ViewTypeGameGenres": "G\u00eaneros", - "ViewTypeTvResume": "Retomar", - "ViewTypeTvNextUp": "Pr\u00f3ximos", - "ViewTypeTvLatest": "\u00daltimas", - "ViewTypeTvShowSeries": "S\u00e9ries", - "ViewTypeTvGenres": "G\u00eaneros", - "ViewTypeTvFavoriteSeries": "S\u00e9ries Favoritas", - "ViewTypeTvFavoriteEpisodes": "Epis\u00f3dios Favoritos", - "ViewTypeMovieResume": "Retomar", - "ViewTypeMovieLatest": "\u00daltimas", - "ViewTypeMovieMovies": "Filmes", - "ViewTypeMovieCollections": "Cole\u00e7\u00f5es", - "ViewTypeMovieFavorites": "Favoritos", - "ViewTypeMovieGenres": "G\u00eaneros", - "ViewTypeMusicLatest": "\u00daltimas", - "ViewTypeMusicPlaylists": "Listas de Reprodu\u00e7\u00e3o", - "ViewTypeMusicAlbums": "\u00c1lbuns", - "ViewTypeMusicAlbumArtists": "Artistas do \u00c1lbum", "HeaderOtherDisplaySettings": "Ajustes de Exibi\u00e7\u00e3o", "ViewTypeMusicSongs": "M\u00fasicas", "ViewTypeMusicFavorites": "Favoritos", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "Ao fazer download das imagens, elas podem ser salvas em ambas extrafanart e extrathumbs para uma maior compatibilidade com as skins do Kodi.", "TabServices": "Servi\u00e7os", "TabLogs": "Logs", - "HeaderServerLogFiles": "Arquivos de log do servidor:", "TabBranding": "Marca", "HeaderBrandingHelp": "Personalize a apar\u00eancia do Emby para satisfazer as necessidades de seu grupo ou organiza\u00e7\u00e3o.", "LabelLoginDisclaimer": "Aviso legal no login:", @@ -917,7 +821,6 @@ "HeaderDevice": "Dispositivo", "HeaderUser": "Utilizador", "HeaderDateIssued": "Data da Emiss\u00e3o", - "LabelChapterName": "Cap\u00edtulo {0}", "HeaderHttpHeaders": "Cabe\u00e7alhos de Http", "HeaderIdentificationHeader": "Cabe\u00e7alho de Identifica\u00e7\u00e3o", "LabelValue": "Valor:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "Visualizar", - "TabSort": "Ordenar", "TabFilter": "Filtro", "ButtonView": "Visualizar", "LabelPageSize": "Limite de itens:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Contexto:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sinc", "TabPlaylists": "Listas de Reprodu\u00e7\u00e3o", "ButtonClose": "Fechar", "LabelAllLanguages": "Todos os idiomas", @@ -956,7 +856,6 @@ "LabelImage": "Imagem:", "HeaderImages": "Imagens", "HeaderBackdrops": "Imagens de Fundo", - "HeaderScreenshots": "Imagens da Tela", "HeaderAddUpdateImage": "Adicionar\/Atualizar Imagem", "LabelDropImageHere": "Largar a imagem aqui", "LabelJpgPngOnly": "Apenas JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "Bloqueada", "OptionUnidentified": "N\u00e3o identificada", "OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental", - "OptionStub": "Stub", "OptionSeason0": "Temporada 0", "LabelReport": "Relat\u00f3rio:", "OptionReportSongs": "M\u00fasicas", @@ -991,34 +889,21 @@ "OptionReportAlbums": "\u00c1lbuns", "ButtonMore": "Mais", "HeaderActivity": "Atividade", - "ScheduledTaskStartedWithName": "{0} iniciado", - "ScheduledTaskCancelledWithName": "{0} foi cancelado", - "ScheduledTaskCompletedWithName": "{0} conclu\u00edda", - "ScheduledTaskFailed": "Tarefa agendada conclu\u00edda", "PluginInstalledWithName": "{0} foi instalado", "PluginUpdatedWithName": "{0} foi atualizado", "PluginUninstalledWithName": "{0} foi desinstalado", - "ScheduledTaskFailedWithName": "{0} falhou", - "DeviceOnlineWithName": "{0} est\u00e1 conectado", "UserOnlineFromDevice": "{0} est\u00e1 ativo em {1}", - "DeviceOfflineWithName": "{0} foi desconectado", "UserOfflineFromDevice": "{0} foi desconectado de {1}", - "SubtitlesDownloadedForItem": "Legendas baixadas para {0}", - "SubtitleDownloadFailureForItem": "Falha ao baixar legendas para {0}", "LabelRunningTimeValue": "Dura\u00e7\u00e3o: {0}", "LabelIpAddressValue": "Endere\u00e7o Ip: {0}", "UserLockedOutWithName": "Utilizador {0} foi bloqueado", "UserConfigurationUpdatedWithName": "A configura\u00e7\u00e3o do utilizador {0} foi atualizada", "UserCreatedWithName": "O utilizador {0} foi criado", - "UserPasswordChangedWithName": "A senha do utilizador {0} foi alterada", "UserDeletedWithName": "O utilizador {0} foi exclu\u00eddo", "MessageServerConfigurationUpdated": "A configura\u00e7\u00e3o do servidor foi atualizada", "MessageNamedServerConfigurationUpdatedWithValue": "A se\u00e7\u00e3o {0} da configura\u00e7\u00e3o do servidor foi atualizada", "MessageApplicationUpdated": "O Servidor Emby foi atualizado", "UserDownloadingItemWithValues": "{0} est\u00e1 fazendo download de {1}", - "UserStartedPlayingItemWithValues": "{0} come\u00e7ou a reproduzir {1}", - "UserStoppedPlayingItemWithValues": "{0} parou de reproduzir {1}", - "AppDeviceValues": "App: {0}, Dispositivo: {1}", "ProviderValue": "Provedor: {0}", "HeaderRecentActivity": "Atividade Recente", "HeaderPeople": "Pessoas", @@ -1051,27 +936,18 @@ "LabelAirDate": "Dias da exibi\u00e7\u00e3o:", "LabelAirTime:": "Hor\u00e1rio:", "LabelRuntimeMinutes": "Dura\u00e7\u00e3o (minutos):", - "LabelRevenue": "Faturamento ($):", - "HeaderAlternateEpisodeNumbers": "N\u00fameros de Epis\u00f3dios Alternativos", "HeaderSpecialEpisodeInfo": "Informa\u00e7\u00e3o do Epis\u00f3dio Especial", - "HeaderExternalIds": "Id`s Externos:", - "LabelAirsBeforeSeason": "Exibido antes da temporada:", - "LabelAirsAfterSeason": "Exibido depois da temporada:", - "LabelAirsBeforeEpisode": "Exibido antes do epis\u00f3dio:", "LabelDisplaySpecialsWithinSeasons": "Exibir especiais dentro das temporadas em que s\u00e3o exibidos", - "HeaderCountries": "Pa\u00edses", "HeaderGenres": "G\u00eaneros", "HeaderPlotKeywords": "Palavras-chave da Trama", "HeaderStudios": "Est\u00fadios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Deixar em branco para herdar os ajustes de um item superior, ou o valor padr\u00e3o global", "OptionNoTrailer": "Nenhum Trailer", "ButtonPurchase": "Comprar", "OptionActor": "Ator", "OptionComposer": "Compositor", "OptionDirector": "Diretor", "OptionProducer": "Produtor", - "OptionWriter": "Escritor", "LabelAirDays": "Dias da exibi\u00e7\u00e3o:", "LabelAirTime": "Hor\u00e1rio:", "HeaderMediaInfo": "Informa\u00e7\u00f5es Multim\u00e9dia", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Controlo Parental", "HeaderAccessSchedule": "Agendamento de Acesso", "HeaderAccessScheduleHelp": "Criar um agendamento de acesso para limitar o acesso a certas horas.", - "ButtonAddSchedule": "Adicionar Agendamento", "LabelAccessDay": "Dia da semana:", "LabelAccessStart": "Hora inicial:", "LabelAccessEnd": "Hora final:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Tarefas de Sincroniza\u00e7\u00e3o", "HeaderThisUserIsCurrentlyDisabled": "Este utilizador est\u00e1 desativado atualmente", "MessageReenableUser": "Veja abaixo para reativar", - "LabelEnableInternetMetadataForTvPrograms": "Fazer download dos metadados da internet para:", "OptionTVMovies": "Filmes da TV", "HeaderUpcomingMovies": "Filmes Por Estrear", "HeaderUpcomingSports": "Esportes Por Estrear", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Listas de reprodu\u00e7\u00e3o", "HeaderViewStyles": "Visualizar Estilos", "TabPhotos": "Fotos", - "TabVideos": "V\u00eddeos", "HeaderWelcomeToEmby": "Bem vindo ao Emby", "EmbyIntroMessage": "Com o Emby voc\u00ea pode facilmente fazer streaming de v\u00eddeos, m\u00fasicas e fotos do Servidor Emby para smartphones, tablets e outros dispositivos.", "ButtonSkip": "Ignorar", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Colunas", "ButtonReset": "Redefinir", "OptionEnableExternalVideoPlayers": "Ativar reprodutores de v\u00eddeo externos", - "ButtonUnlockGuide": "Desbloquear Guia", "LabelEnableFullScreen": "Ativar modo tela cheia", "LabelEmail": "Email:", "LabelUsername": "Nome de Utilizador:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Sinopse", "HeaderShortOverview": "Sinopse curta", "HeaderType": "Tipo", - "HeaderSeverity": "Severidade", "OptionReportActivities": "Log de Atividades", "HeaderTunerDevices": "Sintonizadores", "HeaderAddDevice": "Adicionar dispositivo", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repetir", "LabelEnableThisTuner": "Ativar este sintonizador", "LabelEnableThisTunerHelp": "Desmarque para impedir a importa\u00e7\u00e3o de canais deste sintonizador.", - "HeaderUnidentified": "N\u00e3o-identificado", "HeaderImagePrimary": "Principal", "HeaderImageBackdrop": "Imagem de Fundo", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV", "LabelDataProvider": "Provedor de dados:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Padding Padr\u00e3o", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Legendas", "HeaderVideos": "V\u00eddeos", @@ -1331,14 +1201,12 @@ "HeadersFolders": "Pastas", "LabelDisplayName": "Nome para exibi\u00e7\u00e3o:", "HeaderNewRecording": "Nova Grava\u00e7\u00e3o", - "ButtonAdvanced": "Avan\u00e7ado", "LabelCodecIntrosPath": "Local dos codecs das introdu\u00e7\u00f5es:", "LabelCodecIntrosPathHelp": "Uma pasta contendo arquivos de v\u00eddeo. Se um nome de arquivo de v\u00eddeo de introdu\u00e7\u00e3o coincidir com o codec de v\u00eddeo, codec de \u00e1udio, perfil de \u00e1udio ou uma tag, ser\u00e1 reproduzido antes do filme principal.", "OptionConvertRecordingsToStreamingFormat": "Converter automaticamente grava\u00e7\u00f5es para um formato amig\u00e1vel a streaming", "OptionConvertRecordingsToStreamingFormatHelp": "Grava\u00e7\u00f5es ser\u00e3o convertidas automaticamente para MP4 para uma reprodu\u00e7\u00e3o mais f\u00e1cil em seus dispositivos.", "FeatureRequiresEmbyPremiere": "Este recurso requer uma subscri\u00e7\u00e3o ativa do Emby Premiere", "FileExtension": "Extens\u00e3o do arquivo", - "OptionReplaceExistingImages": "Substituir imagens existentes", "OptionPlayNextEpisodeAutomatically": "Reproduzir pr\u00f3ximo epis\u00f3dio automaticamente", "OptionDownloadImagesInAdvance": "Fazer download de todas as imagens antecipadamente", "SettingsSaved": "Configura\u00e7\u00f5es guardadas.", @@ -1348,7 +1216,6 @@ "Password": "Senha", "DeleteImage": "Apagar Imagem", "MessageThankYouForSupporting": "Obrigado por suportar o Emby.", - "MessagePleaseSupportProject": "Por favor, suporte o Emby.", "DeleteImageConfirmation": "Tem a certeza que deseja apagar a imagem?", "FileReadCancelled": "A leitura do ficheiro foi cancelada.", "FileNotFound": "Ficheiro n\u00e3o encontrado.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Este Servidor Emby precisa ser atualizado. Para fazer download da vers\u00e3o mais recente, por favor visite {0}", "LabelFromHelp": "Exemplo: {0} (no servidor)", "HeaderMyMedia": "A Minha Multim\u00e9dia", - "LabelAutomaticUpdateLevel": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica:", - "LabelAutomaticUpdateLevelForPlugins": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica para plugins:", "ErrorLaunchingChromecast": "Ocorreu um erro ao iniciar o chromecast. Por favor verifique se seu dispositivo est\u00e1 conectado \u00e0 sua rede sem fio.", "MessageErrorLoadingSupporterInfo": "Ocorreu um erro ao carregar a informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.", - "MessageLinkYourSupporterKey": "Associe sua chave do Emby Premiere com at\u00e9 {0} membros do Emby Connect para aproveitar o acesso gr\u00e1tis aos seguintes apps:", "HeaderConfirmRemoveUser": "Remover Utilizador", - "MessageConfirmRemoveConnectSupporter": "Deseja realmente remover os benef\u00edcios do Emby Premiere deste utilizador?", "ValueTimeLimitSingleHour": "Limite de tempo: 1 hora", "ValueTimeLimitMultiHour": "Limite de tempo: {0} horas", "PluginCategoryGeneral": "Geral", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Tarefas agendadas", "MessageItemsAdded": "Itens adicionados", "HeaderSelectCertificatePath": "Selecione o Local do Certificado", - "ConfirmMessageScheduledTaskButton": "Esta opera\u00e7\u00e3o normalmente \u00e9 executada automaticamente como uma tarefa agendada e n\u00e3o \u00e9 necess\u00e1ria nenhuma intera\u00e7\u00e3o manual. Para configurar a tarefa agendada, veja:", "HeaderSupporterBenefit": "Um subscri\u00e7\u00e3o ativa do Emby Premiere fornece benef\u00edcios adicionais como acesso \u00e0 sincroniza\u00e7\u00e3o, plugins premium, conte\u00fado de canais da internet e mais. {0}Saiba mais{1}.", "HeaderWelcomeToProjectServerDashboard": "Bem vindo ao Painel do Servidor Emby", "HeaderWelcomeToProjectWebClient": "Bem vindo ao Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Desativada", "ButtonMoreInformation": "Mais informa\u00e7\u00f5es", "LabelNoUnreadNotifications": "Nenhuma notifica\u00e7\u00e3o por ler.", - "LabelAllPlaysSentToPlayer": "Todas as reprodu\u00e7\u00f5es ser\u00e3o enviadas para o reprodutor selecionado.", "MessageInvalidUser": "Nome de utilizador ou senha inv\u00e1lidos. Por favor, tente novamente.", "HeaderLoginFailure": "Falha no Login", "RecommendationBecauseYouLike": "Porque gosta de {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Grava\u00e7\u00e3o cancelada.", "MessageRecordingScheduled": "Grava\u00e7\u00e3o agendada.", "HeaderConfirmSeriesCancellation": "Confirmar Cancelamento da S\u00e9rie", - "MessageConfirmSeriesCancellation": "Deseja realmente cancelar esta s\u00e9rie?", - "MessageSeriesCancelled": "S\u00e9rie cancelada.", "HeaderConfirmRecordingDeletion": "Confirmar Exclus\u00e3o da Grava\u00e7\u00e3o", "MessageRecordingSaved": "Grava\u00e7\u00e3o salva.", "OptionWeekend": "Fins-de-semana", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Localize ou digite o local para armazenar o cache do servidor. A pasta deve permitir grava\u00e7\u00e3o.", "HeaderSelectTranscodingPathHelp": "Localize ou digite o local para usar para arquivos tempor\u00e1rios de transcodifica\u00e7\u00e3o. A pasta deve ser grav\u00e1vel.", "HeaderSelectMetadataPathHelp": "Localize ou digite o local que voc\u00ea gostaria de armazenar os metadados. A pasta deve ser grav\u00e1vel.", - "HeaderSelectChannelDownloadPath": "Selecione o Caminho para Download do Canal.", - "HeaderSelectChannelDownloadPathHelp": "Localize ou digite o local a ser usado para armazenamento do cache do canal. A pasta deve permitir escrita.", - "LabelChapterDownloaders": "Downloaders de cap\u00edtulos:", - "LabelChapterDownloadersHelp": "Habilite e classifique os seus downloaders de cap\u00edtulos preferidos em ordem de prioridade. Downloaders de menor prioridade s\u00f3 ser\u00e3o usados para preencher informa\u00e7\u00f5es que ainda n\u00e3o existam.", "HeaderFavoriteAlbums": "\u00c1lbuns Favoritos", "HeaderLatestChannelMedia": "\u00daltimos Itens de Canais", "ButtonOrganizeFile": "Organizar Arquivo", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "Executando na porta http {0}.", "LabelRunningOnPorts": "Executando na porta http {0} e porta https {1}.", "HeaderLatestFromChannel": "Mais recentes de {0}", - "HeaderCurrentSubtitles": "Legendas Atuais", "ButtonRemoteControl": "Controle Remoto", "HeaderLatestTvRecordings": "\u00daltimas Grava\u00e7\u00f5es", "LabelCurrentPath": "Local atual:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Remover item", "ConfirmDeleteItem": "Excluir este item o excluir\u00e1 do sistema de arquivos e tamb\u00e9m da biblioteca multim\u00e9dia. Deseja realmente continuar?", "ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca multim\u00e9dia. Deseja realmente continuar?", - "MessageValueNotCorrect": "O valor digitado n\u00e3o est\u00e1 correto. Por favor, tente novamente.", "MessageItemSaved": "Item salvo.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Por favor, aceite os termos de servi\u00e7o antes de continuar.", "OptionOff": "Desligado", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Imagem de fundo em falta.", "MissingLogoImage": "Imagem do logo em falta.", "MissingEpisode": "Epis\u00f3dio em falta.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Imagens de Fundo", "OptionImages": "Imagens", "OptionKeywords": "Palavras-chave", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifica\u00e7\u00f5es", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remover Localiza\u00e7\u00e3o dos ficheiros multim\u00e9dia", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Adicionar Pasta Multim\u00e9dia", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Excluir Pasta Multim\u00e9dia", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "As localiza\u00e7\u00f5es dos ficheiros multim\u00e9dia abaixo ser\u00e3o exclu\u00eddas de sua biblioteca Emby:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Deseja realmente excluir esta pasta multim\u00e9dia?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Localiza\u00e7\u00f5es dos ficheiros multim\u00e9dia", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "Veja os seus ficheiros adicionados recentemente, pr\u00f3ximos epis\u00f3dios e mais. Os c\u00edrculos verdes indicam quantos itens n\u00e3o reproduzidos voc\u00ea tem.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sincronize os seus ficheiros pessoais para seus dispositivos para assistir off-line.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sincronizar ficheiros multim\u00e9dia", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelar a tarefa de sincroniza\u00e7\u00e3o remover\u00e1 ficheiros sincronizados do dispositivo durante o pr\u00f3ximo processo de sincroniza\u00e7\u00e3o. Deseja realmente proceder?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Multim\u00e9dia", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Por favor selecione a programa\u00e7\u00e3o e tente novamente. Se n\u00e3o houver programa\u00e7\u00f5es dispon\u00edveis, verifique se o seu nome de utilizador, senha e c\u00f3digo postal est\u00e3o corretos.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Fechar e reproduzir o meu ficheiro multim\u00e9dia", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Adicionar Utilizador", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "\u00daltimos Filmes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby est\u00e1 desenhado para ajud\u00e1-lo a gerenciar sua biblioteca de multim\u00e9dia pessoal, como v\u00eddeos caseiros ou fotos. Por favor, leia nossos termos de uso. O uso de qualquer software Emby constitui a aceita\u00e7\u00e3o desses termos.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Adicionar Biblioteca de Multim\u00e9dia", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "Ocorreu um erro ao adicionar o local dos seus ficheiros. Por favor, assegure-se que o local \u00e9 valido e que o processo do Emby Server tenha acesso a essa localiza\u00e7\u00e3o.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sincronize os seus ficheiros para os seus smartphones e tablets para ter um acesso f\u00e1cil offline.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sincronize os seus ficheiros para a nuvem para fazer backup, guardar e converter de forma f\u00e1cil", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/ro.json b/dashboard-ui/strings/ro.json index b0468c54f3..84660d0a69 100644 --- a/dashboard-ui/strings/ro.json +++ b/dashboard-ui/strings/ro.json @@ -1,8 +1,6 @@ { - "LabelExit": "Iesire", - "LabelApiDocumentation": "Documentatie Api", - "LabelBrowseLibrary": "Rasfoieste Librarie", - "LabelConfigureServer": "Configureaza Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Anteriorul", "LabelFinish": "Termina", "LabelNext": "Urmatorul", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Numele tau:", "MoreUsersCanBeAddedLater": "Mai mul\u021bi utilizatori pot fi ad\u0103ugati mai t\u00e2rziu \u00een Tabloul de Bord.", "UserProfilesIntro": "Emby include sprijin pentru profile de utilizator, permi\u021b\u00e2nd fiec\u0103rui utilizator s\u0103 isi faca set\u0103rile de afi\u0219are proprii, playstate \u0219i control parental.", - "LabelWindowsService": "Serviciul Windows", - "AWindowsServiceHasBeenInstalled": "Un Serviciu Windows a fost intalat.", - "WindowsServiceIntro1": "Emby Server ruleaza in mod normal ca o aplicatie desktop cu o pictograma in bara de activitati, dar dac\u0103 prefera\u021bi s\u0103-l rulati ca un serviciu de fundal, acesta poate fi pornit de la windows services control panel.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "Asta e tot ce avem nevoie pentru moment. Emby a \u00eenceput colectarea de informa\u021bii despre biblioteca media. Verifica unele din aplica\u021biile noastre, \u0219i apoi face\u021bi clic pe Finalizare<\/b> pentru a vizualiza Tabloul de bord al Serverului <\/b>.", "LabelConfigureSettings": "Configureaza setari", - "LabelEnableAutomaticPortMapping": "Activeaza maparea automata a porturilor", - "LabelEnableAutomaticPortMappingHelp": "UPnP permite configurarea router-ului automat pentru acces u\u0219or la distan\u021b\u0103. Acest lucru nu poate lucra cu unele modele de router.", "HeaderTermsOfService": "Termeni de Utilizare Emby", "MessagePleaseAcceptTermsOfService": "V\u0103 rug\u0103m s\u0103 accepta\u021bi termenii de utilizare si Politica de confiden\u021bialitate \u00eenainte de a continua.", "OptionIAcceptTermsOfService": "Accept termenii de utilizare", "ButtonPrivacyPolicy": "Politica de confiden\u021bialitate", "ButtonTermsOfService": "Conditii de Utilizare", - "HeaderDeveloperOptions": "Obtiuni Dezvoltator", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Calea sursa a clientului Web:", - "LabelDashboardSourcePathHelp": "Dac\u0103 ruleaz\u0103 serverul de la surs\u0103, specifica\u021bi calea c\u0103tre directorul tabloul de bord. Toate fi\u0219ierele clientului web va fi servit de la aceast\u0103 loca\u021bie.", "ButtonConvertMedia": "Converteste media", "ButtonOrganize": "Organizeaza", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "Pentru a ad\u0103uga un utilizator care nu este listat, va trebui s\u0103 legati \u00eent\u00e2i contul lor la Emby Connect de la pagina lor de profil de utilizator.", "LabelPinCode": "Codul Pin:", "OptionHideWatchedContentFromLatestMedia": "Ascunde continutul vizualizat din Noutati Media", + "DeleteMedia": "Delete media", "HeaderSync": "Sincronizeaza", "ButtonOk": "Ok", "ButtonCancel": "Anuleaza", "ButtonExit": "Iesire", "ButtonNew": "Nou", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "Seriale TV", "HeaderAudio": "Muzica", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Pentru a accesa, introduceti va rog codul pin usor", "ButtonConfigurePinCode": "Configureaza codul pin", "RegisterWithPayPal": "Inregistreaza-te cu PayPal", - "HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita", "LabelSyncTempPath": "Cale fisier temporara", "LabelSyncTempPathHelp": "Specifica\u021bi un dosar de sincronizare personalizat de lucru. Media convertite create \u00een timpul procesului de sincronizare vor fi stocate aici.", "LabelCustomCertificatePath": "Calea catre certificatul personalizat:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Dac\u0103 este activat\u0103, fi\u0219ierele cu extensiile .rar \u0219i .zip vor fi detectate ca fi\u0219iere media.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Activati afisarea imbunatatita a filmelor", - "LabelEnableEnhancedMoviesHelp": "C\u00e2nd este activat, filmele vor fi afi\u0219ate ca dosare pentru a include trailere, figuranti, distributie si echipa, si alte tipuri de con\u021binut.", "HeaderSyncJobInfo": "Activitate de sincronizare", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Filme", @@ -84,7 +70,6 @@ "LabelContentType": "Tip continut:", "TitleScheduledTasks": "Sarcini Programate", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Adaugati dosar media", "LabelFolderType": "Tip dosar:", "LabelCountry": "Tara:", "LabelLanguage": "Limba:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Salvand posterele si metadatele direct in dosarele media vor fi puse intr-un loc in care pot fi usor editate.", "LabelDownloadInternetMetadata": "Descarca postere si metadatele dupa Internet", "LabelDownloadInternetMetadataHelp": "Serverul Emby poate descarca informatii despre continutul Dvs. media pentru a activa prezentari imbogatite.", - "TabPreferences": "Preferinte", "TabPassword": "Parola", "TabLibraryAccess": "Acces Librarie", "TabAccess": "Acces", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Activeaza accesul la toate librariile", "DeviceAccessHelp": "Aceasta se aplic\u0103 numai pentru dispozitive care pot fi identificate \u00een mod unic \u0219i nu va \u00eempiedica accesul browser. Filtrand accesul dispozitivelor utilizatorului va \u00eempiedica utilizarea noilor dispozitive p\u00e2n\u0103 c\u00e2nd nu au fost aprobate aici.", "LabelDisplayMissingEpisodesWithinSeasons": "Afiseaza episoadele lipsa din sezoane", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Afiseaza episoadele nedifuzate din sezoane", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Setari Playback Video", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Setari Playback", "LabelAudioLanguagePreference": "Preferinte limba audio:", "LabelSubtitleLanguagePreference": "Preferinte limba subtitrare:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "Ratie Aspect Recomandat 1:1.Doar fisiere JPG\/PNG.", "MessageNothingHere": "Nimic aici.", "MessagePleaseEnsureInternetMetadata": "Va rugam sa va asigurati ca descarcarea metadatelor dupa internet este activata.", - "TabSuggested": "Sugerat", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Recomandari", "TabLatest": "Cele mai noi", "TabUpcoming": "Urmeaza sa apara", "TabShows": "Seriale", "TabEpisodes": "Episoade", "TabGenres": "Genuri", - "TabPeople": "Oameni", "TabNetworks": "Retele TV", "HeaderUsers": "Utilizatori", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Scriitori", "OptionProducers": "Producatori", "HeaderResume": "Reluare", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Urmeaza", "NoNextUpItemsMessage": "Nu s-a gasit nimic. Incepe sa urmaresti seriale!", "HeaderLatestEpisodes": "Cele mai noi Episoade", @@ -185,6 +173,7 @@ "OptionPlayCount": "Contorizari rulari", "OptionDatePlayed": "Data Rulare", "OptionDateAdded": "Data Adaugare", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Bitrate Video", "OptionResumable": "Care poate fi continuat", "ScheduledTasksHelp": "Da-ti click pe o sarcina pentru a ajusta programarea", - "ScheduledTasksTitle": "Programul de Activitati", "TabMyPlugins": "Plugin-urile mele", "TabCatalog": "Catalog", "TitlePlugins": "Plugin-uri", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Cele mai noi Cantece", "HeaderRecentlyPlayed": "Rulate Recent", "HeaderFrequentlyPlayed": "Rulate Frecvent", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Tipul Video:", "OptionBluray": "Bluray", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Util pentru conturi private sau ascunse de administrator. Utilizatorul va trebui s\u0103 v\u0103 conecta\u021bi manual prin introducerea numelui de utilizator \u0219i parola.", "OptionDisableUser": "Dezactiva\u021bi acest utilizator", "OptionDisableUserHelp": "Dac\u0103 este dezactivat, serverul nu va permite nicio conexiune de la acest utilizator. Conexiunile existente vor fi terminate brusc.", - "HeaderAdvancedControl": "Control Avansat", "LabelName": "Nume:", "ButtonHelp": "Ajutor", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "Fara Subtitrare", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Trage imaginea aici", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Cele mai noi Filme", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/ru.json b/dashboard-ui/strings/ru.json index 62363f175f..5f281c52c4 100644 --- a/dashboard-ui/strings/ru.json +++ b/dashboard-ui/strings/ru.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u0412\u044b\u0445\u043e\u0434", - "LabelApiDocumentation": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API", - "LabelBrowseLibrary": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f \u043f\u043e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435", - "LabelConfigureServer": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 Emby", + "OptionAutomaticallyGroupSeriesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0430\u0437\u0431\u0440\u043e\u0441\u0430\u043d\u044b \u043f\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u043f\u0430\u043f\u043a\u0430\u043c \u0434\u0430\u043d\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438, \u0431\u0443\u0434\u0443\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043b\u0438\u0442\u044b \u0432 \u0435\u0434\u0438\u043d\u044b\u0439 \u0441\u0435\u0440\u0438\u0430\u043b.", + "OptionAutomaticallyGroupSeries": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043b\u0438\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0430\u0437\u0431\u0440\u043e\u0441\u0430\u043d\u044b \u043f\u043e \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u043c \u043f\u0430\u043f\u043a\u0430\u043c", "LabelPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435", "LabelFinish": "\u0413\u043e\u0442\u043e\u0432\u043e", "LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435", @@ -14,37 +12,28 @@ "LabelYourFirstName": "\u0412\u0430\u0448\u0435 \u0438\u043c\u044f:", "MoreUsersCanBeAddedLater": "\u041f\u043e\u0442\u043e\u043c \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0451 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0447\u0435\u0440\u0435\u0437 \u00ab\u041f\u0430\u043d\u0435\u043b\u044c\u00bb.", "UserProfilesIntro": "\u0412 Emby \u043d\u0430\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044f \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043e\u0431\u043b\u0430\u0434\u0430\u0442\u044c \u0441\u0432\u043e\u0438\u043c\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u043c\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435\u043c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f.", - "LabelWindowsService": "\u0421\u043b\u0443\u0436\u0431\u0430 Windows", - "AWindowsServiceHasBeenInstalled": "\u0421\u043b\u0443\u0436\u0431\u0430 Windows \u0431\u044b\u043b\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430.", - "WindowsServiceIntro1": "Emby Server \u043e\u0431\u044b\u0447\u043d\u043e \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043a\u0430\u043a \u043d\u0430\u0441\u0442\u043e\u043b\u044c\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043d\u043e \u0435\u0441\u043b\u0438 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0438\u0442\u0435\u043b\u044c\u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0430 \u043a\u0430\u043a \u0444\u043e\u043d\u043e\u0432\u043e\u0439 \u0441\u043b\u0443\u0436\u0431\u044b, \u0432\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u0435\u0433\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0447\u0435\u0440\u0435\u0437 \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u0441\u043b\u0443\u0436\u0431 Windows.", - "WindowsServiceIntro2": "\u041f\u0440\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0441\u043b\u0443\u0436\u0431\u044b Windows, \u043f\u043e\u043c\u043d\u0438\u0442\u0435, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0430 \u0435\u0451 \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f \u0440\u0430\u0431\u043e\u0442\u0430 \u0441\u043e \u0437\u043d\u0430\u0447\u043a\u043e\u043c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c \u043b\u043e\u0442\u043a\u0435, \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0432\u044b\u0439\u0442\u0438 \u0438\u0437 \u0437\u043d\u0430\u0447\u043a\u0430 \u0432 \u043b\u043e\u0442\u043a\u0435 \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043b\u0443\u0436\u0431\u0430 \u0437\u0430\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u0430. \u0421\u043b\u0443\u0436\u0431\u0443 \u0442\u0430\u043a\u0436\u0435 \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c, \u0432\u043e\u0439\u0434\u044f \u0441 \u043f\u0440\u0430\u0432\u0430\u043c\u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0430 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043e\u043c. \u041f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043a\u0430\u043a \u0441\u043b\u0443\u0436\u0431\u044b, \u0432\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0443\u0431\u0435\u0434\u0438\u0442\u044c\u0441\u044f, \u0447\u0442\u043e \u0443\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u0441\u043b\u0443\u0436\u0431\u044b \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0432\u0430\u0448\u0438\u043c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0430\u043c.", "WizardCompleted": "\u042d\u0442\u043e \u0432\u0441\u0451, \u0447\u0442\u043e \u043d\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0441\u0435\u0439\u0447\u0430\u0441. Emby \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u043f\u043e\u043a\u0430 \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043d\u0430\u0448\u0438\u043c\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438, \u0430 \u0437\u0430\u0442\u0435\u043c \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0413\u043e\u0442\u043e\u0432\u043e<\/b>, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u041f\u0430\u043d\u0435\u043b\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0430<\/b>.", "LabelConfigureSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b", - "LabelEnableAutomaticPortMapping": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432", - "LabelEnableAutomaticPortMappingHelp": "UPnP \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u0430 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u043d\u043e\u0433\u043e \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.", "HeaderTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 Emby", "MessagePleaseAcceptTermsOfService": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0435 \u0441 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 \u0438 \u041f\u043e\u043b\u0438\u0442\u0438\u043a\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.", "OptionIAcceptTermsOfService": "\u042f \u0441\u043e\u0433\u043b\u0430\u0448\u0430\u044e\u0441\u044c \u0441 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433", "ButtonPrivacyPolicy": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438...", "ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433...", - "HeaderDeveloperOptions": "\u041e\u043f\u0446\u0438\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432", - "OptionEnableWebClientResponseCache": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043a\u044d\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u0435\u0431-\u043e\u0442\u043a\u043b\u0438\u043a\u043e\u0432", - "OptionDisableForDevelopmentHelp": "\u041d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0439\u0442\u0435 \u0438\u0445, \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438, \u0434\u043b\u044f \u0432\u0435\u0431-\u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438.", - "OptionEnableWebClientResourceMinification": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043c\u0438\u043d\u0438\u043c\u0438\u0437\u0430\u0446\u0438\u044e \u0432\u0435\u0431-\u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432", - "LabelDashboardSourcePath": "\u041f\u0443\u0442\u044c \u043a \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0443 \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430:", - "LabelDashboardSourcePathHelp": "\u0415\u0441\u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442 \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432, \u0443\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 dashboard-ui. \u0412\u0441\u0435 \u0444\u0430\u0439\u043b\u044b \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u0434\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u044d\u0442\u043e\u0433\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f.", "ButtonConvertMedia": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "ButtonOrganize": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0442\u044c", "HeaderSupporterBenefits": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b Emby Premiere", "HeaderAddUser": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "LabelAddConnectSupporterHelp": "\u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0440\u0438\u0432\u044f\u0437\u0430\u0442\u044c \u0435\u0433\u043e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043a Emby Connect \u0441 \u0435\u0433\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f.", "LabelPinCode": "PIN-\u043a\u043e\u0434:", - "OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u044b\u0442\u044c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u0437 \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", + "OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u044b\u0442\u044c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u0437 \u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", + "DeleteMedia": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", - "ButtonOk": "\u041e\u041a", + "ButtonOk": "\u041e\u043a", "ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", "ButtonExit": "\u0412\u044b\u0445\u043e\u0434", "ButtonNew": "\u041d\u043e\u0432\u043e\u0435", + "OptionDev": "\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u0447\u043d\u0430\u044f", + "OptionBeta": "\u0411\u0435\u0442\u0430", "HeaderTaskTriggers": "\u0422\u0440\u0438\u0433\u0433\u0435\u0440\u044b \u0437\u0430\u0434\u0430\u0447\u0438", "HeaderTV": "\u0422\u0412", "HeaderAudio": "\u0410\u0443\u0434\u0438\u043e", @@ -59,42 +48,37 @@ "HeaderToAccessPleaseEnterEasyPinCode": "\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u0430\u0448 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 PIN-\u043a\u043e\u0434", "ButtonConfigurePinCode": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c PIN-\u043a\u043e\u0434", "RegisterWithPayPal": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal", - "HeaderEnjoyDayTrial": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e \u043d\u0430 14 \u0434\u043d\u0435\u0439", - "LabelSyncTempPath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0441 \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438 \u0444\u0430\u0439\u043b\u0430\u043c\u0438:", + "LabelSyncTempPath": "\u041f\u0443\u0442\u044c \u043a\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u043c\u0443 \u0444\u0430\u0439\u043b\u0443:", "LabelSyncTempPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c.", "LabelCustomCertificatePath": "\u041f\u0443\u0442\u044c \u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u043c\u0443 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443:", "LabelCustomCertificatePathHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0432\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b .pfx SSL-\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430. \u041f\u0440\u0438 \u0435\u0433\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441\u043e\u0437\u0434\u0430\u0441\u0442 \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.", "TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", "OptionDetectArchiveFilesAsMedia": "\u0424\u0430\u0439\u043b\u044b \u0430\u0440\u0445\u0438\u0432\u043e\u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u043a\u0430\u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "OptionDetectArchiveFilesAsMediaHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u044d\u0442\u043e\u0439 \u043e\u043f\u0446\u0438\u0438 \u0444\u0430\u0439\u043b\u044b \u0441 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043c\u0438 rar \u0438 zip \u0431\u0443\u0434\u0443\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432.", + "OptionDetectArchiveFilesAsMediaHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0430\u0439\u043b\u044b \u0441 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043c\u0438 .RAR \u0438 .ZIP \u0431\u0443\u0434\u0443\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u043a\u0430\u043a \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b.", "LabelEnterConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u042d-\u043f\u043e\u0447\u0442\u0430:", "LabelEnterConnectUserNameHelp": "\u042d\u0442\u043e - \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0432 \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b.", - "LabelEnableEnhancedMovies": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u043e\u0432", - "LabelEnableEnhancedMoviesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0438\u043b\u044c\u043c\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u043f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b, \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b, \u043a\u0442\u043e \u0441\u043d\u0438\u043c\u0430\u043b\u0441\u044f \u0438 \u043a\u0442\u043e \u0441\u043d\u0438\u043c\u0430\u043b, \u0438 \u0434\u0440\u0443\u0433\u043e\u0435 \u0441\u043e\u043f\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435.", "HeaderSyncJobInfo": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438", "FolderTypeMixed": "\u0421\u043c\u0435\u0448\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "FolderTypeMovies": "\u041a\u0438\u043d\u043e", "FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", "FolderTypePhotos": "\u0424\u043e\u0442\u043e", - "FolderTypeMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e", + "FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "FolderTypeGames": "\u0418\u0433\u0440\u044b", "FolderTypeBooks": "\u041b\u0438\u0442\u0435\u0440\u0430\u0442\u0443\u0440\u0430", "FolderTypeTvShows": "\u0422\u0412", - "FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u0443\u0435\u043c\u044b\u0439", + "FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u0443\u0435\u043c\u043e\u0435", "LabelContentType": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f:", "TitleScheduledTasks": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438", "HeaderSetupLibrary": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a", - "ButtonAddMediaFolder": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0443", "LabelFolderType": "\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438:", "LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:", "LabelLanguage": "\u042f\u0437\u044b\u043a:", - "LabelTimeLimitHours": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 (\u0447\u0430\u0441\u044b):", + "LabelTimeLimitHours": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u043c\u0438\u0442 (\u0447\u0430\u0441):", "HeaderPreferredMetadataLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445", "LabelSaveLocalMetadata": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a", "LabelSaveLocalMetadataHelp": "\u041f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0439 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0432 \u0442\u0430\u043a\u043e\u043c \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438, \u0433\u0434\u0435 \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043b\u0435\u0433\u043a\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u044c.", "LabelDownloadInternetMetadata": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430", "LabelDownloadInternetMetadataHelp": "\u0412 Emby Server \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043d\u0430\u0441\u044b\u0449\u0435\u043d\u043d\u044b\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f.", - "TabPreferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", "TabPassword": "\u041f\u0430\u0440\u043e\u043b\u044c", "TabLibraryAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435", "TabAccess": "\u0414\u043e\u0441\u0442\u0443\u043f", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u043c", "DeviceAccessHelp": "\u042d\u0442\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u0435\u043c\u044b \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e, \u0438 \u043d\u0435 \u0437\u0430\u043f\u0440\u0435\u0449\u0430\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u0441 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0430. \u0424\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043f\u0440\u0435\u043f\u044f\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0434\u043e \u0442\u0435\u0445 \u043f\u043e\u0440, \u043f\u043e\u043a\u0430 \u043e\u043d\u0438 \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442 \u0437\u0434\u0435\u0441\u044c \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438\u0435.", "LabelDisplayMissingEpisodesWithinSeasons": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "\u042d\u0442\u043e \u0442\u0430\u043a\u0436\u0435 \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u0434\u043b\u044f \u0422\u0412-\u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a \u043f\u0440\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 Emby Server.", "LabelUnairedMissingEpisodesWithinSeasons": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432", + "ImportMissingEpisodesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0438\u0445 \u044d\u043f\u0438\u0437\u043e\u0434\u0430\u0445 \u0431\u0443\u0434\u0435\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u0432 \u0432\u0430\u0448\u0443 \u0431\u0430\u0437\u0443 \u0434\u0430\u043d\u043d\u044b\u0445 Emby \u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432 \u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u043c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.", "HeaderVideoPlaybackSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0435\u043e", + "OptionDownloadInternetMetadataTvPrograms": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0434\u0430\u0447 \u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d\u043d\u044b\u0445 \u0432 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0435", "HeaderPlaybackSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f", "LabelAudioLanguagePreference": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e:", "LabelSubtitleLanguagePreference": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:", @@ -123,7 +110,7 @@ "OptionDefaultSubtitlesHelp": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u0444\u043b\u0430\u0433\u0430\u043c\u0438 \"\u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435\" \u0438 \"\u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435\" \u0432\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0445 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u042f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0443\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u043f\u0440\u0438 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u0438\u0445 \u043e\u043f\u0446\u0438\u0439.", "OptionOnlyForcedSubtitlesHelp": "\u0411\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u043a\u0430\u043a \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435.", "OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e.", - "OptionNoSubtitlesHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f.", + "OptionNoSubtitlesHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f.", "TabProfiles": "\u041f\u0440\u043e\u0444\u0438\u043b\u0438", "TabSecurity": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c", "ButtonAddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", @@ -134,25 +121,25 @@ "LabelNewPasswordConfirm": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f", "HeaderCreatePassword": "\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f", "LabelCurrentPassword": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c", - "LabelMaxParentalRating": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:", + "LabelMaxParentalRating": "\u041c\u0430\u043a\u0441. \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:", "MaxParentalRatingHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u0440\u044b\u0442\u043e \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", - "LibraryAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.", - "ChannelAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.", + "LibraryAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.", + "ChannelAccessHelp": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.", "ButtonDeleteImage": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043e\u043a", - "LabelSelectUsers": "\u0412\u044b\u0431\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439:", + "LabelSelectUsers": "\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438:", "ButtonUpload": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0443", "HeaderUploadNewImage": "\u0412\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430", "ImageUploadAspectRatioHelp": "\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u043e\u0435 \u0441\u043e\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0441\u0442\u043e\u0440\u043e\u043d - 1:1. \u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e JPG\/PNG.", "MessageNothingHere": "\u0417\u0434\u0435\u0441\u044c \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435\u0442.", "MessagePleaseEnsureInternetMetadata": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430.", - "TabSuggested": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0435", + "AlreadyPaidHelp1": "\u0415\u0441\u043b\u0438 \u0432\u044b \u0443\u0436\u0435 \u0437\u0430\u043f\u043b\u0430\u0442\u0438\u043b\u0438 \u0437\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u0441\u0442\u0430\u0440\u0448\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 Media Browser for Android, \u0432\u0430\u043c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u043f\u043b\u0430\u0442\u0438\u0442\u044c \u0441\u043d\u043e\u0432\u0430, \u0447\u0442\u043e\u0431\u044b \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041e\u041a, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043c \u044d-\u043f\u043e\u0447\u0442\u0443 \u043d\u0430 {0}, \u0438 \u043c\u044b \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0443\u0435\u043c \u044d\u0442\u043e \u0434\u043b\u044f \u0432\u0430\u0441.", + "AlreadyPaidHelp2": "\u0412\u044b \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u043b\u0438 Emby Premiere? \u041f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u0434\u0438\u0430\u043b\u043e\u0433, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 Emby Premiere \u0432 \u0432\u0430\u0448\u0435\u0439 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server \u043f\u043e \u0421\u043f\u0440\u0430\u0432\u043a\u0430 -> Emby Premiere, \u0438 \u043e\u043d\u0430 \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438.", "TabSuggestions": "\u041f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u043e\u0435", - "TabLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435", + "TabLatest": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435", "TabUpcoming": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435", "TabShows": "\u0422\u0412-\u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438", "TabEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b", "TabGenres": "\u0416\u0430\u043d\u0440\u044b", - "TabPeople": "\u041b\u044e\u0434\u0438", "TabNetworks": "\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u0438", "HeaderUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", "HeaderFilters": "\u0424\u0438\u043b\u044c\u0442\u0440\u044b", @@ -166,9 +153,10 @@ "OptionWriters": "\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0441\u0442\u044b", "OptionProducers": "\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440\u044b", "HeaderResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435", + "HeaderContinueWatching": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430", "HeaderNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435", "NoNextUpItemsMessage": "\u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0441\u0432\u043e\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u044b!", - "HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", + "HeaderLatestEpisodes": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", "HeaderPersonTypes": "\u0422\u0438\u043f\u044b \u043f\u0435\u0440\u0441\u043e\u043d:", "TabSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "TabAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", @@ -185,11 +173,12 @@ "OptionPlayCount": "\u041a\u043e\u043b. \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0439", "OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f", "OptionDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f", + "DateAddedValue": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f: {0}", "OptionAlbumArtist": "\u0418\u0441\u043f. \u0430\u043b\u044c\u0431\u043e\u043c\u0430", "OptionArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", "OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", "OptionTrackName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438", - "OptionCommunityRating": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0440\u0435\u0439\u0442\u0438\u043d\u0433", + "OptionCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430", "OptionNameSort": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435", "OptionFolderSort": "\u041f\u0430\u043f\u043a\u0438", "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", @@ -205,23 +194,21 @@ "OptionVideoBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432\u0438\u0434\u0435\u043e", "OptionResumable": "\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435", "ScheduledTasksHelp": "\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0437\u0430\u0434\u0430\u0447\u0435, \u0447\u0442\u043e\u0431\u044b \u0441\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0435\u0451 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435.", - "ScheduledTasksTitle": "\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a", "TabMyPlugins": "\u041c\u043e\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u044b", "TabCatalog": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433", "TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b", "HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f", "HeaderNowPlaying": " \u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435 \u0441\u0435\u0439\u0447\u0430\u0441", - "HeaderLatestAlbums": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b", - "HeaderLatestSongs": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", + "HeaderLatestAlbums": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b", + "HeaderLatestSongs": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "HeaderRecentlyPlayed": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e", - "HeaderFrequentlyPlayed": "\u0427\u0430\u0441\u0442\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u044b\u0435", - "DevBuildWarning": "\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u0447\u043d\u044b\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441\u044b\u0440\u044b\u043c\u0438. \u0412\u044b\u043f\u0443\u0441\u043a\u0430\u0435\u043c\u044b\u0435 \u0447\u0430\u0441\u0442\u043e, \u044d\u0442\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 \u043d\u0435 \u043f\u0440\u043e\u0445\u043e\u0434\u0438\u043b\u0438 \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435. \u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u0430\u0432\u0430\u0440\u0438\u0439\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c\u0441\u044f, \u0430 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u043e\u0431\u0449\u0435 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c.", + "HeaderFrequentlyPlayed": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435 \u0447\u0430\u0441\u0442\u043e", "LabelVideoType": "\u0422\u0438\u043f \u0432\u0438\u0434\u0435\u043e:", "OptionBluray": "BluRay", "OptionDvd": "DVD", "OptionIso": "ISO", "Option3D": "3D", - "LabelStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435:", + "LabelStatus": "\u0421\u0442\u0430\u0442\u0443\u0441:", "LabelLastResult": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442:", "OptionHasSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b", "OptionHasTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440", @@ -232,7 +219,7 @@ "TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b", "LabelArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438:", "LabelArtistsHelp": "\u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0442\u043e\u0447\u043a\u0443 \u0441 \u0437\u0430\u043f\u044f\u0442\u043e\u0439 (;)", - "HeaderLatestTrailers": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b", + "HeaderLatestTrailers": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b", "OptionHasSpecialFeatures": "\u0414\u043e\u043f. \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b", "OptionImdbRating": "\u041e\u0446\u0435\u043d\u043a\u0430 IMDb", "OptionParentalRating": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", @@ -268,7 +255,7 @@ "TabBecomeSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere", "TabEmbyPremiere": "Emby Premiere", "ProjectHasCommunity": "\u0423 Emby \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u0442\u0443\u0449\u0435\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.", - "CheckoutKnowledgeBase": "\u0417\u0430\u0433\u043b\u044f\u043d\u0438\u0442\u0435 \u0432 \u0411\u0430\u0437\u0443 \u0437\u043d\u0430\u043d\u0438\u0439 \u0434\u043b\u044f \u0434\u043e\u0441\u0442\u0438\u0436\u0435\u043d\u0438\u044f \u043d\u0430\u0438\u0431\u043e\u043b\u044c\u0448\u0435\u0439 \u043e\u0442\u0434\u0430\u0447\u0438 \u043e\u0442 Emby.", + "CheckoutKnowledgeBase": "\u0417\u0430\u0433\u043b\u044f\u043d\u0438\u0442\u0435 \u0432 \u0411\u0430\u0437\u0443 \u0437\u043d\u0430\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0432\u0435\u0441\u0442\u0438 \u0441\u043f\u0440\u0430\u0432\u043a\u0438 \u043f\u043e \u0434\u043e\u0441\u0442\u0438\u0436\u0435\u043d\u0438\u044e \u0432\u0430\u043c\u0438 \u043d\u0430\u0438\u0431\u043e\u043b\u044c\u0448\u0435\u0439 \u043e\u0442\u0434\u0430\u0447\u0438 \u043e\u0442 Emby.", "SearchKnowledgeBase": "\u0418\u0441\u043a\u0430\u0442\u044c \u0432 \u0411\u0430\u0437\u0435 \u0437\u043d\u0430\u043d\u0438\u0439", "VisitTheCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e", "VisitProjectWebsite": "\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0441\u0430\u0439\u0442 Emby", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "\u0426\u0435\u043b\u0435\u0441\u043e\u043e\u0431\u0440\u0430\u0437\u043d\u043e \u0434\u043b\u044f \u043b\u0438\u0447\u043d\u044b\u0445 \u0438\u043b\u0438 \u0441\u043a\u0440\u044b\u0442\u044b\u0445 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u0443\u0447\u0451\u0442\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0431\u0443\u0434\u0435\u0442 \u043d\u0443\u0436\u043d\u043e \u0432\u0445\u043e\u0434\u0438\u0442\u044c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0432\u0440\u0443\u0447\u043d\u0443\u044e, \u0432\u0432\u043e\u0434\u044f \u0441\u0432\u043e\u0451 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438 \u043f\u0430\u0440\u043e\u043b\u044c.", "OptionDisableUser": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "OptionDisableUserHelp": "\u041f\u0440\u0438 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438, \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u044e\u0442\u0441\u044f \u043b\u044e\u0431\u044b\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c. \u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0440\u0430\u0437\u043e\u0440\u0432\u0430\u043d\u044b.", - "HeaderAdvancedControl": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "LabelName": "\u0418\u043c\u044f:", "ButtonHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430...", "OptionAllowUserToManageServer": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c", @@ -285,13 +271,12 @@ "OptionAllowMediaPlayback": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", "OptionAllowBrowsingLiveTv": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u044d\u0444\u0438\u0440\u0443", "OptionAllowDeleteLibraryContent": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", - "OptionAllowManageLiveTv": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441 \u044d\u0444\u0438\u0440\u0430", + "OptionAllowManageLiveTv": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u0444\u0438\u0440\u043d\u044b\u043c\u0438 \u0437\u0430\u043f\u0438\u0441\u044f\u043c\u0438", "OptionAllowRemoteControlOthers": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438", "OptionAllowRemoteSharedDevices": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435", "OptionAllowRemoteSharedDevicesHelp": "DLNA-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u043c\u0438\u0441\u044f \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435, \u043f\u043e\u043a\u0430 \u043a\u0430\u043a\u043e\u0439-\u043b\u0438\u0431\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0447\u043d\u0451\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043c\u0438.", "OptionAllowLinkSharing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439", "OptionAllowLinkSharingHelp": "\u0412 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u0441\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f. \u041e\u0431\u0449\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0430 \u0441\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0438\u0441\u0442\u0435\u0447\u0451\u0442 \u0447\u0435\u0440\u0435\u0437 {0} \u0434\u043d(\u044f\/\u0435\u0439).", - "HeaderSharing": "\u0421\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f", "HeaderRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "OptionMissingTmdbId": "\u041d\u0435\u0442 TMDb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "\u041f\u0443\u0442\u0438", "TabServer": "\u0421\u0435\u0440\u0432\u0435\u0440", "TabTranscoding": "\u041f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430", - "TitleAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435", "OptionRelease": "\u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a", - "OptionBeta": "\u0431\u0435\u0442\u0430", - "OptionDev": "\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u0447\u043d\u0430\u044f", "LabelAllowServerAutoRestart": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439", "LabelAllowServerAutoRestartHelp": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0431\u0443\u0434\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u043f\u0435\u0440\u0438\u043e\u0434\u044b \u043f\u0440\u043e\u0441\u0442\u043e\u044f, \u043a\u043e\u0433\u0434\u0430 \u043d\u0438\u043a\u0430\u043a\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u043d\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u044b.", "LabelRunServerAtStartup": "\u0417\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440 \u043f\u0440\u0438 \u0441\u0442\u0430\u0440\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b", @@ -318,8 +300,8 @@ "LabelCachePath": "\u041f\u0443\u0442\u044c \u043a \u043a\u0435\u0448\u0443:", "LabelCachePathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432 \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0435 \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044f.", "LabelRecordingPath": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438:", - "LabelMovieRecordingPath": "\u041f\u0443\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0444\u0438\u043b\u044c\u043c\u043e\u0432 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e):", - "LabelSeriesRecordingPath": "\u041f\u0443\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e):", + "LabelMovieRecordingPath": "\u041f\u0443\u0442\u044c \u043a \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u043c\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e):", + "LabelSeriesRecordingPath": "\u041f\u0443\u0442\u044c \u043a \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u043c\u044b\u043c \u0441\u0435\u0440\u0438\u0430\u043b\u0430\u043c (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e):", "LabelRecordingPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439. \u0415\u0441\u043b\u0438 \u043f\u043e\u043b\u0435 \u043f\u0443\u0441\u0442\u043e, \u0442\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u0430 program data \u0441\u0435\u0440\u0432\u0435\u0440\u0430.", "LabelMetadataPath": "\u041f\u0443\u0442\u044c \u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c:", "LabelMetadataPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0439 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445.", @@ -330,11 +312,9 @@ "TabGames": "\u0418\u0433\u0440\u044b", "TabMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", "TabOthers": "\u0414\u0440\u0443\u0433\u0438\u0435", - "HeaderExtractChapterImagesFor": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u0434\u043b\u044f:", "OptionMovies": "\u0424\u0438\u043b\u044c\u043c\u044b", "OptionEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b", - "OptionOtherVideos": "\u0414\u0440\u0443\u0433\u043e\u0435 \u0432\u0438\u0434\u0435\u043e", - "TitleMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435", + "OptionOtherVideos": "\u0414\u0440\u0443\u0433\u0438\u0435 \u0432\u0438\u0434\u0435\u043e", "LabelFanartApiKey": "\u0418\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447:", "LabelFanartApiKeyHelp": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043a Fanart \u0431\u0435\u0437 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e API-\u043a\u043b\u044e\u0447\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0438\u0437 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043d\u044b\u0445 \u0441\u0432\u044b\u0448\u0435 7 \u0434\u043d\u0435\u0439 \u043d\u0430\u0437\u0430\u0434. \u0421 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u043c API-\u043a\u043b\u044e\u0447\u043e\u043c \u0441\u0440\u043e\u043a \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u043e 48 \u0447\u0430\u0441\u043e\u0432, \u0430 \u0435\u0441\u043b\u0438 \u0432\u044b \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0435\u0441\u044c VIP-\u0447\u043b\u0435\u043d\u043e\u043c Fanart, \u0442\u043e \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0441\u044f \u043f\u043e\u0447\u0442\u0438 \u0434\u043e 10 \u043c\u0438\u043d\u0443\u0442.", "ExtractChapterImagesHelp": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u0426\u041f \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u041e\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043f\u0440\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043d\u043e\u0432\u044b\u0445 \u0432\u0438\u0434\u0435\u043e, \u0430 \u0442\u0430\u043a\u0436\u0435, \u043a\u0430\u043a \u0437\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043d\u043e\u0447\u044c. \u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441\u044b \u043f\u0438\u043a.", @@ -350,15 +330,15 @@ "TabCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", "HeaderChannels": "\u041a\u0430\u043d\u0430\u043b\u044b", "TabRecordings": "\u0417\u0430\u043f\u0438\u0441\u0438", - "TabScheduled": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0435", "TabSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b", "TabFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435", "TabMyLibrary": "\u041c\u043e\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430", "ButtonCancelRecording": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c", - "LabelPrePaddingMinutes": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u043e\u0442\u0431\u0438\u0432\u043a\u0430, \u043c\u0438\u043d:", - "LabelPostPaddingMinutes": "\u041a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u043e\u0442\u0431\u0438\u0432\u043a\u0430, \u043c\u0438\u043d:", + "LabelStartWhenPossible": "\u041d\u0430\u0447\u0430\u0442\u044c, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:", + "LabelStopWhenPossible": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c, \u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:", + "MinutesBefore": "\u043c\u0438\u043d\u0443\u0442(\u0443\/\u044b) \u0434\u043e", + "MinutesAfter": "\u043c\u0438\u043d\u0443\u0442(\u0443\/\u044b) \u043f\u043e\u0441\u043b\u0435", "HeaderWhatsOnTV": "\u0412 \u044d\u0444\u0438\u0440\u0435", - "TabStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", "TabSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b", "ButtonRefreshGuideData": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430", "ButtonRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c", @@ -366,10 +346,9 @@ "OptionRecordOnAllChannels": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", "OptionRecordAnytime": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f", "OptionRecordOnlyNewEpisodes": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", - "HeaderRepeatingOptions": "\u041e\u043f\u0446\u0438\u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0430", "HeaderDays": "\u0414\u043d\u0438", "HeaderActiveRecordings": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", - "HeaderLatestRecordings": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", + "HeaderLatestRecordings": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", "HeaderAllRecordings": "\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", "ButtonPlay": "\u0412\u043e\u0441\u043f\u0440.", "ButtonEdit": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c", @@ -392,21 +371,21 @@ "OptionDownloadBannerImage": "\u0411\u0430\u043d\u043d\u0435\u0440", "OptionDownloadBackImage": "\u0417\u0430\u0434\u043d\u044f\u044f \u0441\u0442\u043e\u0440\u043e\u043d\u0430", "OptionDownloadArtImage": "\u0412\u0438\u043d\u044c\u0435\u0442\u043a\u0430", - "OptionDownloadPrimaryImage": "\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439", + "OptionDownloadPrimaryImage": "\u0413\u043e\u043b\u043e\u0432\u043d\u043e\u0439", "HeaderFetchImages": "\u041e\u0442\u0431\u043e\u0440\u043a\u0430 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432:", "HeaderImageSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432", "TabOther": "\u0414\u0440\u0443\u0433\u0438\u0435", "LabelMaxBackdropsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u043e\u0432 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:", - "LabelMaxScreenshotsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u043e\u0432:", + "LabelMaxScreenshotsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0441\u043d\u0438\u043c\u043a\u043e\u0432 \u044d\u043a\u0440\u0430\u043d\u0430 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:", "LabelMinBackdropDownloadWidth": "\u041c\u0438\u043d. \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u0430:", - "LabelMinScreenshotDownloadWidth": "\u041c\u0438\u043d. \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0441\u0430\u043a\u0440\u0438\u043d\u0448\u043e\u0442\u0430:", + "LabelMinScreenshotDownloadWidth": "\u041c\u0438\u043d. \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0441\u043d\u0438\u043c\u043a\u0430 \u044d\u043a\u0440\u0430\u043d\u0430:", "ButtonAddScheduledTaskTrigger": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u0440\u0438\u0433\u0433\u0435\u0440", "HeaderAddScheduledTaskTrigger": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430", "ButtonAdd": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c", - "LabelTriggerType": "\u0422\u0438\u043f \u0437\u0430\u0434\u0430\u0447\u0438:", + "LabelTriggerType": "\u0422\u0438\u043f \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430:", "OptionDaily": "\u0415\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e", "OptionWeekly": "\u0415\u0436\u0435\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u043e", - "OptionOnInterval": "\u0421 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u043d\u043e\u0441\u0442\u044c\u044e", + "OptionOnInterval": "\u0412 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0435", "OptionOnAppStartup": "\u041f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "OptionAfterSystemEvent": "\u041f\u043e \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0441\u043e\u0431\u044b\u0442\u0438\u044e", "LabelDay": "\u0414\u0435\u043d\u044c:", @@ -415,10 +394,9 @@ "OptionWakeFromSleep": "\u0412\u044b\u0445\u043e\u0434 \u0438\u0437 \u0441\u043f\u044f\u0449\u0435\u0433\u043e \u0440\u0435\u0436\u0438\u043c\u0430", "LabelEveryXMinutes": "\u041a\u0430\u0436\u0434\u044b\u0435:", "HeaderTvTuners": "\u0422\u044e\u043d\u0435\u0440\u044b", - "HeaderLatestGames": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0438\u0433\u0440\u044b", - "HeaderRecentlyPlayedGames": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0435\u043c\u044b\u0435 \u0438\u0433\u0440\u044b", - "TabGameSystems": "\u0418\u0433\u0440\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b", - "TitleMediaLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430", + "HeaderLatestGames": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0438\u0433\u0440\u044b", + "HeaderRecentlyPlayedGames": "C\u044b\u0433\u0440\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0438\u0433\u0440\u044b", + "TabGameSystems": "\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b", "TabFolders": "\u041f\u0430\u043f\u043a\u0438", "TabPathSubstitution": "\u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439", "LabelSeasonZeroDisplayName": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0435\u0437\u043e\u043d\u0430 0:", @@ -435,30 +413,21 @@ "HeaderThemeVideos": "\u0422\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0432\u0438\u0434\u0435\u043e", "HeaderThemeSongs": "\u0422\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "HeaderScenes": "\u0421\u0446\u0435\u043d\u044b", - "HeaderAwardsAndReviews": "\u041d\u0430\u0433\u0440\u0430\u0434\u044b \u0438 \u0440\u0435\u0446\u0435\u043d\u0437\u0438\u0438", + "HeaderAwardsAndReviews": "\u041d\u0430\u0433\u0440\u0430\u0434\u044b \u0438 \u043e\u0442\u0437\u044b\u0432\u044b", "HeaderSoundtracks": "\u0421\u0430\u0443\u043d\u0434\u0442\u0440\u0435\u043a\u0438", "HeaderMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e", "HeaderSpecialFeatures": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b", "HeaderCastCrew": "\u0421\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u0438 \u0441\u043d\u0438\u043c\u0430\u043b\u0438", "HeaderAdditionalParts": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0447\u0430\u0441\u0442\u0438", - "ButtonSplitVersionsApart": "\u0420\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438", + "ButtonSplitVersionsApart": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438 \u043f\u043e\u0440\u043e\u0437\u043d\u044c", "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440...", "LabelMissing": "\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442", - "LabelOffline": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e", - "PathSubstitutionHelp": "\u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u0441 \u043f\u0443\u0442\u0451\u043c, \u043f\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f. \u041f\u0440\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0438 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435, \u043e\u043d\u0438 \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e \u043f\u043e \u0441\u0435\u0442\u0438, \u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u044c \u0438\u0437\u0431\u0435\u0436\u0430\u0442\u044c \u0437\u0430\u0442\u0440\u0430\u0442\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u043d\u0430 \u0438\u0445 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044e \u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443.", - "HeaderFrom": "\u0421", - "HeaderTo": "\u041d\u0430", - "LabelFrom": "\u0421:", - "LabelTo": "\u041d\u0430:", - "LabelToHelp": "\u041f\u0440\u0438\u043c\u0435\u0440: \\\\MyServer\\Movies (\u043f\u0443\u0442\u044c, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0439 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c)", - "ButtonAddPathSubstitution": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438", - "OptionSpecialEpisode": "\u0421\u043f\u0435\u0446. \u044d\u043f\u0438\u0437\u043e\u0434\u044b", + "OptionSpecialEpisode": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434\u044b", "OptionMissingEpisode": "\u041d\u0435\u0442 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432", "OptionUnairedEpisode": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", "OptionEpisodeSortName": "\u0418\u043c\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438 \u044d\u043f\u0438\u0437\u043e\u0434\u0430", "OptionSeriesSortName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0435\u0440\u0438\u0430\u043b\u0430", "OptionTvdbRating": "\u041e\u0446\u0435\u043d\u043a\u0430 TVDb", - "EditCollectionItemsHelp": "\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0438\u043b\u0438 \u0438\u0437\u044b\u043c\u0430\u0439\u0442\u0435 \u043b\u044e\u0431\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b, \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u0430\u043b\u044c\u0431\u043e\u043c\u044b, \u043a\u043d\u0438\u0433\u0438 \u0438\u043b\u0438 \u0438\u0433\u0440\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u0438 \u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438.", "HeaderAddTitles": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0439", "LabelEnableDlnaPlayTo": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c DLNA-\u0444\u0443\u043d\u043a\u0446\u0438\u044e \u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u041d\u0430", "LabelEnableDlnaPlayToHelp": "\u0412 Emby \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u043d\u0443\u0442\u0440\u0438 \u0441\u0435\u0442\u0438, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043c\u0438.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u0438", "CustomDlnaProfilesHelp": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c, \u043d\u0430\u0437\u043d\u0430\u0447\u0430\u0435\u043c\u044b\u0439 \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c.", "SystemDlnaProfilesHelp": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f. \u041f\u0440\u0430\u0432\u043a\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b \u0432 \u043d\u043e\u0432\u043e\u043c \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u043e\u043c \u043f\u0440\u043e\u0444\u0438\u043b\u0435.", - "TitleDashboard": "\u041f\u0430\u043d\u0435\u043b\u044c", "TabHome": "\u0413\u043b\u0430\u0432\u043d\u043e\u0435", "TabInfo": "\u0418\u043d\u0444\u043e", "HeaderLinks": "\u0421\u0441\u044b\u043b\u043a\u0438", @@ -489,32 +457,31 @@ "LabelLocalHttpServerPortNumber": "\u041d\u043e\u043c\u0435\u0440 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e HTTP-\u043f\u043e\u0440\u0442\u0430:", "LabelLocalHttpServerPortNumberHelp": "TCP-\u043f\u043e\u0440\u0442, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0443 HTTP-\u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby.", "LabelPublicHttpPort": "\u041d\u043e\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e HTTP-\u043f\u043e\u0440\u0442\u0430:", - "LabelPublicHttpPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c HTTP-\u043f\u043e\u0440\u0442\u043e\u043c.", + "LabelPublicHttpPortHelp": "\u041d\u043e\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c HTTP-\u043f\u043e\u0440\u0442\u043e\u043c.", "LabelPublicHttpsPort": "\u041d\u043e\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e HTTPS-\u043f\u043e\u0440\u0442\u0430:", - "LabelPublicHttpsPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c HTTPS-\u043f\u043e\u0440\u0442\u043e\u043c.", + "LabelPublicHttpsPortHelp": "\u041d\u043e\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c HTTPS-\u043f\u043e\u0440\u0442\u043e\u043c.", "LabelEnableHttps": "\u041e\u0442\u0434\u0430\u0432\u0430\u0442\u044c HTTPS \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441\u0430", "LabelEnableHttpsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0441\u0435\u0440\u0432\u0435\u0440 \u043e\u0442\u0434\u0430\u0451\u0442 HTTPS URL Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0441\u0432\u043e\u0435\u0433\u043e \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441\u0430.", "LabelHttpsPort": "\u041d\u043e\u043c\u0435\u0440 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e HTTPS-\u043f\u043e\u0440\u0442\u0430:", "LabelHttpsPortHelp": "TCP-\u043f\u043e\u0440\u0442, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0443 HTTPS-\u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby.", - "LabelEnableAutomaticPortMap": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432", + "LabelEnableAutomaticPortMap": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432", "LabelEnableAutomaticPortMapHelp": "\u041f\u043e\u043f\u044b\u0442\u0430\u0442\u044c\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0440\u0442\u043e\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e UPnP. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.", "LabelExternalDDNS": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 \u0434\u043e\u043c\u0435\u043d:", "LabelExternalDDNSHelp": "\u0415\u0441\u043b\u0438 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 DNS, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0435\u0433\u043e \u0437\u0434\u0435\u0441\u044c. \u042d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438. \u042d\u0442\u043e \u043f\u043e\u043b\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f, \u043a\u043e\u0433\u0434\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u043c ssl-\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u043c.", "TitleAppSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "LabelMinResumePercentage": "\u041c\u0438\u043d. \u0441\u043e\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f, %:", - "LabelMaxResumePercentage": "\u041c\u0430\u043a\u0441. \u0441\u043e\u043e\u0442\u043d\u043e\u0448\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f, %:", + "LabelMinResumePercentage": "\u041c\u0438\u043d. \u0434\u043e\u043b\u044f \u0434\u043b\u044f \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f, %:", + "LabelMaxResumePercentage": "\u041c\u0430\u043a\u0441. \u0434\u043e\u043b\u044f \u0434\u043b\u044f \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f, %:", "LabelMinResumeDuration": "\u041c\u0438\u043d. \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0434\u043b\u044f \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f, \u0441:", "LabelMinResumePercentageHelp": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u044e\u0442\u0441\u044f \u043d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0434\u043e \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430", "LabelMaxResumePercentageHelp": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u0430\u0433\u0430\u044e\u0442\u0441\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u043c\u0438 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u043f\u0440\u0438 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u043f\u043e\u0441\u043b\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430", - "LabelMinResumeDurationHelp": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u044b \u043f\u0440\u0438 \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043c\u0435\u043d\u0435\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e", - "TitleAutoOrganize": "\u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a", + "LabelMinResumeDurationHelp": "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0439 \u043f\u0440\u0438 \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043c\u0435\u043d\u0435\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e", "TabActivityLog": "\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439", "TabSmartMatches": "\u0423\u043c\u043d\u044b\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f", - "TabSmartMatchInfo": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u0430\u0448\u0438\u043c\u0438 \"\u0443\u043c\u043d\u044b\u043c\u0438 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f\u043c\u0438\", \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0434\u0438\u0430\u043b\u043e\u0433\u0430 \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043a\u0430", + "TabSmartMatchInfo": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u0430\u0448\u0438\u043c\u0438 \"\u0443\u043c\u043d\u044b\u043c\u0438 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f\u043c\u0438\", \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u044b\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0434\u0438\u0430\u043b\u043e\u0433\u0430 \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043a\u0430", "HeaderName": "\u0418\u043c\u044f", "HeaderDate": "\u0414\u0430\u0442\u0430", "HeaderSource": "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a", - "HeaderStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435", + "HeaderStatus": "\u0421\u0442\u0430\u0442\u0443\u0441", "HeaderDestination": "\u041a\u0443\u0434\u0430", "HeaderProgram": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430", "HeaderClients": "\u041a\u043b\u0438\u0435\u043d\u0442\u044b", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "\u041f\u043e\u043c\u043e\u0433\u0438\u0442\u0435 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u044c \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0443\u044e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430, \u043f\u0443\u0442\u0435\u043c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u044f Emby Premiere. \u041d\u0435\u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u043b\u044f \u0432\u0441\u0435\u0445 \u0434\u043e\u0445\u043e\u0434\u043e\u0432 \u0431\u0443\u0434\u0435\u0442 \u0432\u043a\u043b\u0430\u0434\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u0434\u0440\u0443\u0433\u0438\u0435 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u044b\u0435 \u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0430, \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043c\u044b \u0437\u0430\u0432\u0438\u0441\u0438\u043c.", "DonationNextStep": "\u041f\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044e, \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u043a\u043b\u044e\u0447 Emby Premiere, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0432\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043f\u043e \u042d-\u043f\u043e\u0447\u0442\u0435.", "AutoOrganizeHelp": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u043c \u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432\u0430\u0448\u0430 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432, \u0430 \u0442\u0435 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044f\u0442\u0441\u044f \u0432 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445.", - "AutoOrganizeTvHelp": "\u041f\u0440\u0438 \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0438 \u0422\u0412-\u0444\u0430\u0439\u043b\u043e\u0432, \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0438\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0441\u0435\u0440\u0438\u0430\u043b\u044b. \u041d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0437\u0434\u0430\u043d\u044b \u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432.", "OptionEnableEpisodeOrganization": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432", "LabelWatchFolder": "\u041f\u0430\u043f\u043a\u0430 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044f:", "LabelWatchFolderHelp": "\u0421\u0435\u0440\u0432\u0435\u0440\u043e\u043c \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u043e\u043f\u0440\u043e\u0441 \u0434\u0430\u043d\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0438 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u00ab\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432\u00bb.", @@ -555,11 +521,10 @@ "OptionCopy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "OptionMove": "\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435", "LabelTransferMethodHelp": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u043e\u0432 \u0438\u0437 \u043f\u0430\u043f\u043a\u0438 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044f", - "HeaderLatestNews": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438", + "HeaderLatestNews": "\u0421\u0432\u0435\u0436\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438", "HeaderRunningTasks": "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u044e\u0449\u0438\u0435\u0441\u044f \u0437\u0430\u0434\u0430\u0447\u0438", "HeaderActiveDevices": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", "HeaderPendingInstallations": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438", - "HeaderServerInformation": "\u041e \u0441\u0435\u0440\u0432\u0435\u0440\u0435", "ButtonRestartNow": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e", "ButtonRestart": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c", "ButtonShutdown": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443", @@ -570,8 +535,8 @@ "ServerUpToDate": "Emby Server - \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d", "LabelComponentsUpdated": "\u0411\u044b\u043b\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0438\u043b\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b:", "MessagePleaseRestartServerToFinishUpdating": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u0435\u0440\u0432\u0435\u0440, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439.", - "LabelDownMixAudioScale": "\u041a\u043e\u043c\u043f\u0435\u043d\u0441\u0430\u0446\u0438\u044f \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438:", - "LabelDownMixAudioScaleHelp": "\u041a\u043e\u043c\u043f\u0435\u043d\u0441\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0437\u0432\u0443\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438. \u0417\u0430\u0434\u0430\u0439\u0442\u0435 1, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043c\u0435\u043d\u044f\u0442\u044c \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0443\u0440\u043e\u0432\u043d\u044f.", + "LabelDownMixAudioScale": "\u041a\u043e\u044d\u0444\u0444\u0438\u0446\u0438\u0435\u043d\u0442 \u0443\u0441\u0438\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438:", + "LabelDownMixAudioScaleHelp": "\u041a\u043e\u044d\u0444\u0444\u0438\u0446\u0438\u0435\u043d\u0442 \u043a\u043e\u043c\u043f\u0435\u043d\u0441\u0438\u0440\u0443\u044e\u0449\u0435\u0433\u043e \u0443\u0441\u0438\u043b\u0435\u043d\u0438\u044f \u0437\u0432\u0443\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043d\u0438\u0436\u0430\u044e\u0449\u0435\u043c \u0434\u043e \u0441\u0442\u0435\u0440\u0435\u043e \u043c\u0438\u043a\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438. \u0417\u0430\u0434\u0430\u0439\u0442\u0435 1, \u0447\u0442\u043e\u0431\u044b \u043d\u0435 \u043c\u0435\u043d\u044f\u0442\u044c \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0443\u0440\u043e\u0432\u043d\u044f.", "ButtonLinkKeys": "\u041f\u0435\u0440\u0435\u043d\u0435\u0441\u0442\u0438 \u043a\u043b\u044e\u0447", "LabelOldSupporterKey": "\u0421\u0442\u0430\u0440\u044b\u0439 \u043a\u043b\u044e\u0447 Emby Premiere", "LabelNewSupporterKey": "\u041d\u043e\u0432\u044b\u0439 \u043a\u043b\u044e\u0447 Emby Premiere", @@ -588,40 +553,19 @@ "MessageInvalidKey": "\u041a\u043b\u044e\u0447 Emby Premiere \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043b\u0438 \u043d\u0435\u0432\u0435\u0440\u0435\u043d.", "ErrorMessageInvalidKey": "\u0414\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u043b\u044e\u0431\u043e\u0433\u043e \u043f\u0440\u0435\u043c\u0438\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0442\u0430\u043a\u0436\u0435 \u0438\u043c\u0435\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0443 Emby Premiere.", "HeaderDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", - "TabPlayTo": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u043d\u0430", "LabelEnableDlnaServer": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c DLNA-\u0441\u0435\u0440\u0432\u0435\u0440", "LabelEnableDlnaServerHelp": "UPnP-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c \u0432 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u043d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0438 \u043f\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e Emby \u0438 \u0435\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.", "LabelEnableBlastAliveMessages": "\u0411\u043e\u043c\u0431\u0430\u0440\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438", - "LabelEnableBlastAliveMessagesHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435, \u0435\u0441\u043b\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u043d\u0435 \u0434\u043e\u0441\u0442\u0438\u0433\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0434\u0451\u0436\u043d\u044b\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c \u0434\u0440\u0443\u0433\u0438\u043c\u0438 UPnP-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0441\u0435\u0442\u0438.", + "LabelEnableBlastAliveMessagesHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435, \u0435\u0441\u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0430\u0434\u0451\u0436\u043d\u043e \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0434\u0440\u0443\u0433\u0438\u043c\u0438 UPnP \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0432 \u0441\u0435\u0442\u0438.", "LabelBlastMessageInterval": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438, \u0441", - "LabelBlastMessageIntervalHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445 \u043c\u0435\u0436\u0434\u0443 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.", + "LabelBlastMessageIntervalHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442 \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445 \u043c\u0435\u0436\u0434\u0443 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.", "LabelDefaultUser": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:", - "LabelDefaultUserHelp": "\u041f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0447\u044c\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445. \u041f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043f\u0440\u043e\u0444\u0438\u043b\u0438.", - "TitleDlna": "DLNA", + "LabelDefaultUserHelp": "\u041f\u0440\u0435\u0434\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0447\u044c\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445. \u041f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439.", "HeaderServerSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0430", "HeaderRequireManualLogin": "\u0420\u0443\u0447\u043d\u043e\u0439 \u0432\u0432\u043e\u0434 \u0438\u043c\u0435\u043d\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f:", "HeaderRequireManualLoginHelp": "\u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0434\u043b\u044f Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u0430 \u0432\u0445\u043e\u0434\u0430 \u0441 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.", "OptionOtherApps": "\u0414\u0440\u0443\u0433\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", "OptionMobileApps": "\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "HeaderNotificationList": "\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043e\u043f\u0446\u0438\u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438.", - "NotificationOptionApplicationUpdateAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "NotificationOptionApplicationUpdateInstalled": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e", - "NotificationOptionPluginUpdateInstalled": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e", - "NotificationOptionPluginInstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d", - "NotificationOptionPluginUninstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u0443\u0434\u0430\u043b\u0451\u043d", - "NotificationOptionVideoPlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f-\u043d\u043e", - "NotificationOptionAudioPlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0430\u0443\u0434\u0438\u043e \u0437\u0430\u043f-\u043d\u043e", - "NotificationOptionGamePlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0438\u0433\u0440\u044b \u0437\u0430\u043f-\u043d\u043e", - "NotificationOptionVideoPlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u043e\u0441\u0442-\u043d\u043e", - "NotificationOptionAudioPlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0430\u0443\u0434\u0438\u043e \u043e\u0441\u0442-\u043d\u043e", - "NotificationOptionGamePlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0438\u0433\u0440\u044b \u043e\u0441\u0442-\u043d\u043e", - "NotificationOptionTaskFailed": "\u0421\u0431\u043e\u0439 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438", - "NotificationOptionInstallationFailed": "\u0421\u0431\u043e\u0439 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438", - "NotificationOptionNewLibraryContent": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e", - "NotificationOptionCameraImageUploaded": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0430 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u043e\u0442\u0441\u043d\u044f\u0442\u043e\u0433\u043e \u0441 \u043a\u0430\u043c\u0435\u0440\u044b", - "NotificationOptionUserLockedOut": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d", - "HeaderSendNotificationHelp": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043f\u0430\u043f\u043a\u0443 \u0412\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0432 Emby. \u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043e\u043f\u0446\u0438\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0438\u0437 \u0432\u043a\u043b\u0430\u0434\u043a\u0438 \u0423\u0441\u043b\u0443\u0433\u0438.", - "NotificationOptionServerRestartRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0430", "LabelNotificationEnabled": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435", "LabelMonitorUsers": "\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043e\u0442:", "LabelSendNotificationToUsers": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0434\u043b\u044f:", @@ -662,12 +606,10 @@ "ButtonPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435...", "LabelGroupMoviesIntoCollections": "\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0438\u043b\u044c\u043c\u044b \u0432\u043d\u0443\u0442\u0440\u044c \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439", "LabelGroupMoviesIntoCollectionsHelp": "\u041f\u0440\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438 \u0441\u043f\u0438\u0441\u043a\u0430 \u0444\u0438\u043b\u044c\u043c\u043e\u0432, \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b, \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u043a \u043e\u0434\u043d\u043e\u0439 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 \u0441\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442.", - "NotificationOptionPluginError": "\u0421\u0431\u043e\u0439 \u043f\u043b\u0430\u0433\u0438\u043d\u0430", "ButtonVolumeUp": "\u041f\u043e\u0432\u044b\u0441\u0438\u0442\u044c \u0433\u0440\u043e\u043c\u043a\u043e\u0441\u0442\u044c", "ButtonVolumeDown": "\u041f\u043e\u043d\u0438\u0437\u0438\u0442\u044c \u0433\u0440\u043e\u043c\u043a\u043e\u0441\u0442\u044c", - "HeaderLatestMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", + "HeaderLatestMedia": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "OptionNoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432", - "OptionSpecialFeatures": "\u0414\u043e\u043f. \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b", "HeaderCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", "LabelProfileCodecsHelp": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u0430\u043f\u044f\u0442\u043e\u0439. \u041f\u043e\u043b\u0435 \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043a\u043e\u0434\u0435\u043a\u043e\u0432.", "LabelProfileContainersHelp": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u0430\u043f\u044f\u0442\u043e\u0439. \u041f\u043e\u043b\u0435 \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u043e\u0432.", @@ -713,7 +655,7 @@ "LabelIdentificationFieldHelp": "\u041f\u043e\u0434\u0441\u0442\u0440\u043e\u043a\u0430 \u0431\u0435\u0437 \u0443\u0447\u0451\u0442\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430, \u043b\u0438\u0431\u043e \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435.", "HeaderProfileServerSettingsHelp": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442 \u0442\u0435\u043c, \u043a\u0430\u043a Emby Server \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443.", "LabelMaxBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c:", - "LabelMaxBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432 \u0441\u0440\u0435\u0434\u0430\u0445 \u0441 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e, \u043b\u0438\u0431\u043e, \u0435\u0441\u043b\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443 - \u0435\u0433\u043e \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435.", + "LabelMaxBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0434\u043b\u044f \u0441\u0440\u0435\u0434 \u0441 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e, \u0438\u043b\u0438 \u0435\u0441\u043b\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0430\u043b\u0430\u0433\u0430\u0435\u0442 \u0435\u0433\u043e \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u0435\u043b.", "LabelMaxStreamingBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438:", "LabelMaxStreamingBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.", "LabelMaxChromecastBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0434\u043b\u044f Chromecast:", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f.", "LabelDisplayPluginsFor": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 \u0434\u043b\u044f:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u0430", "LabelSeriesNamePlain": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0435\u0440\u0438\u0430\u043b\u0430", "ValueSeriesNamePeriod": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435.\u0441\u0435\u0440\u0438\u0430\u043b\u0430", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u0430", "HeaderTypeText": "\u0412\u0432\u043e\u0434 \u0442\u0435\u043a\u0441\u0442\u0430", "LabelTypeText": "\u0422\u0435\u043a\u0441\u0442", - "HeaderSearchForSubtitles": "\u041f\u043e\u0438\u0441\u043a \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432", - "MessageNoSubtitleSearchResultsFound": "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u0440\u0438 \u043f\u043e\u0438\u0441\u043a\u0435.", "TabDisplay": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435", "TabLanguages": "\u042f\u0437\u044b\u043a\u0438", "TabAppSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438 \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.", "LabelEnableBackdropsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0437\u0430\u0434\u043d\u0438\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0444\u043e\u043d\u043e\u043c \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u043f\u0440\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.", "HeaderHomePage": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", - "HeaderSettingsForThisDevice": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", "OptionAuto": "\u0410\u0432\u0442\u043e", "OptionYes": "\u0414\u0430", "OptionNo": "\u041d\u0435\u0442", @@ -803,65 +741,32 @@ "LabelHomePageSection2": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b 2:", "LabelHomePageSection3": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b 3:", "LabelHomePageSection4": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b 4:", - "OptionMyMediaButtons": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 (\u043a\u043d\u043e\u043f\u043a\u0438)", "OptionMyMedia": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", "OptionMyMediaSmall": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 (\u043a\u043e\u043c\u043f\u0430\u043a\u0442\u043d\u043e)", - "OptionResumablemedia": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u043e\u0435", - "OptionLatestMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435", - "OptionLatestChannelMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u043a\u0430\u043d\u0430\u043b\u043e\u0432", - "HeaderLatestChannelItems": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u043a\u0430\u043d\u0430\u043b\u043e\u0432", + "OptionResumablemedia": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435", + "OptionLatestMedia": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", + "OptionLatestChannelMedia": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", + "HeaderLatestChannelItems": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", "OptionNone": "\u041d\u0438\u0447\u0435\u0433\u043e", - "HeaderLiveTv": "\u0422\u0412-\u044d\u0444\u0438\u0440", + "HeaderLiveTv": "\u042d\u0444\u0438\u0440", "HeaderReports": "\u041e\u0442\u0447\u0451\u0442\u044b", "HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b", "OptionDefaultSort": "\u0423\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435", - "OptionCommunityMostWatchedSort": "\u0427\u0430\u0449\u0435 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u043c\u044b\u0435", "TabNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435", - "PlaceholderUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "HeaderBecomeProjectSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere", - "MessageNoMovieSuggestionsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b \u043d\u0435 \u0438\u043c\u0435\u044e\u0442\u0441\u044f. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0444\u0438\u043b\u044c\u043c\u044b, \u0438 \u0442\u043e\u0433\u0434\u0430 \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u043d\u0430\u0437\u0430\u0434, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0438.", + "MessageNoMovieSuggestionsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0444\u0438\u043b\u044c\u043c\u043e\u0432 \u043d\u0435 \u0438\u043c\u0435\u044e\u0442\u0441\u044f. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0444\u0438\u043b\u044c\u043c\u044b, \u0430 \u0437\u0430\u0442\u0435\u043c \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0438.", "MessageNoCollectionsAvailable": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043e\u0431\u043e\u0441\u043e\u0431\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432, \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u0430\u043b\u044c\u0431\u043e\u043c\u043e\u0432, \u043a\u043d\u0438\u0433 \u0438 \u0438\u0433\u0440. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \"+\", \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u043a \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439.", "MessageNoPlaylistsAvailable": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b (\u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f) \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0438\u0437 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432\u043e \u0441\u043f\u0438\u0441\u043a\u0438, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435, \u0437\u0430\u0442\u0435\u043c \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u00bb.", "MessageNoPlaylistItemsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442 \u043f\u0443\u0441\u0442.", - "ButtonDismiss": "\u041f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u0442\u044c", "ButtonEditOtherUserPreferences": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c, \u0440\u0438\u0441\u0443\u043d\u043e\u043a \u0438 \u043b\u0438\u0447\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.", "LabelChannelStreamQuality": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u0430:", - "LabelChannelStreamQualityHelp": "\u041f\u0440\u0438 \u043d\u0438\u0437\u043a\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u0438 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043f\u043b\u0430\u0432\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.", + "LabelChannelStreamQualityHelp": "\u0412 \u0441\u0440\u0435\u0434\u0435 \u0441 \u043d\u0438\u0437\u043a\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e, \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442 \u043f\u043b\u0430\u0432\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.", "OptionBestAvailableStreamQuality": "\u041d\u0430\u0438\u043b\u0443\u0447\u0448\u0435\u0435 \u0438\u043c\u0435\u044e\u0449\u0435\u0435\u0441\u044f", "ChannelSettingsFormHelp": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: Trailers \u0438\u043b\u0438 Vimeo) \u0438\u0437 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432.", - "ViewTypePlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b", "ViewTypeMovies": "\u041a\u0438\u043d\u043e", "ViewTypeTvShows": "\u0422\u0412", "ViewTypeGames": "\u0418\u0433\u0440\u044b", "ViewTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", - "ViewTypeMusicGenres": "\u0416\u0430\u043d\u0440\u044b", - "ViewTypeMusicArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438", - "ViewTypeBoxSets": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", - "ViewTypeChannels": "\u041a\u0430\u043d\u0430\u043b\u044b", - "ViewTypeLiveTV": "\u042d\u0444\u0438\u0440", - "ViewTypeLiveTvNowPlaying": "\u0412 \u044d\u0444\u0438\u0440\u0435", - "ViewTypeLatestGames": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0438\u0433\u0440\u044b", - "ViewTypeRecentlyPlayedGames": "C\u044b\u0433\u0440\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e", - "ViewTypeGameFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435", - "ViewTypeGameSystems": "\u0418\u0433\u0440\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b", - "ViewTypeGameGenres": "\u0416\u0430\u043d\u0440\u044b", - "ViewTypeTvResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435", - "ViewTypeTvNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435", - "ViewTypeTvLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435", - "ViewTypeTvShowSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b", - "ViewTypeTvGenres": "\u0416\u0430\u043d\u0440\u044b", - "ViewTypeTvFavoriteSeries": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0441\u0435\u0440\u0438\u0430\u043b\u044b", - "ViewTypeTvFavoriteEpisodes": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", - "ViewTypeMovieResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435", - "ViewTypeMovieLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435", - "ViewTypeMovieMovies": "\u0424\u0438\u043b\u044c\u043c\u044b", - "ViewTypeMovieCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", - "ViewTypeMovieFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435", - "ViewTypeMovieGenres": "\u0416\u0430\u043d\u0440\u044b", - "ViewTypeMusicLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435", - "ViewTypeMusicPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b", - "ViewTypeMusicAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", - "ViewTypeMusicAlbumArtists": "\u0418\u0441\u043f-\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430", "HeaderOtherDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "ViewTypeMusicSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "ViewTypeMusicFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435", @@ -874,7 +779,7 @@ "OptionDisplayAdultContent": "\u041e\u0442\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u044c \u00ab\u0432\u0437\u0440\u043e\u0441\u043b\u043e\u0435\u00bb \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "OptionLibraryFolders": "\u041c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", "TitleRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435", - "OptionLatestTvRecordings": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", + "OptionLatestTvRecordings": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", "LabelProtocolInfo": "\u041e \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0435:", "LabelProtocolInfoHelp": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043f\u0440\u0438 \u043e\u0442\u043a\u043b\u0438\u043a\u0435 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u044b GetProtocolInfo \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.", "TabNfoSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b NFO", @@ -886,7 +791,7 @@ "LabelKodiMetadataSaveImagePaths": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0443\u0442\u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 NFO-\u0444\u0430\u0439\u043b\u043e\u0432", "LabelKodiMetadataSaveImagePathsHelp": "\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f, \u0435\u0441\u043b\u0438 \u0438\u043c\u0435\u043d\u0430 \u0444\u0430\u0439\u043b\u043e\u0432 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u043d\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u044f\u0449\u0438\u043c \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0430\u043c Kodi.", "LabelKodiMetadataEnablePathSubstitution": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439", - "LabelKodiMetadataEnablePathSubstitutionHelp": "\u0412\u043a\u043b\u044e\u0447\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u043a \u0440\u0438\u0441\u0443\u043d\u043a\u0430\u043c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044b \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.", + "LabelKodiMetadataEnablePathSubstitutionHelp": "\u0412\u043a\u043b\u044e\u0447\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u043a \u0440\u0438\u0441\u0443\u043d\u043a\u0430\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.", "LabelKodiMetadataEnablePathSubstitutionHelp2": "\u0421\u043c. \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439", "OptionDisplayChannelsInline": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043a\u0430\u043d\u0430\u043b\u044b \u043a\u0430\u043a \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", "OptionDisplayChannelsInlineHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043a\u0430\u043d\u0430\u043b\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0440\u044f\u0434\u043e\u043c \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u043c\u0438. \u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432\u043d\u0443\u0442\u0440\u0438 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0438 \u00ab\u041a\u0430\u043d\u0430\u043b\u044b\u00bb.", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "\u041f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432, \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u044c extrafanart \u0438 extrathumbs \u0434\u043b\u044f \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0438 \u0441 \u043e\u0431\u043e\u043b\u043e\u0447\u043a\u043e\u0439 Kodi.", "TabServices": "\u0423\u0441\u043b\u0443\u0433\u0438", "TabLogs": "\u0416\u0443\u0440\u043d\u0430\u043b\u044b", - "HeaderServerLogFiles": "\u0424\u0430\u0439\u043b\u044b \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430:", "TabBranding": "\u041e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435", "HeaderBrandingHelp": "\u041f\u043e\u0434\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435 Emby \u0432 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u0438 \u0441 \u043f\u043e\u0442\u0440\u0435\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0432\u0430\u0448\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u0438\u043b\u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438.", "LabelLoginDisclaimer": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435:", @@ -908,7 +812,7 @@ "LabelLogs": "\u0416\u0443\u0440\u043d\u0430\u043b\u044b:", "LabelMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435:", "LabelTranscodingTemporaryFiles": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438:", - "HeaderLatestMusic": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 \u043c\u0443\u0437\u044b\u043a\u0438", + "HeaderLatestMusic": "\u041d\u043e\u0432\u0435\u0439\u0448\u0430\u044f \u043c\u0443\u0437\u044b\u043a\u0430", "HeaderBranding": "\u041e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435", "HeaderApiKeys": "API-\u043a\u043b\u044e\u0447\u0438", "HeaderApiKeysHelp": "\u0412\u043d\u0435\u0448\u043d\u0438\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f API-\u043a\u043b\u044e\u0447 \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043a Emby Server. \u041a\u043b\u044e\u0447\u0438 \u0432\u044b\u0434\u0430\u044e\u0442\u0441\u044f \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435 \u0441 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e Emby \u0438\u043b\u0438 \u043a\u043b\u044e\u0447 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e \u0432\u0440\u0443\u0447\u043d\u0443\u044e.", @@ -917,7 +821,6 @@ "HeaderDevice": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e", "HeaderUser": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c", "HeaderDateIssued": "\u0414\u0430\u0442\u0430 \u0432\u044b\u0434\u0430\u0447\u0438", - "LabelChapterName": "\u0421\u0446\u0435\u043d\u0430 {0}", "HeaderHttpHeaders": "HTTP-\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438", "HeaderIdentificationHeader": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0434\u043b\u044f \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u044f", "LabelValue": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435:", @@ -926,10 +829,9 @@ "OptionRegex": "\u0420\u0435\u0433. \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435", "OptionSubstring": "\u041f\u043e\u0434\u0441\u0442\u0440\u043e\u043a\u0430", "TabView": "\u0412\u0438\u0434", - "TabSort": "\u0421\u043e\u0440\u0442-\u043a\u0430", "TabFilter": "\u0424\u0438\u043b\u044c\u0442\u0440\u044b", "ButtonView": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c", - "LabelPageSize": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:", + "LabelPageSize": "\u041b\u0438\u043c\u0438\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:", "LabelPath": "\u041f\u0443\u0442\u044c:", "LabelView": "\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435:", "TabUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "HTTP", "OptionProtocolHls": "\u041f\u0440\u044f\u043c\u0430\u044f \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044f \u043f\u043e HTTP (HLS)", "LabelContext": "\u041a\u043e\u043d\u0442\u0435\u043a\u0441\u0442:", - "OptionContextStreaming": "\u0422\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044f", - "OptionContextStatic": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", "TabPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b", "ButtonClose": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", "LabelAllLanguages": "\u0412\u0441\u0435 \u044f\u0437\u044b\u043a\u0438", @@ -956,7 +856,6 @@ "LabelImage": "\u0420\u0438\u0441\u0443\u043d\u043e\u043a:", "HeaderImages": "\u0420\u0438\u0441\u0443\u043d\u043a\u0438", "HeaderBackdrops": "\u0417\u0430\u0434\u043d\u0438\u043a\u0438", - "HeaderScreenshots": "\u0421\u043d\u0438\u043c\u043a\u0438 \u044d\u043a\u0440\u0430\u043d\u0430", "HeaderAddUpdateImage": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435\/\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u0430", "LabelDropImageHere": "\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0440\u0438\u0441\u0443\u043d\u043e\u043a \u0441\u044e\u0434\u0430", "LabelJpgPngOnly": "\u0422\u043e\u043b\u044c\u043a\u043e JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435", "OptionUnidentified": "\u041d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435", "OptionMissingParentalRating": "\u041d\u0435\u0442 \u0432\u043e\u0437\u0440. \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438", - "OptionStub": "\u0417\u0430\u0433\u043b\u0443\u0448\u043a\u0430", "OptionSeason0": "\u0421\u0435\u0437\u043e\u043d 0", "LabelReport": "\u041e\u0442\u0447\u0451\u0442:", "OptionReportSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", @@ -991,34 +889,21 @@ "OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", "ButtonMore": "\u0415\u0449\u0451", "HeaderActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f", - "ScheduledTaskStartedWithName": "{0} - \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430", - "ScheduledTaskCancelledWithName": "{0} - \u0431\u044b\u043b\u0430 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430", - "ScheduledTaskCompletedWithName": "{0} - \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430", - "ScheduledTaskFailed": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430", "PluginInstalledWithName": "{0} - \u0431\u044b\u043b\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "PluginUpdatedWithName": "{0} - \u0431\u044b\u043b\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e", "PluginUninstalledWithName": "{0} - \u0431\u044b\u043b\u043e \u0443\u0434\u0430\u043b\u0435\u043d\u043e", - "ScheduledTaskFailedWithName": "{0} - \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430", - "DeviceOnlineWithName": "{0} - \u043f\u043e\u0434\u043a\u043b. \u0443\u0441\u0442-\u043d\u043e", "UserOnlineFromDevice": "{0} - \u043f\u043e\u0434\u043a\u043b. \u0441 {1} \u0443\u0441\u0442-\u043d\u043e", - "DeviceOfflineWithName": "{0} - \u043f\u043e\u0434\u043a\u043b. \u0440\u0430\u0437\u044a-\u043d\u043e", "UserOfflineFromDevice": "{0} - \u043f\u043e\u0434\u043a\u043b. \u0441 {1} \u0440\u0430\u0437\u044a-\u043d\u043e", - "SubtitlesDownloadedForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u0434\u043b\u044f {0} \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u043b\u0438\u0441\u044c", - "SubtitleDownloadFailureForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043a {0} \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c", "LabelRunningTimeValue": "\u0412\u0440\u0435\u043c\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f: {0}", "LabelIpAddressValue": "IP-\u0430\u0434\u0440\u0435\u0441: {0}", "UserLockedOutWithName": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u0431\u044b\u043b \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d", "UserConfigurationUpdatedWithName": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u043f\u043e\u043b\u044c\u0437-\u043b\u044f {0} \u0431\u044b\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430", "UserCreatedWithName": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d", - "UserPasswordChangedWithName": "\u041f\u0430\u0440\u043e\u043b\u044c \u043f\u043e\u043b\u044c\u0437-\u043b\u044f {0} \u0431\u044b\u043b \u0438\u0437\u043c\u0435\u043d\u0451\u043d", "UserDeletedWithName": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u0431\u044b\u043b \u0443\u0434\u0430\u043b\u0451\u043d", "MessageServerConfigurationUpdated": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0431\u044b\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430", "MessageNamedServerConfigurationUpdatedWithValue": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 (\u0440\u0430\u0437\u0434\u0435\u043b {0}) \u0431\u044b\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430", "MessageApplicationUpdated": "Emby Server \u0431\u044b\u043b \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d", "UserDownloadingItemWithValues": "{0} \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 {1}", - "UserStartedPlayingItemWithValues": "{0} - \u0432\u043e\u0441\u043f\u0440. \u00ab{1}\u00bb \u0437\u0430\u043f-\u043d\u043e", - "UserStoppedPlayingItemWithValues": "{0} - \u0432\u043e\u0441\u043f\u0440. \u00ab{1}\u00bb \u043e\u0441\u0442-\u043d\u043e", - "AppDeviceValues": "\u041f\u0440\u0438\u043b.: {0}, \u0423\u0441\u0442\u0440.: {1}", "ProviderValue": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a: {0}", "HeaderRecentActivity": "\u041d\u0435\u0434\u0430\u0432\u043d\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f", "HeaderPeople": "\u041b\u044e\u0434\u0438", @@ -1051,27 +936,18 @@ "LabelAirDate": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430:", "LabelAirTime:": "\u0412\u0440\u0435\u043c\u044f \u044d\u0444\u0438\u0440\u0430:", "LabelRuntimeMinutes": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c, \u043c\u0438\u043d:", - "LabelRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430, $:", - "HeaderAlternateEpisodeNumbers": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u044b\u0435 \u043d\u043e\u043c\u0435\u0440\u0430 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432", "HeaderSpecialEpisodeInfo": "\u041e \u0441\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434\u0435", - "HeaderExternalIds": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b:", - "LabelAirsBeforeSeason": "\u0421\u0435\u0437\u043e\u043d airs_before:", - "LabelAirsAfterSeason": "\u0421\u0435\u0437\u043e\u043d airs_after:", - "LabelAirsBeforeEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434 airs_before:", "LabelDisplaySpecialsWithinSeasons": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0441\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0442\u0435\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432, \u043a\u043e\u0433\u0434\u0430 \u043e\u043d\u0438 \u0432\u044b\u0445\u043e\u0434\u0438\u043b\u0438 \u0432 \u044d\u0444\u0438\u0440", - "HeaderCountries": "\u0421\u0442\u0440\u0430\u043d\u044b", "HeaderGenres": "\u0416\u0430\u043d\u0440\u044b", "HeaderPlotKeywords": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0441\u044e\u0436\u0435\u0442\u0430", "HeaderStudios": "\u0421\u0442\u0443\u0434\u0438\u0438", "HeaderTags": "\u0422\u0435\u0433\u0438", - "MessageLeaveEmptyToInherit": "\u041d\u0435 \u0437\u0430\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0438\u043b\u0438 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.", "OptionNoTrailer": "\u0411\u0435\u0437 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430", "ButtonPurchase": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438", "OptionActor": "\u0410\u043a\u0442\u0451\u0440", "OptionComposer": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440", "OptionDirector": "\u0420\u0435\u0436\u0438\u0441\u0441\u0451\u0440", "OptionProducer": "\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440", - "OptionWriter": "\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0441\u0442", "LabelAirDays": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430:", "LabelAirTime": "\u0412\u0440\u0435\u043c\u044f \u044d\u0444\u0438\u0440\u0430:", "HeaderMediaInfo": "\u041e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", @@ -1159,8 +1035,7 @@ "HeaderPendingInvitations": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f", "TabParentalControl": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c", "HeaderAccessSchedule": "\u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u0430", - "HeaderAccessScheduleHelp": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u0430, \u0447\u0442\u043e\u0431\u044b \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0432 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u0435 \u0447\u0430\u0441\u044b.", - "ButtonAddSchedule": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435", + "HeaderAccessScheduleHelp": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u0430, \u0447\u0442\u043e\u0431\u044b \u043b\u0438\u043c\u0438\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u044b\u043c\u0438 \u0447\u0430\u0441\u0430\u043c\u0438.", "LabelAccessDay": "\u0414\u0435\u043d\u044c \u043d\u0435\u0434\u0435\u043b\u0438:", "LabelAccessStart": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f:", "LabelAccessEnd": "\u041a\u043e\u043d\u0435\u0447\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f:", @@ -1184,8 +1059,8 @@ "HeaderDashboardUserPassword": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043b\u0438\u0447\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.", "HeaderLibraryAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435", "HeaderChannelAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u043a\u0430\u043d\u0430\u043b\u0430\u043c", - "HeaderLatestItems": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b", - "LabelSelectLastestItemsFolders": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432 \u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0445", + "HeaderLatestItems": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b", + "LabelSelectLastestItemsFolders": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438\u0437 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432 \u0432 \u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0445", "HeaderShareMediaFolders": "\u041e\u0431\u0449\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0430\u043c", "MessageGuestSharingPermissionsHelp": "\u041c\u043d\u043e\u0433\u0438\u0445 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u0432 \u0438\u0437\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e \u0434\u043b\u044f \u0433\u043e\u0441\u0442\u0435\u0439 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f, \u043d\u043e \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u043f\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438.", "HeaderInvitations": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f", @@ -1199,7 +1074,7 @@ "HeaderYears": "\u0413\u043e\u0434\u044b", "HeaderBlockItemsWithNoRating": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u0438\u043b\u0438 \u043d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438:", "LabelBlockContentWithTags": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u0442\u0435\u0433\u0430\u043c\u0438:", - "LabelEnableSingleImageInDidlLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c \u0434\u043e \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430", + "LabelEnableSingleImageInDidlLimit": "\u041b\u0438\u043c\u0438\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u043e \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430", "LabelEnableSingleImageInDidlLimitHelp": "\u041d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043d\u0435 \u043e\u0442\u0440\u0438\u0441\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e, \u0435\u0441\u043b\u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u044b \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432\u043d\u0443\u0442\u0440\u0438 DIDL.", "TabActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f", "TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", @@ -1212,15 +1087,14 @@ "TabSyncJobs": "\u0417\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438", "HeaderThisUserIsCurrentlyDisabled": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u044d\u0442\u043e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d", "MessageReenableUser": "\u0421\u043c. \u043d\u0438\u0436\u0435 \u0434\u043b\u044f \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438", - "LabelEnableInternetMetadataForTvPrograms": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0434\u043b\u044f:", - "OptionTVMovies": "\u0422\u0412-\u0444\u0438\u043b\u044c\u043c\u044b", + "OptionTVMovies": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b \u0438 \u0444\u0438\u043b\u044c\u043c\u044b", "HeaderUpcomingMovies": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u043e\u0432\u044b\u0435", "HeaderUpcomingSports": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u0441\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u044b\u0435", "HeaderUpcomingPrograms": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438", "ButtonMoreItems": "\u0415\u0449\u0451...", "OptionEnableTranscodingThrottle": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0440\u043e\u0441\u0441\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", "OptionEnableTranscodingThrottleHelp": "\u041f\u0440\u0438 \u0434\u0440\u043e\u0441\u0441\u0435\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u043c\u0438\u043d\u0438\u043c\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043d\u0430 \u0426\u041f \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.", - "LabelUploadSpeedLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0438, \u041c\u0431\u0438\u0442\/\u0441", + "LabelUploadSpeedLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0438, \u041c\u0431\u0438\u0442\/\u0441", "OptionAllowSyncTranscoding": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430", "HeaderPlayback": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", "OptionAllowAudioPlaybackTranscoding": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0430\u0443\u0434\u0438\u043e, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430", @@ -1228,16 +1102,15 @@ "OptionAllowVideoPlaybackRemuxing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u0435\u0437 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438", "OptionAllowMediaPlaybackTranscodingHelp": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u043f\u043e\u043d\u044f\u0442\u043d\u044b\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u0430\u043c\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0447\u0442\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043d\u0435 \u043f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.", "TabStreaming": "\u0422\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044f", - "LabelRemoteClientBitrateLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438, \u041c\u0431\u0438\u0442\/\u0441:", - "LabelRemoteClientBitrateLimitHelp": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0441\u0435\u0442\u0435\u0432\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432. \u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0446\u0435\u043b\u0435\u0441\u043e\u043e\u0431\u0440\u0430\u0437\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0430\u0442\u044c \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438, \u0447\u0435\u043c \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435.", - "LabelConversionCpuCoreLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u044f\u0434\u0435\u0440 \u0426\u041f:", + "LabelRemoteClientBitrateLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438, \u041c\u0431\u0438\u0442\/\u0441:", + "LabelRemoteClientBitrateLimitHelp": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0440\u0435\u0434\u0435\u043b \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0441\u0435\u0442\u0435\u0432\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432. \u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0446\u0435\u043b\u0435\u0441\u043e\u043e\u0431\u0440\u0430\u0437\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0430\u0442\u044c \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438, \u0447\u0435\u043c \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435.", + "LabelConversionCpuCoreLimit": "\u041b\u0438\u043c\u0438\u0442 \u044f\u0434\u0435\u0440 \u0426\u041f:", "LabelConversionCpuCoreLimitHelp": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0447\u0438\u0441\u043b\u043e \u044f\u0434\u0435\u0440 \u0426\u041f, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u044b \u0432\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f.", "OptionEnableFullSpeedConversion": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u0441\u043a\u043e\u0440\u043e\u0441\u0442\u043d\u043e\u0435 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435", "OptionEnableFullSpeedConversionHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0435 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u043f\u0440\u0438 \u043d\u0438\u0437\u043a\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438, \u0447\u0442\u043e\u0431\u044b \u043c\u0438\u043d\u0438\u043c\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432.", "HeaderPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b", "HeaderViewStyles": "\u0421\u0442\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a", "TabPhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438", - "TabVideos": "\u0412\u0438\u0434\u0435\u043e", "HeaderWelcomeToEmby": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby", "EmbyIntroMessage": "\u0421 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Emby \u0443\u0434\u043e\u0431\u043d\u043e \u0442\u0440\u0430\u043d\u0441\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0430 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u044b, \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u044b \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b, \u043c\u0443\u0437\u044b\u043a\u0443 \u0438 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441 Emby Server.", "ButtonSkip": "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c", @@ -1257,7 +1130,6 @@ "HeaderColumns": "\u041a\u043e\u043b\u043e\u043d\u043a\u0438", "ButtonReset": "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c", "OptionEnableExternalVideoPlayers": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0438\u0435 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0438 \u0432\u0438\u0434\u0435\u043e", - "ButtonUnlockGuide": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u043b\u0435\u0433\u0438\u0434", "LabelEnableFullScreen": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430", "LabelEmail": "\u042d-\u043f\u043e\u0447\u0442\u0430:", "LabelUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "HeaderShortOverview": "\u041a\u0440\u0430\u0442\u043a\u043e\u0435 \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435", "HeaderType": "\u0422\u0438\u043f", - "HeaderSeverity": "\u0412\u0430\u0436\u043d\u043e\u0441\u0442\u044c", "OptionReportActivities": "\u0416\u0443\u0440\u043d\u0430\u043b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439", "HeaderTunerDevices": "\u0422\u044e\u043d\u0435\u0440\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", "HeaderAddDevice": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", @@ -1285,13 +1156,12 @@ "GuideProviderSelectListings": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0435\u0440\u0435\u0447\u043d\u0435\u0439", "GuideProviderLogin": "\u0412\u0445\u043e\u0434", "LabelLineup": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f:", - "MessageTunerDeviceNotListed": "\u0412\u0430\u0448\u0435\u0433\u043e \u0442\u044e\u043d\u0435\u0440\u0430 \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435? \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0443\u0441\u043b\u0443\u0433 \u0434\u043b\u044f \u0431\u043e\u043b\u044c\u0448\u0435\u0433\u043e \u0447\u0438\u0441\u043b\u0430 \u043e\u043f\u0446\u0438\u0439 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412.", + "MessageTunerDeviceNotListed": "\u0412\u0430\u0448\u0435\u0433\u043e \u0442\u044e\u043d\u0435\u0440\u0430 \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435? \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0443\u0441\u043b\u0443\u0433 \u0434\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u044d\u0444\u0438\u0440\u043d\u044b\u0445 \u043e\u043f\u0446\u0438\u0439.", "LabelImportOnlyFavoriteChannels": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043d\u0430\u043b\u0430\u043c\u0438 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u043c\u0438 \u043a\u0430\u043a \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435", "ImportFavoriteChannelsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043a\u0430\u043d\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u044b \u043a\u0430\u043a \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u043d\u0430 \u0442\u044e\u043d\u0435\u0440\u043d\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435.", "ButtonRepeat": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c", "LabelEnableThisTuner": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0442\u044e\u043d\u0435\u0440", "LabelEnableThisTunerHelp": "\u0421\u043d\u0438\u043c\u0438\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438\u0442\u044c \u0438\u043c\u043f\u043e\u0440\u0442 \u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0438\u0437 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u044e\u043d\u0435\u0440\u0430.", - "HeaderUnidentified": "\u041d\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043e", "HeaderImagePrimary": "\u0413\u043e\u043b\u043e\u0432\u043d\u043e\u0439", "HeaderImageBackdrop": "\u0417\u0430\u0434\u043d\u0438\u043a", "HeaderImageLogo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f", @@ -1310,13 +1180,13 @@ "HeaderUpcomingForKids": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u0434\u0435\u0442\u0441\u043a\u0438\u0435", "HeaderSetupLiveTV": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044d\u0444\u0438\u0440\u0430", "LabelTunerType": "\u0422\u0438\u043f \u0442\u044e\u043d\u0435\u0440\u0430:", - "HelpMoreTunersCanBeAdded": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0442\u044e\u043d\u0435\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432\u043d\u0443\u0442\u0440\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.", + "HelpMoreTunersCanBeAdded": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0442\u044e\u043d\u0435\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.", "AdditionalLiveTvProvidersCanBeInstalledLater": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u044d\u0444\u0438\u0440\u0430 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.", "HeaderSetupTVGuide": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430", "LabelDataProvider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0434\u0430\u043d\u043d\u044b\u0445:", "OptionSendRecordingsToAutoOrganize": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432\u043d\u0443\u0442\u0440\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u043f\u0430\u043f\u043e\u043a \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432 \u0432 \u0434\u0440\u0443\u0433\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u0445.", - "HeaderDefaultPadding": "\u041e\u0442\u0431\u0438\u0432\u043a\u0438 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e", - "OptionEnableRecordingSubfolders": "\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u043f\u043e\u0434\u043f\u0430\u043f\u043e\u043a \u0434\u043b\u044f \u0442\u0430\u043a\u0438\u0445 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439, \u043a\u0430\u043a \u0421\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u044b\u0435, \u0414\u0435\u0442\u0441\u043a\u0438\u0435 \u0438 \u0442.\u043f.", + "HeaderDefaultRecordingSettings": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u043f\u0438\u0441\u0438", + "OptionEnableRecordingSubfolders": "\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0421\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u044b\u0435, \u0414\u0435\u0442\u0441\u043a\u0438\u0435 \u0438 \u0442.\u043f.", "HeaderSubtitles": "\u0421\u0443\u0431\u0442.", "HeaderVideos": "\u0412\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b", "LabelHardwareAccelerationType": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435:", @@ -1331,24 +1201,21 @@ "HeadersFolders": "\u041f\u0430\u043f\u043a\u0438", "LabelDisplayName": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:", "HeaderNewRecording": "\u041d\u043e\u0432\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c", - "ButtonAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435", "LabelCodecIntrosPath": "\u041f\u0443\u0442\u044c \u043a \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c \u043a\u043e\u0434\u0435\u043a\u0430:", "LabelCodecIntrosPathHelp": "\u041f\u0430\u043f\u043a\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b. \u0415\u0441\u043b\u0438 \u0438\u043c\u044f \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0438 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0432\u0438\u0434\u0435\u043e\u043a\u043e\u0434\u0435\u043a\u0443, \u0430\u0443\u0434\u0438\u043e\u043a\u043e\u0434\u0435\u043a\u0443, \u0430\u0443\u0434\u0438\u043e\u043f\u0440\u043e\u0444\u0438\u043b\u044e \u0438\u043b\u0438 \u0442\u0435\u0433\u0443, \u0442\u043e \u043e\u043d\u0430 \u0431\u0443\u0434\u0435\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c\u0441\u044f \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.", "OptionConvertRecordingsToStreamingFormat": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0443\u0434\u043e\u0431\u043d\u044b\u0439 \u0434\u043b\u044f \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u0444\u043e\u0440\u043c\u0430\u0442", "OptionConvertRecordingsToStreamingFormatHelp": "\u0417\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432 MP4 \u0438\u043b\u0438 MKV \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u043d\u043e\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043d\u0430 \u0432\u0430\u0448\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445.", "FeatureRequiresEmbyPremiere": "\u0414\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.", "FileExtension": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430", - "OptionReplaceExistingImages": "\u0417\u0430\u043c\u0435\u043d\u0430 \u0438\u043c\u0435\u044e\u0449\u0438\u0445\u0441\u044f \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432", "OptionPlayNextEpisodeAutomatically": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u044d\u043f\u0438\u0437\u043e\u0434 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438", - "OptionDownloadImagesInAdvance": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0437\u0430\u0440\u0430\u043d\u0435\u0435", + "OptionDownloadImagesInAdvance": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0437\u0430\u0431\u043b\u0430\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e", "SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.", - "OptionDownloadImagesInAdvanceHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u044e\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0435 \u043e\u0442 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0432\u0441\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0437\u0430\u0440\u0430\u043d\u0435\u0435, \u043a\u043e\u0433\u0434\u0430 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043d\u043e\u0432\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435.", + "OptionDownloadImagesInAdvanceHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u044e\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0440\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0435 \u043e\u0442 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0443\u044e \u043e\u043f\u0446\u0438\u044e, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0432\u0441\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0437\u0430\u0431\u043b\u0430\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e, \u043f\u0440\u0438 \u0438\u043c\u043f\u043e\u0440\u0442\u0435 \u043d\u043e\u0432\u044b\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u043c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.", "Users": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", "Delete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c", "Password": "\u041f\u0430\u0440\u043e\u043b\u044c", "DeleteImage": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043e\u043a", "MessageThankYouForSupporting": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Emby", - "MessagePleaseSupportProject": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 Emby", "DeleteImageConfirmation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0440\u0438\u0441\u0443\u043d\u043e\u043a?", "FileReadCancelled": "\u0427\u0442\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0431\u044b\u043b\u043e \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e.", "FileNotFound": "\u0424\u0430\u0439\u043b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d.", @@ -1365,7 +1232,7 @@ "PasswordMatchError": "\u041f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0442\u044c", "UninstallPluginHeader": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430", "UninstallPluginConfirmation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c {0}?", - "NoPluginConfigurationMessage": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u0435 \u043d\u0435\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0434\u043b\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438.", + "NoPluginConfigurationMessage": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u0435 \u043d\u0435\u0442 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u0434\u043b\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438.", "NoPluginsInstalledMessage": "\u041d\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u0433\u0438\u043d\u0430.", "BrowsePluginCatalogMessage": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u0438\u043c\u0435\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u043c\u0438.", "HeaderNewApiKey": "\u041d\u043e\u0432\u044b\u0439 API-\u043a\u043b\u044e\u0447", @@ -1383,18 +1250,14 @@ "LabelTag": "\u0422\u0435\u0433:", "ButtonSelectView": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "HeaderSelectDate": "\u0412\u044b\u0431\u043e\u0440 \u0434\u0430\u0442\u044b", - "ServerUpdateNeeded": "\u0414\u0430\u043d\u043d\u044b\u0439 Emby Server \u043d\u0443\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0432 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0438. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u0432\u0435\u0440\u0441\u0438\u044e, \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 {0}", + "ServerUpdateNeeded": "\u0414\u0430\u043d\u043d\u044b\u0439 Emby Server \u043d\u0443\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0432 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0438. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u0432\u0435\u0436\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e, \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 {0}", "LabelFromHelp": "\u041f\u0440\u0438\u043c\u0435\u0440: {0} (\u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435)", "HeaderMyMedia": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "LabelAutomaticUpdateLevel": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f:", - "LabelAutomaticUpdateLevelForPlugins": "\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432:", "ErrorLaunchingChromecast": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 Chromecast. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u043a \u0431\u0435\u0441\u043f\u0440\u043e\u0432\u043e\u0434\u043d\u043e\u0439 \u0441\u0435\u0442\u0438.", "MessageErrorLoadingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 Emby Premiere. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", - "MessageLinkYourSupporterKey": "\u041f\u0440\u0438\u0432\u044f\u0436\u0438\u0442\u0435 \u0432\u0430\u0448 \u043a\u043b\u044e\u0447 Emby Premiere \u0441 \u0432\u043f\u043b\u043e\u0442\u044c \u0434\u043e {0} \u0447\u043b\u0435\u043d\u0430\u043c\u0438 Emby Connect, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u043a\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c:", "HeaderConfirmRemoveUser": "\u0418\u0437\u044a\u044f\u0442\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", - "MessageConfirmRemoveConnectSupporter": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u0437\u044a\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b Emby Premiere \u0441 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f?", - "ValueTimeLimitSingleHour": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438: 1 \u0447\u0430\u0441", - "ValueTimeLimitMultiHour": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438: {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432)", + "ValueTimeLimitSingleHour": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u043c\u0438\u0442: 1 \u0447\u0430\u0441", + "ValueTimeLimitMultiHour": "\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u043c\u0438\u0442: {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432)", "PluginCategoryGeneral": "\u041e\u0431\u0449\u0438\u0435", "PluginCategoryContentProvider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f", "PluginCategoryScreenSaver": "\u0425\u0440\u0430\u043d\u0438\u0442\u0435\u043b\u0438 \u044d\u043a\u0440\u0430\u043d\u0430", @@ -1403,13 +1266,13 @@ "PluginCategorySocialIntegration": "\u0421\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0435\u0442\u0438", "PluginCategoryNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", "PluginCategoryMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "PluginCategoryLiveTV": "\u0422\u0412-\u044d\u0444\u0438\u0440", + "PluginCategoryLiveTV": "\u042d\u0444\u0438\u0440", "PluginCategoryChannel": "\u041a\u0430\u043d\u0430\u043b\u044b", "HeaderSearch": "\u041f\u043e\u0438\u0441\u043a", "ValueDateCreated": "\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f: {0}", "LabelArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", "LabelMovie": "\u0424\u0438\u043b\u044c\u043c", - "LabelMusicVideo": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e", + "LabelMusicVideo": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e", "LabelEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434", "Series": "\u0421\u0435\u0440\u0438\u0430\u043b", "LabelStopping": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430", @@ -1429,14 +1292,13 @@ "ButtonScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a...", "MessageItemsAdded": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b", "HeaderSelectCertificatePath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443", - "ConfirmMessageScheduledTaskButton": "\u042d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043e\u0431\u044b\u0447\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u0430\u043a \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0438 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043b\u044e\u0431\u043e\u0433\u043e \u0443\u0441\u0438\u043b\u0438\u044f \u0432\u0440\u0443\u0447\u043d\u0443\u044e. \u0427\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443, \u0449(\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a\u0443.", "HeaderSupporterBenefit": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u043f\u0440\u0435\u043c\u0438\u0443\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u044b, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0438 \u0442.\u0434. {0}\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435{1}.", "HeaderWelcomeToProjectServerDashboard": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server", "HeaderWelcomeToProjectWebClient": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby", "ButtonTakeTheTour": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f", "HeaderWelcomeBack": "\u0417\u0430\u0445\u043e\u0434\u0438\u0442\u0435 \u0435\u0449\u0451!", "ButtonTakeTheTourToSeeWhatsNew": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c\u0438", - "MessageNoSyncJobsFound": "\u0417\u0430\u0434\u0430\u043d\u0438\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043a\u043d\u043e\u043f\u043a\u0438 \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u0445\u0441\u044f \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e.", + "MessageNoSyncJobsFound": "\u0417\u0430\u0434\u0430\u043d\u0438\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043d\u043e\u043f\u043e\u043a \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u0445\u0441\u044f \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e.", "MessageDownloadsFound": "\u041d\u0435\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u0445 \u0437\u0430\u0433\u0440\u0443\u0437\u043e\u043a. \u0421\u0434\u0435\u043b\u0430\u0439\u0442\u0435 \u0432\u0430\u0448\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c\u0438 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e, \u043d\u0430\u0436\u0430\u0432 \u043d\u0430 \u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c\u0438 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e.", "HeaderSelectDevices": "\u0412\u044b\u0431\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", "ButtonCancelItem": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442", @@ -1453,7 +1315,7 @@ "LabelNumberReviews": "\u041e\u0442\u0437\u044b\u0432\u044b: {0}", "LabelFree": "\u0411\u0435\u0441\u043f\u043b.", "HeaderPlaybackError": "\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f", - "MessagePlaybackErrorNotAllowed": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0432\u044b \u043d\u0435 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f. \u0417\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0441\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u0432\u0430\u0448\u0438\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u043c \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c.", + "MessagePlaybackErrorNotAllowed": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0432\u044b \u043d\u0435 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f. \u0417\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0432\u0430\u0448\u0435\u043c\u0443 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.", "MessagePlaybackErrorNoCompatibleStream": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0445 \u043f\u043e\u0442\u043e\u043a\u043e\u0432 \u0432 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435 \u0438\u043b\u0438 \u0437\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0432\u0430\u0448\u0435\u043c\u0443 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.", "MessagePlaybackErrorPlaceHolder": "\u0412\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0434\u0438\u0441\u043a, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0434\u0430\u043d\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e.", "HeaderSelectAudio": "\u0412\u044b\u0431\u043e\u0440 \u0430\u0443\u0434\u0438\u043e", @@ -1471,7 +1333,6 @@ "LabelDisabled": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e", "ButtonMoreInformation": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435...", "LabelNoUnreadNotifications": "\u041d\u0435\u0442 \u043d\u0435\u043f\u0440\u043e\u0447\u0442\u0451\u043d\u043d\u044b\u0445 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439.", - "LabelAllPlaysSentToPlayer": "\u0412\u0441\u0451 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044c", "MessageInvalidUser": "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", "HeaderLoginFailure": "\u0421\u0431\u043e\u0439 \u0432\u0445\u043e\u0434\u0430", "RecommendationBecauseYouLike": "\u0418\u0431\u043e \u0432\u0430\u043c \u043d\u0440\u0430\u0432\u0438\u0442\u0441\u044f \u00ab{0}\u00bb", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.", "MessageRecordingScheduled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e.", "HeaderConfirmSeriesCancellation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u044b \u0441\u0435\u0440\u0438\u0438", - "MessageConfirmSeriesCancellation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0438\u0430\u043b?", - "MessageSeriesCancelled": "\u0421\u0435\u0440\u0438\u0430\u043b \u043e\u0442\u043c\u0435\u043d\u0451\u043d.", "HeaderConfirmRecordingDeletion": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0438", "MessageRecordingSaved": "\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430.", "OptionWeekend": "\u0412\u044b\u0445\u043e\u0434\u043d\u044b\u0435", @@ -1519,12 +1378,8 @@ "HeaderSelectServerCachePathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432 \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", "HeaderSelectTranscodingPathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", "HeaderSelectMetadataPathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c, \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", - "HeaderSelectChannelDownloadPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", - "HeaderSelectChannelDownloadPathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u043e\u0432 \u043a\u044d\u0448\u0430 \u043a\u0430\u043d\u0430\u043b\u043e\u0432. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", - "LabelChapterDownloaders": "\u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u0441\u0446\u0435\u043d:", - "LabelChapterDownloadersHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0438 \u0440\u0430\u043d\u0436\u0438\u0440\u0443\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u0441\u0446\u0435\u043d \u0432 \u043f\u043e\u0440\u044f\u0434\u043a\u0435 \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u0430. \u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u043d\u0438\u0437\u043a\u043e\u0433\u043e \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u0430 \u0431\u0443\u0434\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u044e\u0449\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.", "HeaderFavoriteAlbums": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b", - "HeaderLatestChannelMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", + "HeaderLatestChannelMedia": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", "ButtonOrganizeFile": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0442\u044c \u0444\u0430\u0439\u043b", "ButtonDeleteFile": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0444\u0430\u0439\u043b", "HeaderOrganizeFile": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430", @@ -1557,14 +1412,13 @@ "LabelPlayMethodDirectPlay": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", "LabelAudioCodec": "\u0410\u0443\u0434\u0438\u043e: {0}", "LabelVideoCodec": "\u0412\u0438\u0434\u0435\u043e: {0}", - "LabelLocalAccessUrl": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f: {0}", - "LabelRemoteAccessUrl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f: {0}", + "LabelLocalAccessUrl": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0439 (LAN) \u0434\u043e\u0441\u0442\u0443\u043f: {0}", + "LabelRemoteAccessUrl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u044b\u0439 (WAN) \u0434\u043e\u0441\u0442\u0443\u043f: {0}", "LabelRunningOnPort": "\u0420\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043d\u0430 HTTP-\u043f\u043e\u0440\u0442\u0443 {0}.", "LabelRunningOnPorts": "\u0420\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043d\u0430 HTTP-\u043f\u043e\u0440\u0442\u0443 {0} \u0438 HTTPS-\u043f\u043e\u0440\u0442\u0443 {1}.", - "HeaderLatestFromChannel": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 {0}", - "HeaderCurrentSubtitles": "\u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b", + "HeaderLatestFromChannel": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435 \u0438\u0437 {0}", "ButtonRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435...", - "HeaderLatestTvRecordings": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", + "HeaderLatestTvRecordings": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", "LabelCurrentPath": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0443\u0442\u044c:", "HeaderSelectMediaPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", "HeaderSelectPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438", @@ -1583,7 +1437,7 @@ "MessageEnsureOpenTuner": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0437\u0434\u0435\u0441\u044c \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0432 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0442\u044e\u043d\u0435\u0440.", "ButtonDashboard": "\u041f\u0430\u043d\u0435\u043b\u044c", "ButtonReports": "\u041e\u0442\u0447\u0451\u0442\u044b", - "MetadataManager": "\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445", + "MetadataManager": "\u0414\u0438\u0441\u043f. \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445", "HeaderTime": "\u0412\u0440\u0435\u043c\u044f", "LabelAddedOnDate": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e {0}", "ButtonStart": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430", "ConfirmDeleteItem": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?", "ConfirmDeleteItems": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?", - "MessageValueNotCorrect": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435 \u0432\u0435\u0440\u043d\u043e. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", "MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0435 \u0441 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.", "OptionOff": "\u0412\u044b\u043a\u043b", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "\u041d\u0435\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0430 \u0437\u0430\u0434\u043d\u0438\u043a\u0430.", "MissingLogoImage": "\u041d\u0435\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0430 \u043b\u043e\u0433\u043e\u0442\u0438\u043f\u0430.", "MissingEpisode": "\u041d\u0435\u0442 \u044d\u043f\u0438\u0437\u043e\u0434\u0430.", - "OptionScreenshots": "\u0421\u043d\u0438\u043c\u043a\u0438 \u044d\u043a\u0440\u0430\u043d\u0430", "OptionBackdrops": "\u0417\u0430\u0434\u043d\u0438\u043a\u0438", "OptionImages": "\u0420\u0438\u0441\u0443\u043d\u043a\u0438", "OptionKeywords": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430", @@ -1642,10 +1494,6 @@ "OptionPeople": "\u041b\u044e\u0434\u0438", "OptionProductionLocations": "\u041c\u0435\u0441\u0442\u0430 \u0441\u044a\u0451\u043c\u043e\u043a", "OptionBirthLocation": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f", - "LabelAllChannels": "\u0412\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b", - "AttributeNew": "\u041d\u043e\u0432\u044b\u0439", - "AttributePremiere": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430", - "AttributeLive": "\u042d\u0444\u0438\u0440", "HeaderChangeFolderType": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f", "HeaderChangeFolderTypeHelp": "\u0414\u043b\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0442\u0438\u043f\u0430, \u043d\u0430\u0434\u043e \u0438\u0437\u044a\u044f\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443 \u0438 \u0437\u0430\u043d\u043e\u0432\u043e \u043f\u043e\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0435\u0451 \u0441 \u043d\u043e\u0432\u044b\u043c \u0442\u0438\u043f\u043e\u043c.", "HeaderAlert": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435", @@ -1663,7 +1511,6 @@ "ButtonQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e...", "HeaderNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", "HeaderSelectPlayer": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f", - "MessageInternetExplorerWebm": "\u0414\u043b\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0432 Internet Explorer, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043f\u043b\u0430\u0433\u0438\u043d \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f WebM.", "HeaderVideoError": "\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0438\u0434\u0435\u043e", "ButtonViewSeriesRecording": "\u0421\u043c. \u0437\u0430\u043f\u0438\u0441\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u0430", "HeaderSpecials": "\u0421\u043f\u0435\u0446.", @@ -1672,23 +1519,22 @@ "HeaderRuntime": "\u0414\u043b\u0438\u0442.", "HeaderParentalRating": "\u0412\u043e\u0437\u0440. \u043a\u0430\u0442.", "HeaderReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f.", - "HeaderDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431.", "HeaderSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:", "HeaderSeason": "\u0421\u0435\u0437\u043e\u043d", "HeaderSeasonNumber": "\u2116 \u0441\u0435\u0437\u043e\u043d\u0430", "HeaderNetwork": "\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u044c", "HeaderYear": "\u0413\u043e\u0434:", - "HeaderGameSystem": "\u0418\u0433\u0440. \u0441\u0438\u0441\u0442.", + "HeaderGameSystem": "\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430", "HeaderEmbeddedImage": "\u0412\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0439 \u0440\u0438\u0441\u0443\u043d\u043e\u043a", "HeaderTrack": "\u0414\u043e\u0440-\u043a\u0430", "OptionCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", "OptionSeries": "\u0422\u0412-\u0441\u0435\u0440\u0438\u0430\u043b\u044b", "OptionSeasons": "\u0422\u0412-\u0441\u0435\u0437\u043e\u043d\u044b", "OptionGames": "\u0418\u0433\u0440\u044b", - "OptionGameSystems": "\u0418\u0433\u0440. \u0441\u0438\u0441\u0442\u0435\u043c\u044b", + "OptionGameSystems": "\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b", "OptionMusicArtists": "\u041c\u0443\u0437. \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438", "OptionMusicAlbums": "\u041c\u0443\u0437. \u0430\u043b\u044c\u0431\u043e\u043c\u044b", - "OptionMusicVideos": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e", + "OptionMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", "OptionSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", "OptionHomeVideos": "\u0414\u043e\u043c. \u0432\u0438\u0434\u0435\u043e \u0438 \u0444\u043e\u0442\u043e", "OptionBooks": "\u041a\u043d\u0438\u0433\u0438", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "\u0418\u0437\u044a\u044f\u0442\u0438\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", "MessageConfirmRemoveMediaLocation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u0437\u044a\u044f\u0442\u044c \u044d\u0442\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435?", "LabelNewName": "\u041d\u043e\u0432\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:", - "HeaderAddMediaFolder": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", - "HeaderAddMediaFolderHelp": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 (\u041a\u0438\u043d\u043e, \u041c\u0443\u0437\u044b\u043a\u0430, \u0422\u0412 \u0438 \u0442.\u043f.).", "HeaderRemoveMediaFolder": "\u0418\u0437\u044a\u044f\u0442\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "\u0418\u0437 \u0432\u0430\u0448\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 Emby \u0431\u0443\u0434\u0443\u0442 \u0438\u0437\u044a\u044f\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 :", "MessageAreYouSureYouWishToRemoveMediaFolder": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u0437\u044a\u044f\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0443?", @@ -1719,12 +1563,11 @@ "ButtonChangeContentType": "\u0421\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f", "HeaderMediaLocations": "\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", "LabelContentTypeValue": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f: {0}", - "LabelPathSubstitutionHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e: \u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0443\u0442\u0435\u0439 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u043f\u0443\u0442\u0435\u0439 \u0441\u043e \u0441\u0435\u0442\u0435\u0432\u044b\u043c\u0438 \u043e\u0431\u0449\u0438\u043c\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u0434\u043b\u044f \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.", - "FolderTypeUnset": "\u041d\u0435\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 (\u0440\u0430\u0437\u043d\u043e\u0442\u0438\u043f\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435)", + "FolderTypeUnset": "\u041d\u0435\u0437\u0430\u0434\u0430\u043d\u043d\u044b\u0439 (\u0441\u043c\u0435\u0448\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435)", "BirthPlaceValue": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f: {0}", "DeathDateValue": "\u041a\u043e\u043d\u0447\u0438\u043d\u0430: {0}", "BirthDateValue": "\u0420\u043e\u0436\u0434\u0435\u043d\u0438\u0435: {0}", - "HeaderLatestReviews": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043e\u0442\u0437\u044b\u0432\u044b", + "HeaderLatestReviews": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u043e\u0442\u0437\u044b\u0432\u044b", "HeaderPluginInstallation": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430", "MessageAlreadyInstalled": "\u0414\u0430\u043d\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430.", "ValueReviewCount": "{0} \u043e\u0442\u0437\u044b\u0432(\u0430\/\u043e\u0432)", @@ -1733,7 +1576,7 @@ "MessageTrialWillExpireIn": "\u041f\u0440\u043e\u0431\u043d\u044b\u0439 \u043f\u0435\u0440\u0438\u043e\u0434 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0438\u0441\u0442\u0435\u0447\u0451\u0442 \u0447\u0435\u0440\u0435\u0437 {0} \u0434\u043d(\u044f\/\u0435\u0439)", "MessageInstallPluginFromApp": "\u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0430\u0433\u0438\u043d \u0434\u043e\u043b\u0436\u0435\u043d \u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043e\u043d\u043e \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e.", "ValuePriceUSD": "\u0426\u0435\u043d\u0430: {0} USD", - "MessageFeatureIncludedWithSupporter": "\u0412\u044b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430, \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .", + "MessageFeatureIncludedWithSupporter": "\u0412\u044b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430, \u0438 \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .", "HeaderEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430", "MessageEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "MessagePendingEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0438\u0441\u044c\u043c\u043e \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0443 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. \u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 \u0432 \u043f\u0438\u0441\u044c\u043c\u0435.", @@ -1776,13 +1619,11 @@ "ButtonWebsite": "\u0412\u0435\u0431\u0441\u0430\u0439\u0442...", "ValueSeriesYearToPresent": "{0} - \u041d.\u0412.", "ValueAwards": "\u041f\u0440\u0438\u0437\u044b: {0}", - "ValueBudget": "\u0411\u044e\u0434\u0436\u0435\u0442: {0}", - "ValueRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430: {0}", "ValuePremiered": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430 {0}", "ValuePremieres": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u044b {0}", "ValueStudio": "\u0421\u0442\u0443\u0434\u0438\u044f: {0}", "ValueStudios": "\u0421\u0442\u0443\u0434\u0438\u0438: {0}", - "ValueStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}", + "ValueStatus": "\u0421\u0442\u0430\u0442\u0443\u0441: {0}", "LabelLimit": "\u041f\u0440\u0435\u0434\u0435\u043b:", "ValueLinks": "\u0421\u0441\u044b\u043b\u043a\u0438: {0}", "HeaderCastAndCrew": "\u0421\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u0438 \u0441\u043d\u0438\u043c\u0430\u043b\u0438", @@ -1800,17 +1641,17 @@ "MediaInfoLongitude": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430", "MediaInfoShutterSpeed": "\u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430", "MediaInfoSoftware": "\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430", - "HeaderMoreLikeThis": "\u0415\u0449\u0451 \u043a\u0430\u043a \u044d\u0442\u043e", + "HeaderMoreLikeThis": "\u0415\u0449\u0451 \u043f\u043e\u0434\u043e\u0431\u043d\u043e\u0435 \u044d\u0442\u043e\u043c\u0443", "HeaderMovies": "\u0424\u0438\u043b\u044c\u043c\u044b", "HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", "HeaderGames": "\u0418\u0433\u0440\u044b", "HeaderBooks": "\u041a\u043d\u0438\u0433\u0438", - "HeaderEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b", + "HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b", "HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u044b", "HeaderTracks": "\u0414\u043e\u0440-\u043a\u0438", "HeaderItems": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b", "HeaderOtherItems": "\u0414\u0440\u0443\u0433\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b", - "ButtonFullReview": "\u041f\u043e\u043b\u043d\u0430\u044f \u0440\u0435\u0446\u0435\u043d\u0437\u0438\u044f...", + "ButtonFullReview": "\u041e\u0442\u0437\u044b\u0432 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e...", "ValueAsRole": "\u043a\u0430\u043a {0}", "ValueGuestStar": "\u041f\u0440\u0438\u0433\u043b. \u0430\u043a\u0442\u0451\u0440", "MediaInfoSize": "\u0420\u0430\u0437\u043c\u0435\u0440", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "\u041e\u043f\u043e\u0440\u043d\u044b\u0435 \u043a\u0430\u0434\u0440\u044b", "TabExpert": "\u0414\u043b\u044f \u043e\u043f\u044b\u0442\u043d\u044b\u0445", "HeaderSelectCustomIntrosPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c", - "HeaderRateAndReview": "\u041e\u0446\u0435\u043d\u043a\u0430 \u0438 \u043e\u0442\u0437\u044b\u0432", "HeaderThankYou": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441", - "MessageThankYouForYourReview": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u0432\u0430\u0448 \u043e\u0442\u0437\u044b\u0432.", - "LabelYourRating": "\u0412\u0430\u0448\u0430 \u043e\u0446\u0435\u043d\u043a\u0430:", "LabelFullReview": "\u041e\u0442\u0437\u044b\u0432 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e:", - "LabelShortRatingDescription": "\u041a\u0440\u0430\u0442\u043a\u0430\u044f \u0441\u0432\u043e\u0434\u043a\u0430 \u043e\u0446\u0435\u043d\u043a\u0438:", - "OptionIRecommendThisItem": "\u042f \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442", "ReleaseYearValue": "\u0413\u043e\u0434 \u0432\u044b\u043f\u0443\u0441\u043a\u0430: {0}", "OriginalAirDateValue": "\u0414\u0430\u0442\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u044d\u0444\u0438\u0440\u0430: {0}", "WebClientTourContent": "\u0421\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0438 \u0442.\u0434. \u0417\u0435\u043b\u0451\u043d\u044b\u0435 \u043a\u0440\u0443\u0436\u043e\u0447\u043a\u0438 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "\u0411\u0435\u0437 \u0443\u0441\u0438\u043b\u0438\u0439 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0434\u043e\u043b\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u043c\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041f\u0440\u0438\u043d\u0438\u043c\u0430\u0439\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u043a\u043e\u0433\u0434\u0430 \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u044b, \u0438 \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0447\u0430\u0441\u0442\u043e.", "DashboardTourMobile": "\u041f\u0430\u043d\u0435\u043b\u044c Emby Server \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442\u043b\u0438\u0447\u043d\u043e \u043d\u0430 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0430\u0445 \u0438 \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0430\u0445. \u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0441\u0432\u043e\u0438\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c \u0441 \u043b\u0430\u0434\u043e\u043d\u0438 \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f, \u0441 \u043b\u044e\u0431\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u0430.", "DashboardTourSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0432\u043e\u0438 \u043b\u0438\u0447\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0441 \u0432\u0430\u0448\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "MessageRefreshQueued": "\u041f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0432 \u043e\u0447\u0435\u0440\u0435\u0434\u0438", "TabExtras": "\u0412 \u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435", "HeaderUploadImage": "\u0412\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u0440\u0438\u0441\u0443\u043d\u043a\u0430", "DeviceLastUsedByUserName": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435: {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "\u0421\u0438\u043d\u0445\u0440-\u0438\u044f", "HeaderCancelSyncJob": "\u041e\u0442\u043c\u0435\u043d\u0430 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438", "CancelSyncJobConfirmation": "\u041e\u0442\u043c\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0438\u0437\u044a\u044f\u0442\u0438\u044e \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c?", - "MessagePleaseSelectDeviceToSyncTo": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438.", - "MessageSyncJobCreated": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043e.", "LabelQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e:", - "OptionAutomaticallySyncNewContent": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", - "OptionAutomaticallySyncNewContentHelp": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0432 \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443, \u0430\u0432\u0442\u043e-\u043a\u0438 \u0441\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440-\u043e\u043c.", "MessageBookPluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 Bookshelf", "MessageGamePluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 GameBrowser", "MessageUnsetContentHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u043e\u0431\u044b\u0447\u043d\u044b\u0435 \u043f\u0430\u043f\u043a\u0438. \u0414\u043b\u044f \u043d\u0430\u0438\u043b\u0443\u0447\u0448\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0434\u0430\u0442\u044c \u0442\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u043f\u043e\u0434\u043f\u0430\u043f\u043e\u043a.", @@ -1941,18 +1772,11 @@ "TabScenes": "\u0421\u0446\u0435\u043d\u044b", "HeaderUnlockApp": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435", "HeaderUnlockSync": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 Emby", - "MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u0440\u0430\u0437\u043e\u0432\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .", - "MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.", - "MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \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.", "MessagePaymentServicesUnavailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u043b\u0430\u0442\u0451\u0436\u043d\u044b\u0445 \u0443\u0441\u043b\u0443\u0433 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", - "ButtonUnlockWithPurchase": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043e\u043f\u043b\u0430\u0442\u044b", - "ButtonUnlockPrice": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c {0}", - "MessageLiveTvGuideRequiresUnlock": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0442\u0435\u043b\u0435\u0433\u0438\u0434 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d {0} \u043a\u0430\u043d\u0430\u043b(\u043e\u043c\/\u0430\u043c\u0438). \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c \u043a\u0430\u043a \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u044b\u0439 \u044d\u0444\u0444\u0435\u043a\u0442.", "OptionEnableFullscreen": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d", "ButtonServer": "\u0421\u0435\u0440\u0432\u0435\u0440...", "HeaderLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430", "HeaderMedia": "\u041c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "HeaderSaySomethingLike": "\u0421\u043a\u0430\u0436\u0438\u0442\u0435 \u0447\u0442\u043e-\u0442\u043e \u0432\u0440\u043e\u0434\u0435...", "NoResultsFound": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e.", "ButtonManageServer": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c", "ButtonPreferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430 {0}", "ErrorPleaseSelectLineup": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443. \u0415\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f, \u0442\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u044b\u043c\u0438.", "HeaderTryEmbyPremiere": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 Emby Premiere", - "ButtonBecomeSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere", - "ButtonClosePlayVideo": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0438 \u0432\u043e\u0441\u043f\u0440. \u043c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441 Emby Premiere \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0420\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430?", - "MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u044d\u0444\u0444\u0435\u043a\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u0444\u0438\u043b\u044c\u043c\u043e\u043c.", "OptionEnableDisplayMirroring": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", "HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.", "HeaderSyncRequiresSupporterMembershipAppVersion": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a Emby Server \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.", "ErrorValidatingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 Emby Premiere. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", - "LabelLocalSyncStatusValue": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}", + "LabelLocalSyncStatusValue": "\u0421\u0442\u0430\u0442\u0443\u0441: {0}", "MessageSyncStarted": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430", - "NoSlideshowContentFound": "\u041d\u0435 \u0431\u044b\u043b\u0438 \u043d\u0430\u0439\u0434\u0435\u043d\u044b \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u043a \u0441\u043b\u0430\u0439\u0434-\u0448\u043e\u0443.", - "OptionPhotoSlideshow": "\u0421\u043b\u0430\u0439\u0434-\u0448\u043e\u0443 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0439", "OptionBackdropSlideshow": "\u0421\u043b\u0430\u0439\u0434-\u0448\u043e\u0443 \u0437\u0430\u0434\u043d\u0438\u043a\u043e\u0432", "HeaderTopPlugins": "\u041f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u044b", "ButtonOther": "\u0414\u0440\u0443\u0433\u043e\u0435", @@ -1996,28 +1814,18 @@ "ButtonMenu": "\u041c\u0435\u043d\u044e", "ForAdditionalLiveTvOptions": "\u0414\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432 \u044d\u0444\u0438\u0440\u0430, \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0438\u043c\u0435\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u043e\u043f\u0446\u0438\u044f\u043c\u0438, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0432\u043a\u043b\u0430\u0434\u043a\u0435 \u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0443\u0441\u043b\u0443\u0433\u0438.", "ButtonGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434", - "ButtonRecordedTv": "\u0422\u0412-\u0437\u0430\u043f\u0438\u0441\u0438", "ConfirmEndPlayerSession": "\u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0437\u0430\u043a\u0440\u044b\u0442\u044c Emby \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435?", "ButtonYes": "\u0414\u0430", "AddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", "ButtonNo": "\u041d\u0435\u0442", - "ButtonRestorePreviousPurchase": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435", - "AlreadyPaid": "\u0423\u0436\u0435 \u043e\u043f\u043b\u0430\u0442\u0438\u043b\u0438?", - "AlreadyPaidHelp1": "\u0415\u0441\u043b\u0438 \u0432\u044b \u0443\u0436\u0435 \u0437\u0430\u043f\u043b\u0430\u0442\u0438\u043b\u0438 \u0437\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u0441\u0442\u0430\u0440\u0448\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 Media Browser for Android, \u0432\u0430\u043c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u043f\u043b\u0430\u0442\u0438\u0442\u044c \u0441\u043d\u043e\u0432\u0430, \u0447\u0442\u043e\u0431\u044b \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041e\u041a, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043c \u044d-\u043f\u043e\u0447\u0442\u0443 \u043d\u0430 {0}, \u0438 \u043c\u044b \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0443\u0435\u043c \u044d\u0442\u043e \u0434\u043b\u044f \u0432\u0430\u0441.", - "AlreadyPaidHelp2": "\u0412\u044b \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u043b\u0438 Emby Premiere? \u041f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u0434\u0438\u0430\u043b\u043e\u0433, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 Emby Premiere \u0432 \u0432\u0430\u0448\u0435\u0439 \u041f\u0430\u043d\u0435\u043b\u0438 Emby Server \u043f\u043e \u0421\u043f\u0440\u0430\u0432\u043a\u0430 -> Emby Premiere, \u0438 \u043e\u043d\u0430 \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438.", "ButtonNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f...", - "HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u044b", - "EmbyPremiereMonthly": "Emby Premiere \u043d\u0430 \u043c\u0435\u0441\u044f\u0446", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere \u043d\u0430 \u043c\u0435\u0441\u044f\u0446 {0}", + "HeaderLatestMovies": "\u041d\u043e\u0432\u0435\u0439\u0448\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u044b", "HeaderEmailAddress": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b", - "TextPleaseEnterYourEmailAddressForSubscription": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b.", "LoginDisclaimer": "Emby \u0441\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043c\u043e\u0447\u044c \u0432\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0441\u0432\u043e\u0435\u0439 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u043e\u0439, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u043c\u0438 \u0432\u0438\u0434\u0435\u043e \u0438 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u043c\u0438. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u043d\u0430\u0448\u0438\u043c\u0438 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043b\u044e\u0431\u043e\u0433\u043e \u041f\u041e Emby \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u0439.", "TermsOfUse": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f", "NumLocationsValue": "{0} \u043f\u0430\u043f(\u043a\u0438\/\u043e\u043a)", "ButtonAddMediaLibrary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443", "ButtonManageFolders": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0430\u043c\u0438", - "MessageTryMicrosoftEdge": "\u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Windows 10, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 Microsoft Edge.", - "MessageTryModernBrowser": "\u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Windows, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Google Chrome, Firefox \u0438\u043b\u0438 Opera.", "ErrorAddingListingsToSchedulesDirect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Schedules Direct. \u0412 Schedules Direct \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0442\u0430\u043a\u0438\u0445 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u043d\u0430 \u043a\u0430\u0436\u0434\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c. \u0412\u0430\u043c \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0432\u043e\u0439\u0442\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442 Schedules Direct, \u0438 \u0438\u0437\u044a\u044f\u0442\u044c \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u0447\u043d\u0438 \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c.", "PleaseAddAtLeastOneFolder": "\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435, \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435, \u043e\u0434\u043d\u0443 \u043f\u0430\u043f\u043a\u0443 \u043a \u0434\u0430\u043d\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435, \u043d\u0430\u0436\u0430\u0432 \u043a\u043d\u043e\u043f\u043a\u0443 \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c.", "ErrorAddingMediaPathToVirtualFolder": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043f\u0443\u0442\u0438 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043f\u0443\u0442\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c, \u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 Emby Server \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u044d\u0442\u043e\u043c\u0443 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044e.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u0430", "PleaseConfirmPluginInstallation": "\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041e\u041a, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c, \u0447\u0442\u043e \u0432\u044b \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043b\u0438 \u0432\u044b\u0448\u0435\u0438\u0437\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0435 \u0438 \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430.", "MessagePluginInstallDisclaimer": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u0447\u043b\u0435\u043d\u0430\u043c\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430 Emby \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0442\u043b\u0438\u0447\u043d\u044b\u043c \u0441\u043f\u043e\u0441\u043e\u0431\u043e\u043c \u0434\u043b\u044f \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 Emby \u0441 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c\u0438 \u0438 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438. \u041f\u0435\u0440\u0435\u0434 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u043e\u0439 \u043f\u0440\u0438\u043c\u0438\u0442\u0435 \u0432\u043e \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043e\u043d\u0438 \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0438\u0447\u0438\u043d\u0438\u0442\u044c \u043d\u0430 \u0432\u0430\u0448 Emby Server, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438, \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0444\u043e\u043d\u043e\u0432\u0443\u044e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u0438 \u0441\u043d\u0438\u0436\u0435\u043d\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0439 \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438.", - "ButtonPlayOneMinute": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c 1 \u043c\u0438\u043d", - "ThankYouForTryingEnjoyOneMinute": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043e\u0434\u043d\u043e\u0439 \u043c\u0438\u043d\u0443\u0442\u043e\u0439 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441 \u0437\u0430 \u043e\u043f\u0440\u043e\u0431\u043e\u0432\u0430\u043d\u0438\u0435 Emby.", - "HeaderTryPlayback": "\u041e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435", - "HeaderBenefitsEmbyPremiere": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b Emby Premiere", - "MobileSyncFeatureDescription": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0441 \u0432\u0430\u0448\u0438\u043c\u0438 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0430\u043c\u0438 \u0438 \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0430\u043c\u0438 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435.", - "CoverArtFeatureDescription": "Cover Art \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u0437\u0430\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043e\u0431\u043b\u043e\u0436\u043a\u0438 \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0441\u043f\u043e\u0441\u043e\u0431\u044b \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043c\u043e\u0447\u044c \u0432\u0430\u043c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u043a \u0432\u0430\u0448\u0438\u043c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c.", "HeaderMobileSync": "\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", "HeaderCloudSync": "\u041e\u0431\u043b\u0430\u0447\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", - "CloudSyncFeatureDescription": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0432\u0430\u0448\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u043e\u0431\u043b\u0430\u043a\u043e\u043c \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0438\u0445 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f, \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f.", "HeaderFreeApps": "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "FreeAppsFeatureDescription": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0432\u0430\u0448\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432.", - "CinemaModeFeatureDescription": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u044d\u0444\u0444\u0435\u043a\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u0444\u0438\u043b\u044c\u043c\u043e\u043c.", "CoverArt": "Cover Art", "ButtonOff": "\u0412\u044b\u043a\u043b", "TitleHardwareAcceleration": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435", "HardwareAccelerationWarning": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0433\u043e \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0432 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0440\u0435\u0434\u0430\u0445. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u0432\u0430\u0448\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u0430\u044f \u0441\u0438\u0441\u0442\u0435\u043c\u0430 \u0438 \u0432\u0438\u0434\u0435\u043e\u0434\u0440\u0430\u0439\u0432\u0435\u0440\u044b \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b. \u0415\u0441\u043b\u0438 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435\u043c \u0432\u0438\u0434\u0435\u043e \u043f\u043e\u0441\u043b\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043d\u0430\u0437\u0430\u0434 \u043d\u0430 \u0410\u0432\u0442\u043e.", "HeaderSelectCodecIntrosPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c \u043a\u043e\u0434\u0435\u043a\u0430", - "ButtonAddMissingData": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432. \u0434\u0430\u043d\u043d\u044b\u0435", "ValueExample": "\u041f\u0440\u0438\u043c\u0435\u0440: {0}", "OptionEnableAnonymousUsageReporting": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u0443\u044e \u043e\u0442\u0447\u0451\u0442\u043d\u043e\u0441\u0442\u044c \u043e\u0431 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0438", "OptionEnableAnonymousUsageReportingHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442 Emby \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043e\u0431 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u0445, \u043d\u043e\u043c\u0435\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u0439 \u0432\u0430\u0448\u0438\u0445 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0438 \u0442.\u0434. \u042d\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0446\u0435\u043b\u044f\u0445 \u0441\u043e\u0432\u0435\u0440\u0448\u0435\u043d\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0433\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0435\u043d\u0438\u044f.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (\u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e):", "LabelOptionalM3uUrlHelp": "\u041d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u043f\u0435\u0440\u0435\u0447\u043d\u0438 M3U.", "TabResumeSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f", - "HowDidYouPay": "\u041a\u0430\u043a\u0438\u043c \u043e\u0431\u0440\u0430\u0437\u043e\u043c \u0432\u044b \u043e\u043f\u043b\u0430\u0442\u0438\u043b\u0438?", - "IHaveEmbyPremiere": "\u0423 \u043c\u0435\u043d\u044f \u0438\u043c\u0435\u0435\u0442\u0441\u044f Emby Premiere", - "IPurchasedThisApp": "\u042f \u043f\u0440\u0438\u043e\u0431\u0440\u0451\u043b \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435", "DrmChannelsNotImported": "\u041a\u0430\u043d\u0430\u043b\u044b \u0441 DRM \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f.", "LabelAllowHWTranscoding": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443", "AllowHWTranscodingHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0442\u044e\u043d\u0435\u0440\u0443 \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043b\u0438\u0440\u0443\u0435\u043c\u044b\u0435 \u043f\u043e\u0442\u043e\u043a\u0438. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443, \u0442\u0440\u0435\u0431\u0443\u0435\u043c\u0443\u044e \u0432 Emby Server.", @@ -2068,11 +1863,12 @@ "ErrorAddingGuestAccount2": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448 \u0433\u043e\u0441\u0442\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043b \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044e, \u0441\u043b\u0435\u0434\u0443\u044f \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u043c \u0432 \u043f\u0438\u0441\u044c\u043c\u0435, \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0441\u043b\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. \u0415\u0441\u043b\u0438 \u043e\u043d \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0442\u0430\u043a\u043e\u0435 \u043f\u0438\u0441\u044c\u043c\u043e, \u0442\u043e\u0433\u0434\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043f\u0438\u0441\u044c\u043c\u043e \u043d\u0430 {0}, \u0438 \u043f\u0440\u0438\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u0430\u0448 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b, \u043d\u0430\u0440\u044f\u0434\u0443 \u0441 \u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441\u043e\u043c.", "GuestUserNotFound": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0438\u043c\u044f \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043e \u0432\u0435\u0440\u043d\u043e \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443, \u0438\u043b\u0438 \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u0432\u0435\u0441\u0442\u0438 \u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b.", "Yesterday": "\u0412\u0447\u0435\u0440\u0430", - "DownloadImagesInAdvanceWarning": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0432\u0441\u0435\u0445 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0437\u0430\u0440\u0430\u043d\u0435\u0435 \u043f\u0440\u0438\u0432\u043e\u0434\u0438\u0442 \u043a \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u043c\u0443 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.", - "MetadataSettingChangeHelp": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u0432\u043b\u0438\u044f\u0435\u0442 \u043d\u0430 \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u043c. \u0427\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043e\u0442\u043a\u0440\u043e\u0439\u0442\u0435 \u044d\u043a\u0440\u0430\u043d \u0441 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c, \u0438\u043b\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0435 \u043f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445.", - "OptionConvertRecordingPreserveAudio": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0430\u0443\u0434\u0438\u043e \u043f\u0440\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u043f\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438)", - "OptionConvertRecordingPreserveAudioHelp": "\u042d\u0442\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442 \u0430\u0443\u0434\u0438\u043e \u043f\u043e\u043b\u0443\u0447\u0448\u0435, \u043d\u043e, \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445, \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430.", - "CreateCollectionHelp": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043e\u0431\u043e\u0441\u043e\u0431\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432 \u0438 \u0434\u0440\u0443\u0433\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.", + "DownloadImagesInAdvanceWarning": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0432\u0441\u0435\u0445 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0437\u0430\u0431\u043b\u0430\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u043c\u0443 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.", + "MetadataSettingChangeHelp": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e\u0432\u043b\u0438\u044f\u0435\u0442 \u043d\u0430 \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u043c. \u0427\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u043e\u0442\u043a\u0440\u043e\u0439\u0442\u0435 \u044d\u043a\u0440\u0430\u043d \u0441 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c, \u0438\u043b\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u0435 \u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0435 \u043f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435, \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445.", + "OptionConvertRecordingPreserveAudio": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0430\u0443\u0434\u0438\u043e \u043f\u0440\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439 (\u043a\u043e\u0433\u0434\u0430 \u044d\u0442\u043e \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e)", + "OptionConvertRecordingPreserveAudioHelp": "\u042d\u0442\u043e \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442 \u0430\u0443\u0434\u0438\u043e \u043f\u043e\u043b\u0443\u0447\u0448\u0435, \u043d\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u0440\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0438 \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445.", + "OptionConvertRecordingPreserveVideo": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e \u043f\u0440\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0435\u0439", + "OptionConvertRecordingPreserveVideoHelp": "\u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u044c \u0432\u0438\u0434\u0435\u043e \u043f\u043e\u043b\u0443\u0447\u0448\u0435, \u043d\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u0440\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445.", "AddItemToCollectionHelp": "\u0414\u043e\u0431\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u044f \u043f\u043e\u0438\u0441\u043a \u043f\u043e \u043d\u0438\u043c, \u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u0438\u0445 \u043c\u0435\u043d\u044e \u043f\u043e \u043f\u0440\u0430\u0432\u043e\u043c\u0443 \u0449\u0435\u043b\u0447\u043a\u0443 \u0438\u043b\u0438 \u043f\u043e \u043a\u0430\u0441\u0430\u043d\u0438\u044e, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u043a\u043e \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438.", "HeaderHealthMonitor": "\u041c\u043e\u043d\u0438\u0442\u043e\u0440 \u0440\u0430\u0431\u043e\u0442\u043e\u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u0438", "HealthMonitorNoAlerts": "\u0417\u0434\u0435\u0441\u044c \u043d\u0435\u0442 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u0439.", @@ -2085,13 +1881,13 @@ "LabelKidsCategories": "\u0414\u0435\u0442\u0441\u043a\u0438\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438:", "XmlTvKidsCategoriesHelp": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0432 \u044d\u0442\u0438\u0445 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0445 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0434\u0435\u0442\u0441\u043a\u0438\u0435. \u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u00ab|\u00bb.", "LabelMovieCategories": "\u0424\u0438\u043b\u044c\u043c\u043e\u0432\u044b\u0435 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438:", - "XmlTvMovieCategoriesHelp": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0432 \u044d\u0442\u0438\u0445 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0445 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0444\u0438\u043b\u044c\u043c\u044b. \u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u00ab|\u00bb.", + "XmlTvMovieCategoriesHelp": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0432 \u044d\u0442\u0438\u0445 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f\u0445 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0444\u0438\u043b\u044c\u043c\u043e\u0432\u044b\u0435. \u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u00ab|\u00bb.", "XmlTvPathHelp": "\u041f\u0443\u0442\u044c \u043a \u0444\u0430\u0439\u043b\u0443 XML TV. Emby \u0431\u0443\u0434\u0435\u0442 \u0441\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b \u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u044f\u0442\u044c \u0435\u0433\u043e \u043d\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f. \u0412\u044b \u0441\u0430\u043c\u0438 \u043d\u0435\u0441\u0451\u0442\u0435 \u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0441\u0442\u044c \u0437\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430.", "LabelBindToLocalNetworkAddress": "\u041f\u0440\u0438\u0432\u044f\u0437\u043a\u0430 \u043a \u0430\u0434\u0440\u0435\u0441\u0443 \u0432 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438:", "LabelBindToLocalNetworkAddressHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u041f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0439 IP-\u0430\u0434\u0440\u0435\u0441 \u0434\u043b\u044f \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0438 HTTP-\u0441\u0435\u0440\u0432\u0435\u0440\u0430. \u0415\u0441\u043b\u0438 \u043f\u043e\u043b\u0435 \u043f\u0443\u0441\u0442\u043e, \u0442\u043e \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0431\u0443\u0434\u0435\u0442 \u043a\u043e \u0432\u0441\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0430\u0434\u0440\u0435\u0441\u0430\u043c. \u041f\u0440\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 Emby Server.", "TitleHostingSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f", "SettingsWarning": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0438\u043b\u0438 \u0441\u0431\u043e\u044f\u043c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f. \u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0438 \u043a\u0430\u043a\u0438\u0435-\u043b\u0438\u0431\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b, \u043c\u044b \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u0445 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043a \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u043c.", - "MapChannels": "\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", + "MapChannels": "\u0421\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043d\u0430\u043b\u044b", "LabelffmpegPath": "\u041f\u0443\u0442\u044c \u043a FFmpeg:", "LabelffmpegVersion": "\u0412\u0435\u0440\u0441\u0438\u044f FFmpeg:", "LabelffmpegPathHelp": "\u041f\u0443\u0442\u044c \u043a \u0444\u0430\u0439\u043b\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f FFmpeg \u0438\u043b\u0438 \u043a \u043f\u0430\u043f\u043a\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0435\u0439 FFmpeg.", @@ -2104,7 +1900,7 @@ "OptionUseSystemInstalledVersion": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u0443\u044e \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 \u0432\u0435\u0440\u0441\u0438\u044e", "OptionUseMyCustomVersion": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e", "FFmpegSavePathNotFound": "\u041c\u044b \u043d\u0435 \u0441\u043c\u043e\u0433\u043b\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u0442\u044c FFmpeg \u043f\u043e \u0432\u0432\u0435\u0434\u0451\u043d\u043d\u043e\u043c\u0443 \u0432\u0430\u043c\u0438 \u043f\u0443\u0442\u0438. FFprobe \u0442\u0430\u043a\u0436\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c \u0438 \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0432 \u0442\u043e\u0439 \u0436\u0435 \u0441\u0430\u043c\u043e\u0439 \u043f\u0430\u043f\u043a\u0435. \u042d\u0442\u0438 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u043e\u0431\u044b\u0447\u043d\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u043c\u0435\u0441\u0442\u0435 \u0432 \u043e\u0434\u043d\u043e\u043c \u0437\u0430\u0433\u0440\u0443\u0437\u043e\u0447\u043d\u043e\u043c \u043f\u0430\u043a\u0435\u0442\u0435. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u043f\u0443\u0442\u044c \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "XmlTvPremiere": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0432 Emby \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442\u0441\u044f {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432) \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430. \u0414\u043b\u044f \u043d\u0435\u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.", + "XmlTvPremiere": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0432 Emby \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u0434\u0430\u043d\u043d\u044b\u0435 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430 \u0437\u0430 \u043f\u0435\u0440\u0438\u043e\u0434 \u0432 {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432). \u0414\u043b\u044f \u0438\u043c\u043f\u043e\u0440\u0442\u0430 \u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u0435\u0437 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0439 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.", "MoreFromValue": "\u0415\u0449\u0451 \u0441 {0}", "OptionSaveMetadataAsHiddenHelp": "\u042d\u0442\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u043e \u043a \u043d\u043e\u0432\u044b\u043c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u043c\u044b\u043c \u0432 \u0431\u0443\u0434\u0443\u0449\u0435\u043c. \u0421\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u0444\u0430\u0439\u043b\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u0443\u0434\u0443\u0442 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437, \u043a\u043e\u0433\u0434\u0430 \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u043d\u0430 Emby Server.", "EnablePhotos": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438", @@ -2112,7 +1908,7 @@ "MakeAvailableOffline": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u043c \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e", "ConfirmRemoveDownload": "\u0418\u0437\u044a\u044f\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443?", "RemoveDownload": "\u0418\u0437\u044a\u044f\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443", - "SyncToOtherDevices": "\u0421\u0438\u043d\u0445\u0440\u043e \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438", + "SyncToOtherDevices": "\u0421\u0438\u043d\u0445\u0440\u043e \u0441 \u0434\u0440. \u0443\u0441\u0442\u0440-\u043c\u0438", "ManageOfflineDownloads": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u044b\u043c\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430\u043c\u0438", "MessageDownloadScheduled": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043e \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044e", "RememberMe": "\u0417\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c", @@ -2127,11 +1923,11 @@ "Downloads": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0438", "LabelEnableDebugLogging": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043b\u0430\u0434\u043a\u0438", "OptionEnableExternalContentInSuggestions": "\u0412\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0435\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0432 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "OptionEnableExternalContentInSuggestionsHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412 \u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435.", + "OptionEnableExternalContentInSuggestionsHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u043e\u0445\u0432\u0430\u0442 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432 \u0438 \u044d\u0444\u0438\u0440\u043d\u044b\u0445 \u043f\u0435\u0440\u0435\u0434\u0430\u0447 \u0432 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u043e\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0438.", "LabelH264EncodingPreset": "\u041f\u0440\u0435\u0434\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 H264-\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f:", "H264EncodingPresetHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u0431\u044b\u0441\u0442\u0440\u0435\u0435 \u0434\u043b\u044f \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438, \u0438\u043b\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u0435\u0435 \u0434\u043b\u044f \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430.", "LabelH264Crf": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435 CRF H264-\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f:", - "H264CrfHelp": "\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043e\u0446\u0435\u043d\u043a\u0438 (Constant Rate Factor, CRF) - \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0434\u043b\u044f \u043a\u043e\u0434\u0451\u0440\u0430 x264. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0434\u0430\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043e\u0442 0 \u0434\u043e 51, \u0433\u0434\u0435 \u043c\u0435\u043d\u044c\u0448\u0438\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u0440\u0438\u0432\u043e\u0434\u044f\u0442 \u043a \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 (\u0437\u0430 \u0441\u0447\u0451\u0442 \u0431\u043e\u0301\u043b\u044c\u0448\u0438\u0445 \u0440\u0430\u0437\u043c\u0435\u0440\u043e\u0432 \u0444\u0430\u0439\u043b\u043e\u0432). \u0420\u0430\u0437\u0443\u043c\u043d\u044b\u043c\u0438 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043e\u0442 18 \u0434\u043e 28. \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e \u0434\u043b\u044f x264 - 23, \u0442\u0430\u043a \u0447\u0442\u043e \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438.", + "H264CrfHelp": "\u041f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043e\u0446\u0435\u043d\u043a\u0438 (Constant Rate Factor, CRF) - \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0434\u043b\u044f \u043a\u043e\u0434\u0451\u0440\u0430 x264. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0434\u0430\u0432\u0430\u0442\u044c \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043e\u0442 0 \u0434\u043e 51, \u0433\u0434\u0435 \u043c\u0435\u043d\u044c\u0448\u0438\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u0440\u0438\u0432\u0435\u043b\u0438 \u0431\u044b \u043a \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 (\u0437\u0430 \u0441\u0447\u0451\u0442 \u0431\u043e\u0301\u043b\u044c\u0448\u0438\u0445 \u0440\u0430\u0437\u043c\u0435\u0440\u043e\u0432 \u0444\u0430\u0439\u043b\u043e\u0432). \u0420\u0430\u0437\u0443\u043c\u043d\u044b\u043c\u0438 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043e\u0442 18 \u0434\u043e 28. \u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e \u0434\u043b\u044f x264 - 23, \u0442\u0430\u043a \u0447\u0442\u043e \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043d\u043e\u0439 \u0442\u043e\u0447\u043a\u0438.", "Sports": "\u0421\u043f\u043e\u0440\u0442\u0438\u0432\u043d\u044b\u0435", "HeaderForKids": "\u0414\u0435\u0442\u0441\u043a\u0438\u0435", "HeaderRecordingGroups": "\u0413\u0440\u0443\u043f\u043f\u044b \u0437\u0430\u043f\u0438\u0441\u0435\u0439", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e) \u0421\u0435\u0442\u0435\u0432\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435:", "LabelOptionalNetworkPathHelp": "\u0415\u0441\u043b\u0438 \u0434\u0430\u043d\u043d\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043e\u0431\u0449\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0439 \u0432 \u0432\u0430\u0448\u0435\u0439 \u0441\u0435\u0442\u0438, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044f \u043f\u0443\u0442\u044c \u043a \u0441\u0435\u0442\u0435\u0432\u044b\u043c \u043f\u0430\u043f\u043a\u0430\u043c, \u044d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c \u043d\u0430 \u0434\u0440\u0443\u0433\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u0430\u043c \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e.", "ButtonPlayExternalPlayer": "\u0412\u043e\u0441\u043f\u0440. \u0432\u043d\u0435\u0448\u043d\u0438\u043c \u043f\u0440\u043e\u0438\u0433\u0440-\u0435\u043c", - "WillRecord": "\u0411\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c\u0441\u044f", "NotScheduledToRecord": "\u041d\u0435 \u0437\u0430\u043f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c\u0441\u044f", - "SynologyUpdateInstructions": "\u0414\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 DSM \u0438 \u043f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u0432 Package Center." + "SynologyUpdateInstructions": "\u0414\u043b\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 DSM \u0438 \u043f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u0432 Package Center.", + "LatestFromLibrary": "\u041d\u043e\u0432\u0435\u0439\u0448\u0435\u0435: {0}", + "LabelMoviePrefix": "\u041f\u0440\u0435\u0444\u0438\u043a\u0441 \u0444\u0438\u043b\u044c\u043c\u0430", + "LabelMoviePrefixHelp": "\u041f\u0440\u0438 \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u0438 \u043a \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u0432 \u043f\u0440\u0435\u0444\u0438\u043a\u0441\u0430, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0435\u0433\u043e \u0437\u0434\u0435\u0441\u044c, \u0447\u0442\u043e\u0431\u044b \u043e\u043d \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u043b\u0441\u044f \u0432 Emby.", + "HeaderRecordingPostProcessing": "\u041f\u043e\u0441\u0442\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0437\u0430\u043f\u0438\u0441\u0438", + "LabelPostProcessorArguments": "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u044b \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u043e\u043a\u0438 \u043f\u043e\u0441\u0442\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430:", + "LabelPostProcessorArgumentsHelp": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 {path} \u043a\u0430\u043a \u043f\u0443\u0442\u044c \u043a \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u043c\u043e\u043c\u0443 \u0444\u0430\u0439\u043b\u0443.", + "LabelPostProcessor": "\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438", + "ErrorAddingXmlTvFile": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u0435 \u043a XmlTV-\u0444\u0430\u0439\u043b\u0443. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0444\u0430\u0439\u043b \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443." } \ No newline at end of file diff --git a/dashboard-ui/strings/sk.json b/dashboard-ui/strings/sk.json index 5d7b207625..08915e00ca 100644 --- a/dashboard-ui/strings/sk.json +++ b/dashboard-ui/strings/sk.json @@ -1,8 +1,6 @@ { - "LabelExit": "Exit", - "LabelApiDocumentation": "Api Documentation", - "LabelBrowseLibrary": "Browse Library", - "LabelConfigureServer": "Konfigurova\u0165 Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Previous", "LabelFinish": "Finish", "LabelNext": "Next", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Your first name:", "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Configure settings", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organize", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Cancel", "ButtonExit": "Exit", "ButtonNew": "New", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", "LabelCountry": "Country:", "LabelLanguage": "Language:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", "TabPassword": "Password", "TabLibraryAccess": "Library Access", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "Episodes", "TabGenres": "Genres", - "TabPeople": "People", "TabNetworks": "Networks", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Latest Songs", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Type:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Ob\u013e\u00faben\u00e9", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "Moje M\u00e9dia (tla\u010d\u00edtka)", "OptionMyMedia": "Moje M\u00e9dia", "OptionMyMediaSmall": "Moje M\u00e9dia (mal\u00e9)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Ob\u013e\u00faben\u00e9", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Ob\u013e\u00faben\u00e9 epiz\u00f3dy", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Ob\u013e\u00faben\u00e9", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Ob\u013e\u00faben\u00e9", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "Moje M\u00e9dia", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Posledne pridan\u00e9 Filmy", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/sl-SI.json b/dashboard-ui/strings/sl-SI.json index e0bfe95dfa..385c28b1d5 100644 --- a/dashboard-ui/strings/sl-SI.json +++ b/dashboard-ui/strings/sl-SI.json @@ -1,8 +1,6 @@ { - "LabelExit": "Izhod", - "LabelApiDocumentation": "Api Dokumentacija", - "LabelBrowseLibrary": "Brskanje po knjiznici", - "LabelConfigureServer": "Emby Nastavitve", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Nazaj", "LabelFinish": "Konec", "LabelNext": "Naprej", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Ime:", "MoreUsersCanBeAddedLater": "Uporabnike lahko dodate tudi kasneje preko Nadzorne plosce.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Spreminjanje nastavitev", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "Sprejemam pogoje uporabe", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Pogoji uporabe", - "HeaderDeveloperOptions": "Moznosti za Razvijalce", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Konverzija vsebin", "ButtonOrganize": "Razvrscanje", "HeaderSupporterBenefits": "Emby Premiere ugodnosti", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin koda", "OptionHideWatchedContentFromLatestMedia": "Ne prikazi ogledanih vsebin v zadnjih vsebinah", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Cancel", "ButtonExit": "Izhod", "ButtonNew": "New", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "Za dostop, vnesite vaso enostavno pin kodo", "ButtonConfigurePinCode": "Nastavi pin kodo", "RegisterWithPayPal": "Registriraj se z PayPal-om", - "HeaderEnjoyDayTrial": "Uzivaje v 14 Dnevni preizkusni razlicici", "LabelSyncTempPath": "Zacasna pot do datoteke:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Uporabnisko ime ali email", "LabelEnterConnectUserNameHelp": "To je vas Emby online racun uporabnisko ime ali email", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mesane vsebine", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Tip vsebine:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Tip Mape", "LabelCountry": "Drzava:", "LabelLanguage": "Jezik:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Moznosti", "TabPassword": "Geslo", "TabLibraryAccess": "Dostop do knjiznice", "TabAccess": "Dostop", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Omogoci dostop do vseh knjiznic", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Nastavitve Video Predvajanja", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Nastavitve Predvajanja", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Priporoceno", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Priporocila", "TabLatest": "Zadnje", "TabUpcoming": "V prihodu", "TabShows": "Oddaje", "TabEpisodes": "Episodes", "TabGenres": "Zvrsti", - "TabPeople": "Ljudje", "TabNetworks": "Omrezja", "HeaderUsers": "Users", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Pisci", "OptionProducers": "Producenti", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "Moji Vticniki", "TabCatalog": "Katalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Zadnje Skladbe", "HeaderRecentlyPlayed": "Nazadnje Predvajano", "HeaderFrequentlyPlayed": "Pogosto Predvajano", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Tip Videa:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Onemogoci tega uporabnika", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Napredno", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Glasba", "TabOthers": "Ostali", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Napredni Zadetki", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Na voljo je posodobitev", - "NotificationOptionApplicationUpdateInstalled": "Posodobitev je bila namescena", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Vticnik namescen", - "NotificationOptionPluginUninstalled": "Vticnik odstranjen", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Predvajanje videa koncano", - "NotificationOptionAudioPlaybackStopped": "Predvajanje audia koncano", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Napaka v namestitvi", - "NotificationOptionNewLibraryContent": "Dodana nova vsebina", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Zahtevan je ponovni zagon", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Napaka v vticniku", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "Ni Podnapisov", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Nastavitve", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playliste", "ViewTypeMovies": "Filmi", "ViewTypeTvShows": "TV", "ViewTypeGames": "Igre", "ViewTypeMusic": "Glasba", - "ViewTypeMusicGenres": "Zvrsti", - "ViewTypeMusicArtists": "Izvajalci", - "ViewTypeBoxSets": "Zbirke", - "ViewTypeChannels": "Kanali", - "ViewTypeLiveTV": "TV v Zivo", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Zadnje Igre", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Priljubljeno", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Zvrsti", - "ViewTypeTvResume": "Nadaljuj", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Serije", - "ViewTypeTvGenres": "Zvrsti", - "ViewTypeTvFavoriteSeries": "Priljubljene Serije", - "ViewTypeTvFavoriteEpisodes": "Priljubljene Epizode", - "ViewTypeMovieResume": "Nadaljuj", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Filmi", - "ViewTypeMovieCollections": "Zbirke", - "ViewTypeMovieFavorites": "Priljubljeno", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albumi", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "Uporabnik", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "Uporaba te funkcionalnosti zahteva aktivno Emby Premiere narocnino.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Kvaliteta:", - "OptionAutomaticallySyncNewContent": "Samodejno sinhroniziraj nove vsebine", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Latest Movies", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/sv.json b/dashboard-ui/strings/sv.json index fcb0ef6d35..5ac853065b 100644 --- a/dashboard-ui/strings/sv.json +++ b/dashboard-ui/strings/sv.json @@ -1,8 +1,6 @@ { - "LabelExit": "Avsluta", - "LabelApiDocumentation": "Api-dokumentation", - "LabelBrowseLibrary": "Bl\u00e4ddra i biblioteket", - "LabelConfigureServer": "Konfigurera Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Sl\u00e5 ihop serier automatiskt som ligger utspritt under flera kataloger", "LabelPrevious": "F\u00f6reg\u00e5ende", "LabelFinish": "Klart", "LabelNext": "N\u00e4sta", @@ -14,25 +12,13 @@ "LabelYourFirstName": "Ditt f\u00f6rnamn:", "MoreUsersCanBeAddedLater": "Flera anv\u00e4ndare kan skapas senare i Kontrollpanelen.", "UserProfilesIntro": "Emby har inbyggt st\u00f6d f\u00f6r anv\u00e4ndarprofiler som till\u00e5ter att varje anv\u00e4ndare har sina egna inst\u00e4llningar f\u00f6r visning, spelartillst\u00e5nd och f\u00f6r\u00e4ldral\u00e5s.", - "LabelWindowsService": "Windows-tj\u00e4nst", - "AWindowsServiceHasBeenInstalled": "En Windows-tj\u00e4nst har installerats.", - "WindowsServiceIntro1": "Emby Server k\u00f6rs normalt som en skrivbordsapplikation med en ikon i aktivitetsf\u00e4ltet, men om du vill k\u00f6ra den som en bakgrundstj\u00e4nst ist\u00e4llet kan den startas fr\u00e5n tj\u00e4nster i kontrollpanelen ist\u00e4llet.", - "WindowsServiceIntro2": "Om startar Emby Server som en bakgrundstj\u00e4nst genom tj\u00e4nster i kontrollpanelen kan du inte samtidigt starta den som en ikon i aktivitetsf\u00e4ltet. Tj\u00e4nsten m\u00e5ste \u00e4ven konfigureras med administrat\u00f6rsr\u00e4ttigheter via kontrollpanelen. N\u00e4r du k\u00f6r Emby Server som en bakgrundstj\u00e4nst beh\u00f6ver du se till att servicekontot som anv\u00e4nds f\u00f6r tj\u00e4nsten har tillg\u00e5ng till dina mediafiler.", "WizardCompleted": "Det \u00e4r allt vi beh\u00f6ver veta just nu. Emby Server har b\u00f6rjat samla information om ditt mediabibliotek. Kolla in n\u00e5gra av v\u00e5ra appar och klicka sedan p\u00e5 Avsluta<\/b> f\u00f6r att se kontrollpanelen<\/b>.", "LabelConfigureSettings": "Inst\u00e4llningar", - "LabelEnableAutomaticPortMapping": "Aktivera automatisk koppling av portar", - "LabelEnableAutomaticPortMappingHelp": "UPnP m\u00f6jligg\u00f6r automatisk inst\u00e4llning av din router s\u00e5 att du enkelt kan n\u00e5 Emby Server fr\u00e5n Internet. Detta kanske inte fungerar med alla routrar.", "HeaderTermsOfService": "Emby anv\u00e4ndarvillkor", "MessagePleaseAcceptTermsOfService": "V\u00e4nligen acceptera anv\u00e4ndarvillkoren och sekretesspolicy innan du forts\u00e4tter.", "OptionIAcceptTermsOfService": "Jag accepterar anv\u00e4ndarvillkoren", "ButtonPrivacyPolicy": "sekretesspolicy", "ButtonTermsOfService": "Anv\u00e4ndarvillkor", - "HeaderDeveloperOptions": "Utvecklaralternativ", - "OptionEnableWebClientResponseCache": "Aktivera webb response caching", - "OptionDisableForDevelopmentHelp": "Konfigurera efter behov i utvecklingssyfte.", - "OptionEnableWebClientResourceMinification": "Aktivera webbresurs f\u00f6rminskning", - "LabelDashboardSourcePath": "K\u00e4lladress f\u00f6r webbklient", - "LabelDashboardSourcePathHelp": "Om du k\u00f6r Emby Server fr\u00e5n k\u00e4llfiler, ange s\u00f6kv\u00e4gen till mappen dashboard-ui. Alla webbklienter kommer presenteras fr\u00e5n den h\u00e4r platsen.", "ButtonConvertMedia": "Konvertera media", "ButtonOrganize": "Organisera", "HeaderSupporterBenefits": "Emby Premium f\u00f6rm\u00e5ner", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "F\u00f6r att l\u00e4gga till en anv\u00e4ndare som inte \u00e4r listad s\u00e5 m\u00e5ste du f\u00f6rst l\u00e4nka deras konto till Emby Connect ifr\u00e5n profilens anv\u00e4ndarsida.", "LabelPinCode": "Pinkod:", "OptionHideWatchedContentFromLatestMedia": "D\u00f6lj visat inneh\u00e5ll ifr\u00e5n senaste media", + "DeleteMedia": "Ta bort media", "HeaderSync": "Synkronisera", "ButtonOk": "OK", "ButtonCancel": "Avbryt", "ButtonExit": "Avsluta", "ButtonNew": "Nytillkommet", + "OptionDev": "Utvecklarversion", + "OptionBeta": "Betaversion", "HeaderTaskTriggers": "Aktivitetsutl\u00f6sare", "HeaderTV": "TV", "HeaderAudio": "Ljud", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "F\u00f6r \u00e5tkomst, skriv in din l\u00e4tta pinkod", "ButtonConfigurePinCode": "Konfigurera pinkod", "RegisterWithPayPal": "Registrera med PayPal", - "HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod", "LabelSyncTempPath": "Tempor\u00e4r fils\u00f6kv\u00e4g:", "LabelSyncTempPathHelp": "Ange en anpassad s\u00f6kv\u00e4g f\u00f6r synkronisering. Omkodad media som skapas under synkroniseringsprocessen kommer lagras h\u00e4r.", "LabelCustomCertificatePath": "Anpassad s\u00f6kv\u00e4g f\u00f6r certifikat:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "Om aktiverad, kommer filer med .rar och .zip f\u00f6rl\u00e4ngningar att uppt\u00e4ckas som mediefiler.", "LabelEnterConnectUserName": "Anv\u00e4ndarnamn eller email:", "LabelEnterConnectUserNameHelp": "Detta \u00e4r anv\u00e4ndarnamnet eller epost-adressen till ditt Emby Onlinekonto.", - "LabelEnableEnhancedMovies": "Aktivera ut\u00f6kade filmvyer", - "LabelEnableEnhancedMoviesHelp": "N\u00e4r aktiverad kommer filmer visas som mappar som inkluderar trailers, extramaterial, rolls\u00e4ttning och crew samt annat relaterat material.", "HeaderSyncJobInfo": "Synkroniseringsjobb", "FolderTypeMixed": "Blandat inneh\u00e5ll", "FolderTypeMovies": "Filmer", @@ -84,7 +70,6 @@ "LabelContentType": "Inneh\u00e5llstyp:", "TitleScheduledTasks": "Schemalagda aktiviteter", "HeaderSetupLibrary": "S\u00e4tt upp dina mediabibliotek", - "ButtonAddMediaFolder": "Skapa mediamapp", "LabelFolderType": "Typ av mapp:", "LabelCountry": "Land:", "LabelLanguage": "Spr\u00e5k:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Om grafik och metadata sparas tillsammans med media \u00e4r de enkelt \u00e5tkomliga f\u00f6r redigering.", "LabelDownloadInternetMetadata": "H\u00e4mta grafik och metadata fr\u00e5n Internet", "LabelDownloadInternetMetadataHelp": "Emby Server kan h\u00e4mta information om dina filerna i ditt bibliotek och presentera rikligt med information.", - "TabPreferences": "Inst\u00e4llningar", "TabPassword": "L\u00f6senord", "TabLibraryAccess": "\u00c5tkomst till biblioteket", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Aktivera \u00e5tkomst till alla bibliotek", "DeviceAccessHelp": "Detta till\u00e4mpas endast f\u00f6r enheter som kan bli unikt identifierade och som inte f\u00f6rhindrar \u00e5tkomst till browsern. Filtering av anv\u00e4ndarenheter kommer att blockera dom fr\u00e5n att anv\u00e4nda nya enheter tills dom har blivit godk\u00e4nda h\u00e4r.", "LabelDisplayMissingEpisodesWithinSeasons": "Visa saknade avsnitt i s\u00e4songer", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "Detta m\u00e5ste ocks\u00e5 vara aktiverat f\u00f6r TV-bibliotek p\u00e5 Embyservern.", "LabelUnairedMissingEpisodesWithinSeasons": "Visa \u00e4nnu ej s\u00e4nda avsnitt i s\u00e4songer", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Inst\u00e4llningar f\u00f6r videouppspelning", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Uppspelningsinst\u00e4llningar", "LabelAudioLanguagePreference": "\u00d6nskat spr\u00e5k f\u00f6r ljudsp\u00e5r", "LabelSubtitleLanguagePreference": "\u00d6nskat spr\u00e5k f\u00f6r undertexter:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "Bildf\u00f6rh\u00e5llande 1:1 rekommenderas. Endast JPG\/PNG.", "MessageNothingHere": "Ingenting h\u00e4r.", "MessagePleaseEnsureInternetMetadata": "Var god se till att h\u00e4mtning av metadata via Internet \u00e4r aktiverad.", - "TabSuggested": "Rekommenderas", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "F\u00f6rslag", "TabLatest": "Nytillkommet", "TabUpcoming": "Kommande", "TabShows": "Serier", "TabEpisodes": "Avsnitt", "TabGenres": "Genrer", - "TabPeople": "Personer", "TabNetworks": "TV-bolag", "HeaderUsers": "Anv\u00e4ndare", "HeaderFilters": "Filter", @@ -166,6 +153,7 @@ "OptionWriters": "Manusf\u00f6rfattare", "OptionProducers": "Producenter", "HeaderResume": "\u00c5teruppta", + "HeaderContinueWatching": "Forts\u00e4tt titta p\u00e5", "HeaderNextUp": "N\u00e4stkommande", "NoNextUpItemsMessage": "Hittade inget. S\u00e4tt ig\u00e5ng och titta!", "HeaderLatestEpisodes": "Senaste avsnitten", @@ -185,6 +173,7 @@ "OptionPlayCount": "Antal visningar", "OptionDatePlayed": "Senast visad", "OptionDateAdded": "Inlagd den", + "DateAddedValue": "Datum tillagt: {0}", "OptionAlbumArtist": "Albumartist", "OptionArtist": "Artist", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Bithastighet f\u00f6r video", "OptionResumable": "Kan \u00e5terupptas", "ScheduledTasksHelp": "Klicka p\u00e5 en aktivitet f\u00f6r att \u00e4ndra k\u00f6rtider.", - "ScheduledTasksTitle": "Schemalagda aktiviteter", "TabMyPlugins": "Mina till\u00e4gg", "TabCatalog": "Katalog", "TitlePlugins": "Till\u00e4gg", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Nytillkomna l\u00e5tar", "HeaderRecentlyPlayed": "Nyligen spelade", "HeaderFrequentlyPlayed": "Ofta spelade", - "DevBuildWarning": "Utvecklingsversioner \u00e4r \"bleeding edge\". Dessa kommer ut ofta och \u00e4r otestade. Appen kanske kraschar och vissa delar kanske inte alls fungerar.", "LabelVideoType": "Videoformat:", "OptionBluray": "Blu-ray", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Anv\u00e4ndbart f\u00f6r privata konton eller g\u00f6mda administrat\u00f6rskonton. Anv\u00e4ndaren be\u00f6ver logga in manuellt genom att skriva sitt anv\u00e4ndarnamn och l\u00f6senord.", "OptionDisableUser": "Sp\u00e4rra den h\u00e4r anv\u00e4ndaren", "OptionDisableUserHelp": "Sp\u00e4rrade anv\u00e4ndare till\u00e5ts ej kontakta servern. Eventuella p\u00e5g\u00e5ende anslutningar avbryts omedelbart.", - "HeaderAdvancedControl": "Avancerade anv\u00e4ndarinst\u00e4llningar", "LabelName": "Namn:", "ButtonHelp": "Hj\u00e4lp", "OptionAllowUserToManageServer": "Till\u00e5t denna anv\u00e4ndare att administrera servern", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheter betraktas som delade tills en anv\u00e4ndare b\u00f6rjar kontrollera den.", "OptionAllowLinkSharing": "Till\u00e5t delning f\u00f6r sociala medier", "OptionAllowLinkSharingHelp": "Endast webbsidor med mediainformation delas. Mediafiler delas aldrig publikt. Delningar \u00e4r tidsbegr\u00e4nsade och upph\u00f6r efter {0} dagar.", - "HeaderSharing": "Delning", "HeaderRemoteControl": "Fj\u00e4rrkontroll", "OptionMissingTmdbId": "TMDB-ID saknas", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "S\u00f6kv\u00e4gar", "TabServer": "Server", "TabTranscoding": "Omkodning", - "TitleAdvanced": "Avancerat", "OptionRelease": "Officiell version", - "OptionBeta": "Betaversion", - "OptionDev": "Utvecklarversion", "LabelAllowServerAutoRestart": "Till\u00e5t att servern startas om automatiskt efter uppdateringar", "LabelAllowServerAutoRestartHelp": "Servern startas om endast d\u00e5 inga anv\u00e4ndare \u00e4r inloggade.", "LabelRunServerAtStartup": "Starta servern d\u00e5 systemet startas", @@ -330,11 +312,9 @@ "TabGames": "Spel", "TabMusic": "Musik", "TabOthers": "\u00d6vrigt", - "HeaderExtractChapterImagesFor": "Extrahera kapitelbildrutor f\u00f6r:", "OptionMovies": "Filmer", "OptionEpisodes": "Avsnitt", "OptionOtherVideos": "Andra videor", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personlig api-nyckel:", "LabelFanartApiKeyHelp": "H\u00e4mtningar av fanart utan en personling api-nyckel ger tillg\u00e5ng till filer som godk\u00e4nts f\u00f6r \u00f6ver 7 dagar sedan. Med en personlig API-nyckel \u00e4ndras det till 48 timmar. Om du \u00e4ven \u00e4r VIP-medlem \u00e4ndras det ytterligare till cirka 10 minuter.", "ExtractChapterImagesHelp": "Att extrahera kapitelrutor m\u00f6jligg\u00f6r f\u00f6r vissa klienter att visa grafiska menyer f\u00f6r kapitelval. Aktiviteten kan vara l\u00e5ngsam, cpu-intensiv och kan kr\u00e4va flera gigabyte h\u00e5rddiskutrymme p\u00e5 din Emby Server. Aktiviteten k\u00f6rs n\u00e4r nya videofiler uppt\u00e4cks och \u00e4r \u00e4ven schemalagd under nattetid, men det g\u00e5r att \u00e4ndra under schemalagda aktiviteter. Det \u00e4r inte rekommenderat att k\u00f6ra den h\u00e4r aktiviteten vid tider med h\u00f6g belastning.", @@ -350,15 +330,15 @@ "TabCollections": "Samlingar", "HeaderChannels": "Kanaler", "TabRecordings": "Inspelningar", - "TabScheduled": "Bokade", "TabSeries": "Serie", "TabFavorites": "Favoriter", "TabMyLibrary": "Mitt bibliotek", "ButtonCancelRecording": "Avbryt inspelning", - "LabelPrePaddingMinutes": "Marginal i minuter f\u00f6re programstart:", - "LabelPostPaddingMinutes": "Marginal i minuter efter programslut:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minuter f\u00f6re", + "MinutesAfter": "minuter efter", "HeaderWhatsOnTV": "S\u00e4nds just nu", - "TabStatus": "Status", "TabSettings": "Inst\u00e4llningar", "ButtonRefreshGuideData": "Uppdatera programguiden", "ButtonRefresh": "Uppdatera", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Spela in p\u00e5 alla kanaler", "OptionRecordAnytime": "Spela in n\u00e4r som helst", "OptionRecordOnlyNewEpisodes": "Spela bara in nya avsnitt", - "HeaderRepeatingOptions": "Upprepningsalternativ", "HeaderDays": "Dagar", "HeaderActiveRecordings": "P\u00e5g\u00e5ende inspelningar", "HeaderLatestRecordings": "Senaste inspelningarna", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Senaste spelen", "HeaderRecentlyPlayedGames": "Nyligen spelade spel", "TabGameSystems": "Spelkonsoler", - "TitleMediaLibrary": "Mediabibliotek", "TabFolders": "Mappar", "TabPathSubstitution": "S\u00f6kv\u00e4gsutbyte", "LabelSeasonZeroDisplayName": "Visning av S\u00e4song 0", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Hantera olika versioner separat", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Saknas", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "S\u00f6kv\u00e4gsutbyten betyder att en plats p\u00e5 servern kopplas till en lokal fils\u00f6kv\u00e4g p\u00e5 en klient. P\u00e5 s\u00e5 s\u00e4tt f\u00e5r klienten direkt tillg\u00e5ng till material p\u00e5 servern och kan spela upp det direkt via n\u00e4tverket utan att f\u00f6rbruka serverresurser f\u00f6r str\u00f6mning och omkodning.", - "HeaderFrom": "Fr\u00e5n", - "HeaderTo": "Till", - "LabelFrom": "Fr\u00e5n:", - "LabelTo": "Till:", - "LabelToHelp": "Exempel: \\\\MinServer\\Filmer (en s\u00f6kv\u00e4g som kan n\u00e5s av Emby-appar)", - "ButtonAddPathSubstitution": "L\u00e4gg till utbytess\u00f6kv\u00e4g", "OptionSpecialEpisode": "Specialavsnitt", "OptionMissingEpisode": "Saknade avsnitt", "OptionUnairedEpisode": "Ej s\u00e4nda avsnitt", "OptionEpisodeSortName": "Sorteringstitel f\u00f6r avsnitt", "OptionSeriesSortName": "Seriens namn", "OptionTvdbRating": "TVDB-betyg", - "EditCollectionItemsHelp": "L\u00e4gg till eller ta bort filmer, tv-serier, album, b\u00f6cker eller spel du vill gruppera inom den h\u00e4r samlingen.", "HeaderAddTitles": "L\u00e4gg till titlar", "LabelEnableDlnaPlayTo": "Anv\u00e4nd DLNA spela-upp-p\u00e5", "LabelEnableDlnaPlayToHelp": "Emby kan hitta enheter p\u00e5 ditt n\u00e4tverk och ge dig m\u00f6jlighet att fj\u00e4rrstyra dem.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Systemprofiler", "CustomDlnaProfilesHelp": "Skapa en anpassad profil f\u00f6r ny enhet eller f\u00f6r att \u00f6verlappa en systemprofil.", "SystemDlnaProfilesHelp": "Systemprofiler \u00e4r skrivskyddade. \u00c4ndringar av en systemprofil resulterar att en ny anpassad profil skapas.", - "TitleDashboard": "Kontrollpanel", "TabHome": "Hem", "TabInfo": "Info", "HeaderLinks": "L\u00e4nkar", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Objekt betraktas som ej spelade om uppspelningen stoppas f\u00f6re denna tidpunkt", "LabelMaxResumePercentageHelp": "Objekt betraktas som f\u00e4rdigspelade om uppspelningen stoppas efter denna tidpunkt", "LabelMinResumeDurationHelp": "Objekt med speltid kortare \u00e4n s\u00e5 h\u00e4r kan ej \u00e5terupptas", - "TitleAutoOrganize": "Katalogisera automatiskt", "TabActivityLog": "Aktivitetslogg", "TabSmartMatches": "Smarta matchningar", "TabSmartMatchInfo": "Hantera dina smarta matchningar som lades till i dialogen f\u00f6r \u00e4ndring av automatisk katalogisering.", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Hj\u00e4lp till att s\u00e4kerst\u00e4lla den fortsatta utvecklingen av det h\u00e4r projektet genom att k\u00f6pa Emby Premiere. Med en del av inkomsterna kommer vi bidra till andra fria verktyg vi \u00e4r beroende av.", "DonationNextStep": "N\u00e4r du \u00e4r klar, \u00e5terv\u00e4nd och fyll i din Emby Premiere-nyckel, som du f\u00e5r via epost.", "AutoOrganizeHelp": "Automatisk katalogisering bevakar angivna mappar och flyttar nytillkomna objekt till dina mediamappar.", - "AutoOrganizeTvHelp": "Katalogiseringen av TV-avsnitt flyttar bara nya avsnitt av befintliga serier. Den skapar inte mappar f\u00f6r nya serier.", "OptionEnableEpisodeOrganization": "Aktivera katalogisering av nya avsnitt", "LabelWatchFolder": "Bevakad mapp:", "LabelWatchFolderHelp": "Servern s\u00f6ker igenom den h\u00e4r mappen d\u00e5 den schemalagda katalogiseringen k\u00f6rs.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "P\u00e5g\u00e5ende aktiviteter", "HeaderActiveDevices": "Aktiva enheter", "HeaderPendingInstallations": "V\u00e4ntande installationer", - "HeaderServerInformation": "Serverinformation", "ButtonRestartNow": "Starta om nu", "ButtonRestart": "Starta om", "ButtonShutdown": "St\u00e4ng av", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere-nyckeln saknas eller \u00e4r ogiltig.", "ErrorMessageInvalidKey": "F\u00f6r att premiuminneh\u00e5ll ska registrerars, s\u00e5 m\u00e5ste du ha en aktiv Emby Premium-prenumeration.", "HeaderDisplaySettings": "Visningsalternativ", - "TabPlayTo": "Spela upp p\u00e5", "LabelEnableDlnaServer": "Aktivera DLNA-server", "LabelEnableDlnaServerHelp": "Till\u00e5t att UPnP-enheter p\u00e5 ditt n\u00e4tverk kan se och spela upp inneh\u00e5ll fr\u00e5n din Emby Server.", "LabelEnableBlastAliveMessages": "Skicka ut \"jag lever\"-meddelanden", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Anger tid i sekunder mellan varje \"jag lever\"-meddelande.", "LabelDefaultUser": "F\u00f6rvald anv\u00e4ndare:", "LabelDefaultUserHelp": "Anger vilket anv\u00e4ndarbibliotek som skall visas p\u00e5 anslutna enheter. Denna inst\u00e4llning kan \u00e4ndras p\u00e5 enhetsbasis med hj\u00e4lp av en enhetsprofiler.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Serverinst\u00e4llningar", "HeaderRequireManualLogin": "Kr\u00e4v att anv\u00e4ndarnamn anges manuellt f\u00f6r:", "HeaderRequireManualLoginHelp": "Om inaktiverat, kan Emby-apparna visa en inloggningsbild f\u00f6r visuellt val av anv\u00e4ndare.", "OptionOtherApps": "Andra appar", "OptionMobileApps": "Mobilappar", - "HeaderNotificationList": "Klicka p\u00e5 en meddelandetyp f\u00f6r att \u00e4ndra dess inst\u00e4llningar.", - "NotificationOptionApplicationUpdateAvailable": "Ny programversion tillg\u00e4nglig", - "NotificationOptionApplicationUpdateInstalled": "Programuppdatering installerad", - "NotificationOptionPluginUpdateInstalled": "Till\u00e4gg har uppdaterats", - "NotificationOptionPluginInstalled": "Till\u00e4gg har installerats", - "NotificationOptionPluginUninstalled": "Till\u00e4gg har avinstallerats", - "NotificationOptionVideoPlayback": "Videouppspelning har p\u00e5b\u00f6rjats", - "NotificationOptionAudioPlayback": "Ljuduppspelning har p\u00e5b\u00f6rjats", - "NotificationOptionGamePlayback": "Spel har startats", - "NotificationOptionVideoPlaybackStopped": "Videouppspelning stoppad", - "NotificationOptionAudioPlaybackStopped": "Ljuduppspelning stoppad", - "NotificationOptionGamePlaybackStopped": "Spel stoppat", - "NotificationOptionTaskFailed": "Schemalagd aktivitet har misslyckats", - "NotificationOptionInstallationFailed": "Fel vid installation", - "NotificationOptionNewLibraryContent": "Nytt inneh\u00e5ll har tillkommit", - "NotificationOptionCameraImageUploaded": "Kaberabild uppladdad", - "NotificationOptionUserLockedOut": "Anv\u00e4ndare har l\u00e5sts ute", - "HeaderSendNotificationHelp": "Meddelanden skickas till din Emby-inkorg. Fler val kan installeras under menyn Tj\u00e4nster.", - "NotificationOptionServerRestartRequired": "Servern m\u00e5ste startas om", "LabelNotificationEnabled": "Aktivera denna meddelandetyp", "LabelMonitorUsers": "\u00d6vervaka aktivitet fr\u00e5n:", "LabelSendNotificationToUsers": "Skicka meddelande till:", @@ -662,12 +606,10 @@ "ButtonPrevious": "F\u00f6reg\u00e5ende", "LabelGroupMoviesIntoCollections": "Gruppera filmer i samlingsboxar", "LabelGroupMoviesIntoCollectionsHelp": "I filmlistor visas filmer som ing\u00e5r i en samlingsbox som ett enda objekt.", - "NotificationOptionPluginError": "Fel uppstod med till\u00e4gget", "ButtonVolumeUp": "H\u00f6j volymen", "ButtonVolumeDown": "S\u00e4nk volymen", "HeaderLatestMedia": "Nytillkommet", "OptionNoSubtitles": "Inga undertexter", - "OptionSpecialFeatures": "Extramaterial", "HeaderCollections": "Samlingar", "LabelProfileCodecsHelp": "\u00c5tskilda med kommatecken, detta kan l\u00e4mnas tomt f\u00f6r att g\u00e4lla f\u00f6r alla kodningsformat.", "LabelProfileContainersHelp": "\u00c5tskilda med kommatecken, detta kan l\u00e4mnas tomt f\u00f6r att g\u00e4lla f\u00f6r alla beh\u00e5llare.", @@ -701,7 +643,7 @@ "LabelEmbedAlbumArtDidl": "B\u00e4dda in omslagsbilder i Didl", "LabelEmbedAlbumArtDidlHelp": "Vissa enheter f\u00f6redrar den h\u00e4r metoden att ta fram omslagsbilder. Andra kanske avbryter avspelningen om detta val \u00e4r aktiverat.", "LabelAlbumArtPN": "PN f\u00f6r omslagsbilder:", - "LabelAlbumArtHelp": "Det PN som anv\u00e4nds f\u00f6r omslagsbilder, inom attributet dlna:profileID hos upnp:albumArtURI. Vissa klienter kr\u00e4ver ett specifikt v\u00e4rde, oavsett bildens storlek.", + "LabelAlbumArtHelp": "PN som anv\u00e4nds f\u00f6r omslagsbilder, inom attributet dlna:profileID hos upnp:albumArtURI. Vissa enheter kr\u00e4ver ett specifikt v\u00e4rde, oavsett bildens storlek.", "LabelAlbumArtMaxWidth": "Maximal bredd f\u00f6r omslagsbilder:", "LabelAlbumArtMaxWidthHelp": "H\u00f6gsta uppl\u00f6sning hos omslagsbilder presenterade via upnp:albumArtURI.", "LabelAlbumArtMaxHeight": "Skivomslagens maxh\u00f6jd:", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "Inga till\u00e4gg tillg\u00e4ngliga.", "LabelDisplayPluginsFor": "Visa till\u00e4gg f\u00f6r:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Premiere", "LabelEpisodeNamePlain": "Avsnittsnamn", "LabelSeriesNamePlain": "Seriens namn", "ValueSeriesNamePeriod": "Seriens.namn", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Avslutande avsnittsnummer", "HeaderTypeText": "Ange text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "S\u00f6k efter undertexter", - "MessageNoSubtitleSearchResultsFound": "S\u00f6kningen gav inga resultat.", "TabDisplay": "Visning", "TabLanguages": "Spr\u00e5k", "TabAppSettings": "Appinst\u00e4llningar", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "Om aktiverat spelas ledmotiv upp vid bl\u00e4ddring i biblioteket.", "LabelEnableBackdropsHelp": "Om aktiverat visas fondbilder i bakgrunden av vissa sidor vid bl\u00e4ddring i biblioteket.", "HeaderHomePage": "Hemsk\u00e4rm", - "HeaderSettingsForThisDevice": "Inst\u00e4llningar f\u00f6r den h\u00e4r enheten", "OptionAuto": "Auto", "OptionYes": "Ja", "OptionNo": "Nej", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Startsidans sektion 2:", "LabelHomePageSection3": "Startsidans sektion 3:", "LabelHomePageSection4": "Startsidans sektion 4:", - "OptionMyMediaButtons": "Min media (knappar)", "OptionMyMedia": "Min media", "OptionMyMediaSmall": "Min media (liten)", "OptionResumablemedia": "\u00c5teruppta", @@ -815,53 +752,21 @@ "HeaderReports": "Rapporter", "HeaderSettings": "Inst\u00e4llningar", "OptionDefaultSort": "F\u00f6rval", - "OptionCommunityMostWatchedSort": "Oftast visade", "TabNextUp": "N\u00e4stkommande", - "PlaceholderUsername": "Anv\u00e4ndarnamn", "HeaderBecomeProjectSupporter": "Skaffa Emby Premiere", "MessageNoMovieSuggestionsAvailable": "Det finns inga filmf\u00f6rslag f\u00f6r tillf\u00e4llet. Efter att ha sett ett antal filmer kan du \u00e5terkomma hit f\u00f6r att se dina f\u00f6rslag.", "MessageNoCollectionsAvailable": "Samlingar g\u00f6r det m\u00f6jligt att avnjuta personliga grupperingar av filmer, serier, Album, b\u00f6cker och spel. Klicka p\u00e5 knappen + f\u00f6r att b\u00f6rja skapa samlingar.", "MessageNoPlaylistsAvailable": "Spellistor l\u00e5ter dig skapa listor med inneh\u00e5ll att spela upp i ordning. F\u00f6r att l\u00e4gga till objekt i spellistor, h\u00f6gerklicka eller tryck-och-h\u00e5ll och v\u00e4lj \"l\u00e4gg till i spellista\".", "MessageNoPlaylistItemsAvailable": "Den h\u00e4r spellistan \u00e4r tom.", - "ButtonDismiss": "Avvisa", "ButtonEditOtherUserPreferences": "\u00c4ndra den h\u00e4r anv\u00e4ndarens profil, bild och personliga inst\u00e4llningar.", "LabelChannelStreamQuality": "F\u00f6redragen kvalitet p\u00e5 internetkanaler:", "LabelChannelStreamQualityHelp": "N\u00e4r bandbredden \u00e4r begr\u00e4nsad kan en l\u00e4gre kvalitet ge en mera st\u00f6rningsfri upplevelse.", "OptionBestAvailableStreamQuality": "B\u00e4sta tillg\u00e4ngliga", "ChannelSettingsFormHelp": "Installera kanaler, t ex Trailers och Vimeo, via till\u00e4ggskatalogen.", - "ViewTypePlaylists": "Spellistor", "ViewTypeMovies": "Filmer", "ViewTypeTvShows": "TV", "ViewTypeGames": "Spel", "ViewTypeMusic": "Musik", - "ViewTypeMusicGenres": "Genrer", - "ViewTypeMusicArtists": "Artister", - "ViewTypeBoxSets": "Samlingar", - "ViewTypeChannels": "Kanaler", - "ViewTypeLiveTV": "Live-TV", - "ViewTypeLiveTvNowPlaying": "Visas nu", - "ViewTypeLatestGames": "Senaste spelen", - "ViewTypeRecentlyPlayedGames": "Nyligen spelade", - "ViewTypeGameFavorites": "Favoriter", - "ViewTypeGameSystems": "Spelsystem", - "ViewTypeGameGenres": "Genrer", - "ViewTypeTvResume": "\u00c5teruppta", - "ViewTypeTvNextUp": "N\u00e4stkommande", - "ViewTypeTvLatest": "Nytillkommet", - "ViewTypeTvShowSeries": "Serier", - "ViewTypeTvGenres": "Genrer", - "ViewTypeTvFavoriteSeries": "Favoritserier", - "ViewTypeTvFavoriteEpisodes": "Favoritavsnitt", - "ViewTypeMovieResume": "\u00c5teruppta", - "ViewTypeMovieLatest": "Nytillkommet", - "ViewTypeMovieMovies": "Filmer", - "ViewTypeMovieCollections": "Samlingar", - "ViewTypeMovieFavorites": "Favoriter", - "ViewTypeMovieGenres": "Genrer", - "ViewTypeMusicLatest": "Nytillkommet", - "ViewTypeMusicPlaylists": "Spellistor", - "ViewTypeMusicAlbums": "Album", - "ViewTypeMusicAlbumArtists": "Albumartister", "HeaderOtherDisplaySettings": "Visningsalternativ", "ViewTypeMusicSongs": "L\u00e5tar", "ViewTypeMusicFavorites": "Favoriter", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "N\u00e4r bilder h\u00e4mtas fr\u00e5n Internet kan de sparas i b\u00e5de extrafanart- och extrathumbs-mapparna f\u00f6r att ge maximal kompatibilitet med Kodi-skins.", "TabServices": "Tj\u00e4nster", "TabLogs": "Loggfiler", - "HeaderServerLogFiles": "Serverloggfiler:", "TabBranding": "Branding", "HeaderBrandingHelp": "\u00c4ndra utseendet p\u00e5 Emby f\u00f6r att matcha din grupp eller organisation.", "LabelLoginDisclaimer": "Ansvarsbegr\u00e4nsning vid inloggning:", @@ -917,7 +821,6 @@ "HeaderDevice": "Enhet", "HeaderUser": "Anv\u00e4ndare", "HeaderDateIssued": "Utgivningsdatum", - "LabelChapterName": "Kapitel {0}", "HeaderHttpHeaders": "Http-rubriker", "HeaderIdentificationHeader": "ID-rubrik", "LabelValue": "V\u00e4rde:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Delstr\u00e4ng", "TabView": "Vy", - "TabSort": "Sortera", "TabFilter": "Filtrera", "ButtonView": "Visa", "LabelPageSize": "Max antal objekt:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Live-str\u00f6mning via Http", "LabelContext": "Metod:", - "OptionContextStreaming": "Str\u00f6mning", - "OptionContextStatic": "Synkronisering", "TabPlaylists": "Spellistor", "ButtonClose": "St\u00e4ng", "LabelAllLanguages": "Alla spr\u00e5k", @@ -956,7 +856,6 @@ "LabelImage": "Bild:", "HeaderImages": "Bilder", "HeaderBackdrops": "Fondbilder", - "HeaderScreenshots": "Sk\u00e4rmklipp", "HeaderAddUpdateImage": "L\u00e4gg till\/uppdatera bild", "LabelDropImageHere": "Dra bild hit", "LabelJpgPngOnly": "Endast JPG\/PNG", @@ -973,7 +872,6 @@ "OptionLocked": "L\u00e5st", "OptionUnidentified": "Oidentifierad", "OptionMissingParentalRating": "\u00c5ldersgr\u00e4ns saknas", - "OptionStub": "Stump", "OptionSeason0": "S\u00e4song 0", "LabelReport": "Rapport:", "OptionReportSongs": "L\u00e5tar", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Album", "ButtonMore": "Mer", "HeaderActivity": "Aktivitet", - "ScheduledTaskStartedWithName": "{0} startad", - "ScheduledTaskCancelledWithName": "{0} avbr\u00f6ts", - "ScheduledTaskCompletedWithName": "{0} slutf\u00f6rd", - "ScheduledTaskFailed": "Planerad uppgift f\u00e4rdig", "PluginInstalledWithName": "{0} installerades", "PluginUpdatedWithName": "{0} uppdaterades", "PluginUninstalledWithName": "{0} avinstallerades", - "ScheduledTaskFailedWithName": "{0} misslyckades", - "DeviceOnlineWithName": "{0} \u00e4r ansluten", "UserOnlineFromDevice": "{0} \u00e4r uppkopplad fr\u00e5n {1}", - "DeviceOfflineWithName": "{0} har avbrutit anslutningen", "UserOfflineFromDevice": "{0} har avbrutit anslutningen fr\u00e5n {1}", - "SubtitlesDownloadedForItem": "Undertexter har laddats ner f\u00f6r {0}", - "SubtitleDownloadFailureForItem": "Nerladdning av undertexter f\u00f6r {0} misslyckades", "LabelRunningTimeValue": "Speltid: {0}", "LabelIpAddressValue": "IP-adress: {0}", "UserLockedOutWithName": "Anv\u00e4ndare {0} har l\u00e5sts ute", "UserConfigurationUpdatedWithName": "Anv\u00e4ndarinst\u00e4llningarna f\u00f6r {0} har uppdaterats", "UserCreatedWithName": "Anv\u00e4ndaren {0} har skapats", - "UserPasswordChangedWithName": "L\u00f6senordet f\u00f6r {0} har \u00e4ndrats", "UserDeletedWithName": "Anv\u00e4ndaren {0} har tagits bort", "MessageServerConfigurationUpdated": "Server konfigurationen har uppdaterats", "MessageNamedServerConfigurationUpdatedWithValue": "Serverinst\u00e4llningarnas del {0} ar uppdaterats", "MessageApplicationUpdated": "Emby Server har uppdaterats", "UserDownloadingItemWithValues": "{0} laddar ned {1}", - "UserStartedPlayingItemWithValues": "{0} har p\u00e5b\u00f6rjat uppspelning av {1}", - "UserStoppedPlayingItemWithValues": "{0} har avslutat uppspelning av {1}", - "AppDeviceValues": "App: {0}, enhet: {1}", "ProviderValue": "K\u00e4lla: {0}", "HeaderRecentActivity": "Senaste aktivitet", "HeaderPeople": "Personer", @@ -1051,27 +936,18 @@ "LabelAirDate": "S\u00e4ndningsdagar:", "LabelAirTime:": "S\u00e4ndningstid:", "LabelRuntimeMinutes": "Speltid (min):", - "LabelRevenue": "Int\u00e4kter ($):", - "HeaderAlternateEpisodeNumbers": "Alternativ avsnittsnumrering", "HeaderSpecialEpisodeInfo": "Information om specialavsnitt", - "HeaderExternalIds": "Externa ID:n", - "LabelAirsBeforeSeason": "S\u00e4nds f\u00f6re s\u00e4song:", - "LabelAirsAfterSeason": "S\u00e4nds efter s\u00e4song:", - "LabelAirsBeforeEpisode": "S\u00e4nds f\u00f6re avsnitt:", "LabelDisplaySpecialsWithinSeasons": "Visa specialavsnitt i de s\u00e4songer de s\u00e4ndes i", - "HeaderCountries": "L\u00e4nder", "HeaderGenres": "Genrer", "HeaderPlotKeywords": "Nyckelord i handlingen", "HeaderStudios": "Studior", "HeaderTags": "Etiketter", - "MessageLeaveEmptyToInherit": "L\u00e4mna tomt f\u00f6r att \u00e4rva inst\u00e4llningarna fr\u00e5n \u00f6verordnat objekt, eller anv\u00e4nda globalt f\u00f6rval.", "OptionNoTrailer": "Trailer saknas", "ButtonPurchase": "K\u00f6p", "OptionActor": "Sk\u00e5despelare", "OptionComposer": "Komposit\u00f6r", "OptionDirector": "Regiss\u00f6r", "OptionProducer": "Producent", - "OptionWriter": "Manusf\u00f6rfattare", "LabelAirDays": "S\u00e4ndningsdagar:", "LabelAirTime": "S\u00e4ndningstid:", "HeaderMediaInfo": "Mediainformation", @@ -1160,7 +1036,6 @@ "TabParentalControl": "F\u00f6r\u00e4ldral\u00e5s", "HeaderAccessSchedule": "Schema f\u00f6r \u00e5tkomst", "HeaderAccessScheduleHelp": "Skapa ett schema f\u00f6r att begr\u00e4nsa \u00e5tkomsten till vissa tider.", - "ButtonAddSchedule": "Skapa schema", "LabelAccessDay": "Veckodag:", "LabelAccessStart": "Starttid:", "LabelAccessEnd": "Sluttid:", @@ -1171,7 +1046,7 @@ "MessageProfileInfoSynced": "Information i anv\u00e4ndarprofil synkroniserad med Emby Connect", "HeaderOptionalLinkEmbyAccount": "Valfritt: L\u00e4nka till ditt Emby Connect-konto", "ButtonTrailer": "Trailer", - "MessageNoTrailersFound": "Hittade inga trailers. Installera Trailer-kanalern f\u00f6r att \u00f6ka din biok\u00e4nsla genom att l\u00e4gga till ett bilbliotek av trailers.", + "MessageNoTrailersFound": "Hittade inga trailers. Installera Trailer-kanalen och \u00f6ka biok\u00e4nslan genom att l\u00e4gga till ett bibliotek av trailers.", "HeaderNewUsers": "Nya anv\u00e4ndare", "ButtonSignUp": "Registrera dig", "ButtonForgotPassword": "Gl\u00f6mt l\u00f6senord", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Synkroniseringsjobb", "HeaderThisUserIsCurrentlyDisabled": "Den h\u00e4r anv\u00e4ndaren \u00e4r inaktiverad", "MessageReenableUser": "Se nedan f\u00f6r att aktivera igen", - "LabelEnableInternetMetadataForTvPrograms": "H\u00e4mta metadata f\u00f6r:", "OptionTVMovies": "TV-filmer", "HeaderUpcomingMovies": "Kommande filmer", "HeaderUpcomingSports": "Kommande sport", @@ -1229,7 +1103,7 @@ "OptionAllowMediaPlaybackTranscodingHelp": "Anv\u00e4ndare f\u00e5r ett v\u00e4nligt meddelande n\u00e4r inneh\u00e5ll inte kan spelas p\u00e5 grund av en policy.", "TabStreaming": "Str\u00f6mning", "LabelRemoteClientBitrateLimit": "Maximal hastighet f\u00f6r str\u00f6mning till Internet (Mbps):", - "LabelRemoteClientBitrateLimitHelp": "En valfri inst\u00e4llning f\u00f6r att begr\u00e4nsa bandbredden f\u00f6r utg\u00e5ende trafik till externa klienter. Det \u00e4r anv\u00e4ndbart f\u00f6r att hindra klienter som \u00f6nskar en h\u00f6gre bandbredd \u00e4n din Internetuppkoppling klarar av.", + "LabelRemoteClientBitrateLimitHelp": "En valfri inst\u00e4llning f\u00f6r att begr\u00e4nsa bandbredden f\u00f6r utg\u00e5ende trafik till alla n\u00e4tverksenheter. Det \u00e4r anv\u00e4ndbart f\u00f6r att hindra enheter som \u00f6nskar en h\u00f6gre bandbredd \u00e4n din Internetuppkoppling klarar av.", "LabelConversionCpuCoreLimit": "Antal cpu-k\u00e4rnor:", "LabelConversionCpuCoreLimitHelp": "Begr\u00e4nsa antalet CPU-k\u00e4rnor som ska anv\u00e4ndas under synk-konvertering.", "OptionEnableFullSpeedConversion": "Aktivera omkodning i full hastighet", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Spellistor", "HeaderViewStyles": "Ut\u00f6kade vyer", "TabPhotos": "Foton", - "TabVideos": "Videor", "HeaderWelcomeToEmby": "V\u00e4lkommen till Emby", "EmbyIntroMessage": "Med Emby kan du enkelt str\u00f6mma videos, musik och bilder till smartphones, plattor eller andra enheter fr\u00e5n din Emby Server.", "ButtonSkip": "Hoppa \u00f6ver", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Kolumner", "ButtonReset": "\u00c5terst\u00e4ll", "OptionEnableExternalVideoPlayers": "Aktivera externa videospelare", - "ButtonUnlockGuide": "L\u00e5s upp guide", "LabelEnableFullScreen": "Aktivera fullsk\u00e4rmsl\u00e4ge", "LabelEmail": "Email:", "LabelUsername": "Anv\u00e4ndarnamn:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "\u00d6versikt", "HeaderShortOverview": "Kort \u00f6versikt", "HeaderType": "Typ", - "HeaderSeverity": "Severity", "OptionReportActivities": "Aktivitetslog", "HeaderTunerDevices": "TV-mottagare", "HeaderAddDevice": "L\u00e4gg till enhet", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Upprepa", "LabelEnableThisTuner": "Aktivera denna TV-mottagare", "LabelEnableThisTunerHelp": "Avaktivera f\u00f6r att undvika att importera kanaler fr\u00e5n denna TV-mottagare.", - "HeaderUnidentified": "Oidentifierad", "HeaderImagePrimary": "Huvudbild", "HeaderImageBackdrop": "Bakgrundsbild", "HeaderImageLogo": "Logotyp", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "St\u00e4ll in TV-guide", "LabelDataProvider": "Dataleverant\u00f6r:", "OptionSendRecordingsToAutoOrganize": "Organiserar inspelningar automatiskt till befintliga TV-seriekataloger i andra bibliotek.", - "HeaderDefaultPadding": "Tidsmarginaler", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Skapa underkataloger f\u00f6r kategorier, t.ex. Sport, Barn etc.", "HeaderSubtitles": "Undertexter", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Mappar", "LabelDisplayName": "Visningsnamn:", "HeaderNewRecording": "Ny inspelning", - "ButtonAdvanced": "Avancerat", "LabelCodecIntrosPath": "S\u00f6kv\u00e4g f\u00f6r kodningsvinjetter:", "LabelCodecIntrosPathHelp": "En mapp inneh\u00e5llande videofiler. Om namnet p\u00e5 en videofil matchar videokodning, ljudkodning, ljudprofil eller kodningsetikett spelas den upp innan filmen.", "OptionConvertRecordingsToStreamingFormat": "Konvertera inspelningar automatiskt till ett str\u00f6mningsv\u00e4nligt format", "OptionConvertRecordingsToStreamingFormatHelp": "Inspelningar omkodas till MP4 eller MKV f\u00f6r problemfri str\u00f6mning till dina enheter.", "FeatureRequiresEmbyPremiere": "Den h\u00e4r funktionen kr\u00e4ver en aktiv Emby Premium prenumeration.", "FileExtension": "Filtill\u00e4gg", - "OptionReplaceExistingImages": "Skriv \u00f6ver befintliga bilder", "OptionPlayNextEpisodeAutomatically": "Spela n\u00e4sta avsnitt automatiskt", "OptionDownloadImagesInAdvance": "H\u00e4mta bilder i f\u00f6rv\u00e4g", "SettingsSaved": "Inst\u00e4llningarna sparade.", - "OptionDownloadImagesInAdvanceHelp": "Som standard h\u00e4mtas sekund\u00e4ra bilder endast n\u00e4r en Embyapp beg\u00e4r det. Aktivera den h\u00e4r inst\u00e4llningen f\u00f6r att h\u00e4mta alla bilder i f\u00f6rv\u00e4g n\u00e4r nya filer importeras till biblioteket.", + "OptionDownloadImagesInAdvanceHelp": "Som standard h\u00e4mtas de flesta bilder endast n\u00e4r en Emby-app beg\u00e4r det. Aktivera den h\u00e4r inst\u00e4llningen f\u00f6r att h\u00e4mta alla bilder i f\u00f6rv\u00e4g n\u00e4r nya filer importeras till biblioteket.", "Users": "Anv\u00e4ndare", "Delete": "Ta bort", "Password": "L\u00f6senord", "DeleteImage": "Ta bort bild", "MessageThankYouForSupporting": "Tack f\u00f6r att du st\u00f6djer Emby.", - "MessagePleaseSupportProject": "Hj\u00e4lp till att st\u00f6dja Emby.", "DeleteImageConfirmation": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r bilden?", "FileReadCancelled": "Inl\u00e4sningen av filen har avbrutits.", "FileNotFound": "Kan inte hitta filen.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "Den h\u00e4r Emby servern beh\u00f6ver uppdateras. F\u00f6r att ladda ner senaste versionen, g\u00e5 till {0}", "LabelFromHelp": "Exempel: {0} (p\u00e5 servern)", "HeaderMyMedia": "Min media", - "LabelAutomaticUpdateLevel": "Niv\u00e5 f\u00f6r automatisk uppdatering:", - "LabelAutomaticUpdateLevelForPlugins": "Niv\u00e5 f\u00f6r automatisk uppdatering av till\u00e4gg:", "ErrorLaunchingChromecast": "Det gick inte att starta Chromecast. Kontrollera att enheten \u00e4r ansluten till det tr\u00e5dl\u00f6sa n\u00e4tverket.", "MessageErrorLoadingSupporterInfo": "Ett fel uppstod n\u00e4r informationen fr\u00e5n Emby Premium skulle l\u00e4sas in. F\u00f6rs\u00f6k igen senare.", - "MessageLinkYourSupporterKey": "L\u00e4nka din Emby Premiere-nyckel med upp till {0} Emby Connect-medlemmar f\u00f6r fri tillg\u00e5ng till f\u00f6ljande till\u00e4gg:", "HeaderConfirmRemoveUser": "Ta bort anv\u00e4ndare", - "MessageConfirmRemoveConnectSupporter": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort ut\u00f6kade Emby Premium f\u00f6rm\u00e5ner f\u00f6r den h\u00e4r anv\u00e4ndaren?", "ValueTimeLimitSingleHour": "Tidsbegr\u00e4nsning: 1 timme", "ValueTimeLimitMultiHour": "Tidsbegr\u00e4nsning: {0} timmar", "PluginCategoryGeneral": "Diverse", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Schemalagda aktiviteter", "MessageItemsAdded": "Objekt tillagda", "HeaderSelectCertificatePath": "V\u00e4lj s\u00f6kv\u00e4g f\u00f6r certifikat", - "ConfirmMessageScheduledTaskButton": "Den h\u00e4r operationen k\u00f6rs normalt som en schemalagd aktivitet och kr\u00e4ver inte manuell \u00e5tg\u00e4rd. F\u00f6r att konfigurera en schemalagd aktivitet, l\u00e4s:", "HeaderSupporterBenefit": "En aktiv prenumeration av 'Emby Premiere' ger dig extra f\u00f6rm\u00e5ner, s\u00e5som tillg\u00e5ng till synkronisering, premiumtill\u00e4gg, internetkanaler och mer. {0}L\u00e4s mer{1}", "HeaderWelcomeToProjectServerDashboard": "V\u00e4lkommen till kontrollpanelen f\u00f6r Emby Server", "HeaderWelcomeToProjectWebClient": "V\u00e4lkommen till Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Avaktiverad", "ButtonMoreInformation": "Mer information", "LabelNoUnreadNotifications": "Inga ol\u00e4sta meddelanden", - "LabelAllPlaysSentToPlayer": "All uppspelning skickas till den valda uppspelaren.", "MessageInvalidUser": "Felaktigt anv\u00e4ndarnamn eller l\u00f6senord. F\u00f6rs\u00f6k igen.", "HeaderLoginFailure": "Misslyckad inloggning", "RecommendationBecauseYouLike": "Eftersom du gillar {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Inspelning avbruten.", "MessageRecordingScheduled": "Inspelning schemalagd", "HeaderConfirmSeriesCancellation": "Bekr\u00e4fta avbokning av serieinspelning", - "MessageConfirmSeriesCancellation": "Vill du verkligen avboka denna serieinspelning?", - "MessageSeriesCancelled": "Serieinspelningen har avbokats.", "HeaderConfirmRecordingDeletion": "Bekr\u00e4fta borttagning av inspelning", "MessageRecordingSaved": "Inspelningen har sparats.", "OptionWeekend": "Helger", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r serverns cache. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", "HeaderSelectTranscodingPathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r omkodarens mellanlagring. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", "HeaderSelectMetadataPathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r lagring av metadata. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", - "HeaderSelectChannelDownloadPath": "V\u00e4lj plats f\u00f6r lagring av nedladdat kanalinneh\u00e5ll", - "HeaderSelectChannelDownloadPathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r lagring av cache f\u00f6r kanaler. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", - "LabelChapterDownloaders": "H\u00e4mtare av kapitelinformation:", - "LabelChapterDownloadersHelp": "Aktivera och rangordna dina h\u00e4mtare baserat p\u00e5 prioritet. L\u00e4gre prioriterade h\u00e4mtare anv\u00e4nds endast f\u00f6r att fylla i saknad information.", "HeaderFavoriteAlbums": "Favoritalbum", "HeaderLatestChannelMedia": "Senaste nytt i Kanaler", "ButtonOrganizeFile": "Katalogisera fil", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "K\u00f6r http p\u00e5 port {0}", "LabelRunningOnPorts": "K\u00f6r http p\u00e5 port {0} och https p\u00e5 port {1}", "HeaderLatestFromChannel": "Senaste fr\u00e5n {0}", - "HeaderCurrentSubtitles": "Aktuella undertexter", "ButtonRemoteControl": "Fj\u00e4rrkontroll", "HeaderLatestTvRecordings": "Senaste inspelningar", "LabelCurrentPath": "Aktuell s\u00f6kv\u00e4g:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Radera objekt", "ConfirmDeleteItem": "Tar du bort det h\u00e4r objeketet tas det ocks\u00e5 bort fr\u00e5n bpde ditt filsystem och mediabibliotek. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?", "ConfirmDeleteItems": "Tar du bort dessa objekt tas dom ocks\u00e5 bort ifr\u00e5n b\u00e5de ditt filsystem och mediabibliotek. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?", - "MessageValueNotCorrect": "Det angivna v\u00e4rdet \u00e4r felaktigt. Var god f\u00f6rs\u00f6k igen.", "MessageItemSaved": "Objektet har sparats.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "V\u00e4nligen acceptera anv\u00e4ndarvillkoren innan du g\u00e5r vidare.", "OptionOff": "Av", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Fondbild saknas.", "MissingLogoImage": "Logotyp saknas.", "MissingEpisode": "Avsnitt saknas.", - "OptionScreenshots": "Sk\u00e4rmklipp", "OptionBackdrops": "Fondbilder", "OptionImages": "Bilder", "OptionKeywords": "Nyckelord", @@ -1642,10 +1494,6 @@ "OptionPeople": "Personer", "OptionProductionLocations": "Produktionsplatser", "OptionBirthLocation": "F\u00f6delseort", - "LabelAllChannels": "Alla kanaler", - "AttributeNew": "Ny", - "AttributePremiere": "Premi\u00e4r", - "AttributeLive": "Live", "HeaderChangeFolderType": "\u00c4ndra inneh\u00e5llstyp", "HeaderChangeFolderTypeHelp": "F\u00f6r att \u00e4ndra typ, ta bort och bygg om biblioteket med den nya typen.", "HeaderAlert": "Varning", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Kvalitet", "HeaderNotifications": "Meddelanden", "HeaderSelectPlayer": "V\u00e4lj spelare", - "MessageInternetExplorerWebm": "F\u00f6r b\u00e4sta resultat med Internet Explorer, installera uppspelningstill\u00e4gget WebM.", "HeaderVideoError": "Videofel", "ButtonViewSeriesRecording": "Visa serieinspelning", "HeaderSpecials": "Specialavsnitt", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Speltid", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Premi\u00e4rdatum:", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Serie:", "HeaderSeason": "S\u00e4song", "HeaderSeasonNumber": "S\u00e4songsnummer:", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Ta bort mediaplats", "MessageConfirmRemoveMediaLocation": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r platsen?", "LabelNewName": "Nytt namn:", - "HeaderAddMediaFolder": "Skapa mediamapp", - "HeaderAddMediaFolderHelp": "Namn (Filmer, Musik, TV, etc)", "HeaderRemoveMediaFolder": "Ta bort mediamapp", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "F\u00f6ljande mediaplatser kommer att tas bort fr\u00e5n ditt Emby bibliotek:", "MessageAreYouSureYouWishToRemoveMediaFolder": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r mappen?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "\u00c4ndra inneh\u00e5llstyp", "HeaderMediaLocations": "Lagringsplatser f\u00f6r media", "LabelContentTypeValue": "Inneh\u00e5llstyp: {0}", - "LabelPathSubstitutionHelp": "Tillval: S\u00f6kv\u00e4gsutbyte betyder att en plats p\u00e5 servern kopplas till en lokal fils\u00f6kv\u00e4g s\u00e5 att Emby-appar kan spela upp det direkt \u00f6ver n\u00e4tverket.", "FolderTypeUnset": "Osatt (Blandat inneh\u00e5ll)", "BirthPlaceValue": "F\u00f6delseort:{0}", "DeathDateValue": "D\u00f6d: {0}", @@ -1774,10 +1617,8 @@ "HeaderUnaired": "Ej s\u00e4nt", "HeaderMissing": "Saknas", "ButtonWebsite": "Hemsida", - "ValueSeriesYearToPresent": "{0} -nu", + "ValueSeriesYearToPresent": "{0} - Finns", "ValueAwards": "Utm\u00e4rkelser: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Int\u00e4kter: {0}", "ValuePremiered": "Premi\u00e4rdatum {0}", "ValuePremieres": "Premi\u00e4rdatum {0}", "ValueStudio": "Studio: {0}", @@ -1800,7 +1641,7 @@ "MediaInfoLongitude": "Longitud", "MediaInfoShutterSpeed": "Slutartid", "MediaInfoSoftware": "Programvara", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "Mer som denna", "HeaderMovies": "Filmer", "HeaderAlbums": "Album", "HeaderGames": "Spel", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Referensbildrutor", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "V\u00e4lj s\u00f6kv\u00e4g f\u00f6r egna vinjetter", - "HeaderRateAndReview": "Betygs\u00e4tt och rescensera", "HeaderThankYou": "Tack", - "MessageThankYouForYourReview": "Tack f\u00f6r din rescension", - "LabelYourRating": "Ditt betyg:", "LabelFullReview": "Fullst\u00e4ndig recension:", - "LabelShortRatingDescription": "Kort summering av betyg:", - "OptionIRecommendThisItem": "Jag rekommenderar detta", "ReleaseYearValue": "Utgivnings\u00e5r: {0}", "OriginalAirDateValue": "Ursprungligt s\u00e4ndningsdatum: {0}", "WebClientTourContent": "Se nytillkommet inneh\u00e5ll, kommande avsnitt m m. De gr\u00f6na ringarna anger hur m\u00e5nga ej visade objekt som finns.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Hantera enkelt tidskr\u00e4vande uppgifter med hj\u00e4lp av schemalagda aktiviteter. Best\u00e4m n\u00e4r de skall k\u00f6ras, och hur ofta.", "DashboardTourMobile": "Emby servers kontrollpanel fungerar utm\u00e4rkt p\u00e5 smartphones och plattor. Hantera din servern n\u00e4r som helst, vart som helst.", "DashboardTourSync": "Synka din personliga media till dina enheter f\u00f6r offline-tittande.", - "MessageRefreshQueued": "Uppdatering k\u00f6ad", "TabExtras": "Extra", "HeaderUploadImage": "Ladda upp bild", "DeviceLastUsedByUserName": "Senast anv\u00e4nd av {0}", @@ -1915,14 +1750,10 @@ "SyncMedia": "Synkronisera Media", "HeaderCancelSyncJob": "Avbryt synkronisering", "CancelSyncJobConfirmation": "Om synkroniseringen avbryts kommer synkad media tas bort under n\u00e4sta synkprocess. \u00c4r du s\u00e4ker p\u00e5 att du vill forts\u00e4tta?", - "MessagePleaseSelectDeviceToSyncTo": "V\u00e4lj en enhet att synkronisera till.", - "MessageSyncJobCreated": "Synkroniseringsjobb har skapats.", "LabelQuality": "Kvalitet", - "OptionAutomaticallySyncNewContent": "Synkronisera automatiskt nytt inneh\u00e5ll", - "OptionAutomaticallySyncNewContentHelp": "Nytt inneh\u00e5ll kommer automatiskt att synkroniseras till den h\u00e4r enheten.", "MessageBookPluginRequired": "Kr\u00e4ver installation av tj\u00e4nsten 'Bookshelf'", "MessageGamePluginRequired": "Kr\u00e4ver installation av tj\u00e4nsten 'GameBrowser'", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", + "MessageUnsetContentHelp": "Inneh\u00e5ll kommer visas som enkla mappar. F\u00f6r b\u00e4sta resultat, anv\u00e4nd en metadata-hanterare f\u00f6r att st\u00e4lla in typ av inneh\u00e5ll f\u00f6r undermapparna.", "SyncJobItemStatusQueued": "K\u00f6as", "SyncJobItemStatusConverting": "Konverterar", "SyncJobItemStatusTransferring": "\u00d6verf\u00f6r", @@ -1941,18 +1772,11 @@ "TabScenes": "Scener", "HeaderUnlockApp": "L\u00e5s upp app", "HeaderUnlockSync": "L\u00e5s upp Emby synk", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "L\u00e5s upp den h\u00e4r funktionen med ett aktivt Emby Premium-medlemskap.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Betalningstj\u00e4nsterna \u00e4r inte tillg\u00e4ngliga just nu. F\u00f6rs\u00f6k igen senare.", - "ButtonUnlockWithPurchase": "L\u00e5s upp med ett k\u00f6p", - "ButtonUnlockPrice": "L\u00e5s upp {0}", - "MessageLiveTvGuideRequiresUnlock": "LiveTV guiden \u00e4r f\u00f6r n\u00e4rvarande begr\u00e4nsad till {0} kanaler. Klicka p\u00e5 l\u00e5sa upp knappen f\u00f6r att veta hur du kan ut\u00f6ka upplevelsen.", "OptionEnableFullscreen": "Aktivera fullsk\u00e4rm", "ButtonServer": "Server", "HeaderLibrary": "Bibliotek", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "S\u00e4g n\u00e5got som...", "NoResultsFound": "Inga resultat hittades.", "ButtonManageServer": "Hantera server", "ButtonPreferences": "Inst\u00e4llningar", @@ -1963,7 +1787,7 @@ "ErrorMessageUsernameInUse": "Anv\u00e4ndarnamnet anv\u00e4nds redan. V\u00e4lj ett nytt anv\u00e4ndarnamn och f\u00f6rs\u00f6k igen.", "ErrorMessageEmailInUse": "Emailadressen anv\u00e4nds redan. V\u00e4lj en ny emailadress och f\u00f6rs\u00f6k igen, eller klicka p\u00e5 \u00e5terst\u00e4ll l\u00f6senord.", "MessageThankYouForConnectSignUp": "Tack f\u00f6r att du registrerar dig med Emby Connect. Ett mail kommer skickas till den adress med instruktioner om hur du kan bekfr\u00e4fta ditt nya konto. V\u00e4nligen bekfr\u00e4fta kontot och kom sedan tillbaka hit f\u00f6r att logga in.", - "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", + "MessageThankYouForConnectSignUpNoValidation": "Tack f\u00f6r att du registrerar dig med Emby Connect! Du kommer nu kunna logga in med dina Emby Connect-uppgifter.", "ButtonShare": "Dela", "HeaderConfirm": "Bekr\u00e4fta", "MessageConfirmDeleteTunerDevice": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r enheten?", @@ -1971,22 +1795,16 @@ "HeaderDeleteProvider": "Ta bort k\u00e4lla", "ErrorAddingTunerDevice": "Det gick inte att l\u00e5gga till den h\u00e4r TV-mottagaren. S\u00e4kerst\u00e4ll att den g\u00e5r att n\u00e5 och f\u00f6rs\u00f6k igen.", "ErrorSavingTvProvider": "Ett fel uppstod n\u00e4r TV-tj\u00e4nsten skulle sparas. Se till att den g\u00e5r att n\u00e5 och f\u00f6rs\u00f6k igen senare.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", + "ErrorGettingTvLineups": "Ett fel uppstod vid nedladdningen utav tv-sortimentet. Se till s\u00e5 att uppgifterna st\u00e4mmer och f\u00f6rs\u00f6k igen.", "MessageCreateAccountAt": "Skapa ett konto p\u00e5 {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", + "ErrorPleaseSelectLineup": "V\u00e4lj en lineup och f\u00f6rs\u00f6k igen. Om inga lineups finns tillg\u00e4ngliga, kolla s\u00e5 att anv\u00e4ndarnamn, l\u00f6senord och postnummer st\u00e4mmer.", "HeaderTryEmbyPremiere": "Pr\u00f6va Emby Premium", - "ButtonBecomeSupporter": "Skaffa Emby Premium", - "ButtonClosePlayVideo": "St\u00e4ng och spela min media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Aktivera sk\u00e4rmspegling", "HeaderSyncRequiresSupporterMembership": "Synk kr\u00e4ver en aktiv Emby Premium prenumeration.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Synk kr\u00e4ver att man ansluter till en server med en aktiv Emby Premium prenumeration.", "ErrorValidatingSupporterInfo": "Ett fel uppstod vid valideringen av ditt Emby Premium. F\u00f6rs\u00f6k igen senare.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Synkronisering startad", - "NoSlideshowContentFound": "Inga bilder hittades.", - "OptionPhotoSlideshow": "Bildsslideshow", "OptionBackdropSlideshow": "Bakgrundsslideshow", "HeaderTopPlugins": "Till\u00e4ggstoppen", "ButtonOther": "Annan", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Meny", "ForAdditionalLiveTvOptions": "Klicka p\u00e5 externa tj\u00e4nster f\u00f6r att se fler tillhandah\u00e5llare av Live-TV.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Inspelad TV", "ConfirmEndPlayerSession": "Vill du st\u00e4nga ner Emby p\u00e5 enheten?", "ButtonYes": "Ja", "AddUser": "Skapa anv\u00e4ndare", "ButtonNo": "Nej", - "ButtonRestorePreviousPurchase": "\u00c5terst\u00e4ll k\u00f6p", - "AlreadyPaid": "Redan betalt?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Nu spelas", "HeaderLatestMovies": "Nytillkomna filmer", - "EmbyPremiereMonthly": "Emby Premium M\u00e5nadsvis", - "EmbyPremiereMonthlyWithPrice": "Emby Premium M\u00e5nadsvis {0}", "HeaderEmailAddress": "E-mailadress", - "TextPleaseEnterYourEmailAddressForSubscription": "V\u00e4nligen fyll i din epostadress.", "LoginDisclaimer": "Emby \u00e4r designat f\u00f6r att hj\u00e4lpa dig hantera ditt personliga mediabibliotek, s\u00e5som filmer och bilder. L\u00e4s igenom v\u00e5ra anv\u00e4ndarvillkor. Anv\u00e4nding av Emby-mjukvara inneb\u00e4r ett accepterande av dessa anv\u00e4ndarvillkor.", "TermsOfUse": "Anv\u00e4ndarvillkor", "NumLocationsValue": "{0} mappar", "ButtonAddMediaLibrary": "L\u00e4gg till mediabibliotek", "ButtonManageFolders": "Hantera mappar", - "MessageTryMicrosoftEdge": "F\u00f6r en b\u00e4ttre upplevelse i Windows 10, pr\u00f6va den nya webbl\u00e4saren Microsoft Edge.", - "MessageTryModernBrowser": "F\u00f6r en b\u00e4ttre upplevelse i Windows, pr\u00f6va en modern webbl\u00e4sare som, Google Chrome, Firefox eller Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "L\u00e4gg till minst en katalog till det h\u00e4r biblioteket genom att klicka p\u00e5 L\u00e4gg till-knappen.", "ErrorAddingMediaPathToVirtualFolder": "Det gick inte att l\u00e4gga till s\u00f6kv\u00e4gen. Kontrollera att s\u00f6kv\u00e4gen \u00e4r korrekt och att Emby Server har r\u00e4ttigheter till s\u00f6kv\u00e4gen.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Bekr\u00e4fta installation av till\u00e4gg", "PleaseConfirmPluginInstallation": "Klicka p\u00e5 OK f\u00f6r att bekr\u00e4fta att du har l\u00e4st ovanst\u00e5ende och \u00f6nskar forts\u00e4tta med installationen av till\u00e4gget.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Spela en minut", - "ThankYouForTryingEnjoyOneMinute": "Njut av en minuts uppspelning. Tack f\u00f6r att du pr\u00f6var Emby.", - "HeaderTryPlayback": "Pr\u00f6va uppspelning", - "HeaderBenefitsEmbyPremiere": "F\u00f6rdelar med Emby Premium", - "MobileSyncFeatureDescription": "Synkronisera din media till din smartphone eller platta f\u00f6r tillg\u00e5ng offline.", - "CoverArtFeatureDescription": "Cover Art ger dig roliga omslag och andra funktioner f\u00f6r att personligen anpassa dina mediabilder.", "HeaderMobileSync": "Mobilsynkronisering", "HeaderCloudSync": "Molnsynkronisering", - "CloudSyncFeatureDescription": "Synka din media till molnet f\u00f6r l\u00e4tttillg\u00e4ngligt backup, arkivering och konvertering.", "HeaderFreeApps": "Gratis Emby appar", - "FreeAppsFeatureDescription": "F\u00e5 fri tillg\u00e5ng till alla Emby appar f\u00f6r dina enheter.", - "CinemaModeFeatureDescription": "Biol\u00e4get ger dig en bioupplevelse med trailers och anpassade intros f\u00f6re varje film.", "CoverArt": "Cover Art", "ButtonOff": "Av", "TitleHardwareAcceleration": "H\u00e5rdvaruacceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Ange s\u00f6kv\u00e4g f\u00f6r kodningsvinjetter", - "ButtonAddMissingData": "L\u00e4gg endast till saknad data", "ValueExample": "Exempel: {0}", "OptionEnableAnonymousUsageReporting": "Till\u00e5t anonym anv\u00e4ndningsrapportering", "OptionEnableAnonymousUsageReportingHelp": "Till\u00e5t att Emby samlar anonym information, s\u00e5som installerade tj\u00e4nster, versionsnumret p\u00e5 dina Emby-appar etc. Den h\u00e4r informationen anv\u00e4nds endast i syfte att f\u00f6rb\u00e4ttra mjukvaran.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "Url till M3U (valfritt):", "LabelOptionalM3uUrlHelp": "En del TV-mottagare st\u00f6djer kanallisor i M3U-format.", "TabResumeSettings": "\u00c5teruppta-inst\u00e4llningar", - "HowDidYouPay": "Hur betalade du?", - "IHaveEmbyPremiere": "Jag har Emby Premium", - "IPurchasedThisApp": "Jag k\u00f6pte den h\u00e4r appen", "DrmChannelsNotImported": "Kanaler med DRM kommer inte att importeras", "LabelAllowHWTranscoding": "Till\u00e5t h\u00e5rdvaruomkodning", "AllowHWTranscodingHelp": "Aktivera f\u00f6r att l\u00e5ta TV-mottagaren omkoda str\u00f6mmar. Det kan minska behovet av omkodning p\u00e5 Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Beh\u00e5ll originalljudet vid konvertering av inspelningar(n\u00e4r det \u00e4r m\u00f6jligt)", "OptionConvertRecordingPreserveAudioHelp": "Detta m\u00f6jligg\u00f6r f\u00f6r b\u00e4ttre ljud men kan kr\u00e4va att omkodning sker under uppspelning av vissa enheter.", - "CreateCollectionHelp": "Samlingar g\u00f6r det m\u00f6jligt att skapa personanpassade grupperingar av filmer eller annat inneh\u00e5ll.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "L\u00e4gg till objekt till samlingar genom att f\u00f6rst s\u00f6ka efter dom och sen h\u00f6gerklicka eller tappa upp menyn f\u00f6r att l\u00e4gga till dom.", "HeaderHealthMonitor": "\u00d6vervakning", "HealthMonitorNoAlerts": "Det finns inga aktiva larm.", @@ -2094,9 +1890,9 @@ "MapChannels": "Mappa kanaler", "LabelffmpegPath": "FFmpeg s\u00f6kv\u00e4g:", "LabelffmpegVersion": "FFmpeg version:", - "LabelffmpegPathHelp": "S\u00f6kv\u00e4gen till din FFmpeg applikation eller mappen som inneh\u00e5ller FFmpeg.", + "LabelffmpegPathHelp": "S\u00f6kv\u00e4gen till ffmpeg applikationen, eller mappen som inneh\u00e5ller ffmpeg.", "SetupFFmpeg": "S\u00e4tt upp FFmpeg", - "SetupFFmpegHelp": "FFmpeg \u00e4r en n\u00f6dv\u00e4ndig komponent och beh\u00f6ver konfigureras.", + "SetupFFmpegHelp": "Emby kan kr\u00e4va ett bibliotek eller applikaton f\u00f6r att kunna konverta till vissa mediatyper. Det finns flera olika applikationer tillg\u00e4ngliga, men Emby fungerar b\u00e4st med ffmpeg. Emby \u00e4r inte affilierat med ffmpeg p\u00e5 n\u00e5got s\u00e4tt.", "EnterFFmpegLocation": "Ange s\u00f6kv\u00e4gen f\u00f6r FFmpeg", "DownloadFFmpeg": "Ladda ner FFmpeg", "FFmpegSuggestedDownload": "Rekommenderad nedladdning: {0}", @@ -2111,36 +1907,43 @@ "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", "MakeAvailableOffline": "G\u00f6r tillg\u00e4nglig offline", "ConfirmRemoveDownload": "Ta bort nedladdning?", - "RemoveDownload": "Remove download", + "RemoveDownload": "Ta bort nedladdning", "SyncToOtherDevices": "Synka till andra enheter", - "ManageOfflineDownloads": "Hantera offline-nedladdningar", + "ManageOfflineDownloads": "Hantera offline-h\u00e4mtningar", "MessageDownloadScheduled": "Nedladdningsschema", - "RememberMe": "Remember me", - "HeaderOfflineSync": "Offline Sync", - "LabelMaxAudioFileBitrate": "Max audio file bitrate:", + "RememberMe": "Kom ih\u00e5g mig", + "HeaderOfflineSync": "Offline synk", + "LabelMaxAudioFileBitrate": "Max bitrate f\u00f6r ljud", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelVaapiDevice": "VA API Device:", + "LabelVaapiDevice": "VA API-enhet:", "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", + "HowToConnectFromEmbyApps": "Hur man ansluter fr\u00e5n Emby-appar", "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", + "Downloads": "H\u00e4mtningar", "LabelEnableDebugLogging": "Aktivera loggning p\u00e5 avlusningsniv\u00e5", - "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", - "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", - "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", + "OptionEnableExternalContentInSuggestions": "Aktivera externt inneh\u00e5ll under f\u00f6rslag", + "OptionEnableExternalContentInSuggestionsHelp": "Till\u00e5t internet trailers och livetv-program att visas under f\u00f6rslag p\u00e5 inneh\u00e5ll.", + "LabelH264EncodingPreset": "H264-omkodning finns:", + "H264EncodingPresetHelp": "V\u00e4lj ett snabbare v\u00e4rde f\u00f6r \u00f6ka prestandan, eller ett l\u00e5ngsammare v\u00e4rde f\u00f6r att ut\u00f6ka kvaliten.", + "LabelH264Crf": "H264-omkodning CRF:", "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", - "HeaderForKids": "For Kids", - "HeaderRecordingGroups": "Recording Groups", - "LabelConvertRecordingsTo": "Convert recordings to:", - "HeaderUpcomingOnTV": "Upcoming On TV", - "LabelOptionalNetworkPath": "(Optional) Shared network folder:", - "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", + "Sports": "Sport", + "HeaderForKids": "F\u00f6r barn", + "HeaderRecordingGroups": "Inspelningsgrupper", + "LabelConvertRecordingsTo": "Konvertera inspelningar till:", + "HeaderUpcomingOnTV": "Kommande p\u00e5 TV", + "LabelOptionalNetworkPath": "(Valfri) Delad n\u00e4tverksmapp:", + "LabelOptionalNetworkPathHelp": "Om denna mappen delas p\u00e5 ditt n\u00e4tverk, kan den delade s\u00f6kv\u00e4gen till\u00e5ta Emby-appar p\u00e5 andra enheter att streama mediafiler direkt.", "ButtonPlayExternalPlayer": "Spela upp med extern uppspelare", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Senaste {0}", + "LabelMoviePrefix": "Film prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/tr.json b/dashboard-ui/strings/tr.json index 1a25c4270c..e4605b813b 100644 --- a/dashboard-ui/strings/tr.json +++ b/dashboard-ui/strings/tr.json @@ -1,8 +1,6 @@ { - "LabelExit": "Cikis", - "LabelApiDocumentation": "Api Documentation", - "LabelBrowseLibrary": "K\u00fct\u00fcphane", - "LabelConfigureServer": "Configure Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "\u00d6nceki", "LabelFinish": "Bitir", "LabelNext": "Sonraki", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\u0130lk Ad", "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Servis", - "AWindowsServiceHasBeenInstalled": "Windows Servisi Y\u00fcklenmistir.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Ayarlar\u0131 Degistir", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organize", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Tamam", "ButtonCancel": "\u0130ptal", "ButtonExit": "Exit", "ButtonNew": "Yeni", + "OptionDev": "Gelistirici", + "OptionBeta": "Deneme", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Yeni Media Klas\u00f6r\u00fc", "LabelFolderType": "Klas\u00f6r T\u00fcr\u00fc:", "LabelCountry": "\u00dclke", "LabelLanguage": "Dil", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "\u0130nternetten \u0130\u00e7erik Y\u00fckleyin", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Tercihler", "TabPassword": "\u015eifre", "TabLibraryAccess": "K\u00fct\u00fcphane Eri\u015fim", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Sezondaki kay\u0131p b\u00f6l\u00fcmleri g\u00f6ster", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Oynatma Ayarlar\u0131", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Ses Dili Tercihi:", "LabelSubtitleLanguagePreference": "Altyaz\u0131 Dili Tercihi:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "\u00d6nerilen", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Son", "TabUpcoming": "Gelecek", "TabShows": "G\u00f6steriler", "TabEpisodes": "B\u00f6l\u00fcmler", "TabGenres": "T\u00fcrler", - "TabPeople": "Oyuncular", "TabNetworks": "A\u011flar", "HeaderUsers": "Kullan\u0131c\u0131lar", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Yazarlar", "OptionProducers": "\u00dcreticiler", "HeaderResume": "Devam", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Sonraki hafta", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "Latest Episodes", @@ -185,6 +173,7 @@ "OptionPlayCount": "Oynatma sayac\u0131", "OptionDatePlayed": "Oynatma Tarihi", "OptionDateAdded": "Eklenme Tarihi", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Sanat\u00e7\u0131 Alb\u00fcm\u00fc", "OptionArtist": "Sanat\u00e7\u0131", "OptionAlbum": "Alb\u00fcm", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Kalitesi", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Zamanlanm\u0131\u015f G\u00f6revler", "TabMyPlugins": "Eklentilerim", "TabCatalog": "Katalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "Son Par\u00e7alar", "HeaderRecentlyPlayed": "Son oynat\u0131lan", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Video Tipi", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Kullan\u0131c\u0131 Devre D\u0131\u015f\u0131 B\u0131rak", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Geli\u015fmi\u015f Kontrol", "LabelName": "\u0130sim", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Sunucu", "TabTranscoding": "Kodlay\u0131c\u0131", - "TitleAdvanced": "Geli\u015fmi\u015f", "OptionRelease": "Resmi Yay\u0131n", - "OptionBeta": "Deneme", - "OptionDev": "Gelistirici", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "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", @@ -330,11 +312,9 @@ "TabGames": "Oyunlar", "TabMusic": "Muzik", "TabOthers": "Di\u011ferleri", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Filmler", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Di\u011fer Videolar", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Kanallar", "TabRecordings": "Kay\u0131tlar", - "TabScheduled": "G\u00f6revler", "TabSeries": "Seriler", "TabFavorites": "Favoriler", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Kay\u0131t \u0130ptal", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Durum", "TabSettings": "Ayarlar", "ButtonRefreshGuideData": "K\u0131lavuzu Yinele", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Sadece yeni b\u00f6l\u00fcmleri kaydet", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "G\u00fcnler", "HeaderActiveRecordings": "Aktif Kay\u0131tlar", "HeaderLatestRecordings": "Ge\u00e7mi\u015f Kay\u0131tlar", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Ge\u00e7mi\u015f Oyunlar", "HeaderRecentlyPlayedGames": "Silinen Oyanan Oyunlar", "TabGameSystems": "Oyun Sistemleri", - "TitleMediaLibrary": "Medya K\u00fct\u00fcphanesi", "TabFolders": "Klas\u00f6rler", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Kay\u0131p", - "LabelOffline": "\u00c7evrimd\u0131\u015f\u0131", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "Buradan", - "HeaderTo": "Buraya", - "LabelFrom": "Buradan", - "LabelTo": "Buraya", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "\u00d6zel", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Seri Ad\u0131", "OptionTvdbRating": "Tvdb Reyting", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "Sistem Profilleri", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Anasayfa", "TabInfo": "Bilgi", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "DLNA Sunucusu etkin", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Sunucu ayarlar\u0131", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Sunucu yeniden ba\u015flat\u0131lmal\u0131", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Eklenti Ba\u015far\u0131s\u0131z", "ButtonVolumeUp": "Ses A\u00e7", "ButtonVolumeDown": "Ses Azalt", "HeaderLatestMedia": "En Son G\u00f6r\u00fcnt\u00fclemeler", "OptionNoSubtitles": "Altyaz\u0131 Yok", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Koleksiyon", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Anasayfa", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Anasayfa Secenek 2:", "LabelHomePageSection3": "Anasayfa Secenek 3:", "LabelHomePageSection4": "Anasayfa Secenek 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Sonraki hafta", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Ayarlar Kaydedildi", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Kullan\u0131c\u0131lar", "Delete": "Sil", "Password": "Sifre", "DeleteImage": "Resmi Sil", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Bu G\u00f6r\u00fcnt\u00fcy\u00fc Silmek \u0130stedi\u011finizden Eminmisiniz?", "FileReadCancelled": "Dosya Okuma \u0130ptal Edildi", "FileNotFound": "Dosya Bulunamad\u0131", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favori Albumler", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Kullan\u0131c\u0131 Ekle", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Son filmler", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/uk.json b/dashboard-ui/strings/uk.json index 91dfbdacfb..4797e21f4e 100644 --- a/dashboard-ui/strings/uk.json +++ b/dashboard-ui/strings/uk.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u0412\u0438\u0439\u0442\u0438", - "LabelApiDocumentation": "Api Documentation", - "LabelBrowseLibrary": "Browse Library", - "LabelConfigureServer": "Configure Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "\u041d\u0430\u0437\u0430\u0434", "LabelFinish": "Finish", "LabelNext": "\u0412\u043f\u0435\u0440\u0435\u0434", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\u0406\u043c\u2019\u044f", "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows Service", - "AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "Configure settings", - "LabelEnableAutomaticPortMapping": "Enable automatic port mapping", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organize", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438", "ButtonExit": "Exit", "ButtonNew": "\u041d\u043e\u0432\u0438\u0439", + "OptionDev": "Dev", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "\u0422\u0411", "HeaderAudio": "\u0410\u0443\u0434\u0456\u043e", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Add media folder", "LabelFolderType": "Folder type:", "LabelCountry": "\u041a\u0440\u0430\u0457\u043d\u0430:", "LabelLanguage": "\u041c\u043e\u0432\u0430:", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.", "LabelDownloadInternetMetadata": "Download artwork and metadata from the internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "Preferences", "TabPassword": "\u041f\u0430\u0440\u043e\u043b\u044c", "TabLibraryAccess": "Library Access", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "Video Playback Settings", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Audio language preference:", "LabelSubtitleLanguagePreference": "Subtitle language preference:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "Latest", "TabUpcoming": "Upcoming", "TabShows": "Shows", "TabEpisodes": "\u0415\u043f\u0456\u0437\u043e\u0434\u0438", "TabGenres": "\u0416\u0430\u043d\u0440\u0438", - "TabPeople": "\u041b\u044e\u0434\u0438", "TabNetworks": "\u041c\u0435\u0440\u0435\u0436\u0456", "HeaderUsers": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "Writers", "OptionProducers": "Producers", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0435\u043f\u0456\u0437\u043e\u0434\u0438", @@ -185,6 +173,7 @@ "OptionPlayCount": "Play Count", "OptionDatePlayed": "Date Played", "OptionDateAdded": "Date Added", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album Artist", "OptionArtist": "\u0410\u043a\u0442\u043e\u0440", "OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "Video Bitrate", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "My Plugins", "TabCatalog": "Catalog", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u043f\u0456\u0441\u043d\u0456", "HeaderRecentlyPlayed": "Recently Played", "HeaderFrequentlyPlayed": "Frequently Played", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "\u0422\u0438\u043f \u0432\u0456\u0434\u0435\u043e:", "OptionBluray": "Bluray", "OptionDvd": "Dvd", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "Disable this user", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "Name:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Allow this user to manage the server", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Missing Tmdb Id", "OptionIsHD": "HD", @@ -306,10 +291,7 @@ "TabPaths": "Paths", "TabServer": "Server", "TabTranscoding": "Transcoding", - "TitleAdvanced": "Advanced", "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev", "LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates", "LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0456\u0433\u0440\u0438", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "From", - "HeaderTo": "To", - "LabelFrom": "From:", - "LabelTo": "To:", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "System Profiles", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "Links", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u043c\u0435\u0434\u0456\u0430", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0456\u0433\u0440\u0438", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", - "ViewTypeMovieCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "\u0421\u0442\u0443\u0434\u0456\u0457", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Users", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "\u041d\u0435\u043c\u0430\u0454 \u043d\u0435\u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u0445 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u044c.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "\u042f\u043a\u0456\u0441\u0442\u044c", "HeaderNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "\u0421\u0435\u0437\u043e\u043d", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "\u041c\u0456\u0441\u0446\u0435 \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f: {0}", "DeathDateValue": "\u041f\u043e\u043c\u0435\u0440: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "\u041d\u0430\u0433\u043e\u0440\u043e\u0434\u0438: {0}", - "ValueBudget": "\u0411\u044e\u0434\u0436\u0435\u0442: {0}", - "ValueRevenue": "\u041a\u0430\u0441\u043e\u0432\u0456 \u0437\u0431\u043e\u0440\u0438: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "\u0421\u0442\u0443\u0434\u0456\u044f: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "\u0414\u044f\u043a\u0443\u044e", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Add User", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0444\u0456\u043b\u044c\u043c\u0438", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "\u0412\u0456\u0434\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0443 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u044c\u043e\u043c\u0443 \u043f\u0440\u043e\u0433\u0440\u0430\u0432\u0430\u0447\u0456", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/vi.json b/dashboard-ui/strings/vi.json index bc212b700f..f16c5a11a8 100644 --- a/dashboard-ui/strings/vi.json +++ b/dashboard-ui/strings/vi.json @@ -1,8 +1,6 @@ { - "LabelExit": "Tho\u00e1t", - "LabelApiDocumentation": "Api Documentation", - "LabelBrowseLibrary": "Duy\u1ec7t th\u01b0 vi\u1ec7n", - "LabelConfigureServer": "Configure Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "Tr\u01b0\u1edbc", "LabelFinish": "K\u1ebft th\u00fac", "LabelNext": "Ti\u1ebfp theo", @@ -14,25 +12,13 @@ "LabelYourFirstName": "T\u00ean c\u1ee7a B\u1ea1n", "MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "D\u1ecbch v\u1ee5 c\u1ee7a Windows", - "AWindowsServiceHasBeenInstalled": "M\u1ed9t d\u1ecbch v\u1ee5 c\u1ee7a Windows \u0111\u00e3 \u0111\u01b0\u1ee3c c\u00e0i \u0111\u1eb7t", - "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "C\u00e0i \u0111\u1eb7t c\u1ea5u h\u00ecnh", - "LabelEnableAutomaticPortMapping": "Cho ph\u00e9p t\u1ef1 \u0111\u1ed9ng \u00e1nh x\u1ea1 c\u1ed5ng (port)", - "LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.", "HeaderTermsOfService": "Emby Terms of Service", "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.", "OptionIAcceptTermsOfService": "I accept the terms of service", "ButtonPrivacyPolicy": "Privacy policy", "ButtonTermsOfService": "Terms of Service", - "HeaderDeveloperOptions": "Developer Options", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "Convert media", "ButtonOrganize": "Organize", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "Sync", "ButtonOk": "Ok", "ButtonCancel": "Tho\u00e1t", "ButtonExit": "Exit", "ButtonNew": "M\u1edbi", + "OptionDev": "Kh\u00f4ng \u1ed5n \u0111\u1ecbnh", + "OptionBeta": "Beta", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "Th\u00eam m\u1ed9t th\u01b0 m\u1ee5c media", "LabelFolderType": "Lo\u1ea1i th\u01b0 m\u1ee5c", "LabelCountry": "Qu\u1ed1c gia:", "LabelLanguage": "Ng\u00f4n ng\u1eef", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "L\u01b0u c\u00e1c \u1ea3nh ngh\u1ec7 thu\u1eadt v\u00e0 metadata v\u00e0o trong c\u00e1c th\u01b0 m\u1ee5c media, s\u1ebd \u0111\u01b0a ch\u00fang v\u00e0o m\u1ed9t n\u01a1i b\u1ea1n c\u00f3 th\u1ec3 ch\u1ec9nh s\u1eeda d\u1ec5 d\u00e0ng h\u01a1n.", "LabelDownloadInternetMetadata": "T\u1ea3i \u1ea3nh ngh\u1ec7 thu\u1eadt v\u00e0 metadata t\u1eeb internet", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "\u01afa th\u00edch", "TabPassword": "M\u1eadt kh\u1ea9u", "TabLibraryAccess": "Truy c\u1eadp th\u01b0 vi\u1ec7n", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "C\u00e1c c\u00e0i \u0111\u1eb7t ph\u00e1t Video", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "Ng\u00f4n ng\u1eef tho\u1ea1i \u01b0a th\u00edch:", "LabelSubtitleLanguagePreference": "Ng\u00f4n ng\u1eef ph\u1ee5 \u0111\u1ec1 \u01b0a th\u00edch:", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", "MessageNothingHere": "Kh\u00f4ng c\u00f3 g\u00ec \u1edf \u0111\u00e2y.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", - "TabSuggested": "Suggested", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "Suggestions", "TabLatest": "M\u1edbi nh\u1ea5t", "TabUpcoming": "S\u1eafp di\u1ec5n ra", "TabShows": "Shows", "TabEpisodes": "C\u00e1c t\u1eadp phim", "TabGenres": "C\u00e1c th\u1ec3 lo\u1ea1i", - "TabPeople": "M\u1ecdi ng\u01b0\u1eddi", "TabNetworks": "C\u00e1c m\u1ea1ng", "HeaderUsers": "d\u00f9ng", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "K\u1ecbch b\u1ea3n", "OptionProducers": "Nh\u00e0 s\u1ea3n xu\u1ea5t", "HeaderResume": "S\u01a1 y\u1ebfu l\u00fd l\u1ecbch", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "Next Up", "NoNextUpItemsMessage": "None found. Start watching your shows!", "HeaderLatestEpisodes": "C\u00e1c t\u1eadp phim m\u1edbi nh\u1ea5t", @@ -185,6 +173,7 @@ "OptionPlayCount": "S\u1ed1 l\u1ea7n ph\u00e1t", "OptionDatePlayed": "Ng\u00e0y ph\u00e1t", "OptionDateAdded": "Ng\u00e0y th\u00eam", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "Album ngh\u1ec7 s\u1ef9", "OptionArtist": "Ngh\u1ec7 s\u1ef9", "OptionAlbum": "Album", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "T\u1ed1c \u0111\u1ed9 Bit c\u1ee7a Video", "OptionResumable": "Resumable", "ScheduledTasksHelp": "Click a task to adjust its schedule.", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "C\u00e1c plugin c\u1ee7a t\u00f4i", "TabCatalog": "Danh m\u1ee5c", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "C\u00e1c b\u00e0i h\u00e1t m\u1edbi nh\u1ea5t", "HeaderRecentlyPlayed": "Ph\u00e1t g\u1ea7n \u0111\u00e2y", "HeaderFrequentlyPlayed": "Ph\u00e1t th\u01b0\u1eddng xuy\u00ean", - "DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.", "LabelVideoType": "Lo\u1ea1i Video:", "OptionBluray": "Bluray", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "V\u00f4 hi\u1ec7u h\u00f3a ng\u01b0\u1eddi d\u00f9ng n\u00e0y", "OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.", - "HeaderAdvancedControl": "Advanced Control", "LabelName": "T\u00ean:", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "Cho ph\u00e9p ng\u01b0\u1eddi d\u00f9ng n\u00e0y qu\u1ea3n l\u00fd m\u00e1y ch\u1ee7", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "Thi\u1ebfu Tmdb ID", "OptionIsHD": "\u0110\u1ed9 n\u00e9t cao", @@ -306,10 +291,7 @@ "TabPaths": "C\u00e1c \u0111\u01b0\u1eddng d\u1eabn", "TabServer": "M\u00e1y ch\u1ee7", "TabTranscoding": "M\u00e3 h\u00f3a", - "TitleAdvanced": "N\u00e2ng cao", "OptionRelease": "Ph\u00e1t h\u00e0nh ch\u00ednh th\u1ee9c", - "OptionBeta": "Beta", - "OptionDev": "Kh\u00f4ng \u1ed5n \u0111\u1ecbnh", "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.", "LabelRunServerAtStartup": "Run server at startup", @@ -330,11 +312,9 @@ "TabGames": "Games", "TabMusic": "Music", "TabOthers": "Others", - "HeaderExtractChapterImagesFor": "Extract chapter images for:", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "Other Videos", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "Channels", "TabRecordings": "Recordings", - "TabScheduled": "Scheduled", "TabSeries": "Series", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "What's On", - "TabStatus": "Status", "TabSettings": "Settings", "ButtonRefreshGuideData": "Refresh Guide Data", "ButtonRefresh": "Refresh", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "Record only new episodes", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "Days", "HeaderActiveRecordings": "Active Recordings", "HeaderLatestRecordings": "Latest Recordings", @@ -418,7 +397,6 @@ "HeaderLatestGames": "Latest Games", "HeaderRecentlyPlayedGames": "Recently Played Games", "TabGameSystems": "Game Systems", - "TitleMediaLibrary": "Media Library", "TabFolders": "Folders", "TabPathSubstitution": "Path Substitution", "LabelSeasonZeroDisplayName": "Season 0 display name:", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "Missing", - "LabelOffline": "Offline", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "T\u1eeb", - "HeaderTo": "\u0110\u1ebfn", - "LabelFrom": "T\u1eeb", - "LabelTo": "T\u1edbi", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "Add Substitution", "OptionSpecialEpisode": "Specials", "OptionMissingEpisode": "Missing Episodes", "OptionUnairedEpisode": "Unaired Episodes", "OptionEpisodeSortName": "Episode Sort Name", "OptionSeriesSortName": "Series Name", "OptionTvdbRating": "Tvdb Rating", - "EditCollectionItemsHelp": "Th\u00eam ho\u1eb7c x\u00f3a b\u1ea5t k\u1ef3 b\u1ed9 phim, series, album, s\u00e1ch ho\u1eb7c ch\u01a1i game b\u1ea1n mu\u1ed1n trong nh\u00f3m b\u1ed9 s\u01b0u t\u1eadp n\u00e0y", "HeaderAddTitles": "Th\u00eam c\u00e1c ti\u00eau \u0111\u1ec1", "LabelEnableDlnaPlayTo": "Cho ph\u00e9p DLNA ch\u1ea1y \u0111\u1ec3", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "H\u1ed3 s\u01a1 h\u1ec7 th\u1ed1ng", "CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "Dashboard", "TabHome": "Home", "TabInfo": "Info", "HeaderLinks": "C\u00e1c li\u00ean k\u1ebft", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time", "LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time", "LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "L\u01b0u c\u00e1c c\u00e0i \u0111\u1eb7t.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "Ng\u01b0\u1eddi d\u00f9ng", "Delete": "X\u00f3a", "Password": "M\u1eadt kh\u1ea9u", "DeleteImage": "X\u00f3a h\u00ecnh \u1ea3nh", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "B\u1ea1n c\u00f3 ch\u1eafc mu\u1ed1n x\u00f3a h\u00ecnh \u1ea3nh n\u00e0y?", "FileReadCancelled": "T\u1ec7p tin \u0111\u1ecdc \u0111\u00e3 b\u1ecb h\u1ee7y.", "FileNotFound": "Kh\u00f4ng t\u00ecm th\u1ea5y t\u1ec7p tin.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "Th\u00eam ng\u01b0\u1eddi d\u00f9ng", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "Phim m\u1edbi nh\u1ea5t", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/zh-CN.json b/dashboard-ui/strings/zh-CN.json index 37271175f6..ea31964a72 100644 --- a/dashboard-ui/strings/zh-CN.json +++ b/dashboard-ui/strings/zh-CN.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u9000\u51fa", - "LabelApiDocumentation": "API\u6587\u6863", - "LabelBrowseLibrary": "\u6d4f\u89c8\u5a92\u4f53\u5e93", - "LabelConfigureServer": "\u914d\u7f6eEmby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "\u81ea\u52a8\u5408\u5e76\u5206\u5e03\u5728\u4e0d\u540c\u6587\u4ef6\u5939\u7684\u7cfb\u5217", "LabelPrevious": "\u4e0a\u4e00\u4e2a", "LabelFinish": "\u5b8c\u6210", "LabelNext": "\u4e0b\u4e00\u4e2a", @@ -14,37 +12,28 @@ "LabelYourFirstName": "\u4f60\u7684\u540d\u5b57\uff1a", "MoreUsersCanBeAddedLater": "\u7a0d\u540e\u5728\u63a7\u5236\u53f0\u4e2d\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u7528\u6237\u3002", "UserProfilesIntro": "Emby\u5305\u542b\u4e86\u5bf9\u7528\u6237\u4e2a\u4eba\u8bbe\u7f6e\u7684\u63d2\u4ef6\u652f\u6301\uff0c\u542f\u7528\u53ef\u4ee5\u4f7f\u6bcf\u4e2a\u7528\u6237\u90fd\u62e5\u6709\u4e2a\u6027\u5316\u7684\u663e\u793a\u8bbe\u7f6e\u3001\u64ad\u653e\u6a21\u5f0f\u548c\u63a7\u5236\u9762\u677f\u3002", - "LabelWindowsService": "Windows \u670d\u52a1", - "AWindowsServiceHasBeenInstalled": "Windows \u670d\u52a1\u5b89\u88c5\u5b8c\u6210", - "WindowsServiceIntro1": "Emby\u670d\u52a1\u5668\u901a\u5e38\u4ee5\u6258\u76d8\u56fe\u6807\u7684\u65b9\u5f0f\u8fd0\u884c\uff0c\u4f46\u5982\u679c\u4f60\u60f3\u8981\u4ee5\u540e\u53f0\u670d\u52a1\u7684\u65b9\u5f0f\u6765\u8fd0\u884c\uff0c\u8bf7\u8bbe\u7f6e\u4e3a\u4eceWindows\u670d\u52a1\u63a7\u5236\u9762\u677f\u4e2d\u542f\u52a8\u3002", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "\u73b0\u5df2\u5b8c\u6210\u3002Emby \u5f00\u59cb\u6536\u96c6\u4f60\u7684\u5a92\u4f53\u5e93\u4fe1\u606f\u3002\u770b\u770b\u6211\u4eec\u7684\u5e94\u7528\u7a0b\u5e8f\uff0c \u70b9\u51fb \u7ed3\u675f<\/b> \u6765\u6d4f\u89c8 \u670d\u52a1\u5668\u63a7\u5236\u53f0<\/b>\u3002", "LabelConfigureSettings": "\u914d\u7f6e\u8bbe\u7f6e", - "LabelEnableAutomaticPortMapping": "\u542f\u7528\u81ea\u52a8\u7aef\u53e3\u6620\u5c04", - "LabelEnableAutomaticPortMappingHelp": "UPNP\u5141\u8bb8\u81ea\u52a8\u8def\u7531\u5668\u914d\u7f6e\uff0c\u4ece\u800c\u66f4\u65b9\u4fbf\u7684\u8fdb\u884c\u8fdc\u7a0b\u8bbf\u95ee\u3002\u4f46\u8fd9\u53ef\u80fd\u4e0d\u9002\u7528\u4e8e\u67d0\u4e9b\u578b\u53f7\u7684\u8def\u7531\u5668\u3002", "HeaderTermsOfService": "Emby \u670d\u52a1\u7fa4\u7ec4", "MessagePleaseAcceptTermsOfService": "\u7ee7\u7eed\u4e4b\u524d\u8bf7\u63a5\u53d7\u670d\u52a1\u548c\u9690\u79c1\u653f\u7b56\u6761\u6b3e\u3002", "OptionIAcceptTermsOfService": "\u6211\u63a5\u53d7\u670d\u52a1\u6761\u6b3e", "ButtonPrivacyPolicy": "\u9690\u79c1\u653f\u7b56", "ButtonTermsOfService": "\u670d\u52a1\u6761\u6b3e", - "HeaderDeveloperOptions": "\u5f00\u53d1\u4eba\u5458\u9009\u9879", - "OptionEnableWebClientResponseCache": "Enable web response caching", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web\u5ba2\u6237\u7aef\u6e90\u8def\u5f84\uff1a", - "LabelDashboardSourcePathHelp": "\u5982\u679c\u4ece\u6e90\u8fd0\u884c\u670d\u52a1\u5668\uff0c\u8bf7\u6307\u5b9a\u63a7\u5236\u53f0UI\u6587\u4ef6\u5939\u8def\u5f84\u3002\u8fd9\u4e2a\u6587\u4ef6\u5939\u5c06\u63d0\u4f9bWeb\u5ba2\u6237\u7aef\u7684\u6240\u6709\u6587\u4ef6\u3002", "ButtonConvertMedia": "\u5a92\u4f53\u8f6c\u6362", "ButtonOrganize": "\u6574\u7406", - "HeaderSupporterBenefits": "Emby \u9996\u6620\u793c", + "HeaderSupporterBenefits": "Emby Premiere \u76ca\u5904", "HeaderAddUser": "\u6dfb\u52a0\u7528\u6237", "LabelAddConnectSupporterHelp": "\u6dfb\u52a0\u4e00\u4e2a\u6ca1\u6709\u5728\u5217\u8868\u5185\u7684\u7528\u6237\uff0c\u4f60\u9700\u8981\u5148\u5c06\u8be5\u8d26\u6237\u4ece\u4ed6\u4eec\u7684\u7528\u6237\u914d\u7f6e\u9875\u9762\u94fe\u63a5\u5230Emby Connect\u3002", "LabelPinCode": "PIN\u7801\uff1a", "OptionHideWatchedContentFromLatestMedia": "\u4ece\u6700\u65b0\u5a92\u4f53\u4e2d\u9690\u85cf\u5df2\u89c2\u770b\u7684\u5185\u5bb9", - "HeaderSync": "Sync", + "DeleteMedia": "\u5220\u9664\u5a92\u4f53", + "HeaderSync": "\u540c\u6b65", "ButtonOk": "\u786e\u5b9a", "ButtonCancel": "\u53d6\u6d88", "ButtonExit": "\u9000\u51fa", "ButtonNew": "\u65b0\u589e", + "OptionDev": "\u5f00\u53d1\u7248", + "OptionBeta": "\u6d4b\u8bd5\u7248", "HeaderTaskTriggers": "\u4efb\u52a1\u89e6\u53d1\u6761\u4ef6", "HeaderTV": "\u7535\u89c6", "HeaderAudio": "\u97f3\u9891", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "\u8bf7\u8f93\u5165\u7b80\u6613pin\u7801\u6765\u8bbf\u95ee\n", "ButtonConfigurePinCode": "\u914d\u7f6e\u7b80\u6613PIN\u7801\uff1a", "RegisterWithPayPal": "\u6ce8\u518cPayPal", - "HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528", "LabelSyncTempPath": "\u4e34\u65f6\u6587\u4ef6\u8def\u5f84\uff1a", "LabelSyncTempPathHelp": "\u6307\u5b9a\u540c\u6b65\u65f6\u7684\u5de5\u4f5c\u6587\u4ef6\u5939\u3002\u5728\u540c\u6b65\u8fc7\u7a0b\u4e2d\u521b\u5efa\u7684\u8f6c\u6362\u5a92\u4f53\u6587\u4ef6\u5c06\u88ab\u5b58\u653e\u5728\u8fd9\u91cc\u3002", "LabelCustomCertificatePath": "\u81ea\u5b9a\u4e49\u8bc1\u4e66\u8def\u5f84\uff1a", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u542f\u7528\uff0c\u4e0e.RAR\u548c.zip\u6269\u5c55\u540d\u7684\u6587\u4ef6\u5c06\u88ab\u68c0\u6d4b\u4e3a\u5a92\u4f53\u6587\u4ef6\u3002", "LabelEnterConnectUserName": "\u7528\u6237\u540d\u6216email\uff1a", "LabelEnterConnectUserNameHelp": "\u8fd9\u662f\u60a8\u7684Emby\u5728\u7ebf\u8d26\u6237\u7684\u7528\u6237\u540d\u6216email\uff1a", - "LabelEnableEnhancedMovies": "\u542f\u7528\u589e\u5f3a\u7535\u5f71\u663e\u793a", - "LabelEnableEnhancedMoviesHelp": "\u542f\u7528\u65f6\uff0c\u7535\u5f71\u5c06\u663e\u793a\u4e3a\u6587\u4ef6\u5939\uff0c\u5305\u62ec\u9884\u544a\u7247\u3001\u82b1\u7d6e\u3001\u6f14\u804c\u4eba\u5458\u548c\u5176\u4ed6\u76f8\u5173\u5185\u5bb9\u3002", "HeaderSyncJobInfo": "\u540c\u6b65\u4f5c\u4e1a", "FolderTypeMixed": "\u6df7\u5408\u5185\u5bb9", "FolderTypeMovies": "\u7535\u5f71", @@ -83,8 +69,7 @@ "FolderTypeInherit": "\u7ee7\u627f", "LabelContentType": "\u5185\u5bb9\u7c7b\u578b", "TitleScheduledTasks": "\u8ba1\u5212\u4efb\u52a1", - "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u4f53\u6587\u4ef6\u5939", + "HeaderSetupLibrary": "\u8bbe\u7f6e\u60a8\u7684\u5a92\u4f53\u5e93", "LabelFolderType": "\u6587\u4ef6\u5939\u7c7b\u578b\uff1a", "LabelCountry": "\u56fd\u5bb6\uff1a", "LabelLanguage": "\u8bed\u8a00\uff1a", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "\u76f4\u63a5\u4fdd\u5b58\u5a92\u4f53\u56fe\u50cf\u53ca\u8d44\u6599\u5230\u5a92\u4f53\u6240\u5728\u6587\u4ef6\u5939\u4ee5\u65b9\u4fbf\u7f16\u8f91\u3002", "LabelDownloadInternetMetadata": "\u4ece\u4e92\u8054\u7f51\u4e0b\u8f7d\u5a92\u4f53\u56fe\u50cf\u53ca\u8d44\u6599", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "\u504f\u597d", "TabPassword": "\u5bc6\u7801", "TabLibraryAccess": "\u5a92\u4f53\u5e93\u8bbf\u95ee\u6743\u9650", "TabAccess": "\u8bbf\u95ee", @@ -110,13 +94,16 @@ "OptionEnableAccessToAllLibraries": "\u542f\u7528\u6240\u6709\u5a92\u4f53\u5e93\u53ef\u4ee5\u8bbf\u95ee", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "\u663e\u793a\u6bcf\u5b63\u91cc\u7f3a\u5c11\u7684\u5267\u96c6", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "\u663e\u793a\u6bcf\u5b63\u91cc\u672a\u53d1\u5e03\u7684\u5267\u96c6", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "\u89c6\u9891\u56de\u653e\u8bbe\u7f6e", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "\u64ad\u653e\u8bbe\u7f6e", "LabelAudioLanguagePreference": "\u97f3\u9891\u8bed\u8a00\u504f\u597d\u8bbe\u7f6e", "LabelSubtitleLanguagePreference": "\u5b57\u5e55\u8bed\u8a00\u504f\u597d\u8bbe\u7f6e", "OptionDefaultSubtitles": "\u9ed8\u8ba4", - "OptionSmartSubtitles": "Smart", + "OptionSmartSubtitles": "\u667a\u80fd", "OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "OptionOnlyForcedSubtitles": "\u4ec5\u7528\u5f3a\u5236\u5b57\u5e55", "OptionAlwaysPlaySubtitles": "\u603b\u662f\u64ad\u653e\u5b57\u5e55", @@ -145,17 +132,17 @@ "ImageUploadAspectRatioHelp": "\u63a8\u8350\u4f7f\u7528\u957f\u5bbd\u6bd41:1\u7684\u56fe\u7247\u3002 \u683c\u5f0f\u4ec5\u9650JPG \/ PNG\u3002", "MessageNothingHere": "\u8fd9\u513f\u4ec0\u4e48\u90fd\u6ca1\u6709\u3002", "MessagePleaseEnsureInternetMetadata": "\u8bf7\u786e\u4fdd\u5df2\u542f\u7528\u4ece\u4e92\u8054\u7f51\u4e0b\u8f7d\u5a92\u4f53\u8d44\u6599\u3002", - "TabSuggested": "\u5efa\u8bae", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "\u5efa\u8bae", "TabLatest": "\u6700\u65b0", "TabUpcoming": "\u5373\u5c06\u53d1\u5e03", "TabShows": "\u8282\u76ee", "TabEpisodes": "\u5267\u96c6", "TabGenres": "\u98ce\u683c", - "TabPeople": "\u4eba\u7269", "TabNetworks": "\u7f51\u7edc", "HeaderUsers": "\u7528\u6237", - "HeaderFilters": "Filters", + "HeaderFilters": "\u7b5b\u9009", "ButtonFilter": "\u7b5b\u9009", "OptionFavorite": "\u6211\u7684\u6700\u7231", "OptionLikes": "\u559c\u6b22", @@ -166,6 +153,7 @@ "OptionWriters": "\u7f16\u5267", "OptionProducers": "\u5236\u7247\u4eba", "HeaderResume": "\u6062\u590d\u64ad\u653e", + "HeaderContinueWatching": "\u7ee7\u7eed\u89c2\u770b", "HeaderNextUp": "\u4e0b\u4e00\u96c6", "NoNextUpItemsMessage": "\u6ca1\u6709\u53d1\u73b0\u3002\u5f00\u59cb\u770b\u4f60\u7684\u8282\u76ee\uff01", "HeaderLatestEpisodes": "\u6700\u65b0\u5267\u96c6", @@ -185,6 +173,7 @@ "OptionPlayCount": "\u64ad\u653e\u6b21\u6570", "OptionDatePlayed": "\u64ad\u653e\u65e5\u671f", "OptionDateAdded": "\u52a0\u5165\u65e5\u671f", + "DateAddedValue": "\u6dfb\u52a0\u65e5\u671f\uff1a{0}", "OptionAlbumArtist": "\u4e13\u8f91\u827a\u672f\u5bb6", "OptionArtist": "\u827a\u672f\u5bb6", "OptionAlbum": "\u4e13\u8f91", @@ -195,27 +184,25 @@ "OptionBudget": "\u9884\u7b97", "OptionRevenue": "\u6536\u5165", "OptionPoster": "\u6d77\u62a5", - "OptionPosterCard": "Poster card", + "OptionPosterCard": "\u660e\u4fe1\u7247", "OptionBackdrop": "\u80cc\u666f", "OptionTimeline": "\u65f6\u95f4\u8868", "OptionThumb": "\u7f29\u7565\u56fe", - "OptionThumbCard": "Thumb card", + "OptionThumbCard": "\u7f29\u7565\u5361", "OptionBanner": "\u6a2a\u5e45", "OptionCriticRating": "\u5f71\u8bc4\u4eba\u8bc4\u5206", "OptionVideoBitrate": "\u89c6\u9891\u6bd4\u7279\u7387", "OptionResumable": "\u53ef\u6062\u590d\u64ad\u653e", "ScheduledTasksHelp": "\u5355\u51fb\u4efb\u52a1\u8c03\u6574\u5176\u8fd0\u884c\u65f6\u95f4\u8868\u3002", - "ScheduledTasksTitle": "\u8ba1\u5212\u4efb\u52a1", "TabMyPlugins": "\u6211\u7684\u63d2\u4ef6", "TabCatalog": "\u76ee\u5f55", - "TitlePlugins": "Plugins", + "TitlePlugins": "\u63d2\u4ef6", "HeaderAutomaticUpdates": "\u81ea\u52a8\u66f4\u65b0", "HeaderNowPlaying": "\u6b63\u5728\u64ad\u653e", "HeaderLatestAlbums": "\u6700\u65b0\u4e13\u8f91", "HeaderLatestSongs": "\u6700\u65b0\u6b4c\u66f2", "HeaderRecentlyPlayed": "\u6700\u8fd1\u64ad\u653e", "HeaderFrequentlyPlayed": "\u591a\u6b21\u64ad\u653e", - "DevBuildWarning": "\u5f00\u53d1\u7248\u672c\u662f\u6700\u524d\u7aef\u7684\u3002\u8fd9\u4e9b\u7248\u672c\u7ecf\u5e38\u53d1\u5e03\u4f46\u6ca1\u6709\u7ecf\u8fc7\u6d4b\u8bd5\u3002\u53ef\u80fd\u4f1a\u5bfc\u81f4\u5e94\u7528\u7a0b\u5e8f\u5d29\u6e83\uff0c\u4e14\u6240\u6709\u529f\u80fd\u65e0\u6cd5\u5de5\u4f5c\u3002", "LabelVideoType": "\u89c6\u9891\u7c7b\u578b\uff1a", "OptionBluray": "\u84dd\u5149", "OptionDvd": "DVD", @@ -240,15 +227,15 @@ "TabBasic": "\u57fa\u672c", "TabAdvanced": "\u9ad8\u7ea7", "OptionContinuing": "\u7ee7\u7eed", - "OptionEnded": "\u7ed3\u675f", + "OptionEnded": "\u5b8c\u7ed3", "HeaderAirDays": "\u64ad\u51fa\u65e5\u671f", - "OptionSundayShort": "Sun", - "OptionMondayShort": "Mon", - "OptionTuesdayShort": "Tue", - "OptionWednesdayShort": "Wed", - "OptionThursdayShort": "Thu", - "OptionFridayShort": "Fri", - "OptionSaturdayShort": "Sat", + "OptionSundayShort": "\u661f\u671f\u65e5", + "OptionMondayShort": "\u661f\u671f\u4e00", + "OptionTuesdayShort": "\u661f\u671f\u4e8c", + "OptionWednesdayShort": "\u661f\u671f\u4e09", + "OptionThursdayShort": "\u661f\u671f\u56db", + "OptionFridayShort": "\u661f\u671f\u4e94", + "OptionSaturdayShort": "\u661f\u671f\u516d", "OptionSunday": "\u661f\u671f\u5929", "OptionMonday": "\u661f\u671f\u4e00", "OptionTuesday": "\u661f\u671f\u4e8c", @@ -261,37 +248,35 @@ "OptionMissingImdbId": "\u7f3a\u5c11IMDb \u7f16\u53f7", "OptionMissingTvdbId": "\u7f3a\u5c11TheTVDB \u7f16\u53f7", "OptionMissingOverview": "\u7f3a\u5c11\u6982\u8ff0", - "TabGeneral": "\u4e00\u822c", + "TabGeneral": "\u5e38\u89c4", "TitleSupport": "\u652f\u6301", "TabAbout": "\u5173\u4e8e", - "TabSupporterKey": "Emby Premiere Key", - "TabBecomeSupporter": "Get Emby Premiere", + "TabSupporterKey": "Emby Premiere \u94a5\u5319", + "TabBecomeSupporter": "\u83b7\u53d6 Emby Premiere", "TabEmbyPremiere": "Emby Premiere", "ProjectHasCommunity": "Emby has a thriving community of users and contributors.", "CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.", "SearchKnowledgeBase": "\u641c\u7d22\u77e5\u8bc6\u5e93", "VisitTheCommunity": "\u8bbf\u95ee\u793e\u533a", - "VisitProjectWebsite": "Visit the Emby Web Site", + "VisitProjectWebsite": "\u8bbf\u95ee Emby \u7f51\u7ad9", "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.", "OptionHideUser": "\u4ece\u767b\u9646\u9875\u9762\u9690\u85cf\u6b64\u7528\u6237", "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6237", "OptionDisableUserHelp": "\u5982\u679c\u7981\u7528\u8be5\u7528\u6237\uff0c\u670d\u52a1\u5668\u5c06\u4e0d\u5141\u8bb8\u8be5\u7528\u6237\u8fde\u63a5\u3002\u73b0\u6709\u7684\u8fde\u63a5\u5c06\u88ab\u7ec8\u6b62\u3002", - "HeaderAdvancedControl": "\u9ad8\u7ea7\u63a7\u5236", "LabelName": "\u540d\u5b57\uff1a", - "ButtonHelp": "Help", + "ButtonHelp": "\u5e2e\u52a9", "OptionAllowUserToManageServer": "\u8fd0\u884c\u6b64\u7528\u6237\u7ba1\u7406\u670d\u52a1\u5668", "HeaderFeatureAccess": "\u53ef\u4f7f\u7528\u7684\u529f\u80fd", - "OptionAllowMediaPlayback": "Allow media playback", - "OptionAllowBrowsingLiveTv": "Allow Live TV access", - "OptionAllowDeleteLibraryContent": "Allow media deletion", - "OptionAllowManageLiveTv": "Allow Live TV recording management", - "OptionAllowRemoteControlOthers": "Allow remote control of other users", - "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices", - "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", - "OptionAllowLinkSharing": "Allow social media sharing", + "OptionAllowMediaPlayback": "\u5141\u8bb8\u64ad\u653e\u5a92\u4f53", + "OptionAllowBrowsingLiveTv": "\u5141\u8bb8\u8bbf\u95ee\u7535\u89c6\u76f4\u64ad", + "OptionAllowDeleteLibraryContent": "\u5141\u8bb8\u5a92\u4f53\u5220\u9664", + "OptionAllowManageLiveTv": "\u5141\u8bb8\u7535\u89c6\u76f4\u64ad\u5f55\u5236\u7ba1\u7406", + "OptionAllowRemoteControlOthers": "\u5141\u8bb8\u5176\u4ed6\u7528\u6237\u5168\u7a0b\u63a7\u5236", + "OptionAllowRemoteSharedDevices": "\u5141\u8bb8\u8fdc\u7a0b\u63a7\u5236\u5171\u4eab\u7684\u8bbe\u5907", + "OptionAllowRemoteSharedDevicesHelp": "Dlna \u8bbe\u5907\u4e3a\u5171\u4eab\u7684\u76f4\u5230\u6709\u7528\u6237\u5f00\u59cb\u63a7\u5236\u3002", + "OptionAllowLinkSharing": "\u5141\u8bb8\u793e\u4ea4\u5a92\u4f53\u5171\u4eab", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "\u5206\u4eab", "HeaderRemoteControl": "\u9065\u63a7", "OptionMissingTmdbId": "\u7f3a\u5c11Tmdb \u7f16\u53f7", "OptionIsHD": "HD\u9ad8\u6e05", @@ -306,10 +291,7 @@ "TabPaths": "\u8def\u5f84", "TabServer": "\u670d\u52a1\u5668", "TabTranscoding": "\u8f6c\u7801", - "TitleAdvanced": "\u9ad8\u7ea7", "OptionRelease": "\u5b98\u65b9\u6b63\u5f0f\u7248", - "OptionBeta": "\u6d4b\u8bd5\u7248", - "OptionDev": "\u5f00\u53d1\u7248\uff08\u4e0d\u7a33\u5b9a\uff09", "LabelAllowServerAutoRestart": "\u5141\u8bb8\u670d\u52a1\u5668\u81ea\u52a8\u91cd\u542f\u6765\u5b89\u88c5\u66f4\u65b0", "LabelAllowServerAutoRestartHelp": "\u8be5\u670d\u52a1\u5668\u4ec5\u4f1a\u5728\u7a7a\u95f2\u548c\u6ca1\u6709\u6d3b\u52a8\u7528\u6237\u7684\u671f\u95f4\u91cd\u65b0\u542f\u52a8\u3002", "LabelRunServerAtStartup": "\u5f00\u673a\u542f\u52a8\u670d\u52a1\u5668", @@ -317,12 +299,12 @@ "ButtonSelectDirectory": "\u9009\u62e9\u76ee\u5f55", "LabelCachePath": "\u7f13\u5b58\u8def\u5f84\uff1a", "LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.", - "LabelRecordingPath": "Default recording path:", - "LabelMovieRecordingPath": "Movie recording path (optional):", - "LabelSeriesRecordingPath": "Series recording path (optional):", + "LabelRecordingPath": "\u9ed8\u8ba4\u5f55\u5236\u8def\u5f84\uff1a", + "LabelMovieRecordingPath": "\u7535\u5f71\u5f55\u5236\u8def\u5f84 (\u53ef\u9009)\uff1a", + "LabelSeriesRecordingPath": "\u7cfb\u5217\u5f55\u5236\u8def\u5f84 (\u53ef\u9009)\uff1a", "LabelRecordingPathHelp": "Specify the default location to save recordings. If left empty, the server's program data folder will be used.", "LabelMetadataPath": "\u5a92\u4f53\u8d44\u6599\u8def\u5f84\uff1a", - "LabelMetadataPathHelp": "Specify a custom location for downloaded artwork and metadata.", + "LabelMetadataPathHelp": "\u6307\u5b9a\u4e0b\u8f7d\u56fe\u50cf\u548c\u8d44\u6599\u7684\u81ea\u5b9a\u4e49\u8def\u5f84", "LabelTranscodingTempPath": "\u4e34\u65f6\u89e3\u7801\u8def\u5f84\uff1a", "LabelTranscodingTempPathHelp": "\u6b64\u6587\u4ef6\u5939\u5305\u542b\u7528\u4e8e\u8f6c\u7801\u7684\u5de5\u4f5c\u6587\u4ef6\u3002\u8bf7\u81ea\u5b9a\u4e49\u8def\u5f84\uff0c\u6216\u7559\u7a7a\u4ee5\u4f7f\u7528\u9ed8\u8ba4\u7684\u670d\u52a1\u5668\u6570\u636e\u6587\u4ef6\u5939\u3002", "TabBasics": "\u57fa\u7840", @@ -330,12 +312,10 @@ "TabGames": "\u6e38\u620f", "TabMusic": "\u97f3\u4e50", "TabOthers": "\u5176\u4ed6", - "HeaderExtractChapterImagesFor": "\u4ece\u9009\u62e9\u7ae0\u8282\u4e2d\u63d0\u53d6\u56fe\u7247\uff1a", "OptionMovies": "\u7535\u5f71", "OptionEpisodes": "\u5267\u96c6", "OptionOtherVideos": "\u5176\u4ed6\u89c6\u9891", - "TitleMetadata": "\u5a92\u4f53\u8d44\u6599", - "LabelFanartApiKey": "Personal api key:", + "LabelFanartApiKey": "\u4e2a\u4eba api \u5bc6\u94a5\uff1a", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", "LabelMetadataDownloadLanguage": "\u9996\u9009\u4e0b\u8f7d\u8bed\u8a00\uff1a", @@ -350,23 +330,22 @@ "TabCollections": "\u5408\u96c6", "HeaderChannels": "\u9891\u9053", "TabRecordings": "\u5f55\u5236", - "TabScheduled": "\u9884\u5b9a", "TabSeries": "\u7535\u89c6\u5267", "TabFavorites": "\u6211\u7684\u6700\u7231", "TabMyLibrary": "\u6211\u7684\u5a92\u4f53\u5e93", "ButtonCancelRecording": "\u53d6\u6d88\u5f55\u5236", - "LabelPrePaddingMinutes": "\u9884\u5148\u5145\u586b\u5206\u949f\u6570\uff1a", - "LabelPostPaddingMinutes": "\u540e\u671f\u586b\u5145\u5206\u949f\u6570\uff1a", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "\u5206\u949f\u524d", + "MinutesAfter": "\u5206\u949f\u540e", "HeaderWhatsOnTV": "\u6b63\u5728\u64ad\u653e", - "TabStatus": "\u72b6\u6001", "TabSettings": "\u8bbe\u7f6e", "ButtonRefreshGuideData": "\u5237\u65b0\u6307\u5357\u6570\u636e", "ButtonRefresh": "\u5237\u65b0", "OptionPriority": "\u4f18\u5148", - "OptionRecordOnAllChannels": "Record on all channels", - "OptionRecordAnytime": "Record at any time", + "OptionRecordOnAllChannels": "\u5f55\u5236\u6240\u6709\u9891\u9053", + "OptionRecordAnytime": "\u5f55\u5236\u6240\u6709\u65f6\u6bb5", "OptionRecordOnlyNewEpisodes": "\u53ea\u5f55\u5236\u65b0\u5267\u96c6", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "\u5929", "HeaderActiveRecordings": "\u6b63\u5728\u5f55\u5236\u7684\u8282\u76ee", "HeaderLatestRecordings": "\u6700\u65b0\u5f55\u5236\u7684\u8282\u76ee", @@ -382,7 +361,7 @@ "LabelNumberOfGuideDays": "\u4e0b\u8f7d\u51e0\u5929\u7684\u8282\u76ee\u6307\u5357\uff1a", "LabelNumberOfGuideDaysHelp": "\u4e0b\u8f7d\u66f4\u591a\u5929\u7684\u8282\u76ee\u6307\u5357\u53ef\u4ee5\u5e2e\u4f60\u8fdb\u4e00\u6b65\u67e5\u770b\u8282\u76ee\u5217\u8868\u5e76\u505a\u51fa\u63d0\u524d\u5b89\u6392\uff0c\u4f46\u4e0b\u8f7d\u8fc7\u7a0b\u4e5f\u5c06\u8017\u65f6\u66f4\u4e45\u3002\u5b83\u5c06\u57fa\u4e8e\u9891\u9053\u6570\u91cf\u81ea\u52a8\u9009\u62e9\u3002", "OptionAutomatic": "\u81ea\u52a8", - "HeaderServices": "Services", + "HeaderServices": "\u670d\u52a1", "LabelCustomizeOptionsPerMediaType": "\u81ea\u5b9a\u4e49\u5a92\u4f53\u7c7b\u578b\uff1a", "OptionDownloadThumbImage": "\u7f29\u7565\u56fe", "OptionDownloadMenuImage": "\u83dc\u5355", @@ -400,8 +379,8 @@ "LabelMaxScreenshotsPerItem": "\u6bcf\u4e2a\u9879\u76ee\u6700\u5927\u622a\u56fe\u6570\u76ee\uff1a", "LabelMinBackdropDownloadWidth": "\u4e0b\u8f7d\u80cc\u666f\u56fe\u7684\u6700\u5c0f\u5bbd\u5ea6\uff1a", "LabelMinScreenshotDownloadWidth": "\u4e0b\u8f7d\u622a\u56fe\u7684\u6700\u5c0f\u5bbd\u5ea6\uff1a", - "ButtonAddScheduledTaskTrigger": "Add Trigger", - "HeaderAddScheduledTaskTrigger": "Add Trigger", + "ButtonAddScheduledTaskTrigger": "\u6dfb\u52a0\u89e6\u53d1", + "HeaderAddScheduledTaskTrigger": "\u6dfb\u52a0\u89e6\u53d1", "ButtonAdd": "\u6dfb\u52a0", "LabelTriggerType": "\u89e6\u53d1\u7c7b\u578b\uff1a", "OptionDaily": "\u6bcf\u65e5", @@ -418,14 +397,13 @@ "HeaderLatestGames": "\u6700\u65b0\u6e38\u620f", "HeaderRecentlyPlayedGames": "\u6700\u8fd1\u73a9\u8fc7\u7684\u6e38\u620f", "TabGameSystems": "\u6e38\u620f\u7cfb\u7edf", - "TitleMediaLibrary": "\u5a92\u4f53\u5e93", "TabFolders": "\u6587\u4ef6\u5939", "TabPathSubstitution": "\u8def\u5f84\u66ff\u6362", "LabelSeasonZeroDisplayName": "\u7b2c0\u5b63\u663e\u793a\u540d\u79f0\u4e3a\uff1a", "LabelEnableRealtimeMonitor": "\u542f\u7528\u5b9e\u65f6\u76d1\u63a7", "LabelEnableRealtimeMonitorHelp": "\u7acb\u5373\u5904\u7406\u652f\u6301\u7684\u6587\u4ef6\u7cfb\u7edf\u66f4\u6539\u3002", "ButtonScanLibrary": "\u626b\u63cf\u5a92\u4f53\u5e93", - "HeaderNumberOfPlayers": "Players", + "HeaderNumberOfPlayers": "\u64ad\u653e\u5668", "OptionAnyNumberOfPlayers": "\u4efb\u610f", "Option1Player": "1+", "Option2Player": "2+", @@ -444,24 +422,15 @@ "ButtonSplitVersionsApart": "\u652f\u7ebf\u7248\u672c", "ButtonPlayTrailer": "\u9884\u544a\u7247", "LabelMissing": "\u7f3a\u5931", - "LabelOffline": "\u79bb\u7ebf", - "PathSubstitutionHelp": "\u8def\u5f84\u66ff\u6362\u7528\u4e8e\u628a\u670d\u52a1\u5668\u4e0a\u7684\u8def\u5f84\u6620\u5c04\u5230\u5ba2\u6237\u7aef\u80fd\u591f\u8bbf\u95ee\u7684\u8def\u5f84\u3002\u5141\u8bb8\u7528\u6237\u76f4\u63a5\u8bbf\u95ee\u670d\u52a1\u5668\u4e0a\u7684\u5a92\u4f53\uff0c\u5e76\u80fd\u591f\u76f4\u63a5\u901a\u8fc7\u7f51\u7edc\u4e0a\u64ad\u653e\uff0c\u53ef\u4ee5\u4e0d\u8fdb\u884c\u8f6c\u6d41\u548c\u8f6c\u7801\uff0c\u4ece\u800c\u8282\u7ea6\u670d\u52a1\u5668\u8d44\u6e90\u3002", - "HeaderFrom": "\u4ece", - "HeaderTo": "\u5230", - "LabelFrom": "\u4ece\uff1a", - "LabelTo": "\u5230\uff1a", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "\u6dfb\u52a0\u8def\u5f84\u66ff\u6362", "OptionSpecialEpisode": "\u7279\u96c6", "OptionMissingEpisode": "\u7f3a\u5c11\u7684\u5267\u96c6", "OptionUnairedEpisode": "\u5c1a\u672a\u53d1\u5e03\u7684\u5267\u96c6", "OptionEpisodeSortName": "\u5267\u96c6\u540d\u79f0\u6392\u5e8f", "OptionSeriesSortName": "\u7535\u89c6\u5267\u540d\u79f0", "OptionTvdbRating": "Tvdb \u8bc4\u5206", - "EditCollectionItemsHelp": "\u6dfb\u52a0\u6216\u79fb\u9664\u8fd9\u4e2a\u96c6\u5408\u91cc\u7684\u4efb\u4f55\u7535\u5f71\uff0c\u7535\u89c6\u5267\uff0c\u4e13\u8f91\uff0c\u4e66\u7c4d\u6216\u6e38\u620f\u3002", "HeaderAddTitles": "\u6dfb\u52a0\u6807\u9898", "LabelEnableDlnaPlayTo": "\u64ad\u653e\u5230DLNA\u8bbe\u5907", - "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", + "LabelEnableDlnaPlayToHelp": "Emby \u53ef\u4ee5\u68c0\u67e5\u60a8\u7f51\u7edc\u91cc\u7684\u8bbe\u5907\u5e76\u80fd\u8fdc\u7a0b\u63a7\u5236\u4ed6\u4eec\u3002", "LabelEnableDlnaDebugLogging": "\u542f\u7528DLNA\u9664\u9519\u65e5\u5fd7", "LabelEnableDlnaDebugLoggingHelp": "\u8fd9\u5c06\u521b\u5efa\u4e00\u4e2a\u5f88\u5927\u7684\u65e5\u5fd7\u6587\u4ef6\uff0c\u4ec5\u63a8\u8350\u5728\u6392\u9664\u6545\u969c\u65f6\u4f7f\u7528\u3002", "LabelEnableDlnaClientDiscoveryInterval": "\u5ba2\u6237\u7aef\u641c\u5bfb\u65f6\u95f4\u95f4\u9694\uff08\u79d2\uff09", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "\u7cfb\u7edf\u914d\u7f6e", "CustomDlnaProfilesHelp": "\u4e3a\u65b0\u7684\u8bbe\u5907\u521b\u5efa\u81ea\u5b9a\u4e49\u914d\u7f6e\u6587\u4ef6\u6216\u8986\u76d6\u539f\u6709\u7cfb\u7edf\u914d\u7f6e\u6587\u4ef6\u3002", "SystemDlnaProfilesHelp": "\u7cfb\u7edf\u914d\u7f6e\u4e3a\u53ea\u8bfb\uff0c\u66f4\u6539\u7cfb\u7edf\u914d\u7f6e\u5c06\u4fdd\u6301\u4e3a\u65b0\u7684\u81ea\u5b9a\u4e49\u914d\u7f6e\u6587\u4ef6\u3002", - "TitleDashboard": "\u63a7\u5236\u53f0", "TabHome": "\u9996\u9875", "TabInfo": "\u4fe1\u606f", "HeaderLinks": "\u94fe\u63a5", @@ -479,26 +447,26 @@ "LinkApi": "Api", "LabelFriendlyServerName": "\u597d\u8bb0\u7684\u670d\u52a1\u5668\u540d\u79f0\uff1a", "LabelFriendlyServerNameHelp": "\u6b64\u540d\u79f0\u5c06\u7528\u505a\u670d\u52a1\u5668\u540d\uff0c\u5982\u679c\u7559\u7a7a\uff0c\u5c06\u4f7f\u7528\u8ba1\u7b97\u673a\u540d\u3002", - "LabelPreferredDisplayLanguage": "Preferred display language:", + "LabelPreferredDisplayLanguage": "\u9996\u9009\u663e\u793a\u8bed\u8a00\uff1a", "LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.", "LabelReadHowYouCanContribute": "Learn how you can contribute.", "ButtonSubmit": "\u63d0\u4ea4", "ButtonCreate": "\u521b\u5efa", - "LabelCustomCss": "Custom css:", - "LabelCustomCssHelp": "Apply your own custom css to the web interface.", - "LabelLocalHttpServerPortNumber": "Local http port number:", - "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.", - "LabelPublicHttpPort": "Public http port number:", - "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.", - "LabelPublicHttpsPort": "Public https port number:", - "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.", + "LabelCustomCss": "\u81ea\u5b9a\u4e49 css\uff1a", + "LabelCustomCssHelp": "\u5e94\u7528\u60a8\u7684\u81ea\u5b9a\u4e49 css \u5230\u7f51\u9875\u3002", + "LabelLocalHttpServerPortNumber": "\u672c\u5730 http \u7aef\u53e3\u53f7\uff1a", + "LabelLocalHttpServerPortNumberHelp": "Emby http \u670d\u52a1\u7aef\u7ed1\u5b9a\u5230\u7684 tcp \u7aef\u53e3\u3002", + "LabelPublicHttpPort": "\u516c\u5f00 http \u7aef\u53e3\u53f7\uff1a", + "LabelPublicHttpPortHelp": "\u6620\u5c04\u5230\u672c\u5730 http \u7aef\u53e3\u7684\u516c\u5f00\u7aef\u53e3\u53f7\u3002", + "LabelPublicHttpsPort": "\u516c\u5f00 https \u7aef\u53e3\u53f7\uff1a", + "LabelPublicHttpsPortHelp": "\u6620\u5c04\u5230\u672c\u5730 http\u0003s \u7aef\u53e3\u7684\u516c\u5f00\u7aef\u53e3\u53f7\u3002", "LabelEnableHttps": "Report https as external address", "LabelEnableHttpsHelp": "If enabled, the server will report an https url to Emby apps as it's external address.", - "LabelHttpsPort": "Local https port number:", + "LabelHttpsPort": "\u672c\u5730 https \u7aef\u53e3\u53f7\uff1a", "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.", - "LabelEnableAutomaticPortMap": "Enable automatic port mapping", + "LabelEnableAutomaticPortMap": "\u5f00\u542f\u81ea\u52a8\u7aef\u53e3\u6620\u5c04", "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.", - "LabelExternalDDNS": "External domain:", + "LabelExternalDDNS": "\u5916\u90e8\u57df\u540d\uff1a", "LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. This field is required when used with a custom ssl certificate.", "TitleAppSettings": "\u5ba2\u6237\u7aef\u7a0b\u5e8f\u8bbe\u7f6e", "LabelMinResumePercentage": "\u6062\u590d\u64ad\u653e\u6700\u5c0f\u767e\u5206\u6bd4\uff1a", @@ -507,9 +475,8 @@ "LabelMinResumePercentageHelp": "\u5982\u679c\u5728\u6b64\u65f6\u95f4\u4e4b\u524d\u505c\u6b62\u64ad\u653e\uff0c\u5a92\u4f53\u4f1a\u6807\u8bb0\u4e3a\u201c\u672a\u64ad\u653e\u201d", "LabelMaxResumePercentageHelp": "\u5982\u679c\u5728\u6b64\u65f6\u95f4\u4e4b\u540e\u505c\u6b62\u64ad\u653e\uff0c\u5a92\u4f53\u4f1a\u6807\u8bb0\u4e3a\u201c\u5df2\u64ad\u653e\u201d", "LabelMinResumeDurationHelp": "\u5a92\u4f53\u64ad\u653e\u65f6\u95f4\u8fc7\u77ed\uff0c\u4e0d\u53ef\u6062\u590d\u64ad\u653e", - "TitleAutoOrganize": "\u81ea\u52a8\u6574\u7406", "TabActivityLog": "\u6d3b\u52a8\u65e5\u5fd7", - "TabSmartMatches": "Smart Matches", + "TabSmartMatches": "\u667a\u80fd\u5339\u914d", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", "HeaderName": "\u540d\u5b57", "HeaderDate": "\u65e5\u671f", @@ -522,16 +489,15 @@ "LabelFailed": "\u5931\u8d25", "LabelSkipped": "\u8df3\u8fc7", "LabelSeries": "\u7535\u89c6\u5267\uff1a", - "LabelSeasonNumber": "Season number:", - "LabelEpisodeNumber": "Episode number:", + "LabelSeasonNumber": "\u5b63\u53f7\uff1a", + "LabelEpisodeNumber": "\u96c6\u53f7\uff1a", "LabelEndingEpisodeNumber": "\u6700\u540e\u4e00\u96c6\u6570\u5b57\uff1a", "LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", - "HeaderSupportTheTeam": "Support the Emby Team", + "HeaderSupportTheTeam": "\u652f\u6301 Emby \u56e2\u961f", "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "\u81ea\u52a8\u6574\u7406\u4f1a\u76d1\u63a7\u4f60\u4e0b\u8f7d\u6587\u4ef6\u5939\u4e2d\u7684\u65b0\u6587\u4ef6\uff0c\u5e76\u4e14\u4f1a\u81ea\u52a8\u628a\u5b83\u4eec\u79fb\u52a8\u5230\u4f60\u7684\u5a92\u4f53\u6587\u4ef6\u5939\u4e2d\u3002", - "AutoOrganizeTvHelp": "\u7535\u89c6\u6587\u4ef6\u6574\u7406\u4ec5\u4f1a\u6dfb\u52a0\u5267\u96c6\u5230\u4f60\u73b0\u6709\u7684\u7535\u89c6\u5267\u4e2d\uff0c\u4e0d\u4f1a\u521b\u5efa\u65b0\u7684\u7535\u89c6\u5267\u6587\u4ef6\u5939\u3002", "OptionEnableEpisodeOrganization": "\u542f\u7528\u65b0\u5267\u96c6\u6574\u7406", "LabelWatchFolder": "\u76d1\u63a7\u6587\u4ef6\u5939\uff1a", "LabelWatchFolderHelp": "\u670d\u52a1\u5668\u5c06\u5728\u201c\u6574\u7406\u65b0\u5a92\u4f53\u6587\u4ef6\u201d\u8ba1\u5212\u4efb\u52a1\u4e2d\u67e5\u8be2\u8be5\u6587\u4ef6\u5939\u3002", @@ -555,26 +521,25 @@ "OptionCopy": "\u590d\u5236", "OptionMove": "\u79fb\u52a8", "LabelTransferMethodHelp": "\u4ece\u76d1\u63a7\u6587\u4ef6\u5939\u590d\u5236\u6216\u79fb\u52a8\u6587\u4ef6", - "HeaderLatestNews": "\u6700\u65b0\u6d88\u606f", + "HeaderLatestNews": "\u6700\u65b0\u65b0\u95fb", "HeaderRunningTasks": "\u8fd0\u884c\u7684\u4efb\u52a1", "HeaderActiveDevices": "\u6d3b\u52a8\u7684\u8bbe\u5907", "HeaderPendingInstallations": "\u7b49\u5f85\u5b89\u88c5", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "\u73b0\u5728\u91cd\u542f", "ButtonRestart": "\u91cd\u542f", "ButtonShutdown": "\u5173\u673a", "ButtonUpdateNow": "\u73b0\u5728\u66f4\u65b0", "TabHosting": "Hosting", "PleaseUpdateManually": "\u8bf7\u5173\u95ed\u670d\u52a1\u5668\u5e76\u624b\u52a8\u66f4\u65b0\u3002", - "NewServerVersionAvailable": "A new version of Emby Server is available!", - "ServerUpToDate": "Emby Server is up to date", + "NewServerVersionAvailable": "Emby \u670d\u52a1\u7aef\u6709\u65b0\u7684\u7248\u672c\u4e86\uff01", + "ServerUpToDate": "Emby \u670d\u52a1\u7aef\u662f\u6700\u65b0\u7684\u7248\u672c", "LabelComponentsUpdated": "\u4e0b\u9762\u7684\u7ec4\u4ef6\u5df2\u5b89\u88c5\u6216\u66f4\u65b0\uff1a", "MessagePleaseRestartServerToFinishUpdating": "\u8bf7\u91cd\u65b0\u542f\u52a8\u670d\u52a1\u5668\u6765\u5b8c\u6210\u5e94\u7528\u66f4\u65b0\u3002", "LabelDownMixAudioScale": "\u7f29\u6df7\u97f3\u9891\u589e\u5f3a\uff1a", "LabelDownMixAudioScaleHelp": "\u7f29\u6df7\u97f3\u9891\u589e\u5f3a\u3002\u8bbe\u7f6e\u4e3a1\uff0c\u5c06\u4fdd\u7559\u539f\u6765\u7684\u97f3\u91cf\u00b7\u3002", "ButtonLinkKeys": "\u8f6c\u79fb\u5e8f\u5217\u53f7", - "LabelOldSupporterKey": "Old Emby Premiere key", - "LabelNewSupporterKey": "New Emby Premiere key", + "LabelOldSupporterKey": "\u65e7 Emby Premiere \u94a5\u5319", + "LabelNewSupporterKey": "\u65b0 Emby Premiere \u94a5\u5319", "HeaderMultipleKeyLinking": "\u8f6c\u79fb\u5230\u65b0\u5e8f\u5217\u53f7", "MultipleKeyLinkingHelp": "If you received a new Emby Premiere key, use this form to transfer the old key's registrations to your new one.", "LabelCurrentEmailAddress": "\u73b0\u6709\u90ae\u7bb1\u5730\u5740", @@ -585,43 +550,22 @@ "ButtonRetrieveKey": "\u53d6\u56de\u5e8f\u53f7", "LabelSupporterKey": "Emby Premiere key (paste from email):", "LabelSupporterKeyHelp": "Enter your Emby Premiere key to start enjoying additional benefits the community has developed for Emby.", - "MessageInvalidKey": "Emby Premiere key is missing or invalid.", + "MessageInvalidKey": "\u7f3a\u5c11\u6216\u65e0\u6548\u7684 Emby Premiere \u94a5\u5319\u3002", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "\u663e\u793a\u8bbe\u7f6e", - "TabPlayTo": "\u64ad\u653e\u5230", "LabelEnableDlnaServer": "\u542f\u7528Dlna\u670d\u52a1\u5668", - "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", + "LabelEnableDlnaServerHelp": "\u5141\u8bb8\u60a8\u7f51\u7edc\u4e0a\u7684 UPnP \u8bbe\u5907\u6d4f\u89c8\u5e76\u64ad\u653e Emby \u5185\u5bb9\u3002", "LabelEnableBlastAliveMessages": "\u7206\u53d1\u6d3b\u52a8\u4fe1\u53f7", "LabelEnableBlastAliveMessagesHelp": "\u5982\u679c\u8be5\u670d\u52a1\u5668\u4e0d\u80fd\u88ab\u7f51\u7edc\u4e2d\u7684\u5176\u4ed6UPnP\u8bbe\u5907\u68c0\u6d4b\u5230\uff0c\u8bf7\u542f\u7528\u6b64\u9009\u9879\u3002", "LabelBlastMessageInterval": "\u6d3b\u52a8\u4fe1\u53f7\u7684\u65f6\u95f4\u95f4\u9694\uff08\u79d2\uff09", "LabelBlastMessageIntervalHelp": "\u786e\u5b9a\u7531\u670d\u52a1\u5668\u6d3b\u52a8\u4fe1\u53f7\u7684\u95f4\u9694\u79d2\u6570\u3002", "LabelDefaultUser": "\u9ed8\u8ba4\u7528\u6237\uff1a", "LabelDefaultUserHelp": "\u786e\u5b9a\u54ea\u4e9b\u7528\u6237\u5a92\u4f53\u5e93\u5c06\u663e\u793a\u5728\u8fde\u63a5\u8bbe\u5907\u4e0a\u3002\u8fd9\u53ef\u4ee5\u4e3a\u6bcf\u4e2a\u8bbe\u5907\u63d0\u4f9b\u4e0d\u540c\u7684\u7528\u6237\u914d\u7f6e\u6587\u4ef6\u3002", - "TitleDlna": "DLNA", "HeaderServerSettings": "\u670d\u52a1\u5668\u8bbe\u7f6e", "HeaderRequireManualLogin": "\u9700\u8981\u624b\u5de5\u5f55\u5165\u7528\u6237\u540d\uff1a", - "HeaderRequireManualLoginHelp": "\u7981\u7528\u5ba2\u6237\u7aef\u65f6\uff0c\u4f1a\u51fa\u73b0\u53ef\u89c6\u5316\u7528\u6237\u9009\u62e9\u767b\u5f55\u754c\u9762\u3002", + "HeaderRequireManualLoginHelp": "\u7981\u7528\u65f6\uff0cEmby \u5e94\u7528\u4f1a\u51fa\u73b0\u53ef\u89c6\u5316\u7528\u6237\u9009\u62e9\u767b\u5f55\u754c\u9762\u3002", "OptionOtherApps": "\u5176\u4ed6\u5e94\u7528\u7a0b\u5e8f", "OptionMobileApps": "\u624b\u673a\u5e94\u7528\u7a0b\u5e8f", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "\u6709\u53ef\u7528\u7684\u5e94\u7528\u7a0b\u5e8f\u66f4\u65b0", - "NotificationOptionApplicationUpdateInstalled": "\u5e94\u7528\u7a0b\u5e8f\u66f4\u65b0\u5df2\u5b89\u88c5", - "NotificationOptionPluginUpdateInstalled": "\u63d2\u4ef6\u66f4\u65b0\u5df2\u5b89\u88c5", - "NotificationOptionPluginInstalled": "\u63d2\u4ef6\u5df2\u5b89\u88c5", - "NotificationOptionPluginUninstalled": "\u63d2\u4ef6\u5df2\u5378\u8f7d", - "NotificationOptionVideoPlayback": "\u89c6\u9891\u5f00\u59cb\u64ad\u653e", - "NotificationOptionAudioPlayback": "\u97f3\u9891\u5f00\u59cb\u64ad\u653e", - "NotificationOptionGamePlayback": "\u6e38\u620f\u5f00\u59cb", - "NotificationOptionVideoPlaybackStopped": "\u89c6\u9891\u64ad\u653e\u505c\u6b62", - "NotificationOptionAudioPlaybackStopped": "\u97f3\u9891\u64ad\u653e\u505c\u6b62", - "NotificationOptionGamePlaybackStopped": "\u6e38\u620f\u505c\u6b62", - "NotificationOptionTaskFailed": "\u8ba1\u5212\u4efb\u52a1\u5931\u8d25", - "NotificationOptionInstallationFailed": "\u5b89\u88c5\u5931\u8d25", - "NotificationOptionNewLibraryContent": "\u6dfb\u52a0\u65b0\u5185\u5bb9", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "\u9700\u8981\u91cd\u65b0\u542f\u52a8\u670d\u52a1\u5668", "LabelNotificationEnabled": "\u542f\u7528\u6b64\u901a\u77e5", "LabelMonitorUsers": "\u76d1\u63a7\u6d3b\u52a8\uff1a", "LabelSendNotificationToUsers": "\u53d1\u9001\u901a\u77e5\u81f3\uff1a", @@ -662,12 +606,10 @@ "ButtonPrevious": "\u4e0a\u4e00\u4e2a", "LabelGroupMoviesIntoCollections": "\u6279\u91cf\u6dfb\u52a0\u7535\u5f71\u5230\u5408\u96c6", "LabelGroupMoviesIntoCollectionsHelp": "\u5f53\u663e\u793a\u7684\u7535\u5f71\u5217\u8868\u65f6\uff0c\u5c5e\u4e8e\u4e00\u4e2a\u5408\u96c6\u7535\u5f71\u5c06\u663e\u793a\u4e3a\u4e00\u4e2a\u5206\u7ec4\u3002", - "NotificationOptionPluginError": "\u63d2\u4ef6\u5931\u8d25", "ButtonVolumeUp": "\u52a0\u5927\u97f3\u91cf", "ButtonVolumeDown": "\u964d\u4f4e\u97f3\u91cf", "HeaderLatestMedia": "\u6700\u65b0\u5a92\u4f53", "OptionNoSubtitles": "\u65e0\u5b57\u5e55", - "OptionSpecialFeatures": "\u7279\u6b8a\u529f\u80fd", "HeaderCollections": "\u5408\u96c6", "LabelProfileCodecsHelp": "\u4ee5\u9017\u53f7\u5206\u9694\u3002\u7559\u7a7a\u5219\u9002\u7528\u4e8e\u6240\u6709\u7f16\u89e3\u7801\u5668\u3002", "LabelProfileContainersHelp": "\u4ee5\u9017\u53f7\u5206\u9694\u3002\u7559\u7a7a\u5219\u9002\u7528\u4e8e\u6240\u6709\u5a92\u4f53\u8f7d\u4f53\u3002", @@ -701,7 +643,7 @@ "LabelEmbedAlbumArtDidl": "\u5728DIDL\u4e2d\u5d4c\u5165\u4e13\u8f91\u5c01\u9762", "LabelEmbedAlbumArtDidlHelp": "\u6709\u4e9b\u8bbe\u5907\u9996\u9009\u8fd9\u79cd\u65b9\u5f0f\u83b7\u53d6\u4e13\u8f91\u5c01\u9762\u3002\u542f\u7528\u8be5\u9009\u9879\u53ef\u80fd\u5bfc\u81f4\u5176\u4ed6\u8bbe\u5907\u64ad\u653e\u5931\u8d25\u3002", "LabelAlbumArtPN": "\u4e13\u8f91\u5c01\u9762PN \uff1a", - "LabelAlbumArtHelp": "\u4e13\u8f91\u5c01\u9762PN\u7528\u4e8e\u63d0\u4f9bDLNA\u4e2d\u7684\u914d\u7f6e\u7f16\u53f7\uff0cUPnP\u4e2d\u7684\u4e13\u8f91\u5c01\u9762\u8d85\u94fe\u63a5\u3002\u67d0\u4e9b\u5ba2\u6237\u4e0d\u7ba1\u56fe\u50cf\u7684\u5c3a\u5bf8\u5927\u5c0f\uff0c\u90fd\u4f1a\u8981\u6c42\u7279\u5b9a\u7684\u503c\u3002", + "LabelAlbumArtHelp": "PN \u5728 upnp:albumArtURI \u91cc\u7684 dlna:profileID \u5c5e\u6027\u7528\u4e8e\u4e13\u8f91\u5c01\u9762\u3002\u67d0\u4e9b\u8bbe\u5907\u4e0d\u7ba1\u56fe\u50cf\u7684\u5c3a\u5bf8\u5927\u5c0f\uff0c\u90fd\u4f1a\u8981\u6c42\u7279\u5b9a\u7684\u503c\u3002", "LabelAlbumArtMaxWidth": "\u4e13\u8f91\u5c01\u9762\u6700\u5927\u5bbd\u5ea6\uff1a", "LabelAlbumArtMaxWidthHelp": "\u901a\u8fc7UPnP\u663e\u793a\u7684\u4e13\u8f91\u5c01\u9762\u8d85\u94fe\u63a5\u7684\u6700\u5927\u5206\u8fa8\u7387\u3002", "LabelAlbumArtMaxHeight": "\u4e13\u8f91\u5c01\u9762\u6700\u5927\u9ad8\u5ea6\uff1a", @@ -753,7 +695,7 @@ "OptionReportByteRangeSeekingWhenTranscoding": "\u8f6c\u7801\u65f6\uff0c\u62a5\u544a\u670d\u52a1\u5668\u652f\u6301\u7684\u5b57\u8282\u67e5\u8be2", "OptionReportByteRangeSeekingWhenTranscodingHelp": "\u8fd9\u662f\u4e00\u4e9b\u8bbe\u5907\u5fc5\u9700\u7684\uff0c\u4e0d\u7528\u8d76\u65f6\u95f4\u3002", "HeaderDownloadSubtitlesFor": "\u4e0b\u8f7d\u54ea\u4e00\u9879\u7684\u5b57\u5e55\uff1a", - "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains embedded subtitles", + "LabelSkipIfGraphicalSubsPresent": "\u8df3\u8fc7\u5e26\u5185\u5d4c\u5b57\u5e55\u7684\u89c6\u9891", "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.", "TabSubtitles": "\u5b57\u5e55", "TabChapters": "\u7ae0\u8282", @@ -771,8 +713,7 @@ "LabelMessageTitle": "\u6d88\u606f\u6807\u9898\uff1a", "MessageNoAvailablePlugins": "\u6ca1\u6709\u53ef\u7528\u7684\u63d2\u4ef6\u3002", "LabelDisplayPluginsFor": "\u663e\u793a\u63d2\u4ef6\uff1a", - "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", + "PluginTabAppClassic": "Emby \u7ecf\u5178", "LabelEpisodeNamePlain": "\u5267\u96c6\u540d\u79f0", "LabelSeriesNamePlain": "\u7535\u89c6\u5267\u540d\u79f0", "ValueSeriesNamePeriod": "\u7535\u89c6\u5267.\u540d\u79f0", @@ -784,17 +725,14 @@ "LabelEndingEpisodeNumberPlain": "\u6700\u540e\u4e00\u96c6\u6570\u5b57", "HeaderTypeText": "\u8f93\u5165\u6587\u672c", "LabelTypeText": "\u6587\u672c", - "HeaderSearchForSubtitles": "\u641c\u7d22\u5b57\u5e55", - "MessageNoSubtitleSearchResultsFound": "\u641c\u7d22\u65e0\u7ed3\u679c", "TabDisplay": "\u663e\u793a", "TabLanguages": "\u8bed\u8a00", - "TabAppSettings": "App Settings", + "TabAppSettings": "\u5e94\u7528\u8bbe\u7f6e", "LabelEnableThemeSongs": "\u542f\u7528\u4e3b\u9898\u6b4c", "LabelEnableBackdrops": "\u542f\u7528\u80cc\u666f\u56fe", "LabelEnableThemeSongsHelp": "\u5982\u679c\u542f\u7528\uff0c\u5f53\u6d4f\u89c8\u5a92\u4f53\u5e93\u65f6\u4e3b\u9898\u6b4c\u5c06\u5728\u540e\u53f0\u64ad\u653e\u3002", "LabelEnableBackdropsHelp": "\u5982\u679c\u542f\u7528\uff0c\u5f53\u6d4f\u89c8\u5a92\u4f53\u5e93\u65f6\u80cc\u666f\u56fe\u5c06\u4f5c\u4e3a\u4e00\u4e9b\u9875\u9762\u7684\u80cc\u666f\u663e\u793a\u3002", "HeaderHomePage": "\u9996\u9875", - "HeaderSettingsForThisDevice": "\u8bbe\u7f6e\u6b64\u8bbe\u5907", "OptionAuto": "\u81ea\u52a8", "OptionYes": "\u662f", "OptionNo": "\u4e0d", @@ -803,9 +741,8 @@ "LabelHomePageSection2": "\u9996\u9875\u7b2c2\u533a\uff1a", "LabelHomePageSection3": "\u9996\u9875\u7b2c3\u533a\uff1a", "LabelHomePageSection4": "\u9996\u9875\u7b2c4\u533a\uff1a", - "OptionMyMediaButtons": "My media (buttons)", - "OptionMyMedia": "My media", - "OptionMyMediaSmall": "My media (small)", + "OptionMyMedia": "\u6211\u7684\u5a92\u4f53", + "OptionMyMediaSmall": "\u6211\u7684\u5a92\u4f53 (\u5c0f)", "OptionResumablemedia": "\u6062\u590d\u64ad\u653e", "OptionLatestMedia": "\u6700\u65b0\u5a92\u4f53", "OptionLatestChannelMedia": "\u6700\u65b0\u9891\u9053\u9879\u76ee", @@ -813,55 +750,23 @@ "OptionNone": "\u6ca1\u6709", "HeaderLiveTv": "\u7535\u89c6\u76f4\u64ad", "HeaderReports": "\u62a5\u544a", - "HeaderSettings": "Settings", + "HeaderSettings": "\u8bbe\u7f6e", "OptionDefaultSort": "\u9ed8\u8ba4", - "OptionCommunityMostWatchedSort": "\u6700\u53d7\u77a9\u76ee", "TabNextUp": "\u4e0b\u4e00\u4e2a", - "PlaceholderUsername": "Username", - "HeaderBecomeProjectSupporter": "Get Emby Premiere", + "HeaderBecomeProjectSupporter": "\u83b7\u53d6 Emby Premiere", "MessageNoMovieSuggestionsAvailable": "\u6ca1\u6709\u53ef\u7528\u7684\u7535\u5f71\u5efa\u8bae\u3002\u5f00\u59cb\u89c2\u770b\u4f60\u7684\u7535\u5f71\u5e76\u8fdb\u884c\u8bc4\u5206\uff0c\u518d\u56de\u8fc7\u5934\u6765\u67e5\u770b\u4f60\u7684\u5efa\u8bae\u3002", "MessageNoCollectionsAvailable": "\u5408\u96c6\u8ba9\u4f60\u4eab\u53d7\u7535\u5f71\uff0c\u7cfb\u5217\uff0c\u76f8\u518c\uff0c\u4e66\u7c4d\u548c\u6e38\u620f\u4e2a\u6027\u5316\u7684\u5206\u7ec4\u3002\u5355\u51fb\u201c+\u201d\u6309\u94ae\u5f00\u59cb\u521b\u5efa\u5408\u96c6\u3002", "MessageNoPlaylistsAvailable": "\u64ad\u653e\u5217\u8868\u5141\u8bb8\u60a8\u521b\u5efa\u4e00\u4e2a\u5185\u5bb9\u5217\u8868\u6765\u8fde\u7eed\u64ad\u653e\u3002\u5c06\u9879\u76ee\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\uff0c\u53f3\u952e\u5355\u51fb\u6216\u70b9\u51fb\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\u201d\u3002", "MessageNoPlaylistItemsAvailable": "\u64ad\u653e\u5217\u8868\u76ee\u524d\u662f\u7a7a\u7684\u3002", - "ButtonDismiss": "\u89e3\u6563", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", - "LabelChannelStreamQuality": "Preferred internet channel quality:", + "LabelChannelStreamQuality": "\u9996\u9009\u7f51\u7edc\u9891\u9053\u8d28\u91cf\uff1a", "LabelChannelStreamQualityHelp": "\u5728\u4f4e\u5e26\u5bbd\u73af\u5883\u4e0b\uff0c\u9650\u5236\u8d28\u91cf\u6709\u52a9\u4e8e\u786e\u4fdd\u987a\u7545\u7684\u6d41\u5a92\u4f53\u4f53\u9a8c\u3002", "OptionBestAvailableStreamQuality": "\u6700\u597d\u7684", "ChannelSettingsFormHelp": "\u5728\u63d2\u4ef6\u76ee\u5f55\u91cc\u5b89\u88c5\u9891\u9053\uff0c\u4f8b\u5982\uff1aTrailers \u548c Vimeo", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "\u7535\u5f71", "ViewTypeTvShows": "\u7535\u89c6", "ViewTypeGames": "\u6e38\u620f", "ViewTypeMusic": "\u97f3\u4e50", - "ViewTypeMusicGenres": "\u98ce\u683c", - "ViewTypeMusicArtists": "\u827a\u672f\u5bb6", - "ViewTypeBoxSets": "\u5408\u96c6", - "ViewTypeChannels": "\u9891\u9053", - "ViewTypeLiveTV": "\u7535\u89c6\u76f4\u64ad", - "ViewTypeLiveTvNowPlaying": "\u73b0\u5728\u64ad\u653e", - "ViewTypeLatestGames": "\u6700\u65b0\u6e38\u620f", - "ViewTypeRecentlyPlayedGames": "\u6700\u8fd1\u64ad\u653e", - "ViewTypeGameFavorites": "\u6211\u7684\u6700\u7231", - "ViewTypeGameSystems": "\u6e38\u620f\u7cfb\u7edf", - "ViewTypeGameGenres": "\u98ce\u683c", - "ViewTypeTvResume": "\u6062\u590d\u64ad\u653e", - "ViewTypeTvNextUp": "\u4e0b\u4e00\u4e2a", - "ViewTypeTvLatest": "\u6700\u65b0", - "ViewTypeTvShowSeries": "\u7535\u89c6\u5267", - "ViewTypeTvGenres": "\u98ce\u683c", - "ViewTypeTvFavoriteSeries": "\u6700\u559c\u6b22\u7684\u7535\u89c6\u5267", - "ViewTypeTvFavoriteEpisodes": "\u6700\u559c\u6b22\u7684\u5267\u96c6", - "ViewTypeMovieResume": "\u6062\u590d\u64ad\u653e", - "ViewTypeMovieLatest": "\u6700\u65b0", - "ViewTypeMovieMovies": "\u7535\u5f71", - "ViewTypeMovieCollections": "\u5408\u96c6", - "ViewTypeMovieFavorites": "\u6536\u85cf\u5939", - "ViewTypeMovieGenres": "\u98ce\u683c", - "ViewTypeMusicLatest": "\u6700\u65b0", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "\u4e13\u8f91", - "ViewTypeMusicAlbumArtists": "\u4e13\u8f91\u827a\u672f\u5bb6", "HeaderOtherDisplaySettings": "\u663e\u793a\u8bbe\u7f6e", "ViewTypeMusicSongs": "\u6b4c\u66f2", "ViewTypeMusicFavorites": "\u6211\u7684\u6700\u7231", @@ -877,7 +782,7 @@ "OptionLatestTvRecordings": "\u6700\u65b0\u5f55\u5236\u7684\u8282\u76ee", "LabelProtocolInfo": "\u534f\u8bae\u4fe1\u606f\uff1a", "LabelProtocolInfoHelp": "\u5f53\u54cd\u5e94\u6765\u81ea\u8bbe\u5907\u7684 GetProtocolInfo\uff08\u83b7\u53d6\u534f\u8bae\u4fe1\u606f\uff09\u8bf7\u6c42\u65f6\uff0c\u8be5\u503c\u5c06\u88ab\u4f7f\u7528\u3002", - "TabNfoSettings": "Nfo Settings", + "TabNfoSettings": "Nfo \u8bbe\u5b9a", "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Services tab to configure options for your media types.", "LabelKodiMetadataUser": "\u540c\u6b65\u7528\u6237\u7684\u89c2\u770b\u65e5\u671f\u5230nfo\u6587\u4ef6:", "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "\u4e3a\u4e86\u6700\u5927\u5316\u517c\u5bb9Kodi\u76ae\u80a4\uff0c\u4e0b\u8f7d\u7684\u56fe\u7247\u540c\u65f6\u50a8\u5b58\u5728 extrafanart \u548c extrathumbs \u6587\u4ef6\u5939\u3002", "TabServices": "\u670d\u52a1", "TabLogs": "\u65e5\u5fd7", - "HeaderServerLogFiles": "\u670d\u52a1\u5668\u65e5\u5fd7\u6587\u4ef6\uff1a", "TabBranding": "\u54c1\u724c", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "\u767b\u5f55\u58f0\u660e\uff1a", @@ -917,7 +821,6 @@ "HeaderDevice": "\u8bbe\u5907", "HeaderUser": "\u7528\u6237", "HeaderDateIssued": "\u53d1\u5e03\u65e5\u671f", - "LabelChapterName": "\u7ae0\u8282 {0}", "HeaderHttpHeaders": "HTTP\u6807\u5934", "HeaderIdentificationHeader": "\u8eab\u4efd\u8ba4\u8bc1\u6807\u5934", "LabelValue": "\u6570\u503c\uff1a", @@ -926,7 +829,6 @@ "OptionRegex": "\u6b63\u5219\u8868\u8fbe\u5f0f", "OptionSubstring": "\u5b50\u4e32", "TabView": "\u89c6\u56fe", - "TabSort": "\u6392\u5e8f", "TabFilter": "\u7b5b\u9009", "ButtonView": "\u89c6\u56fe", "LabelPageSize": "\u9879\u76ee\u5927\u5c0f\uff1a", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http \u76f4\u64ad\u6d41", "LabelContext": "\u73af\u5883\uff1a", - "OptionContextStreaming": "\u5a92\u4f53\u6d41", - "OptionContextStatic": "\u540c\u6b65", "TabPlaylists": "\u64ad\u653e\u5217\u8868", "ButtonClose": "\u5173\u95ed", "LabelAllLanguages": "\u6240\u6709\u8bed\u8a00", @@ -956,7 +856,6 @@ "LabelImage": "\u56fe\u7247\uff1a", "HeaderImages": "\u56fe\u7247", "HeaderBackdrops": "\u80cc\u666f", - "HeaderScreenshots": "\u622a\u5c4f", "HeaderAddUpdateImage": "\u6dfb\u52a0\/\u66f4\u65b0 \u56fe\u7247", "LabelDropImageHere": "\u628a\u56fe\u7247\u62d6\u5230\u8fd9\u513f", "LabelJpgPngOnly": "\u4ec5\u9650 JPG\/PNG \u683c\u5f0f\u56fe\u7247", @@ -966,14 +865,13 @@ "OptionBox": "\u5305\u88c5\u76d2\u6b63\u9762\u56fe", "OptionBoxRear": "\u5305\u88c5\u76d2\u80cc\u9762\u56fe", "OptionDisc": "\u5149\u76d8", - "OptionIcon": "Icon", + "OptionIcon": "\u56fe\u6807", "OptionLogo": "\u6807\u5fd7", "OptionMenu": "\u83dc\u5355", "OptionScreenshot": "\u5c4f\u5e55\u622a\u56fe", "OptionLocked": "\u9501\u5b9a", "OptionUnidentified": "\u672a\u7ecf\u786e\u8ba4\u7684", "OptionMissingParentalRating": "\u7f3a\u5c11\u5bb6\u957f\u5206\u7ea7", - "OptionStub": "\u5b58\u6839", "OptionSeason0": "0\u5b63", "LabelReport": "\u62a5\u544a\uff1a", "OptionReportSongs": "\u6b4c\u66f2", @@ -989,36 +887,23 @@ "OptionReportBooks": "\u4e66\u7c4d", "OptionReportArtists": "\u827a\u672f\u5bb6", "OptionReportAlbums": "\u4e13\u8f91", - "ButtonMore": "More", + "ButtonMore": "\u66f4\u591a", "HeaderActivity": "\u6d3b\u52a8", - "ScheduledTaskStartedWithName": "{0} \u5f00\u59cb", - "ScheduledTaskCancelledWithName": "{0} \u88ab\u53d6\u6d88", - "ScheduledTaskCompletedWithName": "{0} \u5df2\u5b8c\u6210", - "ScheduledTaskFailed": "\u8ba1\u5212\u4efb\u52a1\u5df2\u5b8c\u6210", "PluginInstalledWithName": "{0} \u5df2\u5b89\u88c5", "PluginUpdatedWithName": "{0} \u5df2\u66f4\u65b0", "PluginUninstalledWithName": "{0} \u5df2\u5378\u8f7d", - "ScheduledTaskFailedWithName": "{0} \u5931\u8d25", - "DeviceOnlineWithName": "{0} \u5df2\u8fde\u63a5", "UserOnlineFromDevice": "{0} \u5728\u7ebf\uff0c\u6765\u81ea {1}", - "DeviceOfflineWithName": "{0} \u5df2\u65ad\u5f00\u8fde\u63a5", "UserOfflineFromDevice": "{0} \u5df2\u4ece {1} \u65ad\u5f00\u8fde\u63a5", - "SubtitlesDownloadedForItem": "\u5df2\u4e3a {0} \u4e0b\u8f7d\u4e86\u5b57\u5e55", - "SubtitleDownloadFailureForItem": "\u4e3a {0} \u4e0b\u8f7d\u5b57\u5e55\u5931\u8d25", "LabelRunningTimeValue": "\u8fd0\u884c\u65f6\u95f4\uff1a {0}", "LabelIpAddressValue": "Ip \u5730\u5740\uff1a {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "\u7528\u6237\u914d\u7f6e\u5df2\u66f4\u65b0\u4e3a {0}", "UserCreatedWithName": "\u7528\u6237 {0} \u5df2\u88ab\u521b\u5efa", - "UserPasswordChangedWithName": "\u5df2\u4e3a\u7528\u6237 {0} \u66f4\u6539\u5bc6\u7801", "UserDeletedWithName": "\u7528\u6237 {0} \u5df2\u88ab\u5220\u9664", "MessageServerConfigurationUpdated": "\u670d\u52a1\u5668\u914d\u7f6e\u5df2\u66f4\u65b0", "MessageNamedServerConfigurationUpdatedWithValue": "\u670d\u52a1\u5668\u914d\u7f6e {0} \u90e8\u5206\u5df2\u66f4\u65b0", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} \u5f00\u59cb\u64ad\u653e {1}", - "UserStoppedPlayingItemWithValues": "{0} \u505c\u6b62\u64ad\u653e {1}", - "AppDeviceValues": "App\uff1a {0}\uff0c\u8bbe\u5907\uff1a {1}", "ProviderValue": "\u63d0\u4f9b\u8005\uff1a {0}", "HeaderRecentActivity": "\u6700\u8fd1\u7684\u6d3b\u52a8", "HeaderPeople": "\u4eba\u7269", @@ -1042,43 +927,34 @@ "HeaderPersonInfo": "\u4efb\u52a1\u4fe1\u606f", "HeaderConfirmDeletion": "\u786e\u8ba4\u5220\u9664", "LabelAlbumArtist": "\u4e13\u8f91\u827a\u672f\u5bb6\uff1a", - "LabelAlbumArtists": "Album artists:", + "LabelAlbumArtists": "\u4e13\u8f91\u4f5c\u5bb6\uff1a", "LabelAlbum": "\u4e13\u8f91\uff1a", "LabelCommunityRating": "\u516c\u4f17\u8bc4\u5206\uff1a", "LabelAwardSummary": "\u83b7\u5956\u6458\u8981\uff1a", "LabelReleaseDate": "\u53d1\u884c\u65e5\u671f\uff1a", - "LabelEndDate": "\u7ed3\u675f\u65e5\u671f\uff1a", + "LabelEndDate": "\u5b8c\u7ed3\u65e5\u671f\uff1a", "LabelAirDate": "\u64ad\u51fa\u65e5\u671f\uff1a", "LabelAirTime:": "\u64ad\u51fa\u65f6\u95f4\uff1a", "LabelRuntimeMinutes": "\u64ad\u653e\u65f6\u957f\uff08\u5206\u949f\uff09\uff1a", - "LabelRevenue": "\u7968\u623f\u6536\u5165\uff1a", - "HeaderAlternateEpisodeNumbers": "\u5907\u9009\u7684\u5267\u96c6\u6570", "HeaderSpecialEpisodeInfo": "\u7279\u522b\u5267\u96c6\u4fe1\u606f", - "HeaderExternalIds": "\u5916\u90e8ID\uff1a", - "LabelAirsBeforeSeason": "\u5b63\u64ad\u51fa\u524d\uff1a", - "LabelAirsAfterSeason": "\u5b63\u64ad\u51fa\u540e\uff1a", - "LabelAirsBeforeEpisode": "\u96c6\u64ad\u51fa\u524d\uff1a", "LabelDisplaySpecialsWithinSeasons": "\u663e\u793a\u5b63\u4e2d\u6240\u64ad\u51fa\u7684\u7279\u96c6", - "HeaderCountries": "\u56fd\u5bb6", "HeaderGenres": "\u98ce\u683c", "HeaderPlotKeywords": "\u60c5\u8282\u5173\u952e\u5b57", "HeaderStudios": "\u5de5\u4f5c\u5ba4", "HeaderTags": "\u6807\u7b7e", - "MessageLeaveEmptyToInherit": "\u7559\u7a7a\u5219\u7ee7\u627f\u7236\u9879\u6216\u5168\u5c40\u9ed8\u8ba4\u503c\u8bbe\u7f6e\u3002", "OptionNoTrailer": "\u65e0\u9884\u544a\u7247", - "ButtonPurchase": "Purchase", + "ButtonPurchase": "\u8d2d\u4e70", "OptionActor": "\u6f14\u5458", "OptionComposer": "\u4f5c\u66f2\u5bb6", "OptionDirector": "\u5bfc\u6f14", "OptionProducer": "\u5236\u7247\u4eba", - "OptionWriter": "\u7f16\u5267", "LabelAirDays": "\u64ad\u51fa\u65e5\u671f\uff1a", "LabelAirTime": "\u64ad\u51fa\u65f6\u95f4\uff1a", "HeaderMediaInfo": "\u5a92\u4f53\u4fe1\u606f", "HeaderPhotoInfo": "\u56fe\u7247\u4fe1\u606f", "HeaderInstall": "\u5b89\u88c5", "LabelSelectVersionToInstall": "\u9009\u62e9\u5b89\u88c5\u7248\u672c\uff1a", - "LinkLearnMoreAboutSubscription": "Learn about Emby Premiere", + "LinkLearnMoreAboutSubscription": "\u4e86\u89e3\u66f4\u591a\u5173\u4e8e Emby Premiere", "MessagePluginRequiresSubscription": "This plugin will require an active Emby Premiere subscription after the 14 day free trial.", "MessagePremiumPluginRequiresMembership": "This plugin will require an active Emby Premiere subscription in order to purchase after the 14 day free trial.", "HeaderReviews": "\u8bc4\u8bba", @@ -1092,8 +968,8 @@ "OptionSaveMetadataAsHidden": "\u4fdd\u5b58\u5a92\u4f53\u8d44\u6599\u548c\u56fe\u50cf\u4e3a\u9690\u85cf\u6587\u4ef6", "LabelExtractChaptersDuringLibraryScan": "\u5a92\u4f53\u5e93\u626b\u63cf\u8fc7\u7a0b\u4e2d\u89e3\u538b\u7ae0\u8282\u56fe\u7247", "LabelExtractChaptersDuringLibraryScanHelp": "\u5982\u679c\u542f\u7528\uff0c\u5f53\u5a92\u4f53\u5e93\u5bfc\u5165\u89c6\u9891\u5e76\u626b\u63cf\u65f6\uff0c\u5c06\u63d0\u53d6\u7ae0\u8282\u56fe\u50cf\u3002\u5982\u679c\u7981\u7528\uff0c\u7ae0\u8282\u56fe\u50cf\u5c06\u5728\u4e4b\u540e\u7684\u8ba1\u5212\u4efb\u52a1\u63d0\u53d6\uff0c\u800c\u5a92\u4f53\u5e93\u4f1a\u66f4\u5feb\u5b8c\u6210\u626b\u63cf\u3002", - "LabelConnectGuestUserName": "Their Emby username or email address:", - "LabelConnectUserName": "Emby username or email address:", + "LabelConnectGuestUserName": "\u4ed6\u4eec\u7684 Emby \u7528\u6237\u540d\u6216\u90ae\u7bb1\u5730\u5740\uff1a", + "LabelConnectUserName": "Emby \u7528\u6237\u540d\u6216\u90ae\u7bb1\u5730\u5740\uff1a", "LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.", "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect", "LabelExternalPlayers": "\u5916\u90e8\u64ad\u653e\u5668\uff1a", @@ -1113,15 +989,15 @@ "LabelSubtitleFormatHelp": "\u4f8b\u5982\uff1aSRT", "ButtonLearnMore": "\u4e86\u89e3\u66f4\u591a", "TabPlayback": "\u64ad\u653e", - "HeaderAudioSettings": "Audio Settings", - "HeaderSubtitleSettings": "Subtitle Settings", + "HeaderAudioSettings": "\u58f0\u97f3\u8bbe\u7f6e", + "HeaderSubtitleSettings": "\u5b57\u5e55\u8bbe\u7f6e", "TabCinemaMode": "\u5f71\u9662\u6a21\u5f0f", "TitlePlayback": "\u64ad\u653e", "LabelEnableCinemaModeFor": "\u542f\u7528\u5f71\u9662\u6a21\u5f0f\uff1a", "CinemaModeConfigurationHelp": "\u5f71\u9662\u6a21\u5f0f\u76f4\u63a5\u4e3a\u60a8\u7684\u5ba2\u5385\u5e26\u6765\u5267\u573a\u7ea7\u4f53\u9a8c\uff0c\u540c\u65f6\u8fd8\u53ef\u4ee5\u64ad\u653e\u9884\u544a\u7247\u548c\u81ea\u5b9a\u4e49\u4ecb\u7ecd\u3002", "OptionTrailersFromMyMovies": "\u5728\u6211\u7684\u5a92\u4f53\u5e93\u4e2d\u5305\u542b\u7535\u5f71\u9884\u544a\u7247", "OptionUpcomingMoviesInTheaters": "\u5305\u62ec\u65b0\u7684\u548c\u5373\u5c06\u63a8\u51fa\u7684\u7535\u5f71\u9884\u544a\u7247", - "LabelLimitIntrosToUnwatchedContent": "\u9884\u544a\u7247\u4ec5\u7528\u4e8e\u672a\u89c2\u770b\u7684\u5185\u5bb9", + "LabelLimitIntrosToUnwatchedContent": "\u53ea\u64ad\u653e\u672a\u89c2\u770b\u5185\u5bb9\u7684\u9884\u544a\u7247", "LabelEnableIntroParentalControl": "\u542f\u7528\u667a\u80fd\u5bb6\u957f\u63a7\u5236", "LabelEnableIntroParentalControlHelp": "\u9884\u544a\u7247\u5c06\u53ea\u80fd\u9009\u62e9\u89c2\u770b\u5bb6\u957f\u5206\u7ea7\u5c0f\u4e8e\u6216\u7b49\u4e8e\u73b0\u5728\u7684\u7b49\u7ea7\u3002", "LabelTheseFeaturesRequireSubscriptionHelpAndTrailers": "These features require an active Emby Premiere subscription and installation of the Trailer channel plugin.", @@ -1150,43 +1026,42 @@ "LabelCreateCameraUploadSubfolderHelp": "\u7279\u5b9a\u7684\u6587\u4ef6\u5939\u53ef\u4ee5\u5206\u914d\u7ed9\u4e00\u4e2a\u8bbe\u5907\uff0c\u901a\u8fc7\u4ece\u8bbe\u5907\u9875\u9762\u70b9\u51fb\u5b83\u3002", "LabelCustomDeviceDisplayName": "\u663e\u793a\u540d\u79f0\uff1a", "LabelCustomDeviceDisplayNameHelp": "\u81ea\u5b9a\u4e49\u8bbe\u5907\u663e\u793a\u540d\u79f0\u6216\u7559\u7a7a\u5219\u4f7f\u7528\u8bbe\u5907\u62a5\u544a\u540d\u79f0\u3002", - "HeaderInviteUser": "Invite User", + "HeaderInviteUser": "\u9080\u8bf7\u7528\u6237", "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.", "HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.", - "ButtonSendInvitation": "Send Invitation", + "ButtonSendInvitation": "\u53d1\u9001\u9080\u8bf7", "HeaderSignInWithConnect": "Sign in with Emby Connect", - "HeaderGuests": "Guests", + "HeaderGuests": "\u6e38\u5ba2", "HeaderPendingInvitations": "Pending Invitations", - "TabParentalControl": "Parental Control", + "TabParentalControl": "\u5bb6\u957f\u63a7\u5236", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", - "LabelAccessStart": "Start time:", - "LabelAccessEnd": "End time:", + "LabelAccessStart": "\u5f00\u59cb\u65f6\u95f4\uff1a", + "LabelAccessEnd": "\u7ed3\u675f\u65f6\u95f4\uff1a", "HeaderSchedule": "Schedule", - "OptionEveryday": "Every day", - "OptionWeekdays": "Weekdays", - "OptionWeekends": "Weekends", + "OptionEveryday": "\u6bcf\u5929", + "OptionWeekdays": "\u5de5\u4f5c\u65e5", + "OptionWeekends": "\u5468\u672b", "MessageProfileInfoSynced": "User profile information synced with Emby Connect.", - "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account", - "ButtonTrailer": "Trailer", + "HeaderOptionalLinkEmbyAccount": "\u53ef\u9009\uff1a\u5173\u8054\u60a8\u7684 Emby \u5e10\u53f7", + "ButtonTrailer": "\u9884\u544a\u7247", "MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.", - "HeaderNewUsers": "New Users", - "ButtonSignUp": "Sign up", - "ButtonForgotPassword": "Forgot password", - "OptionDisableUserPreferences": "Disable access to user preferences", + "HeaderNewUsers": "\u65b0\u7528\u6237", + "ButtonSignUp": "\u6ce8\u518c", + "ButtonForgotPassword": "\u5fd8\u8bb0\u5bc6\u7801", + "OptionDisableUserPreferences": "\u7981\u6b62\u8bbf\u95ee\u7528\u6237\u504f\u597d", "OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.", - "HeaderSelectServer": "Select Server", + "HeaderSelectServer": "\u9009\u62e9\u670d\u52a1\u5668", "MessageNoServersAvailableToConnect": "No servers are available to connect to. If you've been invited to share a server, make sure to accept it below or by clicking the link in the email.", - "TitleNewUser": "New User", - "ButtonConfigurePassword": "Configure Password", + "TitleNewUser": "\u65b0\u7528\u6237", + "ButtonConfigurePassword": "\u8bbe\u7f6e\u5bc6\u7801", "HeaderDashboardUserPassword": "User passwords are managed within each user's personal profile settings.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", + "HeaderLibraryAccess": "\u5a92\u4f53\u5e93\u8bbf\u95ee", + "HeaderChannelAccess": "\u9891\u9053\u8bbf\u95ee", "HeaderLatestItems": "\u6700\u65b0\u9879\u76ee", "LabelSelectLastestItemsFolders": "\u6700\u65b0\u9879\u76ee\u4e2d\u5305\u62ec\u4ee5\u4e0b\u90e8\u5206\u5a92\u4f53", - "HeaderShareMediaFolders": "Share Media Folders", + "HeaderShareMediaFolders": "\u5171\u4eab\u5a92\u4f53\u6587\u4ef6\u5939", "MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.", "HeaderInvitations": "\u9080\u8bf7\u51fd", "LabelForgotPasswordUsernameHelp": "\u8f93\u5165\u60a8\u7684\u7528\u6237\u540d\uff0c\u5982\u679c\u4f60\u8fd8\u8bb0\u5f97\u3002", @@ -1196,33 +1071,32 @@ "HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e", "HeaderParentalRatings": "\u5bb6\u957f\u5206\u7ea7", "HeaderVideoTypes": "\u89c6\u9891\u7c7b\u578b", - "HeaderYears": "Years", + "HeaderYears": "\u5e74\u4efd", "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:", "LabelBlockContentWithTags": "Block content with tags:", "LabelEnableSingleImageInDidlLimit": "\u4ec5\u9650\u5355\u4e00\u7684\u5d4c\u5165\u5f0f\u56fe\u50cf", "LabelEnableSingleImageInDidlLimitHelp": "\u5982\u679c\u591a\u4e2a\u56fe\u50cf\u5d4c\u5165\u5728DIDL\uff0c\u67d0\u4e9b\u8bbe\u5907\u5c06\u65e0\u6cd5\u6b63\u786e\u6e32\u67d3\u3002", "TabActivity": "\u6d3b\u52a8", "TitleSync": "\u540c\u6b65", - "OptionAllowSyncContent": "Allow Sync", - "OptionAllowContentDownloading": "Allow media downloading", + "OptionAllowSyncContent": "\u5141\u8bb8\u540c\u6b65", + "OptionAllowContentDownloading": "\u5141\u8bb8\u4e0b\u8f7d\u5a92\u4f53", "NameSeasonUnknown": "\u5b63\u672a\u77e5", "NameSeasonNumber": "\u5b63 {0}", "LabelNewUserNameHelp": "\u7528\u6237\u540d\u53ef\u4ee5\u5305\u542b\u5b57\u6bcd\uff08az\uff09\uff0c\u6570\u5b57\uff080-9\uff09\uff0c\u7834\u6298\u53f7\uff08 - \uff09\uff0c\u4e0b\u5212\u7ebf\uff08_\uff09\uff0c\u5355\u5f15\u53f7\uff08'\uff09\u548c\u53e5\u70b9\uff08.\uff09", "TabJobs": "\u4f5c\u4e1a", "TabSyncJobs": "\u540c\u6b65\u4f5c\u4e1a", - "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", + "HeaderThisUserIsCurrentlyDisabled": "\u6b64\u7528\u6237\u5f53\u524d\u5df2\u7981\u7528", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", - "HeaderUpcomingMovies": "Upcoming Movies", - "HeaderUpcomingSports": "Upcoming Sports", - "HeaderUpcomingPrograms": "Upcoming Programs", - "ButtonMoreItems": "More", + "HeaderUpcomingMovies": "\u5373\u5c06\u63a8\u51fa\u7684\u7535\u5f71", + "HeaderUpcomingSports": "\u5373\u5c06\u63a8\u51fa\u7684\u4f53\u80b2", + "HeaderUpcomingPrograms": "\u5373\u5c06\u63a8\u51fa\u7684\u8282\u76ee", + "ButtonMoreItems": "\u66f4\u591a", "OptionEnableTranscodingThrottle": "Enable throttling", "OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.", - "LabelUploadSpeedLimit": "Upload speed limit (Mbps):", + "LabelUploadSpeedLimit": "\u4e0a\u4f20\u901f\u5ea6\u9650\u5236 (Mbps)\uff1a", "OptionAllowSyncTranscoding": "Allow syncing that requires transcoding", - "HeaderPlayback": "Media Playback", + "HeaderPlayback": "\u5a92\u4f53\u64ad\u653e", "OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding", "OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding", "OptionAllowVideoPlaybackRemuxing": "Allow video playback that requires conversion without re-encoding", @@ -1230,68 +1104,64 @@ "TabStreaming": "Streaming", "LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):", "LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network devices. This is useful to prevent devices from requesting a higher bitrate than your internet connection can handle.", - "LabelConversionCpuCoreLimit": "CPU core limit:", - "LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.", + "LabelConversionCpuCoreLimit": "CPU \u6838\u9650\u5236\uff1a", + "LabelConversionCpuCoreLimitHelp": "\u9650\u5236\u540c\u6b65\u8f6c\u6362\u65f6\u4f7f\u7528\u7684 CPU \u6838\u6570\u3002", "OptionEnableFullSpeedConversion": "Enable full speed conversion", "OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.", - "HeaderPlaylists": "Playlists", - "HeaderViewStyles": "View Styles", - "TabPhotos": "Photos", - "TabVideos": "Videos", - "HeaderWelcomeToEmby": "Welcome to Emby", + "HeaderPlaylists": "\u64ad\u653e\u5217\u8868", + "HeaderViewStyles": "\u89c6\u56fe\u98ce\u683c", + "TabPhotos": "\u7167\u7247", + "HeaderWelcomeToEmby": "\u6b22\u8fce\u6765\u5230 Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", - "ButtonSkip": "Skip", - "TextConnectToServerManually": "Connect to server manually", + "ButtonSkip": "\u8df3\u8fc7", + "TextConnectToServerManually": "\u624b\u52a8\u8fde\u63a5\u670d\u52a1\u5668", "ButtonSignInWithConnect": "Sign in with Emby Connect", - "ButtonConnect": "Connect", - "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", - "LabelServerPort": "Port:", - "HeaderNewServer": "New Server", - "ButtonChangeServer": "Change Server", - "HeaderConnectToServer": "Connect to Server", - "OptionReportList": "List View", - "OptionReportStatistics": "Statistics", + "ButtonConnect": "\u8fde\u63a5", + "LabelServerHost": "\u4e3b\u673a\uff1a", + "LabelServerHostHelp": "192.168.1.100 \u6216 https:\/\/myserver.com", + "LabelServerPort": "\u7aef\u53e3\uff1a", + "HeaderNewServer": "\u65b0\u670d\u52a1\u5668", + "ButtonChangeServer": "\u66f4\u6539\u670d\u52a1\u5668", + "HeaderConnectToServer": "\u8fde\u63a5\u5230\u670d\u52a1\u5668", + "OptionReportList": "\u5217\u8868\u89c6\u56fe", + "OptionReportStatistics": "\u7edf\u8ba1", "OptionReportGrouping": "Grouping", - "HeaderExport": "Export", + "HeaderExport": "\u5bfc\u51fa", "HeaderColumns": "Columns", - "ButtonReset": "Reset", - "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", - "LabelEnableFullScreen": "Enable fullscreen mode", - "LabelEmail": "Email:", - "LabelUsername": "Username:", - "HeaderSignUp": "Sign Up", - "LabelPasswordConfirm": "Password (confirm):", - "ButtonAddServer": "Add Server", + "ButtonReset": "\u91cd\u7f6e", + "OptionEnableExternalVideoPlayers": "\u5f00\u542f\u5916\u90e8\u64ad\u653e\u5668", + "LabelEnableFullScreen": "\u5f00\u542f\u5168\u5c4f\u6a21\u5f0f", + "LabelEmail": "\u90ae\u7bb1\u5730\u5740\uff1a", + "LabelUsername": "\u7528\u6237\u540d\uff1a", + "HeaderSignUp": "\u6ce8\u518c", + "LabelPasswordConfirm": "\u5bc6\u7801 (\u786e\u8ba4)\uff1a", + "ButtonAddServer": "\u6dfb\u52a0\u670d\u52a1\u5668", "TabHomeScreen": "Home Screen", - "HeaderDisplay": "Display", - "HeaderNavigation": "Navigation", - "OptionEnableAutomaticServerUpdates": "Enable automatic server updates", + "HeaderDisplay": "\u663e\u793a", + "HeaderNavigation": "\u5bfc\u822a", + "OptionEnableAutomaticServerUpdates": "\u5f00\u542f\u81ea\u52a8\u670d\u52a1\u5668\u66f4\u65b0", "OptionOtherTrailers": "Include trailers from older movies", "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", - "OptionReportActivities": "Activities Log", - "HeaderTunerDevices": "Tuner Devices", - "HeaderAddDevice": "Add Device", - "HeaderExternalServices": "External Services", - "LabelTunerIpAddress": "Tuner IP Address:", - "TabExternalServices": "External Services", + "OptionReportActivities": "\u6d3b\u52a8\u65e5\u5fd7", + "HeaderTunerDevices": "\u8c03\u8c10\u5668\u8bbe\u5907", + "HeaderAddDevice": "\u6dfb\u52a0\u8bbe\u5907", + "HeaderExternalServices": "\u5916\u90e8\u670d\u52a1", + "LabelTunerIpAddress": "\u8c03\u8c10\u5668 IP \u5730\u5740\uff1a", + "TabExternalServices": "\u5916\u90e8\u670d\u52a1", "HeaderGuideProviders": "Guide Providers", "AddGuideProviderHelp": "Add a source for TV Guide information", - "LabelZipCode": "Zip Code:", + "LabelZipCode": "\u90ae\u7f16\uff1a", "GuideProviderSelectListings": "Select Listings", - "GuideProviderLogin": "Login", + "GuideProviderLogin": "\u767b\u5165", "LabelLineup": "Lineup:", "MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.", "LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite", "ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.", "ButtonRepeat": "Repeat", - "LabelEnableThisTuner": "Enable this tuner", + "LabelEnableThisTuner": "\u5f00\u542f\u6b64\u8c03\u8c10\u5668", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1301,29 +1171,29 @@ "HeaderHomeScreenSettings": "Home Screen settings", "HeaderProfile": "Profile", "HeaderLanguage": "Language", - "LabelTranscodingThreadCount": "Transcoding thread count:", + "LabelTranscodingThreadCount": "\u8f6c\u7801\u7ebf\u7a0b\u6570\uff1a", "LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.", "OptionMax": "Max", "LabelSyncPath": "Synced content path:", - "OptionSyncOnlyOnWifi": "Sync only on Wifi", + "OptionSyncOnlyOnWifi": "\u53ea\u5728 wifi \u4e0b\u540c\u6b65", "OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality", "HeaderUpcomingForKids": "Upcoming for Kids", "HeaderSetupLiveTV": "Setup Live TV", - "LabelTunerType": "Tuner type:", + "LabelTunerType": "\u8c03\u8c10\u5668\u7c7b\u578b\uff1a", "HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.", "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.", "HeaderSetupTVGuide": "Setup TV Guide", - "LabelDataProvider": "Data provider:", + "LabelDataProvider": "\u6570\u636e\u63d0\u4f9b\u8005\uff1a", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "\u5b57\u5e55", "HeaderVideos": "Videos", "LabelHardwareAccelerationType": "Hardware acceleration:", - "LabelHardwareAccelerationTypeHelp": "Available on supported systems only.", + "LabelHardwareAccelerationTypeHelp": "\u53ea\u80fd\u5728\u652f\u6301\u7684\u7cfb\u7edf\u4e0a\u4f7f\u7528\u3002", "ButtonServerDashboard": "Server Dashboard", "HeaderAdmin": "Admin", - "ButtonSignOut": "Sign out", + "ButtonSignOut": "\u9000\u51fa", "HeaderCameraUpload": "Camera Upload", "SelectCameraUploadServers": "Upload camera photos to the following servers:", "ButtonClear": "Clear", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", - "FileExtension": "File extension", - "OptionReplaceExistingImages": "\u66ff\u6362\u73b0\u6709\u56fe\u7247", - "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", - "OptionDownloadImagesInAdvance": "Download images in advance", + "FileExtension": "\u6587\u4ef6\u540e\u7f00", + "OptionPlayNextEpisodeAutomatically": "\u81ea\u52a8\u64ad\u653e\u4e0b\u4e00\u96c6", + "OptionDownloadImagesInAdvance": "\u4e8b\u5148\u4e0b\u8f7d\u56fe\u7247", "SettingsSaved": "\u8bbe\u7f6e\u5df2\u4fdd\u5b58", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "\u9ed8\u8ba4\u4e0b\uff0c\u5927\u90e8\u5206\u56fe\u7247\u53ea\u6709\u5728 Emby \u5e94\u7528\u8bf7\u6c42\u65f6\u4e0b\u8f7d\u3002\u5f00\u542f\u6b64\u9009\u9879\u5c06\u968f\u7740\u5a92\u4f53\u5bfc\u5165\u65f6\u4e0b\u8f7d\u6240\u6709\u56fe\u7247\u3002\u8fd9\u53ef\u80fd\u9700\u8981\u66f4\u4e45\u5a92\u4f53\u5e93\u626b\u63cf\u65f6\u95f4\u3002", "Users": "\u7528\u6237", "Delete": "\u5220\u9664", "Password": "\u5bc6\u7801", "DeleteImage": "\u5220\u9664\u56fe\u50cf", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", + "MessageThankYouForSupporting": "\u611f\u8c22\u60a8\u652f\u6301 Emby\u3002", "DeleteImageConfirmation": "\u4f60\u786e\u5b9a\u8981\u5220\u9664\u6b64\u56fe\u50cf\uff1f", "FileReadCancelled": "\u6587\u4ef6\u8bfb\u53d6\u5df2\u88ab\u53d6\u6d88\u3002", "FileNotFound": "\u672a\u627e\u5230\u6587\u4ef6\u3002", @@ -1375,27 +1242,23 @@ "MessageKeyEmailedTo": "\u5e8f\u53f7\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u53d1\u9001\u7ed9 {0}.", "MessageKeysLinked": "\u5e8f\u53f7\u5df2\u5173\u8054", "HeaderConfirmation": "\u786e\u8ba4", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", + "MessageKeyUpdated": "\u611f\u8c22\u3002\u60a8\u7684 Emby Premiere \u94a5\u5319\u5df2\u66f4\u65b0\u3002", + "MessageKeyRemoved": "\u611f\u8c22\u3002\u60a8\u7684 Emby Premiere \u94a5\u5319\u5df2\u79fb\u9664\u3002", "TextEnjoyBonusFeatures": "\u4eab\u53d7\u5956\u52b1\u529f\u80fd", - "ButtonCancelSyncJob": "Cancel sync", + "ButtonCancelSyncJob": "\u53d6\u6d88\u540c\u6b65", "HeaderAddTag": "\u6dfb\u52a0\u6807\u7b7e", "LabelTag": "\u6807\u7b7e\uff1a", - "ButtonSelectView": "Select view", - "HeaderSelectDate": "Select Date", + "ButtonSelectView": "\u9009\u62e9\u89c6\u56fe", + "HeaderSelectDate": "\u9009\u62e9\u65e5\u671f", "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", + "LabelFromHelp": "\u4e3e\u4f8b\uff1a{0} (\u5728\u670d\u52a1\u5668\u4e0a)", + "HeaderMyMedia": "\u6211\u7684\u5a92\u4f53", "ErrorLaunchingChromecast": "\u542f\u52a8chromecast\u9047\u5230\u9519\u8bef\uff0c\u8bf7\u786e\u8ba4\u8bbe\u5907\u5df2\u7ecf\u8fde\u63a5\u5230\u4f60\u7684\u65e0\u7ebf\u7f51\u7edc\u3002", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "PluginCategoryGeneral": "General", + "HeaderConfirmRemoveUser": "\u79fb\u9664\u7528\u6237", + "ValueTimeLimitSingleHour": "\u65f6\u95f4\u9650\u5236\uff1a1 \u5c0f\u65f6", + "ValueTimeLimitMultiHour": "\u65f6\u95f4\u9650\u5236\uff1a{0} \u5c0f\u65f6", + "PluginCategoryGeneral": "\u5e38\u89c4", "PluginCategoryContentProvider": "Content Providers", "PluginCategoryScreenSaver": "Screen Savers", "PluginCategoryTheme": "Themes", @@ -1404,24 +1267,24 @@ "PluginCategoryNotifications": "Notifications", "PluginCategoryMetadata": "Metadata", "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", + "PluginCategoryChannel": "\u9891\u9053", "HeaderSearch": "\u641c\u7d22", "ValueDateCreated": "\u521b\u5efa\u65e5\u671f\uff1a {0}", "LabelArtist": "\u827a\u672f\u5bb6", "LabelMovie": "\u7535\u5f71", "LabelMusicVideo": "\u97f3\u4e50\u89c6\u9891", "LabelEpisode": "\u5267\u96c6", - "Series": "Series", + "Series": "\u7cfb\u5217", "LabelStopping": "\u505c\u6b62", - "LabelCancelled": "Cancelled", + "LabelCancelled": "\u5df2\u53d6\u6d88", "ButtonDownload": "\u4e0b\u8f7d", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", + "SyncJobStatusQueued": "\u5df2\u5217\u961f", + "SyncJobStatusConverting": "\u8f6c\u6362\u4e2d", + "SyncJobStatusFailed": "\u5df2\u5931\u8d25", + "SyncJobStatusCancelled": "\u5df2\u53d6\u6d88", + "SyncJobStatusCompleted": "\u5df2\u540c\u6b65", "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", + "SyncJobStatusTransferring": "\u4f20\u8f93\u4e2d", "SyncJobStatusCompletedWithError": "Synced with errors", "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", "LabelCollection": "\u5408\u96c6", @@ -1429,14 +1292,13 @@ "ButtonScheduledTasks": "\u8ba1\u5212\u4efb\u52a1", "MessageItemsAdded": "\u9879\u76ee\u5df2\u6dfb\u52a0", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", + "HeaderWelcomeToProjectWebClient": "\u6b22\u8fce\u6765\u5230 Emby", "ButtonTakeTheTour": "\u8fdb\u884c\u53c2\u89c2", "HeaderWelcomeBack": "\u6b22\u8fce\u56de\u6765\uff01", "ButtonTakeTheTourToSeeWhatsNew": "\u8fdb\u884c\u53c2\u89c2\uff0c\u770b\u770b\u6709\u4ec0\u4e48\u65b0\u4e1c\u897f", - "MessageNoSyncJobsFound": "\u6ca1\u6709\u53d1\u73b0\u540c\u6b65\u4f5c\u4e1a\u3002\u4f7f\u7528Web\u754c\u9762\u4e2d\u7684\u540c\u6b65\u6309\u94ae\u6765\u521b\u5efa\u540c\u6b65\u4f5c\u4e1a\u3002", + "MessageNoSyncJobsFound": "\u6ca1\u6709\u53d1\u73b0\u540c\u6b65\u4f5c\u4e1a\u3002\u4f7f\u7528\u5e94\u7528\u4e2d\u7684\u540c\u6b65\u6309\u94ae\u6765\u521b\u5efa\u540c\u6b65\u4f5c\u4e1a\u3002", "MessageDownloadsFound": "No offline downloads. Make your media available offline by clicking Make Available Offline throughout the app.", "HeaderSelectDevices": "\u9009\u62e9\u8bbe\u5907", "ButtonCancelItem": "\u53d6\u6d88\u9879\u76ee", @@ -1452,10 +1314,10 @@ "LabelVersionInstalled": "{0} \u5df2\u5b89\u88c5", "LabelNumberReviews": "{0} \u8bc4\u8bba", "LabelFree": "\u514d\u8d39", - "HeaderPlaybackError": "Playback Error", + "HeaderPlaybackError": "\u56de\u653e\u9519\u8bef", "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "Please insert the disc in order to play this video.", + "MessagePlaybackErrorPlaceHolder": "\u8bf7\u63d2\u5165\u5149\u76d8\u4ee5\u64ad\u653e\u6b64\u89c6\u9891\u3002", "HeaderSelectAudio": "\u9009\u62e9\u97f3\u9891", "HeaderSelectSubtitles": "\u9009\u62e9\u5b57\u5e55", "ButtonMarkForRemoval": "Remove from device", @@ -1471,7 +1333,6 @@ "LabelDisabled": "\u5df2\u7981\u7528", "ButtonMoreInformation": "\u66f4\u591a\u4fe1\u606f", "LabelNoUnreadNotifications": "\u6ca1\u6709\u672a\u8bfb\u901a\u77e5\u3002", - "LabelAllPlaysSentToPlayer": "\u6240\u6709\u64ad\u653e\u5185\u5bb9\u90fd\u5c06\u88ab\u53d1\u9001\u5230\u6240\u9009\u62e9\u7684\u64ad\u653e\u5668\u3002", "MessageInvalidUser": "\u7528\u6237\u540d\u6216\u5bc6\u7801\u4e0d\u53ef\u7528\u3002\u8bf7\u91cd\u8bd5\u3002", "HeaderLoginFailure": "\u767b\u5f55\u5931\u8d25", "RecommendationBecauseYouLike": "\u56e0\u4e3a\u4f60\u559c\u6b22 {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "\u5f55\u5236\u5df2\u53d6\u6d88\u3002", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "\u786e\u8ba4\u7535\u89c6\u5267\u53d6\u6d88", - "MessageConfirmSeriesCancellation": "\u4f60\u786e\u5b9a\u5e0c\u671b\u53d6\u6d88\u6b64\u7535\u89c6\u5267\uff1f", - "MessageSeriesCancelled": "\u7535\u89c6\u5267\u5df2\u53d6\u6d88", "HeaderConfirmRecordingDeletion": "\u786e\u8ba4\u5220\u9664\u5f55\u5f71", "MessageRecordingSaved": "\u5f55\u5f71\u5df2\u4fdd\u5b58\u3002", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u670d\u52a1\u5668\u7f13\u5b58\u6587\u4ef6\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", "HeaderSelectTranscodingPathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u4e34\u65f6\u8f6c\u7801\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", "HeaderSelectMetadataPathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u4fdd\u5b58\u5a92\u4f53\u8d44\u6599\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", - "HeaderSelectChannelDownloadPath": "\u9009\u62e9\u9891\u9053\u4e0b\u8f7d\u8def\u5f84", - "HeaderSelectChannelDownloadPathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u4fdd\u5b58\u9891\u9053\u7f13\u5b58\u6587\u4ef6\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", - "LabelChapterDownloaders": "\u7ae0\u8282\u4e0b\u8f7d\u5668\uff1a", - "LabelChapterDownloadersHelp": "\u542f\u7528\u7ae0\u8282\u4e0b\u8f7d\u5668\u7684\u4f18\u5148\u7ea7\u6392\u5e8f\uff0c\u4f4e\u4f18\u5148\u7ea7\u7684\u4e0b\u8f7d\u5668\u53ea\u4f1a\u7528\u6765\u586b\u8865\u7f3a\u5c11\u7684\u4fe1\u606f\u3002", "HeaderFavoriteAlbums": "\u6700\u7231\u7684\u4e13\u8f91", "HeaderLatestChannelMedia": "\u6700\u65b0\u9891\u9053\u9879\u76ee", "ButtonOrganizeFile": "\u6574\u7406\u6587\u4ef6", @@ -1534,7 +1389,7 @@ "StatusSuccess": "\u6210\u529f", "MessageFileWillBeDeleted": "\u4ee5\u4e0b\u6587\u4ef6\u5c06\u88ab\u5220\u9664\uff1a", "MessageSureYouWishToProceed": "\u4f60\u786e\u5b9a\u8981\u7ee7\u7eed\uff1f", - "MessageDuplicatesWillBeDeleted": "\u6b64\u5916\uff0c\u4ee5\u4e0b\u8fd9\u4e9b\u5c06\u88ab\u5220\u9664\uff1a", + "MessageDuplicatesWillBeDeleted": "\u6b64\u5916\uff0c\u4ee5\u4e0b\u91cd\u590d\u9879\u5c06\u88ab\u5220\u9664\uff1a", "MessageFollowingFileWillBeMovedFrom": "\u4ee5\u4e0b\u6587\u4ef6\u5c06\u88ab\u79fb\u52a8\uff0c\u4ece\uff1a", "MessageDestinationTo": "\u5230\uff1a", "HeaderSelectWatchFolder": "\u9009\u62e9\u76d1\u63a7\u6587\u4ef6", @@ -1545,8 +1400,8 @@ "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", "HeaderRestart": "\u91cd\u542f", "HeaderShutdown": "\u5173\u673a", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", + "MessageConfirmRestart": "\u60a8\u786e\u5b9a\u8981\u91cd\u542f Emby \u670d\u52a1\u7aef\uff1f", + "MessageConfirmShutdown": "\u60a8\u786e\u5b9a\u8981\u5173\u95ed Emby \u670d\u52a1\u7aef\uff1f", "ValueItemCount": "{0} item", "ValueItemCountPlural": "{0} items", "NewVersionOfSomethingAvailable": "\u4e00\u4e2a\u65b0\u7684\u7248\u672c {0} \u53ef\u7528!", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "\u76f4\u63a5\u64ad\u653e", "LabelAudioCodec": "\u97f3\u9891\uff1a {0}", "LabelVideoCodec": "\u89c6\u9891\uff1a{0}", - "LabelLocalAccessUrl": "\u672c\u5730\u8bbf\u95ee\uff1a {0}", - "LabelRemoteAccessUrl": "\u8fdc\u7a0b\u8bbf\u95ee\uff1a{0}", + "LabelLocalAccessUrl": "\u5bb6\u5ead (\u5c40\u57df\u7f51) \u8bbf\u95ee\uff1a{0}", + "LabelRemoteAccessUrl": "\u8fdc\u7a0b (\u516c\u7f51) \u8bbf\u95ee\uff1a{0}", "LabelRunningOnPort": "\u6b63\u8fd0\u884c\u4e8eHTTP\u7aef\u53e3 {0}.", "LabelRunningOnPorts": "\u6b63\u8fd0\u884c\u4e8eHTTP\u7aef\u53e3 {0}\uff0c\u548c https\u7aef\u53e3{1}.", "HeaderLatestFromChannel": "\u6700\u65b0\u7684 {0}", - "HeaderCurrentSubtitles": "\u5f53\u524d\u5b57\u5e55", "ButtonRemoteControl": "\u9065\u63a7", "HeaderLatestTvRecordings": "\u6700\u65b0\u5f55\u5236\u7684\u8282\u76ee", "LabelCurrentPath": "\u5f53\u524d\u8def\u5f84\uff1a", @@ -1574,16 +1428,16 @@ "MessageDirectoryPickerLinuxInstruction": "For Linux on Arch Linux, CentOS, Debian, Fedora, OpenSuse, or Ubuntu, you must grant the Emby system user at least read access to your storage locations.", "HeaderMenu": "\u83dc\u5355", "ButtonOpen": "\u6253\u5f00", - "ButtonShuffle": "\u6401\u7f6e", + "ButtonShuffle": "\u968f\u673a\u64ad\u653e", "ButtonResume": "\u6062\u590d\u64ad\u653e", "HeaderAudioTracks": "\u97f3\u8f68", - "HeaderLibraries": "Libraries", + "HeaderLibraries": "\u5a92\u4f53\u5e93", "HeaderVideoQuality": "\u89c6\u9891\u8d28\u91cf", "MessageErrorPlayingVideo": "\u64ad\u653e\u89c6\u9891\u51fa\u73b0\u9519\u8bef\u3002", "MessageEnsureOpenTuner": "\u8bf7\u786e\u4fdd\u6709\u4e00\u4e2a\u6253\u5f00\u7684\u53ef\u7528\u8c03\u8c10\u5668", "ButtonDashboard": "\u63a7\u5236\u53f0", "ButtonReports": "\u62a5\u544a", - "MetadataManager": "Metadata Manager", + "MetadataManager": "\u5a92\u4f53\u8d44\u6599\u7ba1\u7406\u5668", "HeaderTime": "\u65f6\u95f4", "LabelAddedOnDate": "\u6dfb\u52a0 {0}", "ButtonStart": "\u5f00\u59cb", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "\u5220\u9664\u9879\u76ee", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "\u8f93\u5165\u7684\u503c\u4e0d\u6b63\u786e\u3002\u8bf7\u91cd\u8bd5\u3002", "MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "\u7f3a\u5c11\u80cc\u666f\u56fe\u3002", "MissingLogoImage": "\u7f3a\u5c11Logo\u56fe\u3002", "MissingEpisode": "\u7f3a\u5c11\u5267\u96c6\u3002", - "OptionScreenshots": "\u622a\u5c4f", "OptionBackdrops": "\u80cc\u666f", "OptionImages": "\u56fe\u7247", "OptionKeywords": "\u5173\u952e\u8bcd", @@ -1642,11 +1494,7 @@ "OptionPeople": "\u6f14\u804c\u4eba\u5458", "OptionProductionLocations": "\u4ea7\u5730", "OptionBirthLocation": "\u51fa\u751f\u5730", - "LabelAllChannels": "\u6240\u6709\u9891\u9053", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", - "HeaderChangeFolderType": "Change Content Type", + "HeaderChangeFolderType": "\u66f4\u6539\u5185\u5bb9\u7c7b\u578b", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "\u8b66\u62a5", "MessagePleaseRestart": "\u8bf7\u91cd\u542f\u670d\u52a1\u5668\u4ee5\u5b8c\u6210\u66f4\u65b0\u3002", @@ -1658,21 +1506,19 @@ "TabAutoOrganize": "\u81ea\u52a8\u6574\u7406", "TabPlugins": "\u63d2\u4ef6", "TabHelp": "\u5e2e\u52a9", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", + "ButtonFullscreen": "\u5168\u5c4f", + "ButtonAudioTracks": "\u97f3\u8f68", "ButtonQuality": "\u8d28\u91cf", "HeaderNotifications": "\u901a\u77e5", - "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "\u4e3a\u5728IE\u6d4f\u89c8\u5668\u4e0a\u8fbe\u5230\u6700\u597d\u7684\u6548\u679c\uff0c\u8bf7\u5b89\u88c5WebM\u64ad\u653e\u63d2\u4ef6\u3002", + "HeaderSelectPlayer": "\u9009\u62e9\u64ad\u653e\u5668", "HeaderVideoError": "\u89c6\u9891\u9519\u8bef", "ButtonViewSeriesRecording": "\u67e5\u770b\u7535\u89c6\u5267\u5f55\u50cf", "HeaderSpecials": "\u7279\u96c6", "HeaderTrailers": "\u9884\u544a\u7247", "HeaderResolution": "\u5206\u8fa8\u7387", "HeaderRuntime": "\u64ad\u653e\u65f6\u95f4", - "HeaderParentalRating": "Parental Rating", + "HeaderParentalRating": "\u5bb6\u957f\u5206\u7ea7", "HeaderReleaseDate": "\u53d1\u884c\u65e5\u671f", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "\u5b63", "HeaderSeasonNumber": "\u591a\u5c11\u5b63", @@ -1690,7 +1536,7 @@ "OptionMusicAlbums": "\u97f3\u4e50\u4e13\u8f91", "OptionMusicVideos": "\u97f3\u4e50\u89c6\u9891", "OptionSongs": "\u6b4c\u66f2", - "OptionHomeVideos": "\u5bb6\u5ead\u89c6\u9891", + "OptionHomeVideos": "\u5bb6\u5ead\u89c6\u9891\u4e8e\u7167\u7247", "OptionBooks": "\u4e66\u7c4d", "ButtonUp": "\u4e0a", "ButtonDown": "\u4e0b", @@ -1710,17 +1556,14 @@ "HeaderRemoveMediaLocation": "\u79fb\u9664\u5a92\u4f53\u4f4d\u7f6e", "MessageConfirmRemoveMediaLocation": "\u4f60\u786e\u5b9a\u8981\u79fb\u9664\u6b64\u4f4d\u7f6e\uff1f", "LabelNewName": "\u65b0\u540d\u5b57\uff1a", - "HeaderAddMediaFolder": "\u6dfb\u52a0\u5a92\u4f53\u6587\u4ef6\u5939", - "HeaderAddMediaFolderHelp": "\u540d\u79f0 (\u7535\u5f71, \u97f3\u4e50, \u7535\u89c6...\u7b49\u7b49)\uff1a", "HeaderRemoveMediaFolder": "\u79fb\u9664\u5a92\u4f53\u6587\u4ef6\u5939", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "\u4ee5\u4e0b\u5a92\u4f53\u8def\u5f84\u5c06\u4ece\u60a8\u7684 Emby \u5a92\u4f53\u5e93\u79fb\u9664\uff1a", "MessageAreYouSureYouWishToRemoveMediaFolder": "\u4f60\u786e\u5b9a\u5e0c\u671b\u79fb\u9664\u6b64\u5a92\u4f53\u6587\u4ef6\u5939\uff1f", "ButtonRename": "\u91cd\u547d\u540d", - "ButtonChangeContentType": "Change content type", + "ButtonChangeContentType": "\u66f4\u6539\u5185\u5bb9\u7c7b\u578b", "HeaderMediaLocations": "\u5a92\u4f53\u4f4d\u7f6e", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "\u53ef\u9009\uff1a\u66ff\u4ee3\u8def\u5f84\u80fd\u628a\u670d\u52a1\u5668\u8def\u5f84\u6620\u5c04\u5230\u7f51\u7edc\u5171\u4eab\uff0c\u4ece\u800c\u4f7f\u5ba2\u6237\u7aef\u53ef\u4ee5\u76f4\u63a5\u64ad\u653e\u3002", - "FolderTypeUnset": "Unset (mixed content)", + "LabelContentTypeValue": "\u5185\u5bb9\u7c7b\u578b\uff1a{0}", + "FolderTypeUnset": "\u672a\u8bbe\u7f6e (\u6df7\u5408\u5185\u5bb9)", "BirthPlaceValue": "\u51fa\u751f\u5730: {0}", "DeathDateValue": "\u53bb\u4e16\uff1a {0}", "BirthDateValue": "\u51fa\u751f\uff1a {0}", @@ -1734,36 +1577,36 @@ "MessageInstallPluginFromApp": "\u8fd9\u4e2a\u63d2\u4ef6\u5fc5\u987b\u4ece\u4f60\u6253\u7b97\u4f7f\u7528\u7684\u5e94\u7528\u7a0b\u5e8f\u4e2d\u5b89\u88c5\u3002", "ValuePriceUSD": "\u4ef7\u683c\uff1a {0} (\u7f8e\u5143)", "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", + "HeaderEmbyAccountAdded": "\u5df2\u6dfb\u52a0 Emby \u5e10\u53f7", + "MessageEmbyAccountAdded": "\u5df2\u6dfb\u52a0 Emby \u5e10\u53f7\u5230\u6b64\u7528\u6237\u3002", "MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", + "HeaderEmbyAccountRemoved": "\u5df2\u79fb\u9664 Emby \u5e10\u53f7", + "MessageEmbyAccontRemoved": "\u5df2\u4ece\u6b64\u7528\u6237\u79fb\u9664 Emby \u5e10\u53f7\u3002", "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", + "ValueDiscNumber": "\u76d8 {0}", + "HeaderUnknownDate": "\u672a\u77e5\u65e5\u671f", + "HeaderUnknownYear": "\u672a\u77e5\u5e74\u4efd", "ValueMinutes": "{0} min", "HeaderSelectExternalPlayer": "\u9009\u62e9\u5916\u90e8\u64ad\u653e\u5668", "HeaderExternalPlayerPlayback": "\u5916\u90e8\u64ad\u653e\u5668\u64ad\u653e", "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", + "OptionWatched": "\u5df2\u89c2\u770b", + "OptionUnwatched": "\u672a\u89c2\u770b", "ExternalPlayerPlaystateOptionsHelp": "\u6307\u5b9a\u60a8\u4e0b\u4e00\u6b21\u5e0c\u671b\u5982\u4f55\u6062\u590d\u64ad\u653e\u6b64\u89c6\u9891\u3002", "LabelMarkAs": "Mark as:", "OptionInProgress": "In-Progress", "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", + "ValueOneMovie": "1 \u4e2a\u7535\u5f71", + "ValueMovieCount": "{0} \u4e2a\u7535\u5f71", + "ValueOneTrailer": "1 \u4e2a\u9884\u544a\u7247", + "ValueTrailerCount": "{0} \u4e2a\u9884\u544a\u7247", + "ValueOneSeries": "1 \u4e2a\u7cfb\u5217", + "ValueSeriesCount": "{0} \u4e2a\u7cfb\u5217", + "ValueOneEpisode": "1 \u96c6", + "ValueEpisodeCount": "{0} \u96c6", + "ValueOneGame": "1 \u4e2a\u6e38\u620f", + "ValueGameCount": "{0} \u4e2a\u6e38\u620f", "ValueOneAlbum": "1\u5f20\u4e13\u8f91", "ValueAlbumCount": "{0} \u5f20\u4e13\u8f91", "ValueOneSong": "1\u9996\u6b4c", @@ -1774,15 +1617,13 @@ "HeaderUnaired": "\u672a\u64ad\u51fa", "HeaderMissing": "\u7f3a\u5931", "ButtonWebsite": "\u7f51\u7ad9", - "ValueSeriesYearToPresent": "{0} - Present", + "ValueSeriesYearToPresent": "{0} - \u73b0\u5728", "ValueAwards": "\u83b7\u5956\uff1a {0}", - "ValueBudget": "\u6295\u8d44\u989d\uff1a {0}", - "ValueRevenue": "\u6536\u5165\uff1a {0}", "ValuePremiered": "\u9996\u6620 {0}", "ValuePremieres": "\u9996\u6620 {0}", "ValueStudio": "\u5de5\u4f5c\u5ba4\uff1a {0}", "ValueStudios": "\u5de5\u4f5c\u5ba4\uff1a {0}", - "ValueStatus": "Status: {0}", + "ValueStatus": "\u72b6\u6001\uff1a{0}", "LabelLimit": "\u9650\u5236\uff1a", "ValueLinks": "\u94fe\u63a5\uff1a {0}", "HeaderCastAndCrew": "\u6f14\u5458\u8868", @@ -1800,12 +1641,12 @@ "MediaInfoLongitude": "\u7ecf\u5ea6", "MediaInfoShutterSpeed": "\u5feb\u95e8\u901f\u5ea6", "MediaInfoSoftware": "\u8f6f\u4ef6", - "HeaderMoreLikeThis": "More Like This", + "HeaderMoreLikeThis": "\u66f4\u591a\u7c7b\u4f3c\u7684", "HeaderMovies": "\u7535\u5f71", "HeaderAlbums": "\u4e13\u8f91", "HeaderGames": "\u6e38\u620f", "HeaderBooks": "\u4e66\u7c4d", - "HeaderEpisodes": "Episodes", + "HeaderEpisodes": "\u96c6\u6570", "HeaderSeasons": "\u5b63", "HeaderTracks": "\u97f3\u8f68", "HeaderItems": "\u9879\u76ee", @@ -1813,46 +1654,41 @@ "ButtonFullReview": "\u5168\u9762\u56de\u987e", "ValueAsRole": "\u626e\u6f14 {0}", "ValueGuestStar": "\u7279\u9080\u660e\u661f", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", + "MediaInfoSize": "\u5927\u5c0f", + "MediaInfoPath": "\u8def\u5f84", + "MediaInfoFile": "\u6587\u4ef6", + "MediaInfoFormat": "\u683c\u5f0f", + "MediaInfoContainer": "\u5bb9\u5668", + "MediaInfoDefault": "\u9ed8\u8ba4", + "MediaInfoForced": "\u5f3a\u5236", + "MediaInfoExternal": "\u5916\u90e8", "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", + "MediaInfoPixelFormat": "\u50cf\u7d20\u683c\u5f0f", "MediaInfoBitDepth": "Bit depth", "MediaInfoSampleRate": "Sample rate", "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", + "MediaInfoChannels": "\u58f0\u9053", + "MediaInfoLayout": "\u6392\u7248", + "MediaInfoLanguage": "\u8bed\u8a00", "MediaInfoCodec": "Codec", "MediaInfoCodecTag": "Codec tag", "MediaInfoProfile": "Profile", "MediaInfoLevel": "Level", "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", + "MediaInfoResolution": "\u5206\u8fa8\u7387", + "MediaInfoAnamorphic": "\u7578\u5f62", + "MediaInfoInterlaced": "\u9694\u884c\u626b\u63cf", + "MediaInfoFramerate": "\u5e27\u7387", "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", + "MediaInfoStreamTypeData": "\u6570\u636e", + "MediaInfoStreamTypeVideo": "\u89c6\u9891", + "MediaInfoStreamTypeSubtitle": "\u5b57\u5e55", + "MediaInfoStreamTypeEmbeddedImage": "\u5185\u5d4c\u56fe\u7247", "MediaInfoRefFrames": "Ref frames", - "TabExpert": "Expert", + "TabExpert": "\u4e13\u5bb6", "HeaderSelectCustomIntrosPath": "\u9009\u62e9\u81ea\u5b9a\u4e49\u4ecb\u7ecd\u8def\u5f84", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "\u67e5\u770b\u60a8\u6700\u8fd1\u6dfb\u52a0\u7684\u5a92\u4f53\uff0c\u4e0b\u4e00\u96c6\u5267\u96c6\uff0c\u548c\u5176\u4ed6\u66f4\u591a\u4fe1\u606f\u3002\u7eff\u8272\u5706\u5708\u63d0\u793a\u60a8\u6709\u591a\u5c11\u9879\u76ee\u5c1a\u672a\u64ad\u653e\u3002", @@ -1881,143 +1717,115 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", + "TabExtras": "\u989d\u5916", + "HeaderUploadImage": "\u4e0a\u4f20\u56fe\u7247", + "DeviceLastUsedByUserName": "\u6700\u540e\u88ab {0} \u4f7f\u7528", + "HeaderDeleteDevice": "\u5220\u9664\u8bbe\u5907", "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", + "HeaderSelectUploadPath": "\u9009\u62e9\u4e0a\u4f20\u8def\u5f84", "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", + "ButtonLibraryAccess": "\u5a92\u4f53\u5e93\u8bbf\u95ee", + "ButtonParentalControl": "\u5bb6\u957f\u63a7\u5236", + "HeaderInvitationSent": "\u5df2\u53d1\u9001\u9080\u8bf7", "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", + "HeaderConnectionFailure": "\u8fde\u63a5\u5931\u8d25", "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", + "ButtonSelectServer": "\u9009\u62e9\u670d\u52a1\u5668", "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", + "MessageLoggedOutParentalControl": "\u8bbf\u95ee\u76ee\u524d\u53d7\u9650\u3002\u8bf7\u7a0d\u540e\u5c1d\u8bd5\u3002", "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", + "ButtonAccept": "\u63a5\u53d7", + "ButtonReject": "\u62d2\u7edd", + "MessageContactAdminToResetPassword": "\u8bf7\u8054\u7cfb\u60a8\u7684\u7ba1\u7406\u5458\u4ee5\u91cd\u7f6e\u60a8\u7684\u5bc6\u7801\u3002", "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "ButtonLinkMyEmbyAccount": "Link my account now", + "ButtonLinkMyEmbyAccount": "\u73b0\u5728\u7ed1\u5b9a\u6211\u7684\u5e10\u53f7", "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", + "SyncMedia": "\u540c\u6b65\u5a92\u4f53", + "HeaderCancelSyncJob": "\u53d6\u6d88\u540c\u6b65", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", + "LabelQuality": "\u8d28\u91cf\uff1a", + "MessageBookPluginRequired": "\u9700\u8981\u5b89\u88c5 Bookshelf \u63d2\u4ef6", + "MessageGamePluginRequired": "\u9700\u8981\u5b89\u88c5 GameBrowser \u63d2\u4ef6", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", + "SyncJobItemStatusQueued": "\u5df2\u5217\u961f", + "SyncJobItemStatusConverting": "\u8f6c\u6362\u4e2d", + "SyncJobItemStatusTransferring": "\u4f20\u8f93\u4e2d", + "SyncJobItemStatusSynced": "\u5df2\u540c\u6b65", + "SyncJobItemStatusFailed": "\u5df2\u5931\u8d25", + "SyncJobItemStatusRemovedFromDevice": "\u4ece\u8bbe\u5907\u5220\u9664", + "SyncJobItemStatusCancelled": "\u5df2\u53d6\u6d88", "LabelProfile": "Profile:", "LabelBitrateMbps": "Bitrate (Mbps):", "EmbyIntroDownloadMessage": "To download and install the free Emby Server visit {0}.", "EmbyIntroDownloadMessageWithoutLink": "To download and install the free Emby Server visit the Emby website.", - "ButtonNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", + "ButtonNewServer": "\u65b0\u670d\u52a1\u5668", + "MyDevice": "\u6211\u7684\u8bbe\u5907", + "ButtonRemote": "\u9065\u63a7", "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", + "TabScenes": "\u573a\u666f", + "HeaderUnlockApp": "\u89e3\u9501\u5e94\u7528", + "HeaderUnlockSync": "\u89e3\u9501 Emby \u540c\u6b65", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", - "NoResultsFound": "No results found.", - "ButtonManageServer": "Manage Server", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", + "OptionEnableFullscreen": "\u5f00\u542f\u5168\u5c4f\u6a21\u5f0f", + "ButtonServer": "\u670d\u52a1\u5668", + "HeaderLibrary": "\u5a92\u4f53\u5e93", + "HeaderMedia": "\u5a92\u4f53", + "NoResultsFound": "\u672a\u627e\u5230\u7ed3\u679c\u3002", + "ButtonManageServer": "\u7ba1\u7406\u670d\u52a1\u5668", + "ButtonPreferences": "\u504f\u597d", + "ButtonViewArtist": "\u67e5\u770b\u827a\u672f\u5bb6", + "ButtonViewAlbum": "\u67e5\u770b\u4e13\u8f91", + "ButtonEditImages": "\u4fee\u6539\u56fe\u7247", + "ErrorMessagePasswordNotMatchConfirm": "\u5bc6\u7801\u786e\u8ba4\u4e0d\u6b63\u786e\u3002", + "ErrorMessageUsernameInUse": "\u7528\u6237\u540d\u5df2\u5b58\u5728\u3002\u8bf7\u91cd\u65b0\u9009\u4e2a\u540d\u79f0\u518d\u8bd5\u3002", "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", "MessageThankYouForConnectSignUpNoValidation": "Thank you for signing up for Emby Connect! You will now be asked to login with your Emby Connect information.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", + "ButtonShare": "\u5171\u4eab", + "HeaderConfirm": "\u786e\u8ba4", + "MessageConfirmDeleteTunerDevice": "\u60a8\u786e\u5b9a\u8981\u5220\u9664\u6b64\u8bbe\u5907\u5417\uff1f", "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", + "HeaderDeleteProvider": "\u5220\u9664\u63d0\u4f9b\u5546", "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", + "MessageCreateAccountAt": "\u5728 {0} \u521b\u5efa\u5e10\u53f7", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", - "OptionEnableDisplayMirroring": "Enable display mirroring", + "HeaderTryEmbyPremiere": "\u4f53\u9a8c Emby Premiere", + "OptionEnableDisplayMirroring": "\u5f00\u542f\u663e\u793a\u955c\u50cf", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", + "LabelLocalSyncStatusValue": "\u72b6\u6001\uff1a{0}", + "MessageSyncStarted": "\u540c\u6b65\u5df2\u5f00\u59cb", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", - "ButtonOther": "Other", + "ButtonOther": "\u5176\u4ed6", "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "ButtonDisconnect": "Disconnect", - "ButtonMenu": "Menu", + "HeaderSortOrder": "\u6392\u5e8f\u987a\u5e8f", + "ButtonDisconnect": "\u65ad\u5f00", + "ButtonMenu": "\u76ee\u5f55", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", + "ButtonGuide": "\u6307\u5357", + "ConfirmEndPlayerSession": "\u60a8\u60f3\u5173\u95ed\u6b64\u8bbe\u5907\u4e0a\u7684 Emby \u5417\uff1f", + "ButtonYes": "\u662f", "AddUser": "\u6dfb\u52a0\u7528\u6237", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", - "ButtonNowPlaying": "Now Playing", + "ButtonNo": "\u5426", + "ButtonNowPlaying": "\u6b63\u5728\u64ad\u653e", "HeaderLatestMovies": "\u6700\u65b0\u7535\u5f71", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", + "HeaderEmailAddress": "\u90ae\u7bb1\u5730\u5740", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "TermsOfUse": "\u4f7f\u7528\u8bb8\u53ef", + "NumLocationsValue": "{0} \u4e2a\u6587\u4ef6\u5939", + "ButtonAddMediaLibrary": "\u6dfb\u52a0\u5a92\u4f53\u5e93", + "ButtonManageFolders": "\u7ba1\u7406\u6587\u4ef6\u5939", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2025,114 +1833,102 @@ "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", "ErrorAddingEmbyConnectAccount3": "The Emby account is already linked to an existing local user. An Emby account can only be linked to one local user at a time.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", + "HeaderFavoriteArtists": "\u6700\u7231\u4f5c\u5bb6", + "HeaderFavoriteSongs": "\u6700\u7231\u6b4c", + "HeaderConfirmPluginInstallation": "\u786e\u8ba4\u63d2\u4ef6\u5b89\u88c5", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", + "HeaderCloudSync": "\u4e91\u540c\u6b65", + "HeaderFreeApps": "\u514d\u8d39 Emby \u5e94\u7528", + "CoverArt": "\u5c01\u9762\u56fe", + "ButtonOff": "\u5173", + "TitleHardwareAcceleration": "\u786c\u4ef6\u52a0\u901f", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", - "ValueExample": "Example: {0}", + "ValueExample": "\u4f8b\u5982\uff1a{0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", - "LabelFileOrUrl": "File or url:", - "OptionEnableForAllTuners": "Enable for all tuner devices", - "HeaderTuners": "Tuners", + "LabelFileOrUrl": "\u6587\u4ef6\u6216\u7f51\u5740\uff1a", + "OptionEnableForAllTuners": "\u7ed9\u6240\u6709\u8c03\u8c10\u5668\u5f00\u542f", + "HeaderTuners": "\u8c03\u8c10\u5668", "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", - "LabelAllowHWTranscoding": "Allow hardware transcoding", + "LabelAllowHWTranscoding": "\u5141\u8bb8\u786c\u4ef6\u8f6c\u7801", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", "OptionRequirePerfectSubtitleMatch": "Only download subtitles that are a perfect match for my video files", "ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.", "ErrorAddingGuestAccount2": "Please ensure your guest has completed activation by following the instructions in the email sent after creating the account. If they did not receive this email then please send an email to {0}, and include your email address as well as theirs.", "GuestUserNotFound": "User not found. Please ensure the name is correct and try again, or try entering their email address.", - "Yesterday": "Yesterday", - "DownloadImagesInAdvanceWarning": "Downloading all images in advance will result in longer library scan times.", + "Yesterday": "\u6628\u5929", + "DownloadImagesInAdvanceWarning": "\u9884\u5148\u4e0b\u8f7d\u6240\u6709\u56fe\u7247\u5c06\u4f1a\u66f4\u4e45\u5a92\u4f53\u5e93\u626b\u63cf\u65f6\u95f4\u3002", "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", "RecordingPathChangeMessage": "Changing your recording folder will not migrate existing recordings from the old location to the new. You'll need to move them manually if desired.", - "VisualLoginFormHelp": "Select a user or sign in manually", - "LabelSportsCategories": "Sports categories:", + "VisualLoginFormHelp": "\u9009\u62e9\u7528\u6237\u6216\u624b\u52a8\u767b\u5165", + "LabelSportsCategories": "\u4f53\u80b2\u5206\u7c7b\uff1a", "XmlTvSportsCategoriesHelp": "Programs with these categories will be displayed as sports programs. Separate multiple with '|'.", - "LabelNewsCategories": "News categories:", + "LabelNewsCategories": "\u65b0\u5206\u7c7b\uff1a", "XmlTvNewsCategoriesHelp": "Programs with these categories will be displayed as news programs. Separate multiple with '|'.", - "LabelKidsCategories": "Children's categories:", + "LabelKidsCategories": "\u513f\u7ae5\u5206\u7c7b\uff1a", "XmlTvKidsCategoriesHelp": "Programs with these categories will be displayed as programs for children. Separate multiple with '|'.", - "LabelMovieCategories": "Movie categories:", + "LabelMovieCategories": "\u7535\u5f71\u5206\u7c7b\uff1a", "XmlTvMovieCategoriesHelp": "Programs with these categories will be displayed as movies. Separate multiple with '|'.", "XmlTvPathHelp": "A path to an xml tv file. Emby will read this file and periodically check it for updates. You are responsible for creating and updating the file.", - "LabelBindToLocalNetworkAddress": "Bind to local network address:", + "LabelBindToLocalNetworkAddress": "\u7ed1\u5b9a\u5230\u672c\u5730\u7f51\u7edc\u5730\u5740\uff1a", "LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.", "TitleHostingSettings": "Hosting Settings", "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.", - "MapChannels": "Map Channels", - "LabelffmpegPath": "FFmpeg path:", - "LabelffmpegVersion": "FFmpeg version:", + "MapChannels": "\u6620\u5c04\u9891\u9053", + "LabelffmpegPath": "FFmpeg \u8def\u5f84\uff1a", + "LabelffmpegVersion": "FFmpeg \u7248\u672c\uff1a", "LabelffmpegPathHelp": "The path to the ffmpeg application file, or folder containing ffmpeg.", - "SetupFFmpeg": "Setup FFmpeg", + "SetupFFmpeg": "\u8bbe\u7f6e FFmpeg", "SetupFFmpegHelp": "Emby may require a library or application to convert certain media types. There are many different applications available, however, Emby has been tested to work with ffmpeg. Emby is in no way affiliated with ffmpeg, its ownership, code or distribution.", - "EnterFFmpegLocation": "Enter FFmpeg path", - "DownloadFFmpeg": "Download FFmpeg", - "FFmpegSuggestedDownload": "Suggested download: {0}", - "UnzipFFmpegFile": "Unzip the downloaded file to a folder of your choice.", - "OptionUseSystemInstalledVersion": "Use system installed version", - "OptionUseMyCustomVersion": "Use a custom version", + "EnterFFmpegLocation": "\u8f93\u5165 FFmpeg \u8def\u5f84", + "DownloadFFmpeg": "\u4e0b\u8f7d FFmpeg", + "FFmpegSuggestedDownload": "\u5efa\u8bae\u4e0b\u8f7d\uff1a{0}", + "UnzipFFmpegFile": "\u89e3\u538b\u4e0b\u8f7d\u7684\u6587\u4ef6\u5230\u60a8\u60f3\u8981\u7684\u6587\u4ef6\u5939\u91cc\u3002", + "OptionUseSystemInstalledVersion": "\u4f7f\u7528\u7cfb\u7edf\u5b89\u88c5\u7684\u7248\u672c", + "OptionUseMyCustomVersion": "\u4f7f\u7528\u81ea\u5b9a\u4e49\u7248\u672c", "FFmpegSavePathNotFound": "We're unable to locate FFmpeg using the path you've entered. FFprobe is also required and must exist in the same folder. These components are normally bundled together in the same download. Please check the path and try again.", "XmlTvPremiere": "By default, Emby will import {0} hours of guide data. Importing unlimited data requires an active Emby Premiere subscription.", - "MoreFromValue": "More from {0}", + "MoreFromValue": "\u66f4\u591a\u6765\u81ea {0}", "OptionSaveMetadataAsHiddenHelp": "Changing this will apply to new metadata saved going forward. Existing metadata files will be updated the next time they are saved by Emby Server.", - "EnablePhotos": "Enable photos", + "EnablePhotos": "\u5f00\u542f\u7167\u7247", "EnablePhotosHelp": "Photos will be detected and displayed alongside other media files.", "MakeAvailableOffline": "Make available offline", - "ConfirmRemoveDownload": "Remove download?", - "RemoveDownload": "Remove download", - "SyncToOtherDevices": "Sync to other devices", - "ManageOfflineDownloads": "Manage offline downloads", + "ConfirmRemoveDownload": "\u5220\u9664\u4e0b\u8f7d\uff1f", + "RemoveDownload": "\u5220\u9664\u4e0b\u8f7d", + "SyncToOtherDevices": "\u540c\u6b65\u5230\u5176\u4ed6\u8bbe\u5907", + "ManageOfflineDownloads": "\u7ba1\u7406\u79bb\u7ebf\u4e0b\u8f7d", "MessageDownloadScheduled": "Download scheduled", - "RememberMe": "Remember me", - "HeaderOfflineSync": "Offline Sync", + "RememberMe": "\u8bb0\u4f4f\u6211", + "HeaderOfflineSync": "\u79bb\u7ebf\u540c\u6b65", "LabelMaxAudioFileBitrate": "Max audio file bitrate:", "LabelMaxAudioFileBitrateHelp": "Audio files with a higher bitrate will be converted by Emby Server. Select a higher value for better quality, or a lower value to conserve local storage space.", - "LabelVaapiDevice": "VA API Device:", - "LabelVaapiDeviceHelp": "This is the render node that is used for hardware acceleration.", - "HowToConnectFromEmbyApps": "How to Connect from Emby apps", + "LabelVaapiDevice": "VA API \u8bbe\u5907\uff1a", + "LabelVaapiDeviceHelp": "\u6b64\u6e32\u67d3\u8282\u70b9\u7528\u6765\u786c\u4ef6\u52a0\u901f\u3002", + "HowToConnectFromEmbyApps": "\u5982\u4f55\u7528 Emby \u5e94\u7528\u8fde\u63a5", "MessageFolderRipPlaybackExperimental": "Support for playback of folder rips and ISOs in this app is only expirimental. For best results, try an Emby app that supports these formats natively, or use plain video files.", - "OptionExtractChapterImage": "Enable chapter image extraction", - "Downloads": "Downloads", + "OptionExtractChapterImage": "\u5f00\u542f\u7ae0\u56fe\u7247\u63d0\u53d6", + "Downloads": "\u4e0b\u8f7d", "LabelEnableDebugLogging": "\u542f\u7528\u8c03\u8bd5\u65e5\u5fd7", "OptionEnableExternalContentInSuggestions": "Enable external content in suggestions", "OptionEnableExternalContentInSuggestionsHelp": "Allow internet trailers and live tv programs to be included within suggested content.", - "LabelH264EncodingPreset": "H264 encoding preset:", + "LabelH264EncodingPreset": "H264 \u7f16\u7801\u9884\u8bbe\uff1a", "H264EncodingPresetHelp": "Choose a faster value to improve performance, or a slower value to improve quality.", - "LabelH264Crf": "H264 encoding CRF:", + "LabelH264Crf": "H264 \u7f16\u7801\u901f\u7387\u63a7\u5236", "H264CrfHelp": "The Constant Rate Factor (CRF) is the default quality setting for the x264 encoder. You can set the values between 0 and 51, where lower values would result in better quality (at the expense of higher file sizes). Sane values are between 18 and 28. The default for x264 is 23, so you can use this as a starting point.", - "Sports": "Sports", + "Sports": "\u4f53\u80b2", "HeaderForKids": "For Kids", "HeaderRecordingGroups": "Recording Groups", "LabelConvertRecordingsTo": "Convert recordings to:", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "\u4f7f\u7528\u5916\u90e8\u64ad\u653e\u5668\u64ad\u653e", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "\u6700\u65b0{0}", + "LabelMoviePrefix": "\u7535\u5f71\u524d\u7f00\uff1a", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/zh-HK.json b/dashboard-ui/strings/zh-HK.json index 64d4645a3d..64bbb6e706 100644 --- a/dashboard-ui/strings/zh-HK.json +++ b/dashboard-ui/strings/zh-HK.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u96e2\u958b", - "LabelApiDocumentation": "Api \u6587\u4ef6", - "LabelBrowseLibrary": "\u700f\u89bd\u8cc7\u6599\u5eab", - "LabelConfigureServer": "\u8a2d\u7f6e Emby", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "\u524d\u4e00\u500b", "LabelFinish": "\u5b8c\u6210", "LabelNext": "\u4e0b\u4e00\u500b", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\u60a8\u7684\u540d\u5b57\u662f\uff1a", "MoreUsersCanBeAddedLater": "\u7a0d\u5f8c\u5728\u63a7\u5236\u53f0\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u7528\u6236\u3002", "UserProfilesIntro": "Emby \u5df2\u5167\u7f6e\u652f\u63f4\u7528\u6236\u8a2d\u7f6e\u6587\u4ef6\uff0c\u8b93\u6bcf\u500b\u7528\u6236\u90fd\u6709\u81ea\u5df1\u7684\u986f\u793a\u8a2d\u7f6e\uff0c\u64ad\u653e\u60c5\u6cc1\u548c\u5bb6\u9577\u76e3\u8b77\u3002", - "LabelWindowsService": "Windows \u670d\u52d9", - "AWindowsServiceHasBeenInstalled": "Windows \u670d\u52d9\u5b89\u88dd\u5b8c\u6210\u3002", - "WindowsServiceIntro1": "Emby \u4f3a\u670d\u5668\u901a\u5e38\u904b\u884c\u65bc\u4e00\u500b\u5713\u5f62\u5716\u6a19\u7684\u684c\u9762\u61c9\u7528\u7a0b\u5f0f\uff0c\u4f46\u5982\u679c\u60a8\u559c\u6b61\u628a\u5b83\u4f5c\u70ba\u5f8c\u53f0\u670d\u52d9\uff0c\u53ef\u4ee5\u5728Windows \u670d\u52d9\u63a7\u5236\u53f0\u5167\u53d6\u4ee3\u3002", - "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", "WizardCompleted": "\u9019\u5c31\u662f\u6211\u5011\u6240\u9700\u8981\u7684\u3002 Emby \u5df2\u958b\u59cb\u6536\u96c6\u6709\u95dc\u60a8\u7684\u5a92\u9ad4\u5eab\u4fe1\u606f\u3002\u8acb\u770b\u770b\u6211\u5011\u4e00\u4e9b\u61c9\u7528\u7a0b\u5f0f\uff0c\u7136\u5f8c\u9ede\u64ca \u5b8c\u6210<\/b> \u624d\u67e5\u770b \u670d\u52d9\u5668\u63a7\u5236\u53f0<\/b> \u3002", "LabelConfigureSettings": "\u9032\u884c\u8a2d\u5b9a", - "LabelEnableAutomaticPortMapping": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u6620\u5c04", - "LabelEnableAutomaticPortMappingHelp": "\u4f7f\u7528 UPnP \u8a2d\u5b9a\uff0c\u8b93\u8def\u7531\u5668\u81ea\u52d5\u8a2d\u7f6e\u9060\u7aef\u8a2a\u554f\u3002\u9019\u6216\u6703\u4e0d\u9069\u7528\u65bc\u4e00\u4e9b\u8def\u7531\u5668\u3002", "HeaderTermsOfService": "Emby \u670d\u52d9\u689d\u6b3e", "MessagePleaseAcceptTermsOfService": "\u7e7c\u7e8c\u4e4b\u524d\uff0c\u8acb\u5148\u63a5\u53d7\u670d\u52d9\u548c\u79c1\u96b1\u653f\u7b56\u689d\u6b3e\u3002", "OptionIAcceptTermsOfService": "\u6211\u9858\u610f\u63a5\u53d7\u670d\u52d9\u689d\u6b3e", "ButtonPrivacyPolicy": "\u96b1\u79c1\u653f\u7b56", "ButtonTermsOfService": "\u670d\u52d9\u689d\u6b3e", - "HeaderDeveloperOptions": "\u958b\u767c\u8005\u9078\u9805", - "OptionEnableWebClientResponseCache": "\u555f\u7528\u7db2\u9801\u56de\u61c9\u66ab\u5b58", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u8def\u5f91\uff1a", - "LabelDashboardSourcePathHelp": "\u5982\u679c\u5f9e\u8def\u5f91\u904b\u884c\u4f3a\u670d\u5668\uff0c\u8acb\u9078\u64c7\u63a7\u5236\u53f0\u754c\u9762\u6587\u4ef6\u593e\u7684\u8def\u5f91\u3002\u6240\u6709\u5728\u6b64\u4f4d\u7f6e\u7684\u7db2\u7d61\u5ba2\u6236\u7aef\u6587\u4ef6\u5c07\u6703\u88ab\u904b\u884c\u3002", "ButtonConvertMedia": "\u5a92\u9ad4\u8f49\u63db", "ButtonOrganize": "\u6574\u7406", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "\u8981\u6dfb\u52a0\u6c92\u6709\u5217\u51fa\u7684\u7528\u6236\uff0c\u9996\u5148\u9700\u8981\u7531\u500b\u4eba\u5e33\u6236\u9801\uff0c\u9023\u63a5\u4ed6\u5011\u5e33\u6236\u5230 Emby Connect \u3002", "LabelPinCode": "PIN \u78bc\uff1a", "OptionHideWatchedContentFromLatestMedia": "\u96b1\u85cf\u6700\u65b0\u5a92\u9ad4\u5167\u5bb9", + "DeleteMedia": "Delete media", "HeaderSync": "\u540c\u6b65", "ButtonOk": "\u78ba\u5b9a", "ButtonCancel": "\u53d6\u6d88", "ButtonExit": "\u96e2\u958b", "ButtonNew": "\u6700\u65b0", + "OptionDev": "\u958b\u767c\uff08\u4e0d\u7a69\u5b9a\uff09", + "OptionBeta": "\u516c\u6e2c", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "\u96fb\u8996", "HeaderAudio": "\u97f3\u8a0a", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "\u8981\u7e7c\u7e8c\u8a2a\u554f\uff0c\u8acb\u9078\u64c7\u60a8\u7684\u7c21\u6613 PIN \u78bc", "ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc", "RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a", - "HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f", "LabelSyncTempPath": "\u81e8\u6642\u6587\u4ef6\u7684\u8def\u5f91\uff1a", "LabelSyncTempPathHelp": "\u9078\u64c7\u81ea\u5b9a\u540c\u6b65\u5de5\u4f5c\u7684\u6587\u4ef6\u593e\u3002\u5728\u540c\u6b65\u904e\u7a0b\u4e2d\u5efa\u7acb\u7684\u8f49\u63db\u5a92\u9ad4\u5c07\u88ab\u5b58\u653e\u5230\u9019\u88e1\u3002", "LabelCustomCertificatePath": "\u81ea\u5b9a\u8b49\u66f8\u8def\u5f91\uff1a", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u555f\u7528\uff0c .rar \u548c .zip \u7684\u6587\u4ef6\u5c07\u6703\u88ab\u5075\u6e2c\u70ba\u5a92\u9ad4\u3002", "LabelEnterConnectUserName": "\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\uff1a", "LabelEnterConnectUserNameHelp": "\u9019\u662f\u60a8 Emby \u5728\u7dda\u5e33\u6236\u7684\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\u3002", - "LabelEnableEnhancedMovies": "\u555f\u7528\u96fb\u5f71\u589e\u5f37\u5c55\u793a", - "LabelEnableEnhancedMoviesHelp": "\u7576\u555f\u7528\u6642\uff0c\u96fb\u5f71\u5c07\u6703\u986f\u793a\u6210\u6587\u4ef6\u593e\uff0c\u5305\u62ec\u9810\u544a\uff0c\u5de5\u4f5c\u4eba\u54e1\uff0c\u6f14\u54e1\u9663\u5bb9\u7b49\u76f8\u95dc\u5167\u5bb9\u3002", "HeaderSyncJobInfo": "\u540c\u6b65\u4efb\u52d9", "FolderTypeMixed": "\u6df7\u5408\u5167\u5bb9", "FolderTypeMovies": "\u96fb\u5f71", @@ -84,7 +70,6 @@ "LabelContentType": "\u5167\u5bb9\u985e\u578b\uff1a", "TitleScheduledTasks": "\u4efb\u52d9\u6642\u9593\u8868", "HeaderSetupLibrary": "\u5efa\u7acb\u4f60\u7684\u5a92\u9ad4\u8cc7\u6599\u5eab", - "ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e", "LabelFolderType": "\u6587\u4ef6\u593e\u985e\u578b\uff1a", "LabelCountry": "\u570b\u5bb6\uff1a", "LabelLanguage": "\u8a9e\u8a00\uff1a", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "\u76f4\u63a5\u5132\u5b58\u5a92\u9ad4\u5716\u7247\u548c\u8cc7\u6599\u5230\u5a92\u9ad4\u6587\u4ef6\u593e\uff0c\u8b93\u7de8\u8f2f\u5de5\u4f5c\u66f4\u5bb9\u6613\u3002", "LabelDownloadInternetMetadata": "\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027", "LabelDownloadInternetMetadataHelp": "Emby \u4f3a\u670d\u5668\u53ef\u4ee5\u4e0b\u8f09\u6709\u95dc\u60a8\u7684\u5a92\u9ad4\u8cc7\u8a0a\uff0c\u4ee5\u986f\u793a\u8c50\u5bcc\u5a92\u9ad4\u5c55\u793a\u3002", - "TabPreferences": "\u504f\u597d", "TabPassword": "\u5bc6\u78bc", "TabLibraryAccess": "\u5a92\u9ad4\u5eab\u901a\u884c\u8b49", "TabAccess": "\u53ef\u4ee5\u901a\u884c", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "\u5141\u8a31\u6240\u6709\u5a92\u9ad4\u5eab\u901a\u884c", "DeviceAccessHelp": "\u53ea\u9069\u7528\u65bc\u552f\u4e00\u8fa8\u8b58\u65b9\u6cd5\u7684\u88dd\u7f6e\uff0c\u4e26\u4e0d\u6703\u963b\u6b62\u700f\u89bd\u5668\u8a2a\u554f\u3002\u5df2\u904e\u6ffe\u7684\u7528\u6236\u8a2d\u5099\u6703\u88ab\u963b\u6b62\u8a2a\u554f\uff0c\u76f4\u5230\u4ed6\u5011\u4f7f\u7528\u5df2\u6279\u51c6\u88dd\u7f6e\u3002", "LabelDisplayMissingEpisodesWithinSeasons": "\u986f\u793a\u6bcf\u5b63\u7f3a\u5c11\u5287\u96c6\u8cc7\u6599", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "\u986f\u793a\u6bcf\u5b63\u5c1a\u672a\u64ad\u653e\u7684\u5287\u96c6\u8cc7\u6599", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "\u5f71\u7247\u64ad\u653e\u8a2d\u7f6e", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "\u64ad\u653e\u8a2d\u7f6e", "LabelAudioLanguagePreference": "\u9996\u9078\u97f3\u8a0a\u8a9e\u8a00\uff1a", "LabelSubtitleLanguagePreference": "\u9996\u9078\u5b57\u5e55\u8a9e\u8a00\uff1a", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "\u63a8\u85a6 1\uff1a1 \u9577\u5bec\u6bd4\u3002\u53ea\u9069\u7528\u65bc JPG\/ PNG\u3002", "MessageNothingHere": "\u9019\u88f9\u4ec0\u9ebc\u90fd\u6c92\u6709\u3002", "MessagePleaseEnsureInternetMetadata": "\u8acb\u78ba\u4fdd\u555f\u7528\u7db2\u7d61\u8cc7\u6599\u5c6c\u6027\u4e0b\u8f09\u529f\u80fd\u3002", - "TabSuggested": "\u5efa\u8b70", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "\u5efa\u8b70", "TabLatest": "\u6700\u65b0", "TabUpcoming": "\u5373\u5c07\u767c\u4f48", "TabShows": "\u7bc0\u76ee", "TabEpisodes": "\u5287\u96c6", "TabGenres": "\u98a8\u683c", - "TabPeople": "\u4eba\u7269", "TabNetworks": "\u7db2\u7d61", "HeaderUsers": "\u7528\u6236", "HeaderFilters": "\u7be9\u9078\u689d\u4ef6", @@ -166,6 +153,7 @@ "OptionWriters": "\u4f5c\u8005", "OptionProducers": "\u88fd\u4f5c\u8005", "HeaderResume": "\u6062\u5fa9\u64ad\u653e", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "\u63a5\u4e0b\u4f86", "NoNextUpItemsMessage": "\u672a\u6709\u767c\u73fe\u3002\u958b\u59cb\u6b23\u8cde\u60a8\u7684\u7bc0\u76ee\uff01", "HeaderLatestEpisodes": "\u6700\u65b0\u5287\u96c6", @@ -185,6 +173,7 @@ "OptionPlayCount": "\u64ad\u653e\u6b21\u6578", "OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f", "OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "\u5531\u7247\u6b4c\u624b", "OptionArtist": "\u6b4c\u624b", "OptionAlbum": "\u5531\u7247", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "\u5f71\u7247\u6bd4\u7279\u7387", "OptionResumable": "\u80fd\u5920\u6062\u5fa9", "ScheduledTasksHelp": "\u9ede\u64ca\u4efb\u52d9\u4f86\u8abf\u6574\u5b83\u7684\u6642\u9593\u8868\u3002", - "ScheduledTasksTitle": "\u4efb\u52d9\u6642\u9593\u8868", "TabMyPlugins": "\u6211\u7684\u63d2\u4ef6", "TabCatalog": "\u76ee\u9304", "TitlePlugins": "\u63d2\u4ef6", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u6700\u65b0\u6b4c\u66f2", "HeaderRecentlyPlayed": "\u6700\u8fd1\u64ad\u653e", "HeaderFrequentlyPlayed": "\u7d93\u5e38\u64ad\u653e", - "DevBuildWarning": "\u958b\u767c\u7248\u672c\u6703\u662f\u6700\u65b0\u3002\u4e26\u7d93\u5e38\u767c\u5e03\uff0c\u4f46\u9019\u4e9b\u7248\u672c\u90fd\u6c92\u6709\u7d93\u904e\u6e2c\u8a66\u3002\u9019\u53ef\u80fd\u6703\u7121\u6cd5\u4f7f\u7528\u5168\u90e8\u529f\u80fd\u6216\u5d29\u6f70\u3002", "LabelVideoType": "\u5f71\u7247\u985e\u578b\uff1a", "OptionBluray": "\u85cd\u5149", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "\u6709\u6548\u79c1\u4eba\u6216\u96b1\u85cf\u7684\u7ba1\u7406\u54e1\u5e33\u6236\u3002\u7528\u6236\u9700\u624b\u52d5\u8f38\u5165\u7528\u6236\u540d\u548c\u5bc6\u78bc\u767b\u9304\u3002", "OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236", "OptionDisableUserHelp": "\u5982\u679c\u7981\u7528\u6b64\u4f3a\u670d\u5668\uff0c\u5c07\u4e0d\u5141\u8a31\u6b64\u7528\u6236\u7684\u4efb\u4f55\u9023\u63a5\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002", - "HeaderAdvancedControl": "\u9032\u968e\u63a7\u5236", "LabelName": "\u540d\u7a31\uff1a", "ButtonHelp": "\u5e6b\u52a9", "OptionAllowUserToManageServer": "\u5141\u8a31\u6b64\u7528\u6236\u7ba1\u7406\u4f3a\u670d\u5668", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "DLNA \u88dd\u7f6e\u6703\u88ab\u8a8d\u70ba\u662f\u5171\u4eab\uff0c\u76f4\u5230\u7528\u6236\u9032\u884c\u63a7\u5236\u3002", "OptionAllowLinkSharing": "\u5141\u8a31\u793e\u4ea4\u5a92\u9ad4\u5206\u4eab", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "\u5206\u4eab", "HeaderRemoteControl": "\u9059\u63a7\u5668", "OptionMissingTmdbId": "\u7f3a\u5c11 TMDB \u7de8\u865f", "OptionIsHD": "\u9ad8\u6e05", @@ -306,10 +291,7 @@ "TabPaths": "\u8def\u5f91", "TabServer": "\u4f3a\u670d\u5668", "TabTranscoding": "\u8f49\u78bc\u4e2d", - "TitleAdvanced": "\u9032\u968e", "OptionRelease": "\u5b98\u65b9\u767c\u4f48", - "OptionBeta": "\u516c\u6e2c", - "OptionDev": "\u958b\u767c\uff08\u4e0d\u7a69\u5b9a\uff09", "LabelAllowServerAutoRestart": "\u5141\u8a31\u81ea\u52d5\u91cd\u65b0\u555f\u52d5\u4f86\u66f4\u65b0", "LabelAllowServerAutoRestartHelp": "\u53ea\u5728\u6c92\u6709\u6d3b\u8e8d\u7528\u6236\u548c\u7a7a\u6a94\u6642\u9593\u91cd\u65b0\u555f\u52d5\u3002", "LabelRunServerAtStartup": "\u555f\u52d5\u6642\u904b\u884c\u4f3a\u670d\u5668", @@ -330,11 +312,9 @@ "TabGames": "\u904a\u6232", "TabMusic": "\u97f3\u6a02", "TabOthers": "\u5176\u4ed6", - "HeaderExtractChapterImagesFor": "\u5f9e\u4ee5\u4e0b\u5a92\u9ad4\u63d0\u53d6\u7ae0\u7bc0\u622a\u5716\uff1a", "OptionMovies": "\u96fb\u5f71", "OptionEpisodes": "\u5287\u96c6", "OptionOtherVideos": "\u5176\u4ed6\u5f71\u50cf", - "TitleMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027", "LabelFanartApiKey": "\u500b\u4eba API \u9396\u5319\uff1a", "LabelFanartApiKeyHelp": "\u8acb\u6c42 fanart \u6642\u6c92\u6709\u500b\u4eba API \u9396\u5319\uff0c \u6279\u51c6\u6642\u9593\u5c07\u9700\u5c11\u65bc7\u5929\u3002\u5982\u679c\u60a8\u64c1\u6709\u500b\u4eba API \u9396\u5319\uff0c\u6279\u51c6\u6642\u9593\u6703\u6e1b\u5c11\u81f348\u5c0f\u6642\u3002\u5982\u679c\u60a8\u4e5f\u662f fanart VIP \u6703\u54e1\uff0c\u6279\u51c6\u6642\u9593\u6703\u518d\u6e1b\u5c11\u81f310\u5206\u9418\u3002", "ExtractChapterImagesHelp": "\u7ae0\u7bc0\u5716\u50cf\u63d0\u53d6\u5c07\u5141\u8a31\u5ba2\u6236\u7aef\u986f\u793a\u9078\u64c7\u5716\u5f62\u5834\u666f\u83dc\u55ae\u3002\u9019\u500b\u904e\u7a0b\u53ef\u80fd\u6703\u5f88\u6162\uff0c\u5f15\u81f4CPU\u8ca0\u8f09\uff0c\u4e26\u53ef\u80fd\u9700\u8981\u5e7eGB\u7684\u7a7a\u9593\u3002\u5b83\u904b\u884c\u6642\u5f71\u50cf\u6703\u88ab\u767c\u73fe\uff0c\u540c\u6642\u4e5f\u53ef\u4f5c\u70ba\u591c\u9593\u4efb\u52d9\u6642\u9593\u8868\u3002\u9019\u5728\u8a08\u5283\u4efb\u52d9\u5340\u57df\u8a2d\u7f6e\u3002\u9019\u4e0d\u5efa\u8b70\u5728\u9ad8\u5cf0\u4f7f\u7528\u6642\u9593\u904b\u884c\u3002", @@ -350,15 +330,15 @@ "TabCollections": "\u85cf\u54c1", "HeaderChannels": "\u983b\u9053", "TabRecordings": "\u9304\u5f71", - "TabScheduled": "\u9810\u5b9a", "TabSeries": "\u96fb\u8996\u5287", "TabFavorites": "\u6211\u7684\u6700\u53d7", "TabMyLibrary": "\u6211\u7684\u5a92\u9ad4\u5eab", "ButtonCancelRecording": "\u53d6\u6d88\u9304\u5f71", - "LabelPrePaddingMinutes": "\u6e96\u5099\u88dc\u5145(\u5206\u9418)\uff1a", - "LabelPostPaddingMinutes": "\u5f8c\u88dc\u5145(\u5206\u9418)\uff1a", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "\u6b63\u5728\u64ad\u653e\u7684\u7bc0\u76ee", - "TabStatus": "\u72c0\u6cc1", "TabSettings": "\u8a2d\u5b9a", "ButtonRefreshGuideData": "\u91cd\u65b0\u6574\u7406\u96fb\u8996\u6307\u5357\u8cc7\u6599", "ButtonRefresh": "\u91cd\u65b0\u6574\u7406", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "\u8a18\u9304\u6240\u6709\u983b\u9053", "OptionRecordAnytime": "\u6bcf\u4e00\u6b21\u8a18\u9304", "OptionRecordOnlyNewEpisodes": "\u53ea\u8a18\u9304\u6700\u65b0\u5287\u96c6", - "HeaderRepeatingOptions": "\u91cd\u64ad\u9078\u9805", "HeaderDays": "\u9304\u5f71\u65e5", "HeaderActiveRecordings": "\u6b63\u5728\u9304\u5f71\u7684\u7bc0\u76ee", "HeaderLatestRecordings": "\u6700\u8fd1\u9304\u5f71\u7684\u7bc0\u76ee", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u6700\u65b0\u904a\u6232", "HeaderRecentlyPlayedGames": "\u6700\u8fd1\u73a9\u904e\u7684\u904a\u6232", "TabGameSystems": "\u904a\u6232\u7cfb\u7d71", - "TitleMediaLibrary": "\u5a92\u9ad4\u5eab", "TabFolders": "\u6587\u4ef6\u593e", "TabPathSubstitution": "\u66ff\u63db\u8def\u5f91", "LabelSeasonZeroDisplayName": "\u9996\u5b63\u5287\u96c6\u7684\u986f\u793a\u540d\u7a31\uff1a", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "\u9664\u4e86\u5206\u62c6\u7248\u672c", "ButtonPlayTrailer": "\u9810\u544a\u7247", "LabelMissing": "\u7f3a\u5c11", - "LabelOffline": "\u96e2\u7dda", - "PathSubstitutionHelp": "\u66ff\u63db\u8def\u5f91\u66f4\u6539\u8def\u5f91\u8b93\u5ba2\u6236\u7aef\u80fd\u5920\u8a2a\u554f\u3002\u5141\u8a31\u5ba2\u6236\u7aef\u76f4\u63a5\u64ad\u653e\uff0c\u907f\u514d\u6d88\u8017\u8cc7\u6e90\u65bc\u4e32\u6d41\u548c\u8f49\u78bc\u3002", - "HeaderFrom": "\u7531", - "HeaderTo": "\u5230", - "LabelFrom": "\u7531\uff1a", - "LabelTo": "\u5230\uff1a", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "\u6dfb\u52a0\u66ff\u63db\u8def\u5f91", "OptionSpecialEpisode": "\u7279\u96c6", "OptionMissingEpisode": "\u7f3a\u5c11\u7684\u5287\u96c6", "OptionUnairedEpisode": "\u5c1a\u672a\u64ad\u653e\u7684\u5287\u96c6", "OptionEpisodeSortName": "\u5287\u96c6\u540d\u7a31\u6392\u5e8f", "OptionSeriesSortName": "\u96fb\u8996\u5287\u540d\u7a31", "OptionTvdbRating": "Tvdb \u8a55\u5206", - "EditCollectionItemsHelp": "\u6dfb\u52a0\u6216\u522a\u9664\u6b64\u6536\u85cf\u5eab\u7684\u4efb\u4f55\u96fb\u5f71\uff0c\u96fb\u8996\u5287\uff0c\u76f8\u7c3f\uff0c\u66f8\u7c4d\u6216\u904a\u6232\u3002", "HeaderAddTitles": "\u65b0\u589e\u6a19\u984c", "LabelEnableDlnaPlayTo": "\u555f\u7528\u64ad\u653e\u5230 DLNA \u8a2d\u5099", "LabelEnableDlnaPlayToHelp": "Emby \u53ef\u4ee5\u5728\u7db2\u7d61\u5167\u6aa2\u6e2c\u88dd\u7f6e\uff0c\u4e26\u63d0\u4f9b\u9060\u7a0b\u63a7\u5236\u5b83\u5011\u7684\u80fd\u529b\u3002", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "\u7cfb\u7d71\u914d\u7f6e", "CustomDlnaProfilesHelp": "\u70ba\u65b0\u7684\u8a2d\u5099\u5efa\u7acb\u81ea\u5b9a\u914d\u7f6e\u6216\u8986\u84cb\u539f\u6709\u7cfb\u7d71\u914d\u7f6e\u3002", "SystemDlnaProfilesHelp": "\u7cfb\u7d71\u914d\u7f6e\u6587\u4ef6\u662f\u552f\u8b80\u7684\u3002\u66f4\u6539\u7cfb\u7d71\u914d\u7f6e\u6587\u4ef6\u5c07\u88ab\u4fdd\u5b58\u5230\u4e00\u500b\u81ea\u5b9a\u65b0\u914d\u7f6e\u6587\u4ef6\u3002", - "TitleDashboard": "\u63a7\u5236\u53f0", "TabHome": "\u9996\u9801", "TabInfo": "\u8cc7\u8a0a", "HeaderLinks": "\u93c8\u7d50", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "\u5a92\u9ad4\u5982\u679c\u5728\u9019\u500b\u6642\u9593\u4e4b\u524d\u505c\u6b62\uff0c\u6703\u88ab\u8a8d\u5b9a\u70ba\u672a\u64ad\u653e\u3002", "LabelMaxResumePercentageHelp": "\u5a92\u9ad4\u5982\u679c\u5728\u9019\u500b\u6642\u9593\u4e4b\u5f8c\u505c\u6b62\uff0c\u6703\u88ab\u8a8d\u5b9a\u70ba\u5df2\u64ad\u653e\u3002", "LabelMinResumeDurationHelp": "\u5a92\u9ad4\u6bd4\u6b64\u66f4\u77ed\u5c07\u4e0d\u53ef\u6062\u5fa9\u64ad\u653e", - "TitleAutoOrganize": "\u81ea\u52d5\u6574\u7406", "TabActivityLog": "\u6d3b\u52d5\u65e5\u8a8c", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "\u81ea\u52d5\u6574\u7406\u6703\u76e3\u6e2c\u60a8\u7684\u4e0b\u8f09\u6587\u4ef6\u593e\u5167\u65b0\u6587\u4ef6\uff0c\u4e26\u5c07\u6703\u79fb\u52d5\u5230\u60a8\u7684\u5a92\u9ad4\u76ee\u9304\u3002", - "AutoOrganizeTvHelp": "\u96fb\u8996\u7bc0\u76ee\u6574\u7406\u53ea\u6703\u6dfb\u52a0\u6232\u96c6\u5230\u73fe\u6709\u7bc0\u76ee\u7cfb\u5217\u3002\u4e0d\u6703\u7522\u751f\u65b0\u5287\u96c6\u7cfb\u5217\u6587\u4ef6\u593e\u3002", "OptionEnableEpisodeOrganization": "\u555f\u7528\u65b0\u6232\u96c6\u6574\u7406", "LabelWatchFolder": "\u76e3\u8996\u6587\u4ef6\u593e\uff1a", "LabelWatchFolderHelp": "\u4f3a\u670d\u5668\u5c07\u5728\u201c\u65b0\u5a92\u9ad4\u6587\u4ef6\u6574\u7406\u201d\u4efb\u52d9\u6642\u67e5\u8a62\u8a72\u6587\u4ef6\u593e\u3002", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "\u904b\u884c\u4efb\u52d9", "HeaderActiveDevices": "\u751f\u6548\u88dd\u7f6e", "HeaderPendingInstallations": "\u7b49\u5f85\u5b89\u88dd", - "HeaderServerInformation": "\u4f3a\u670d\u5668\u8cc7\u8a0a", "ButtonRestartNow": "\u7acb\u523b\u91cd\u65b0\u555f\u52d5", "ButtonRestart": "\u91cd\u65b0\u555f\u52d5", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "\u9700\u8981\u91cd\u65b0\u555f\u52d5", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "\u6c92\u6709\u5b57\u5e55", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "\u85cf\u54c1", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "\u96fb\u8996\u5287\u540d\u7a31", "ValueSeriesNamePeriod": "\u96fb\u8996\u5287\u540d\u7a31", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "\u5b57\u5e55\u641c\u7d22", - "MessageNoSubtitleSearchResultsFound": "\u4e26\u672a\u6709\u641c\u7d22\u7d50\u679c", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "\u5982\u679c\u5141\u8a31\uff0c\u7576\u700f\u89bd\u5a92\u9ad4\u5eab\u6642\u5728\u80cc\u666f\u64ad\u653e\u4e3b\u984c\u66f2", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "\u81ea\u52d5", "OptionYes": "\u662f", "OptionNo": "\u5426", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "Get Emby Premiere", "MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.", "MessageNoCollectionsAvailable": "\u6536\u85cf\u5eab\u8b93\u60a8\u4eab\u53d7\u500b\u4eba\u5316\u5206\u7d44\u7684\u96fb\u5f71\u3001\u5287\u96c6\u3001\u76f8\u7c3f\u548c\u66f8\u7c4d\u3002\u6309\u4e0b \"+\" \u958b\u59cb\u5efa\u7acb\u6536\u85cf\u5eab", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "\u904a\u6232", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "\u85cf\u54c1", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "Live TV", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "\u6700\u8fd1\u904a\u6232", - "ViewTypeRecentlyPlayedGames": "\u6700\u8fd1\u64ad\u653e", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "\u904a\u6232\u7cfb\u7d71", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "\u96fb\u8996\u5287", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "\u6211\u7684\u6700\u611b\u96fb\u8996\u5287", - "ViewTypeTvFavoriteEpisodes": "\u6211\u7684\u6700\u611b\u5287\u96c6", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "\u85cf\u54c1", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "\u6b4c\u66f2", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "\u670d\u52d9", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "\u754c\u9762", "HeaderBrandingHelp": "\u9078\u64c7\u5916\u89c0\uff0c\u6eff\u8db3\u60a8\u548c\u5718\u9ad4\u7684\u8981\u6c42\u3002", "LabelLoginDisclaimer": "\u767b\u5165\u5b57\u53e5\uff1a", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "Sync", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "\u62d6\u653e\u5716\u50cf\u5230\u6b64", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "\u9996\u5b63", "LabelReport": "Report:", "OptionReportSongs": "\u6b4c\u66f2", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "\u5df2\u7d93\u70ba {0} \u4e0b\u8f09\u4e86\u5b57\u5e55", - "SubtitleDownloadFailureForItem": "\u70ba {0} \u4e0b\u8f09\u5b57\u5e55\u5931\u6557", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "\u6700\u8fd1\u52d5\u614b", "HeaderPeople": "\u4eba\u7269", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "\u5c1a\u672a\u64ad\u653e\u5287\u96c6\u5b63\u5ea6\uff1a", - "LabelAirsAfterSeason": "\u5df2\u64ad\u653e\u5287\u96c6\u5b63\u5ea6\uff1a", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "\u986f\u793a\u5287\u96c6\u5b63\u5ea6\u4e2d\u7684\u7279\u96c6", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "\u5f71\u7247", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "Skip", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "\u5141\u8a31\u5916\u7f6e\u5f71\u7247\u64ad\u653e\u5668", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "Setup TV Guide", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "\u5b57\u5e55", "HeaderVideos": "\u5f71\u7247", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "Settings saved.", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "\u7528\u6236", "Delete": "Delete", "Password": "Password", "DeleteImage": "Delete Image", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "\u8acb\u652f\u6301 Emby", "DeleteImageConfirmation": "Are you sure you wish to delete this image?", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "File not found.", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "\u6b61\u8fce\u4f86\u5230 Emby \u4f3a\u670d\u5668\u7cfb\u7d71\u6982\u89bd", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "\u5df2\u53d6\u6d88\u96fb\u8996\u5287", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "\u555f\u7528\u7ae0\u7bc0\u4e0b\u8f09\u5668\u7684\u512a\u5148\u6b21\u5e8f\uff0c\u6108\u4e0b\u6b21\u5e8f\u53ea\u6703\u7528\u4f86\u586b\u88dc\u7f3a\u5c11\u7684\u4fe1\u606f\u3002", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1562,7 +1417,6 @@ "LabelRunningOnPort": "\u904b\u884c\u65bc http \u9023\u63a5\u57e0 {0}.", "LabelRunningOnPorts": "\u904b\u884c\u65bc http \u9023\u63a5\u57e0 {0}, \u548c https \u9023\u63a5\u57e0 {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "\u73fe\u6642\u5b57\u5e55", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "Off", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "\u5e55\u5f8c\u73ed\u5e95", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "\u901a\u77e5", "HeaderSelectPlayer": "Select Player", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "\u67e5\u770b\u96fb\u8996\u5287\u9304\u5f71", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "\u96fb\u8996\u5287\uff1a", "HeaderSeason": "\u5287\u96c6\u5b63\u5ea6", "HeaderSeasonNumber": "\u5287\u96c6\u5b63\u5ea6\u6578\u76ee", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "\u5a92\u9ad4\u8def\u5f91", "LabelContentTypeValue": "\u5167\u5bb9\u985e\u578b\uff1a{0}", - "LabelPathSubstitutionHelp": "\u81ea\u9078\uff1a\u66f4\u6539\u8def\u5f91\u53ef\u4ee5\u8b93\u5141\u8a31\u76f4\u63a5\u64ad\u653e\u7684\u5ba2\u6236\u7aef\u9032\u884c\u9023\u63a5\u3002", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "\u67e5\u770b\u6700\u8fd1\u6dfb\u52a0\u7684\u5a92\u9ad4\uff0c\u4e0b\u96c6\u5287\u96c6\uff0c\u548c\u5176\u4ed6\u8cc7\u8a0a\u3002\u7da0\u8272\u5713\u5708\u6703\u63d0\u793a\u5c1a\u672a\u64ad\u653e\u7684\u9805\u76ee\u3002", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "\u9700\u8981\u5b89\u88dd\u66f8\u67b6\u985e\u63d2\u4ef6", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "\u5a92\u9ad4\u5eab", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "Manage Server", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "\u662f", "AddUser": "Add User", "ButtonNo": "\u5426", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/strings/zh-TW.json b/dashboard-ui/strings/zh-TW.json index 209f3b0ff8..418c0e2e6f 100644 --- a/dashboard-ui/strings/zh-TW.json +++ b/dashboard-ui/strings/zh-TW.json @@ -1,8 +1,6 @@ { - "LabelExit": "\u96e2\u958b", - "LabelApiDocumentation": "API\u8aaa\u660e\u6587\u4ef6", - "LabelBrowseLibrary": "\u700f\u89bd\u5a92\u9ad4\u6ac3", - "LabelConfigureServer": "Emby\u8a2d\u5b9a", + "OptionAutomaticallyGroupSeriesHelp": "If enabled, series that are spread across multiple folders within this library will be automatically merged into a single series.", + "OptionAutomaticallyGroupSeries": "Automatically merge series that are spread across multiple folders", "LabelPrevious": "\u4e0a\u4e00\u500b", "LabelFinish": "\u5b8c\u6210", "LabelNext": "\u4e0b\u4e00\u500b", @@ -14,25 +12,13 @@ "LabelYourFirstName": "\u4f60\u7684\u540d\u5b57\uff1a", "MoreUsersCanBeAddedLater": "\u5f80\u5f8c\u53ef\u4ee5\u5728\u63a7\u5236\u53f0\u5167\u6dfb\u52a0\u66f4\u591a\u7528\u6236\u3002", "UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.", - "LabelWindowsService": "Windows\u670d\u52d9", - "AWindowsServiceHasBeenInstalled": "Windows\u670d\u52d9\u5df2\u7d93\u5b89\u88dd\u5b8c\u7562\u3002", - "WindowsServiceIntro1": "Emby\u4f3a\u670d\u5668\u901a\u5e38\u4ee5\u4e00\u822c\u684c\u9762\u7a0b\u5f0f\u57f7\u884c\uff0c\u4e26\u6703\u5728\u7cfb\u7d71\u5217\u986f\u793a\u5716\u793a\u3002\u4e0d\u904e\uff0c\u5982\u679c\u60a8\u60f3\u8981\u8b93\u4f3a\u670d\u5668\u4ee5\u80cc\u666f\u670d\u52d9\u7684\u6a21\u5f0f\u57f7\u884c\u4e5f\u53ef\u4ee5\u3002", - "WindowsServiceIntro2": "\u8acb\u6ce8\u610f\uff0c\u5982\u679c\u662f\u4ee5\u80cc\u666f\u670d\u52d9\u7684\u6a21\u5f0f\u57f7\u884c\u4f3a\u670d\u5668\uff0c\u5c07\u4e0d\u80fd\u540c\u6642\u548c\u684c\u9762\u7a0b\u5f0f\u57f7\u884c\uff0c\u6240\u4ee5\u4f60\u5fc5\u9808\u5148\u95dc\u9589\u684c\u9762\u7a0b\u5f0f\u624d\u80fd\u57f7\u884c\u80cc\u666f\u670d\u52d9\u3002\u60a8\u4e5f\u6703\u9700\u8981\u4ee5\u7cfb\u7d71\u7ba1\u7406\u54e1\u7684\u6b0a\u9650\u4f86\u64cd\u4f5c\u670d\u52d9\u3002\u7576\u4f3a\u670d\u5668\u4ee5\u670d\u52d9\u7684\u6a21\u5f0f\u57f7\u884c\u6642\uff0c\u4e5f\u8acb\u78ba\u8a8d\u8a72\u670d\u52d9\u6240\u4f7f\u7528\u7684\u7cfb\u7d71\u4f7f\u7528\u8005\u5e33\u865f\u6709\u6b0a\u9650\u5b58\u53d6\u4f60\u5b58\u653e\u5a92\u9ad4\u7684\u8cc7\u6599\u593e\u3002", "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", "LabelConfigureSettings": "\u914d\u7f6e\u8a2d\u5b9a", - "LabelEnableAutomaticPortMapping": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u8f49\u767c", - "LabelEnableAutomaticPortMappingHelp": "UPnP\u5141\u8a31\u81ea\u52d5\u8def\u7531\u8a2d\u7f6e\uff0c\u53ef\u4ee5\u66f4\u65b9\u4fbf\u5730\u81ea\u9060\u7aef\u9023\u7dda\u5230\u4f3a\u670d\u5668\u3002\u53ef\u80fd\u4e0d\u9069\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u3002", "HeaderTermsOfService": "Emby\u670d\u52d9\u689d\u6b3e", "MessagePleaseAcceptTermsOfService": "\u8acb\u63a5\u53d7\u670d\u52d9\u689d\u6b3e\u53ca\u96b1\u79c1\u6b0a\u653f\u7b56\u4ee5\u7e7c\u7e8c", "OptionIAcceptTermsOfService": "\u6211\u63a5\u53d7\u670d\u52d9\u689d\u6b3e", "ButtonPrivacyPolicy": "\u96b1\u79c1\u6b0a\u653f\u7b56", "ButtonTermsOfService": "\u670d\u52d9\u689d\u6b3e", - "HeaderDeveloperOptions": "\u958b\u767c\u8005\u9078\u9805", - "OptionEnableWebClientResponseCache": "\u555f\u7528\u7db2\u9801\u56de\u61c9\u5feb\u53d6", - "OptionDisableForDevelopmentHelp": "Configure these as needed for web development purposes.", - "OptionEnableWebClientResourceMinification": "Enable web resource minification", - "LabelDashboardSourcePath": "Web client source path:", - "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.", "ButtonConvertMedia": "\u8f49\u6a94", "ButtonOrganize": "Organize", "HeaderSupporterBenefits": "Emby Premiere Benefits", @@ -40,11 +26,14 @@ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.", "LabelPinCode": "Pin code:", "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media", + "DeleteMedia": "Delete media", "HeaderSync": "\u540c\u6b65", "ButtonOk": "OK", "ButtonCancel": "\u53d6\u6d88", "ButtonExit": "Exit", "ButtonNew": "\u5efa\u7acb", + "OptionDev": "Dev", + "OptionBeta": "\u516c\u6e2c\u7248\u672c", "HeaderTaskTriggers": "Task Triggers", "HeaderTV": "TV", "HeaderAudio": "Audio", @@ -59,7 +48,6 @@ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code", "ButtonConfigurePinCode": "Configure pin code", "RegisterWithPayPal": "Register with PayPal", - "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial", "LabelSyncTempPath": "Temporary file path:", "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.", "LabelCustomCertificatePath": "Custom certificate path:", @@ -69,8 +57,6 @@ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.", "LabelEnterConnectUserName": "Username or email:", "LabelEnterConnectUserNameHelp": "\u9019\u662f\u60a8\u7684Emby\u5e33\u865f\u7684\u4f7f\u7528\u8005\u540d\u7a31\u6216\u96fb\u5b50\u90f5\u4ef6", - "LabelEnableEnhancedMovies": "Enable enhanced movie displays", - "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.", "HeaderSyncJobInfo": "Sync Job", "FolderTypeMixed": "Mixed content", "FolderTypeMovies": "Movies", @@ -84,7 +70,6 @@ "LabelContentType": "Content type:", "TitleScheduledTasks": "Scheduled Tasks", "HeaderSetupLibrary": "Setup your media libraries", - "ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e", "LabelFolderType": "\u5a92\u9ad4\u6587\u4ef6\u593e\u985e\u578b\uff1a", "LabelCountry": "\u570b\u5bb6\uff1a", "LabelLanguage": "\u8a9e\u8a00\uff1a", @@ -94,7 +79,6 @@ "LabelSaveLocalMetadataHelp": "\u76f4\u63a5\u4fdd\u5b58\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5230\u5a92\u9ad4\u6240\u5728\u7684\u6587\u4ef6\u593e\u80fd\u4f7f\u7de8\u8f2f\u5de5\u4f5c\u66f4\u5bb9\u6613\u3002", "LabelDownloadInternetMetadata": "\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599", "LabelDownloadInternetMetadataHelp": "Emby Server can download information about your media to enable rich presentations.", - "TabPreferences": "\u504f\u597d", "TabPassword": "\u5bc6\u78bc", "TabLibraryAccess": "\u5a92\u9ad4\u5eab\u700f\u89bd\u6b0a\u9650", "TabAccess": "Access", @@ -110,8 +94,11 @@ "OptionEnableAccessToAllLibraries": "Enable access to all libraries", "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.", "LabelDisplayMissingEpisodesWithinSeasons": "\u986f\u793a\u7bc0\u76ee\u5b63\u5ea6\u5167\u7f3a\u5c11\u7684\u55ae\u5143", + "LabelDisplayMissingEpisodesWithinSeasonsHelp": "This must also be enabled for TV libraries in Emby Server setup.", "LabelUnairedMissingEpisodesWithinSeasons": "\u5728\u7bc0\u76ee\u5b63\u5ea6\u5167\u986f\u793a\u9084\u672a\u767c\u4f48\u7684\u55ae\u5143", + "ImportMissingEpisodesHelp": "If enabled, information about missing episodes will be imported into your Emby database and displayed within seasons and series. This may cause significantly longer library scans.", "HeaderVideoPlaybackSettings": "\u8996\u983b\u56de\u653e\u8a2d\u7f6e", + "OptionDownloadInternetMetadataTvPrograms": "Download internet metadata for programs listed in the guide", "HeaderPlaybackSettings": "Playback Settings", "LabelAudioLanguagePreference": "\u97f3\u983b\u8a9e\u8a00\u504f\u597d\u9078\u9805\uff1a", "LabelSubtitleLanguagePreference": "\u5b57\u5e55\u8a9e\u8a00\u504f\u597d\u9078\u9805\uff1a", @@ -145,14 +132,14 @@ "ImageUploadAspectRatioHelp": "\u63a8\u85a6\u4f7f\u67091:1\u5bec\u9ad8\u6bd4\u4f8b\u7684\u5716\u50cf\u3002\u53ea\u5141\u8a31JPG\/PNG\u683c\u5f0f", "MessageNothingHere": "\u9019\u88e1\u6c92\u6709\u4ec0\u9ebc\u3002", "MessagePleaseEnsureInternetMetadata": "\u8acb\u78ba\u4fdd\u5df2\u555f\u7528\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u8cc7\u6599\u3002", - "TabSuggested": "\u5efa\u8b70", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "TabSuggestions": "\u63a8\u85a6\u5167\u5bb9", "TabLatest": "\u6700\u65b0", "TabUpcoming": "\u63a5\u4e0b\u4f86", "TabShows": "\u7bc0\u76ee", "TabEpisodes": "\u55ae\u5143", "TabGenres": "\u985e\u578b", - "TabPeople": "\u4eba\u7269", "TabNetworks": "\u7db2\u7d61", "HeaderUsers": "\u4f7f\u7528\u8005", "HeaderFilters": "Filters", @@ -166,6 +153,7 @@ "OptionWriters": "\u4f5c\u8005", "OptionProducers": "\u5236\u7247\u4eba", "HeaderResume": "Resume", + "HeaderContinueWatching": "Continue Watching", "HeaderNextUp": "\u4e0b\u4e00\u96c6", "NoNextUpItemsMessage": "\u6c92\u6709\u627e\u5230\u3002\u958b\u59cb\u770b\u4f60\u7684\u7bc0\u76ee\uff01", "HeaderLatestEpisodes": "\u6700\u65b0\u7bc0\u76ee\u55ae\u5143", @@ -185,6 +173,7 @@ "OptionPlayCount": "\u64ad\u653e\u6b21\u6578", "OptionDatePlayed": "\u64ad\u653e\u65e5\u671f", "OptionDateAdded": "\u6dfb\u52a0\u65e5\u671f", + "DateAddedValue": "Date added: {0}", "OptionAlbumArtist": "\u5c08\u8f2f\u6b4c\u624b", "OptionArtist": "\u6b4c\u624b", "OptionAlbum": "\u5c08\u8f2f", @@ -205,7 +194,6 @@ "OptionVideoBitrate": "\u8996\u983b\u6bd4\u7279\u7387", "OptionResumable": "\u53ef\u6062\u5fa9", "ScheduledTasksHelp": "\u55ae\u64ca\u4e00\u500b\u4efb\u52d9\u4f86\u8abf\u6574\u5b83\u7684\u904b\u884c\u6642\u9593\u8868\u3002", - "ScheduledTasksTitle": "Scheduled Tasks", "TabMyPlugins": "\u6211\u7684\u63d2\u4ef6", "TabCatalog": "\u76ee\u9304", "TitlePlugins": "Plugins", @@ -215,7 +203,6 @@ "HeaderLatestSongs": "\u6700\u65b0\u6b4c\u66f2", "HeaderRecentlyPlayed": "\u6700\u8fd1\u64ad\u653e", "HeaderFrequentlyPlayed": "\u7d93\u5e38\u64ad\u653e", - "DevBuildWarning": "\u958b\u767c\u7248\u672c\u662f\u6700\u524d\u6cbf\u7684\u3002\u7d93\u5e38\u767c\u4f48\uff0c\u4f46\u9019\u4e9b\u7248\u672c\u5c1a\u672a\u7d93\u904e\u6e2c\u8a66\u3002\u7a0b\u5f0f\u53ef\u80fd\u6703\u5d29\u6f70\uff0c\u6240\u6709\u529f\u80fd\u53ef\u80fd\u7121\u6cd5\u6b63\u5e38\u5de5\u4f5c\u3002", "LabelVideoType": "\u8996\u983b\u985e\u578b\uff1a", "OptionBluray": "\u85cd\u5149", "OptionDvd": "DVD", @@ -277,7 +264,6 @@ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.", "OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236", "OptionDisableUserHelp": "\u88ab\u7981\u7528\u7684\u7528\u6236\u5c07\u4e0d\u5141\u8a31\u9023\u63a5\u4f3a\u670d\u5668\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002", - "HeaderAdvancedControl": "\u9ad8\u7d1a\u63a7\u5236", "LabelName": "\u540d\u5b57\uff1a", "ButtonHelp": "Help", "OptionAllowUserToManageServer": "\u5141\u8a31\u9019\u7528\u6236\u7ba1\u7406\u4f3a\u670d\u5668", @@ -291,7 +277,6 @@ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.", "OptionAllowLinkSharing": "Allow social media sharing", "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire after {0} days.", - "HeaderSharing": "Sharing", "HeaderRemoteControl": "Remote Control", "OptionMissingTmdbId": "\u7f3a\u5c11TMDB\u7de8\u865f", "OptionIsHD": "\u9ad8\u6e05", @@ -306,10 +291,7 @@ "TabPaths": "\u8def\u5f91", "TabServer": "\u4f3a\u670d\u5668", "TabTranscoding": "\u8f49\u78bc\u4e2d", - "TitleAdvanced": "\u9032\u968e", "OptionRelease": "Official Release", - "OptionBeta": "\u516c\u6e2c\u7248\u672c", - "OptionDev": "Dev", "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", "LabelRunServerAtStartup": "\u5728\u7cfb\u7d71\u555f\u52d5\u6642\u904b\u884c\u4f3a\u670d\u5668", @@ -330,11 +312,9 @@ "TabGames": "\u904a\u6232", "TabMusic": "\u97f3\u6a02", "TabOthers": "\u5176\u4ed6", - "HeaderExtractChapterImagesFor": "\u5f9e\u4ee5\u4e0b\u5a92\u9ad4\u63d0\u53d6\u7ae0\u7bc0\u622a\u5716\uff1a", "OptionMovies": "Movies", "OptionEpisodes": "Episodes", "OptionOtherVideos": "\u5176\u4ed6\u8996\u983b", - "TitleMetadata": "Metadata", "LabelFanartApiKey": "Personal api key:", "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return images that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.", "ExtractChapterImagesHelp": "Extracting chapter images will allow Emby apps to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.", @@ -350,15 +330,15 @@ "TabCollections": "Collections", "HeaderChannels": "\u983b\u9053", "TabRecordings": "\u9304\u5f71", - "TabScheduled": "\u9810\u5b9a", "TabSeries": "\u96fb\u8996\u5287", "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "\u53d6\u6d88\u9304\u5f71", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", + "MinutesBefore": "minutes before", + "MinutesAfter": "minutes after", "HeaderWhatsOnTV": "\u6b63\u5728\u64ad\u653e\u7684\u96fb\u8996\u7bc0\u76ee", - "TabStatus": "Status", "TabSettings": "\u8a2d\u5b9a", "ButtonRefreshGuideData": "\u66f4\u65b0\u96fb\u8996\u7bc0\u76ee\u8868", "ButtonRefresh": "\u91cd\u65b0\u6574\u7406", @@ -366,7 +346,6 @@ "OptionRecordOnAllChannels": "Record on all channels", "OptionRecordAnytime": "Record at any time", "OptionRecordOnlyNewEpisodes": "\u53ea\u9304\u88fd\u65b0\u7684\u96c6\u6578", - "HeaderRepeatingOptions": "Repeating Options", "HeaderDays": "\u9304\u5f71\u65e5", "HeaderActiveRecordings": "\u6b63\u5728\u9304\u5f71\u7684\u7bc0\u76ee", "HeaderLatestRecordings": "\u6700\u65b0\u9304\u5f71\u7684\u7bc0\u76ee", @@ -418,7 +397,6 @@ "HeaderLatestGames": "\u6700\u65b0\u7684\u904a\u6232", "HeaderRecentlyPlayedGames": "\u6700\u8fd1\u73a9\u904e\u7684\u904a\u6232", "TabGameSystems": "\u904a\u6232\u7cfb\u7d71", - "TitleMediaLibrary": "\u5a92\u9ad4\u6ac3", "TabFolders": "\u6587\u4ef6\u593e", "TabPathSubstitution": "\u66ff\u4ee3\u8def\u5f91", "LabelSeasonZeroDisplayName": "\u7b2c0\u5b63\u986f\u793a\u540d\u7a31\uff1a", @@ -444,21 +422,12 @@ "ButtonSplitVersionsApart": "Split Versions Apart", "ButtonPlayTrailer": "Trailer", "LabelMissing": "\u7f3a\u5c11", - "LabelOffline": "\u96e2\u7dda", - "PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that Emby apps are able to access. By allowing Emby apps direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.", - "HeaderFrom": "\u7531", - "HeaderTo": "\u5230", - "LabelFrom": "\u7531\uff1a", - "LabelTo": "\u5230\uff1a", - "LabelToHelp": "Example: \\\\MyServer\\Movies (a path that can be accessed by Emby apps)", - "ButtonAddPathSubstitution": "\u6dfb\u52a0\u66ff\u63db\u8def\u5f91", "OptionSpecialEpisode": "\u7279\u96c6", "OptionMissingEpisode": "\u7f3a\u5c11\u4e86\u7684\u55ae\u5143", "OptionUnairedEpisode": "\u9084\u672a\u767c\u4f48\u7684\u55ae\u5143", "OptionEpisodeSortName": "\u55ae\u5143\u6392\u5e8f\u540d\u7a31", "OptionSeriesSortName": "\u96fb\u8996\u5287\u540d\u7a31", "OptionTvdbRating": "Tvdb\u8a55\u5206", - "EditCollectionItemsHelp": "\u6dfb\u52a0\u6216\u522a\u9664\u9019\u5408\u96c6\u4e2d\u7684\u4efb\u4f55\u96fb\u5f71\uff0c\u96fb\u8996\u5287\uff0c\u76f8\u518a\uff0c\u66f8\u7c4d\u6216\u904a\u6232\u3002", "HeaderAddTitles": "\u6dfb\u52a0\u6a19\u984c", "LabelEnableDlnaPlayTo": "\u64ad\u653e\u5230DLNA\u8a2d\u5099", "LabelEnableDlnaPlayToHelp": "Emby can detect devices within your network and offer the ability to remote control them.", @@ -470,7 +439,6 @@ "HeaderSystemDlnaProfiles": "\u7cfb\u7d71\u914d\u7f6e", "CustomDlnaProfilesHelp": "\u70ba\u65b0\u7684\u8a2d\u5099\u5275\u5efa\u81ea\u5b9a\u7fa9\u914d\u7f6e\u6216\u8986\u84cb\u539f\u6709\u7cfb\u7d71\u914d\u7f6e\u3002", "SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.", - "TitleDashboard": "\u63a7\u5236\u53f0", "TabHome": "\u9996\u9801", "TabInfo": "\u8cc7\u8a0a", "HeaderLinks": "\u93c8\u63a5", @@ -507,7 +475,6 @@ "LabelMinResumePercentageHelp": "\u5a92\u9ad4\u5982\u679c\u5728\u9019\u500b\u6642\u9593\u4e4b\u524d\u505c\u6b62\uff0c\u6703\u88ab\u5b9a\u70ba\u672a\u64ad\u653e\u3002", "LabelMaxResumePercentageHelp": "\u5a92\u9ad4\u5982\u679c\u5728\u9019\u500b\u6642\u9593\u4e4b\u5f8c\u505c\u6b62\uff0c\u6703\u88ab\u5b9a\u70ba\u5df2\u64ad\u653e\u3002", "LabelMinResumeDurationHelp": "\u5a92\u9ad4\u6bd4\u9019\u66f4\u77ed\u4e0d\u53ef\u6062\u5fa9\u64ad\u653e", - "TitleAutoOrganize": "Auto-Organize", "TabActivityLog": "Activity Log", "TabSmartMatches": "Smart Matches", "TabSmartMatchInfo": "Manage your smart matches that were added using the Auto-Organize correction dialog", @@ -531,7 +498,6 @@ "HeaderSupportTheTeamHelp": "Help ensure the continued development of this project by purchasing Emby Premiere. A portion of all income will be contributed to other free tools we depend on.", "DonationNextStep": "Once complete, please return and enter your Emby Premiere key, which you will receive by email.", "AutoOrganizeHelp": "Auto-organize monitors your download folders for new files and moves them to your media directories.", - "AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.", "OptionEnableEpisodeOrganization": "Enable new episode organization", "LabelWatchFolder": "Watch folder:", "LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.", @@ -559,7 +525,6 @@ "HeaderRunningTasks": "Running Tasks", "HeaderActiveDevices": "Active Devices", "HeaderPendingInstallations": "Pending Installations", - "HeaderServerInformation": "Server Information", "ButtonRestartNow": "Restart Now", "ButtonRestart": "Restart", "ButtonShutdown": "Shutdown", @@ -588,7 +553,6 @@ "MessageInvalidKey": "Emby Premiere key is missing or invalid.", "ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also have an active Emby Premiere subscription.", "HeaderDisplaySettings": "Display Settings", - "TabPlayTo": "Play To", "LabelEnableDlnaServer": "Enable Dlna server", "LabelEnableDlnaServerHelp": "Allows UPnP devices on your network to browse and play Emby content.", "LabelEnableBlastAliveMessages": "Blast alive messages", @@ -597,31 +561,11 @@ "LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.", "LabelDefaultUser": "Default user:", "LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.", - "TitleDlna": "DLNA", "HeaderServerSettings": "Server Settings", "HeaderRequireManualLogin": "Require manual username entry for:", "HeaderRequireManualLoginHelp": "When disabled, Emby apps may present a login screen with a visual selection of users.", "OptionOtherApps": "Other apps", "OptionMobileApps": "Mobile apps", - "HeaderNotificationList": "Click on a notification to configure sending options.", - "NotificationOptionApplicationUpdateAvailable": "Application update available", - "NotificationOptionApplicationUpdateInstalled": "Application update installed", - "NotificationOptionPluginUpdateInstalled": "Plugin update installed", - "NotificationOptionPluginInstalled": "Plugin installed", - "NotificationOptionPluginUninstalled": "Plugin uninstalled", - "NotificationOptionVideoPlayback": "Video playback started", - "NotificationOptionAudioPlayback": "Audio playback started", - "NotificationOptionGamePlayback": "Game playback started", - "NotificationOptionVideoPlaybackStopped": "Video playback stopped", - "NotificationOptionAudioPlaybackStopped": "Audio playback stopped", - "NotificationOptionGamePlaybackStopped": "Game playback stopped", - "NotificationOptionTaskFailed": "Scheduled task failure", - "NotificationOptionInstallationFailed": "Installation failure", - "NotificationOptionNewLibraryContent": "New content added", - "NotificationOptionCameraImageUploaded": "Camera image uploaded", - "NotificationOptionUserLockedOut": "User locked out", - "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.", - "NotificationOptionServerRestartRequired": "Server restart required", "LabelNotificationEnabled": "Enable this notification", "LabelMonitorUsers": "Monitor activity from:", "LabelSendNotificationToUsers": "Send the notification to:", @@ -662,12 +606,10 @@ "ButtonPrevious": "Previous", "LabelGroupMoviesIntoCollections": "Group movies into collections", "LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.", - "NotificationOptionPluginError": "Plugin failure", "ButtonVolumeUp": "Volume up", "ButtonVolumeDown": "Volume down", "HeaderLatestMedia": "Latest Media", "OptionNoSubtitles": "No Subtitles", - "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", @@ -772,7 +714,6 @@ "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", - "PluginTabAppTheater": "Emby Theater", "LabelEpisodeNamePlain": "Episode name", "LabelSeriesNamePlain": "Series name", "ValueSeriesNamePeriod": "Series.name", @@ -784,8 +725,6 @@ "LabelEndingEpisodeNumberPlain": "Ending episode number", "HeaderTypeText": "Enter Text", "LabelTypeText": "Text", - "HeaderSearchForSubtitles": "Search for Subtitles", - "MessageNoSubtitleSearchResultsFound": "No search results founds.", "TabDisplay": "Display", "TabLanguages": "Languages", "TabAppSettings": "App Settings", @@ -794,7 +733,6 @@ "LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.", "LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.", "HeaderHomePage": "Home Page", - "HeaderSettingsForThisDevice": "Settings for This Device", "OptionAuto": "Auto", "OptionYes": "Yes", "OptionNo": "No", @@ -803,7 +741,6 @@ "LabelHomePageSection2": "Home page section 2:", "LabelHomePageSection3": "Home page section 3:", "LabelHomePageSection4": "Home page section 4:", - "OptionMyMediaButtons": "My media (buttons)", "OptionMyMedia": "My media", "OptionMyMediaSmall": "My media (small)", "OptionResumablemedia": "Resume", @@ -815,53 +752,21 @@ "HeaderReports": "Reports", "HeaderSettings": "Settings", "OptionDefaultSort": "Default", - "OptionCommunityMostWatchedSort": "Most Watched", "TabNextUp": "Next Up", - "PlaceholderUsername": "Username", "HeaderBecomeProjectSupporter": "\u7acb\u5373\u53d6\u5f97", "MessageNoMovieSuggestionsAvailable": "\u76ee\u524d\u4e26\u6c92\u6709\u63a8\u85a6\u7684\u96fb\u5f71\u3002\u958b\u59cb\u89c0\u770b\u4e26\u5c0d\u60a8\u7684\u96fb\u5f71\u8a55\u5206\u5f8c\uff0c\u6211\u5011\u5c31\u6703\u70ba\u60a8\u63a8\u85a6\u60a8\u53ef\u80fd\u6703\u559c\u6b61\u7684\u5167\u5bb9\u3002", "MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.", "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.", "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.", - "ButtonDismiss": "Dismiss", "ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.", "LabelChannelStreamQuality": "Preferred internet channel quality:", "LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.", "OptionBestAvailableStreamQuality": "Best available", "ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.", - "ViewTypePlaylists": "Playlists", "ViewTypeMovies": "Movies", "ViewTypeTvShows": "TV", "ViewTypeGames": "Games", "ViewTypeMusic": "Music", - "ViewTypeMusicGenres": "Genres", - "ViewTypeMusicArtists": "Artists", - "ViewTypeBoxSets": "Collections", - "ViewTypeChannels": "Channels", - "ViewTypeLiveTV": "\u96fb\u8996", - "ViewTypeLiveTvNowPlaying": "Now Airing", - "ViewTypeLatestGames": "Latest Games", - "ViewTypeRecentlyPlayedGames": "Recently Played", - "ViewTypeGameFavorites": "Favorites", - "ViewTypeGameSystems": "Game Systems", - "ViewTypeGameGenres": "Genres", - "ViewTypeTvResume": "Resume", - "ViewTypeTvNextUp": "Next Up", - "ViewTypeTvLatest": "Latest", - "ViewTypeTvShowSeries": "Series", - "ViewTypeTvGenres": "Genres", - "ViewTypeTvFavoriteSeries": "Favorite Series", - "ViewTypeTvFavoriteEpisodes": "Favorite Episodes", - "ViewTypeMovieResume": "Resume", - "ViewTypeMovieLatest": "Latest", - "ViewTypeMovieMovies": "Movies", - "ViewTypeMovieCollections": "Collections", - "ViewTypeMovieFavorites": "Favorites", - "ViewTypeMovieGenres": "Genres", - "ViewTypeMusicLatest": "Latest", - "ViewTypeMusicPlaylists": "Playlists", - "ViewTypeMusicAlbums": "Albums", - "ViewTypeMusicAlbumArtists": "Album Artists", "HeaderOtherDisplaySettings": "Display Settings", "ViewTypeMusicSongs": "Songs", "ViewTypeMusicFavorites": "Favorites", @@ -896,7 +801,6 @@ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.", "TabServices": "Services", "TabLogs": "Logs", - "HeaderServerLogFiles": "Server log files:", "TabBranding": "Branding", "HeaderBrandingHelp": "Customize the appearance of Emby to fit the needs of your group or organization.", "LabelLoginDisclaimer": "Login disclaimer:", @@ -917,7 +821,6 @@ "HeaderDevice": "Device", "HeaderUser": "User", "HeaderDateIssued": "Date Issued", - "LabelChapterName": "Chapter {0}", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -926,7 +829,6 @@ "OptionRegex": "Regex", "OptionSubstring": "Substring", "TabView": "View", - "TabSort": "Sort", "TabFilter": "Filter", "ButtonView": "View", "LabelPageSize": "Item limit:", @@ -945,8 +847,6 @@ "OptionProtocolHttp": "Http", "OptionProtocolHls": "Http Live Streaming", "LabelContext": "Context:", - "OptionContextStreaming": "Streaming", - "OptionContextStatic": "\u540c\u6b65", "TabPlaylists": "Playlists", "ButtonClose": "Close", "LabelAllLanguages": "All languages", @@ -956,7 +856,6 @@ "LabelImage": "Image:", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", - "HeaderScreenshots": "Screenshots", "HeaderAddUpdateImage": "Add\/Update Image", "LabelDropImageHere": "Drop image here", "LabelJpgPngOnly": "JPG\/PNG only", @@ -973,7 +872,6 @@ "OptionLocked": "Locked", "OptionUnidentified": "Unidentified", "OptionMissingParentalRating": "Missing parental rating", - "OptionStub": "Stub", "OptionSeason0": "Season 0", "LabelReport": "Report:", "OptionReportSongs": "Songs", @@ -991,34 +889,21 @@ "OptionReportAlbums": "Albums", "ButtonMore": "More", "HeaderActivity": "Activity", - "ScheduledTaskStartedWithName": "{0} started", - "ScheduledTaskCancelledWithName": "{0} was cancelled", - "ScheduledTaskCompletedWithName": "{0} completed", - "ScheduledTaskFailed": "Scheduled task completed", "PluginInstalledWithName": "{0} was installed", "PluginUpdatedWithName": "{0} was updated", "PluginUninstalledWithName": "{0} was uninstalled", - "ScheduledTaskFailedWithName": "{0} failed", - "DeviceOnlineWithName": "{0} is connected", "UserOnlineFromDevice": "{0} is online from {1}", - "DeviceOfflineWithName": "{0} has disconnected", "UserOfflineFromDevice": "{0} has disconnected from {1}", - "SubtitlesDownloadedForItem": "Subtitles downloaded for {0}", - "SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}", "LabelRunningTimeValue": "Running time: {0}", "LabelIpAddressValue": "Ip address: {0}", "UserLockedOutWithName": "User {0} has been locked out", "UserConfigurationUpdatedWithName": "User configuration has been updated for {0}", "UserCreatedWithName": "User {0} has been created", - "UserPasswordChangedWithName": "Password has been changed for user {0}", "UserDeletedWithName": "User {0} has been deleted", "MessageServerConfigurationUpdated": "Server configuration has been updated", "MessageNamedServerConfigurationUpdatedWithValue": "Server configuration section {0} has been updated", "MessageApplicationUpdated": "Emby Server has been updated", "UserDownloadingItemWithValues": "{0} is downloading {1}", - "UserStartedPlayingItemWithValues": "{0} has started playing {1}", - "UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}", - "AppDeviceValues": "App: {0}, Device: {1}", "ProviderValue": "Provider: {0}", "HeaderRecentActivity": "Recent Activity", "HeaderPeople": "People", @@ -1051,27 +936,18 @@ "LabelAirDate": "Air days:", "LabelAirTime:": "Air time:", "LabelRuntimeMinutes": "Run time (minutes):", - "LabelRevenue": "Revenue ($):", - "HeaderAlternateEpisodeNumbers": "Alternate Episode Numbers", "HeaderSpecialEpisodeInfo": "Special Episode Info", - "HeaderExternalIds": "External Id's:", - "LabelAirsBeforeSeason": "Airs before season:", - "LabelAirsAfterSeason": "Airs after season:", - "LabelAirsBeforeEpisode": "Airs before episode:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", - "HeaderCountries": "Countries", "HeaderGenres": "Genres", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", - "MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.", "OptionNoTrailer": "No Trailer", "ButtonPurchase": "Purchase", "OptionActor": "Actor", "OptionComposer": "Composer", "OptionDirector": "Director", "OptionProducer": "Producer", - "OptionWriter": "Writer", "LabelAirDays": "Air days:", "LabelAirTime": "Air time:", "HeaderMediaInfo": "Media Info", @@ -1160,7 +1036,6 @@ "TabParentalControl": "Parental Control", "HeaderAccessSchedule": "Access Schedule", "HeaderAccessScheduleHelp": "Create an access schedule to limit access to certain hours.", - "ButtonAddSchedule": "Add Schedule", "LabelAccessDay": "Day of week:", "LabelAccessStart": "Start time:", "LabelAccessEnd": "End time:", @@ -1212,7 +1087,6 @@ "TabSyncJobs": "Sync Jobs", "HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled", "MessageReenableUser": "See below to reenable", - "LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:", "OptionTVMovies": "TV Movies", "HeaderUpcomingMovies": "Upcoming Movies", "HeaderUpcomingSports": "Upcoming Sports", @@ -1237,7 +1111,6 @@ "HeaderPlaylists": "Playlists", "HeaderViewStyles": "View Styles", "TabPhotos": "Photos", - "TabVideos": "Videos", "HeaderWelcomeToEmby": "Welcome to Emby", "EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.", "ButtonSkip": "\u8df3\u904e", @@ -1257,7 +1130,6 @@ "HeaderColumns": "Columns", "ButtonReset": "Reset", "OptionEnableExternalVideoPlayers": "Enable external video players", - "ButtonUnlockGuide": "Unlock Guide", "LabelEnableFullScreen": "Enable fullscreen mode", "LabelEmail": "Email:", "LabelUsername": "Username:", @@ -1272,7 +1144,6 @@ "HeaderOverview": "Overview", "HeaderShortOverview": "Short Overview", "HeaderType": "Type", - "HeaderSeverity": "Severity", "OptionReportActivities": "Activities Log", "HeaderTunerDevices": "Tuner Devices", "HeaderAddDevice": "Add Device", @@ -1291,7 +1162,6 @@ "ButtonRepeat": "Repeat", "LabelEnableThisTuner": "Enable this tuner", "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.", - "HeaderUnidentified": "Unidentified", "HeaderImagePrimary": "Primary", "HeaderImageBackdrop": "Backdrop", "HeaderImageLogo": "Logo", @@ -1315,7 +1185,7 @@ "HeaderSetupTVGuide": "\u96fb\u8996\u8a2d\u5b9a\u6307\u5357", "LabelDataProvider": "Data provider:", "OptionSendRecordingsToAutoOrganize": "Automatically organize recordings into existing series folders in other libraries", - "HeaderDefaultPadding": "Default Padding", + "HeaderDefaultRecordingSettings": "Default Recording Settings", "OptionEnableRecordingSubfolders": "Create sub-folders for categories such as Sports, Kids, etc.", "HeaderSubtitles": "Subtitles", "HeaderVideos": "Videos", @@ -1331,24 +1201,21 @@ "HeadersFolders": "Folders", "LabelDisplayName": "Display name:", "HeaderNewRecording": "New Recording", - "ButtonAdvanced": "Advanced", "LabelCodecIntrosPath": "Codec intros path:", "LabelCodecIntrosPathHelp": "A folder containing video files. If an intro video file name matches the video codec, audio codec, audio profile, or a tag, then it will be played prior to the main feature.", "OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format", "OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 or MKV for easy playback on your devices.", "FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.", "FileExtension": "File extension", - "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download images in advance", "SettingsSaved": "\u8a2d\u7f6e\u5df2\u4fdd\u5b58\u3002", - "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "OptionDownloadImagesInAdvanceHelp": "By default, most images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported. This may cause significantly longer library scans.", "Users": "\u4f7f\u7528\u8005", "Delete": "\u522a\u9664", "Password": "\u5bc6\u78bc", "DeleteImage": "\u522a\u9664\u5716\u50cf", "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", "DeleteImageConfirmation": "\u4f60\u78ba\u5b9a\u8981\u522a\u9664\u9019\u5f35\u5716\u50cf\uff1f", "FileReadCancelled": "The file read has been canceled.", "FileNotFound": "\u672a\u627e\u5230\u6a94\u6848\u3002", @@ -1386,13 +1253,9 @@ "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", "LabelFromHelp": "Example: {0} (on the server)", "HeaderMyMedia": "My Media", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", "ValueTimeLimitSingleHour": "Time limit: 1 hour", "ValueTimeLimitMultiHour": "Time limit: {0} hours", "PluginCategoryGeneral": "General", @@ -1429,7 +1292,6 @@ "ButtonScheduledTasks": "Scheduled tasks", "MessageItemsAdded": "Items added", "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, click Scheduled Tasks.", "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", "HeaderWelcomeToProjectWebClient": "Welcome to Emby", @@ -1471,7 +1333,6 @@ "LabelDisabled": "Disabled", "ButtonMoreInformation": "More Information", "LabelNoUnreadNotifications": "No unread notifications.", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", "MessageInvalidUser": "Invalid username or password. Please try again.", "HeaderLoginFailure": "Login Failure", "RecommendationBecauseYouLike": "Because you like {0}", @@ -1483,8 +1344,6 @@ "MessageRecordingCancelled": "Recording cancelled.", "MessageRecordingScheduled": "Recording scheduled.", "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", "MessageRecordingSaved": "Recording saved.", "OptionWeekend": "Weekends", @@ -1519,10 +1378,6 @@ "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", "HeaderFavoriteAlbums": "Favorite Albums", "HeaderLatestChannelMedia": "Latest Channel Items", "ButtonOrganizeFile": "Organize File", @@ -1557,12 +1412,11 @@ "LabelPlayMethodDirectPlay": "Direct Playing", "LabelAudioCodec": "Audio: {0}", "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "In-Home access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelLocalAccessUrl": "In-Home (LAN) access: {0}", + "LabelRemoteAccessUrl": "Remote (WAN) access: {0}", "LabelRunningOnPort": "Running on http port {0}.", "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", "HeaderLatestFromChannel": "Latest from {0}", - "HeaderCurrentSubtitles": "Current Subtitles", "ButtonRemoteControl": "Remote Control", "HeaderLatestTvRecordings": "Latest Recordings", "LabelCurrentPath": "Current path:", @@ -1617,7 +1471,6 @@ "HeaderDeleteItem": "Delete Item", "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", "MessageItemSaved": "Item saved.", "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", "OptionOff": "\u95dc\u9589", @@ -1630,7 +1483,6 @@ "MissingBackdropImage": "Missing backdrop image.", "MissingLogoImage": "Missing logo image.", "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", "OptionBackdrops": "Backdrops", "OptionImages": "Images", "OptionKeywords": "Keywords", @@ -1642,10 +1494,6 @@ "OptionPeople": "People", "OptionProductionLocations": "Production Locations", "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "AttributeNew": "New", - "AttributePremiere": "Premiere", - "AttributeLive": "Live", "HeaderChangeFolderType": "Change Content Type", "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", "HeaderAlert": "Alert", @@ -1663,7 +1511,6 @@ "ButtonQuality": "Quality", "HeaderNotifications": "Notifications", "HeaderSelectPlayer": "\u9078\u64c7\u64ad\u653e\u88dd\u7f6e", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", "HeaderVideoError": "Video Error", "ButtonViewSeriesRecording": "View series recording", "HeaderSpecials": "Specials", @@ -1672,7 +1519,6 @@ "HeaderRuntime": "Runtime", "HeaderParentalRating": "Parental Rating", "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date Added", "HeaderSeries": "Series:", "HeaderSeason": "Season", "HeaderSeasonNumber": "Season number", @@ -1710,8 +1556,6 @@ "HeaderRemoveMediaLocation": "Remove Media Location", "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", "HeaderRemoveMediaFolder": "Remove Media Folder", "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your Emby library:", "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", @@ -1719,7 +1563,6 @@ "ButtonChangeContentType": "Change content type", "HeaderMediaLocations": "Media Locations", "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that Emby apps can access for direct playback.", "FolderTypeUnset": "Unset (mixed content)", "BirthPlaceValue": "Birth place: {0}", "DeathDateValue": "Died: {0}", @@ -1776,8 +1619,6 @@ "ButtonWebsite": "Website", "ValueSeriesYearToPresent": "{0} - Present", "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", "ValuePremiered": "Premiered {0}", "ValuePremieres": "Premieres {0}", "ValueStudio": "Studio: {0}", @@ -1846,13 +1687,8 @@ "MediaInfoRefFrames": "Ref frames", "TabExpert": "Expert", "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", "ReleaseYearValue": "Release year: {0}", "OriginalAirDateValue": "Original air date: {0}", "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", @@ -1881,7 +1717,6 @@ "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", "TabExtras": "Extras", "HeaderUploadImage": "Upload Image", "DeviceLastUsedByUserName": "Last used by {0}", @@ -1915,11 +1750,7 @@ "SyncMedia": "Sync Media", "HeaderCancelSyncJob": "Cancel Sync", "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", "LabelQuality": "Quality:", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to this folder will be automatically synced to the device.", "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", @@ -1941,18 +1772,11 @@ "TabScenes": "Scenes", "HeaderUnlockApp": "Unlock App", "HeaderUnlockSync": "Unlock Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.", "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", "OptionEnableFullscreen": "Enable Fullscreen", "ButtonServer": "Server", "HeaderLibrary": "Library", "HeaderMedia": "Media", - "HeaderSaySomethingLike": "Say Something Like...", "NoResultsFound": "No results found.", "ButtonManageServer": "\u7ba1\u7406\u4f3a\u670d\u5668", "ButtonPreferences": "Preferences", @@ -1975,18 +1799,12 @@ "MessageCreateAccountAt": "Create an account at {0}", "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", "HeaderTryEmbyPremiere": "\u8a66\u8a66Emby\u8c6a\u83ef\u7248", - "ButtonBecomeSupporter": "\u7acb\u5373\u53d6\u5f97", - "ButtonClosePlayVideo": "\u95dc\u9589\u4e26\u64ad\u653e\u5a92\u9ad4", - "MessageDidYouKnowCinemaMode": "\u4f60\u77e5\u9053\u55ce\uff1f\u6709\u4e86Emby\u8c6a\u83ef\u7248\uff0c\u60a8\u5c31\u53ef\u4ee5\u4eab\u6709\u66f4\u597d\u7684\u4f7f\u7528\u9ad4\u9a57", - "MessageDidYouKnowCinemaMode2": "\u50cf\u662f\u5176\u4e2d\u4e4b\u4e00\u7684\u5287\u9662\u6a21\u5f0f\uff0c\u5c31\u80fd\u8b93\u60a8\u5728\u5a92\u9ad4\u64ad\u653e\u524d\uff0c\u5148\u64ad\u653e\u81ea\u8a02\u7684\u524d\u5c0e\u7247\u6216\u9810\u544a\u7247\u3002", "OptionEnableDisplayMirroring": "Enable display mirroring", "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", "LabelLocalSyncStatusValue": "Status: {0}", "MessageSyncStarted": "Sync started", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", "OptionBackdropSlideshow": "Backdrop slideshow", "HeaderTopPlugins": "Top Plugins", "ButtonOther": "Other", @@ -1996,28 +1814,18 @@ "ButtonMenu": "Menu", "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", "ButtonGuide": "\u7bc0\u76ee\u8868", - "ButtonRecordedTv": "\u9304\u88fd\u7684\u7bc0\u76ee", "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", "ButtonYes": "Yes", "AddUser": "\u6dfb\u52a0\u7528\u6236", "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, setup Emby Premiere in your Emby Server Dashboard under Help -> Emby Premiere, and it will be unlocked automatically.", "ButtonNowPlaying": "Now Playing", "HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", "LoginDisclaimer": "Emby\u53ef\u4ee5\u5354\u52a9\u4f60\u7ba1\u7406\u4f60\u7684\u500b\u4eba\u5a92\u9ad4\uff0c\u50cf\u662f\u5f71\u7247\u6216\u7167\u7247\u3002\u4f7f\u7528Emby\u7684\u4efb\u4f55\u8edf\u9ad4\u8868\u793a\u60a8\u5df2\u95b1\u8b80\u4e26\u540c\u610f\u6211\u5011\u7684\u670d\u52d9\u689d\u6b3e\u3002", "TermsOfUse": "Terms of use", "NumLocationsValue": "{0} folders", "ButtonAddMediaLibrary": "Add Media Library", "ButtonManageFolders": "Manage folders", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", @@ -2030,24 +1838,14 @@ "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Emby\u8c6a\u83ef\u7248\u6709\u90a3\u4e9b\u597d\u8655\uff1f", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", "HeaderMobileSync": "Mobile Sync", "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", "CoverArt": "Cover Art", "ButtonOff": "Off", "TitleHardwareAcceleration": "Hardware Acceleration", "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. Ensure that your operating system and video drivers are fully up to date. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonAddMissingData": "Add missing data only", "ValueExample": "Example: {0}", "OptionEnableAnonymousUsageReporting": "Enable anonymous usage reporting", "OptionEnableAnonymousUsageReportingHelp": "Allow Emby to collect anonymous data such as installed plugins, the version numbers of your Emby apps, etc. This information is only used for the purpose of improving the software.", @@ -2057,9 +1855,6 @@ "LabelOptionalM3uUrl": "M3U url (optional):", "LabelOptionalM3uUrlHelp": "Some devices support an M3U channel listing.", "TabResumeSettings": "Resume Settings", - "HowDidYouPay": "How did you pay?", - "IHaveEmbyPremiere": "I have Emby Premiere", - "IPurchasedThisApp": "I purchased this app", "DrmChannelsNotImported": "Channels with DRM will not be imported.", "LabelAllowHWTranscoding": "Allow hardware transcoding", "AllowHWTranscodingHelp": "If enabled, allow the tuner to transcode streams on the fly. This may help reduce transcoding required by Emby Server.", @@ -2072,7 +1867,8 @@ "MetadataSettingChangeHelp": "Changing metadata settings will affect new content that is added going forward. To refresh existing content, open the detail screen and click the refresh button, or perform bulk refreshes using the metadata manager.", "OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)", "OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.", - "CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.", + "OptionConvertRecordingPreserveVideo": "Preserve original video when converting recordings", + "OptionConvertRecordingPreserveVideoHelp": "This may provide better video quality but will require transcoding during playback on some devices.", "AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.", "HeaderHealthMonitor": "Health Monitor", "HealthMonitorNoAlerts": "There are no active alerts.", @@ -2140,7 +1936,14 @@ "LabelOptionalNetworkPath": "(Optional) Shared network folder:", "LabelOptionalNetworkPathHelp": "If this folder is shared on your network, supplying the network share path can allow Emby apps on other devices to access media files directly.", "ButtonPlayExternalPlayer": "Play with external player", - "WillRecord": "Will record", "NotScheduledToRecord": "Not scheduled to record", - "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update." + "SynologyUpdateInstructions": "Please login to DSM and go to Package Center to update.", + "LatestFromLibrary": "Latest {0}", + "LabelMoviePrefix": "Movie prefix:", + "LabelMoviePrefixHelp": "If a prefix is applied to movie titles, enter it here so that Emby can handle it properly.", + "HeaderRecordingPostProcessing": "Recording Post Processing", + "LabelPostProcessorArguments": "Post-processor command line arguments:", + "LabelPostProcessorArgumentsHelp": "Use {path} as the path to the recording file.", + "LabelPostProcessor": "Post-processing application:", + "ErrorAddingXmlTvFile": "There was an error accessing the XmlTV file. Please ensure the file exists and try again." } \ No newline at end of file diff --git a/dashboard-ui/themes/holiday/style.css b/dashboard-ui/themes/holiday/style.css index b18b3ad442..d565002ad2 100644 --- a/dashboard-ui/themes/holiday/style.css +++ b/dashboard-ui/themes/holiday/style.css @@ -1,4 +1,8 @@ -.ui-body-b h1, .ui-body-b h2 { +.background-theme-b .backgroundContainer.withBackdrop { + background: rgba(6, 6, 6, .86) !important; +} + +.ui-body-b h1, .ui-body-b h2 { color: #E53A35; } @@ -11,10 +15,6 @@ color: #AC3326 !important; } -paper-button[raised].more { - background: #AC3326; -} - .channelTimeslotHeader, .timeslotHeader { background: #cc3333 !important; } diff --git a/dashboard-ui/themes/holiday/theme.js b/dashboard-ui/themes/holiday/theme.js index da66dbcea4..02d93e8be0 100644 --- a/dashboard-ui/themes/holiday/theme.js +++ b/dashboard-ui/themes/holiday/theme.js @@ -1,4 +1,5 @@ -(function () { +define(['appSettings', 'backdrop', 'browser', 'globalize', 'require', 'events', 'paper-icon-button-light'], function (appSettings, backdrop, browser, globalize, require, events) { + 'use strict'; var lastSound = 0; var iconCreated; @@ -7,7 +8,7 @@ function onPageShow() { - if (!browserInfo.mobile) { + if (!browser.mobile) { if (getHolidayTheme() == 'off') { return; @@ -15,7 +16,7 @@ var page = this; - Dashboard.importCss('themes/holiday/style.css'); + require(['css!./style.css']); if (!page.classList.contains('itemDetailPage')) { setBackdrop(page); @@ -58,8 +59,8 @@ holidayInfoButton.parentNode.removeChild(holidayInfoButton); } - Dashboard.removeStylesheet('themes/holiday/style.css'); - Backdrops.clear(); + backdrop.clear(); + window.location.reload(true); } var snowFlakesInitialized; @@ -67,9 +68,9 @@ if (!snowFlakesInitialized) { snowFlakesInitialized = true; - $(document.body).append('

*

'); + document.body.insertAdjacentHTML('beforeend', '

*

'); generateSnowflakes(); - Events.on(MediaController, 'beforeplaybackstart', onPlaybackStart); + events.on(MediaController, 'beforeplaybackstart', onPlaybackStart); } } @@ -87,20 +88,20 @@ if (!page.classList.contains('itemDetailPage')) { if (getHolidayTheme() == 'christmas') { - Backdrops.setBackdropUrl(page, 'https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/themes/holiday/bgc.jpg'); + backdrop.setBackdrop('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/themes/holiday/bgc.jpg'); } else { - Backdrops.setBackdropUrl(page, 'https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/themes/holiday/bg.jpg'); + backdrop.setBackdrop('https://raw.githubusercontent.com/MediaBrowser/Emby.Resources/master/themes/holiday/bg.jpg'); } } } - var holidayThemeKey = 'holidaytheme5'; + var holidayThemeKey = 'holidaytheme6'; function getHolidayTheme() { - return appStorage.getItem(holidayThemeKey); + return appSettings.get(holidayThemeKey); } function setHolidayTheme(value) { - appStorage.setItem(holidayThemeKey, value); + appSettings.set(holidayThemeKey, value); setBodyClass(); playThemeMusic(); } @@ -153,11 +154,11 @@ break; case 'joy': setHolidayTheme(''); - setBackdrop($($.mobile.activePage)[0]); + setBackdrop($.mobile.activePage); break; case 'christmas': setHolidayTheme('christmas'); - setBackdrop($($.mobile.activePage)[0]); + setBackdrop($.mobile.activePage); break; default: break; @@ -176,15 +177,15 @@ iconCreated = true; - var elem = document.createElement('paper-icon-button'); - elem.icon = 'info'; - elem.classList.add('holidayInfoButton'); - elem.addEventListener('click', onIconClick); - var viewMenuSecondary = document.querySelector('.viewMenuSecondary'); if (viewMenuSecondary) { - viewMenuSecondary.insertBefore(elem, viewMenuSecondary.childNodes[0]); + + var html = ''; + + viewMenuSecondary.insertAdjacentHTML('afterbegin', html); + + viewMenuSecondary.querySelector('.holidayInfoButton').addEventListener('click', onIconClick); } } @@ -205,7 +206,7 @@ }); } -})(); +}); (function () { diff --git a/dashboard-ui/thirdparty/paper-button-style.css b/dashboard-ui/thirdparty/paper-button-style.css index 6a9e62f4af..015404e45e 100644 --- a/dashboard-ui/thirdparty/paper-button-style.css +++ b/dashboard-ui/thirdparty/paper-button-style.css @@ -1,5 +1,5 @@ -.raised { - background: #404040; +.ui-body-b .raised { + background: rgba(170,170,190, .4); color: #fff; } @@ -19,17 +19,12 @@ box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); } -.button-submit { +.ui-body-b .button-submit { background: #52B54B; color: #fff; } -.ui-body-a .button-accent { - background: #52B54B; - color: #fff; -} - -.button-accent { +.ui-body-a .button-accent, .ui-body-b .button-accent { background: #52B54B; color: #fff; } @@ -68,7 +63,7 @@ button.emby-button.raised.more { } button.emby-button.mini:not(.fab) { - padding: 0.4em 0.7em; + padding: 0.5em 0.7em; } .ui-body-b .paperListLabel, .ui-body-b .fieldDescription, .ui-body-b .selectLabelUnfocused, .ui-body-b .inputLabelUnfocused, .ui-body-b .textareaLabelUnfocused { @@ -79,14 +74,6 @@ button.emby-button.mini:not(.fab) { background-color: #2b2b2b; } -div.dialogHeader { - padding: .35em .5em; - display: flex; - align-items: center; - line-height: normal; - font-size: 110%; -} - .ui-body-a div.formDialogHeader { background-color: #52B54B; color: #fff; diff --git a/dashboard-ui/tv.html b/dashboard-ui/tv.html index 359b8ede83..e6a7b7e684 100644 --- a/dashboard-ui/tv.html +++ b/dashboard-ui/tv.html @@ -15,21 +15,21 @@
${TabShows}
- - +
-

${HeaderResume}

+

${HeaderContinueWatching}

@@ -74,24 +74,31 @@
-
+
-
-
- -
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -103,19 +110,6 @@
-
-
- -
-
-
-
-
-
-
-
-
-
diff --git a/packages.config b/packages.config index 3637c6c84e..6b8deb9c96 100644 --- a/packages.config +++ b/packages.config @@ -1,6 +1,3 @@  - - - \ No newline at end of file diff --git a/project.json b/project.json new file mode 100644 index 0000000000..fbbe9eaf32 --- /dev/null +++ b/project.json @@ -0,0 +1,17 @@ +{ + "frameworks":{ + "netstandard1.6":{ + "dependencies":{ + "NETStandard.Library":"1.6.0", + } + }, + ".NETPortable,Version=v4.5,Profile=Profile7":{ + "buildOptions": { + "define": [ ] + }, + "frameworkAssemblies":{ + + } + } + } +} \ No newline at end of file